]> git.sur5r.net Git - openldap/blob - libraries/libldap/tls_g.c
e3c82bbc6f6f68fe1c2e9d3d884e1b8553b408e4
[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                 altnamesize = sizeof(altname);
726                 ret = gnutls_x509_crt_get_dn_by_oid( cert, CN_OID,
727                         0, 0, altname, &altnamesize );
728                 if ( ret < 0 ) {
729                         Debug( LDAP_DEBUG_ANY,
730                                 "TLS: unable to get common name from peer certificate.\n",
731                                 0, 0, 0 );
732                         ret = LDAP_CONNECT_ERROR;
733                         if ( ld->ld_error ) {
734                                 LDAP_FREE( ld->ld_error );
735                         }
736                         ld->ld_error = LDAP_STRDUP(
737                                 _("TLS: unable to get CN from peer certificate"));
738
739                 } else {
740                         ret = LDAP_LOCAL_ERROR;
741                         if ( !len1 ) len1 = strlen( name );
742                         if ( len1 == altnamesize && strncasecmp(name, altname, altnamesize) == 0 ) {
743                                 ret = LDAP_SUCCESS;
744
745                         } else if (( altname[0] == '*' ) && ( altname[1] == '.' )) {
746                                         /* Is this a wildcard match? */
747                                 if( domain &&
748                                         (len2 == altnamesize-1) && !strncasecmp(domain, &altname[1], len2)) {
749                                         ret = LDAP_SUCCESS;
750                                 }
751                         }
752                 }
753
754                 if( ret == LDAP_LOCAL_ERROR ) {
755                         altname[altnamesize] = '\0';
756                         Debug( LDAP_DEBUG_ANY, "TLS: hostname (%s) does not match "
757                                 "common name in certificate (%s).\n", 
758                                 name, altname, 0 );
759                         ret = LDAP_CONNECT_ERROR;
760                         if ( ld->ld_error ) {
761                                 LDAP_FREE( ld->ld_error );
762                         }
763                         ld->ld_error = LDAP_STRDUP(
764                                 _("TLS: hostname does not match CN in peer certificate"));
765                 }
766         }
767         gnutls_x509_crt_deinit( cert );
768         return ret;
769 }
770
771 static int
772 tlsg_session_strength( tls_session *session )
773 {
774         tlsg_session *s = (tlsg_session *)session;
775         gnutls_cipher_algorithm_t c;
776
777         c = gnutls_cipher_get( s->session );
778         return gnutls_cipher_get_key_size( c ) * 8;
779 }
780
781 /* suites is a string of colon-separated cipher suite names. */
782 static int
783 tlsg_parse_ciphers( tlsg_ctx *ctx, char *suites )
784 {
785 #ifdef HAVE_CIPHERSUITES
786         const char *err;
787         return gnutls_priority_init( &ctx->prios, suites, &err );
788 #else
789         char *ptr, *end;
790         int i, j, len, num;
791         int *list, nkx = 0, ncipher = 0, nmac = 0;
792         int *kx, *cipher, *mac;
793
794         num = 0;
795         ptr = suites;
796         do {
797                 end = strchr(ptr, ':');
798                 if ( end )
799                         len = end - ptr;
800                 else
801                         len = strlen(ptr);
802                 for (i=0; i<tlsg_n_ciphers; i++) {
803                         if ( !strncasecmp( tlsg_ciphers[i].name, ptr, len )) {
804                                 num++;
805                                 break;
806                         }
807                 }
808                 if ( i == tlsg_n_ciphers ) {
809                         /* unrecognized cipher suite */
810                         return -1;
811                 }
812                 ptr += len + 1;
813         } while (end);
814
815         /* Space for all 3 lists */
816         list = LDAP_MALLOC( (num+1) * sizeof(int) * 3 );
817         if ( !list )
818                 return -1;
819         kx = list;
820         cipher = kx+num+1;
821         mac = cipher+num+1;
822
823         ptr = suites;
824         do {
825                 end = strchr(ptr, ':');
826                 if ( end )
827                         len = end - ptr;
828                 else
829                         len = strlen(ptr);
830                 for (i=0; i<tlsg_n_ciphers; i++) {
831                         /* For each cipher suite, insert its algorithms into
832                          * their respective priority lists. Make sure they
833                          * only appear once in each list.
834                          */
835                         if ( !strncasecmp( tlsg_ciphers[i].name, ptr, len )) {
836                                 for (j=0; j<nkx; j++)
837                                         if ( kx[j] == tlsg_ciphers[i].kx )
838                                                 break;
839                                 if ( j == nkx )
840                                         kx[nkx++] = tlsg_ciphers[i].kx;
841                                 for (j=0; j<ncipher; j++)
842                                         if ( cipher[j] == tlsg_ciphers[i].cipher )
843                                                 break;
844                                 if ( j == ncipher ) 
845                                         cipher[ncipher++] = tlsg_ciphers[i].cipher;
846                                 for (j=0; j<nmac; j++)
847                                         if ( mac[j] == tlsg_ciphers[i].mac )
848                                                 break;
849                                 if ( j == nmac )
850                                         mac[nmac++] = tlsg_ciphers[i].mac;
851                                 break;
852                         }
853                 }
854                 ptr += len + 1;
855         } while (end);
856         kx[nkx] = 0;
857         cipher[ncipher] = 0;
858         mac[nmac] = 0;
859         ctx->kx_list = kx;
860         ctx->cipher_list = cipher;
861         ctx->mac_list = mac;
862         return 0;
863 #endif
864 }
865
866 /*
867  * TLS support for LBER Sockbufs
868  */
869
870 struct tls_data {
871         tlsg_session            *session;
872         Sockbuf_IO_Desc         *sbiod;
873 };
874
875 static ssize_t
876 tlsg_recv( gnutls_transport_ptr_t ptr, void *buf, size_t len )
877 {
878         struct tls_data         *p;
879
880         if ( buf == NULL || len <= 0 ) return 0;
881
882         p = (struct tls_data *)ptr;
883
884         if ( p == NULL || p->sbiod == NULL ) {
885                 return 0;
886         }
887
888         return LBER_SBIOD_READ_NEXT( p->sbiod, buf, len );
889 }
890
891 static ssize_t
892 tlsg_send( gnutls_transport_ptr_t ptr, const void *buf, size_t len )
893 {
894         struct tls_data         *p;
895         
896         if ( buf == NULL || len <= 0 ) return 0;
897         
898         p = (struct tls_data *)ptr;
899
900         if ( p == NULL || p->sbiod == NULL ) {
901                 return 0;
902         }
903
904         return LBER_SBIOD_WRITE_NEXT( p->sbiod, (char *)buf, len );
905 }
906
907 static int
908 tlsg_sb_setup( Sockbuf_IO_Desc *sbiod, void *arg )
909 {
910         struct tls_data         *p;
911         tlsg_session    *session = arg;
912
913         assert( sbiod != NULL );
914
915         p = LBER_MALLOC( sizeof( *p ) );
916         if ( p == NULL ) {
917                 return -1;
918         }
919         
920         gnutls_transport_set_ptr( session->session, (gnutls_transport_ptr)p );
921         gnutls_transport_set_pull_function( session->session, tlsg_recv );
922         gnutls_transport_set_push_function( session->session, tlsg_send );
923         p->session = session;
924         p->sbiod = sbiod;
925         sbiod->sbiod_pvt = p;
926         return 0;
927 }
928
929 static int
930 tlsg_sb_remove( Sockbuf_IO_Desc *sbiod )
931 {
932         struct tls_data         *p;
933         
934         assert( sbiod != NULL );
935         assert( sbiod->sbiod_pvt != NULL );
936
937         p = (struct tls_data *)sbiod->sbiod_pvt;
938         gnutls_deinit ( p->session->session );
939         LBER_FREE( p->session );
940         LBER_FREE( sbiod->sbiod_pvt );
941         sbiod->sbiod_pvt = NULL;
942         return 0;
943 }
944
945 static int
946 tlsg_sb_close( Sockbuf_IO_Desc *sbiod )
947 {
948         struct tls_data         *p;
949         
950         assert( sbiod != NULL );
951         assert( sbiod->sbiod_pvt != NULL );
952
953         p = (struct tls_data *)sbiod->sbiod_pvt;
954         gnutls_bye ( p->session->session, GNUTLS_SHUT_RDWR );
955         return 0;
956 }
957
958 static int
959 tlsg_sb_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
960 {
961         struct tls_data         *p;
962         
963         assert( sbiod != NULL );
964         assert( sbiod->sbiod_pvt != NULL );
965
966         p = (struct tls_data *)sbiod->sbiod_pvt;
967         
968         if ( opt == LBER_SB_OPT_GET_SSL ) {
969                 *((tlsg_session **)arg) = p->session;
970                 return 1;
971                 
972         } else if ( opt == LBER_SB_OPT_DATA_READY ) {
973                 if( gnutls_record_check_pending( p->session->session ) > 0 ) {
974                         return 1;
975                 }
976         }
977         
978         return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
979 }
980
981 static ber_slen_t
982 tlsg_sb_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
983 {
984         struct tls_data         *p;
985         ber_slen_t              ret;
986
987         assert( sbiod != NULL );
988         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
989
990         p = (struct tls_data *)sbiod->sbiod_pvt;
991
992         ret = gnutls_record_recv ( p->session->session, buf, len );
993         switch (ret) {
994         case GNUTLS_E_INTERRUPTED:
995         case GNUTLS_E_AGAIN:
996                 sbiod->sbiod_sb->sb_trans_needs_read = 1;
997                 sock_errset(EWOULDBLOCK);
998                 ret = 0;
999                 break;
1000         case GNUTLS_E_REHANDSHAKE:
1001                 for ( ret = gnutls_handshake ( p->session->session );
1002                       ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN;
1003                       ret = gnutls_handshake ( p->session->session ) );
1004                 sbiod->sbiod_sb->sb_trans_needs_read = 1;
1005                 ret = 0;
1006                 break;
1007         default:
1008                 sbiod->sbiod_sb->sb_trans_needs_read = 0;
1009         }
1010         return ret;
1011 }
1012
1013 static ber_slen_t
1014 tlsg_sb_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
1015 {
1016         struct tls_data         *p;
1017         ber_slen_t              ret;
1018
1019         assert( sbiod != NULL );
1020         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
1021
1022         p = (struct tls_data *)sbiod->sbiod_pvt;
1023
1024         ret = gnutls_record_send ( p->session->session, (char *)buf, len );
1025
1026         if ( ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN ) {
1027                 sbiod->sbiod_sb->sb_trans_needs_write = 1;
1028                 sock_errset(EWOULDBLOCK);
1029                 ret = 0;
1030         } else {
1031                 sbiod->sbiod_sb->sb_trans_needs_write = 0;
1032         }
1033         return ret;
1034 }
1035
1036 static Sockbuf_IO tlsg_sbio =
1037 {
1038         tlsg_sb_setup,          /* sbi_setup */
1039         tlsg_sb_remove,         /* sbi_remove */
1040         tlsg_sb_ctrl,           /* sbi_ctrl */
1041         tlsg_sb_read,           /* sbi_read */
1042         tlsg_sb_write,          /* sbi_write */
1043         tlsg_sb_close           /* sbi_close */
1044 };
1045
1046 /* Certs are not automatically varified during the handshake */
1047 static int
1048 tlsg_cert_verify( tlsg_session *ssl )
1049 {
1050         unsigned int status = 0;
1051         int err;
1052         time_t now = time(0);
1053         time_t peertime;
1054
1055         err = gnutls_certificate_verify_peers2( ssl->session, &status );
1056         if ( err < 0 ) {
1057                 Debug( LDAP_DEBUG_ANY,"TLS: gnutls_certificate_verify_peers2 failed %d\n",
1058                         err,0,0 );
1059                 return -1;
1060         }
1061         if ( status ) {
1062                 Debug( LDAP_DEBUG_TRACE,"TLS: peer cert untrusted or revoked (0x%x)\n",
1063                         status, 0,0 );
1064                 return -1;
1065         }
1066         peertime = gnutls_certificate_expiration_time_peers( ssl->session );
1067         if ( peertime == (time_t) -1 ) {
1068                 Debug( LDAP_DEBUG_ANY, "TLS: gnutls_certificate_expiration_time_peers failed\n",
1069                         0, 0, 0 );
1070                 return -1;
1071         }
1072         if ( peertime < now ) {
1073                 Debug( LDAP_DEBUG_ANY, "TLS: peer certificate is expired\n",
1074                         0, 0, 0 );
1075                 return -1;
1076         }
1077         peertime = gnutls_certificate_activation_time_peers( ssl->session );
1078         if ( peertime == (time_t) -1 ) {
1079                 Debug( LDAP_DEBUG_ANY, "TLS: gnutls_certificate_activation_time_peers failed\n",
1080                         0, 0, 0 );
1081                 return -1;
1082         }
1083         if ( peertime > now ) {
1084                 Debug( LDAP_DEBUG_ANY, "TLS: peer certificate not yet active\n",
1085                         0, 0, 0 );
1086                 return -1;
1087         }
1088         return 0;
1089 }
1090
1091 tls_impl ldap_int_tls_impl = {
1092         "GnuTLS",
1093
1094         tlsg_init,
1095         tlsg_destroy,
1096
1097         tlsg_ctx_new,
1098         tlsg_ctx_ref,
1099         tlsg_ctx_free,
1100         tlsg_ctx_init,
1101
1102         tlsg_session_new,
1103         tlsg_session_connect,
1104         tlsg_session_accept,
1105         tlsg_session_upflags,
1106         tlsg_session_errmsg,
1107         tlsg_session_my_dn,
1108         tlsg_session_peer_dn,
1109         tlsg_session_chkhost,
1110         tlsg_session_strength,
1111
1112         &tlsg_sbio,
1113
1114 #ifdef LDAP_R_COMPILE
1115         tlsg_thr_init,
1116 #else
1117         NULL,
1118 #endif
1119
1120         0
1121 };
1122
1123 #endif /* HAVE_GNUTLS */