]> git.sur5r.net Git - openldap/blob - libraries/libldap/tls_o.c
183410a4b47a68d717bbfab184846649e4865f40
[openldap] / libraries / libldap / tls_o.c
1 /* tls_o.c - Handle tls/ssl using OpenSSL */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2008-2012 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: Rewritten by Howard Chu
17  */
18
19 #include "portable.h"
20
21 #ifdef HAVE_OPENSSL
22
23 #include "ldap_config.h"
24
25 #include <stdio.h>
26
27 #include <ac/stdlib.h>
28 #include <ac/errno.h>
29 #include <ac/socket.h>
30 #include <ac/string.h>
31 #include <ac/ctype.h>
32 #include <ac/time.h>
33 #include <ac/unistd.h>
34 #include <ac/param.h>
35 #include <ac/dirent.h>
36
37 #include "ldap-int.h"
38 #include "ldap-tls.h"
39
40 #ifdef HAVE_OPENSSL_SSL_H
41 #include <openssl/ssl.h>
42 #include <openssl/x509v3.h>
43 #include <openssl/err.h>
44 #include <openssl/rand.h>
45 #include <openssl/safestack.h>
46 #elif defined( HAVE_SSL_H )
47 #include <ssl.h>
48 #endif
49
50 typedef SSL_CTX tlso_ctx;
51 typedef SSL tlso_session;
52
53 static int  tlso_opt_trace = 1;
54
55 static void tlso_report_error( void );
56
57 static void tlso_info_cb( const SSL *ssl, int where, int ret );
58 static int tlso_verify_cb( int ok, X509_STORE_CTX *ctx );
59 static int tlso_verify_ok( int ok, X509_STORE_CTX *ctx );
60 static RSA * tlso_tmp_rsa_cb( SSL *ssl, int is_export, int key_length );
61
62 static DH * tlso_tmp_dh_cb( SSL *ssl, int is_export, int key_length );
63
64 typedef struct dhplist {
65         struct dhplist *next;
66         int keylength;
67         DH *param;
68 } dhplist;
69
70 static dhplist *tlso_dhparams;
71
72 static int tlso_seed_PRNG( const char *randfile );
73
74 #ifdef LDAP_R_COMPILE
75 /*
76  * provide mutexes for the OpenSSL library.
77  */
78 static ldap_pvt_thread_mutex_t  tlso_mutexes[CRYPTO_NUM_LOCKS];
79 static ldap_pvt_thread_mutex_t  tlso_dh_mutex;
80
81 static void tlso_locking_cb( int mode, int type, const char *file, int line )
82 {
83         if ( mode & CRYPTO_LOCK ) {
84                 ldap_pvt_thread_mutex_lock( &tlso_mutexes[type] );
85         } else {
86                 ldap_pvt_thread_mutex_unlock( &tlso_mutexes[type] );
87         }
88 }
89
90 static unsigned long tlso_thread_self( void )
91 {
92         /* FIXME: CRYPTO_set_id_callback only works when ldap_pvt_thread_t
93          * is an integral type that fits in an unsigned long
94          */
95
96         /* force an error if the ldap_pvt_thread_t type is too large */
97         enum { ok = sizeof( ldap_pvt_thread_t ) <= sizeof( unsigned long ) };
98         typedef struct { int dummy: ok ? 1 : -1; } Check[ok ? 1 : -1];
99
100         return (unsigned long) ldap_pvt_thread_self();
101 }
102
103 static void tlso_thr_init( void )
104 {
105         int i;
106
107         for( i=0; i< CRYPTO_NUM_LOCKS ; i++ ) {
108                 ldap_pvt_thread_mutex_init( &tlso_mutexes[i] );
109         }
110         ldap_pvt_thread_mutex_init( &tlso_dh_mutex );
111         CRYPTO_set_locking_callback( tlso_locking_cb );
112         CRYPTO_set_id_callback( tlso_thread_self );
113 }
114 #endif /* LDAP_R_COMPILE */
115
116 static STACK_OF(X509_NAME) *
117 tlso_ca_list( char * bundle, char * dir )
118 {
119         STACK_OF(X509_NAME) *ca_list = NULL;
120
121         if ( bundle ) {
122                 ca_list = SSL_load_client_CA_file( bundle );
123         }
124 #if defined(HAVE_DIRENT_H) || defined(dirent)
125         if ( dir ) {
126                 int freeit = 0;
127
128                 if ( !ca_list ) {
129                         ca_list = sk_X509_NAME_new_null();
130                         freeit = 1;
131                 }
132                 if ( !SSL_add_dir_cert_subjects_to_stack( ca_list, dir ) &&
133                         freeit ) {
134                         sk_X509_NAME_free( ca_list );
135                         ca_list = NULL;
136                 }
137         }
138 #endif
139         return ca_list;
140 }
141
142 /*
143  * Initialize TLS subsystem. Should be called only once.
144  */
145 static int
146 tlso_init( void )
147 {
148         struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT();   
149 #ifdef HAVE_EBCDIC
150         {
151                 char *file = LDAP_STRDUP( lo->ldo_tls_randfile );
152                 if ( file ) __atoe( file );
153                 (void) tlso_seed_PRNG( file );
154                 LDAP_FREE( file );
155         }
156 #else
157         (void) tlso_seed_PRNG( lo->ldo_tls_randfile );
158 #endif
159
160         SSL_load_error_strings();
161         SSL_library_init();
162         OpenSSL_add_all_digests();
163
164         /* FIXME: mod_ssl does this */
165         X509V3_add_standard_extensions();
166
167         return 0;
168 }
169
170 /*
171  * Tear down the TLS subsystem. Should only be called once.
172  */
173 static void
174 tlso_destroy( void )
175 {
176         struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT();   
177
178         EVP_cleanup();
179         ERR_remove_state(0);
180         ERR_free_strings();
181
182         if ( lo->ldo_tls_randfile ) {
183                 LDAP_FREE( lo->ldo_tls_randfile );
184                 lo->ldo_tls_randfile = NULL;
185         }
186 }
187
188 static tls_ctx *
189 tlso_ctx_new( struct ldapoptions *lo )
190 {
191         return (tls_ctx *) SSL_CTX_new( SSLv23_method() );
192 }
193
194 static void
195 tlso_ctx_ref( tls_ctx *ctx )
196 {
197         tlso_ctx *c = (tlso_ctx *)ctx;
198         CRYPTO_add( &c->references, 1, CRYPTO_LOCK_SSL_CTX );
199 }
200
201 static void
202 tlso_ctx_free ( tls_ctx *ctx )
203 {
204         tlso_ctx *c = (tlso_ctx *)ctx;
205         SSL_CTX_free( c );
206 }
207
208 /*
209  * initialize a new TLS context
210  */
211 static int
212 tlso_ctx_init( struct ldapoptions *lo, struct ldaptls *lt, int is_server )
213 {
214         tlso_ctx *ctx = (tlso_ctx *)lo->ldo_tls_ctx;
215         int i;
216
217         if ( is_server ) {
218                 SSL_CTX_set_session_id_context( ctx,
219                         (const unsigned char *) "OpenLDAP", sizeof("OpenLDAP")-1 );
220         }
221
222         if ( lo->ldo_tls_protocol_min > LDAP_OPT_X_TLS_PROTOCOL_SSL3 )
223                 SSL_CTX_set_options( ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 );
224         else if ( lo->ldo_tls_protocol_min > LDAP_OPT_X_TLS_PROTOCOL_SSL2 )
225                 SSL_CTX_set_options( ctx, SSL_OP_NO_SSLv2 );
226
227         if ( lo->ldo_tls_ciphersuite &&
228                 !SSL_CTX_set_cipher_list( ctx, lt->lt_ciphersuite ) )
229         {
230                 Debug( LDAP_DEBUG_ANY,
231                            "TLS: could not set cipher list %s.\n",
232                            lo->ldo_tls_ciphersuite, 0, 0 );
233                 tlso_report_error();
234                 return -1;
235         }
236
237         if (lo->ldo_tls_cacertfile != NULL || lo->ldo_tls_cacertdir != NULL) {
238                 if ( !SSL_CTX_load_verify_locations( ctx,
239                                 lt->lt_cacertfile, lt->lt_cacertdir ) ||
240                         !SSL_CTX_set_default_verify_paths( ctx ) )
241                 {
242                         Debug( LDAP_DEBUG_ANY, "TLS: "
243                                 "could not load verify locations (file:`%s',dir:`%s').\n",
244                                 lo->ldo_tls_cacertfile ? lo->ldo_tls_cacertfile : "",
245                                 lo->ldo_tls_cacertdir ? lo->ldo_tls_cacertdir : "",
246                                 0 );
247                         tlso_report_error();
248                         return -1;
249                 }
250
251                 if ( is_server ) {
252                         STACK_OF(X509_NAME) *calist;
253                         /* List of CA names to send to a client */
254                         calist = tlso_ca_list( lt->lt_cacertfile, lt->lt_cacertdir );
255                         if ( !calist ) {
256                                 Debug( LDAP_DEBUG_ANY, "TLS: "
257                                         "could not load client CA list (file:`%s',dir:`%s').\n",
258                                         lo->ldo_tls_cacertfile ? lo->ldo_tls_cacertfile : "",
259                                         lo->ldo_tls_cacertdir ? lo->ldo_tls_cacertdir : "",
260                                         0 );
261                                 tlso_report_error();
262                                 return -1;
263                         }
264
265                         SSL_CTX_set_client_CA_list( ctx, calist );
266                 }
267         }
268
269         if ( lo->ldo_tls_certfile &&
270                 !SSL_CTX_use_certificate_file( ctx,
271                         lt->lt_certfile, SSL_FILETYPE_PEM ) )
272         {
273                 Debug( LDAP_DEBUG_ANY,
274                         "TLS: could not use certificate `%s'.\n",
275                         lo->ldo_tls_certfile,0,0);
276                 tlso_report_error();
277                 return -1;
278         }
279
280         /* Key validity is checked automatically if cert has already been set */
281         if ( lo->ldo_tls_keyfile &&
282                 !SSL_CTX_use_PrivateKey_file( ctx,
283                         lt->lt_keyfile, SSL_FILETYPE_PEM ) )
284         {
285                 Debug( LDAP_DEBUG_ANY,
286                         "TLS: could not use key file `%s'.\n",
287                         lo->ldo_tls_keyfile,0,0);
288                 tlso_report_error();
289                 return -1;
290         }
291
292         if ( lo->ldo_tls_dhfile ) {
293                 DH *dh = NULL;
294                 BIO *bio;
295                 dhplist *p;
296
297                 if (( bio=BIO_new_file( lt->lt_dhfile,"r" )) == NULL ) {
298                         Debug( LDAP_DEBUG_ANY,
299                                 "TLS: could not use DH parameters file `%s'.\n",
300                                 lo->ldo_tls_dhfile,0,0);
301                         tlso_report_error();
302                         return -1;
303                 }
304                 while (( dh=PEM_read_bio_DHparams( bio, NULL, NULL, NULL ))) {
305                         p = LDAP_MALLOC( sizeof(dhplist) );
306                         if ( p != NULL ) {
307                                 p->keylength = DH_size( dh ) * 8;
308                                 p->param = dh;
309                                 p->next = tlso_dhparams;
310                                 tlso_dhparams = p;
311                         }
312                 }
313                 BIO_free( bio );
314         }
315
316         if ( tlso_opt_trace ) {
317                 SSL_CTX_set_info_callback( ctx, tlso_info_cb );
318         }
319
320         i = SSL_VERIFY_NONE;
321         if ( lo->ldo_tls_require_cert ) {
322                 i = SSL_VERIFY_PEER;
323                 if ( lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_DEMAND ||
324                          lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_HARD ) {
325                         i |= SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
326                 }
327         }
328
329         SSL_CTX_set_verify( ctx, i,
330                 lo->ldo_tls_require_cert == LDAP_OPT_X_TLS_ALLOW ?
331                 tlso_verify_ok : tlso_verify_cb );
332         SSL_CTX_set_tmp_rsa_callback( ctx, tlso_tmp_rsa_cb );
333         if ( lo->ldo_tls_dhfile ) {
334                 SSL_CTX_set_tmp_dh_callback( ctx, tlso_tmp_dh_cb );
335         }
336 #ifdef HAVE_OPENSSL_CRL
337         if ( lo->ldo_tls_crlcheck ) {
338                 X509_STORE *x509_s = SSL_CTX_get_cert_store( ctx );
339                 if ( lo->ldo_tls_crlcheck == LDAP_OPT_X_TLS_CRL_PEER ) {
340                         X509_STORE_set_flags( x509_s, X509_V_FLAG_CRL_CHECK );
341                 } else if ( lo->ldo_tls_crlcheck == LDAP_OPT_X_TLS_CRL_ALL ) {
342                         X509_STORE_set_flags( x509_s, 
343                                         X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL  );
344                 }
345         }
346 #endif
347         return 0;
348 }
349
350 static tls_session *
351 tlso_session_new( tls_ctx *ctx, int is_server )
352 {
353         tlso_ctx *c = (tlso_ctx *)ctx;
354         return (tls_session *)SSL_new( c );
355 }
356
357 static int
358 tlso_session_connect( LDAP *ld, tls_session *sess )
359 {
360         tlso_session *s = (tlso_session *)sess;
361
362         /* Caller expects 0 = success, OpenSSL returns 1 = success */
363         return SSL_connect( s ) - 1;
364 }
365
366 static int
367 tlso_session_accept( tls_session *sess )
368 {
369         tlso_session *s = (tlso_session *)sess;
370
371         /* Caller expects 0 = success, OpenSSL returns 1 = success */
372         return SSL_accept( s ) - 1;
373 }
374
375 static int
376 tlso_session_upflags( Sockbuf *sb, tls_session *sess, int rc )
377 {
378         tlso_session *s = (tlso_session *)sess;
379
380         /* 1 was subtracted above, offset it back now */
381         rc = SSL_get_error(s, rc+1);
382         if (rc == SSL_ERROR_WANT_READ) {
383                 sb->sb_trans_needs_read  = 1;
384                 return 1;
385
386         } else if (rc == SSL_ERROR_WANT_WRITE) {
387                 sb->sb_trans_needs_write = 1;
388                 return 1;
389
390         } else if (rc == SSL_ERROR_WANT_CONNECT) {
391                 return 1;
392         }
393         return 0;
394 }
395
396 static char *
397 tlso_session_errmsg( tls_session *sess, int rc, char *buf, size_t len )
398 {
399         char err[256] = "";
400         const char *certerr=NULL;
401         tlso_session *s = (tlso_session *)sess;
402
403         rc = ERR_peek_error();
404         if ( rc ) {
405                 ERR_error_string_n( rc, err, sizeof(err) );
406                 if ( ( ERR_GET_LIB(rc) == ERR_LIB_SSL ) && 
407                                 ( ERR_GET_REASON(rc) == SSL_R_CERTIFICATE_VERIFY_FAILED ) ) {
408                         int certrc = SSL_get_verify_result(s);
409                         certerr = (char *)X509_verify_cert_error_string(certrc);
410                 }
411                 snprintf(buf, len, "%s%s%s%s", err, certerr ? " (" :"", 
412                                 certerr ? certerr : "", certerr ?  ")" : "" );
413                 return buf;
414         }
415         return NULL;
416 }
417
418 static int
419 tlso_session_my_dn( tls_session *sess, struct berval *der_dn )
420 {
421         tlso_session *s = (tlso_session *)sess;
422         X509 *x;
423         X509_NAME *xn;
424
425         x = SSL_get_certificate( s );
426
427         if (!x) return LDAP_INVALID_CREDENTIALS;
428         
429         xn = X509_get_subject_name(x);
430         der_dn->bv_len = i2d_X509_NAME( xn, NULL );
431         der_dn->bv_val = xn->bytes->data;
432         /* Don't X509_free, the session is still using it */
433         return 0;
434 }
435
436 static X509 *
437 tlso_get_cert( SSL *s )
438 {
439         /* If peer cert was bad, treat as if no cert was given */
440         if (SSL_get_verify_result(s)) {
441                 return NULL;
442         }
443         return SSL_get_peer_certificate(s);
444 }
445
446 static int
447 tlso_session_peer_dn( tls_session *sess, struct berval *der_dn )
448 {
449         tlso_session *s = (tlso_session *)sess;
450         X509 *x = tlso_get_cert( s );
451         X509_NAME *xn;
452
453         if ( !x )
454                 return LDAP_INVALID_CREDENTIALS;
455
456         xn = X509_get_subject_name(x);
457         der_dn->bv_len = i2d_X509_NAME( xn, NULL );
458         der_dn->bv_val = xn->bytes->data;
459         X509_free(x);
460         return 0;
461 }
462
463 /* what kind of hostname were we given? */
464 #define IS_DNS  0
465 #define IS_IP4  1
466 #define IS_IP6  2
467
468 static int
469 tlso_session_chkhost( LDAP *ld, tls_session *sess, const char *name_in )
470 {
471         tlso_session *s = (tlso_session *)sess;
472         int i, ret = LDAP_LOCAL_ERROR;
473         X509 *x;
474         const char *name;
475         char *ptr;
476         int ntype = IS_DNS, nlen;
477 #ifdef LDAP_PF_INET6
478         struct in6_addr addr;
479 #else
480         struct in_addr addr;
481 #endif
482
483         if( ldap_int_hostname &&
484                 ( !name_in || !strcasecmp( name_in, "localhost" ) ) )
485         {
486                 name = ldap_int_hostname;
487         } else {
488                 name = name_in;
489         }
490         nlen = strlen(name);
491
492         x = tlso_get_cert(s);
493         if (!x) {
494                 Debug( LDAP_DEBUG_ANY,
495                         "TLS: unable to get peer certificate.\n",
496                         0, 0, 0 );
497                 /* If this was a fatal condition, things would have
498                  * aborted long before now.
499                  */
500                 return LDAP_SUCCESS;
501         }
502
503 #ifdef LDAP_PF_INET6
504         if (name[0] == '[' && strchr(name, ']')) {
505                 char *n2 = ldap_strdup(name+1);
506                 *strchr(n2, ']') = 0;
507                 if (inet_pton(AF_INET6, n2, &addr))
508                         ntype = IS_IP6;
509                 LDAP_FREE(n2);
510         } else 
511 #endif
512         if ((ptr = strrchr(name, '.')) && isdigit((unsigned char)ptr[1])) {
513                 if (inet_aton(name, (struct in_addr *)&addr)) ntype = IS_IP4;
514         }
515         
516         i = X509_get_ext_by_NID(x, NID_subject_alt_name, -1);
517         if (i >= 0) {
518                 X509_EXTENSION *ex;
519                 STACK_OF(GENERAL_NAME) *alt;
520
521                 ex = X509_get_ext(x, i);
522                 alt = X509V3_EXT_d2i(ex);
523                 if (alt) {
524                         int n, len2 = 0;
525                         char *domain = NULL;
526                         GENERAL_NAME *gn;
527
528                         if (ntype == IS_DNS) {
529                                 domain = strchr(name, '.');
530                                 if (domain) {
531                                         len2 = nlen - (domain-name);
532                                 }
533                         }
534                         n = sk_GENERAL_NAME_num(alt);
535                         for (i=0; i<n; i++) {
536                                 char *sn;
537                                 int sl;
538                                 gn = sk_GENERAL_NAME_value(alt, i);
539                                 if (gn->type == GEN_DNS) {
540                                         if (ntype != IS_DNS) continue;
541
542                                         sn = (char *) ASN1_STRING_data(gn->d.ia5);
543                                         sl = ASN1_STRING_length(gn->d.ia5);
544
545                                         /* ignore empty */
546                                         if (sl == 0) continue;
547
548                                         /* Is this an exact match? */
549                                         if ((nlen == sl) && !strncasecmp(name, sn, nlen)) {
550                                                 break;
551                                         }
552
553                                         /* Is this a wildcard match? */
554                                         if (domain && (sn[0] == '*') && (sn[1] == '.') &&
555                                                 (len2 == sl-1) && !strncasecmp(domain, &sn[1], len2))
556                                         {
557                                                 break;
558                                         }
559
560                                 } else if (gn->type == GEN_IPADD) {
561                                         if (ntype == IS_DNS) continue;
562
563                                         sn = (char *) ASN1_STRING_data(gn->d.ia5);
564                                         sl = ASN1_STRING_length(gn->d.ia5);
565
566 #ifdef LDAP_PF_INET6
567                                         if (ntype == IS_IP6 && sl != sizeof(struct in6_addr)) {
568                                                 continue;
569                                         } else
570 #endif
571                                         if (ntype == IS_IP4 && sl != sizeof(struct in_addr)) {
572                                                 continue;
573                                         }
574                                         if (!memcmp(sn, &addr, sl)) {
575                                                 break;
576                                         }
577                                 }
578                         }
579
580                         GENERAL_NAMES_free(alt);
581                         if (i < n) {    /* Found a match */
582                                 ret = LDAP_SUCCESS;
583                         }
584                 }
585         }
586
587         if (ret != LDAP_SUCCESS) {
588                 X509_NAME *xn;
589                 X509_NAME_ENTRY *ne;
590                 ASN1_OBJECT *obj;
591                 ASN1_STRING *cn = NULL;
592                 int navas;
593
594                 /* find the last CN */
595                 obj = OBJ_nid2obj( NID_commonName );
596                 if ( !obj ) goto no_cn; /* should never happen */
597
598                 xn = X509_get_subject_name(x);
599                 navas = X509_NAME_entry_count( xn );
600                 for ( i=navas-1; i>=0; i-- ) {
601                         ne = X509_NAME_get_entry( xn, i );
602                         if ( !OBJ_cmp( ne->object, obj )) {
603                                 cn = X509_NAME_ENTRY_get_data( ne );
604                                 break;
605                         }
606                 }
607
608                 if( !cn )
609                 {
610 no_cn:
611                         Debug( LDAP_DEBUG_ANY,
612                                 "TLS: unable to get common name from peer certificate.\n",
613                                 0, 0, 0 );
614                         ret = LDAP_CONNECT_ERROR;
615                         if ( ld->ld_error ) {
616                                 LDAP_FREE( ld->ld_error );
617                         }
618                         ld->ld_error = LDAP_STRDUP(
619                                 _("TLS: unable to get CN from peer certificate"));
620
621                 } else if ( cn->length == nlen &&
622                         strncasecmp( name, (char *) cn->data, nlen ) == 0 ) {
623                         ret = LDAP_SUCCESS;
624
625                 } else if (( cn->data[0] == '*' ) && ( cn->data[1] == '.' )) {
626                         char *domain = strchr(name, '.');
627                         if( domain ) {
628                                 int dlen;
629
630                                 dlen = nlen - (domain-name);
631
632                                 /* Is this a wildcard match? */
633                                 if ((dlen == cn->length-1) &&
634                                         !strncasecmp(domain, (char *) &cn->data[1], dlen)) {
635                                         ret = LDAP_SUCCESS;
636                                 }
637                         }
638                 }
639
640                 if( ret == LDAP_LOCAL_ERROR ) {
641                         Debug( LDAP_DEBUG_ANY, "TLS: hostname (%s) does not match "
642                                 "common name in certificate (%.*s).\n", 
643                                 name, cn->length, cn->data );
644                         ret = LDAP_CONNECT_ERROR;
645                         if ( ld->ld_error ) {
646                                 LDAP_FREE( ld->ld_error );
647                         }
648                         ld->ld_error = LDAP_STRDUP(
649                                 _("TLS: hostname does not match CN in peer certificate"));
650                 }
651         }
652         X509_free(x);
653         return ret;
654 }
655
656 static int
657 tlso_session_strength( tls_session *sess )
658 {
659         tlso_session *s = (tlso_session *)sess;
660
661         return SSL_CIPHER_get_bits(SSL_get_current_cipher(s), NULL);
662 }
663
664 /*
665  * TLS support for LBER Sockbufs
666  */
667
668 struct tls_data {
669         tlso_session            *session;
670         Sockbuf_IO_Desc         *sbiod;
671 };
672
673 static int
674 tlso_bio_create( BIO *b ) {
675         b->init = 1;
676         b->num = 0;
677         b->ptr = NULL;
678         b->flags = 0;
679         return 1;
680 }
681
682 static int
683 tlso_bio_destroy( BIO *b )
684 {
685         if ( b == NULL ) return 0;
686
687         b->ptr = NULL;          /* sb_tls_remove() will free it */
688         b->init = 0;
689         b->flags = 0;
690         return 1;
691 }
692
693 static int
694 tlso_bio_read( BIO *b, char *buf, int len )
695 {
696         struct tls_data         *p;
697         int                     ret;
698                 
699         if ( buf == NULL || len <= 0 ) return 0;
700
701         p = (struct tls_data *)b->ptr;
702
703         if ( p == NULL || p->sbiod == NULL ) {
704                 return 0;
705         }
706
707         ret = LBER_SBIOD_READ_NEXT( p->sbiod, buf, len );
708
709         BIO_clear_retry_flags( b );
710         if ( ret < 0 ) {
711                 int err = sock_errno();
712                 if ( err == EAGAIN || err == EWOULDBLOCK ) {
713                         BIO_set_retry_read( b );
714                 }
715         }
716
717         return ret;
718 }
719
720 static int
721 tlso_bio_write( BIO *b, const char *buf, int len )
722 {
723         struct tls_data         *p;
724         int                     ret;
725         
726         if ( buf == NULL || len <= 0 ) return 0;
727         
728         p = (struct tls_data *)b->ptr;
729
730         if ( p == NULL || p->sbiod == NULL ) {
731                 return 0;
732         }
733
734         ret = LBER_SBIOD_WRITE_NEXT( p->sbiod, (char *)buf, len );
735
736         BIO_clear_retry_flags( b );
737         if ( ret < 0 ) {
738                 int err = sock_errno();
739                 if ( err == EAGAIN || err == EWOULDBLOCK ) {
740                         BIO_set_retry_write( b );
741                 }
742         }
743
744         return ret;
745 }
746
747 static long
748 tlso_bio_ctrl( BIO *b, int cmd, long num, void *ptr )
749 {
750         if ( cmd == BIO_CTRL_FLUSH ) {
751                 /* The OpenSSL library needs this */
752                 return 1;
753         }
754         return 0;
755 }
756
757 static int
758 tlso_bio_gets( BIO *b, char *buf, int len )
759 {
760         return -1;
761 }
762
763 static int
764 tlso_bio_puts( BIO *b, const char *str )
765 {
766         return tlso_bio_write( b, str, strlen( str ) );
767 }
768         
769 static BIO_METHOD tlso_bio_method =
770 {
771         ( 100 | 0x400 ),                /* it's a source/sink BIO */
772         "sockbuf glue",
773         tlso_bio_write,
774         tlso_bio_read,
775         tlso_bio_puts,
776         tlso_bio_gets,
777         tlso_bio_ctrl,
778         tlso_bio_create,
779         tlso_bio_destroy
780 };
781
782 static int
783 tlso_sb_setup( Sockbuf_IO_Desc *sbiod, void *arg )
784 {
785         struct tls_data         *p;
786         BIO                     *bio;
787
788         assert( sbiod != NULL );
789
790         p = LBER_MALLOC( sizeof( *p ) );
791         if ( p == NULL ) {
792                 return -1;
793         }
794         
795         p->session = arg;
796         p->sbiod = sbiod;
797         bio = BIO_new( &tlso_bio_method );
798         bio->ptr = (void *)p;
799         SSL_set_bio( p->session, bio, bio );
800         sbiod->sbiod_pvt = p;
801         return 0;
802 }
803
804 static int
805 tlso_sb_remove( Sockbuf_IO_Desc *sbiod )
806 {
807         struct tls_data         *p;
808         
809         assert( sbiod != NULL );
810         assert( sbiod->sbiod_pvt != NULL );
811
812         p = (struct tls_data *)sbiod->sbiod_pvt;
813         SSL_free( p->session );
814         LBER_FREE( sbiod->sbiod_pvt );
815         sbiod->sbiod_pvt = NULL;
816         return 0;
817 }
818
819 static int
820 tlso_sb_close( Sockbuf_IO_Desc *sbiod )
821 {
822         struct tls_data         *p;
823         
824         assert( sbiod != NULL );
825         assert( sbiod->sbiod_pvt != NULL );
826
827         p = (struct tls_data *)sbiod->sbiod_pvt;
828         SSL_shutdown( p->session );
829         return 0;
830 }
831
832 static int
833 tlso_sb_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
834 {
835         struct tls_data         *p;
836         
837         assert( sbiod != NULL );
838         assert( sbiod->sbiod_pvt != NULL );
839
840         p = (struct tls_data *)sbiod->sbiod_pvt;
841         
842         if ( opt == LBER_SB_OPT_GET_SSL ) {
843                 *((tlso_session **)arg) = p->session;
844                 return 1;
845
846         } else if ( opt == LBER_SB_OPT_DATA_READY ) {
847                 if( SSL_pending( p->session ) > 0 ) {
848                         return 1;
849                 }
850         }
851         
852         return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
853 }
854
855 static ber_slen_t
856 tlso_sb_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
857 {
858         struct tls_data         *p;
859         ber_slen_t              ret;
860         int                     err;
861
862         assert( sbiod != NULL );
863         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
864
865         p = (struct tls_data *)sbiod->sbiod_pvt;
866
867         ret = SSL_read( p->session, (char *)buf, len );
868 #ifdef HAVE_WINSOCK
869         errno = WSAGetLastError();
870 #endif
871         err = SSL_get_error( p->session, ret );
872         if (err == SSL_ERROR_WANT_READ ) {
873                 sbiod->sbiod_sb->sb_trans_needs_read = 1;
874                 sock_errset(EWOULDBLOCK);
875         }
876         else
877                 sbiod->sbiod_sb->sb_trans_needs_read = 0;
878         return ret;
879 }
880
881 static ber_slen_t
882 tlso_sb_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
883 {
884         struct tls_data         *p;
885         ber_slen_t              ret;
886         int                     err;
887
888         assert( sbiod != NULL );
889         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
890
891         p = (struct tls_data *)sbiod->sbiod_pvt;
892
893         ret = SSL_write( p->session, (char *)buf, len );
894 #ifdef HAVE_WINSOCK
895         errno = WSAGetLastError();
896 #endif
897         err = SSL_get_error( p->session, ret );
898         if (err == SSL_ERROR_WANT_WRITE ) {
899                 sbiod->sbiod_sb->sb_trans_needs_write = 1;
900                 sock_errset(EWOULDBLOCK);
901
902         } else {
903                 sbiod->sbiod_sb->sb_trans_needs_write = 0;
904         }
905         return ret;
906 }
907
908 static Sockbuf_IO tlso_sbio =
909 {
910         tlso_sb_setup,          /* sbi_setup */
911         tlso_sb_remove,         /* sbi_remove */
912         tlso_sb_ctrl,           /* sbi_ctrl */
913         tlso_sb_read,           /* sbi_read */
914         tlso_sb_write,          /* sbi_write */
915         tlso_sb_close           /* sbi_close */
916 };
917
918 /* Derived from openssl/apps/s_cb.c */
919 static void
920 tlso_info_cb( const SSL *ssl, int where, int ret )
921 {
922         int w;
923         char *op;
924         char *state = (char *) SSL_state_string_long( (SSL *)ssl );
925
926         w = where & ~SSL_ST_MASK;
927         if ( w & SSL_ST_CONNECT ) {
928                 op = "SSL_connect";
929         } else if ( w & SSL_ST_ACCEPT ) {
930                 op = "SSL_accept";
931         } else {
932                 op = "undefined";
933         }
934
935 #ifdef HAVE_EBCDIC
936         if ( state ) {
937                 state = LDAP_STRDUP( state );
938                 __etoa( state );
939         }
940 #endif
941         if ( where & SSL_CB_LOOP ) {
942                 Debug( LDAP_DEBUG_TRACE,
943                            "TLS trace: %s:%s\n",
944                            op, state, 0 );
945
946         } else if ( where & SSL_CB_ALERT ) {
947                 char *atype = (char *) SSL_alert_type_string_long( ret );
948                 char *adesc = (char *) SSL_alert_desc_string_long( ret );
949                 op = ( where & SSL_CB_READ ) ? "read" : "write";
950 #ifdef HAVE_EBCDIC
951                 if ( atype ) {
952                         atype = LDAP_STRDUP( atype );
953                         __etoa( atype );
954                 }
955                 if ( adesc ) {
956                         adesc = LDAP_STRDUP( adesc );
957                         __etoa( adesc );
958                 }
959 #endif
960                 Debug( LDAP_DEBUG_TRACE,
961                            "TLS trace: SSL3 alert %s:%s:%s\n",
962                            op, atype, adesc );
963 #ifdef HAVE_EBCDIC
964                 if ( atype ) LDAP_FREE( atype );
965                 if ( adesc ) LDAP_FREE( adesc );
966 #endif
967         } else if ( where & SSL_CB_EXIT ) {
968                 if ( ret == 0 ) {
969                         Debug( LDAP_DEBUG_TRACE,
970                                    "TLS trace: %s:failed in %s\n",
971                                    op, state, 0 );
972                 } else if ( ret < 0 ) {
973                         Debug( LDAP_DEBUG_TRACE,
974                                    "TLS trace: %s:error in %s\n",
975                                    op, state, 0 );
976                 }
977         }
978 #ifdef HAVE_EBCDIC
979         if ( state ) LDAP_FREE( state );
980 #endif
981 }
982
983 static int
984 tlso_verify_cb( int ok, X509_STORE_CTX *ctx )
985 {
986         X509 *cert;
987         int errnum;
988         int errdepth;
989         X509_NAME *subject;
990         X509_NAME *issuer;
991         char *sname;
992         char *iname;
993         char *certerr = NULL;
994
995         cert = X509_STORE_CTX_get_current_cert( ctx );
996         errnum = X509_STORE_CTX_get_error( ctx );
997         errdepth = X509_STORE_CTX_get_error_depth( ctx );
998
999         /*
1000          * X509_get_*_name return pointers to the internal copies of
1001          * those things requested.  So do not free them.
1002          */
1003         subject = X509_get_subject_name( cert );
1004         issuer = X509_get_issuer_name( cert );
1005         /* X509_NAME_oneline, if passed a NULL buf, allocate memomry */
1006         sname = X509_NAME_oneline( subject, NULL, 0 );
1007         iname = X509_NAME_oneline( issuer, NULL, 0 );
1008         if ( !ok ) certerr = (char *)X509_verify_cert_error_string( errnum );
1009 #ifdef HAVE_EBCDIC
1010         if ( sname ) __etoa( sname );
1011         if ( iname ) __etoa( iname );
1012         if ( certerr ) {
1013                 certerr = LDAP_STRDUP( certerr );
1014                 __etoa( certerr );
1015         }
1016 #endif
1017         Debug( LDAP_DEBUG_TRACE,
1018                    "TLS certificate verification: depth: %d, err: %d, subject: %s,",
1019                    errdepth, errnum,
1020                    sname ? sname : "-unknown-" );
1021         Debug( LDAP_DEBUG_TRACE, " issuer: %s\n", iname ? iname : "-unknown-", 0, 0 );
1022         if ( !ok ) {
1023                 Debug( LDAP_DEBUG_ANY,
1024                         "TLS certificate verification: Error, %s\n",
1025                         certerr, 0, 0 );
1026         }
1027         if ( sname )
1028                 CRYPTO_free ( sname );
1029         if ( iname )
1030                 CRYPTO_free ( iname );
1031 #ifdef HAVE_EBCDIC
1032         if ( certerr ) LDAP_FREE( certerr );
1033 #endif
1034         return ok;
1035 }
1036
1037 static int
1038 tlso_verify_ok( int ok, X509_STORE_CTX *ctx )
1039 {
1040         (void) tlso_verify_cb( ok, ctx );
1041         return 1;
1042 }
1043
1044 /* Inspired by ERR_print_errors in OpenSSL */
1045 static void
1046 tlso_report_error( void )
1047 {
1048         unsigned long l;
1049         char buf[200];
1050         const char *file;
1051         int line;
1052
1053         while ( ( l = ERR_get_error_line( &file, &line ) ) != 0 ) {
1054                 ERR_error_string_n( l, buf, sizeof( buf ) );
1055 #ifdef HAVE_EBCDIC
1056                 if ( file ) {
1057                         file = LDAP_STRDUP( file );
1058                         __etoa( (char *)file );
1059                 }
1060                 __etoa( buf );
1061 #endif
1062                 Debug( LDAP_DEBUG_ANY, "TLS: %s %s:%d\n",
1063                         buf, file, line );
1064 #ifdef HAVE_EBCDIC
1065                 if ( file ) LDAP_FREE( (void *)file );
1066 #endif
1067         }
1068 }
1069
1070 static RSA *
1071 tlso_tmp_rsa_cb( SSL *ssl, int is_export, int key_length )
1072 {
1073         RSA *tmp_rsa;
1074         /* FIXME:  Pregenerate the key on startup */
1075         /* FIXME:  Who frees the key? */
1076 #if OPENSSL_VERSION_NUMBER >= 0x00908000
1077         BIGNUM *bn = BN_new();
1078         tmp_rsa = NULL;
1079         if ( bn ) {
1080                 if ( BN_set_word( bn, RSA_F4 )) {
1081                         tmp_rsa = RSA_new();
1082                         if ( tmp_rsa && !RSA_generate_key_ex( tmp_rsa, key_length, bn, NULL )) {
1083                                 RSA_free( tmp_rsa );
1084                                 tmp_rsa = NULL;
1085                         }
1086                 }
1087                 BN_free( bn );
1088         }
1089 #else
1090         tmp_rsa = RSA_generate_key( key_length, RSA_F4, NULL, NULL );
1091 #endif
1092
1093         if ( !tmp_rsa ) {
1094                 Debug( LDAP_DEBUG_ANY,
1095                         "TLS: Failed to generate temporary %d-bit %s RSA key\n",
1096                         key_length, is_export ? "export" : "domestic", 0 );
1097         }
1098         return tmp_rsa;
1099 }
1100
1101 static int
1102 tlso_seed_PRNG( const char *randfile )
1103 {
1104 #ifndef URANDOM_DEVICE
1105         /* no /dev/urandom (or equiv) */
1106         long total=0;
1107         char buffer[MAXPATHLEN];
1108
1109         if (randfile == NULL) {
1110                 /* The seed file is $RANDFILE if defined, otherwise $HOME/.rnd.
1111                  * If $HOME is not set or buffer too small to hold the pathname,
1112                  * an error occurs.     - From RAND_file_name() man page.
1113                  * The fact is that when $HOME is NULL, .rnd is used.
1114                  */
1115                 randfile = RAND_file_name( buffer, sizeof( buffer ) );
1116
1117         } else if (RAND_egd(randfile) > 0) {
1118                 /* EGD socket */
1119                 return 0;
1120         }
1121
1122         if (randfile == NULL) {
1123                 Debug( LDAP_DEBUG_ANY,
1124                         "TLS: Use configuration file or $RANDFILE to define seed PRNG\n",
1125                         0, 0, 0);
1126                 return -1;
1127         }
1128
1129         total = RAND_load_file(randfile, -1);
1130
1131         if (RAND_status() == 0) {
1132                 Debug( LDAP_DEBUG_ANY,
1133                         "TLS: PRNG not been seeded with enough data\n",
1134                         0, 0, 0);
1135                 return -1;
1136         }
1137
1138         /* assume if there was enough bits to seed that it's okay
1139          * to write derived bits to the file
1140          */
1141         RAND_write_file(randfile);
1142
1143 #endif
1144
1145         return 0;
1146 }
1147
1148 struct dhinfo {
1149         int keylength;
1150         const char *pem;
1151         size_t size;
1152 };
1153
1154
1155 /* From the OpenSSL 0.9.7 distro */
1156 static const char tlso_dhpem512[] =
1157 "-----BEGIN DH PARAMETERS-----\n\
1158 MEYCQQDaWDwW2YUiidDkr3VvTMqS3UvlM7gE+w/tlO+cikQD7VdGUNNpmdsp13Yn\n\
1159 a6LT1BLiGPTdHghM9tgAPnxHdOgzAgEC\n\
1160 -----END DH PARAMETERS-----\n";
1161
1162 static const char tlso_dhpem1024[] =
1163 "-----BEGIN DH PARAMETERS-----\n\
1164 MIGHAoGBAJf2QmHKtQXdKCjhPx1ottPb0PMTBH9A6FbaWMsTuKG/K3g6TG1Z1fkq\n\
1165 /Gz/PWk/eLI9TzFgqVAuPvr3q14a1aZeVUMTgo2oO5/y2UHe6VaJ+trqCTat3xlx\n\
1166 /mNbIK9HA2RgPC3gWfVLZQrY+gz3ASHHR5nXWHEyvpuZm7m3h+irAgEC\n\
1167 -----END DH PARAMETERS-----\n";
1168
1169 static const char tlso_dhpem2048[] =
1170 "-----BEGIN DH PARAMETERS-----\n\
1171 MIIBCAKCAQEA7ZKJNYJFVcs7+6J2WmkEYb8h86tT0s0h2v94GRFS8Q7B4lW9aG9o\n\
1172 AFO5Imov5Jo0H2XMWTKKvbHbSe3fpxJmw/0hBHAY8H/W91hRGXKCeyKpNBgdL8sh\n\
1173 z22SrkO2qCnHJ6PLAMXy5fsKpFmFor2tRfCzrfnggTXu2YOzzK7q62bmqVdmufEo\n\
1174 pT8igNcLpvZxk5uBDvhakObMym9mX3rAEBoe8PwttggMYiiw7NuJKO4MqD1llGkW\n\
1175 aVM8U2ATsCun1IKHrRxynkE1/MJ86VHeYYX8GZt2YA8z+GuzylIOKcMH6JAWzMwA\n\
1176 Gbatw6QwizOhr9iMjZ0B26TE3X8LvW84wwIBAg==\n\
1177 -----END DH PARAMETERS-----\n";
1178
1179 static const char tlso_dhpem4096[] =
1180 "-----BEGIN DH PARAMETERS-----\n\
1181 MIICCAKCAgEA/urRnb6vkPYc/KEGXWnbCIOaKitq7ySIq9dTH7s+Ri59zs77zty7\n\
1182 vfVlSe6VFTBWgYjD2XKUFmtqq6CqXMhVX5ElUDoYDpAyTH85xqNFLzFC7nKrff/H\n\
1183 TFKNttp22cZE9V0IPpzedPfnQkE7aUdmF9JnDyv21Z/818O93u1B4r0szdnmEvEF\n\
1184 bKuIxEHX+bp0ZR7RqE1AeifXGJX3d6tsd2PMAObxwwsv55RGkn50vHO4QxtTARr1\n\
1185 rRUV5j3B3oPMgC7Offxx+98Xn45B1/G0Prp11anDsR1PGwtaCYipqsvMwQUSJtyE\n\
1186 EOQWk+yFkeMe4vWv367eEi0Sd/wnC+TSXBE3pYvpYerJ8n1MceI5GQTdarJ77OW9\n\
1187 bGTHmxRsLSCM1jpLdPja5jjb4siAa6EHc4qN9c/iFKS3PQPJEnX7pXKBRs5f7AF3\n\
1188 W3RIGt+G9IVNZfXaS7Z/iCpgzgvKCs0VeqN38QsJGtC1aIkwOeyjPNy2G6jJ4yqH\n\
1189 ovXYt/0mc00vCWeSNS1wren0pR2EiLxX0ypjjgsU1mk/Z3b/+zVf7fZSIB+nDLjb\n\
1190 NPtUlJCVGnAeBK1J1nG3TQicqowOXoM6ISkdaXj5GPJdXHab2+S7cqhKGv5qC7rR\n\
1191 jT6sx7RUr0CNTxzLI7muV2/a4tGmj0PSdXQdsZ7tw7gbXlaWT1+MM2MCAQI=\n\
1192 -----END DH PARAMETERS-----\n";
1193
1194 static const struct dhinfo tlso_dhpem[] = {
1195         { 512, tlso_dhpem512, sizeof(tlso_dhpem512) },
1196         { 1024, tlso_dhpem1024, sizeof(tlso_dhpem1024) },
1197         { 2048, tlso_dhpem2048, sizeof(tlso_dhpem2048) },
1198         { 4096, tlso_dhpem4096, sizeof(tlso_dhpem4096) },
1199         { 0, NULL, 0 }
1200 };
1201
1202 static DH *
1203 tlso_tmp_dh_cb( SSL *ssl, int is_export, int key_length )
1204 {
1205         struct dhplist *p = NULL;
1206         BIO *b = NULL;
1207         DH *dh = NULL;
1208         int i;
1209
1210         /* Do we have params of this length already? */
1211         LDAP_MUTEX_LOCK( &tlso_dh_mutex );
1212         for ( p = tlso_dhparams; p; p=p->next ) {
1213                 if ( p->keylength == key_length ) {
1214                         LDAP_MUTEX_UNLOCK( &tlso_dh_mutex );
1215                         return p->param;
1216                 }
1217         }
1218
1219         /* No - check for hardcoded params */
1220
1221         for (i=0; tlso_dhpem[i].keylength; i++) {
1222                 if ( tlso_dhpem[i].keylength == key_length ) {
1223                         b = BIO_new_mem_buf( (char *)tlso_dhpem[i].pem, tlso_dhpem[i].size );
1224                         break;
1225                 }
1226         }
1227
1228         if ( b ) {
1229                 dh = PEM_read_bio_DHparams( b, NULL, NULL, NULL );
1230                 BIO_free( b );
1231         }
1232
1233         /* Generating on the fly is expensive/slow... */
1234         if ( !dh ) {
1235                 dh = DH_generate_parameters( key_length, DH_GENERATOR_2, NULL, NULL );
1236         }
1237         if ( dh ) {
1238                 p = LDAP_MALLOC( sizeof(struct dhplist) );
1239                 if ( p != NULL ) {
1240                         p->keylength = key_length;
1241                         p->param = dh;
1242                         p->next = tlso_dhparams;
1243                         tlso_dhparams = p;
1244                 }
1245         }
1246
1247         LDAP_MUTEX_UNLOCK( &tlso_dh_mutex );
1248         return dh;
1249 }
1250
1251 tls_impl ldap_int_tls_impl = {
1252         "OpenSSL",
1253
1254         tlso_init,
1255         tlso_destroy,
1256
1257         tlso_ctx_new,
1258         tlso_ctx_ref,
1259         tlso_ctx_free,
1260         tlso_ctx_init,
1261
1262         tlso_session_new,
1263         tlso_session_connect,
1264         tlso_session_accept,
1265         tlso_session_upflags,
1266         tlso_session_errmsg,
1267         tlso_session_my_dn,
1268         tlso_session_peer_dn,
1269         tlso_session_chkhost,
1270         tlso_session_strength,
1271
1272         &tlso_sbio,
1273
1274 #ifdef LDAP_R_COMPILE
1275         tlso_thr_init,
1276 #else
1277         NULL,
1278 #endif
1279
1280         0
1281 };
1282
1283 #endif /* HAVE_OPENSSL */