]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/tls_g.c
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
[openldap] / libraries / libldap / tls_g.c
index 40616f5e09baafe1541f4b439d65021aa37e5383..82a9316e136002552c19c1f2ee1b32d2c3704a16 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2008-2012 The OpenLDAP Foundation.
+ * Copyright 2008-2014 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
 
 #include <gnutls/gnutls.h>
 #include <gnutls/x509.h>
-#include <gcrypt.h>
 
 #define DH_BITS        (1024)
 
-#if LIBGNUTLS_VERSION_NUMBER >= 0x020200
-#define        HAVE_CIPHERSUITES       1
-/* This is a kludge. gcrypt 1.4.x has support. Recent GnuTLS requires gcrypt 1.4.x
- * but that dependency isn't reflected in their configure script, resulting in
- * build errors on older gcrypt. So, if they have a working build environment,
- * assume gcrypt is new enough.
- */
-#define HAVE_GCRYPT_RAND       1
-#else
-#undef HAVE_CIPHERSUITES
-#undef HAVE_GCRYPT_RAND
-#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
@@ -97,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 );
 
@@ -145,20 +107,13 @@ tlsg_mutex_unlock( void **lock )
        return ldap_pvt_thread_mutex_unlock( *lock );
 }
 
-static struct gcry_thread_cbs tlsg_thread_cbs = {
-       GCRY_THREAD_OPTION_USER,
-       NULL,
-       tlsg_mutex_init,
-       tlsg_mutex_destroy,
-       tlsg_mutex_lock,
-       tlsg_mutex_unlock,
-       NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
-};
-
 static void
 tlsg_thr_init( void )
 {
-       gcry_control (GCRYCTL_SET_THREAD_CBS, &tlsg_thread_cbs);
+       gnutls_global_set_mutex (tlsg_mutex_init,
+               tlsg_mutex_destroy,
+               tlsg_mutex_lock,
+               tlsg_mutex_unlock);
 }
 #endif /* LDAP_R_COMPILE */
 
@@ -168,47 +123,7 @@ tlsg_thr_init( void )
 static int
 tlsg_init( void )
 {
-#ifdef HAVE_GCRYPT_RAND
-       struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT();
-       if ( lo->ldo_tls_randfile &&
-               gcry_control( GCRYCTL_SET_RNDEGD_SOCKET, lo->ldo_tls_randfile )) {
-               Debug( LDAP_DEBUG_ANY,
-               "TLS: gcry_control GCRYCTL_SET_RNDEGD_SOCKET failed\n",
-               0, 0, 0);
-               return -1;
-       }
-#endif
-
        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; i<tlsg_n_ciphers; i++ ) {
-                       tlsg_ciphers[i].name = gnutls_cipher_suite_info( i, cs_id,
-                               &tlsg_ciphers[i].kx, &tlsg_ciphers[i].cipher, &tlsg_ciphers[i].mac,
-                               &tlsg_ciphers[i].version );
-               }
-       }
-#endif
        return 0;
 }
 
@@ -218,11 +133,6 @@ tlsg_init( void )
 static void
 tlsg_destroy( void )
 {
-#ifndef HAVE_CIPHERSUITES
-       LDAP_FREE( tlsg_ciphers );
-       tlsg_ciphers = NULL;
-       tlsg_n_ciphers = 0;
-#endif
        gnutls_global_deinit();
 }
 
@@ -239,9 +149,7 @@ tlsg_ctx_new ( struct ldapoptions *lo )
                        return NULL;
                }
                ctx->refcount = 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
@@ -271,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 );
 }
@@ -368,23 +272,13 @@ tlsg_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
                 * then we have to build the cert chain.
                 */
                if ( max == 1 && !gnutls_x509_crt_check_issuer( certs[0], certs[0] )) {
-                       gnutls_x509_crt_t *cas;
-                       unsigned int i, j, ncas;
-
-                       gnutls_certificate_get_x509_cas( ctx->cred, &cas, &ncas );
+                       unsigned int i;
                        for ( i = 1; i<VERIFY_DEPTH; i++ ) {
-                               for ( j = 0; j<ncas; j++ ) {
-                                       if ( gnutls_x509_crt_check_issuer( certs[i-1], cas[j] )) {
-                                               certs[i] = cas[j];
-                                               max++;
-                                               /* If this CA is self-signed, we're done */
-                                               if ( gnutls_x509_crt_check_issuer( cas[j], cas[j] ))
-                                                       j = ncas;
-                                               break;
-                                       }
-                               }
-                               /* only continue if we found a CA and it was not self-signed */
-                               if ( j == ncas )
+                               if ( gnutls_certificate_get_issuer( ctx->cred, certs[i-1], &certs[i], 0 ))
+                                       break;
+                               max++;
+                               /* If this CA is self-signed, we're done */
+                               if ( gnutls_x509_crt_check_issuer( certs[i], certs[i] ))
                                        break;
                        }
                }
@@ -437,16 +331,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 );
        
@@ -784,85 +669,11 @@ tlsg_session_strength( tls_session *session )
 static int
 tlsg_parse_ciphers( tlsg_ctx *ctx, char *suites )
 {
-#ifdef HAVE_CIPHERSUITES
        const char *err;
-       return gnutls_priority_init( &ctx->prios, suites, &err );
-#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; i<tlsg_n_ciphers; i++) {
-                       if ( !strncasecmp( tlsg_ciphers[i].name, ptr, len )) {
-                               num++;
-                               break;
-                       }
-               }
-               if ( i == tlsg_n_ciphers ) {
-                       /* unrecognized cipher suite */
-                       return -1;
-               }
-               ptr += len + 1;
-       } while (end);
-
-       /* Space for all 3 lists */
-       list = LDAP_MALLOC( (num+1) * sizeof(int) * 3 );
-       if ( !list )
-               return -1;
-       kx = list;
-       cipher = kx+num+1;
-       mac = cipher+num+1;
-
-       ptr = suites;
-       do {
-               end = strchr(ptr, ':');
-               if ( end )
-                       len = end - ptr;
-               else
-                       len = strlen(ptr);
-               for (i=0; i<tlsg_n_ciphers; i++) {
-                       /* For each cipher suite, insert its algorithms into
-                        * their respective priority lists. Make sure they
-                        * only appear once in each list.
-                        */
-                       if ( !strncasecmp( tlsg_ciphers[i].name, ptr, len )) {
-                               for (j=0; j<nkx; j++)
-                                       if ( kx[j] == tlsg_ciphers[i].kx )
-                                               break;
-                               if ( j == nkx )
-                                       kx[nkx++] = tlsg_ciphers[i].kx;
-                               for (j=0; j<ncipher; j++)
-                                       if ( cipher[j] == tlsg_ciphers[i].cipher )
-                                               break;
-                               if ( j == ncipher ) 
-                                       cipher[ncipher++] = tlsg_ciphers[i].cipher;
-                               for (j=0; j<nmac; j++)
-                                       if ( mac[j] == tlsg_ciphers[i].mac )
-                                               break;
-                               if ( j == nmac )
-                                       mac[nmac++] = tlsg_ciphers[i].mac;
-                               break;
-                       }
-               }
-               ptr += len + 1;
-       } while (end);
-       kx[nkx] = 0;
-       cipher[ncipher] = 0;
-       mac[nmac] = 0;
-       ctx->kx_list = kx;
-       ctx->cipher_list = cipher;
-       ctx->mac_list = mac;
-       return 0;
-#endif
+       int rc = gnutls_priority_init( &ctx->prios, suites, &err );
+       if ( rc )
+               ctx->prios = NULL;
+       return rc;
 }
 
 /*