From: Quanah Gibson-Mount Date: Tue, 22 Jul 2014 18:27:03 +0000 (-0500) Subject: ITS#7877 assume gnutls provides cipher suites X-Git-Tag: OPENLDAP_REL_ENG_2_4_40~114 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=485b24ca7b3f8e4af0d0c49175371f92c03153fb;p=openldap ITS#7877 assume gnutls provides cipher suites --- diff --git a/libraries/libldap/tls_g.c b/libraries/libldap/tls_g.c index be7ebc08b8..690d4ad837 100644 --- a/libraries/libldap/tls_g.c +++ b/libraries/libldap/tls_g.c @@ -46,38 +46,13 @@ #define DH_BITS (1024) -#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 @@ -89,11 +64,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 ); @@ -154,35 +124,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 @@ -245,11 +179,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 ); ber_memfree ( c ); } @@ -423,16 +353,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 ); @@ -770,88 +691,11 @@ tlsg_session_strength( tls_session *session ) 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 } /*