]> git.sur5r.net Git - openldap/blob - libraries/libldap/tls_g.c
ITS#6254
[openldap] / libraries / libldap / tls_g.c
1 /* tls_g.c - Handle tls/ssl using GNUTLS. */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2008-2009 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS: GNUTLS support written by Howard Chu and
17  * Matt Backes; sponsored by The Written Word (thewrittenword.com)
18  * and Stanford University (stanford.edu).
19  */
20
21 #include "portable.h"
22
23 #ifdef HAVE_GNUTLS
24
25 #include "ldap_config.h"
26
27 #include <stdio.h>
28
29 #include <ac/stdlib.h>
30 #include <ac/errno.h>
31 #include <ac/socket.h>
32 #include <ac/string.h>
33 #include <ac/ctype.h>
34 #include <ac/time.h>
35 #include <ac/unistd.h>
36 #include <ac/param.h>
37 #include <ac/dirent.h>
38 #include <sys/stat.h>
39 #include <fcntl.h>
40
41 #include "ldap-int.h"
42 #include "ldap-tls.h"
43
44 #ifdef LDAP_R_COMPILE
45 #include <ldap_pvt_thread.h>
46 #endif
47
48 #include <gnutls/gnutls.h>
49 #include <gnutls/x509.h>
50 #include <gcrypt.h>
51
52 #define DH_BITS (1024)
53
54 #if LIBGNUTLS_VERSION_NUMBER >= 0x020200
55 #define HAVE_CIPHERSUITES       1
56 /* This is a kludge. gcrypt 1.4.x has support. Recent GnuTLS requires gcrypt 1.4.x
57  * but that dependency isn't reflected in their configure script, resulting in
58  * build errors on older gcrypt. So, if they have a working build environment,
59  * assume gcrypt is new enough.
60  */
61 #define HAVE_GCRYPT_RAND        1
62 #else
63 #undef HAVE_CIPHERSUITES
64 #undef HAVE_GCRYPT_RAND
65 #endif
66
67 #ifndef HAVE_CIPHERSUITES
68 /* Versions prior to 2.2.0 didn't handle cipher suites, so we had to
69  * kludge them ourselves.
70  */
71 typedef struct tls_cipher_suite {
72         const char *name;
73         gnutls_kx_algorithm_t kx;
74         gnutls_cipher_algorithm_t cipher;
75         gnutls_mac_algorithm_t mac;
76         gnutls_protocol_t version;
77 } tls_cipher_suite;
78 #endif
79
80 typedef struct tlsg_ctx {
81         struct ldapoptions *lo;
82         gnutls_certificate_credentials_t cred;
83         gnutls_dh_params_t dh_params;
84         unsigned long verify_depth;
85         int refcount;
86 #ifdef HAVE_CIPHERSUITES
87         gnutls_priority_t prios;
88 #else
89         int *kx_list;
90         int *cipher_list;
91         int *mac_list;
92 #endif
93 #ifdef LDAP_R_COMPILE
94         ldap_pvt_thread_mutex_t ref_mutex;
95 #endif
96 } tlsg_ctx;
97
98 typedef struct tlsg_session {
99         gnutls_session_t session;
100         tlsg_ctx *ctx;
101         struct berval peer_der_dn;
102 } tlsg_session;
103
104 #ifndef HAVE_CIPHERSUITES
105 static tls_cipher_suite *tlsg_ciphers;
106 static int tlsg_n_ciphers;
107 #endif
108
109 static int tlsg_parse_ciphers( tlsg_ctx *ctx, char *suites );
110 static int tlsg_cert_verify( tlsg_session *s );
111
112 #ifdef LDAP_R_COMPILE
113
114 static int
115 tlsg_mutex_init( void **priv )
116 {
117         int err = 0;
118         ldap_pvt_thread_mutex_t *lock = LDAP_MALLOC( sizeof( ldap_pvt_thread_mutex_t ));
119
120         if ( !lock )
121                 err = ENOMEM;
122         if ( !err ) {
123                 err = ldap_pvt_thread_mutex_init( lock );
124                 if ( err )
125                         LDAP_FREE( lock );
126                 else
127                         *priv = lock;
128         }
129         return err;
130 }
131
132 static int
133 tlsg_mutex_destroy( void **lock )
134 {
135         int err = ldap_pvt_thread_mutex_destroy( *lock );
136         LDAP_FREE( *lock );
137         return err;
138 }
139
140 static int
141 tlsg_mutex_lock( void **lock )
142 {
143         return ldap_pvt_thread_mutex_lock( *lock );
144 }
145
146 static int
147 tlsg_mutex_unlock( void **lock )
148 {
149         return ldap_pvt_thread_mutex_unlock( *lock );
150 }
151
152 static struct gcry_thread_cbs tlsg_thread_cbs = {
153         GCRY_THREAD_OPTION_USER,
154         NULL,
155         tlsg_mutex_init,
156         tlsg_mutex_destroy,
157         tlsg_mutex_lock,
158         tlsg_mutex_unlock,
159         NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
160 };
161
162 static void
163 tlsg_thr_init( void )
164 {
165         gcry_control (GCRYCTL_SET_THREAD_CBS, &tlsg_thread_cbs);
166 }
167 #endif /* LDAP_R_COMPILE */
168
169 /*
170  * Initialize TLS subsystem. Should be called only once.
171  */
172 static int
173 tlsg_init( void )
174 {
175 #ifdef HAVE_GCRYPT_RAND
176         struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT();
177         if ( lo->ldo_tls_randfile &&
178                 gcry_control( GCRYCTL_SET_RNDEGD_SOCKET, lo->ldo_tls_randfile )) {
179                 Debug( LDAP_DEBUG_ANY,
180                 "TLS: gcry_control GCRYCTL_SET_RNDEGD_SOCKET failed\n",
181                 0, 0, 0);
182                 return -1;
183         }
184 #endif
185
186         gnutls_global_init();
187
188 #ifndef HAVE_CIPHERSUITES
189         /* GNUtls cipher suite handling: The library ought to parse suite
190          * names for us, but it doesn't. It will return a list of suite names
191          * that it supports, so we can do parsing ourselves. It ought to tell
192          * us how long the list is, but it doesn't do that either, so we just
193          * have to count it manually...
194          */
195         {
196                 int i = 0;
197                 tls_cipher_suite *ptr, tmp;
198                 char cs_id[2];
199
200                 while ( gnutls_cipher_suite_info( i, cs_id, &tmp.kx, &tmp.cipher,
201                         &tmp.mac, &tmp.version ))
202                         i++;
203                 tlsg_n_ciphers = i;
204
205                 /* Store a copy */
206                 tlsg_ciphers = LDAP_MALLOC(tlsg_n_ciphers * sizeof(tls_cipher_suite));
207                 if ( !tlsg_ciphers )
208                         return -1;
209                 for ( i=0; i<tlsg_n_ciphers; i++ ) {
210                         tlsg_ciphers[i].name = gnutls_cipher_suite_info( i, cs_id,
211                                 &tlsg_ciphers[i].kx, &tlsg_ciphers[i].cipher, &tlsg_ciphers[i].mac,
212                                 &tlsg_ciphers[i].version );
213                 }
214         }
215 #endif
216         return 0;
217 }
218
219 /*
220  * Tear down the TLS subsystem. Should only be called once.
221  */
222 static void
223 tlsg_destroy( void )
224 {
225 #ifndef HAVE_CIPHERSUITES
226         LDAP_FREE( tlsg_ciphers );
227         tlsg_ciphers = NULL;
228         tlsg_n_ciphers = 0;
229 #endif
230         gnutls_global_deinit();
231 }
232
233 static tls_ctx *
234 tlsg_ctx_new ( struct ldapoptions *lo )
235 {
236         tlsg_ctx *ctx;
237
238         ctx = ber_memcalloc ( 1, sizeof (*ctx) );
239         if ( ctx ) {
240                 ctx->lo = lo;
241                 if ( gnutls_certificate_allocate_credentials( &ctx->cred )) {
242                         ber_memfree( ctx );
243                         return NULL;
244                 }
245                 ctx->refcount = 1;
246 #ifdef HAVE_CIPHERSUITES
247                 gnutls_priority_init( &ctx->prios, "NORMAL", NULL );
248 #endif
249 #ifdef LDAP_R_COMPILE
250                 ldap_pvt_thread_mutex_init( &ctx->ref_mutex );
251 #endif
252         }
253         return (tls_ctx *)ctx;
254 }
255
256 static void
257 tlsg_ctx_ref( tls_ctx *ctx )
258 {
259         tlsg_ctx *c = (tlsg_ctx *)ctx;
260 #ifdef LDAP_R_COMPILE
261         ldap_pvt_thread_mutex_lock( &c->ref_mutex );
262 #endif
263         c->refcount++;
264 #ifdef LDAP_R_COMPILE
265         ldap_pvt_thread_mutex_unlock( &c->ref_mutex );
266 #endif
267 }
268
269 static void
270 tlsg_ctx_free ( tls_ctx *ctx )
271 {
272         tlsg_ctx *c = (tlsg_ctx *)ctx;
273         int refcount;
274
275         if ( !c ) return;
276
277 #ifdef LDAP_R_COMPILE
278         ldap_pvt_thread_mutex_lock( &c->ref_mutex );
279 #endif
280         refcount = --c->refcount;
281 #ifdef LDAP_R_COMPILE
282         ldap_pvt_thread_mutex_unlock( &c->ref_mutex );
283 #endif
284         if ( refcount )
285                 return;
286 #ifdef HAVE_CIPHERSUITES
287         gnutls_priority_deinit( c->prios );
288 #else
289         LDAP_FREE( c->kx_list );
290 #endif
291         gnutls_certificate_free_credentials( c->cred );
292         ber_memfree ( c );
293 }
294
295 static int
296 tlsg_getfile( const char *path, gnutls_datum_t *buf )
297 {
298         int rc = -1, fd;
299         struct stat st;
300
301         fd = open( path, O_RDONLY );
302         if ( fd >= 0 && fstat( fd, &st ) == 0 ) {
303                 buf->size = st.st_size;
304                 buf->data = LDAP_MALLOC( st.st_size + 1 );
305                 if ( buf->data ) {
306                         rc = read( fd, buf->data, st.st_size );
307                         close( fd );
308                         if ( rc < st.st_size )
309                                 rc = -1;
310                         else
311                                 rc = 0;
312                 }
313         }
314         return rc;
315 }
316
317 /* This is the GnuTLS default */
318 #define VERIFY_DEPTH    6
319
320 /*
321  * initialize a new TLS context
322  */
323 static int
324 tlsg_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
325 {
326         tlsg_ctx *ctx = lo->ldo_tls_ctx;
327         int rc;
328
329         if ( lo->ldo_tls_ciphersuite &&
330                 tlsg_parse_ciphers( ctx, lt->lt_ciphersuite )) {
331                 Debug( LDAP_DEBUG_ANY,
332                            "TLS: could not set cipher list %s.\n",
333                            lo->ldo_tls_ciphersuite, 0, 0 );
334                 return -1;
335         }
336
337         if (lo->ldo_tls_cacertdir != NULL) {
338                 Debug( LDAP_DEBUG_ANY, 
339                        "TLS: warning: cacertdir not implemented for gnutls\n",
340                        NULL, NULL, NULL );
341         }
342
343         if (lo->ldo_tls_cacertfile != NULL) {
344                 rc = gnutls_certificate_set_x509_trust_file( 
345                         ctx->cred,
346                         lt->lt_cacertfile,
347                         GNUTLS_X509_FMT_PEM );
348                 if ( rc < 0 ) return -1;
349         }
350
351         if ( lo->ldo_tls_certfile && lo->ldo_tls_keyfile ) {
352                 gnutls_x509_privkey_t key;
353                 gnutls_datum_t buf;
354                 gnutls_x509_crt_t certs[VERIFY_DEPTH];
355                 unsigned int max = VERIFY_DEPTH;
356
357                 rc = gnutls_x509_privkey_init( &key );
358                 if ( rc ) return -1;
359
360                 /* OpenSSL builds the cert chain for us, but GnuTLS
361                  * expects it to be present in the certfile. If it's
362                  * not, we have to build it ourselves. So we have to
363                  * do some special checks here...
364                  */
365                 rc = tlsg_getfile( lt->lt_keyfile, &buf );
366                 if ( rc ) return -1;
367                 rc = gnutls_x509_privkey_import( key, &buf,
368                         GNUTLS_X509_FMT_PEM );
369                 LDAP_FREE( buf.data );
370                 if ( rc < 0 ) return rc;
371
372                 rc = tlsg_getfile( lt->lt_certfile, &buf );
373                 if ( rc ) return -1;
374                 rc = gnutls_x509_crt_list_import( certs, &max, &buf,
375                         GNUTLS_X509_FMT_PEM, 0 );
376                 LDAP_FREE( buf.data );
377                 if ( rc < 0 ) return rc;
378
379                 /* If there's only one cert and it's not self-signed,
380                  * then we have to build the cert chain.
381                  */
382                 if ( max == 1 && !gnutls_x509_crt_check_issuer( certs[0], certs[0] )) {
383                         gnutls_x509_crt_t *cas;
384                         unsigned int i, j, ncas;
385
386                         gnutls_certificate_get_x509_cas( ctx->cred, &cas, &ncas );
387                         for ( i = 1; i<VERIFY_DEPTH; i++ ) {
388                                 for ( j = 0; j<ncas; j++ ) {
389                                         if ( gnutls_x509_crt_check_issuer( certs[i-1], cas[j] )) {
390                                                 certs[i] = cas[j];
391                                                 max++;
392                                                 /* If this CA is self-signed, we're done */
393                                                 if ( gnutls_x509_crt_check_issuer( cas[j], cas[j] ))
394                                                         j = ncas;
395                                                 break;
396                                         }
397                                 }
398                                 /* only continue if we found a CA and it was not self-signed */
399                                 if ( j == ncas )
400                                         break;
401                         }
402                 }
403                 rc = gnutls_certificate_set_x509_key( ctx->cred, certs, max, key );
404                 if ( rc ) return -1;
405         } else if ( lo->ldo_tls_certfile || lo->ldo_tls_keyfile ) {
406                 Debug( LDAP_DEBUG_ANY, 
407                        "TLS: only one of certfile and keyfile specified\n",
408                        NULL, NULL, NULL );
409                 return -1;
410         }
411
412         if ( lo->ldo_tls_dhfile ) {
413                 Debug( LDAP_DEBUG_ANY, 
414                        "TLS: warning: ignoring dhfile\n", 
415                        NULL, NULL, NULL );
416         }
417
418         if ( lo->ldo_tls_crlfile ) {
419                 rc = gnutls_certificate_set_x509_crl_file( 
420                         ctx->cred,
421                         lt->lt_crlfile,
422                         GNUTLS_X509_FMT_PEM );
423                 if ( rc < 0 ) return -1;
424                 rc = 0;
425         }
426
427         /* FIXME: ITS#5992 - this should go be configurable,
428          * and V1 CA certs should be phased out ASAP.
429          */
430         gnutls_certificate_set_verify_flags( ctx->cred,
431                 GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT );
432
433         if ( is_server ) {
434                 gnutls_dh_params_init(&ctx->dh_params);
435                 gnutls_dh_params_generate2(ctx->dh_params, DH_BITS);
436         }
437         return 0;
438 }
439
440 static tls_session *
441 tlsg_session_new ( tls_ctx * ctx, int is_server )
442 {
443         tlsg_ctx *c = (tlsg_ctx *)ctx;
444         tlsg_session *session;
445
446         session = ber_memcalloc ( 1, sizeof (*session) );
447         if ( !session )
448                 return NULL;
449
450         session->ctx = c;
451         gnutls_init( &session->session, is_server ? GNUTLS_SERVER : GNUTLS_CLIENT );
452 #ifdef HAVE_CIPHERSUITES
453         gnutls_priority_set( session->session, c->prios );
454 #else
455         gnutls_set_default_priority( session->session );
456         if ( c->kx_list ) {
457                 gnutls_kx_set_priority( session->session, c->kx_list );
458                 gnutls_cipher_set_priority( session->session, c->cipher_list );
459                 gnutls_mac_set_priority( session->session, c->mac_list );
460         }
461 #endif
462         if ( c->cred )
463                 gnutls_credentials_set( session->session, GNUTLS_CRD_CERTIFICATE, c->cred );
464         
465         if ( is_server ) {
466                 int flag = 0;
467                 if ( c->lo->ldo_tls_require_cert ) {
468                         flag = GNUTLS_CERT_REQUEST;
469                         if ( c->lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_DEMAND ||
470                                 c->lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_HARD )
471                                 flag = GNUTLS_CERT_REQUIRE;
472                         gnutls_certificate_server_set_request( session->session, flag );
473                 }
474         }
475         return (tls_session *)session;
476
477
478 static int
479 tlsg_session_accept( tls_session *session )
480 {
481         tlsg_session *s = (tlsg_session *)session;
482         int rc;
483
484         rc = gnutls_handshake( s->session );
485         if ( rc == 0 && s->ctx->lo->ldo_tls_require_cert != LDAP_OPT_X_TLS_NEVER ) {
486                 const gnutls_datum_t *peer_cert_list;
487                 unsigned int list_size;
488
489                 peer_cert_list = gnutls_certificate_get_peers( s->session, 
490                                                 &list_size );
491                 if ( !peer_cert_list && s->ctx->lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_TRY ) 
492                         rc = 0;
493                 else {
494                         rc = tlsg_cert_verify( s );
495                         if ( rc && s->ctx->lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_ALLOW )
496                                 rc = 0;
497                 }
498         }
499         return rc;
500 }
501
502 static int
503 tlsg_session_connect( LDAP *ld, tls_session *session )
504 {
505         return tlsg_session_accept( session);
506 }
507
508 static int
509 tlsg_session_upflags( Sockbuf *sb, tls_session *session, int rc )
510 {
511         tlsg_session *s = (tlsg_session *)session;
512
513         if ( rc != GNUTLS_E_INTERRUPTED && rc != GNUTLS_E_AGAIN )
514                 return 0;
515
516         switch (gnutls_record_get_direction (s->session)) {
517         case 0: 
518                 sb->sb_trans_needs_read = 1;
519                 return 1;
520         case 1:
521                 sb->sb_trans_needs_write = 1;
522                 return 1;
523         }
524         return 0;
525 }
526
527 static char *
528 tlsg_session_errmsg( int rc, char *buf, size_t len )
529 {
530         return (char *)gnutls_strerror( rc );
531 }
532
533 static void
534 tlsg_x509_cert_dn( struct berval *cert, struct berval *dn, int get_subject )
535 {
536         BerElementBuffer berbuf;
537         BerElement *ber = (BerElement *)&berbuf;
538         ber_tag_t tag;
539         ber_len_t len;
540         ber_int_t i;
541
542         ber_init2( ber, cert, LBER_USE_DER );
543         tag = ber_skip_tag( ber, &len );        /* Sequence */
544         tag = ber_skip_tag( ber, &len );        /* Sequence */
545         tag = ber_skip_tag( ber, &len );        /* Context + Constructed (version) */
546         if ( tag == 0xa0 )      /* Version is optional */
547                 tag = ber_get_int( ber, &i );   /* Int: Version */
548         tag = ber_get_int( ber, &i );   /* Int: Serial */
549         tag = ber_skip_tag( ber, &len );        /* Sequence: Signature */
550         ber_skip_data( ber, len );
551         if ( !get_subject ) {
552                 tag = ber_peek_tag( ber, &len );        /* Sequence: Issuer DN */
553         } else {
554                 tag = ber_skip_tag( ber, &len );
555                 ber_skip_data( ber, len );
556                 tag = ber_skip_tag( ber, &len );        /* Sequence: Validity */
557                 ber_skip_data( ber, len );
558                 tag = ber_peek_tag( ber, &len );        /* Sequence: Subject DN */
559         }
560         len = ber_ptrlen( ber );
561         dn->bv_val = cert->bv_val + len;
562         dn->bv_len = cert->bv_len - len;
563 }
564
565 static int
566 tlsg_session_my_dn( tls_session *session, struct berval *der_dn )
567 {
568         tlsg_session *s = (tlsg_session *)session;
569         const gnutls_datum_t *x;
570         struct berval bv;
571
572         x = gnutls_certificate_get_ours( s->session );
573
574         if (!x) return LDAP_INVALID_CREDENTIALS;
575         
576         bv.bv_val = (char *) x->data;
577         bv.bv_len = x->size;
578
579         tlsg_x509_cert_dn( &bv, der_dn, 1 );
580         return 0;
581 }
582
583 static int
584 tlsg_session_peer_dn( tls_session *session, struct berval *der_dn )
585 {
586         tlsg_session *s = (tlsg_session *)session;
587         if ( !s->peer_der_dn.bv_val ) {
588                 const gnutls_datum_t *peer_cert_list;
589                 unsigned int list_size;
590                 struct berval bv;
591
592                 peer_cert_list = gnutls_certificate_get_peers( s->session, 
593                                                         &list_size );
594                 if ( !peer_cert_list ) return LDAP_INVALID_CREDENTIALS;
595
596                 bv.bv_len = peer_cert_list->size;
597                 bv.bv_val = (char *) peer_cert_list->data;
598
599                 tlsg_x509_cert_dn( &bv, &s->peer_der_dn, 1 );
600         }
601         *der_dn = s->peer_der_dn;
602         return 0;
603 }
604
605 /* what kind of hostname were we given? */
606 #define IS_DNS  0
607 #define IS_IP4  1
608 #define IS_IP6  2
609
610 #define CN_OID  "2.5.4.3"
611
612 static int
613 tlsg_session_chkhost( LDAP *ld, tls_session *session, const char *name_in )
614 {
615         tlsg_session *s = (tlsg_session *)session;
616         int i, ret;
617         const gnutls_datum_t *peer_cert_list;
618         unsigned int list_size;
619         char altname[NI_MAXHOST];
620         size_t altnamesize;
621
622         gnutls_x509_crt_t cert;
623         const char *name;
624         char *ptr;
625         char *domain = NULL;
626 #ifdef LDAP_PF_INET6
627         struct in6_addr addr;
628 #else
629         struct in_addr addr;
630 #endif
631         int len1 = 0, len2 = 0;
632         int ntype = IS_DNS;
633
634         if( ldap_int_hostname &&
635                 ( !name_in || !strcasecmp( name_in, "localhost" ) ) )
636         {
637                 name = ldap_int_hostname;
638         } else {
639                 name = name_in;
640         }
641
642         peer_cert_list = gnutls_certificate_get_peers( s->session, 
643                                                 &list_size );
644         if ( !peer_cert_list ) {
645                 Debug( LDAP_DEBUG_ANY,
646                         "TLS: unable to get peer certificate.\n",
647                         0, 0, 0 );
648                 /* If this was a fatal condition, things would have
649                  * aborted long before now.
650                  */
651                 return LDAP_SUCCESS;
652         }
653         ret = gnutls_x509_crt_init( &cert );
654         if ( ret < 0 )
655                 return LDAP_LOCAL_ERROR;
656         ret = gnutls_x509_crt_import( cert, peer_cert_list, GNUTLS_X509_FMT_DER );
657         if ( ret ) {
658                 gnutls_x509_crt_deinit( cert );
659                 return LDAP_LOCAL_ERROR;
660         }
661
662 #ifdef LDAP_PF_INET6
663         if (name[0] == '[' && strchr(name, ']')) {
664                 char *n2 = ldap_strdup(name+1);
665                 *strchr(n2, ']') = 0;
666                 if (inet_pton(AF_INET6, n2, &addr))
667                         ntype = IS_IP6;
668                 LDAP_FREE(n2);
669         } else 
670 #endif
671         if ((ptr = strrchr(name, '.')) && isdigit((unsigned char)ptr[1])) {
672                 if (inet_aton(name, (struct in_addr *)&addr)) ntype = IS_IP4;
673         }
674         
675         if (ntype == IS_DNS) {
676                 len1 = strlen(name);
677                 domain = strchr(name, '.');
678                 if (domain) {
679                         len2 = len1 - (domain-name);
680                 }
681         }
682
683         for ( i=0, ret=0; ret >= 0; i++ ) {
684                 altnamesize = sizeof(altname);
685                 ret = gnutls_x509_crt_get_subject_alt_name( cert, i, 
686                         altname, &altnamesize, NULL );
687                 if ( ret < 0 ) break;
688
689                 /* ignore empty */
690                 if ( altnamesize == 0 ) continue;
691
692                 if ( ret == GNUTLS_SAN_DNSNAME ) {
693                         if (ntype != IS_DNS) continue;
694         
695                         /* Is this an exact match? */
696                         if ((len1 == altnamesize) && !strncasecmp(name, altname, len1)) {
697                                 break;
698                         }
699
700                         /* Is this a wildcard match? */
701                         if (domain && (altname[0] == '*') && (altname[1] == '.') &&
702                                 (len2 == altnamesize-1) && !strncasecmp(domain, &altname[1], len2))
703                         {
704                                 break;
705                         }
706                 } else if ( ret == GNUTLS_SAN_IPADDRESS ) {
707                         if (ntype == IS_DNS) continue;
708
709 #ifdef LDAP_PF_INET6
710                         if (ntype == IS_IP6 && altnamesize != sizeof(struct in6_addr)) {
711                                 continue;
712                         } else
713 #endif
714                         if (ntype == IS_IP4 && altnamesize != sizeof(struct in_addr)) {
715                                 continue;
716                         }
717                         if (!memcmp(altname, &addr, altnamesize)) {
718                                 break;
719                         }
720                 }
721         }
722         if ( ret >= 0 ) {
723                 ret = LDAP_SUCCESS;
724         } else {
725                 /* find the last CN */
726                 i=0;
727                 do {
728                         altnamesize = 0;
729                         ret = gnutls_x509_crt_get_dn_by_oid( cert, CN_OID,
730                                 i, 1, altname, &altnamesize );
731                         if ( ret == GNUTLS_E_SHORT_MEMORY_BUFFER )
732                                 i++;
733                         else
734                                 break;
735                 } while ( 1 );
736
737                 if ( i ) {
738                         altnamesize = sizeof(altname);
739                         ret = gnutls_x509_crt_get_dn_by_oid( cert, CN_OID,
740                                 i-1, 0, altname, &altnamesize );
741                 }
742
743                 if ( ret < 0 ) {
744                         Debug( LDAP_DEBUG_ANY,
745                                 "TLS: unable to get common name from peer certificate.\n",
746                                 0, 0, 0 );
747                         ret = LDAP_CONNECT_ERROR;
748                         if ( ld->ld_error ) {
749                                 LDAP_FREE( ld->ld_error );
750                         }
751                         ld->ld_error = LDAP_STRDUP(
752                                 _("TLS: unable to get CN from peer certificate"));
753
754                 } else {
755                         ret = LDAP_LOCAL_ERROR;
756                         if ( !len1 ) len1 = strlen( name );
757                         if ( len1 == altnamesize && strncasecmp(name, altname, altnamesize) == 0 ) {
758                                 ret = LDAP_SUCCESS;
759
760                         } else if (( altname[0] == '*' ) && ( altname[1] == '.' )) {
761                                         /* Is this a wildcard match? */
762                                 if( domain &&
763                                         (len2 == altnamesize-1) && !strncasecmp(domain, &altname[1], len2)) {
764                                         ret = LDAP_SUCCESS;
765                                 }
766                         }
767                 }
768
769                 if( ret == LDAP_LOCAL_ERROR ) {
770                         altname[altnamesize] = '\0';
771                         Debug( LDAP_DEBUG_ANY, "TLS: hostname (%s) does not match "
772                                 "common name in certificate (%s).\n", 
773                                 name, altname, 0 );
774                         ret = LDAP_CONNECT_ERROR;
775                         if ( ld->ld_error ) {
776                                 LDAP_FREE( ld->ld_error );
777                         }
778                         ld->ld_error = LDAP_STRDUP(
779                                 _("TLS: hostname does not match CN in peer certificate"));
780                 }
781         }
782         gnutls_x509_crt_deinit( cert );
783         return ret;
784 }
785
786 static int
787 tlsg_session_strength( tls_session *session )
788 {
789         tlsg_session *s = (tlsg_session *)session;
790         gnutls_cipher_algorithm_t c;
791
792         c = gnutls_cipher_get( s->session );
793         return gnutls_cipher_get_key_size( c ) * 8;
794 }
795
796 /* suites is a string of colon-separated cipher suite names. */
797 static int
798 tlsg_parse_ciphers( tlsg_ctx *ctx, char *suites )
799 {
800 #ifdef HAVE_CIPHERSUITES
801         const char *err;
802         return gnutls_priority_init( &ctx->prios, suites, &err );
803 #else
804         char *ptr, *end;
805         int i, j, len, num;
806         int *list, nkx = 0, ncipher = 0, nmac = 0;
807         int *kx, *cipher, *mac;
808
809         num = 0;
810         ptr = suites;
811         do {
812                 end = strchr(ptr, ':');
813                 if ( end )
814                         len = end - ptr;
815                 else
816                         len = strlen(ptr);
817                 for (i=0; i<tlsg_n_ciphers; i++) {
818                         if ( !strncasecmp( tlsg_ciphers[i].name, ptr, len )) {
819                                 num++;
820                                 break;
821                         }
822                 }
823                 if ( i == tlsg_n_ciphers ) {
824                         /* unrecognized cipher suite */
825                         return -1;
826                 }
827                 ptr += len + 1;
828         } while (end);
829
830         /* Space for all 3 lists */
831         list = LDAP_MALLOC( (num+1) * sizeof(int) * 3 );
832         if ( !list )
833                 return -1;
834         kx = list;
835         cipher = kx+num+1;
836         mac = cipher+num+1;
837
838         ptr = suites;
839         do {
840                 end = strchr(ptr, ':');
841                 if ( end )
842                         len = end - ptr;
843                 else
844                         len = strlen(ptr);
845                 for (i=0; i<tlsg_n_ciphers; i++) {
846                         /* For each cipher suite, insert its algorithms into
847                          * their respective priority lists. Make sure they
848                          * only appear once in each list.
849                          */
850                         if ( !strncasecmp( tlsg_ciphers[i].name, ptr, len )) {
851                                 for (j=0; j<nkx; j++)
852                                         if ( kx[j] == tlsg_ciphers[i].kx )
853                                                 break;
854                                 if ( j == nkx )
855                                         kx[nkx++] = tlsg_ciphers[i].kx;
856                                 for (j=0; j<ncipher; j++)
857                                         if ( cipher[j] == tlsg_ciphers[i].cipher )
858                                                 break;
859                                 if ( j == ncipher ) 
860                                         cipher[ncipher++] = tlsg_ciphers[i].cipher;
861                                 for (j=0; j<nmac; j++)
862                                         if ( mac[j] == tlsg_ciphers[i].mac )
863                                                 break;
864                                 if ( j == nmac )
865                                         mac[nmac++] = tlsg_ciphers[i].mac;
866                                 break;
867                         }
868                 }
869                 ptr += len + 1;
870         } while (end);
871         kx[nkx] = 0;
872         cipher[ncipher] = 0;
873         mac[nmac] = 0;
874         ctx->kx_list = kx;
875         ctx->cipher_list = cipher;
876         ctx->mac_list = mac;
877         return 0;
878 #endif
879 }
880
881 /*
882  * TLS support for LBER Sockbufs
883  */
884
885 struct tls_data {
886         tlsg_session            *session;
887         Sockbuf_IO_Desc         *sbiod;
888 };
889
890 static ssize_t
891 tlsg_recv( gnutls_transport_ptr_t ptr, void *buf, size_t len )
892 {
893         struct tls_data         *p;
894
895         if ( buf == NULL || len <= 0 ) return 0;
896
897         p = (struct tls_data *)ptr;
898
899         if ( p == NULL || p->sbiod == NULL ) {
900                 return 0;
901         }
902
903         return LBER_SBIOD_READ_NEXT( p->sbiod, buf, len );
904 }
905
906 static ssize_t
907 tlsg_send( gnutls_transport_ptr_t ptr, const void *buf, size_t len )
908 {
909         struct tls_data         *p;
910         
911         if ( buf == NULL || len <= 0 ) return 0;
912         
913         p = (struct tls_data *)ptr;
914
915         if ( p == NULL || p->sbiod == NULL ) {
916                 return 0;
917         }
918
919         return LBER_SBIOD_WRITE_NEXT( p->sbiod, (char *)buf, len );
920 }
921
922 static int
923 tlsg_sb_setup( Sockbuf_IO_Desc *sbiod, void *arg )
924 {
925         struct tls_data         *p;
926         tlsg_session    *session = arg;
927
928         assert( sbiod != NULL );
929
930         p = LBER_MALLOC( sizeof( *p ) );
931         if ( p == NULL ) {
932                 return -1;
933         }
934         
935         gnutls_transport_set_ptr( session->session, (gnutls_transport_ptr)p );
936         gnutls_transport_set_pull_function( session->session, tlsg_recv );
937         gnutls_transport_set_push_function( session->session, tlsg_send );
938         p->session = session;
939         p->sbiod = sbiod;
940         sbiod->sbiod_pvt = p;
941         return 0;
942 }
943
944 static int
945 tlsg_sb_remove( Sockbuf_IO_Desc *sbiod )
946 {
947         struct tls_data         *p;
948         
949         assert( sbiod != NULL );
950         assert( sbiod->sbiod_pvt != NULL );
951
952         p = (struct tls_data *)sbiod->sbiod_pvt;
953         gnutls_deinit ( p->session->session );
954         LBER_FREE( p->session );
955         LBER_FREE( sbiod->sbiod_pvt );
956         sbiod->sbiod_pvt = NULL;
957         return 0;
958 }
959
960 static int
961 tlsg_sb_close( Sockbuf_IO_Desc *sbiod )
962 {
963         struct tls_data         *p;
964         
965         assert( sbiod != NULL );
966         assert( sbiod->sbiod_pvt != NULL );
967
968         p = (struct tls_data *)sbiod->sbiod_pvt;
969         gnutls_bye ( p->session->session, GNUTLS_SHUT_RDWR );
970         return 0;
971 }
972
973 static int
974 tlsg_sb_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
975 {
976         struct tls_data         *p;
977         
978         assert( sbiod != NULL );
979         assert( sbiod->sbiod_pvt != NULL );
980
981         p = (struct tls_data *)sbiod->sbiod_pvt;
982         
983         if ( opt == LBER_SB_OPT_GET_SSL ) {
984                 *((tlsg_session **)arg) = p->session;
985                 return 1;
986                 
987         } else if ( opt == LBER_SB_OPT_DATA_READY ) {
988                 if( gnutls_record_check_pending( p->session->session ) > 0 ) {
989                         return 1;
990                 }
991         }
992         
993         return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
994 }
995
996 static ber_slen_t
997 tlsg_sb_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
998 {
999         struct tls_data         *p;
1000         ber_slen_t              ret;
1001
1002         assert( sbiod != NULL );
1003         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
1004
1005         p = (struct tls_data *)sbiod->sbiod_pvt;
1006
1007         ret = gnutls_record_recv ( p->session->session, buf, len );
1008         switch (ret) {
1009         case GNUTLS_E_INTERRUPTED:
1010         case GNUTLS_E_AGAIN:
1011                 sbiod->sbiod_sb->sb_trans_needs_read = 1;
1012                 sock_errset(EWOULDBLOCK);
1013                 ret = 0;
1014                 break;
1015         case GNUTLS_E_REHANDSHAKE:
1016                 for ( ret = gnutls_handshake ( p->session->session );
1017                       ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN;
1018                       ret = gnutls_handshake ( p->session->session ) );
1019                 sbiod->sbiod_sb->sb_trans_needs_read = 1;
1020                 ret = 0;
1021                 break;
1022         default:
1023                 sbiod->sbiod_sb->sb_trans_needs_read = 0;
1024         }
1025         return ret;
1026 }
1027
1028 static ber_slen_t
1029 tlsg_sb_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
1030 {
1031         struct tls_data         *p;
1032         ber_slen_t              ret;
1033
1034         assert( sbiod != NULL );
1035         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
1036
1037         p = (struct tls_data *)sbiod->sbiod_pvt;
1038
1039         ret = gnutls_record_send ( p->session->session, (char *)buf, len );
1040
1041         if ( ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN ) {
1042                 sbiod->sbiod_sb->sb_trans_needs_write = 1;
1043                 sock_errset(EWOULDBLOCK);
1044                 ret = 0;
1045         } else {
1046                 sbiod->sbiod_sb->sb_trans_needs_write = 0;
1047         }
1048         return ret;
1049 }
1050
1051 static Sockbuf_IO tlsg_sbio =
1052 {
1053         tlsg_sb_setup,          /* sbi_setup */
1054         tlsg_sb_remove,         /* sbi_remove */
1055         tlsg_sb_ctrl,           /* sbi_ctrl */
1056         tlsg_sb_read,           /* sbi_read */
1057         tlsg_sb_write,          /* sbi_write */
1058         tlsg_sb_close           /* sbi_close */
1059 };
1060
1061 /* Certs are not automatically varified during the handshake */
1062 static int
1063 tlsg_cert_verify( tlsg_session *ssl )
1064 {
1065         unsigned int status = 0;
1066         int err;
1067         time_t now = time(0);
1068         time_t peertime;
1069
1070         err = gnutls_certificate_verify_peers2( ssl->session, &status );
1071         if ( err < 0 ) {
1072                 Debug( LDAP_DEBUG_ANY,"TLS: gnutls_certificate_verify_peers2 failed %d\n",
1073                         err,0,0 );
1074                 return -1;
1075         }
1076         if ( status ) {
1077                 Debug( LDAP_DEBUG_TRACE,"TLS: peer cert untrusted or revoked (0x%x)\n",
1078                         status, 0,0 );
1079                 return -1;
1080         }
1081         peertime = gnutls_certificate_expiration_time_peers( ssl->session );
1082         if ( peertime == (time_t) -1 ) {
1083                 Debug( LDAP_DEBUG_ANY, "TLS: gnutls_certificate_expiration_time_peers failed\n",
1084                         0, 0, 0 );
1085                 return -1;
1086         }
1087         if ( peertime < now ) {
1088                 Debug( LDAP_DEBUG_ANY, "TLS: peer certificate is expired\n",
1089                         0, 0, 0 );
1090                 return -1;
1091         }
1092         peertime = gnutls_certificate_activation_time_peers( ssl->session );
1093         if ( peertime == (time_t) -1 ) {
1094                 Debug( LDAP_DEBUG_ANY, "TLS: gnutls_certificate_activation_time_peers failed\n",
1095                         0, 0, 0 );
1096                 return -1;
1097         }
1098         if ( peertime > now ) {
1099                 Debug( LDAP_DEBUG_ANY, "TLS: peer certificate not yet active\n",
1100                         0, 0, 0 );
1101                 return -1;
1102         }
1103         return 0;
1104 }
1105
1106 tls_impl ldap_int_tls_impl = {
1107         "GnuTLS",
1108
1109         tlsg_init,
1110         tlsg_destroy,
1111
1112         tlsg_ctx_new,
1113         tlsg_ctx_ref,
1114         tlsg_ctx_free,
1115         tlsg_ctx_init,
1116
1117         tlsg_session_new,
1118         tlsg_session_connect,
1119         tlsg_session_accept,
1120         tlsg_session_upflags,
1121         tlsg_session_errmsg,
1122         tlsg_session_my_dn,
1123         tlsg_session_peer_dn,
1124         tlsg_session_chkhost,
1125         tlsg_session_strength,
1126
1127         &tlsg_sbio,
1128
1129 #ifdef LDAP_R_COMPILE
1130         tlsg_thr_init,
1131 #else
1132         NULL,
1133 #endif
1134
1135         0
1136 };
1137
1138 #endif /* HAVE_GNUTLS */