]> git.sur5r.net Git - openldap/blob - libraries/libldap/tls_o.c
Merge remote-tracking branch 'origin/mdb.master'
[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-2013 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 (inet_pton(AF_INET6, name, &addr)) {
505                 ntype = IS_IP6;
506         } else 
507 #endif
508         if ((ptr = strrchr(name, '.')) && isdigit((unsigned char)ptr[1])) {
509                 if (inet_aton(name, (struct in_addr *)&addr)) ntype = IS_IP4;
510         }
511         
512         i = X509_get_ext_by_NID(x, NID_subject_alt_name, -1);
513         if (i >= 0) {
514                 X509_EXTENSION *ex;
515                 STACK_OF(GENERAL_NAME) *alt;
516
517                 ex = X509_get_ext(x, i);
518                 alt = X509V3_EXT_d2i(ex);
519                 if (alt) {
520                         int n, len2 = 0;
521                         char *domain = NULL;
522                         GENERAL_NAME *gn;
523
524                         if (ntype == IS_DNS) {
525                                 domain = strchr(name, '.');
526                                 if (domain) {
527                                         len2 = nlen - (domain-name);
528                                 }
529                         }
530                         n = sk_GENERAL_NAME_num(alt);
531                         for (i=0; i<n; i++) {
532                                 char *sn;
533                                 int sl;
534                                 gn = sk_GENERAL_NAME_value(alt, i);
535                                 if (gn->type == GEN_DNS) {
536                                         if (ntype != IS_DNS) continue;
537
538                                         sn = (char *) ASN1_STRING_data(gn->d.ia5);
539                                         sl = ASN1_STRING_length(gn->d.ia5);
540
541                                         /* ignore empty */
542                                         if (sl == 0) continue;
543
544                                         /* Is this an exact match? */
545                                         if ((nlen == sl) && !strncasecmp(name, sn, nlen)) {
546                                                 break;
547                                         }
548
549                                         /* Is this a wildcard match? */
550                                         if (domain && (sn[0] == '*') && (sn[1] == '.') &&
551                                                 (len2 == sl-1) && !strncasecmp(domain, &sn[1], len2))
552                                         {
553                                                 break;
554                                         }
555
556                                 } else if (gn->type == GEN_IPADD) {
557                                         if (ntype == IS_DNS) continue;
558
559                                         sn = (char *) ASN1_STRING_data(gn->d.ia5);
560                                         sl = ASN1_STRING_length(gn->d.ia5);
561
562 #ifdef LDAP_PF_INET6
563                                         if (ntype == IS_IP6 && sl != sizeof(struct in6_addr)) {
564                                                 continue;
565                                         } else
566 #endif
567                                         if (ntype == IS_IP4 && sl != sizeof(struct in_addr)) {
568                                                 continue;
569                                         }
570                                         if (!memcmp(sn, &addr, sl)) {
571                                                 break;
572                                         }
573                                 }
574                         }
575
576                         GENERAL_NAMES_free(alt);
577                         if (i < n) {    /* Found a match */
578                                 ret = LDAP_SUCCESS;
579                         }
580                 }
581         }
582
583         if (ret != LDAP_SUCCESS) {
584                 X509_NAME *xn;
585                 X509_NAME_ENTRY *ne;
586                 ASN1_OBJECT *obj;
587                 ASN1_STRING *cn = NULL;
588                 int navas;
589
590                 /* find the last CN */
591                 obj = OBJ_nid2obj( NID_commonName );
592                 if ( !obj ) goto no_cn; /* should never happen */
593
594                 xn = X509_get_subject_name(x);
595                 navas = X509_NAME_entry_count( xn );
596                 for ( i=navas-1; i>=0; i-- ) {
597                         ne = X509_NAME_get_entry( xn, i );
598                         if ( !OBJ_cmp( ne->object, obj )) {
599                                 cn = X509_NAME_ENTRY_get_data( ne );
600                                 break;
601                         }
602                 }
603
604                 if( !cn )
605                 {
606 no_cn:
607                         Debug( LDAP_DEBUG_ANY,
608                                 "TLS: unable to get common name from peer certificate.\n",
609                                 0, 0, 0 );
610                         ret = LDAP_CONNECT_ERROR;
611                         if ( ld->ld_error ) {
612                                 LDAP_FREE( ld->ld_error );
613                         }
614                         ld->ld_error = LDAP_STRDUP(
615                                 _("TLS: unable to get CN from peer certificate"));
616
617                 } else if ( cn->length == nlen &&
618                         strncasecmp( name, (char *) cn->data, nlen ) == 0 ) {
619                         ret = LDAP_SUCCESS;
620
621                 } else if (( cn->data[0] == '*' ) && ( cn->data[1] == '.' )) {
622                         char *domain = strchr(name, '.');
623                         if( domain ) {
624                                 int dlen;
625
626                                 dlen = nlen - (domain-name);
627
628                                 /* Is this a wildcard match? */
629                                 if ((dlen == cn->length-1) &&
630                                         !strncasecmp(domain, (char *) &cn->data[1], dlen)) {
631                                         ret = LDAP_SUCCESS;
632                                 }
633                         }
634                 }
635
636                 if( ret == LDAP_LOCAL_ERROR ) {
637                         Debug( LDAP_DEBUG_ANY, "TLS: hostname (%s) does not match "
638                                 "common name in certificate (%.*s).\n", 
639                                 name, cn->length, cn->data );
640                         ret = LDAP_CONNECT_ERROR;
641                         if ( ld->ld_error ) {
642                                 LDAP_FREE( ld->ld_error );
643                         }
644                         ld->ld_error = LDAP_STRDUP(
645                                 _("TLS: hostname does not match CN in peer certificate"));
646                 }
647         }
648         X509_free(x);
649         return ret;
650 }
651
652 static int
653 tlso_session_strength( tls_session *sess )
654 {
655         tlso_session *s = (tlso_session *)sess;
656
657         return SSL_CIPHER_get_bits(SSL_get_current_cipher(s), NULL);
658 }
659
660 /*
661  * TLS support for LBER Sockbufs
662  */
663
664 struct tls_data {
665         tlso_session            *session;
666         Sockbuf_IO_Desc         *sbiod;
667 };
668
669 static int
670 tlso_bio_create( BIO *b ) {
671         b->init = 1;
672         b->num = 0;
673         b->ptr = NULL;
674         b->flags = 0;
675         return 1;
676 }
677
678 static int
679 tlso_bio_destroy( BIO *b )
680 {
681         if ( b == NULL ) return 0;
682
683         b->ptr = NULL;          /* sb_tls_remove() will free it */
684         b->init = 0;
685         b->flags = 0;
686         return 1;
687 }
688
689 static int
690 tlso_bio_read( BIO *b, char *buf, int len )
691 {
692         struct tls_data         *p;
693         int                     ret;
694                 
695         if ( buf == NULL || len <= 0 ) return 0;
696
697         p = (struct tls_data *)b->ptr;
698
699         if ( p == NULL || p->sbiod == NULL ) {
700                 return 0;
701         }
702
703         ret = LBER_SBIOD_READ_NEXT( p->sbiod, buf, len );
704
705         BIO_clear_retry_flags( b );
706         if ( ret < 0 ) {
707                 int err = sock_errno();
708                 if ( err == EAGAIN || err == EWOULDBLOCK ) {
709                         BIO_set_retry_read( b );
710                 }
711         }
712
713         return ret;
714 }
715
716 static int
717 tlso_bio_write( BIO *b, const char *buf, int len )
718 {
719         struct tls_data         *p;
720         int                     ret;
721         
722         if ( buf == NULL || len <= 0 ) return 0;
723         
724         p = (struct tls_data *)b->ptr;
725
726         if ( p == NULL || p->sbiod == NULL ) {
727                 return 0;
728         }
729
730         ret = LBER_SBIOD_WRITE_NEXT( p->sbiod, (char *)buf, len );
731
732         BIO_clear_retry_flags( b );
733         if ( ret < 0 ) {
734                 int err = sock_errno();
735                 if ( err == EAGAIN || err == EWOULDBLOCK ) {
736                         BIO_set_retry_write( b );
737                 }
738         }
739
740         return ret;
741 }
742
743 static long
744 tlso_bio_ctrl( BIO *b, int cmd, long num, void *ptr )
745 {
746         if ( cmd == BIO_CTRL_FLUSH ) {
747                 /* The OpenSSL library needs this */
748                 return 1;
749         }
750         return 0;
751 }
752
753 static int
754 tlso_bio_gets( BIO *b, char *buf, int len )
755 {
756         return -1;
757 }
758
759 static int
760 tlso_bio_puts( BIO *b, const char *str )
761 {
762         return tlso_bio_write( b, str, strlen( str ) );
763 }
764         
765 static BIO_METHOD tlso_bio_method =
766 {
767         ( 100 | 0x400 ),                /* it's a source/sink BIO */
768         "sockbuf glue",
769         tlso_bio_write,
770         tlso_bio_read,
771         tlso_bio_puts,
772         tlso_bio_gets,
773         tlso_bio_ctrl,
774         tlso_bio_create,
775         tlso_bio_destroy
776 };
777
778 static int
779 tlso_sb_setup( Sockbuf_IO_Desc *sbiod, void *arg )
780 {
781         struct tls_data         *p;
782         BIO                     *bio;
783
784         assert( sbiod != NULL );
785
786         p = LBER_MALLOC( sizeof( *p ) );
787         if ( p == NULL ) {
788                 return -1;
789         }
790         
791         p->session = arg;
792         p->sbiod = sbiod;
793         bio = BIO_new( &tlso_bio_method );
794         bio->ptr = (void *)p;
795         SSL_set_bio( p->session, bio, bio );
796         sbiod->sbiod_pvt = p;
797         return 0;
798 }
799
800 static int
801 tlso_sb_remove( Sockbuf_IO_Desc *sbiod )
802 {
803         struct tls_data         *p;
804         
805         assert( sbiod != NULL );
806         assert( sbiod->sbiod_pvt != NULL );
807
808         p = (struct tls_data *)sbiod->sbiod_pvt;
809         SSL_free( p->session );
810         LBER_FREE( sbiod->sbiod_pvt );
811         sbiod->sbiod_pvt = NULL;
812         return 0;
813 }
814
815 static int
816 tlso_sb_close( Sockbuf_IO_Desc *sbiod )
817 {
818         struct tls_data         *p;
819         
820         assert( sbiod != NULL );
821         assert( sbiod->sbiod_pvt != NULL );
822
823         p = (struct tls_data *)sbiod->sbiod_pvt;
824         SSL_shutdown( p->session );
825         return 0;
826 }
827
828 static int
829 tlso_sb_ctrl( Sockbuf_IO_Desc *sbiod, int opt, void *arg )
830 {
831         struct tls_data         *p;
832         
833         assert( sbiod != NULL );
834         assert( sbiod->sbiod_pvt != NULL );
835
836         p = (struct tls_data *)sbiod->sbiod_pvt;
837         
838         if ( opt == LBER_SB_OPT_GET_SSL ) {
839                 *((tlso_session **)arg) = p->session;
840                 return 1;
841
842         } else if ( opt == LBER_SB_OPT_DATA_READY ) {
843                 if( SSL_pending( p->session ) > 0 ) {
844                         return 1;
845                 }
846         }
847         
848         return LBER_SBIOD_CTRL_NEXT( sbiod, opt, arg );
849 }
850
851 static ber_slen_t
852 tlso_sb_read( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
853 {
854         struct tls_data         *p;
855         ber_slen_t              ret;
856         int                     err;
857
858         assert( sbiod != NULL );
859         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
860
861         p = (struct tls_data *)sbiod->sbiod_pvt;
862
863         ret = SSL_read( p->session, (char *)buf, len );
864 #ifdef HAVE_WINSOCK
865         errno = WSAGetLastError();
866 #endif
867         err = SSL_get_error( p->session, ret );
868         if (err == SSL_ERROR_WANT_READ ) {
869                 sbiod->sbiod_sb->sb_trans_needs_read = 1;
870                 sock_errset(EWOULDBLOCK);
871         }
872         else
873                 sbiod->sbiod_sb->sb_trans_needs_read = 0;
874         return ret;
875 }
876
877 static ber_slen_t
878 tlso_sb_write( Sockbuf_IO_Desc *sbiod, void *buf, ber_len_t len)
879 {
880         struct tls_data         *p;
881         ber_slen_t              ret;
882         int                     err;
883
884         assert( sbiod != NULL );
885         assert( SOCKBUF_VALID( sbiod->sbiod_sb ) );
886
887         p = (struct tls_data *)sbiod->sbiod_pvt;
888
889         ret = SSL_write( p->session, (char *)buf, len );
890 #ifdef HAVE_WINSOCK
891         errno = WSAGetLastError();
892 #endif
893         err = SSL_get_error( p->session, ret );
894         if (err == SSL_ERROR_WANT_WRITE ) {
895                 sbiod->sbiod_sb->sb_trans_needs_write = 1;
896                 sock_errset(EWOULDBLOCK);
897
898         } else {
899                 sbiod->sbiod_sb->sb_trans_needs_write = 0;
900         }
901         return ret;
902 }
903
904 static Sockbuf_IO tlso_sbio =
905 {
906         tlso_sb_setup,          /* sbi_setup */
907         tlso_sb_remove,         /* sbi_remove */
908         tlso_sb_ctrl,           /* sbi_ctrl */
909         tlso_sb_read,           /* sbi_read */
910         tlso_sb_write,          /* sbi_write */
911         tlso_sb_close           /* sbi_close */
912 };
913
914 /* Derived from openssl/apps/s_cb.c */
915 static void
916 tlso_info_cb( const SSL *ssl, int where, int ret )
917 {
918         int w;
919         char *op;
920         char *state = (char *) SSL_state_string_long( (SSL *)ssl );
921
922         w = where & ~SSL_ST_MASK;
923         if ( w & SSL_ST_CONNECT ) {
924                 op = "SSL_connect";
925         } else if ( w & SSL_ST_ACCEPT ) {
926                 op = "SSL_accept";
927         } else {
928                 op = "undefined";
929         }
930
931 #ifdef HAVE_EBCDIC
932         if ( state ) {
933                 state = LDAP_STRDUP( state );
934                 __etoa( state );
935         }
936 #endif
937         if ( where & SSL_CB_LOOP ) {
938                 Debug( LDAP_DEBUG_TRACE,
939                            "TLS trace: %s:%s\n",
940                            op, state, 0 );
941
942         } else if ( where & SSL_CB_ALERT ) {
943                 char *atype = (char *) SSL_alert_type_string_long( ret );
944                 char *adesc = (char *) SSL_alert_desc_string_long( ret );
945                 op = ( where & SSL_CB_READ ) ? "read" : "write";
946 #ifdef HAVE_EBCDIC
947                 if ( atype ) {
948                         atype = LDAP_STRDUP( atype );
949                         __etoa( atype );
950                 }
951                 if ( adesc ) {
952                         adesc = LDAP_STRDUP( adesc );
953                         __etoa( adesc );
954                 }
955 #endif
956                 Debug( LDAP_DEBUG_TRACE,
957                            "TLS trace: SSL3 alert %s:%s:%s\n",
958                            op, atype, adesc );
959 #ifdef HAVE_EBCDIC
960                 if ( atype ) LDAP_FREE( atype );
961                 if ( adesc ) LDAP_FREE( adesc );
962 #endif
963         } else if ( where & SSL_CB_EXIT ) {
964                 if ( ret == 0 ) {
965                         Debug( LDAP_DEBUG_TRACE,
966                                    "TLS trace: %s:failed in %s\n",
967                                    op, state, 0 );
968                 } else if ( ret < 0 ) {
969                         Debug( LDAP_DEBUG_TRACE,
970                                    "TLS trace: %s:error in %s\n",
971                                    op, state, 0 );
972                 }
973         }
974 #ifdef HAVE_EBCDIC
975         if ( state ) LDAP_FREE( state );
976 #endif
977 }
978
979 static int
980 tlso_verify_cb( int ok, X509_STORE_CTX *ctx )
981 {
982         X509 *cert;
983         int errnum;
984         int errdepth;
985         X509_NAME *subject;
986         X509_NAME *issuer;
987         char *sname;
988         char *iname;
989         char *certerr = NULL;
990
991         cert = X509_STORE_CTX_get_current_cert( ctx );
992         errnum = X509_STORE_CTX_get_error( ctx );
993         errdepth = X509_STORE_CTX_get_error_depth( ctx );
994
995         /*
996          * X509_get_*_name return pointers to the internal copies of
997          * those things requested.  So do not free them.
998          */
999         subject = X509_get_subject_name( cert );
1000         issuer = X509_get_issuer_name( cert );
1001         /* X509_NAME_oneline, if passed a NULL buf, allocate memomry */
1002         sname = X509_NAME_oneline( subject, NULL, 0 );
1003         iname = X509_NAME_oneline( issuer, NULL, 0 );
1004         if ( !ok ) certerr = (char *)X509_verify_cert_error_string( errnum );
1005 #ifdef HAVE_EBCDIC
1006         if ( sname ) __etoa( sname );
1007         if ( iname ) __etoa( iname );
1008         if ( certerr ) {
1009                 certerr = LDAP_STRDUP( certerr );
1010                 __etoa( certerr );
1011         }
1012 #endif
1013         Debug( LDAP_DEBUG_TRACE,
1014                    "TLS certificate verification: depth: %d, err: %d, subject: %s,",
1015                    errdepth, errnum,
1016                    sname ? sname : "-unknown-" );
1017         Debug( LDAP_DEBUG_TRACE, " issuer: %s\n", iname ? iname : "-unknown-", 0, 0 );
1018         if ( !ok ) {
1019                 Debug( LDAP_DEBUG_ANY,
1020                         "TLS certificate verification: Error, %s\n",
1021                         certerr, 0, 0 );
1022         }
1023         if ( sname )
1024                 CRYPTO_free ( sname );
1025         if ( iname )
1026                 CRYPTO_free ( iname );
1027 #ifdef HAVE_EBCDIC
1028         if ( certerr ) LDAP_FREE( certerr );
1029 #endif
1030         return ok;
1031 }
1032
1033 static int
1034 tlso_verify_ok( int ok, X509_STORE_CTX *ctx )
1035 {
1036         (void) tlso_verify_cb( ok, ctx );
1037         return 1;
1038 }
1039
1040 /* Inspired by ERR_print_errors in OpenSSL */
1041 static void
1042 tlso_report_error( void )
1043 {
1044         unsigned long l;
1045         char buf[200];
1046         const char *file;
1047         int line;
1048
1049         while ( ( l = ERR_get_error_line( &file, &line ) ) != 0 ) {
1050                 ERR_error_string_n( l, buf, sizeof( buf ) );
1051 #ifdef HAVE_EBCDIC
1052                 if ( file ) {
1053                         file = LDAP_STRDUP( file );
1054                         __etoa( (char *)file );
1055                 }
1056                 __etoa( buf );
1057 #endif
1058                 Debug( LDAP_DEBUG_ANY, "TLS: %s %s:%d\n",
1059                         buf, file, line );
1060 #ifdef HAVE_EBCDIC
1061                 if ( file ) LDAP_FREE( (void *)file );
1062 #endif
1063         }
1064 }
1065
1066 static RSA *
1067 tlso_tmp_rsa_cb( SSL *ssl, int is_export, int key_length )
1068 {
1069         RSA *tmp_rsa;
1070         /* FIXME:  Pregenerate the key on startup */
1071         /* FIXME:  Who frees the key? */
1072 #if OPENSSL_VERSION_NUMBER >= 0x00908000
1073         BIGNUM *bn = BN_new();
1074         tmp_rsa = NULL;
1075         if ( bn ) {
1076                 if ( BN_set_word( bn, RSA_F4 )) {
1077                         tmp_rsa = RSA_new();
1078                         if ( tmp_rsa && !RSA_generate_key_ex( tmp_rsa, key_length, bn, NULL )) {
1079                                 RSA_free( tmp_rsa );
1080                                 tmp_rsa = NULL;
1081                         }
1082                 }
1083                 BN_free( bn );
1084         }
1085 #else
1086         tmp_rsa = RSA_generate_key( key_length, RSA_F4, NULL, NULL );
1087 #endif
1088
1089         if ( !tmp_rsa ) {
1090                 Debug( LDAP_DEBUG_ANY,
1091                         "TLS: Failed to generate temporary %d-bit %s RSA key\n",
1092                         key_length, is_export ? "export" : "domestic", 0 );
1093         }
1094         return tmp_rsa;
1095 }
1096
1097 static int
1098 tlso_seed_PRNG( const char *randfile )
1099 {
1100 #ifndef URANDOM_DEVICE
1101         /* no /dev/urandom (or equiv) */
1102         long total=0;
1103         char buffer[MAXPATHLEN];
1104
1105         if (randfile == NULL) {
1106                 /* The seed file is $RANDFILE if defined, otherwise $HOME/.rnd.
1107                  * If $HOME is not set or buffer too small to hold the pathname,
1108                  * an error occurs.     - From RAND_file_name() man page.
1109                  * The fact is that when $HOME is NULL, .rnd is used.
1110                  */
1111                 randfile = RAND_file_name( buffer, sizeof( buffer ) );
1112
1113         } else if (RAND_egd(randfile) > 0) {
1114                 /* EGD socket */
1115                 return 0;
1116         }
1117
1118         if (randfile == NULL) {
1119                 Debug( LDAP_DEBUG_ANY,
1120                         "TLS: Use configuration file or $RANDFILE to define seed PRNG\n",
1121                         0, 0, 0);
1122                 return -1;
1123         }
1124
1125         total = RAND_load_file(randfile, -1);
1126
1127         if (RAND_status() == 0) {
1128                 Debug( LDAP_DEBUG_ANY,
1129                         "TLS: PRNG not been seeded with enough data\n",
1130                         0, 0, 0);
1131                 return -1;
1132         }
1133
1134         /* assume if there was enough bits to seed that it's okay
1135          * to write derived bits to the file
1136          */
1137         RAND_write_file(randfile);
1138
1139 #endif
1140
1141         return 0;
1142 }
1143
1144 struct dhinfo {
1145         int keylength;
1146         const char *pem;
1147         size_t size;
1148 };
1149
1150
1151 /* From the OpenSSL 0.9.7 distro */
1152 static const char tlso_dhpem512[] =
1153 "-----BEGIN DH PARAMETERS-----\n\
1154 MEYCQQDaWDwW2YUiidDkr3VvTMqS3UvlM7gE+w/tlO+cikQD7VdGUNNpmdsp13Yn\n\
1155 a6LT1BLiGPTdHghM9tgAPnxHdOgzAgEC\n\
1156 -----END DH PARAMETERS-----\n";
1157
1158 static const char tlso_dhpem1024[] =
1159 "-----BEGIN DH PARAMETERS-----\n\
1160 MIGHAoGBAJf2QmHKtQXdKCjhPx1ottPb0PMTBH9A6FbaWMsTuKG/K3g6TG1Z1fkq\n\
1161 /Gz/PWk/eLI9TzFgqVAuPvr3q14a1aZeVUMTgo2oO5/y2UHe6VaJ+trqCTat3xlx\n\
1162 /mNbIK9HA2RgPC3gWfVLZQrY+gz3ASHHR5nXWHEyvpuZm7m3h+irAgEC\n\
1163 -----END DH PARAMETERS-----\n";
1164
1165 static const char tlso_dhpem2048[] =
1166 "-----BEGIN DH PARAMETERS-----\n\
1167 MIIBCAKCAQEA7ZKJNYJFVcs7+6J2WmkEYb8h86tT0s0h2v94GRFS8Q7B4lW9aG9o\n\
1168 AFO5Imov5Jo0H2XMWTKKvbHbSe3fpxJmw/0hBHAY8H/W91hRGXKCeyKpNBgdL8sh\n\
1169 z22SrkO2qCnHJ6PLAMXy5fsKpFmFor2tRfCzrfnggTXu2YOzzK7q62bmqVdmufEo\n\
1170 pT8igNcLpvZxk5uBDvhakObMym9mX3rAEBoe8PwttggMYiiw7NuJKO4MqD1llGkW\n\
1171 aVM8U2ATsCun1IKHrRxynkE1/MJ86VHeYYX8GZt2YA8z+GuzylIOKcMH6JAWzMwA\n\
1172 Gbatw6QwizOhr9iMjZ0B26TE3X8LvW84wwIBAg==\n\
1173 -----END DH PARAMETERS-----\n";
1174
1175 static const char tlso_dhpem4096[] =
1176 "-----BEGIN DH PARAMETERS-----\n\
1177 MIICCAKCAgEA/urRnb6vkPYc/KEGXWnbCIOaKitq7ySIq9dTH7s+Ri59zs77zty7\n\
1178 vfVlSe6VFTBWgYjD2XKUFmtqq6CqXMhVX5ElUDoYDpAyTH85xqNFLzFC7nKrff/H\n\
1179 TFKNttp22cZE9V0IPpzedPfnQkE7aUdmF9JnDyv21Z/818O93u1B4r0szdnmEvEF\n\
1180 bKuIxEHX+bp0ZR7RqE1AeifXGJX3d6tsd2PMAObxwwsv55RGkn50vHO4QxtTARr1\n\
1181 rRUV5j3B3oPMgC7Offxx+98Xn45B1/G0Prp11anDsR1PGwtaCYipqsvMwQUSJtyE\n\
1182 EOQWk+yFkeMe4vWv367eEi0Sd/wnC+TSXBE3pYvpYerJ8n1MceI5GQTdarJ77OW9\n\
1183 bGTHmxRsLSCM1jpLdPja5jjb4siAa6EHc4qN9c/iFKS3PQPJEnX7pXKBRs5f7AF3\n\
1184 W3RIGt+G9IVNZfXaS7Z/iCpgzgvKCs0VeqN38QsJGtC1aIkwOeyjPNy2G6jJ4yqH\n\
1185 ovXYt/0mc00vCWeSNS1wren0pR2EiLxX0ypjjgsU1mk/Z3b/+zVf7fZSIB+nDLjb\n\
1186 NPtUlJCVGnAeBK1J1nG3TQicqowOXoM6ISkdaXj5GPJdXHab2+S7cqhKGv5qC7rR\n\
1187 jT6sx7RUr0CNTxzLI7muV2/a4tGmj0PSdXQdsZ7tw7gbXlaWT1+MM2MCAQI=\n\
1188 -----END DH PARAMETERS-----\n";
1189
1190 static const struct dhinfo tlso_dhpem[] = {
1191         { 512, tlso_dhpem512, sizeof(tlso_dhpem512) },
1192         { 1024, tlso_dhpem1024, sizeof(tlso_dhpem1024) },
1193         { 2048, tlso_dhpem2048, sizeof(tlso_dhpem2048) },
1194         { 4096, tlso_dhpem4096, sizeof(tlso_dhpem4096) },
1195         { 0, NULL, 0 }
1196 };
1197
1198 static DH *
1199 tlso_tmp_dh_cb( SSL *ssl, int is_export, int key_length )
1200 {
1201         struct dhplist *p = NULL;
1202         BIO *b = NULL;
1203         DH *dh = NULL;
1204         int i;
1205
1206         /* Do we have params of this length already? */
1207         LDAP_MUTEX_LOCK( &tlso_dh_mutex );
1208         for ( p = tlso_dhparams; p; p=p->next ) {
1209                 if ( p->keylength == key_length ) {
1210                         LDAP_MUTEX_UNLOCK( &tlso_dh_mutex );
1211                         return p->param;
1212                 }
1213         }
1214
1215         /* No - check for hardcoded params */
1216
1217         for (i=0; tlso_dhpem[i].keylength; i++) {
1218                 if ( tlso_dhpem[i].keylength == key_length ) {
1219                         b = BIO_new_mem_buf( (char *)tlso_dhpem[i].pem, tlso_dhpem[i].size );
1220                         break;
1221                 }
1222         }
1223
1224         if ( b ) {
1225                 dh = PEM_read_bio_DHparams( b, NULL, NULL, NULL );
1226                 BIO_free( b );
1227         }
1228
1229         /* Generating on the fly is expensive/slow... */
1230         if ( !dh ) {
1231                 dh = DH_generate_parameters( key_length, DH_GENERATOR_2, NULL, NULL );
1232         }
1233         if ( dh ) {
1234                 p = LDAP_MALLOC( sizeof(struct dhplist) );
1235                 if ( p != NULL ) {
1236                         p->keylength = key_length;
1237                         p->param = dh;
1238                         p->next = tlso_dhparams;
1239                         tlso_dhparams = p;
1240                 }
1241         }
1242
1243         LDAP_MUTEX_UNLOCK( &tlso_dh_mutex );
1244         return dh;
1245 }
1246
1247 tls_impl ldap_int_tls_impl = {
1248         "OpenSSL",
1249
1250         tlso_init,
1251         tlso_destroy,
1252
1253         tlso_ctx_new,
1254         tlso_ctx_ref,
1255         tlso_ctx_free,
1256         tlso_ctx_init,
1257
1258         tlso_session_new,
1259         tlso_session_connect,
1260         tlso_session_accept,
1261         tlso_session_upflags,
1262         tlso_session_errmsg,
1263         tlso_session_my_dn,
1264         tlso_session_peer_dn,
1265         tlso_session_chkhost,
1266         tlso_session_strength,
1267
1268         &tlso_sbio,
1269
1270 #ifdef LDAP_R_COMPILE
1271         tlso_thr_init,
1272 #else
1273         NULL,
1274 #endif
1275
1276         0
1277 };
1278
1279 #endif /* HAVE_OPENSSL */