From: Ryan Tandy Date: Mon, 30 Jun 2014 18:36:40 +0000 (-0700) Subject: ITS#7877 assume gnutls provides cipher suites X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=0fd0f24f03a76a4377379bec37b47ca181dc0aa5;p=nivanova%2Fopenldap.git ITS#7877 assume gnutls provides cipher suites --- diff --git a/libraries/libldap/tls_g.c b/libraries/libldap/tls_g.c index 4ee683c436..cc4229656a 100644 --- a/libraries/libldap/tls_g.c +++ b/libraries/libldap/tls_g.c @@ -44,38 +44,13 @@ #include #include -#if LIBGNUTLS_VERSION_NUMBER >= 0x020200 -#define HAVE_CIPHERSUITES 1 -#else -#undef HAVE_CIPHERSUITES -#endif - -#ifndef HAVE_CIPHERSUITES -/* Versions prior to 2.2.0 didn't handle cipher suites, so we had to - * kludge them ourselves. - */ -typedef struct tls_cipher_suite { - const char *name; - gnutls_kx_algorithm_t kx; - gnutls_cipher_algorithm_t cipher; - gnutls_mac_algorithm_t mac; - gnutls_protocol_t version; -} tls_cipher_suite; -#endif - typedef struct tlsg_ctx { struct ldapoptions *lo; gnutls_certificate_credentials_t cred; gnutls_dh_params_t dh_params; unsigned long verify_depth; int refcount; -#ifdef HAVE_CIPHERSUITES gnutls_priority_t prios; -#else - int *kx_list; - int *cipher_list; - int *mac_list; -#endif #ifdef LDAP_R_COMPILE ldap_pvt_thread_mutex_t ref_mutex; #endif @@ -87,11 +62,6 @@ typedef struct tlsg_session { struct berval peer_der_dn; } tlsg_session; -#ifndef HAVE_CIPHERSUITES -static tls_cipher_suite *tlsg_ciphers; -static int tlsg_n_ciphers; -#endif - static int tlsg_parse_ciphers( tlsg_ctx *ctx, char *suites ); static int tlsg_cert_verify( tlsg_session *s ); @@ -152,35 +122,6 @@ static int tlsg_init( void ) { gnutls_global_init(); - -#ifndef HAVE_CIPHERSUITES - /* GNUtls cipher suite handling: The library ought to parse suite - * names for us, but it doesn't. It will return a list of suite names - * that it supports, so we can do parsing ourselves. It ought to tell - * us how long the list is, but it doesn't do that either, so we just - * have to count it manually... - */ - { - int i = 0; - tls_cipher_suite *ptr, tmp; - char cs_id[2]; - - while ( gnutls_cipher_suite_info( i, cs_id, &tmp.kx, &tmp.cipher, - &tmp.mac, &tmp.version )) - i++; - tlsg_n_ciphers = i; - - /* Store a copy */ - tlsg_ciphers = LDAP_MALLOC(tlsg_n_ciphers * sizeof(tls_cipher_suite)); - if ( !tlsg_ciphers ) - return -1; - for ( i=0; irefcount = 1; -#ifdef HAVE_CIPHERSUITES gnutls_priority_init( &ctx->prios, "NORMAL", NULL ); -#endif #ifdef LDAP_R_COMPILE ldap_pvt_thread_mutex_init( &ctx->ref_mutex ); #endif @@ -243,11 +177,7 @@ tlsg_ctx_free ( tls_ctx *ctx ) LDAP_MUTEX_UNLOCK( &c->ref_mutex ); if ( refcount ) return; -#ifdef HAVE_CIPHERSUITES gnutls_priority_deinit( c->prios ); -#else - LDAP_FREE( c->kx_list ); -#endif gnutls_certificate_free_credentials( c->cred ); if ( c->dh_params ) gnutls_dh_params_deinit( c->dh_params ); @@ -425,16 +355,7 @@ tlsg_session_new ( tls_ctx * ctx, int is_server ) session->ctx = c; gnutls_init( &session->session, is_server ? GNUTLS_SERVER : GNUTLS_CLIENT ); -#ifdef HAVE_CIPHERSUITES gnutls_priority_set( session->session, c->prios ); -#else - gnutls_set_default_priority( session->session ); - if ( c->kx_list ) { - gnutls_kx_set_priority( session->session, c->kx_list ); - gnutls_cipher_set_priority( session->session, c->cipher_list ); - gnutls_mac_set_priority( session->session, c->mac_list ); - } -#endif if ( c->cred ) gnutls_credentials_set( session->session, GNUTLS_CRD_CERTIFICATE, c->cred ); @@ -826,88 +747,11 @@ tlsg_session_peercert( tls_session *sess, struct berval *der ) static int tlsg_parse_ciphers( tlsg_ctx *ctx, char *suites ) { -#ifdef HAVE_CIPHERSUITES const char *err; int rc = gnutls_priority_init( &ctx->prios, suites, &err ); if ( rc ) ctx->prios = NULL; return rc; -#else - char *ptr, *end; - int i, j, len, num; - int *list, nkx = 0, ncipher = 0, nmac = 0; - int *kx, *cipher, *mac; - - num = 0; - ptr = suites; - do { - end = strchr(ptr, ':'); - if ( end ) - len = end - ptr; - else - len = strlen(ptr); - for (i=0; ikx_list = kx; - ctx->cipher_list = cipher; - ctx->mac_list = mac; - return 0; -#endif } /*