Overhaul of GnuTLS code.
[exim.git] / src / src / tls-openssl.c
CommitLineData
059ec3d9
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
0a49a7a4 5/* Copyright (c) University of Cambridge 1995 - 2009 */
059ec3d9
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* This module provides the TLS (aka SSL) support for Exim using the OpenSSL
9library. It is #included into the tls.c file when that library is used. The
10code herein is based on a patch that was originally contributed by Steve
11Haslam. It was adapted from stunnel, a GPL program by Michal Trojnara.
12
13No cryptographic code is included in Exim. All this module does is to call
14functions from the OpenSSL library. */
15
16
17/* Heading stuff */
18
19#include <openssl/lhash.h>
20#include <openssl/ssl.h>
21#include <openssl/err.h>
22#include <openssl/rand.h>
23
24/* Structure for collecting random data for seeding. */
25
26typedef struct randstuff {
9e3331ea
TK
27 struct timeval tv;
28 pid_t p;
059ec3d9
PH
29} randstuff;
30
31/* Local static variables */
32
33static BOOL verify_callback_called = FALSE;
34static const uschar *sid_ctx = US"exim";
35
36static SSL_CTX *ctx = NULL;
7be682ca 37static SSL_CTX *ctx_sni = NULL;
059ec3d9
PH
38static SSL *ssl = NULL;
39
40static char ssl_errstring[256];
41
42static int ssl_session_timeout = 200;
43static BOOL verify_optional = FALSE;
44
7be682ca 45static BOOL reexpand_tls_files_for_sni = FALSE;
059ec3d9
PH
46
47
7be682ca
PP
48typedef struct tls_ext_ctx_cb {
49 uschar *certificate;
50 uschar *privatekey;
51 uschar *dhparam;
52 /* these are cached from first expand */
53 uschar *server_cipher_list;
54 /* only passed down to tls_error: */
55 host_item *host;
56} tls_ext_ctx_cb;
57
58/* should figure out a cleanup of API to handle state preserved per
59implementation, for various reasons, which can be void * in the APIs.
60For now, we hack around it. */
61tls_ext_ctx_cb *static_cbinfo = NULL;
62
63static int
64setup_certs(SSL_CTX *sctx, uschar *certs, uschar *crl, host_item *host, BOOL optional);
059ec3d9
PH
65
66
67/*************************************************
68* Handle TLS error *
69*************************************************/
70
71/* Called from lots of places when errors occur before actually starting to do
72the TLS handshake, that is, while the session is still in clear. Always returns
73DEFER for a server and FAIL for a client so that most calls can use "return
74tls_error(...)" to do this processing and then give an appropriate return. A
75single function is used for both server and client, because it is called from
76some shared functions.
77
78Argument:
79 prefix text to include in the logged error
80 host NULL if setting up a server;
81 the connected host if setting up a client
7199e1ee 82 msg error message or NULL if we should ask OpenSSL
059ec3d9
PH
83
84Returns: OK/DEFER/FAIL
85*/
86
87static int
7199e1ee 88tls_error(uschar *prefix, host_item *host, uschar *msg)
059ec3d9 89{
7199e1ee
TF
90if (msg == NULL)
91 {
92 ERR_error_string(ERR_get_error(), ssl_errstring);
5ca6d115 93 msg = (uschar *)ssl_errstring;
7199e1ee
TF
94 }
95
059ec3d9
PH
96if (host == NULL)
97 {
7199e1ee 98 uschar *conn_info = smtp_get_connection_info();
5ca6d115 99 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0)
7199e1ee
TF
100 conn_info += 5;
101 log_write(0, LOG_MAIN, "TLS error on %s (%s): %s",
102 conn_info, prefix, msg);
059ec3d9
PH
103 return DEFER;
104 }
105else
106 {
107 log_write(0, LOG_MAIN, "TLS error on connection to %s [%s] (%s): %s",
7199e1ee 108 host->name, host->address, prefix, msg);
059ec3d9
PH
109 return FAIL;
110 }
111}
112
113
114
115/*************************************************
116* Callback to generate RSA key *
117*************************************************/
118
119/*
120Arguments:
121 s SSL connection
122 export not used
123 keylength keylength
124
125Returns: pointer to generated key
126*/
127
128static RSA *
129rsa_callback(SSL *s, int export, int keylength)
130{
131RSA *rsa_key;
132export = export; /* Shut picky compilers up */
133DEBUG(D_tls) debug_printf("Generating %d bit RSA key...\n", keylength);
134rsa_key = RSA_generate_key(keylength, RSA_F4, NULL, NULL);
135if (rsa_key == NULL)
136 {
137 ERR_error_string(ERR_get_error(), ssl_errstring);
138 log_write(0, LOG_MAIN|LOG_PANIC, "TLS error (RSA_generate_key): %s",
139 ssl_errstring);
140 return NULL;
141 }
142return rsa_key;
143}
144
145
146
147
148/*************************************************
149* Callback for verification *
150*************************************************/
151
152/* The SSL library does certificate verification if set up to do so. This
153callback has the current yes/no state is in "state". If verification succeeded,
154we set up the tls_peerdn string. If verification failed, what happens depends
155on whether the client is required to present a verifiable certificate or not.
156
157If verification is optional, we change the state to yes, but still log the
158verification error. For some reason (it really would help to have proper
159documentation of OpenSSL), this callback function then gets called again, this
160time with state = 1. In fact, that's useful, because we can set up the peerdn
161value, but we must take care not to set the private verified flag on the second
162time through.
163
164Note: this function is not called if the client fails to present a certificate
165when asked. We get here only if a certificate has been received. Handling of
166optional verification for this case is done when requesting SSL to verify, by
167setting SSL_VERIFY_FAIL_IF_NO_PEER_CERT in the non-optional case.
168
169Arguments:
170 state current yes/no state as 1/0
171 x509ctx certificate information.
172
173Returns: 1 if verified, 0 if not
174*/
175
176static int
177verify_callback(int state, X509_STORE_CTX *x509ctx)
178{
179static uschar txt[256];
180
181X509_NAME_oneline(X509_get_subject_name(x509ctx->current_cert),
182 CS txt, sizeof(txt));
183
184if (state == 0)
185 {
186 log_write(0, LOG_MAIN, "SSL verify error: depth=%d error=%s cert=%s",
187 x509ctx->error_depth,
188 X509_verify_cert_error_string(x509ctx->error),
189 txt);
190 tls_certificate_verified = FALSE;
191 verify_callback_called = TRUE;
192 if (!verify_optional) return 0; /* reject */
193 DEBUG(D_tls) debug_printf("SSL verify failure overridden (host in "
194 "tls_try_verify_hosts)\n");
195 return 1; /* accept */
196 }
197
198if (x509ctx->error_depth != 0)
199 {
200 DEBUG(D_tls) debug_printf("SSL verify ok: depth=%d cert=%s\n",
201 x509ctx->error_depth, txt);
202 }
203else
204 {
205 DEBUG(D_tls) debug_printf("SSL%s peer: %s\n",
206 verify_callback_called? "" : " authenticated", txt);
207 tls_peerdn = txt;
208 }
209
059ec3d9
PH
210if (!verify_callback_called) tls_certificate_verified = TRUE;
211verify_callback_called = TRUE;
212
213return 1; /* accept */
214}
215
216
217
218/*************************************************
219* Information callback *
220*************************************************/
221
222/* The SSL library functions call this from time to time to indicate what they
7be682ca
PP
223are doing. We copy the string to the debugging output when TLS debugging has
224been requested.
059ec3d9
PH
225
226Arguments:
227 s the SSL connection
228 where
229 ret
230
231Returns: nothing
232*/
233
234static void
235info_callback(SSL *s, int where, int ret)
236{
237where = where;
238ret = ret;
239DEBUG(D_tls) debug_printf("SSL info: %s\n", SSL_state_string_long(s));
240}
241
242
243
244/*************************************************
245* Initialize for DH *
246*************************************************/
247
248/* If dhparam is set, expand it, and load up the parameters for DH encryption.
249
250Arguments:
251 dhparam DH parameter file
7199e1ee 252 host connected host, if client; NULL if server
059ec3d9
PH
253
254Returns: TRUE if OK (nothing to set up, or setup worked)
255*/
256
257static BOOL
7199e1ee 258init_dh(uschar *dhparam, host_item *host)
059ec3d9
PH
259{
260BOOL yield = TRUE;
261BIO *bio;
262DH *dh;
263uschar *dhexpanded;
264
265if (!expand_check(dhparam, US"tls_dhparam", &dhexpanded))
266 return FALSE;
267
268if (dhexpanded == NULL) return TRUE;
269
270if ((bio = BIO_new_file(CS dhexpanded, "r")) == NULL)
271 {
7199e1ee 272 tls_error(string_sprintf("could not read dhparams file %s", dhexpanded),
5ca6d115 273 host, (uschar *)strerror(errno));
059ec3d9
PH
274 yield = FALSE;
275 }
276else
277 {
278 if ((dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL)) == NULL)
279 {
7199e1ee
TF
280 tls_error(string_sprintf("could not read dhparams file %s", dhexpanded),
281 host, NULL);
059ec3d9
PH
282 yield = FALSE;
283 }
284 else
285 {
286 SSL_CTX_set_tmp_dh(ctx, dh);
287 DEBUG(D_tls)
288 debug_printf("Diffie-Hellman initialized from %s with %d-bit key\n",
289 dhexpanded, 8*DH_size(dh));
290 DH_free(dh);
291 }
292 BIO_free(bio);
293 }
294
295return yield;
296}
297
298
299
300
7be682ca
PP
301/*************************************************
302* Expand key and cert file specs *
303*************************************************/
304
305/* Called once during tls_init and possibly againt during TLS setup, for a
306new context, if Server Name Indication was used and tls_sni was seen in
307the certificate string.
308
309Arguments:
310 sctx the SSL_CTX* to update
311 cbinfo various parts of session state
312
313Returns: OK/DEFER/FAIL
314*/
315
316static int
317tls_expand_session_files(SSL_CTX *sctx, const tls_ext_ctx_cb *cbinfo)
318{
319uschar *expanded;
320
321if (cbinfo->certificate == NULL)
322 return OK;
323
324if (Ustrstr(cbinfo->certificate, US"tls_sni"))
325 reexpand_tls_files_for_sni = TRUE;
326
327if (!expand_check(cbinfo->certificate, US"tls_certificate", &expanded))
328 return DEFER;
329
330if (expanded != NULL)
331 {
332 DEBUG(D_tls) debug_printf("tls_certificate file %s\n", expanded);
333 if (!SSL_CTX_use_certificate_chain_file(sctx, CS expanded))
334 return tls_error(string_sprintf(
335 "SSL_CTX_use_certificate_chain_file file=%s", expanded),
336 cbinfo->host, NULL);
337 }
338
339if (cbinfo->privatekey != NULL &&
340 !expand_check(cbinfo->privatekey, US"tls_privatekey", &expanded))
341 return DEFER;
342
343/* If expansion was forced to fail, key_expanded will be NULL. If the result
344of the expansion is an empty string, ignore it also, and assume the private
345key is in the same file as the certificate. */
346
347if (expanded != NULL && *expanded != 0)
348 {
349 DEBUG(D_tls) debug_printf("tls_privatekey file %s\n", expanded);
350 if (!SSL_CTX_use_PrivateKey_file(sctx, CS expanded, SSL_FILETYPE_PEM))
351 return tls_error(string_sprintf(
352 "SSL_CTX_use_PrivateKey_file file=%s", expanded), cbinfo->host, NULL);
353 }
354
355return OK;
356}
357
358
359
360
361/*************************************************
362* Callback to handle SNI *
363*************************************************/
364
365/* Called when acting as server during the TLS session setup if a Server Name
366Indication extension was sent by the client.
367
368API documentation is OpenSSL s_server.c implementation.
369
370Arguments:
371 s SSL* of the current session
372 ad unknown (part of OpenSSL API) (unused)
373 arg Callback of "our" registered data
374
375Returns: SSL_TLSEXT_ERR_{OK,ALERT_WARNING,ALERT_FATAL,NOACK}
376*/
377
378static int
379tls_servername_cb(SSL *s, int *ad ARG_UNUSED, void *arg);
380/* pre-declared for SSL_CTX_set_tlsext_servername_callback call within func */
381
382static int
383tls_servername_cb(SSL *s, int *ad ARG_UNUSED, void *arg)
384{
385const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
386const tls_ext_ctx_cb *cbinfo = (tls_ext_ctx_cb *) arg;
387int rc;
3f0945ff 388int old_pool = store_pool;
7be682ca
PP
389
390if (!servername)
391 return SSL_TLSEXT_ERR_OK;
392
3f0945ff 393DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", servername,
7be682ca
PP
394 reexpand_tls_files_for_sni ? "" : " (unused for certificate selection)");
395
396/* Make the extension value available for expansion */
3f0945ff
PP
397store_pool = POOL_PERM;
398tls_sni = string_copy(US servername);
399store_pool = old_pool;
7be682ca
PP
400
401if (!reexpand_tls_files_for_sni)
402 return SSL_TLSEXT_ERR_OK;
403
404/* Can't find an SSL_CTX_clone() or equivalent, so we do it manually;
405not confident that memcpy wouldn't break some internal reference counting.
406Especially since there's a references struct member, which would be off. */
407
408ctx_sni = SSL_CTX_new(SSLv23_server_method());
409if (!ctx_sni)
410 {
411 ERR_error_string(ERR_get_error(), ssl_errstring);
412 DEBUG(D_tls) debug_printf("SSL_CTX_new() failed: %s\n", ssl_errstring);
413 return SSL_TLSEXT_ERR_NOACK;
414 }
415
416/* Not sure how many of these are actually needed, since SSL object
417already exists. Might even need this selfsame callback, for reneg? */
418
419SSL_CTX_set_info_callback(ctx_sni, SSL_CTX_get_info_callback(ctx));
420SSL_CTX_set_mode(ctx_sni, SSL_CTX_get_mode(ctx));
421SSL_CTX_set_options(ctx_sni, SSL_CTX_get_options(ctx));
422SSL_CTX_set_timeout(ctx_sni, SSL_CTX_get_timeout(ctx));
423SSL_CTX_set_tlsext_servername_callback(ctx_sni, tls_servername_cb);
424SSL_CTX_set_tlsext_servername_arg(ctx_sni, cbinfo);
425if (cbinfo->server_cipher_list)
426 SSL_CTX_set_cipher_list(ctx_sni, CS cbinfo->server_cipher_list);
427
428rc = tls_expand_session_files(ctx_sni, cbinfo);
429if (rc != OK) return SSL_TLSEXT_ERR_NOACK;
430
431rc = setup_certs(ctx_sni, tls_verify_certificates, tls_crl, NULL, FALSE);
432if (rc != OK) return SSL_TLSEXT_ERR_NOACK;
433
434DEBUG(D_tls) debug_printf("Switching SSL context.\n");
435SSL_set_SSL_CTX(s, ctx_sni);
436
437return SSL_TLSEXT_ERR_OK;
438}
439
440
441
442
059ec3d9
PH
443/*************************************************
444* Initialize for TLS *
445*************************************************/
446
447/* Called from both server and client code, to do preliminary initialization of
448the library.
449
450Arguments:
451 host connected host, if client; NULL if server
452 dhparam DH parameter file
453 certificate certificate file
454 privatekey private key
455 addr address if client; NULL if server (for some randomness)
456
457Returns: OK/DEFER/FAIL
458*/
459
460static int
c91535f3
PH
461tls_init(host_item *host, uschar *dhparam, uschar *certificate,
462 uschar *privatekey, address_item *addr)
059ec3d9 463{
77bb000f 464long init_options;
7be682ca 465int rc;
77bb000f 466BOOL okay;
7be682ca
PP
467tls_ext_ctx_cb *cbinfo;
468
469cbinfo = store_malloc(sizeof(tls_ext_ctx_cb));
470cbinfo->certificate = certificate;
471cbinfo->privatekey = privatekey;
472cbinfo->dhparam = dhparam;
473cbinfo->host = host;
77bb000f 474
059ec3d9
PH
475SSL_load_error_strings(); /* basic set up */
476OpenSSL_add_ssl_algorithms();
477
388d6564 478#if (OPENSSL_VERSION_NUMBER >= 0x0090800fL) && !defined(OPENSSL_NO_SHA256)
77bb000f 479/* SHA256 is becoming ever more popular. This makes sure it gets added to the
a0475b69
TK
480list of available digests. */
481EVP_add_digest(EVP_sha256());
cf1ef1a9 482#endif
a0475b69 483
059ec3d9
PH
484/* Create a context */
485
486ctx = SSL_CTX_new((host == NULL)?
487 SSLv23_server_method() : SSLv23_client_method());
488
7199e1ee 489if (ctx == NULL) return tls_error(US"SSL_CTX_new", host, NULL);
059ec3d9
PH
490
491/* It turns out that we need to seed the random number generator this early in
492order to get the full complement of ciphers to work. It took me roughly a day
493of work to discover this by experiment.
494
495On systems that have /dev/urandom, SSL may automatically seed itself from
496there. Otherwise, we have to make something up as best we can. Double check
497afterwards. */
498
499if (!RAND_status())
500 {
501 randstuff r;
9e3331ea 502 gettimeofday(&r.tv, NULL);
059ec3d9
PH
503 r.p = getpid();
504
505 RAND_seed((uschar *)(&r), sizeof(r));
506 RAND_seed((uschar *)big_buffer, big_buffer_size);
507 if (addr != NULL) RAND_seed((uschar *)addr, sizeof(addr));
508
509 if (!RAND_status())
7199e1ee 510 return tls_error(US"RAND_status", host,
5ca6d115 511 US"unable to seed random number generator");
059ec3d9
PH
512 }
513
514/* Set up the information callback, which outputs if debugging is at a suitable
515level. */
516
58c01c94 517SSL_CTX_set_info_callback(ctx, (void (*)())info_callback);
059ec3d9 518
c80c5570
PP
519/* Automatically re-try reads/writes after renegotiation. */
520(void) SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
521
77bb000f
PP
522/* Apply administrator-supplied work-arounds.
523Historically we applied just one requested option,
524SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS, but when bug 994 requested a second, we
525moved to an administrator-controlled list of options to specify and
526grandfathered in the first one as the default value for "openssl_options".
059ec3d9 527
77bb000f
PP
528No OpenSSL version number checks: the options we accept depend upon the
529availability of the option value macros from OpenSSL. */
059ec3d9 530
77bb000f
PP
531okay = tls_openssl_options_parse(openssl_options, &init_options);
532if (!okay)
73a46702 533 return tls_error(US"openssl_options parsing failed", host, NULL);
77bb000f
PP
534
535if (init_options)
536 {
537 DEBUG(D_tls) debug_printf("setting SSL CTX options: %#lx\n", init_options);
538 if (!(SSL_CTX_set_options(ctx, init_options)))
539 return tls_error(string_sprintf(
540 "SSL_CTX_set_option(%#lx)", init_options), host, NULL);
541 }
542else
543 DEBUG(D_tls) debug_printf("no SSL CTX options to set\n");
059ec3d9
PH
544
545/* Initialize with DH parameters if supplied */
546
7199e1ee 547if (!init_dh(dhparam, host)) return DEFER;
059ec3d9
PH
548
549/* Set up certificate and key */
550
7be682ca
PP
551rc = tls_expand_session_files(ctx, cbinfo);
552if (rc != OK) return rc;
c91535f3 553
7be682ca
PP
554/* If we need to handle SNI, do so */
555#if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT)
3f0945ff
PP
556if (host == NULL)
557 {
558 /* We always do this, so that $tls_sni is available even if not used in
559 tls_certificate */
560 SSL_CTX_set_tlsext_servername_callback(ctx, tls_servername_cb);
561 SSL_CTX_set_tlsext_servername_arg(ctx, cbinfo);
562 }
7be682ca 563#endif
059ec3d9
PH
564
565/* Set up the RSA callback */
566
567SSL_CTX_set_tmp_rsa_callback(ctx, rsa_callback);
568
569/* Finally, set the timeout, and we are done */
570
571SSL_CTX_set_timeout(ctx, ssl_session_timeout);
572DEBUG(D_tls) debug_printf("Initialized TLS\n");
7be682ca
PP
573
574static_cbinfo = cbinfo;
575
059ec3d9
PH
576return OK;
577}
578
579
580
581
582/*************************************************
583* Get name of cipher in use *
584*************************************************/
585
586/* The answer is left in a static buffer, and tls_cipher is set to point
587to it.
588
589Argument: pointer to an SSL structure for the connection
590Returns: nothing
591*/
592
593static void
594construct_cipher_name(SSL *ssl)
595{
596static uschar cipherbuf[256];
57b3a7f5
PP
597/* With OpenSSL 1.0.0a, this needs to be const but the documentation doesn't
598yet reflect that. It should be a safe change anyway, even 0.9.8 versions have
599the accessor functions use const in the prototype. */
600const SSL_CIPHER *c;
059ec3d9 601uschar *ver;
059ec3d9
PH
602
603switch (ssl->session->ssl_version)
604 {
605 case SSL2_VERSION:
606 ver = US"SSLv2";
607 break;
608
609 case SSL3_VERSION:
610 ver = US"SSLv3";
611 break;
612
613 case TLS1_VERSION:
614 ver = US"TLSv1";
615 break;
616
c80c5570
PP
617#ifdef TLS1_1_VERSION
618 case TLS1_1_VERSION:
619 ver = US"TLSv1.1";
620 break;
621#endif
622
623#ifdef TLS1_2_VERSION
624 case TLS1_2_VERSION:
625 ver = US"TLSv1.2";
626 break;
627#endif
628
059ec3d9
PH
629 default:
630 ver = US"UNKNOWN";
631 }
632
57b3a7f5 633c = (const SSL_CIPHER *) SSL_get_current_cipher(ssl);
edc33b5f 634SSL_CIPHER_get_bits(c, &tls_bits);
059ec3d9
PH
635
636string_format(cipherbuf, sizeof(cipherbuf), "%s:%s:%u", ver,
edc33b5f 637 SSL_CIPHER_get_name(c), tls_bits);
059ec3d9
PH
638tls_cipher = cipherbuf;
639
640DEBUG(D_tls) debug_printf("Cipher: %s\n", cipherbuf);
641}
642
643
644
645
646
647/*************************************************
648* Set up for verifying certificates *
649*************************************************/
650
651/* Called by both client and server startup
652
653Arguments:
7be682ca 654 sctx SSL_CTX* to initialise
059ec3d9
PH
655 certs certs file or NULL
656 crl CRL file or NULL
657 host NULL in a server; the remote host in a client
658 optional TRUE if called from a server for a host in tls_try_verify_hosts;
659 otherwise passed as FALSE
660
661Returns: OK/DEFER/FAIL
662*/
663
664static int
7be682ca 665setup_certs(SSL_CTX *sctx, uschar *certs, uschar *crl, host_item *host, BOOL optional)
059ec3d9
PH
666{
667uschar *expcerts, *expcrl;
668
669if (!expand_check(certs, US"tls_verify_certificates", &expcerts))
670 return DEFER;
671
672if (expcerts != NULL)
673 {
674 struct stat statbuf;
7be682ca 675 if (!SSL_CTX_set_default_verify_paths(sctx))
7199e1ee 676 return tls_error(US"SSL_CTX_set_default_verify_paths", host, NULL);
059ec3d9
PH
677
678 if (Ustat(expcerts, &statbuf) < 0)
679 {
680 log_write(0, LOG_MAIN|LOG_PANIC,
681 "failed to stat %s for certificates", expcerts);
682 return DEFER;
683 }
684 else
685 {
686 uschar *file, *dir;
687 if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
688 { file = NULL; dir = expcerts; }
689 else
690 { file = expcerts; dir = NULL; }
691
692 /* If a certificate file is empty, the next function fails with an
693 unhelpful error message. If we skip it, we get the correct behaviour (no
694 certificates are recognized, but the error message is still misleading (it
695 says no certificate was supplied.) But this is better. */
696
697 if ((file == NULL || statbuf.st_size > 0) &&
7be682ca 698 !SSL_CTX_load_verify_locations(sctx, CS file, CS dir))
7199e1ee 699 return tls_error(US"SSL_CTX_load_verify_locations", host, NULL);
059ec3d9
PH
700
701 if (file != NULL)
702 {
7be682ca 703 SSL_CTX_set_client_CA_list(sctx, SSL_load_client_CA_file(CS file));
059ec3d9
PH
704 }
705 }
706
707 /* Handle a certificate revocation list. */
708
709 #if OPENSSL_VERSION_NUMBER > 0x00907000L
710
8b417f2c
PH
711 /* This bit of code is now the version supplied by Lars Mainka. (I have
712 * merely reformatted it into the Exim code style.)
713
714 * "From here I changed the code to add support for multiple crl's
715 * in pem format in one file or to support hashed directory entries in
716 * pem format instead of a file. This method now uses the library function
717 * X509_STORE_load_locations to add the CRL location to the SSL context.
718 * OpenSSL will then handle the verify against CA certs and CRLs by
719 * itself in the verify callback." */
720
059ec3d9
PH
721 if (!expand_check(crl, US"tls_crl", &expcrl)) return DEFER;
722 if (expcrl != NULL && *expcrl != 0)
723 {
8b417f2c
PH
724 struct stat statbufcrl;
725 if (Ustat(expcrl, &statbufcrl) < 0)
726 {
727 log_write(0, LOG_MAIN|LOG_PANIC,
728 "failed to stat %s for certificates revocation lists", expcrl);
729 return DEFER;
730 }
731 else
059ec3d9 732 {
8b417f2c
PH
733 /* is it a file or directory? */
734 uschar *file, *dir;
7be682ca 735 X509_STORE *cvstore = SSL_CTX_get_cert_store(sctx);
8b417f2c 736 if ((statbufcrl.st_mode & S_IFMT) == S_IFDIR)
059ec3d9 737 {
8b417f2c
PH
738 file = NULL;
739 dir = expcrl;
740 DEBUG(D_tls) debug_printf("SSL CRL value is a directory %s\n", dir);
059ec3d9
PH
741 }
742 else
743 {
8b417f2c
PH
744 file = expcrl;
745 dir = NULL;
746 DEBUG(D_tls) debug_printf("SSL CRL value is a file %s\n", file);
059ec3d9 747 }
8b417f2c 748 if (X509_STORE_load_locations(cvstore, CS file, CS dir) == 0)
7199e1ee 749 return tls_error(US"X509_STORE_load_locations", host, NULL);
8b417f2c
PH
750
751 /* setting the flags to check against the complete crl chain */
752
753 X509_STORE_set_flags(cvstore,
754 X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
059ec3d9 755 }
059ec3d9
PH
756 }
757
758 #endif /* OPENSSL_VERSION_NUMBER > 0x00907000L */
759
760 /* If verification is optional, don't fail if no certificate */
761
7be682ca 762 SSL_CTX_set_verify(sctx,
059ec3d9
PH
763 SSL_VERIFY_PEER | (optional? 0 : SSL_VERIFY_FAIL_IF_NO_PEER_CERT),
764 verify_callback);
765 }
766
767return OK;
768}
769
770
771
772/*************************************************
773* Start a TLS session in a server *
774*************************************************/
775
776/* This is called when Exim is running as a server, after having received
777the STARTTLS command. It must respond to that command, and then negotiate
778a TLS session.
779
780Arguments:
781 require_ciphers allowed ciphers
782
783Returns: OK on success
784 DEFER for errors before the start of the negotiation
785 FAIL for errors during the negotation; the server can't
786 continue running.
787*/
788
789int
17c76198 790tls_server_start(const uschar *require_ciphers)
059ec3d9
PH
791{
792int rc;
793uschar *expciphers;
7be682ca 794tls_ext_ctx_cb *cbinfo;
059ec3d9
PH
795
796/* Check for previous activation */
797
798if (tls_active >= 0)
799 {
5ca6d115 800 tls_error(US"STARTTLS received after TLS started", NULL, US"");
059ec3d9
PH
801 smtp_printf("554 Already in TLS\r\n");
802 return FAIL;
803 }
804
805/* Initialize the SSL library. If it fails, it will already have logged
806the error. */
807
808rc = tls_init(NULL, tls_dhparam, tls_certificate, tls_privatekey, NULL);
809if (rc != OK) return rc;
7be682ca 810cbinfo = static_cbinfo;
059ec3d9
PH
811
812if (!expand_check(require_ciphers, US"tls_require_ciphers", &expciphers))
813 return FAIL;
814
815/* In OpenSSL, cipher components are separated by hyphens. In GnuTLS, they
17c76198
PP
816were historically separated by underscores. So that I can use either form in my
817tests, and also for general convenience, we turn underscores into hyphens here.
818*/
059ec3d9
PH
819
820if (expciphers != NULL)
821 {
822 uschar *s = expciphers;
823 while (*s != 0) { if (*s == '_') *s = '-'; s++; }
824 DEBUG(D_tls) debug_printf("required ciphers: %s\n", expciphers);
825 if (!SSL_CTX_set_cipher_list(ctx, CS expciphers))
7199e1ee 826 return tls_error(US"SSL_CTX_set_cipher_list", NULL, NULL);
7be682ca 827 cbinfo->server_cipher_list = expciphers;
059ec3d9
PH
828 }
829
830/* If this is a host for which certificate verification is mandatory or
831optional, set up appropriately. */
832
833tls_certificate_verified = FALSE;
834verify_callback_called = FALSE;
835
836if (verify_check_host(&tls_verify_hosts) == OK)
837 {
7be682ca 838 rc = setup_certs(ctx, tls_verify_certificates, tls_crl, NULL, FALSE);
059ec3d9
PH
839 if (rc != OK) return rc;
840 verify_optional = FALSE;
841 }
842else if (verify_check_host(&tls_try_verify_hosts) == OK)
843 {
7be682ca 844 rc = setup_certs(ctx, tls_verify_certificates, tls_crl, NULL, TRUE);
059ec3d9
PH
845 if (rc != OK) return rc;
846 verify_optional = TRUE;
847 }
848
849/* Prepare for new connection */
850
7199e1ee 851if ((ssl = SSL_new(ctx)) == NULL) return tls_error(US"SSL_new", NULL, NULL);
da3ad30d
PP
852
853/* Warning: we used to SSL_clear(ssl) here, it was removed.
854 *
855 * With the SSL_clear(), we get strange interoperability bugs with
856 * OpenSSL 1.0.1b and TLS1.1/1.2. It looks as though this may be a bug in
857 * OpenSSL itself, as a clear should not lead to inability to follow protocols.
858 *
859 * The SSL_clear() call is to let an existing SSL* be reused, typically after
860 * session shutdown. In this case, we have a brand new object and there's no
861 * obvious reason to immediately clear it. I'm guessing that this was
862 * originally added because of incomplete initialisation which the clear fixed,
863 * in some historic release.
864 */
059ec3d9
PH
865
866/* Set context and tell client to go ahead, except in the case of TLS startup
867on connection, where outputting anything now upsets the clients and tends to
868make them disconnect. We need to have an explicit fflush() here, to force out
869the response. Other smtp_printf() calls do not need it, because in non-TLS
870mode, the fflush() happens when smtp_getc() is called. */
871
872SSL_set_session_id_context(ssl, sid_ctx, Ustrlen(sid_ctx));
873if (!tls_on_connect)
874 {
875 smtp_printf("220 TLS go ahead\r\n");
876 fflush(smtp_out);
877 }
878
879/* Now negotiate the TLS session. We put our own timer on it, since it seems
880that the OpenSSL library doesn't. */
881
56f5d9bd
PH
882SSL_set_wfd(ssl, fileno(smtp_out));
883SSL_set_rfd(ssl, fileno(smtp_in));
059ec3d9
PH
884SSL_set_accept_state(ssl);
885
886DEBUG(D_tls) debug_printf("Calling SSL_accept\n");
887
888sigalrm_seen = FALSE;
889if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
890rc = SSL_accept(ssl);
891alarm(0);
892
893if (rc <= 0)
894 {
7199e1ee 895 tls_error(US"SSL_accept", NULL, sigalrm_seen ? US"timed out" : NULL);
77bb000f
PP
896 if (ERR_get_error() == 0)
897 log_write(0, LOG_MAIN,
a053d125 898 "TLS client disconnected cleanly (rejected our certificate?)");
059ec3d9
PH
899 return FAIL;
900 }
901
902DEBUG(D_tls) debug_printf("SSL_accept was successful\n");
903
904/* TLS has been set up. Adjust the input functions to read via TLS,
905and initialize things. */
906
907construct_cipher_name(ssl);
908
909DEBUG(D_tls)
910 {
911 uschar buf[2048];
912 if (SSL_get_shared_ciphers(ssl, CS buf, sizeof(buf)) != NULL)
913 debug_printf("Shared ciphers: %s\n", buf);
914 }
915
916
917ssl_xfer_buffer = store_malloc(ssl_xfer_buffer_size);
918ssl_xfer_buffer_lwm = ssl_xfer_buffer_hwm = 0;
919ssl_xfer_eof = ssl_xfer_error = 0;
920
921receive_getc = tls_getc;
922receive_ungetc = tls_ungetc;
923receive_feof = tls_feof;
924receive_ferror = tls_ferror;
58eb016e 925receive_smtp_buffered = tls_smtp_buffered;
059ec3d9
PH
926
927tls_active = fileno(smtp_out);
928return OK;
929}
930
931
932
933
934
935/*************************************************
936* Start a TLS session in a client *
937*************************************************/
938
939/* Called from the smtp transport after STARTTLS has been accepted.
940
941Argument:
942 fd the fd of the connection
943 host connected host (for messages)
83da1223 944 addr the first address
059ec3d9
PH
945 dhparam DH parameter file
946 certificate certificate file
947 privatekey private key file
3f0945ff 948 sni TLS SNI to send to remote host
059ec3d9
PH
949 verify_certs file for certificate verify
950 crl file containing CRL
951 require_ciphers list of allowed ciphers
83da1223 952 timeout startup timeout
059ec3d9
PH
953
954Returns: OK on success
955 FAIL otherwise - note that tls_error() will not give DEFER
956 because this is not a server
957*/
958
959int
960tls_client_start(int fd, host_item *host, address_item *addr, uschar *dhparam,
3f0945ff
PP
961 uschar *certificate, uschar *privatekey, uschar *sni,
962 uschar *verify_certs, uschar *crl,
17c76198 963 uschar *require_ciphers, int timeout)
059ec3d9
PH
964{
965static uschar txt[256];
966uschar *expciphers;
967X509* server_cert;
968int rc;
969
970rc = tls_init(host, dhparam, certificate, privatekey, addr);
971if (rc != OK) return rc;
972
973tls_certificate_verified = FALSE;
974verify_callback_called = FALSE;
975
976if (!expand_check(require_ciphers, US"tls_require_ciphers", &expciphers))
977 return FAIL;
978
979/* In OpenSSL, cipher components are separated by hyphens. In GnuTLS, they
980are separated by underscores. So that I can use either form in my tests, and
981also for general convenience, we turn underscores into hyphens here. */
982
983if (expciphers != NULL)
984 {
985 uschar *s = expciphers;
986 while (*s != 0) { if (*s == '_') *s = '-'; s++; }
987 DEBUG(D_tls) debug_printf("required ciphers: %s\n", expciphers);
988 if (!SSL_CTX_set_cipher_list(ctx, CS expciphers))
7199e1ee 989 return tls_error(US"SSL_CTX_set_cipher_list", host, NULL);
059ec3d9
PH
990 }
991
7be682ca 992rc = setup_certs(ctx, verify_certs, crl, host, FALSE);
059ec3d9
PH
993if (rc != OK) return rc;
994
7199e1ee 995if ((ssl = SSL_new(ctx)) == NULL) return tls_error(US"SSL_new", host, NULL);
059ec3d9
PH
996SSL_set_session_id_context(ssl, sid_ctx, Ustrlen(sid_ctx));
997SSL_set_fd(ssl, fd);
998SSL_set_connect_state(ssl);
999
3f0945ff
PP
1000if (sni)
1001 {
1002 if (!expand_check(sni, US"tls_sni", &tls_sni))
1003 return FAIL;
1004 if (!Ustrlen(tls_sni))
1005 tls_sni = NULL;
1006 else
1007 {
1008 DEBUG(D_tls) debug_printf("Setting TLS SNI \"%s\"\n", tls_sni);
1009 SSL_set_tlsext_host_name(ssl, tls_sni);
1010 }
1011 }
1012
059ec3d9
PH
1013/* There doesn't seem to be a built-in timeout on connection. */
1014
1015DEBUG(D_tls) debug_printf("Calling SSL_connect\n");
1016sigalrm_seen = FALSE;
1017alarm(timeout);
1018rc = SSL_connect(ssl);
1019alarm(0);
1020
1021if (rc <= 0)
7199e1ee 1022 return tls_error(US"SSL_connect", host, sigalrm_seen ? US"timed out" : NULL);
059ec3d9
PH
1023
1024DEBUG(D_tls) debug_printf("SSL_connect succeeded\n");
1025
453a6645 1026/* Beware anonymous ciphers which lead to server_cert being NULL */
059ec3d9 1027server_cert = SSL_get_peer_certificate (ssl);
453a6645
PP
1028if (server_cert)
1029 {
1030 tls_peerdn = US X509_NAME_oneline(X509_get_subject_name(server_cert),
1031 CS txt, sizeof(txt));
1032 tls_peerdn = txt;
1033 }
1034else
1035 tls_peerdn = NULL;
059ec3d9
PH
1036
1037construct_cipher_name(ssl); /* Sets tls_cipher */
1038
1039tls_active = fd;
1040return OK;
1041}
1042
1043
1044
1045
1046
1047/*************************************************
1048* TLS version of getc *
1049*************************************************/
1050
1051/* This gets the next byte from the TLS input buffer. If the buffer is empty,
1052it refills the buffer via the SSL reading function.
1053
1054Arguments: none
1055Returns: the next character or EOF
1056*/
1057
1058int
1059tls_getc(void)
1060{
1061if (ssl_xfer_buffer_lwm >= ssl_xfer_buffer_hwm)
1062 {
1063 int error;
1064 int inbytes;
1065
c80c5570
PP
1066 DEBUG(D_tls) debug_printf("Calling SSL_read(%p, %p, %u)\n", ssl,
1067 ssl_xfer_buffer, ssl_xfer_buffer_size);
059ec3d9
PH
1068
1069 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1070 inbytes = SSL_read(ssl, CS ssl_xfer_buffer, ssl_xfer_buffer_size);
1071 error = SSL_get_error(ssl, inbytes);
1072 alarm(0);
1073
1074 /* SSL_ERROR_ZERO_RETURN appears to mean that the SSL session has been
1075 closed down, not that the socket itself has been closed down. Revert to
1076 non-SSL handling. */
1077
1078 if (error == SSL_ERROR_ZERO_RETURN)
1079 {
1080 DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
1081
1082 receive_getc = smtp_getc;
1083 receive_ungetc = smtp_ungetc;
1084 receive_feof = smtp_feof;
1085 receive_ferror = smtp_ferror;
58eb016e 1086 receive_smtp_buffered = smtp_buffered;
059ec3d9
PH
1087
1088 SSL_free(ssl);
1089 ssl = NULL;
1090 tls_active = -1;
3f0945ff 1091 tls_bits = 0;
059ec3d9
PH
1092 tls_cipher = NULL;
1093 tls_peerdn = NULL;
3f0945ff 1094 tls_sni = NULL;
059ec3d9
PH
1095
1096 return smtp_getc();
1097 }
1098
1099 /* Handle genuine errors */
1100
ba084640
PP
1101 else if (error == SSL_ERROR_SSL)
1102 {
1103 ERR_error_string(ERR_get_error(), ssl_errstring);
89dd51cd 1104 log_write(0, LOG_MAIN, "TLS error (SSL_read): %s", ssl_errstring);
ba084640
PP
1105 ssl_xfer_error = 1;
1106 return EOF;
1107 }
1108
059ec3d9
PH
1109 else if (error != SSL_ERROR_NONE)
1110 {
1111 DEBUG(D_tls) debug_printf("Got SSL error %d\n", error);
1112 ssl_xfer_error = 1;
1113 return EOF;
1114 }
c80c5570 1115
80a47a2c
TK
1116#ifndef DISABLE_DKIM
1117 dkim_exim_verify_feed(ssl_xfer_buffer, inbytes);
1118#endif
059ec3d9
PH
1119 ssl_xfer_buffer_hwm = inbytes;
1120 ssl_xfer_buffer_lwm = 0;
1121 }
1122
1123/* Something in the buffer; return next uschar */
1124
1125return ssl_xfer_buffer[ssl_xfer_buffer_lwm++];
1126}
1127
1128
1129
1130/*************************************************
1131* Read bytes from TLS channel *
1132*************************************************/
1133
1134/*
1135Arguments:
1136 buff buffer of data
1137 len size of buffer
1138
1139Returns: the number of bytes read
1140 -1 after a failed read
1141*/
1142
1143int
1144tls_read(uschar *buff, size_t len)
1145{
1146int inbytes;
1147int error;
1148
c80c5570
PP
1149DEBUG(D_tls) debug_printf("Calling SSL_read(%p, %p, %u)\n", ssl,
1150 buff, (unsigned int)len);
059ec3d9
PH
1151
1152inbytes = SSL_read(ssl, CS buff, len);
1153error = SSL_get_error(ssl, inbytes);
1154
1155if (error == SSL_ERROR_ZERO_RETURN)
1156 {
1157 DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
1158 return -1;
1159 }
1160else if (error != SSL_ERROR_NONE)
1161 {
1162 return -1;
1163 }
1164
1165return inbytes;
1166}
1167
1168
1169
1170
1171
1172/*************************************************
1173* Write bytes down TLS channel *
1174*************************************************/
1175
1176/*
1177Arguments:
1178 buff buffer of data
1179 len number of bytes
1180
1181Returns: the number of bytes after a successful write,
1182 -1 after a failed write
1183*/
1184
1185int
1186tls_write(const uschar *buff, size_t len)
1187{
1188int outbytes;
1189int error;
1190int left = len;
1191
c80c5570 1192DEBUG(D_tls) debug_printf("tls_do_write(%p, %d)\n", buff, left);
059ec3d9
PH
1193while (left > 0)
1194 {
c80c5570 1195 DEBUG(D_tls) debug_printf("SSL_write(SSL, %p, %d)\n", buff, left);
059ec3d9
PH
1196 outbytes = SSL_write(ssl, CS buff, left);
1197 error = SSL_get_error(ssl, outbytes);
1198 DEBUG(D_tls) debug_printf("outbytes=%d error=%d\n", outbytes, error);
1199 switch (error)
1200 {
1201 case SSL_ERROR_SSL:
1202 ERR_error_string(ERR_get_error(), ssl_errstring);
1203 log_write(0, LOG_MAIN, "TLS error (SSL_write): %s", ssl_errstring);
1204 return -1;
1205
1206 case SSL_ERROR_NONE:
1207 left -= outbytes;
1208 buff += outbytes;
1209 break;
1210
1211 case SSL_ERROR_ZERO_RETURN:
1212 log_write(0, LOG_MAIN, "SSL channel closed on write");
1213 return -1;
1214
1215 default:
1216 log_write(0, LOG_MAIN, "SSL_write error %d", error);
1217 return -1;
1218 }
1219 }
1220return len;
1221}
1222
1223
1224
1225/*************************************************
1226* Close down a TLS session *
1227*************************************************/
1228
1229/* This is also called from within a delivery subprocess forked from the
1230daemon, to shut down the TLS library, without actually doing a shutdown (which
1231would tamper with the SSL session in the parent process).
1232
1233Arguments: TRUE if SSL_shutdown is to be called
1234Returns: nothing
1235*/
1236
1237void
1238tls_close(BOOL shutdown)
1239{
1240if (tls_active < 0) return; /* TLS was not active */
1241
1242if (shutdown)
1243 {
1244 DEBUG(D_tls) debug_printf("tls_close(): shutting down SSL\n");
1245 SSL_shutdown(ssl);
1246 }
1247
1248SSL_free(ssl);
1249ssl = NULL;
1250
1251tls_active = -1;
1252}
1253
36f12725
NM
1254
1255
1256
1257/*************************************************
1258* Report the library versions. *
1259*************************************************/
1260
1261/* There have historically been some issues with binary compatibility in
1262OpenSSL libraries; if Exim (like many other applications) is built against
1263one version of OpenSSL but the run-time linker picks up another version,
1264it can result in serious failures, including crashing with a SIGSEGV. So
1265report the version found by the compiler and the run-time version.
1266
1267Arguments: a FILE* to print the results to
1268Returns: nothing
1269*/
1270
1271void
1272tls_version_report(FILE *f)
1273{
754a0503
PP
1274fprintf(f, "Library version: OpenSSL: Compile: %s\n"
1275 " Runtime: %s\n",
1276 OPENSSL_VERSION_TEXT,
1277 SSLeay_version(SSLEAY_VERSION));
36f12725
NM
1278}
1279
9e3331ea
TK
1280
1281
1282
1283/*************************************************
17c76198 1284* Random number generation *
9e3331ea
TK
1285*************************************************/
1286
1287/* Pseudo-random number generation. The result is not expected to be
1288cryptographically strong but not so weak that someone will shoot themselves
1289in the foot using it as a nonce in input in some email header scheme or
1290whatever weirdness they'll twist this into. The result should handle fork()
1291and avoid repeating sequences. OpenSSL handles that for us.
1292
1293Arguments:
1294 max range maximum
1295Returns a random number in range [0, max-1]
1296*/
1297
1298int
17c76198 1299vaguely_random_number(int max)
9e3331ea
TK
1300{
1301unsigned int r;
1302int i, needed_len;
1303uschar *p;
1304uschar smallbuf[sizeof(r)];
1305
1306if (max <= 1)
1307 return 0;
1308
1309/* OpenSSL auto-seeds from /dev/random, etc, but this a double-check. */
1310if (!RAND_status())
1311 {
1312 randstuff r;
1313 gettimeofday(&r.tv, NULL);
1314 r.p = getpid();
1315
1316 RAND_seed((uschar *)(&r), sizeof(r));
1317 }
1318/* We're after pseudo-random, not random; if we still don't have enough data
1319in the internal PRNG then our options are limited. We could sleep and hope
1320for entropy to come along (prayer technique) but if the system is so depleted
1321in the first place then something is likely to just keep taking it. Instead,
1322we'll just take whatever little bit of pseudo-random we can still manage to
1323get. */
1324
1325needed_len = sizeof(r);
1326/* Don't take 8 times more entropy than needed if int is 8 octets and we were
1327asked for a number less than 10. */
1328for (r = max, i = 0; r; ++i)
1329 r >>= 1;
1330i = (i + 7) / 8;
1331if (i < needed_len)
1332 needed_len = i;
1333
1334/* We do not care if crypto-strong */
17c76198
PP
1335i = RAND_pseudo_bytes(smallbuf, needed_len);
1336if (i < 0)
1337 {
1338 DEBUG(D_all)
1339 debug_printf("OpenSSL RAND_pseudo_bytes() not supported by RAND method, using fallback.\n");
1340 return vaguely_random_number_fallback(max);
1341 }
1342
9e3331ea
TK
1343r = 0;
1344for (p = smallbuf; needed_len; --needed_len, ++p)
1345 {
1346 r *= 256;
1347 r += *p;
1348 }
1349
1350/* We don't particularly care about weighted results; if someone wants
1351smooth distribution and cares enough then they should submit a patch then. */
1352return r % max;
1353}
1354
77bb000f
PP
1355
1356
1357
1358/*************************************************
1359* OpenSSL option parse *
1360*************************************************/
1361
1362/* Parse one option for tls_openssl_options_parse below
1363
1364Arguments:
1365 name one option name
1366 value place to store a value for it
1367Returns success or failure in parsing
1368*/
1369
1370struct exim_openssl_option {
1371 uschar *name;
1372 long value;
1373};
1374/* We could use a macro to expand, but we need the ifdef and not all the
1375options document which version they were introduced in. Policylet: include
1376all options unless explicitly for DTLS, let the administrator choose which
1377to apply.
1378
1379This list is current as of:
c80c5570 1380 ==> 1.0.1b <== */
77bb000f
PP
1381static struct exim_openssl_option exim_openssl_options[] = {
1382/* KEEP SORTED ALPHABETICALLY! */
1383#ifdef SSL_OP_ALL
73a46702 1384 { US"all", SSL_OP_ALL },
77bb000f
PP
1385#endif
1386#ifdef SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION
73a46702 1387 { US"allow_unsafe_legacy_renegotiation", SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION },
77bb000f
PP
1388#endif
1389#ifdef SSL_OP_CIPHER_SERVER_PREFERENCE
73a46702 1390 { US"cipher_server_preference", SSL_OP_CIPHER_SERVER_PREFERENCE },
77bb000f
PP
1391#endif
1392#ifdef SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
73a46702 1393 { US"dont_insert_empty_fragments", SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS },
77bb000f
PP
1394#endif
1395#ifdef SSL_OP_EPHEMERAL_RSA
73a46702 1396 { US"ephemeral_rsa", SSL_OP_EPHEMERAL_RSA },
77bb000f
PP
1397#endif
1398#ifdef SSL_OP_LEGACY_SERVER_CONNECT
73a46702 1399 { US"legacy_server_connect", SSL_OP_LEGACY_SERVER_CONNECT },
77bb000f
PP
1400#endif
1401#ifdef SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER
73a46702 1402 { US"microsoft_big_sslv3_buffer", SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER },
77bb000f
PP
1403#endif
1404#ifdef SSL_OP_MICROSOFT_SESS_ID_BUG
73a46702 1405 { US"microsoft_sess_id_bug", SSL_OP_MICROSOFT_SESS_ID_BUG },
77bb000f
PP
1406#endif
1407#ifdef SSL_OP_MSIE_SSLV2_RSA_PADDING
73a46702 1408 { US"msie_sslv2_rsa_padding", SSL_OP_MSIE_SSLV2_RSA_PADDING },
77bb000f
PP
1409#endif
1410#ifdef SSL_OP_NETSCAPE_CHALLENGE_BUG
73a46702 1411 { US"netscape_challenge_bug", SSL_OP_NETSCAPE_CHALLENGE_BUG },
77bb000f
PP
1412#endif
1413#ifdef SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG
73a46702 1414 { US"netscape_reuse_cipher_change_bug", SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG },
77bb000f 1415#endif
c80c5570
PP
1416#ifdef SSL_OP_NO_COMPRESSION
1417 { US"no_compression", SSL_OP_NO_COMPRESSION },
1418#endif
77bb000f 1419#ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
73a46702 1420 { US"no_session_resumption_on_renegotiation", SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION },
77bb000f 1421#endif
c0c7b2da
PP
1422#ifdef SSL_OP_NO_SSLv2
1423 { US"no_sslv2", SSL_OP_NO_SSLv2 },
1424#endif
1425#ifdef SSL_OP_NO_SSLv3
1426 { US"no_sslv3", SSL_OP_NO_SSLv3 },
1427#endif
1428#ifdef SSL_OP_NO_TICKET
1429 { US"no_ticket", SSL_OP_NO_TICKET },
1430#endif
1431#ifdef SSL_OP_NO_TLSv1
1432 { US"no_tlsv1", SSL_OP_NO_TLSv1 },
1433#endif
c80c5570
PP
1434#ifdef SSL_OP_NO_TLSv1_1
1435#if SSL_OP_NO_TLSv1_1 == 0x00000400L
1436 /* Error in chosen value in 1.0.1a; see first item in CHANGES for 1.0.1b */
1437#warning OpenSSL 1.0.1a uses a bad value for SSL_OP_NO_TLSv1_1, ignoring
1438#else
1439 { US"no_tlsv1_1", SSL_OP_NO_TLSv1_1 },
1440#endif
1441#endif
1442#ifdef SSL_OP_NO_TLSv1_2
1443 { US"no_tlsv1_2", SSL_OP_NO_TLSv1_2 },
1444#endif
77bb000f 1445#ifdef SSL_OP_SINGLE_DH_USE
73a46702 1446 { US"single_dh_use", SSL_OP_SINGLE_DH_USE },
77bb000f
PP
1447#endif
1448#ifdef SSL_OP_SINGLE_ECDH_USE
73a46702 1449 { US"single_ecdh_use", SSL_OP_SINGLE_ECDH_USE },
77bb000f
PP
1450#endif
1451#ifdef SSL_OP_SSLEAY_080_CLIENT_DH_BUG
73a46702 1452 { US"ssleay_080_client_dh_bug", SSL_OP_SSLEAY_080_CLIENT_DH_BUG },
77bb000f
PP
1453#endif
1454#ifdef SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG
73a46702 1455 { US"sslref2_reuse_cert_type_bug", SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG },
77bb000f
PP
1456#endif
1457#ifdef SSL_OP_TLS_BLOCK_PADDING_BUG
73a46702 1458 { US"tls_block_padding_bug", SSL_OP_TLS_BLOCK_PADDING_BUG },
77bb000f
PP
1459#endif
1460#ifdef SSL_OP_TLS_D5_BUG
73a46702 1461 { US"tls_d5_bug", SSL_OP_TLS_D5_BUG },
77bb000f
PP
1462#endif
1463#ifdef SSL_OP_TLS_ROLLBACK_BUG
73a46702 1464 { US"tls_rollback_bug", SSL_OP_TLS_ROLLBACK_BUG },
77bb000f
PP
1465#endif
1466};
1467static int exim_openssl_options_size =
1468 sizeof(exim_openssl_options)/sizeof(struct exim_openssl_option);
1469
c80c5570 1470
77bb000f
PP
1471static BOOL
1472tls_openssl_one_option_parse(uschar *name, long *value)
1473{
1474int first = 0;
1475int last = exim_openssl_options_size;
1476while (last > first)
1477 {
1478 int middle = (first + last)/2;
1479 int c = Ustrcmp(name, exim_openssl_options[middle].name);
1480 if (c == 0)
1481 {
1482 *value = exim_openssl_options[middle].value;
1483 return TRUE;
1484 }
1485 else if (c > 0)
1486 first = middle + 1;
1487 else
1488 last = middle;
1489 }
1490return FALSE;
1491}
1492
1493
1494
1495
1496/*************************************************
1497* OpenSSL option parsing logic *
1498*************************************************/
1499
1500/* OpenSSL has a number of compatibility options which an administrator might
1501reasonably wish to set. Interpret a list similarly to decode_bits(), so that
1502we look like log_selector.
1503
1504Arguments:
1505 option_spec the administrator-supplied string of options
1506 results ptr to long storage for the options bitmap
1507Returns success or failure
1508*/
1509
1510BOOL
1511tls_openssl_options_parse(uschar *option_spec, long *results)
1512{
1513long result, item;
1514uschar *s, *end;
1515uschar keep_c;
1516BOOL adding, item_parsed;
1517
0e944a0d 1518result = 0L;
da3ad30d
PP
1519/* Prior to 4.78 we or'd in SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; removed
1520 * from default because it increases BEAST susceptibility. */
77bb000f
PP
1521
1522if (option_spec == NULL)
1523 {
1524 *results = result;
1525 return TRUE;
1526 }
1527
1528for (s=option_spec; *s != '\0'; /**/)
1529 {
1530 while (isspace(*s)) ++s;
1531 if (*s == '\0')
1532 break;
1533 if (*s != '+' && *s != '-')
1534 {
1535 DEBUG(D_tls) debug_printf("malformed openssl option setting: "
0e944a0d 1536 "+ or - expected but found \"%s\"\n", s);
77bb000f
PP
1537 return FALSE;
1538 }
1539 adding = *s++ == '+';
1540 for (end = s; (*end != '\0') && !isspace(*end); ++end) /**/ ;
1541 keep_c = *end;
1542 *end = '\0';
1543 item_parsed = tls_openssl_one_option_parse(s, &item);
1544 if (!item_parsed)
1545 {
0e944a0d 1546 DEBUG(D_tls) debug_printf("openssl option setting unrecognised: \"%s\"\n", s);
77bb000f
PP
1547 return FALSE;
1548 }
1549 DEBUG(D_tls) debug_printf("openssl option, %s from %lx: %lx (%s)\n",
1550 adding ? "adding" : "removing", result, item, s);
1551 if (adding)
1552 result |= item;
1553 else
1554 result &= ~item;
1555 *end = keep_c;
1556 s = end;
1557 }
1558
1559*results = result;
1560return TRUE;
1561}
1562
059ec3d9 1563/* End of tls-openssl.c */