debug: fix openssl output
[exim.git] / src / src / tls-openssl.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2019 */
6 /* Copyright (c) The Exim Maintainers 2020 */
7 /* See the file NOTICE for conditions of use and distribution. */
8
9 /* Portions Copyright (c) The OpenSSL Project 1999 */
10
11 /* This module provides the TLS (aka SSL) support for Exim using the OpenSSL
12 library. It is #included into the tls.c file when that library is used. The
13 code herein is based on a patch that was originally contributed by Steve
14 Haslam. It was adapted from stunnel, a GPL program by Michal Trojnara.
15
16 No cryptographic code is included in Exim. All this module does is to call
17 functions from the OpenSSL library. */
18
19
20 /* Heading stuff */
21
22 #include <openssl/lhash.h>
23 #include <openssl/ssl.h>
24 #include <openssl/err.h>
25 #include <openssl/rand.h>
26 #ifndef OPENSSL_NO_ECDH
27 # include <openssl/ec.h>
28 #endif
29 #ifndef DISABLE_OCSP
30 # include <openssl/ocsp.h>
31 #endif
32 #ifdef SUPPORT_DANE
33 # include "danessl.h"
34 #endif
35
36
37 #ifndef DISABLE_OCSP
38 # define EXIM_OCSP_SKEW_SECONDS (300L)
39 # define EXIM_OCSP_MAX_AGE (-1L)
40 #endif
41
42 #if OPENSSL_VERSION_NUMBER >= 0x0090806fL && !defined(OPENSSL_NO_TLSEXT)
43 # define EXIM_HAVE_OPENSSL_TLSEXT
44 #endif
45 #if OPENSSL_VERSION_NUMBER >= 0x00908000L
46 # define EXIM_HAVE_RSA_GENKEY_EX
47 #endif
48 #if OPENSSL_VERSION_NUMBER >= 0x10100000L
49 # define EXIM_HAVE_OCSP_RESP_COUNT
50 # define OPENSSL_AUTO_SHA256
51 #else
52 # define EXIM_HAVE_EPHEM_RSA_KEX
53 # define EXIM_HAVE_RAND_PSEUDO
54 #endif
55 #if (OPENSSL_VERSION_NUMBER >= 0x0090800fL) && !defined(OPENSSL_NO_SHA256)
56 # define EXIM_HAVE_SHA256
57 #endif
58
59 /* X509_check_host provides sane certificate hostname checking, but was added
60 to OpenSSL late, after other projects forked off the code-base.  So in
61 addition to guarding against the base version number, beware that LibreSSL
62 does not (at this time) support this function.
63
64 If LibreSSL gains a different API, perhaps via libtls, then we'll probably
65 opt to disentangle and ask a LibreSSL user to provide glue for a third
66 crypto provider for libtls instead of continuing to tie the OpenSSL glue
67 into even twistier knots.  If LibreSSL gains the same API, we can just
68 change this guard and punt the issue for a while longer. */
69
70 #ifndef LIBRESSL_VERSION_NUMBER
71 # if OPENSSL_VERSION_NUMBER >= 0x010100000L
72 #  define EXIM_HAVE_OPENSSL_CHECKHOST
73 #  define EXIM_HAVE_OPENSSL_DH_BITS
74 #  define EXIM_HAVE_OPENSSL_TLS_METHOD
75 #  define EXIM_HAVE_OPENSSL_KEYLOG
76 #  define EXIM_HAVE_OPENSSL_CIPHER_GET_ID
77 #  define EXIM_HAVE_SESSION_TICKET
78 #  define EXIM_HAVE_OPESSL_TRACE
79 #  define EXIM_HAVE_OPESSL_GET0_SERIAL
80 #  ifndef DISABLE_OCSP
81 #   define EXIM_HAVE_OCSP
82 #  endif
83 # else
84 #  define EXIM_NEED_OPENSSL_INIT
85 # endif
86 # if OPENSSL_VERSION_NUMBER >= 0x010000000L \
87     && (OPENSSL_VERSION_NUMBER & 0x0000ff000L) >= 0x000002000L
88 #  define EXIM_HAVE_OPENSSL_CHECKHOST
89 # endif
90 #endif
91
92 #if !defined(LIBRESSL_VERSION_NUMBER) \
93     || LIBRESSL_VERSION_NUMBER >= 0x20010000L
94 # if !defined(OPENSSL_NO_ECDH)
95 #  if OPENSSL_VERSION_NUMBER >= 0x0090800fL
96 #   define EXIM_HAVE_ECDH
97 #  endif
98 #  if OPENSSL_VERSION_NUMBER >= 0x10002000L
99 #   define EXIM_HAVE_OPENSSL_EC_NIST2NID
100 #  endif
101 # endif
102 #endif
103
104 #ifndef LIBRESSL_VERSION_NUMBER
105 # if OPENSSL_VERSION_NUMBER >= 0x010101000L
106 #  define OPENSSL_HAVE_KEYLOG_CB
107 #  define OPENSSL_HAVE_NUM_TICKETS
108 #  define EXIM_HAVE_OPENSSL_CIPHER_STD_NAME
109 # else
110 #  define OPENSSL_BAD_SRVR_OURCERT
111 # endif
112 #endif
113
114 #if !defined(EXIM_HAVE_OPENSSL_TLSEXT) && !defined(DISABLE_OCSP)
115 # warning "OpenSSL library version too old; define DISABLE_OCSP in Makefile"
116 # define DISABLE_OCSP
117 #endif
118
119 #ifndef DISABLE_TLS_RESUME
120 # if OPENSSL_VERSION_NUMBER < 0x0101010L
121 #  error OpenSSL version too old for session-resumption
122 # endif
123 #endif
124
125 #ifdef EXIM_HAVE_OPENSSL_CHECKHOST
126 # include <openssl/x509v3.h>
127 #endif
128
129 #ifndef EXIM_HAVE_OPENSSL_CIPHER_STD_NAME
130 # ifndef EXIM_HAVE_OPENSSL_CIPHER_GET_ID
131 #  define SSL_CIPHER_get_id(c) (c->id)
132 # endif
133 # ifndef MACRO_PREDEF
134 #  include "tls-cipher-stdname.c"
135 # endif
136 #endif
137
138 /*************************************************
139 *        OpenSSL option parse                    *
140 *************************************************/
141
142 typedef struct exim_openssl_option {
143   uschar *name;
144   long    value;
145 } exim_openssl_option;
146 /* We could use a macro to expand, but we need the ifdef and not all the
147 options document which version they were introduced in.  Policylet: include
148 all options unless explicitly for DTLS, let the administrator choose which
149 to apply.
150
151 This list is current as of:
152   ==>  1.1.1c  <==
153
154 XXX could we autobuild this list, as with predefined-macros?
155 Seems just parsing ssl.h for SSL_OP_.* would be enough (except to exclude DTLS).
156 Also allow a numeric literal?
157 */
158 static exim_openssl_option exim_openssl_options[] = {
159 /* KEEP SORTED ALPHABETICALLY! */
160 #ifdef SSL_OP_ALL
161   { US"all", (long) SSL_OP_ALL },
162 #endif
163 #ifdef SSL_OP_ALLOW_NO_DHE_KEX
164   { US"allow_no_dhe_kex", SSL_OP_ALLOW_NO_DHE_KEX },
165 #endif
166 #ifdef SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION
167   { US"allow_unsafe_legacy_renegotiation", SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION },
168 #endif
169 #ifdef SSL_OP_CIPHER_SERVER_PREFERENCE
170   { US"cipher_server_preference", SSL_OP_CIPHER_SERVER_PREFERENCE },
171 #endif
172 #ifdef SSL_OP_CRYPTOPRO_TLSEXT_BUG
173   { US"cryptopro_tlsext_bug", SSL_OP_CRYPTOPRO_TLSEXT_BUG },
174 #endif
175 #ifdef SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
176   { US"dont_insert_empty_fragments", SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS },
177 #endif
178 #ifdef SSL_OP_ENABLE_MIDDLEBOX_COMPAT
179   { US"enable_middlebox_compat", SSL_OP_ENABLE_MIDDLEBOX_COMPAT },
180 #endif
181 #ifdef SSL_OP_EPHEMERAL_RSA
182   { US"ephemeral_rsa", SSL_OP_EPHEMERAL_RSA },
183 #endif
184 #ifdef SSL_OP_LEGACY_SERVER_CONNECT
185   { US"legacy_server_connect", SSL_OP_LEGACY_SERVER_CONNECT },
186 #endif
187 #ifdef SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER
188   { US"microsoft_big_sslv3_buffer", SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER },
189 #endif
190 #ifdef SSL_OP_MICROSOFT_SESS_ID_BUG
191   { US"microsoft_sess_id_bug", SSL_OP_MICROSOFT_SESS_ID_BUG },
192 #endif
193 #ifdef SSL_OP_MSIE_SSLV2_RSA_PADDING
194   { US"msie_sslv2_rsa_padding", SSL_OP_MSIE_SSLV2_RSA_PADDING },
195 #endif
196 #ifdef SSL_OP_NETSCAPE_CHALLENGE_BUG
197   { US"netscape_challenge_bug", SSL_OP_NETSCAPE_CHALLENGE_BUG },
198 #endif
199 #ifdef SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG
200   { US"netscape_reuse_cipher_change_bug", SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG },
201 #endif
202 #ifdef SSL_OP_NO_ANTI_REPLAY
203   { US"no_anti_replay", SSL_OP_NO_ANTI_REPLAY },
204 #endif
205 #ifdef SSL_OP_NO_COMPRESSION
206   { US"no_compression", SSL_OP_NO_COMPRESSION },
207 #endif
208 #ifdef SSL_OP_NO_ENCRYPT_THEN_MAC
209   { US"no_encrypt_then_mac", SSL_OP_NO_ENCRYPT_THEN_MAC },
210 #endif
211 #ifdef SSL_OP_NO_RENEGOTIATION
212   { US"no_renegotiation", SSL_OP_NO_RENEGOTIATION },
213 #endif
214 #ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
215   { US"no_session_resumption_on_renegotiation", SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION },
216 #endif
217 #ifdef SSL_OP_NO_SSLv2
218   { US"no_sslv2", SSL_OP_NO_SSLv2 },
219 #endif
220 #ifdef SSL_OP_NO_SSLv3
221   { US"no_sslv3", SSL_OP_NO_SSLv3 },
222 #endif
223 #ifdef SSL_OP_NO_TICKET
224   { US"no_ticket", SSL_OP_NO_TICKET },
225 #endif
226 #ifdef SSL_OP_NO_TLSv1
227   { US"no_tlsv1", SSL_OP_NO_TLSv1 },
228 #endif
229 #ifdef SSL_OP_NO_TLSv1_1
230 #if SSL_OP_NO_TLSv1_1 == 0x00000400L
231   /* Error in chosen value in 1.0.1a; see first item in CHANGES for 1.0.1b */
232 #warning OpenSSL 1.0.1a uses a bad value for SSL_OP_NO_TLSv1_1, ignoring
233 #else
234   { US"no_tlsv1_1", SSL_OP_NO_TLSv1_1 },
235 #endif
236 #endif
237 #ifdef SSL_OP_NO_TLSv1_2
238   { US"no_tlsv1_2", SSL_OP_NO_TLSv1_2 },
239 #endif
240 #ifdef SSL_OP_NO_TLSv1_3
241   { US"no_tlsv1_3", SSL_OP_NO_TLSv1_3 },
242 #endif
243 #ifdef SSL_OP_PRIORITIZE_CHACHA
244   { US"prioritize_chacha", SSL_OP_PRIORITIZE_CHACHA },
245 #endif
246 #ifdef SSL_OP_SAFARI_ECDHE_ECDSA_BUG
247   { US"safari_ecdhe_ecdsa_bug", SSL_OP_SAFARI_ECDHE_ECDSA_BUG },
248 #endif
249 #ifdef SSL_OP_SINGLE_DH_USE
250   { US"single_dh_use", SSL_OP_SINGLE_DH_USE },
251 #endif
252 #ifdef SSL_OP_SINGLE_ECDH_USE
253   { US"single_ecdh_use", SSL_OP_SINGLE_ECDH_USE },
254 #endif
255 #ifdef SSL_OP_SSLEAY_080_CLIENT_DH_BUG
256   { US"ssleay_080_client_dh_bug", SSL_OP_SSLEAY_080_CLIENT_DH_BUG },
257 #endif
258 #ifdef SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG
259   { US"sslref2_reuse_cert_type_bug", SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG },
260 #endif
261 #ifdef SSL_OP_TLS_BLOCK_PADDING_BUG
262   { US"tls_block_padding_bug", SSL_OP_TLS_BLOCK_PADDING_BUG },
263 #endif
264 #ifdef SSL_OP_TLS_D5_BUG
265   { US"tls_d5_bug", SSL_OP_TLS_D5_BUG },
266 #endif
267 #ifdef SSL_OP_TLS_ROLLBACK_BUG
268   { US"tls_rollback_bug", SSL_OP_TLS_ROLLBACK_BUG },
269 #endif
270 #ifdef SSL_OP_TLSEXT_PADDING
271   { US"tlsext_padding", SSL_OP_TLSEXT_PADDING },
272 #endif
273 };
274
275 #ifndef MACRO_PREDEF
276 static int exim_openssl_options_size = nelem(exim_openssl_options);
277 static long init_options = 0;
278 #endif
279
280 #ifdef MACRO_PREDEF
281 void
282 options_tls(void)
283 {
284 uschar buf[64];
285
286 for (struct exim_openssl_option * o = exim_openssl_options;
287      o < exim_openssl_options + nelem(exim_openssl_options); o++)
288   {
289   /* Trailing X is workaround for problem with _OPT_OPENSSL_NO_TLSV1
290   being a ".ifdef _OPT_OPENSSL_NO_TLSV1_3" match */
291
292   spf(buf, sizeof(buf), US"_OPT_OPENSSL_%T_X", o->name);
293   builtin_macro_create(buf);
294   }
295
296 # ifndef DISABLE_TLS_RESUME
297 builtin_macro_create_var(US"_RESUME_DECODE", RESUME_DECODE_STRING );
298 # endif
299 # ifdef SSL_OP_NO_TLSv1_3
300 builtin_macro_create(US"_HAVE_TLS1_3");
301 # endif
302 # ifdef OPENSSL_BAD_SRVR_OURCERT
303 builtin_macro_create(US"_TLS_BAD_MULTICERT_IN_OURCERT");
304 # endif
305 # ifdef EXIM_HAVE_OCSP
306 builtin_macro_create(US"_HAVE_TLS_OCSP");
307 builtin_macro_create(US"_HAVE_TLS_OCSP_LIST");
308 # endif
309 }
310 #else
311
312 /******************************************************************************/
313
314 /* Structure for collecting random data for seeding. */
315
316 typedef struct randstuff {
317   struct timeval tv;
318   pid_t          p;
319 } randstuff;
320
321 /* Local static variables */
322
323 static BOOL client_verify_callback_called = FALSE;
324 static BOOL server_verify_callback_called = FALSE;
325 static const uschar *sid_ctx = US"exim";
326
327 /* We have three different contexts to care about.
328
329 Simple case: client, `client_ctx`
330  As a client, we can be doing a callout or cut-through delivery while receiving
331  a message.  So we have a client context, which should have options initialised
332  from the SMTP Transport.  We may also concurrently want to make TLS connections
333  to utility daemons, so client-contexts are allocated and passed around in call
334  args rather than using a gobal.
335
336 Server:
337  There are two cases: with and without ServerNameIndication from the client.
338  Given TLS SNI, we can be using different keys, certs and various other
339  configuration settings, because they're re-expanded with $tls_sni set.  This
340  allows vhosting with TLS.  This SNI is sent in the handshake.
341  A client might not send SNI, so we need a fallback, and an initial setup too.
342  So as a server, we start out using `server_ctx`.
343  If SNI is sent by the client, then we as server, mid-negotiation, try to clone
344  `server_sni` from `server_ctx` and then initialise settings by re-expanding
345  configuration.
346 */
347
348 typedef struct {
349   SSL_CTX *     ctx;
350   SSL *         ssl;
351   gstring *     corked;
352 } exim_openssl_client_tls_ctx;
353
354
355 /* static SSL_CTX *server_ctx = NULL; */
356 /* static SSL     *server_ssl = NULL; */
357
358 #ifdef EXIM_HAVE_OPENSSL_TLSEXT
359 static SSL_CTX *server_sni = NULL;
360 #endif
361
362 static char ssl_errstring[256];
363
364 static int  ssl_session_timeout = 7200;         /* Two hours */
365 static BOOL client_verify_optional = FALSE;
366 static BOOL server_verify_optional = FALSE;
367
368 static BOOL reexpand_tls_files_for_sni = FALSE;
369
370
371 typedef struct ocsp_resp {
372   struct ocsp_resp *    next;
373   OCSP_RESPONSE *       resp;
374 } ocsp_resplist;
375
376 typedef struct exim_openssl_state {
377   exim_tlslib_state     lib_state;
378 #define lib_ctx                 libdata0
379 #define lib_ssl                 libdata1
380
381   tls_support * tlsp;
382   uschar *      certificate;
383   uschar *      privatekey;
384   BOOL          is_server;
385 #ifndef DISABLE_OCSP
386   STACK_OF(X509) *verify_stack;         /* chain for verifying the proof */
387   union {
388     struct {
389       uschar        *file;
390       const uschar  *file_expanded;
391       ocsp_resplist *olist;
392     } server;
393     struct {
394       X509_STORE    *verify_store;      /* non-null if status requested */
395       BOOL          verify_required;
396     } client;
397   } u_ocsp;
398 #endif
399   uschar *      dhparam;
400   /* these are cached from first expand */
401   uschar *      server_cipher_list;
402   /* only passed down to tls_error: */
403   host_item *   host;
404   const uschar * verify_cert_hostnames;
405 #ifndef DISABLE_EVENT
406   uschar *      event_action;
407 #endif
408 } exim_openssl_state_st;
409
410 /* should figure out a cleanup of API to handle state preserved per
411 implementation, for various reasons, which can be void * in the APIs.
412 For now, we hack around it. */
413 exim_openssl_state_st *client_static_state = NULL;      /*XXX should not use static; multiple concurrent clients! */
414 exim_openssl_state_st state_server = {.is_server = TRUE};
415
416 static int
417 setup_certs(SSL_CTX *sctx, uschar *certs, uschar *crl, host_item *host,
418     uschar ** errstr );
419
420 /* Callbacks */
421 #ifdef EXIM_HAVE_OPENSSL_TLSEXT
422 static int tls_servername_cb(SSL *s, int *ad ARG_UNUSED, void *arg);
423 #endif
424 #ifndef DISABLE_OCSP
425 static int tls_server_stapling_cb(SSL *s, void *arg);
426 #endif
427
428
429
430 /* Daemon-called, before every connection, key create/rotate */
431 #ifndef DISABLE_TLS_RESUME
432 static void tk_init(void);
433 static int tls_exdata_idx = -1;
434 #endif
435
436 static void
437 tls_per_lib_daemon_tick(void)
438 {
439 #ifndef DISABLE_TLS_RESUME
440 tk_init();
441 #endif
442 }
443
444 /* Called once at daemon startup */
445
446 static void
447 tls_per_lib_daemon_init(void)
448 {
449 tls_daemon_creds_reload();
450 }
451
452
453 /*************************************************
454 *               Handle TLS error                 *
455 *************************************************/
456
457 /* Called from lots of places when errors occur before actually starting to do
458 the TLS handshake, that is, while the session is still in clear. Always returns
459 DEFER for a server and FAIL for a client so that most calls can use "return
460 tls_error(...)" to do this processing and then give an appropriate return. A
461 single function is used for both server and client, because it is called from
462 some shared functions.
463
464 Argument:
465   prefix    text to include in the logged error
466   host      NULL if setting up a server;
467             the connected host if setting up a client
468   msg       error message or NULL if we should ask OpenSSL
469   errstr    pointer to output error message
470
471 Returns:    OK/DEFER/FAIL
472 */
473
474 static int
475 tls_error(uschar * prefix, const host_item * host, uschar * msg, uschar ** errstr)
476 {
477 if (!msg)
478   {
479   ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
480   msg = US ssl_errstring;
481   }
482
483 msg = string_sprintf("(%s): %s", prefix, msg);
484 DEBUG(D_tls) debug_printf("TLS error '%s'\n", msg);
485 if (errstr) *errstr = msg;
486 return host ? FAIL : DEFER;
487 }
488
489
490
491 /**************************************************
492 * General library initalisation                   *
493 **************************************************/
494
495 static BOOL
496 lib_rand_init(void * addr)
497 {
498 randstuff r;
499 if (!RAND_status()) return TRUE;
500
501 gettimeofday(&r.tv, NULL);
502 r.p = getpid();
503 RAND_seed(US (&r), sizeof(r));
504 RAND_seed(US big_buffer, big_buffer_size);
505 if (addr) RAND_seed(US addr, sizeof(addr));
506
507 return RAND_status();
508 }
509
510
511 static void
512 tls_openssl_init(void)
513 {
514 static BOOL once = FALSE;
515 if (once) return;
516 once = TRUE;
517
518 #ifdef EXIM_NEED_OPENSSL_INIT
519 SSL_load_error_strings();          /* basic set up */
520 OpenSSL_add_ssl_algorithms();
521 #endif
522
523 #if defined(EXIM_HAVE_SHA256) && !defined(OPENSSL_AUTO_SHA256)
524 /* SHA256 is becoming ever more popular. This makes sure it gets added to the
525 list of available digests. */
526 EVP_add_digest(EVP_sha256());
527 #endif
528
529 (void) lib_rand_init(NULL);
530 (void) tls_openssl_options_parse(openssl_options, &init_options);
531 }
532
533
534
535 /*************************************************
536 *                Initialize for DH               *
537 *************************************************/
538
539 /* If dhparam is set, expand it, and load up the parameters for DH encryption.
540
541 Arguments:
542   sctx      The current SSL CTX (inbound or outbound)
543   dhparam   DH parameter file or fixed parameter identity string
544   host      connected host, if client; NULL if server
545   errstr    error string pointer
546
547 Returns:    TRUE if OK (nothing to set up, or setup worked)
548 */
549
550 static BOOL
551 init_dh(SSL_CTX *sctx, uschar *dhparam, const host_item *host, uschar ** errstr)
552 {
553 BIO *bio;
554 DH *dh;
555 uschar *dhexpanded;
556 const char *pem;
557 int dh_bitsize;
558
559 if (!expand_check(dhparam, US"tls_dhparam", &dhexpanded, errstr))
560   return FALSE;
561
562 if (!dhexpanded || !*dhexpanded)
563   bio = BIO_new_mem_buf(CS std_dh_prime_default(), -1);
564 else if (dhexpanded[0] == '/')
565   {
566   if (!(bio = BIO_new_file(CS dhexpanded, "r")))
567     {
568     tls_error(string_sprintf("could not read dhparams file %s", dhexpanded),
569           host, US strerror(errno), errstr);
570     return FALSE;
571     }
572   }
573 else
574   {
575   if (Ustrcmp(dhexpanded, "none") == 0)
576     {
577     DEBUG(D_tls) debug_printf("Requested no DH parameters.\n");
578     return TRUE;
579     }
580
581   if (!(pem = std_dh_prime_named(dhexpanded)))
582     {
583     tls_error(string_sprintf("Unknown standard DH prime \"%s\"", dhexpanded),
584         host, US strerror(errno), errstr);
585     return FALSE;
586     }
587   bio = BIO_new_mem_buf(CS pem, -1);
588   }
589
590 if (!(dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL)))
591   {
592   BIO_free(bio);
593   tls_error(string_sprintf("Could not read tls_dhparams \"%s\"", dhexpanded),
594       host, NULL, errstr);
595   return FALSE;
596   }
597
598 /* note: our default limit of 2236 is not a multiple of 8; the limit comes from
599  * an NSS limit, and the GnuTLS APIs handle bit-sizes fine, so we went with
600  * 2236.  But older OpenSSL can only report in bytes (octets), not bits.
601  * If someone wants to dance at the edge, then they can raise the limit or use
602  * current libraries. */
603 #ifdef EXIM_HAVE_OPENSSL_DH_BITS
604 /* Added in commit 26c79d5641d; `git describe --contains` says OpenSSL_1_1_0-pre1~1022
605  * This predates OpenSSL_1_1_0 (before a, b, ...) so is in all 1.1.0 */
606 dh_bitsize = DH_bits(dh);
607 #else
608 dh_bitsize = 8 * DH_size(dh);
609 #endif
610
611 /* Even if it is larger, we silently return success rather than cause things
612  * to fail out, so that a too-large DH will not knock out all TLS; it's a
613  * debatable choice. */
614 if (dh_bitsize > tls_dh_max_bits)
615   {
616   DEBUG(D_tls)
617     debug_printf("dhparams file %d bits, is > tls_dh_max_bits limit of %d\n",
618         dh_bitsize, tls_dh_max_bits);
619   }
620 else
621   {
622   SSL_CTX_set_tmp_dh(sctx, dh);
623   DEBUG(D_tls)
624     debug_printf("Diffie-Hellman initialized from %s with %d-bit prime\n",
625       dhexpanded ? dhexpanded : US"default", dh_bitsize);
626   }
627
628 DH_free(dh);
629 BIO_free(bio);
630
631 return TRUE;
632 }
633
634
635
636
637 /*************************************************
638 *               Initialize for ECDH              *
639 *************************************************/
640
641 /* Load parameters for ECDH encryption.
642
643 For now, we stick to NIST P-256 because: it's simple and easy to configure;
644 it avoids any patent issues that might bite redistributors; despite events in
645 the news and concerns over curve choices, we're not cryptographers, we're not
646 pretending to be, and this is "good enough" to be better than no support,
647 protecting against most adversaries.  Given another year or two, there might
648 be sufficient clarity about a "right" way forward to let us make an informed
649 decision, instead of a knee-jerk reaction.
650
651 Longer-term, we should look at supporting both various named curves and
652 external files generated with "openssl ecparam", much as we do for init_dh().
653 We should also support "none" as a value, to explicitly avoid initialisation.
654
655 Patches welcome.
656
657 Arguments:
658   sctx      The current SSL CTX (inbound or outbound)
659   host      connected host, if client; NULL if server
660   errstr    error string pointer
661
662 Returns:    TRUE if OK (nothing to set up, or setup worked)
663 */
664
665 static BOOL
666 init_ecdh(SSL_CTX * sctx, host_item * host, uschar ** errstr)
667 {
668 #ifdef OPENSSL_NO_ECDH
669 return TRUE;
670 #else
671
672 EC_KEY * ecdh;
673 uschar * exp_curve;
674 int nid;
675 BOOL rv;
676
677 if (host)       /* No ECDH setup for clients, only for servers */
678   return TRUE;
679
680 # ifndef EXIM_HAVE_ECDH
681 DEBUG(D_tls)
682   debug_printf("No OpenSSL API to define ECDH parameters, skipping\n");
683 return TRUE;
684 # else
685
686 if (!expand_check(tls_eccurve, US"tls_eccurve", &exp_curve, errstr))
687   return FALSE;
688 if (!exp_curve || !*exp_curve)
689   return TRUE;
690
691 /* "auto" needs to be handled carefully.
692  * OpenSSL <  1.0.2: we do not select anything, but fallback to prime256v1
693  * OpenSSL <  1.1.0: we have to call SSL_CTX_set_ecdh_auto
694  *                   (openssl/ssl.h defines SSL_CTRL_SET_ECDH_AUTO)
695  * OpenSSL >= 1.1.0: we do not set anything, the libray does autoselection
696  *                   https://github.com/openssl/openssl/commit/fe6ef2472db933f01b59cad82aa925736935984b
697  */
698 if (Ustrcmp(exp_curve, "auto") == 0)
699   {
700 #if OPENSSL_VERSION_NUMBER < 0x10002000L
701   DEBUG(D_tls) debug_printf(
702     "ECDH OpenSSL < 1.0.2: temp key parameter settings: overriding \"auto\" with \"prime256v1\"\n");
703   exp_curve = US"prime256v1";
704 #else
705 # if defined SSL_CTRL_SET_ECDH_AUTO
706   DEBUG(D_tls) debug_printf(
707     "ECDH OpenSSL 1.0.2+: temp key parameter settings: autoselection\n");
708   SSL_CTX_set_ecdh_auto(sctx, 1);
709   return TRUE;
710 # else
711   DEBUG(D_tls) debug_printf(
712     "ECDH OpenSSL 1.1.0+: temp key parameter settings: default selection\n");
713   return TRUE;
714 # endif
715 #endif
716   }
717
718 DEBUG(D_tls) debug_printf("ECDH: curve '%s'\n", exp_curve);
719 if (  (nid = OBJ_sn2nid       (CCS exp_curve)) == NID_undef
720 #   ifdef EXIM_HAVE_OPENSSL_EC_NIST2NID
721    && (nid = EC_curve_nist2nid(CCS exp_curve)) == NID_undef
722 #   endif
723    )
724   {
725   tls_error(string_sprintf("Unknown curve name tls_eccurve '%s'", exp_curve),
726     host, NULL, errstr);
727   return FALSE;
728   }
729
730 if (!(ecdh = EC_KEY_new_by_curve_name(nid)))
731   {
732   tls_error(US"Unable to create ec curve", host, NULL, errstr);
733   return FALSE;
734   }
735
736 /* The "tmp" in the name here refers to setting a temporary key
737 not to the stability of the interface. */
738
739 if ((rv = SSL_CTX_set_tmp_ecdh(sctx, ecdh) == 0))
740   tls_error(string_sprintf("Error enabling '%s' curve", exp_curve), host, NULL, errstr);
741 else
742   DEBUG(D_tls) debug_printf("ECDH: enabled '%s' curve\n", exp_curve);
743
744 EC_KEY_free(ecdh);
745 return !rv;
746
747 # endif /*EXIM_HAVE_ECDH*/
748 #endif /*OPENSSL_NO_ECDH*/
749 }
750
751
752
753 /*************************************************
754 *        Expand key and cert file specs          *
755 *************************************************/
756
757 /*
758 Arguments:
759   s          SSL connection (not used)
760   export     not used
761   keylength  keylength
762
763 Returns:     pointer to generated key
764 */
765
766 static RSA *
767 rsa_callback(SSL *s, int export, int keylength)
768 {
769 RSA *rsa_key;
770 #ifdef EXIM_HAVE_RSA_GENKEY_EX
771 BIGNUM *bn = BN_new();
772 #endif
773
774 DEBUG(D_tls) debug_printf("Generating %d bit RSA key...\n", keylength);
775
776 #ifdef EXIM_HAVE_RSA_GENKEY_EX
777 if (  !BN_set_word(bn, (unsigned long)RSA_F4)
778    || !(rsa_key = RSA_new())
779    || !RSA_generate_key_ex(rsa_key, keylength, bn, NULL)
780    )
781 #else
782 if (!(rsa_key = RSA_generate_key(keylength, RSA_F4, NULL, NULL)))
783 #endif
784
785   {
786   ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
787   log_write(0, LOG_MAIN|LOG_PANIC, "TLS error (RSA_generate_key): %s",
788     ssl_errstring);
789   return NULL;
790   }
791 return rsa_key;
792 }
793
794
795
796 /* Create and install a selfsigned certificate, for use in server mode */
797 /*XXX we could arrange to call this during prelo for a null tls_certificate option.
798 The normal cache inval + relo will suffice.
799 Just need a timer for inval. */
800
801 static int
802 tls_install_selfsign(SSL_CTX * sctx, uschar ** errstr)
803 {
804 X509 * x509 = NULL;
805 EVP_PKEY * pkey;
806 RSA * rsa;
807 X509_NAME * name;
808 uschar * where;
809
810 DEBUG(D_tls) debug_printf("TLS: generating selfsigned server cert\n");
811 where = US"allocating pkey";
812 if (!(pkey = EVP_PKEY_new()))
813   goto err;
814
815 where = US"allocating cert";
816 if (!(x509 = X509_new()))
817   goto err;
818
819 where = US"generating pkey";
820 if (!(rsa = rsa_callback(NULL, 0, 2048)))
821   goto err;
822
823 where = US"assigning pkey";
824 if (!EVP_PKEY_assign_RSA(pkey, rsa))
825   goto err;
826
827 X509_set_version(x509, 2);                              /* N+1 - version 3 */
828 ASN1_INTEGER_set(X509_get_serialNumber(x509), 1);
829 X509_gmtime_adj(X509_get_notBefore(x509), 0);
830 X509_gmtime_adj(X509_get_notAfter(x509), (long)2 * 60 * 60);    /* 2 hour */
831 X509_set_pubkey(x509, pkey);
832
833 name = X509_get_subject_name(x509);
834 X509_NAME_add_entry_by_txt(name, "C",
835                           MBSTRING_ASC, CUS "UK", -1, -1, 0);
836 X509_NAME_add_entry_by_txt(name, "O",
837                           MBSTRING_ASC, CUS "Exim Developers", -1, -1, 0);
838 X509_NAME_add_entry_by_txt(name, "CN",
839                           MBSTRING_ASC, CUS smtp_active_hostname, -1, -1, 0);
840 X509_set_issuer_name(x509, name);
841
842 where = US"signing cert";
843 if (!X509_sign(x509, pkey, EVP_md5()))
844   goto err;
845
846 where = US"installing selfsign cert";
847 if (!SSL_CTX_use_certificate(sctx, x509))
848   goto err;
849
850 where = US"installing selfsign key";
851 if (!SSL_CTX_use_PrivateKey(sctx, pkey))
852   goto err;
853
854 return OK;
855
856 err:
857   (void) tls_error(where, NULL, NULL, errstr);
858   if (x509) X509_free(x509);
859   if (pkey) EVP_PKEY_free(pkey);
860   return DEFER;
861 }
862
863
864
865
866
867
868
869 /*************************************************
870 *           Information callback                 *
871 *************************************************/
872
873 /* The SSL library functions call this from time to time to indicate what they
874 are doing. We copy the string to the debugging output when TLS debugging has
875 been requested.
876
877 Arguments:
878   s         the SSL connection
879   where
880   ret
881
882 Returns:    nothing
883 */
884
885 static void
886 info_callback(SSL *s, int where, int ret)
887 {
888 DEBUG(D_tls)
889   {
890   const uschar * str;
891
892   if (where & SSL_ST_CONNECT)
893      str = US"SSL_connect";
894   else if (where & SSL_ST_ACCEPT)
895      str = US"SSL_accept";
896   else
897      str = US"SSL info (undefined)";
898
899   if (where & SSL_CB_LOOP)
900      debug_printf("%s: %s\n", str, SSL_state_string_long(s));
901   else if (where & SSL_CB_ALERT)
902     debug_printf("SSL3 alert %s:%s:%s\n",
903           str = where & SSL_CB_READ ? US"read" : US"write",
904           SSL_alert_type_string_long(ret), SSL_alert_desc_string_long(ret));
905   else if (where & SSL_CB_EXIT)
906     {
907     if (ret == 0)
908       debug_printf("%s: failed in %s\n", str, SSL_state_string_long(s));
909     else if (ret < 0)
910       debug_printf("%s: error in %s\n", str, SSL_state_string_long(s));
911     }
912   else if (where & SSL_CB_HANDSHAKE_START)
913      debug_printf("%s: hshake start: %s\n", str, SSL_state_string_long(s));
914   else if (where & SSL_CB_HANDSHAKE_DONE)
915      debug_printf("%s: hshake done: %s\n", str, SSL_state_string_long(s));
916   }
917 }
918
919 #ifdef OPENSSL_HAVE_KEYLOG_CB
920 static void
921 keylog_callback(const SSL *ssl, const char *line)
922 {
923 char * filename;
924 FILE * fp;
925 DEBUG(D_tls) debug_printf("%.200s\n", line);
926 if (!(filename = getenv("SSLKEYLOGFILE"))) return;
927 if (!(fp = fopen(filename, "a"))) return;
928 fprintf(fp, "%s\n", line);
929 fclose(fp);
930 }
931 #endif
932
933
934
935
936
937 #ifndef DISABLE_EVENT
938 static int
939 verify_event(tls_support * tlsp, X509 * cert, int depth, const uschar * dn,
940   BOOL *calledp, const BOOL *optionalp, const uschar * what)
941 {
942 uschar * ev;
943 uschar * yield;
944 X509 * old_cert;
945
946 ev = tlsp == &tls_out ? client_static_state->event_action : event_action;
947 if (ev)
948   {
949   DEBUG(D_tls) debug_printf("verify_event: %s %d\n", what, depth);
950   old_cert = tlsp->peercert;
951   tlsp->peercert = X509_dup(cert);
952   /* NB we do not bother setting peerdn */
953   if ((yield = event_raise(ev, US"tls:cert", string_sprintf("%d", depth))))
954     {
955     log_write(0, LOG_MAIN, "[%s] %s verify denied by event-action: "
956                 "depth=%d cert=%s: %s",
957               tlsp == &tls_out ? deliver_host_address : sender_host_address,
958               what, depth, dn, yield);
959     *calledp = TRUE;
960     if (!*optionalp)
961       {
962       if (old_cert) tlsp->peercert = old_cert;  /* restore 1st failing cert */
963       return 1;                     /* reject (leaving peercert set) */
964       }
965     DEBUG(D_tls) debug_printf("Event-action verify failure overridden "
966       "(host in tls_try_verify_hosts)\n");
967     tlsp->verify_override = TRUE;
968     }
969   X509_free(tlsp->peercert);
970   tlsp->peercert = old_cert;
971   }
972 return 0;
973 }
974 #endif
975
976 /*************************************************
977 *        Callback for verification               *
978 *************************************************/
979
980 /* The SSL library does certificate verification if set up to do so. This
981 callback has the current yes/no state is in "state". If verification succeeded,
982 we set the certificate-verified flag. If verification failed, what happens
983 depends on whether the client is required to present a verifiable certificate
984 or not.
985
986 If verification is optional, we change the state to yes, but still log the
987 verification error. For some reason (it really would help to have proper
988 documentation of OpenSSL), this callback function then gets called again, this
989 time with state = 1.  We must take care not to set the private verified flag on
990 the second time through.
991
992 Note: this function is not called if the client fails to present a certificate
993 when asked. We get here only if a certificate has been received. Handling of
994 optional verification for this case is done when requesting SSL to verify, by
995 setting SSL_VERIFY_FAIL_IF_NO_PEER_CERT in the non-optional case.
996
997 May be called multiple times for different issues with a certificate, even
998 for a given "depth" in the certificate chain.
999
1000 Arguments:
1001   preverify_ok current yes/no state as 1/0
1002   x509ctx      certificate information.
1003   tlsp         per-direction (client vs. server) support data
1004   calledp      has-been-called flag
1005   optionalp    verification-is-optional flag
1006
1007 Returns:     0 if verification should fail, otherwise 1
1008 */
1009
1010 static int
1011 verify_callback(int preverify_ok, X509_STORE_CTX * x509ctx,
1012   tls_support * tlsp, BOOL * calledp, BOOL * optionalp)
1013 {
1014 X509 * cert = X509_STORE_CTX_get_current_cert(x509ctx);
1015 int depth = X509_STORE_CTX_get_error_depth(x509ctx);
1016 uschar dn[256];
1017
1018 if (!X509_NAME_oneline(X509_get_subject_name(cert), CS dn, sizeof(dn)))
1019   {
1020   DEBUG(D_tls) debug_printf("X509_NAME_oneline() error\n");
1021   log_write(0, LOG_MAIN, "[%s] SSL verify error: internal error",
1022     tlsp == &tls_out ? deliver_host_address : sender_host_address);
1023   return 0;
1024   }
1025 dn[sizeof(dn)-1] = '\0';
1026
1027 tlsp->verify_override = FALSE;
1028 if (preverify_ok == 0)
1029   {
1030   uschar * extra = verify_mode ? string_sprintf(" (during %c-verify for [%s])",
1031       *verify_mode, sender_host_address)
1032     : US"";
1033   log_write(0, LOG_MAIN, "[%s] SSL verify error%s: depth=%d error=%s cert=%s",
1034     tlsp == &tls_out ? deliver_host_address : sender_host_address,
1035     extra, depth,
1036     X509_verify_cert_error_string(X509_STORE_CTX_get_error(x509ctx)), dn);
1037   *calledp = TRUE;
1038   if (!*optionalp)
1039     {
1040     if (!tlsp->peercert)
1041       tlsp->peercert = X509_dup(cert);  /* record failing cert */
1042     return 0;                           /* reject */
1043     }
1044   DEBUG(D_tls) debug_printf("SSL verify failure overridden (host in "
1045     "tls_try_verify_hosts)\n");
1046   tlsp->verify_override = TRUE;
1047   }
1048
1049 else if (depth != 0)
1050   {
1051   DEBUG(D_tls) debug_printf("SSL verify ok: depth=%d SN=%s\n", depth, dn);
1052 #ifndef DISABLE_OCSP
1053   if (tlsp == &tls_out && client_static_state->u_ocsp.client.verify_store)
1054     {   /* client, wanting stapling  */
1055     /* Add the server cert's signing chain as the one
1056     for the verification of the OCSP stapled information. */
1057
1058     if (!X509_STORE_add_cert(client_static_state->u_ocsp.client.verify_store,
1059                              cert))
1060       ERR_clear_error();
1061     sk_X509_push(client_static_state->verify_stack, cert);
1062     }
1063 #endif
1064 #ifndef DISABLE_EVENT
1065     if (verify_event(tlsp, cert, depth, dn, calledp, optionalp, US"SSL"))
1066       return 0;                         /* reject, with peercert set */
1067 #endif
1068   }
1069 else
1070   {
1071   const uschar * verify_cert_hostnames;
1072
1073   if (  tlsp == &tls_out
1074      && ((verify_cert_hostnames = client_static_state->verify_cert_hostnames)))
1075         /* client, wanting hostname check */
1076     {
1077
1078 #ifdef EXIM_HAVE_OPENSSL_CHECKHOST
1079 # ifndef X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS
1080 #  define X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS 0
1081 # endif
1082 # ifndef X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS
1083 #  define X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS 0
1084 # endif
1085     int sep = 0;
1086     const uschar * list = verify_cert_hostnames;
1087     uschar * name;
1088     int rc;
1089     while ((name = string_nextinlist(&list, &sep, NULL, 0)))
1090       if ((rc = X509_check_host(cert, CCS name, 0,
1091                   X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS
1092                   | X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS,
1093                   NULL)))
1094         {
1095         if (rc < 0)
1096           {
1097           log_write(0, LOG_MAIN, "[%s] SSL verify error: internal error",
1098             tlsp == &tls_out ? deliver_host_address : sender_host_address);
1099           name = NULL;
1100           }
1101         break;
1102         }
1103     if (!name)
1104 #else
1105     if (!tls_is_name_for_cert(verify_cert_hostnames, cert))
1106 #endif
1107       {
1108       uschar * extra = verify_mode
1109         ? string_sprintf(" (during %c-verify for [%s])",
1110           *verify_mode, sender_host_address)
1111         : US"";
1112       log_write(0, LOG_MAIN,
1113         "[%s] SSL verify error%s: certificate name mismatch: DN=\"%s\" H=\"%s\"",
1114         tlsp == &tls_out ? deliver_host_address : sender_host_address,
1115         extra, dn, verify_cert_hostnames);
1116       *calledp = TRUE;
1117       if (!*optionalp)
1118         {
1119         if (!tlsp->peercert)
1120           tlsp->peercert = X509_dup(cert);      /* record failing cert */
1121         return 0;                               /* reject */
1122         }
1123       DEBUG(D_tls) debug_printf("SSL verify name failure overridden (host in "
1124         "tls_try_verify_hosts)\n");
1125       tlsp->verify_override = TRUE;
1126       }
1127     }
1128
1129 #ifndef DISABLE_EVENT
1130   if (verify_event(tlsp, cert, depth, dn, calledp, optionalp, US"SSL"))
1131     return 0;                           /* reject, with peercert set */
1132 #endif
1133
1134   DEBUG(D_tls) debug_printf("SSL%s verify ok: depth=0 SN=%s\n",
1135     *calledp ? "" : " authenticated", dn);
1136   *calledp = TRUE;
1137   }
1138
1139 return 1;   /* accept, at least for this level */
1140 }
1141
1142 static int
1143 verify_callback_client(int preverify_ok, X509_STORE_CTX *x509ctx)
1144 {
1145 return verify_callback(preverify_ok, x509ctx, &tls_out,
1146   &client_verify_callback_called, &client_verify_optional);
1147 }
1148
1149 static int
1150 verify_callback_server(int preverify_ok, X509_STORE_CTX *x509ctx)
1151 {
1152 return verify_callback(preverify_ok, x509ctx, &tls_in,
1153   &server_verify_callback_called, &server_verify_optional);
1154 }
1155
1156
1157 #ifdef SUPPORT_DANE
1158
1159 /* This gets called *by* the dane library verify callback, which interposes
1160 itself.
1161 */
1162 static int
1163 verify_callback_client_dane(int preverify_ok, X509_STORE_CTX * x509ctx)
1164 {
1165 X509 * cert = X509_STORE_CTX_get_current_cert(x509ctx);
1166 uschar dn[256];
1167 int depth = X509_STORE_CTX_get_error_depth(x509ctx);
1168 #ifndef DISABLE_EVENT
1169 BOOL dummy_called, optional = FALSE;
1170 #endif
1171
1172 if (!X509_NAME_oneline(X509_get_subject_name(cert), CS dn, sizeof(dn)))
1173   {
1174   DEBUG(D_tls) debug_printf("X509_NAME_oneline() error\n");
1175   log_write(0, LOG_MAIN, "[%s] SSL verify error: internal error",
1176     deliver_host_address);
1177   return 0;
1178   }
1179 dn[sizeof(dn)-1] = '\0';
1180
1181 DEBUG(D_tls) debug_printf("verify_callback_client_dane: %s depth %d %s\n",
1182   preverify_ok ? "ok":"BAD", depth, dn);
1183
1184 #ifndef DISABLE_EVENT
1185   if (verify_event(&tls_out, cert, depth, dn,
1186           &dummy_called, &optional, US"DANE"))
1187     return 0;                           /* reject, with peercert set */
1188 #endif
1189
1190 if (preverify_ok == 1)
1191   {
1192   tls_out.dane_verified = TRUE;
1193 #ifndef DISABLE_OCSP
1194   if (client_static_state->u_ocsp.client.verify_store)
1195     {   /* client, wanting stapling  */
1196     /* Add the server cert's signing chain as the one
1197     for the verification of the OCSP stapled information. */
1198
1199     if (!X509_STORE_add_cert(client_static_state->u_ocsp.client.verify_store,
1200                              cert))
1201       ERR_clear_error();
1202     sk_X509_push(client_static_state->verify_stack, cert);
1203     }
1204 #endif
1205   }
1206 else
1207   {
1208   int err = X509_STORE_CTX_get_error(x509ctx);
1209   DEBUG(D_tls)
1210     debug_printf(" - err %d '%s'\n", err, X509_verify_cert_error_string(err));
1211   if (err == X509_V_ERR_APPLICATION_VERIFICATION)
1212     preverify_ok = 1;
1213   }
1214 return preverify_ok;
1215 }
1216
1217 #endif  /*SUPPORT_DANE*/
1218
1219
1220 #ifndef DISABLE_OCSP
1221 /*************************************************
1222 *       Load OCSP information into state         *
1223 *************************************************/
1224 /* Called to load the server OCSP response from the given file into memory, once
1225 caller has determined this is needed.  Checks validity.  Debugs a message
1226 if invalid.
1227
1228 ASSUMES: single response, for single cert.
1229
1230 Arguments:
1231   state           various parts of session state
1232   filename        the filename putatively holding an OCSP response
1233   is_pem          file is PEM format; otherwise is DER
1234 */
1235
1236 static void
1237 ocsp_load_response(exim_openssl_state_st * state, const uschar * filename,
1238   BOOL is_pem)
1239 {
1240 BIO * bio;
1241 OCSP_RESPONSE * resp;
1242 OCSP_BASICRESP * basic_response;
1243 OCSP_SINGLERESP * single_response;
1244 ASN1_GENERALIZEDTIME * rev, * thisupd, * nextupd;
1245 STACK_OF(X509) * sk;
1246 unsigned long verify_flags;
1247 int status, reason, i;
1248
1249 DEBUG(D_tls)
1250   debug_printf("tls_ocsp_file (%s)  '%s'\n", is_pem ? "PEM" : "DER", filename);
1251
1252 if (!filename || !*filename) return;
1253
1254 ERR_clear_error();
1255 if (!(bio = BIO_new_file(CS filename, "rb")))
1256   {
1257   log_write(0, LOG_MAIN|LOG_PANIC,
1258     "Failed to open OCSP response file \"%s\": %.100s",
1259     filename, ERR_reason_error_string(ERR_get_error()));
1260   return;
1261   }
1262
1263 if (is_pem)
1264   {
1265   uschar * data, * freep;
1266   char * dummy;
1267   long len;
1268   if (!PEM_read_bio(bio, &dummy, &dummy, &data, &len))
1269     {
1270     log_write(0, LOG_MAIN|LOG_PANIC, "Failed to read PEM file \"%s\": %.100s",
1271       filename, ERR_reason_error_string(ERR_get_error()));
1272     return;
1273     }
1274   freep = data;
1275   resp = d2i_OCSP_RESPONSE(NULL, CUSS &data, len);
1276   OPENSSL_free(freep);
1277   }
1278 else
1279   resp = d2i_OCSP_RESPONSE_bio(bio, NULL);
1280 BIO_free(bio);
1281
1282 if (!resp)
1283   {
1284   log_write(0, LOG_MAIN|LOG_PANIC, "Error reading OCSP response from \"%s\": %s",
1285       filename, ERR_reason_error_string(ERR_get_error()));
1286   return;
1287   }
1288
1289 if ((status = OCSP_response_status(resp)) != OCSP_RESPONSE_STATUS_SUCCESSFUL)
1290   {
1291   DEBUG(D_tls) debug_printf("OCSP response not valid: %s (%d)\n",
1292       OCSP_response_status_str(status), status);
1293   goto bad;
1294   }
1295
1296 #ifdef notdef
1297   {
1298   BIO * bp = BIO_new_fp(debug_file, BIO_NOCLOSE);
1299   OCSP_RESPONSE_print(bp, resp, 0);  /* extreme debug: stapling content */
1300   BIO_free(bp);
1301   }
1302 #endif
1303
1304 if (!(basic_response = OCSP_response_get1_basic(resp)))
1305   {
1306   DEBUG(D_tls)
1307     debug_printf("OCSP response parse error: unable to extract basic response.\n");
1308   goto bad;
1309   }
1310
1311 sk = state->verify_stack;
1312 verify_flags = OCSP_NOVERIFY; /* check sigs, but not purpose */
1313
1314 /* May need to expose ability to adjust those flags?
1315 OCSP_NOSIGS OCSP_NOVERIFY OCSP_NOCHAIN OCSP_NOCHECKS OCSP_NOEXPLICIT
1316 OCSP_TRUSTOTHER OCSP_NOINTERN */
1317
1318 /* This does a full verify on the OCSP proof before we load it for serving
1319 up; possibly overkill - just date-checks might be nice enough.
1320
1321 OCSP_basic_verify takes a "store" arg, but does not
1322 use it for the chain verification, which is all we do
1323 when OCSP_NOVERIFY is set.  The content from the wire
1324 "basic_response" and a cert-stack "sk" are all that is used.
1325
1326 We have a stack, loaded in setup_certs() if tls_verify_certificates
1327 was a file (not a directory, or "system").  It is unfortunate we
1328 cannot used the connection context store, as that would neatly
1329 handle the "system" case too, but there seems to be no library
1330 function for getting a stack from a store.
1331 [ In OpenSSL 1.1 - ?  X509_STORE_CTX_get0_chain(ctx) ? ]
1332 We do not free the stack since it could be needed a second time for
1333 SNI handling.
1334
1335 Separately we might try to replace using OCSP_basic_verify() - which seems to not
1336 be a public interface into the OpenSSL library (there's no manual entry) -
1337 But what with?  We also use OCSP_basic_verify in the client stapling callback.
1338 And there we NEED it; we must verify that status... unless the
1339 library does it for us anyway?  */
1340
1341 if ((i = OCSP_basic_verify(basic_response, sk, NULL, verify_flags)) < 0)
1342   {
1343   DEBUG(D_tls)
1344     {
1345     ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
1346     debug_printf("OCSP response verify failure: %s\n", US ssl_errstring);
1347     }
1348   goto bad;
1349   }
1350
1351 /* Here's the simplifying assumption: there's only one response, for the
1352 one certificate we use, and nothing for anything else in a chain.  If this
1353 proves false, we need to extract a cert id from our issued cert
1354 (tls_certificate) and use that for OCSP_resp_find_status() (which finds the
1355 right cert in the stack and then calls OCSP_single_get0_status()).
1356
1357 I'm hoping to avoid reworking a bunch more of how we handle state here.
1358
1359 XXX that will change when we add support for (TLS1.3) whole-chain stapling
1360 */
1361
1362 if (!(single_response = OCSP_resp_get0(basic_response, 0)))
1363   {
1364   DEBUG(D_tls)
1365     debug_printf("Unable to get first response from OCSP basic response.\n");
1366   goto bad;
1367   }
1368
1369 status = OCSP_single_get0_status(single_response, &reason, &rev, &thisupd, &nextupd);
1370 if (status != V_OCSP_CERTSTATUS_GOOD)
1371   {
1372   DEBUG(D_tls) debug_printf("OCSP response bad cert status: %s (%d) %s (%d)\n",
1373       OCSP_cert_status_str(status), status,
1374       OCSP_crl_reason_str(reason), reason);
1375   goto bad;
1376   }
1377
1378 if (!OCSP_check_validity(thisupd, nextupd, EXIM_OCSP_SKEW_SECONDS, EXIM_OCSP_MAX_AGE))
1379   {
1380   DEBUG(D_tls) debug_printf("OCSP status invalid times.\n");
1381   goto bad;
1382   }
1383
1384 supply_response:
1385   /* Add the resp to the list used by tls_server_stapling_cb() */
1386   {
1387   ocsp_resplist ** op = &state->u_ocsp.server.olist, * oentry;
1388   while (oentry = *op)
1389     op = &oentry->next;
1390   *op = oentry = store_get(sizeof(ocsp_resplist), FALSE);
1391   oentry->next = NULL;
1392   oentry->resp = resp;
1393   }
1394 return;
1395
1396 bad:
1397   if (f.running_in_test_harness)
1398     {
1399     extern char ** environ;
1400     if (environ) for (uschar ** p = USS environ; *p; p++)
1401       if (Ustrncmp(*p, "EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK", 42) == 0)
1402         {
1403         DEBUG(D_tls) debug_printf("Supplying known bad OCSP response\n");
1404         goto supply_response;
1405         }
1406     }
1407 return;
1408 }
1409
1410
1411 static void
1412 ocsp_free_response_list(exim_openssl_state_st * cbinfo)
1413 {
1414 for (ocsp_resplist * olist = cbinfo->u_ocsp.server.olist; olist;
1415      olist = olist->next)
1416   OCSP_RESPONSE_free(olist->resp);
1417 cbinfo->u_ocsp.server.olist = NULL;
1418 }
1419 #endif  /*!DISABLE_OCSP*/
1420
1421
1422
1423
1424
1425 static int
1426 tls_add_certfile(SSL_CTX * sctx, exim_openssl_state_st * cbinfo, uschar * file,
1427   uschar ** errstr)
1428 {
1429 DEBUG(D_tls) debug_printf("tls_certificate file '%s'\n", file);
1430 if (!SSL_CTX_use_certificate_chain_file(sctx, CS file))
1431   return tls_error(string_sprintf(
1432     "SSL_CTX_use_certificate_chain_file file=%s", file),
1433       cbinfo->host, NULL, errstr);
1434 return 0;
1435 }
1436
1437 static int
1438 tls_add_pkeyfile(SSL_CTX * sctx, exim_openssl_state_st * cbinfo, uschar * file,
1439   uschar ** errstr)
1440 {
1441 DEBUG(D_tls) debug_printf("tls_privatekey file  '%s'\n", file);
1442 if (!SSL_CTX_use_PrivateKey_file(sctx, CS file, SSL_FILETYPE_PEM))
1443   return tls_error(string_sprintf(
1444     "SSL_CTX_use_PrivateKey_file file=%s", file), cbinfo->host, NULL, errstr);
1445 return 0;
1446 }
1447
1448
1449
1450
1451 /* Called once during tls_init and possibly again during TLS setup, for a
1452 new context, if Server Name Indication was used and tls_sni was seen in
1453 the certificate string.
1454
1455 Arguments:
1456   sctx            the SSL_CTX* to update
1457   state           various parts of session state
1458   errstr          error string pointer
1459
1460 Returns:          OK/DEFER/FAIL
1461 */
1462
1463 static int
1464 tls_expand_session_files(SSL_CTX * sctx, exim_openssl_state_st * state,
1465   uschar ** errstr)
1466 {
1467 uschar * expanded;
1468
1469 if (!state->certificate)
1470   {
1471   if (!state->is_server)                /* client */
1472     return OK;
1473                                         /* server */
1474   if (tls_install_selfsign(sctx, errstr) != OK)
1475     return DEFER;
1476   }
1477 else
1478   {
1479   int err;
1480
1481   if ( !reexpand_tls_files_for_sni
1482      && (  Ustrstr(state->certificate, US"tls_sni")
1483         || Ustrstr(state->certificate, US"tls_in_sni")
1484         || Ustrstr(state->certificate, US"tls_out_sni")
1485      )  )
1486     reexpand_tls_files_for_sni = TRUE;
1487
1488   if (!expand_check(state->certificate, US"tls_certificate", &expanded, errstr))
1489     return DEFER;
1490
1491   if (expanded)
1492     if (state->is_server)
1493       {
1494       const uschar * file_list = expanded;
1495       int sep = 0;
1496       uschar * file;
1497 #ifndef DISABLE_OCSP
1498       const uschar * olist = state->u_ocsp.server.file;
1499       int osep = 0;
1500       uschar * ofile;
1501       BOOL fmt_pem = FALSE;
1502
1503       if (olist)
1504         if (!expand_check(olist, US"tls_ocsp_file", USS &olist, errstr))
1505           return DEFER;
1506       if (olist && !*olist)
1507         olist = NULL;
1508
1509       if (  state->u_ocsp.server.file_expanded && olist
1510          && (Ustrcmp(olist, state->u_ocsp.server.file_expanded) == 0))
1511         {
1512         DEBUG(D_tls) debug_printf(" - value unchanged, using existing values\n");
1513         olist = NULL;
1514         }
1515       else
1516         {
1517         ocsp_free_response_list(state);
1518         state->u_ocsp.server.file_expanded = olist;
1519         }
1520 #endif
1521
1522       while (file = string_nextinlist(&file_list, &sep, NULL, 0))
1523         {
1524         if ((err = tls_add_certfile(sctx, state, file, errstr)))
1525           return err;
1526
1527 #ifndef DISABLE_OCSP
1528         if (olist)
1529           if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
1530             {
1531             if (Ustrncmp(ofile, US"PEM ", 4) == 0)
1532               {
1533               fmt_pem = TRUE;
1534               ofile += 4;
1535               }
1536             else if (Ustrncmp(ofile, US"DER ", 4) == 0)
1537               {
1538               fmt_pem = FALSE;
1539               ofile += 4;
1540               }
1541             ocsp_load_response(state, ofile, fmt_pem);
1542             }
1543           else
1544             DEBUG(D_tls) debug_printf("ran out of ocsp file list\n");
1545 #endif
1546         }
1547       }
1548     else        /* would there ever be a need for multiple client certs? */
1549       if ((err = tls_add_certfile(sctx, state, expanded, errstr)))
1550         return err;
1551
1552   if (  state->privatekey
1553      && !expand_check(state->privatekey, US"tls_privatekey", &expanded, errstr))
1554     return DEFER;
1555
1556   /* If expansion was forced to fail, key_expanded will be NULL. If the result
1557   of the expansion is an empty string, ignore it also, and assume the private
1558   key is in the same file as the certificate. */
1559
1560   if (expanded && *expanded)
1561     if (state->is_server)
1562       {
1563       const uschar * file_list = expanded;
1564       int sep = 0;
1565       uschar * file;
1566
1567       while (file = string_nextinlist(&file_list, &sep, NULL, 0))
1568         if ((err = tls_add_pkeyfile(sctx, state, file, errstr)))
1569           return err;
1570       }
1571     else        /* would there ever be a need for multiple client certs? */
1572       if ((err = tls_add_pkeyfile(sctx, state, expanded, errstr)))
1573         return err;
1574   }
1575
1576 return OK;
1577 }
1578
1579
1580
1581
1582 /**************************************************
1583 * One-time init credentials for server and client *
1584 **************************************************/
1585
1586 static int
1587 server_load_ciphers(SSL_CTX * ctx, exim_openssl_state_st * state,
1588   uschar * ciphers, uschar ** errstr)
1589 {
1590 for (uschar * s = ciphers; *s; s++ ) if (*s == '_') *s = '-';
1591 DEBUG(D_tls) debug_printf("required ciphers: %s\n", ciphers);
1592 if (!SSL_CTX_set_cipher_list(ctx, CS ciphers))
1593   return tls_error(US"SSL_CTX_set_cipher_list", NULL, NULL, errstr);
1594 state->server_cipher_list = ciphers;
1595 return OK;
1596 }
1597
1598
1599
1600 static int
1601 lib_ctx_new(SSL_CTX ** ctxp, host_item * host, uschar ** errstr)
1602 {
1603 SSL_CTX * ctx;
1604 #ifdef EXIM_HAVE_OPENSSL_TLS_METHOD
1605 if (!(ctx = SSL_CTX_new(host ? TLS_client_method() : TLS_server_method())))
1606 #else
1607 if (!(ctx = SSL_CTX_new(host ? SSLv23_client_method() : SSLv23_server_method())))
1608 #endif
1609   return tls_error(US"SSL_CTX_new", host, NULL, errstr);
1610
1611 /* Set up the information callback, which outputs if debugging is at a suitable
1612 level. */
1613
1614 DEBUG(D_tls)
1615   {
1616   SSL_CTX_set_info_callback(ctx, (void (*)())info_callback);
1617 #if defined(EXIM_HAVE_OPESSL_TRACE) && !defined(OPENSSL_NO_SSL_TRACE)
1618   /* this needs a debug build of OpenSSL */
1619   SSL_CTX_set_msg_callback(ctx, (void (*)())SSL_trace);
1620 #endif
1621 #ifdef OPENSSL_HAVE_KEYLOG_CB
1622   SSL_CTX_set_keylog_callback(ctx, (void (*)())keylog_callback);
1623 #endif
1624   }
1625
1626 /* Automatically re-try reads/writes after renegotiation. */
1627 (void) SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
1628 *ctxp = ctx;
1629 return OK;
1630 }
1631
1632
1633 static unsigned
1634 tls_server_creds_init(void)
1635 {
1636 SSL_CTX * ctx;
1637 uschar * dummy_errstr;
1638 unsigned lifetime = 0;
1639
1640 tls_openssl_init();
1641
1642 state_server.lib_state = null_tls_preload;
1643
1644 if (lib_ctx_new(&ctx, NULL, &dummy_errstr) != OK)
1645   return 0;
1646 state_server.lib_state.lib_ctx = ctx;
1647
1648 /* Preload DH params and EC curve */
1649
1650 if (opt_unset_or_noexpand(tls_dhparam))
1651   {
1652   DEBUG(D_tls) debug_printf("TLS: preloading DH params for server\n");
1653   if (init_dh(ctx, tls_dhparam, NULL, &dummy_errstr))
1654     state_server.lib_state.dh = TRUE;
1655   }
1656 if (opt_unset_or_noexpand(tls_eccurve))
1657   {
1658   DEBUG(D_tls) debug_printf("TLS: preloading ECDH curve for server\n");
1659   if (init_ecdh(ctx, NULL, &dummy_errstr))
1660     state_server.lib_state.ecdh = TRUE;
1661   }
1662
1663 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
1664 /* If we can, preload the server-side cert, key and ocsp */
1665
1666 if (  opt_set_and_noexpand(tls_certificate)
1667 # ifndef DISABLE_OCSP
1668    && opt_unset_or_noexpand(tls_ocsp_file)
1669 #endif
1670    && opt_unset_or_noexpand(tls_privatekey))
1671   {
1672   /* Set watches on the filenames.  The implementation does de-duplication
1673   so we can just blindly do them all.  */
1674
1675   if (  tls_set_watch(tls_certificate, TRUE)
1676 # ifndef DISABLE_OCSP
1677      && tls_set_watch(tls_ocsp_file, TRUE)
1678 #endif
1679      && tls_set_watch(tls_privatekey, TRUE))
1680     {
1681     state_server.certificate = tls_certificate;
1682     state_server.privatekey = tls_privatekey;
1683 #ifndef DISABLE_OCSP
1684     state_server.u_ocsp.server.file = tls_ocsp_file;
1685 #endif
1686
1687     DEBUG(D_tls) debug_printf("TLS: preloading server certs\n");
1688     if (tls_expand_session_files(ctx, &state_server, &dummy_errstr) == OK)
1689       state_server.lib_state.conn_certs = TRUE;
1690     }
1691   }
1692 else if (  !tls_certificate && !tls_privatekey
1693 # ifndef DISABLE_OCSP
1694         && !tls_ocsp_file
1695 #endif
1696    )
1697   {             /* Generate & preload a selfsigned cert. No files to watch. */
1698   if (tls_expand_session_files(ctx, &state_server, &dummy_errstr) == OK)
1699     {
1700     state_server.lib_state.conn_certs = TRUE;
1701     lifetime = f.running_in_test_harness ? 2 : 60 * 60;         /* 1 hour */
1702     }
1703   }
1704 else
1705   DEBUG(D_tls) debug_printf("TLS: not preloading server certs\n");
1706
1707
1708 /* If we can, preload the Authorities for checking client certs against.
1709 Actual choice to do verify is made (tls_{,try_}verify_hosts)
1710 at TLS conn startup */
1711
1712 if (  opt_set_and_noexpand(tls_verify_certificates)
1713    && opt_unset_or_noexpand(tls_crl))
1714   {
1715   /* Watch the default dir also as they are always included */
1716
1717   if (  tls_set_watch(CUS X509_get_default_cert_file(), FALSE)
1718      && tls_set_watch(tls_verify_certificates, FALSE)
1719      && tls_set_watch(tls_crl, FALSE))
1720     {
1721     DEBUG(D_tls) debug_printf("TLS: preloading CA bundle for server\n");
1722
1723     if (setup_certs(ctx, tls_verify_certificates, tls_crl, NULL, &dummy_errstr)
1724         == OK)
1725       state_server.lib_state.cabundle = TRUE;
1726     }
1727   }
1728 else
1729   DEBUG(D_tls) debug_printf("TLS: not preloading CA bundle for server\n");
1730 #endif  /* EXIM_HAVE_INOTIFY */
1731
1732
1733 /* If we can, preload the ciphers control string */
1734
1735 if (opt_set_and_noexpand(tls_require_ciphers))
1736   {
1737   DEBUG(D_tls) debug_printf("TLS: preloading cipher list for server\n");
1738   if (server_load_ciphers(ctx, &state_server, tls_require_ciphers,
1739                           &dummy_errstr) == OK)
1740     state_server.lib_state.pri_string = TRUE;
1741   }
1742 else
1743   DEBUG(D_tls) debug_printf("TLS: not preloading cipher list for server\n");
1744 return lifetime;
1745 }
1746
1747
1748
1749
1750 /* Preload whatever creds are static, onto a transport.  The client can then
1751 just copy the pointer as it starts up.
1752 Called from the daemon after a cache-invalidate with watch set; called from
1753 a queue-run startup with watch clear. */
1754
1755 static void
1756 tls_client_creds_init(transport_instance * t, BOOL watch)
1757 {
1758 smtp_transport_options_block * ob = t->options_block;
1759 exim_openssl_state_st tpt_dummy_state;
1760 host_item * dummy_host = (host_item *)1;
1761 uschar * dummy_errstr;
1762 SSL_CTX * ctx;
1763
1764 tls_openssl_init();
1765
1766 ob->tls_preload = null_tls_preload;
1767 if (lib_ctx_new(&ctx, dummy_host, &dummy_errstr) != OK)
1768   return;
1769 ob->tls_preload.lib_ctx = ctx;
1770
1771 tpt_dummy_state.lib_state = ob->tls_preload;
1772
1773 if (opt_unset_or_noexpand(tls_dhparam))
1774   {
1775   DEBUG(D_tls) debug_printf("TLS: preloading DH params for transport '%s'\n", t->name);
1776   if (init_dh(ctx, tls_dhparam, NULL, &dummy_errstr))
1777     ob->tls_preload.dh = TRUE;
1778   }
1779 if (opt_unset_or_noexpand(tls_eccurve))
1780   {
1781   DEBUG(D_tls) debug_printf("TLS: preloading ECDH curve for transport '%s'\n", t->name);
1782   if (init_ecdh(ctx, NULL, &dummy_errstr))
1783     ob->tls_preload.ecdh = TRUE;
1784   }
1785
1786 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
1787 if (  opt_set_and_noexpand(ob->tls_certificate)
1788    && opt_unset_or_noexpand(ob->tls_privatekey))
1789   {
1790   if (  !watch
1791      || (  tls_set_watch(ob->tls_certificate, FALSE)
1792         && tls_set_watch(ob->tls_privatekey, FALSE)
1793      )  )
1794     {
1795     uschar * pkey = ob->tls_privatekey;
1796
1797     DEBUG(D_tls)
1798       debug_printf("TLS: preloading client certs for transport '%s'\n",t->name);
1799
1800     if (  tls_add_certfile(ctx, &tpt_dummy_state, ob->tls_certificate,
1801                                     &dummy_errstr) == 0
1802        && tls_add_pkeyfile(ctx, &tpt_dummy_state,
1803                                     pkey ? pkey : ob->tls_certificate,
1804                                     &dummy_errstr) == 0
1805        )
1806       ob->tls_preload.conn_certs = TRUE;
1807     }
1808   }
1809 else
1810   DEBUG(D_tls)
1811     debug_printf("TLS: not preloading client certs, for transport '%s'\n", t->name);
1812
1813
1814 if (  opt_set_and_noexpand(ob->tls_verify_certificates)
1815    && opt_unset_or_noexpand(ob->tls_crl))
1816   {
1817   if (  !watch
1818      ||    tls_set_watch(CUS X509_get_default_cert_file(), FALSE)
1819         && tls_set_watch(ob->tls_verify_certificates, FALSE)
1820         && tls_set_watch(ob->tls_crl, FALSE)
1821      )
1822     {
1823     DEBUG(D_tls)
1824       debug_printf("TLS: preloading CA bundle for transport '%s'\n", t->name);
1825
1826     if (setup_certs(ctx, ob->tls_verify_certificates,
1827           ob->tls_crl, dummy_host, &dummy_errstr) == OK)
1828       ob->tls_preload.cabundle = TRUE;
1829     }
1830   }
1831 else
1832   DEBUG(D_tls)
1833       debug_printf("TLS: not preloading CA bundle, for transport '%s'\n", t->name);
1834
1835 #endif /*EXIM_HAVE_INOTIFY*/
1836 }
1837
1838
1839 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
1840 /* Invalidate the creds cached, by dropping the current ones.
1841 Call when we notice one of the source files has changed. */
1842  
1843 static void
1844 tls_server_creds_invalidate(void)
1845 {
1846 SSL_CTX_free(state_server.lib_state.lib_ctx);
1847 state_server.lib_state = null_tls_preload;
1848 }
1849
1850
1851 static void
1852 tls_client_creds_invalidate(transport_instance * t)
1853 {
1854 smtp_transport_options_block * ob = t->options_block;
1855 SSL_CTX_free(ob->tls_preload.lib_ctx);
1856 ob->tls_preload = null_tls_preload;
1857 }
1858
1859 #else
1860
1861 static void
1862 tls_server_creds_invalidate(void)
1863 { return; }
1864
1865 static void
1866 tls_client_creds_invalidate(transport_instance * t)
1867 { return; }
1868
1869 #endif  /*EXIM_HAVE_INOTIFY*/
1870
1871
1872 /* Extreme debug
1873 #ifndef DISABLE_OCSP
1874 void
1875 x509_store_dump_cert_s_names(X509_STORE * store)
1876 {
1877 STACK_OF(X509_OBJECT) * roots= store->objs;
1878 static uschar name[256];
1879
1880 for (int i= 0; i < sk_X509_OBJECT_num(roots); i++)
1881   {
1882   X509_OBJECT * tmp_obj= sk_X509_OBJECT_value(roots, i);
1883   if(tmp_obj->type == X509_LU_X509)
1884     {
1885     X509_NAME * sn = X509_get_subject_name(tmp_obj->data.x509);
1886     if (X509_NAME_oneline(sn, CS name, sizeof(name)))
1887       {
1888       name[sizeof(name)-1] = '\0';
1889       debug_printf(" %s\n", name);
1890       }
1891     }
1892   }
1893 }
1894 #endif
1895 */
1896
1897
1898 #ifndef DISABLE_TLS_RESUME
1899 /* Manage the keysets used for encrypting the session tickets, on the server. */
1900
1901 typedef struct {                        /* Session ticket encryption key */
1902   uschar        name[16];
1903
1904   const EVP_CIPHER *    aes_cipher;
1905   uschar                aes_key[32];    /* size needed depends on cipher. aes_128 implies 128/8 = 16? */
1906   const EVP_MD *        hmac_hash;
1907   uschar                hmac_key[16];
1908   time_t                renew;
1909   time_t                expire;
1910 } exim_stek;
1911
1912 static exim_stek exim_tk;       /* current key */
1913 static exim_stek exim_tk_old;   /* previous key */
1914
1915 static void
1916 tk_init(void)
1917 {
1918 time_t t = time(NULL);
1919
1920 if (exim_tk.name[0])
1921   {
1922   if (exim_tk.renew >= t) return;
1923   exim_tk_old = exim_tk;
1924   }
1925
1926 if (f.running_in_test_harness) ssl_session_timeout = 6;
1927
1928 DEBUG(D_tls) debug_printf("OpenSSL: %s STEK\n", exim_tk.name[0] ? "rotating" : "creating");
1929 if (RAND_bytes(exim_tk.aes_key, sizeof(exim_tk.aes_key)) <= 0) return;
1930 if (RAND_bytes(exim_tk.hmac_key, sizeof(exim_tk.hmac_key)) <= 0) return;
1931 if (RAND_bytes(exim_tk.name+1, sizeof(exim_tk.name)-1) <= 0) return;
1932
1933 exim_tk.name[0] = 'E';
1934 exim_tk.aes_cipher = EVP_aes_256_cbc();
1935 exim_tk.hmac_hash = EVP_sha256();
1936 exim_tk.expire = t + ssl_session_timeout;
1937 exim_tk.renew = t + ssl_session_timeout/2;
1938 }
1939
1940 static exim_stek *
1941 tk_current(void)
1942 {
1943 if (!exim_tk.name[0]) return NULL;
1944 return &exim_tk;
1945 }
1946
1947 static exim_stek *
1948 tk_find(const uschar * name)
1949 {
1950 return memcmp(name, exim_tk.name, sizeof(exim_tk.name)) == 0 ? &exim_tk
1951   : memcmp(name, exim_tk_old.name, sizeof(exim_tk_old.name)) == 0 ? &exim_tk_old
1952   : NULL;
1953 }
1954
1955 /* Callback for session tickets, on server */
1956 static int
1957 ticket_key_callback(SSL * ssl, uschar key_name[16],
1958   uschar * iv, EVP_CIPHER_CTX * c_ctx, HMAC_CTX * hctx, int enc)
1959 {
1960 tls_support * tlsp = state_server.tlsp;
1961 exim_stek * key;
1962
1963 if (enc)
1964   {
1965   DEBUG(D_tls) debug_printf("ticket_key_callback: create new session\n");
1966   tlsp->resumption |= RESUME_CLIENT_REQUESTED;
1967
1968   if (RAND_bytes(iv, EVP_MAX_IV_LENGTH) <= 0)
1969     return -1; /* insufficient random */
1970
1971   if (!(key = tk_current()))    /* current key doesn't exist or isn't valid */
1972      return 0;                  /* key couldn't be created */
1973   memcpy(key_name, key->name, 16);
1974   DEBUG(D_tls) debug_printf("STEK expire " TIME_T_FMT "\n", key->expire - time(NULL));
1975
1976   /*XXX will want these dependent on the ssl session strength */
1977   HMAC_Init_ex(hctx, key->hmac_key, sizeof(key->hmac_key),
1978                 key->hmac_hash, NULL);
1979   EVP_EncryptInit_ex(c_ctx, key->aes_cipher, NULL, key->aes_key, iv);
1980
1981   DEBUG(D_tls) debug_printf("ticket created\n");
1982   return 1;
1983   }
1984 else
1985   {
1986   time_t now = time(NULL);
1987
1988   DEBUG(D_tls) debug_printf("ticket_key_callback: retrieve session\n");
1989   tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
1990
1991   if (!(key = tk_find(key_name)) || key->expire < now)
1992     {
1993     DEBUG(D_tls)
1994       {
1995       debug_printf("ticket not usable (%s)\n", key ? "expired" : "not found");
1996       if (key) debug_printf("STEK expire " TIME_T_FMT "\n", key->expire - now);
1997       }
1998     return 0;
1999     }
2000
2001   HMAC_Init_ex(hctx, key->hmac_key, sizeof(key->hmac_key),
2002                 key->hmac_hash, NULL);
2003   EVP_DecryptInit_ex(c_ctx, key->aes_cipher, NULL, key->aes_key, iv);
2004
2005   DEBUG(D_tls) debug_printf("ticket usable, STEK expire " TIME_T_FMT "\n", key->expire - now);
2006
2007   /* The ticket lifetime and renewal are the same as the STEK lifetime and
2008   renewal, which is overenthusiastic.  A factor of, say, 3x longer STEK would
2009   be better.  To do that we'd have to encode ticket lifetime in the name as
2010   we don't yet see the restored session.  Could check posthandshake for TLS1.3
2011   and trigger a new ticket then, but cannot do that for TLS1.2 */
2012   return key->renew < now ? 2 : 1;
2013   }
2014 }
2015 #endif
2016
2017
2018
2019 static void
2020 setup_cert_verify(SSL_CTX * ctx, BOOL optional,
2021     int (*cert_vfy_cb)(int, X509_STORE_CTX *))
2022 {
2023 /* If verification is optional, don't fail if no certificate */
2024
2025 SSL_CTX_set_verify(ctx,
2026     SSL_VERIFY_PEER | (optional ? 0 : SSL_VERIFY_FAIL_IF_NO_PEER_CERT),
2027     cert_vfy_cb);
2028 }
2029
2030
2031 /*************************************************
2032 *            Callback to handle SNI              *
2033 *************************************************/
2034
2035 /* Called when acting as server during the TLS session setup if a Server Name
2036 Indication extension was sent by the client.
2037
2038 API documentation is OpenSSL s_server.c implementation.
2039
2040 Arguments:
2041   s               SSL* of the current session
2042   ad              unknown (part of OpenSSL API) (unused)
2043   arg             Callback of "our" registered data
2044
2045 Returns:          SSL_TLSEXT_ERR_{OK,ALERT_WARNING,ALERT_FATAL,NOACK}
2046
2047 XXX might need to change to using ClientHello callback,
2048 per https://www.openssl.org/docs/manmaster/man3/SSL_client_hello_cb_fn.html
2049 */
2050
2051 #ifdef EXIM_HAVE_OPENSSL_TLSEXT
2052 static int
2053 tls_servername_cb(SSL *s, int *ad ARG_UNUSED, void *arg)
2054 {
2055 const char *servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
2056 exim_openssl_state_st *state = (exim_openssl_state_st *) arg;
2057 int rc;
2058 int old_pool = store_pool;
2059 uschar * dummy_errstr;
2060
2061 if (!servername)
2062   return SSL_TLSEXT_ERR_OK;
2063
2064 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", servername,
2065     reexpand_tls_files_for_sni ? "" : " (unused for certificate selection)");
2066
2067 /* Make the extension value available for expansion */
2068 store_pool = POOL_PERM;
2069 tls_in.sni = string_copy_taint(US servername, TRUE);
2070 store_pool = old_pool;
2071
2072 if (!reexpand_tls_files_for_sni)
2073   return SSL_TLSEXT_ERR_OK;
2074
2075 /* Can't find an SSL_CTX_clone() or equivalent, so we do it manually;
2076 not confident that memcpy wouldn't break some internal reference counting.
2077 Especially since there's a references struct member, which would be off. */
2078
2079 if (lib_ctx_new(&server_sni, NULL, &dummy_errstr) != OK)
2080   goto bad;
2081
2082 /* Not sure how many of these are actually needed, since SSL object
2083 already exists.  Might even need this selfsame callback, for reneg? */
2084
2085   {
2086   SSL_CTX * ctx = state_server.lib_state.lib_ctx;
2087   SSL_CTX_set_info_callback(server_sni, SSL_CTX_get_info_callback(ctx));
2088   SSL_CTX_set_mode(server_sni, SSL_CTX_get_mode(ctx));
2089   SSL_CTX_set_options(server_sni, SSL_CTX_get_options(ctx));
2090   SSL_CTX_set_timeout(server_sni, SSL_CTX_get_timeout(ctx));
2091   SSL_CTX_set_tlsext_servername_callback(server_sni, tls_servername_cb);
2092   SSL_CTX_set_tlsext_servername_arg(server_sni, state);
2093   }
2094
2095 if (  !init_dh(server_sni, state->dhparam, NULL, &dummy_errstr)
2096    || !init_ecdh(server_sni, NULL, &dummy_errstr)
2097    )
2098   goto bad;
2099
2100 if (  state->server_cipher_list
2101    && !SSL_CTX_set_cipher_list(server_sni, CS state->server_cipher_list))
2102   goto bad;
2103
2104 #ifndef DISABLE_OCSP
2105 if (state->u_ocsp.server.file)
2106   {
2107   SSL_CTX_set_tlsext_status_cb(server_sni, tls_server_stapling_cb);
2108   SSL_CTX_set_tlsext_status_arg(server_sni, state);
2109   }
2110 #endif
2111
2112   {
2113   uschar * expcerts;
2114   if (  !expand_check(tls_verify_certificates, US"tls_verify_certificates",
2115                   &expcerts, &dummy_errstr)
2116      || (rc = setup_certs(server_sni, expcerts, tls_crl, NULL,
2117                         &dummy_errstr)) != OK)
2118     goto bad;
2119
2120   if (expcerts && *expcerts)
2121     setup_cert_verify(server_sni, FALSE, verify_callback_server);
2122   }
2123
2124 /* do this after setup_certs, because this can require the certs for verifying
2125 OCSP information. */
2126 if ((rc = tls_expand_session_files(server_sni, state, &dummy_errstr)) != OK)
2127   goto bad;
2128
2129 DEBUG(D_tls) debug_printf("Switching SSL context.\n");
2130 SSL_set_SSL_CTX(s, server_sni);
2131 return SSL_TLSEXT_ERR_OK;
2132
2133 bad: return SSL_TLSEXT_ERR_ALERT_FATAL;
2134 }
2135 #endif /* EXIM_HAVE_OPENSSL_TLSEXT */
2136
2137
2138
2139
2140 #ifndef DISABLE_OCSP
2141
2142 /*************************************************
2143 *        Callback to handle OCSP Stapling        *
2144 *************************************************/
2145
2146 /* Called when acting as server during the TLS session setup if the client
2147 requests OCSP information with a Certificate Status Request.
2148
2149 Documentation via openssl s_server.c and the Apache patch from the OpenSSL
2150 project.
2151
2152 */
2153
2154 static int
2155 tls_server_stapling_cb(SSL *s, void *arg)
2156 {
2157 const exim_openssl_state_st * state = arg;
2158 ocsp_resplist * olist = state->u_ocsp.server.olist;
2159 uschar * response_der;  /*XXX blob */
2160 int response_der_len;
2161
2162 DEBUG(D_tls)
2163   debug_printf("Received TLS status request (OCSP stapling); %s response list\n",
2164     olist ? "have" : "lack");
2165
2166 tls_in.ocsp = OCSP_NOT_RESP;
2167 if (!olist)
2168   return SSL_TLSEXT_ERR_NOACK;
2169
2170 #ifdef EXIM_HAVE_OPESSL_GET0_SERIAL
2171  {
2172   const X509 * cert_sent = SSL_get_certificate(s);
2173   const ASN1_INTEGER * cert_serial = X509_get0_serialNumber(cert_sent);
2174   const BIGNUM * cert_bn = ASN1_INTEGER_to_BN(cert_serial, NULL);
2175   const X509_NAME * cert_issuer = X509_get_issuer_name(cert_sent);
2176   uschar * chash;
2177   uint chash_len;
2178
2179   for (; olist; olist = olist->next)
2180     {
2181     OCSP_BASICRESP * bs = OCSP_response_get1_basic(olist->resp);
2182     const OCSP_SINGLERESP * single = OCSP_resp_get0(bs, 0);
2183     const OCSP_CERTID * cid = OCSP_SINGLERESP_get0_id(single);
2184     ASN1_INTEGER * res_cert_serial;
2185     const BIGNUM * resp_bn;
2186     ASN1_OCTET_STRING * res_cert_iNameHash;
2187
2188
2189     (void) OCSP_id_get0_info(&res_cert_iNameHash, NULL, NULL, &res_cert_serial,
2190       (OCSP_CERTID *) cid);
2191     resp_bn = ASN1_INTEGER_to_BN(res_cert_serial, NULL);
2192
2193     DEBUG(D_tls)
2194       {
2195       debug_printf("cert serial: %s\n", BN_bn2hex(cert_bn));
2196       debug_printf("resp serial: %s\n", BN_bn2hex(resp_bn));
2197       }
2198
2199     if (BN_cmp(cert_bn, resp_bn) == 0)
2200       {
2201       DEBUG(D_tls) debug_printf("matched serial for ocsp\n");
2202
2203       /*XXX TODO: check the rest of the list for duplicate matches.
2204       If any, need to also check the Issuer Name hash.
2205       Without this, we will provide the wrong status in the case of
2206       duplicate id. */
2207
2208       break;
2209       }
2210     DEBUG(D_tls) debug_printf("not match serial for ocsp\n");
2211     }
2212   if (!olist)
2213     {
2214     DEBUG(D_tls) debug_printf("failed to find match for ocsp\n");
2215     return SSL_TLSEXT_ERR_NOACK;
2216     }
2217  }
2218 #else
2219 if (olist->next)
2220   {
2221   DEBUG(D_tls) debug_printf("OpenSSL version too early to support multi-leaf OCSP\n");
2222   return SSL_TLSEXT_ERR_NOACK;
2223   }
2224 #endif
2225
2226 /*XXX could we do the i2d earlier, rather than during the callback? */
2227 response_der = NULL;
2228 response_der_len = i2d_OCSP_RESPONSE(olist->resp, &response_der);
2229 if (response_der_len <= 0)
2230   return SSL_TLSEXT_ERR_NOACK;
2231
2232 SSL_set_tlsext_status_ocsp_resp(state_server.lib_state.lib_ssl,
2233                                 response_der, response_der_len);
2234 tls_in.ocsp = OCSP_VFIED;
2235 return SSL_TLSEXT_ERR_OK;
2236 }
2237
2238
2239 static void
2240 time_print(BIO * bp, const char * str, ASN1_GENERALIZEDTIME * time)
2241 {
2242 BIO_printf(bp, "\t%s: ", str);
2243 ASN1_GENERALIZEDTIME_print(bp, time);
2244 BIO_puts(bp, "\n");
2245 }
2246
2247 static int
2248 tls_client_stapling_cb(SSL *s, void *arg)
2249 {
2250 exim_openssl_state_st * cbinfo = arg;
2251 const unsigned char * p;
2252 int len;
2253 OCSP_RESPONSE * rsp;
2254 OCSP_BASICRESP * bs;
2255 int i;
2256
2257 DEBUG(D_tls) debug_printf("Received TLS status callback (OCSP stapling):\n");
2258 len = SSL_get_tlsext_status_ocsp_resp(s, &p);
2259 if(!p)
2260  {
2261   /* Expect this when we requested ocsp but got none */
2262   if (cbinfo->u_ocsp.client.verify_required && LOGGING(tls_cipher))
2263     log_write(0, LOG_MAIN, "Required TLS certificate status not received");
2264   else
2265     DEBUG(D_tls) debug_printf(" null\n");
2266   return cbinfo->u_ocsp.client.verify_required ? 0 : 1;
2267  }
2268
2269 if (!(rsp = d2i_OCSP_RESPONSE(NULL, &p, len)))
2270   {
2271   tls_out.ocsp = OCSP_FAILED;   /*XXX should use tlsp-> to permit concurrent outbound */
2272   if (LOGGING(tls_cipher))
2273     log_write(0, LOG_MAIN, "Received TLS cert status response, parse error");
2274   else
2275     DEBUG(D_tls) debug_printf(" parse error\n");
2276   return 0;
2277   }
2278
2279 if (!(bs = OCSP_response_get1_basic(rsp)))
2280   {
2281   tls_out.ocsp = OCSP_FAILED;
2282   if (LOGGING(tls_cipher))
2283     log_write(0, LOG_MAIN, "Received TLS cert status response, error parsing response");
2284   else
2285     DEBUG(D_tls) debug_printf(" error parsing response\n");
2286   OCSP_RESPONSE_free(rsp);
2287   return 0;
2288   }
2289
2290 /* We'd check the nonce here if we'd put one in the request. */
2291 /* However that would defeat cacheability on the server so we don't. */
2292
2293 /* This section of code reworked from OpenSSL apps source;
2294    The OpenSSL Project retains copyright:
2295    Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
2296 */
2297   {
2298     BIO * bp = NULL;
2299 #ifndef EXIM_HAVE_OCSP_RESP_COUNT
2300     STACK_OF(OCSP_SINGLERESP) * sresp = bs->tbsResponseData->responses;
2301 #endif
2302
2303     DEBUG(D_tls) bp = BIO_new_fp(debug_file, BIO_NOCLOSE);
2304
2305     /*OCSP_RESPONSE_print(bp, rsp, 0);   extreme debug: stapling content */
2306
2307     /* Use the chain that verified the server cert to verify the stapled info */
2308     /* DEBUG(D_tls) x509_store_dump_cert_s_names(cbinfo->u_ocsp.client.verify_store); */
2309
2310     if ((i = OCSP_basic_verify(bs, cbinfo->verify_stack,
2311               cbinfo->u_ocsp.client.verify_store, OCSP_NOEXPLICIT)) <= 0)
2312       if (ERR_peek_error())
2313         {
2314         tls_out.ocsp = OCSP_FAILED;
2315         if (LOGGING(tls_cipher)) log_write(0, LOG_MAIN,
2316                 "Received TLS cert status response, itself unverifiable: %s",
2317                 ERR_reason_error_string(ERR_peek_error()));
2318         BIO_printf(bp, "OCSP response verify failure\n");
2319         ERR_print_errors(bp);
2320         OCSP_RESPONSE_print(bp, rsp, 0);
2321         goto failed;
2322         }
2323       else
2324         DEBUG(D_tls) debug_printf("no explicit trust for OCSP signing"
2325           " in the root CA certificate; ignoring\n");
2326
2327     DEBUG(D_tls) debug_printf("OCSP response well-formed and signed OK\n");
2328
2329     /*XXX So we have a good stapled OCSP status.  How do we know
2330     it is for the cert of interest?  OpenSSL 1.1.0 has a routine
2331     OCSP_resp_find_status() which matches on a cert id, which presumably
2332     we should use. Making an id needs OCSP_cert_id_new(), which takes
2333     issuerName, issuerKey, serialNumber.  Are they all in the cert?
2334
2335     For now, carry on blindly accepting the resp. */
2336
2337     for (int idx =
2338 #ifdef EXIM_HAVE_OCSP_RESP_COUNT
2339             OCSP_resp_count(bs) - 1;
2340 #else
2341             sk_OCSP_SINGLERESP_num(sresp) - 1;
2342 #endif
2343          idx >= 0; idx--)
2344       {
2345       OCSP_SINGLERESP * single = OCSP_resp_get0(bs, idx);
2346       int status, reason;
2347       ASN1_GENERALIZEDTIME * rev, * thisupd, * nextupd;
2348
2349   /*XXX so I can see putting a loop in here to handle a rsp with >1 singleresp
2350   - but what happens with a GnuTLS-style input?
2351
2352   we could do with a debug label for each singleresp
2353   - it has a certID with a serialNumber, but I see no API to get that
2354   */
2355       status = OCSP_single_get0_status(single, &reason, &rev,
2356                   &thisupd, &nextupd);
2357
2358       DEBUG(D_tls) time_print(bp, "This OCSP Update", thisupd);
2359       DEBUG(D_tls) if(nextupd) time_print(bp, "Next OCSP Update", nextupd);
2360       if (!OCSP_check_validity(thisupd, nextupd,
2361             EXIM_OCSP_SKEW_SECONDS, EXIM_OCSP_MAX_AGE))
2362         {
2363         tls_out.ocsp = OCSP_FAILED;
2364         DEBUG(D_tls) ERR_print_errors(bp);
2365         log_write(0, LOG_MAIN, "Server OSCP dates invalid");
2366         goto failed;
2367         }
2368
2369       DEBUG(D_tls) BIO_printf(bp, "Certificate status: %s\n",
2370                     OCSP_cert_status_str(status));
2371       switch(status)
2372         {
2373         case V_OCSP_CERTSTATUS_GOOD:
2374           continue;     /* the idx loop */
2375         case V_OCSP_CERTSTATUS_REVOKED:
2376           log_write(0, LOG_MAIN, "Server certificate revoked%s%s",
2377               reason != -1 ? "; reason: " : "",
2378               reason != -1 ? OCSP_crl_reason_str(reason) : "");
2379           DEBUG(D_tls) time_print(bp, "Revocation Time", rev);
2380           break;
2381         default:
2382           log_write(0, LOG_MAIN,
2383               "Server certificate status unknown, in OCSP stapling");
2384           break;
2385         }
2386
2387       goto failed;
2388       }
2389
2390     i = 1;
2391     tls_out.ocsp = OCSP_VFIED;
2392     goto good;
2393
2394   failed:
2395     tls_out.ocsp = OCSP_FAILED;
2396     i = cbinfo->u_ocsp.client.verify_required ? 0 : 1;
2397   good:
2398     BIO_free(bp);
2399   }
2400
2401 OCSP_RESPONSE_free(rsp);
2402 return i;
2403 }
2404 #endif  /*!DISABLE_OCSP*/
2405
2406
2407 /*************************************************
2408 *            Initialize for TLS                  *
2409 *************************************************/
2410 /* Called from both server and client code, to do preliminary initialization
2411 of the library.  We allocate and return a context structure.
2412
2413 Arguments:
2414   host            connected host, if client; NULL if server
2415   ob              transport options block, if client; NULL if server
2416   ocsp_file       file of stapling info (server); flag for require ocsp (client)
2417   addr            address if client; NULL if server (for some randomness)
2418   caller_state    place to put pointer to allocated state-struct
2419   errstr          error string pointer
2420
2421 Returns:          OK/DEFER/FAIL
2422 */
2423
2424 static int
2425 tls_init(host_item * host, smtp_transport_options_block * ob,
2426 #ifndef DISABLE_OCSP
2427   uschar *ocsp_file,
2428 #endif
2429   address_item *addr, exim_openssl_state_st ** caller_state,
2430   tls_support * tlsp,
2431   uschar ** errstr)
2432 {
2433 SSL_CTX * ctx;
2434 exim_openssl_state_st * state;
2435 int rc;
2436
2437 if (host)                       /* client */
2438   {
2439   state = store_malloc(sizeof(exim_openssl_state_st));
2440   memset(state, 0, sizeof(*state));
2441   state->certificate = ob->tls_certificate;
2442   state->privatekey =  ob->tls_privatekey;
2443   state->is_server = FALSE;
2444   state->dhparam = NULL;
2445   state->lib_state = ob->tls_preload;
2446   }
2447 else                            /* server */
2448   {
2449   state = &state_server;
2450   state->certificate = tls_certificate;
2451   state->privatekey =  tls_privatekey;
2452   state->is_server = TRUE;
2453   state->dhparam = tls_dhparam;
2454   state->lib_state = state_server.lib_state;
2455   }
2456
2457 state->tlsp = tlsp;
2458 state->host = host;
2459
2460 if (!state->lib_state.pri_string)
2461   state->server_cipher_list = NULL;
2462
2463 #ifndef DISABLE_EVENT
2464 state->event_action = NULL;
2465 #endif
2466
2467 tls_openssl_init();
2468
2469 /* It turns out that we need to seed the random number generator this early in
2470 order to get the full complement of ciphers to work. It took me roughly a day
2471 of work to discover this by experiment.
2472
2473 On systems that have /dev/urandom, SSL may automatically seed itself from
2474 there. Otherwise, we have to make something up as best we can. Double check
2475 afterwards.
2476
2477 Although we likely called this before, at daemon startup, this is a chance
2478 to mix in further variable info (time, pid) if needed. */
2479
2480 if (!lib_rand_init(addr))
2481   return tls_error(US"RAND_status", host,
2482     US"unable to seed random number generator", errstr);
2483
2484 /* Apply administrator-supplied work-arounds.
2485 Historically we applied just one requested option,
2486 SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS, but when bug 994 requested a second, we
2487 moved to an administrator-controlled list of options to specify and
2488 grandfathered in the first one as the default value for "openssl_options".
2489
2490 No OpenSSL version number checks: the options we accept depend upon the
2491 availability of the option value macros from OpenSSL.  */
2492
2493 if (!init_options)
2494   if (!tls_openssl_options_parse(openssl_options, &init_options))
2495     return tls_error(US"openssl_options parsing failed", host, NULL, errstr);
2496
2497 /* Create a context.
2498 The OpenSSL docs in 1.0.1b have not been updated to clarify TLS variant
2499 negotiation in the different methods; as far as I can tell, the only
2500 *_{server,client}_method which allows negotiation is SSLv23, which exists even
2501 when OpenSSL is built without SSLv2 support.
2502 By disabling with openssl_options, we can let admins re-enable with the
2503 existing knob. */
2504
2505 if (!(ctx = state->lib_state.lib_ctx))
2506   {
2507   if ((rc = lib_ctx_new(&ctx, host, errstr)) != OK)
2508     return rc;
2509   state->lib_state.lib_ctx = ctx;
2510   }
2511
2512 #ifndef DISABLE_TLS_RESUME
2513 tlsp->resumption = RESUME_SUPPORTED;
2514 #endif
2515 if (init_options)
2516   {
2517 #ifndef DISABLE_TLS_RESUME
2518   /* Should the server offer session resumption? */
2519   if (!host && verify_check_host(&tls_resumption_hosts) == OK)
2520     {
2521     DEBUG(D_tls) debug_printf("tls_resumption_hosts overrides openssl_options\n");
2522     init_options &= ~SSL_OP_NO_TICKET;
2523     tlsp->resumption |= RESUME_SERVER_TICKET; /* server will give ticket on request */
2524     tlsp->host_resumable = TRUE;
2525     }
2526 #endif
2527
2528   DEBUG(D_tls) debug_printf("setting SSL CTX options: %#lx\n", init_options);
2529   if (!(SSL_CTX_set_options(ctx, init_options)))
2530     return tls_error(string_sprintf(
2531           "SSL_CTX_set_option(%#lx)", init_options), host, NULL, errstr);
2532   }
2533 else
2534   DEBUG(D_tls) debug_printf("no SSL CTX options to set\n");
2535
2536 /* We'd like to disable session cache unconditionally, but foolish Outlook
2537 Express clients then give up the first TLS connection and make a second one
2538 (which works).  Only when there is an IMAP service on the same machine.
2539 Presumably OE is trying to use the cache for A on B.  Leave it enabled for
2540 now, until we work out a decent way of presenting control to the config.  It
2541 will never be used because we use a new context every time. */
2542 #ifdef notdef
2543 (void) SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
2544 #endif
2545
2546 /* Initialize with DH parameters if supplied */
2547 /* Initialize ECDH temp key parameter selection */
2548
2549 if (state->lib_state.dh)
2550   { DEBUG(D_tls) debug_printf("TLS: DH params were preloaded\n"); }
2551 else
2552   if (!init_dh(ctx, state->dhparam, host, errstr)) return DEFER;
2553
2554 if (state->lib_state.ecdh)
2555   { DEBUG(D_tls) debug_printf("TLS: ECDH curve was preloaded\n"); }
2556 else
2557   if (!init_ecdh(ctx, host, errstr)) return DEFER;
2558
2559 /* Set up certificate and key (and perhaps OCSP info) */
2560
2561 if (state->lib_state.conn_certs)
2562   {
2563   DEBUG(D_tls)
2564     debug_printf("TLS: %s certs were preloaded\n", host ? "client":"server");
2565   }
2566 else
2567   {
2568 #ifndef DISABLE_OCSP
2569   if (!host)
2570     {
2571     state->u_ocsp.server.file = ocsp_file;
2572     state->u_ocsp.server.file_expanded = NULL;
2573     state->u_ocsp.server.olist = NULL;
2574     }
2575 #endif
2576   if ((rc = tls_expand_session_files(ctx, state, errstr)) != OK) return rc;
2577   }
2578
2579 /* If we need to handle SNI or OCSP, do so */
2580
2581 #ifdef EXIM_HAVE_OPENSSL_TLSEXT
2582 # ifndef DISABLE_OCSP
2583   if (!(state->verify_stack = sk_X509_new_null()))
2584     {
2585     DEBUG(D_tls) debug_printf("failed to create stack for stapling verify\n");
2586     return FAIL;
2587     }
2588 # endif
2589
2590 if (!host)              /* server */
2591   {
2592 # ifndef DISABLE_OCSP
2593   /* We check u_ocsp.server.file, not server.olist, because we care about if
2594   the option exists, not what the current expansion might be, as SNI might
2595   change the certificate and OCSP file in use between now and the time the
2596   callback is invoked. */
2597   if (state->u_ocsp.server.file)
2598     {
2599     SSL_CTX_set_tlsext_status_cb(ctx, tls_server_stapling_cb);
2600     SSL_CTX_set_tlsext_status_arg(ctx, state);
2601     }
2602 # endif
2603   /* We always do this, so that $tls_sni is available even if not used in
2604   tls_certificate */
2605   SSL_CTX_set_tlsext_servername_callback(ctx, tls_servername_cb);
2606   SSL_CTX_set_tlsext_servername_arg(ctx, state);
2607   }
2608 # ifndef DISABLE_OCSP
2609 else                    /* client */
2610   if(ocsp_file)         /* wanting stapling */
2611     {
2612     if (!(state->u_ocsp.client.verify_store = X509_STORE_new()))
2613       {
2614       DEBUG(D_tls) debug_printf("failed to create store for stapling verify\n");
2615       return FAIL;
2616       }
2617     SSL_CTX_set_tlsext_status_cb(ctx, tls_client_stapling_cb);
2618     SSL_CTX_set_tlsext_status_arg(ctx, state);
2619     }
2620 # endif
2621 #endif
2622
2623 state->verify_cert_hostnames = NULL;
2624
2625 #ifdef EXIM_HAVE_EPHEM_RSA_KEX
2626 /* Set up the RSA callback */
2627 SSL_CTX_set_tmp_rsa_callback(ctx, rsa_callback);
2628 #endif
2629
2630 /* Finally, set the session cache timeout, and we are done.
2631 The period appears to be also used for (server-generated) session tickets */
2632
2633 SSL_CTX_set_timeout(ctx, ssl_session_timeout);
2634 DEBUG(D_tls) debug_printf("Initialized TLS\n");
2635
2636 *caller_state = state;
2637
2638 return OK;
2639 }
2640
2641
2642
2643
2644 /*************************************************
2645 *           Get name of cipher in use            *
2646 *************************************************/
2647
2648 /*
2649 Argument:   pointer to an SSL structure for the connection
2650             pointer to number of bits for cipher
2651 Returns:    pointer to allocated string in perm-pool
2652 */
2653
2654 static uschar *
2655 construct_cipher_name(SSL * ssl, const uschar * ver, int * bits)
2656 {
2657 int pool = store_pool;
2658 /* With OpenSSL 1.0.0a, 'c' needs to be const but the documentation doesn't
2659 yet reflect that.  It should be a safe change anyway, even 0.9.8 versions have
2660 the accessor functions use const in the prototype. */
2661
2662 const SSL_CIPHER * c = (const SSL_CIPHER *) SSL_get_current_cipher(ssl);
2663 uschar * s;
2664
2665 SSL_CIPHER_get_bits(c, bits);
2666
2667 store_pool = POOL_PERM;
2668 s = string_sprintf("%s:%s:%u", ver, SSL_CIPHER_get_name(c), *bits);
2669 store_pool = pool;
2670 DEBUG(D_tls) debug_printf("Cipher: %s\n", s);
2671 return s;
2672 }
2673
2674
2675 /* Get IETF-standard name for ciphersuite.
2676 Argument:   pointer to an SSL structure for the connection
2677 Returns:    pointer to string
2678 */
2679
2680 static const uschar *
2681 cipher_stdname_ssl(SSL * ssl)
2682 {
2683 #ifdef EXIM_HAVE_OPENSSL_CIPHER_STD_NAME
2684 return CUS SSL_CIPHER_standard_name(SSL_get_current_cipher(ssl));
2685 #else
2686 ushort id = 0xffff & SSL_CIPHER_get_id(SSL_get_current_cipher(ssl));
2687 return cipher_stdname(id >> 8, id & 0xff);
2688 #endif
2689 }
2690
2691
2692 static const uschar *
2693 tlsver_name(SSL * ssl)
2694 {
2695 uschar * s, * p;
2696 int pool = store_pool;
2697
2698 store_pool = POOL_PERM;
2699 s = string_copy(US SSL_get_version(ssl));
2700 store_pool = pool;
2701 if ((p = Ustrchr(s, 'v')))      /* TLSv1.2 -> TLS1.2 */
2702   for (;; p++) if (!(*p = p[1])) break;
2703 return CUS s;
2704 }
2705
2706
2707 static void
2708 peer_cert(SSL * ssl, tls_support * tlsp, uschar * peerdn, unsigned siz)
2709 {
2710 /*XXX we might consider a list-of-certs variable for the cert chain.
2711 SSL_get_peer_cert_chain(SSL*).  We'd need a new variable type and support
2712 in list-handling functions, also consider the difference between the entire
2713 chain and the elements sent by the peer. */
2714
2715 tlsp->peerdn = NULL;
2716
2717 /* Will have already noted peercert on a verify fail; possibly not the leaf */
2718 if (!tlsp->peercert)
2719   tlsp->peercert = SSL_get_peer_certificate(ssl);
2720 /* Beware anonymous ciphers which lead to server_cert being NULL */
2721 if (tlsp->peercert)
2722   if (!X509_NAME_oneline(X509_get_subject_name(tlsp->peercert), CS peerdn, siz))
2723     { DEBUG(D_tls) debug_printf("X509_NAME_oneline() error\n"); }
2724   else
2725     {
2726     int oldpool = store_pool;
2727
2728     peerdn[siz-1] = '\0';               /* paranoia */
2729     store_pool = POOL_PERM;
2730     tlsp->peerdn = string_copy(peerdn);
2731     store_pool = oldpool;
2732
2733     /* We used to set CV in the cert-verify callbacks (either plain or dane)
2734     but they don't get called on session-resumption.  So use the official
2735     interface, which uses the resumed value.  Unfortunately this claims verified
2736     when it actually failed but we're in try-verify mode, due to us wanting the
2737     knowlege that it failed so needing to have the callback and forcing a
2738     permissive return.  If we don't force it, the TLS startup is failed.
2739     The extra bit of information is set in verify_override in the cb, stashed
2740     for resumption next to the TLS session, and used here. */
2741
2742     if (!tlsp->verify_override)
2743       tlsp->certificate_verified =
2744 #ifdef SUPPORT_DANE
2745         tlsp->dane_verified ||
2746 #endif
2747         SSL_get_verify_result(ssl) == X509_V_OK;
2748     }
2749 }
2750
2751
2752
2753
2754
2755 /*************************************************
2756 *        Set up for verifying certificates       *
2757 *************************************************/
2758
2759 #ifndef DISABLE_OCSP
2760 /* Load certs from file, return TRUE on success */
2761
2762 static BOOL
2763 chain_from_pem_file(const uschar * file, STACK_OF(X509) * verify_stack)
2764 {
2765 BIO * bp;
2766 X509 * x;
2767
2768 while (sk_X509_num(verify_stack) > 0)
2769   X509_free(sk_X509_pop(verify_stack));
2770
2771 if (!(bp = BIO_new_file(CS file, "r"))) return FALSE;
2772 while ((x = PEM_read_bio_X509(bp, NULL, 0, NULL)))
2773   sk_X509_push(verify_stack, x);
2774 BIO_free(bp);
2775 return TRUE;
2776 }
2777 #endif
2778
2779
2780
2781 /* Called by both client and server startup; on the server possibly
2782 repeated after a Server Name Indication.
2783
2784 Arguments:
2785   sctx          SSL_CTX* to initialise
2786   certs         certs file, expanded
2787   crl           CRL file or NULL
2788   host          NULL in a server; the remote host in a client
2789   errstr        error string pointer
2790
2791 Returns:        OK/DEFER/FAIL
2792 */
2793
2794 static int
2795 setup_certs(SSL_CTX *sctx, uschar *certs, uschar *crl, host_item *host,
2796     uschar ** errstr)
2797 {
2798 uschar *expcerts, *expcrl;
2799
2800 if (!expand_check(certs, US"tls_verify_certificates", &expcerts, errstr))
2801   return DEFER;
2802 DEBUG(D_tls) debug_printf("tls_verify_certificates: %s\n", expcerts);
2803
2804 if (expcerts && *expcerts)
2805   {
2806   /* Tell the library to use its compiled-in location for the system default
2807   CA bundle. Then add the ones specified in the config, if any. */
2808
2809   if (!SSL_CTX_set_default_verify_paths(sctx))
2810     return tls_error(US"SSL_CTX_set_default_verify_paths", host, NULL, errstr);
2811
2812   if (Ustrcmp(expcerts, "system") != 0 && Ustrncmp(expcerts, "system,", 7) != 0)
2813     {
2814     struct stat statbuf;
2815
2816     if (Ustat(expcerts, &statbuf) < 0)
2817       {
2818       log_write(0, LOG_MAIN|LOG_PANIC,
2819         "failed to stat %s for certificates", expcerts);
2820       return DEFER;
2821       }
2822     else
2823       {
2824       uschar *file, *dir;
2825       if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
2826         { file = NULL; dir = expcerts; }
2827       else
2828         {
2829         file = expcerts; dir = NULL;
2830 #ifndef DISABLE_OCSP
2831         /* In the server if we will be offering an OCSP proof, load chain from
2832         file for verifying the OCSP proof at load time. */
2833
2834 /*XXX Glitch!   The file here is tls_verify_certs: the chain for verifying the client cert.
2835 This is inconsistent with the need to verify the OCSP proof of the server cert.
2836 */
2837
2838         if (  !host
2839            && statbuf.st_size > 0
2840            && state_server.u_ocsp.server.file
2841            && !chain_from_pem_file(file, state_server.verify_stack)
2842            )
2843           {
2844           log_write(0, LOG_MAIN|LOG_PANIC,
2845             "failed to load cert chain from %s", file);
2846           return DEFER;
2847           }
2848 #endif
2849         }
2850
2851       /* If a certificate file is empty, the load function fails with an
2852       unhelpful error message. If we skip it, we get the correct behaviour (no
2853       certificates are recognized, but the error message is still misleading (it
2854       says no certificate was supplied).  But this is better. */
2855
2856       if (  (!file || statbuf.st_size > 0)
2857          && !SSL_CTX_load_verify_locations(sctx, CS file, CS dir))
2858           return tls_error(US"SSL_CTX_load_verify_locations",
2859                             host, NULL, errstr);
2860
2861       /* On the server load the list of CAs for which we will accept certs, for
2862       sending to the client.  This is only for the one-file
2863       tls_verify_certificates variant.
2864       If a list isn't loaded into the server, but some verify locations are set,
2865       the server end appears to make a wildcard request for client certs.
2866       Meanwhile, the client library as default behaviour *ignores* the list
2867       we send over the wire - see man SSL_CTX_set_client_cert_cb.
2868       Because of this, and that the dir variant is likely only used for
2869       the public-CA bundle (not for a private CA), not worth fixing.  */
2870
2871       if (file)
2872         {
2873         STACK_OF(X509_NAME) * names = SSL_load_client_CA_file(CS file);
2874         int i = sk_X509_NAME_num(names);
2875
2876         if (!host) SSL_CTX_set_client_CA_list(sctx, names);
2877         DEBUG(D_tls) debug_printf("Added %d additional certificate authorit%s\n",
2878                                     i, i>1 ? "ies":"y");
2879         }
2880       else
2881         DEBUG(D_tls)
2882           debug_printf("Added dir for additional certificate authorities\n");
2883       }
2884     }
2885
2886   /* Handle a certificate revocation list. */
2887
2888 #if OPENSSL_VERSION_NUMBER > 0x00907000L
2889
2890   /* This bit of code is now the version supplied by Lars Mainka. (I have
2891   merely reformatted it into the Exim code style.)
2892
2893   "From here I changed the code to add support for multiple crl's
2894   in pem format in one file or to support hashed directory entries in
2895   pem format instead of a file. This method now uses the library function
2896   X509_STORE_load_locations to add the CRL location to the SSL context.
2897   OpenSSL will then handle the verify against CA certs and CRLs by
2898   itself in the verify callback." */
2899
2900   if (!expand_check(crl, US"tls_crl", &expcrl, errstr)) return DEFER;
2901   if (expcrl && *expcrl)
2902     {
2903     struct stat statbufcrl;
2904     if (Ustat(expcrl, &statbufcrl) < 0)
2905       {
2906       log_write(0, LOG_MAIN|LOG_PANIC,
2907         "failed to stat %s for certificates revocation lists", expcrl);
2908       return DEFER;
2909       }
2910     else
2911       {
2912       /* is it a file or directory? */
2913       uschar *file, *dir;
2914       X509_STORE *cvstore = SSL_CTX_get_cert_store(sctx);
2915       if ((statbufcrl.st_mode & S_IFMT) == S_IFDIR)
2916         {
2917         file = NULL;
2918         dir = expcrl;
2919         DEBUG(D_tls) debug_printf("SSL CRL value is a directory %s\n", dir);
2920         }
2921       else
2922         {
2923         file = expcrl;
2924         dir = NULL;
2925         DEBUG(D_tls) debug_printf("SSL CRL value is a file %s\n", file);
2926         }
2927       if (X509_STORE_load_locations(cvstore, CS file, CS dir) == 0)
2928         return tls_error(US"X509_STORE_load_locations", host, NULL, errstr);
2929
2930       /* setting the flags to check against the complete crl chain */
2931
2932       X509_STORE_set_flags(cvstore,
2933         X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
2934       }
2935     }
2936
2937 #endif  /* OPENSSL_VERSION_NUMBER > 0x00907000L */
2938   }
2939
2940 return OK;
2941 }
2942
2943
2944
2945 /*************************************************
2946 *       Start a TLS session in a server          *
2947 *************************************************/
2948 /* This is called when Exim is running as a server, after having received
2949 the STARTTLS command. It must respond to that command, and then negotiate
2950 a TLS session.
2951
2952 Arguments:
2953   errstr            pointer to error message
2954
2955 Returns:            OK on success
2956                     DEFER for errors before the start of the negotiation
2957                     FAIL for errors during the negotiation; the server can't
2958                       continue running.
2959 */
2960
2961 int
2962 tls_server_start(uschar ** errstr)
2963 {
2964 int rc;
2965 uschar * expciphers;
2966 exim_openssl_state_st * dummy_statep;
2967 SSL_CTX * ctx;
2968 SSL * ssl;
2969 static uschar peerdn[256];
2970
2971 /* Check for previous activation */
2972
2973 if (tls_in.active.sock >= 0)
2974   {
2975   tls_error(US"STARTTLS received after TLS started", NULL, US"", errstr);
2976   smtp_printf("554 Already in TLS\r\n", FALSE);
2977   return FAIL;
2978   }
2979
2980 /* Initialize the SSL library. If it fails, it will already have logged
2981 the error. */
2982
2983 rc = tls_init(NULL, NULL,
2984 #ifndef DISABLE_OCSP
2985     tls_ocsp_file,
2986 #endif
2987     NULL, &dummy_statep, &tls_in, errstr);
2988 if (rc != OK) return rc;
2989 ctx = state_server.lib_state.lib_ctx;
2990
2991 /* In OpenSSL, cipher components are separated by hyphens. In GnuTLS, they
2992 were historically separated by underscores. So that I can use either form in my
2993 tests, and also for general convenience, we turn underscores into hyphens here.
2994
2995 XXX SSL_CTX_set_cipher_list() is replaced by SSL_CTX_set_ciphersuites()
2996 for TLS 1.3 .  Since we do not call it at present we get the default list:
2997 TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
2998 */
2999
3000 if (state_server.lib_state.pri_string)
3001   { DEBUG(D_tls) debug_printf("TLS: cipher list was preloaded\n"); }
3002 else 
3003   {
3004   if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers, errstr))
3005     return FAIL;
3006
3007   if (  expciphers
3008      && (rc = server_load_ciphers(ctx, &state_server, expciphers, errstr)) != OK)
3009     return rc;
3010   }
3011
3012 /* If this is a host for which certificate verification is mandatory or
3013 optional, set up appropriately. */
3014
3015 tls_in.certificate_verified = FALSE;
3016 #ifdef SUPPORT_DANE
3017 tls_in.dane_verified = FALSE;
3018 #endif
3019 server_verify_callback_called = FALSE;
3020
3021 if (verify_check_host(&tls_verify_hosts) == OK)
3022   server_verify_optional = FALSE;
3023 else if (verify_check_host(&tls_try_verify_hosts) == OK)
3024   server_verify_optional = TRUE;
3025 else
3026   goto skip_certs;
3027
3028   {
3029   uschar * expcerts;
3030   if (!expand_check(tls_verify_certificates, US"tls_verify_certificates",
3031                     &expcerts, errstr))
3032     return DEFER;
3033   DEBUG(D_tls) debug_printf("tls_verify_certificates: %s\n", expcerts);
3034
3035   if (state_server.lib_state.cabundle)
3036     { DEBUG(D_tls) debug_printf("TLS: CA bundle for server was preloaded\n"); }
3037   else
3038     if ((rc = setup_certs(ctx, expcerts, tls_crl, NULL, errstr)) != OK)
3039       return rc;
3040
3041   if (expcerts && *expcerts)
3042     setup_cert_verify(ctx, server_verify_optional, verify_callback_server);
3043   }
3044 skip_certs: ;
3045
3046 #ifndef DISABLE_TLS_RESUME
3047 SSL_CTX_set_tlsext_ticket_key_cb(ctx, ticket_key_callback);
3048 /* despite working, appears to always return failure, so ignoring */
3049 #endif
3050 #ifdef OPENSSL_HAVE_NUM_TICKETS
3051 # ifndef DISABLE_TLS_RESUME
3052 SSL_CTX_set_num_tickets(ctx, tls_in.host_resumable ? 1 : 0);
3053 # else
3054 SSL_CTX_set_num_tickets(ctx, 0);        /* send no TLS1.3 stateful-tickets */
3055 # endif
3056 #endif
3057
3058
3059 /* Prepare for new connection */
3060
3061 if (!(ssl = SSL_new(ctx)))
3062   return tls_error(US"SSL_new", NULL, NULL, errstr);
3063 state_server.lib_state.lib_ssl = ssl;
3064
3065 /* Warning: we used to SSL_clear(ssl) here, it was removed.
3066  *
3067  * With the SSL_clear(), we get strange interoperability bugs with
3068  * OpenSSL 1.0.1b and TLS1.1/1.2.  It looks as though this may be a bug in
3069  * OpenSSL itself, as a clear should not lead to inability to follow protocols.
3070  *
3071  * The SSL_clear() call is to let an existing SSL* be reused, typically after
3072  * session shutdown.  In this case, we have a brand new object and there's no
3073  * obvious reason to immediately clear it.  I'm guessing that this was
3074  * originally added because of incomplete initialisation which the clear fixed,
3075  * in some historic release.
3076  */
3077
3078 /* Set context and tell client to go ahead, except in the case of TLS startup
3079 on connection, where outputting anything now upsets the clients and tends to
3080 make them disconnect. We need to have an explicit fflush() here, to force out
3081 the response. Other smtp_printf() calls do not need it, because in non-TLS
3082 mode, the fflush() happens when smtp_getc() is called. */
3083
3084 SSL_set_session_id_context(ssl, sid_ctx, Ustrlen(sid_ctx));
3085 if (!tls_in.on_connect)
3086   {
3087   smtp_printf("220 TLS go ahead\r\n", FALSE);
3088   fflush(smtp_out);
3089   }
3090
3091 /* Now negotiate the TLS session. We put our own timer on it, since it seems
3092 that the OpenSSL library doesn't. */
3093
3094 SSL_set_wfd(ssl, fileno(smtp_out));
3095 SSL_set_rfd(ssl, fileno(smtp_in));
3096 SSL_set_accept_state(ssl);
3097
3098 DEBUG(D_tls) debug_printf("Calling SSL_accept\n");
3099
3100 ERR_clear_error();
3101 sigalrm_seen = FALSE;
3102 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3103 rc = SSL_accept(ssl);
3104 ALARM_CLR(0);
3105
3106 if (rc <= 0)
3107   {
3108   int error = SSL_get_error(ssl, rc);
3109   switch(error)
3110     {
3111     case SSL_ERROR_NONE:
3112       break;
3113
3114     case SSL_ERROR_ZERO_RETURN:
3115       DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
3116       (void) tls_error(US"SSL_accept", NULL, sigalrm_seen ? US"timed out" : NULL, errstr);
3117
3118       if (SSL_get_shutdown(ssl) == SSL_RECEIVED_SHUTDOWN)
3119             SSL_shutdown(ssl);
3120
3121       tls_close(NULL, TLS_NO_SHUTDOWN);
3122       return FAIL;
3123
3124     /* Handle genuine errors */
3125     case SSL_ERROR_SSL:
3126       {
3127       uschar * s = NULL;
3128       int r = ERR_GET_REASON(ERR_peek_error());
3129       if (  r == SSL_R_WRONG_VERSION_NUMBER
3130 #ifdef SSL_R_VERSION_TOO_LOW
3131          || r == SSL_R_VERSION_TOO_LOW
3132 #endif
3133          || r == SSL_R_UNKNOWN_PROTOCOL || r == SSL_R_UNSUPPORTED_PROTOCOL)
3134         s = string_sprintf("%s (%s)", s, SSL_get_version(ssl));
3135       (void) tls_error(US"SSL_accept", NULL, sigalrm_seen ? US"timed out" : s, errstr);
3136       return FAIL;
3137       }
3138
3139     default:
3140       DEBUG(D_tls) debug_printf("Got SSL error %d\n", error);
3141       if (error == SSL_ERROR_SYSCALL)
3142         {
3143         if (!errno)
3144           {
3145           *errstr = US"SSL_accept: TCP connection closed by peer";
3146           return FAIL;
3147           }
3148         DEBUG(D_tls) debug_printf(" - syscall %s\n", strerror(errno));
3149         }
3150       (void) tls_error(US"SSL_accept", NULL,
3151                       sigalrm_seen ? US"timed out"
3152                       : ERR_peek_error() ? NULL : string_sprintf("ret %d", error),
3153                       errstr);
3154       return FAIL;
3155     }
3156   }
3157
3158 DEBUG(D_tls) debug_printf("SSL_accept was successful\n");
3159 ERR_clear_error();      /* Even success can leave errors in the stack. Seen with
3160                         anon-authentication ciphersuite negotiated. */
3161
3162 #ifndef DISABLE_TLS_RESUME
3163 if (SSL_session_reused(ssl))
3164   {
3165   tls_in.resumption |= RESUME_USED;
3166   DEBUG(D_tls) debug_printf("Session reused\n");
3167   }
3168 #endif
3169
3170 /* TLS has been set up. Record data for the connection,
3171 adjust the input functions to read via TLS, and initialize things. */
3172
3173 #ifdef SSL_get_extms_support
3174 tls_in.ext_master_secret = SSL_get_extms_support(ssl) == 1;
3175 #endif
3176 peer_cert(ssl, &tls_in, peerdn, sizeof(peerdn));
3177
3178 tls_in.ver = tlsver_name(ssl);
3179 tls_in.cipher = construct_cipher_name(ssl, tls_in.ver, &tls_in.bits);
3180 tls_in.cipher_stdname = cipher_stdname_ssl(ssl);
3181
3182 DEBUG(D_tls)
3183   {
3184   uschar buf[2048];
3185   if (SSL_get_shared_ciphers(ssl, CS buf, sizeof(buf)))
3186     debug_printf("Shared ciphers: %s\n", buf);
3187
3188 #ifdef EXIM_HAVE_OPENSSL_KEYLOG
3189   {
3190   BIO * bp = BIO_new_fp(debug_file, BIO_NOCLOSE);
3191   SSL_SESSION_print_keylog(bp, SSL_get_session(ssl));
3192   BIO_free(bp);
3193   }
3194 #endif
3195
3196 #ifdef EXIM_HAVE_SESSION_TICKET
3197   {
3198   SSL_SESSION * ss = SSL_get_session(ssl);
3199   if (SSL_SESSION_has_ticket(ss))       /* 1.1.0 */
3200     debug_printf("The session has a ticket, life %lu seconds\n",
3201       SSL_SESSION_get_ticket_lifetime_hint(ss));
3202   }
3203 #endif
3204   }
3205
3206 /* Record the certificate we presented */
3207   {
3208   X509 * crt = SSL_get_certificate(ssl);
3209   tls_in.ourcert = crt ? X509_dup(crt) : NULL;
3210   }
3211
3212 /* Channel-binding info for authenticators
3213 See description in https://paquier.xyz/postgresql-2/channel-binding-openssl/ */
3214   {
3215   uschar c, * s;
3216   size_t len = SSL_get_peer_finished(ssl, &c, 0);
3217   int old_pool = store_pool;
3218
3219   SSL_get_peer_finished(ssl, s = store_get((int)len, FALSE), len);
3220   store_pool = POOL_PERM;
3221     tls_in.channelbinding = b64encode_taint(CUS s, (int)len, FALSE);
3222   store_pool = old_pool;
3223   DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage %p\n", tls_in.channelbinding);
3224   }
3225
3226 /* Only used by the server-side tls (tls_in), including tls_getc.
3227    Client-side (tls_out) reads (seem to?) go via
3228    smtp_read_response()/ip_recv().
3229    Hence no need to duplicate for _in and _out.
3230  */
3231 if (!ssl_xfer_buffer) ssl_xfer_buffer = store_malloc(ssl_xfer_buffer_size);
3232 ssl_xfer_buffer_lwm = ssl_xfer_buffer_hwm = 0;
3233 ssl_xfer_eof = ssl_xfer_error = FALSE;
3234
3235 receive_getc = tls_getc;
3236 receive_getbuf = tls_getbuf;
3237 receive_get_cache = tls_get_cache;
3238 receive_ungetc = tls_ungetc;
3239 receive_feof = tls_feof;
3240 receive_ferror = tls_ferror;
3241 receive_smtp_buffered = tls_smtp_buffered;
3242
3243 tls_in.active.sock = fileno(smtp_out);
3244 tls_in.active.tls_ctx = NULL;   /* not using explicit ctx for server-side */
3245 return OK;
3246 }
3247
3248
3249
3250
3251 static int
3252 tls_client_basic_ctx_init(SSL_CTX * ctx,
3253     host_item * host, smtp_transport_options_block * ob, exim_openssl_state_st * state,
3254     uschar ** errstr)
3255 {
3256 int rc;
3257
3258 /* Back-compatible old behaviour if tls_verify_certificates is set but both
3259 tls_verify_hosts and tls_try_verify_hosts are not set. Check only the specified
3260 host patterns if one of them is set with content. */
3261
3262 if (  (  (  !ob->tls_verify_hosts || !ob->tls_verify_hosts
3263          || Ustrcmp(ob->tls_try_verify_hosts, ":") == 0
3264          )
3265       && (  !ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts
3266          || Ustrcmp(ob->tls_try_verify_hosts, ":") == 0
3267          )
3268       )
3269    || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
3270    )
3271   client_verify_optional = FALSE;
3272 else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
3273   client_verify_optional = TRUE;
3274 else
3275   return OK;
3276
3277   {
3278   uschar * expcerts;
3279   if (!expand_check(ob->tls_verify_certificates, US"tls_verify_certificates",
3280                     &expcerts, errstr))
3281     return DEFER;
3282   DEBUG(D_tls) debug_printf("tls_verify_certificates: %s\n", expcerts);
3283
3284   if (state->lib_state.cabundle)
3285     { DEBUG(D_tls) debug_printf("TLS: CA bundle was preloaded\n"); }
3286   else
3287     if ((rc = setup_certs(ctx, expcerts, ob->tls_crl, host, errstr)) != OK)
3288       return rc;
3289
3290   if (expcerts && *expcerts)
3291     setup_cert_verify(ctx, client_verify_optional, verify_callback_client);
3292   }
3293
3294 if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
3295   {
3296   state->verify_cert_hostnames =
3297 #ifdef SUPPORT_I18N
3298     string_domain_utf8_to_alabel(host->certname, NULL);
3299 #else
3300     host->certname;
3301 #endif
3302   DEBUG(D_tls) debug_printf("Cert hostname to check: \"%s\"\n",
3303                     state->verify_cert_hostnames);
3304   }
3305 return OK;
3306 }
3307
3308
3309 #ifdef SUPPORT_DANE
3310 static int
3311 dane_tlsa_load(SSL * ssl, host_item * host, dns_answer * dnsa, uschar ** errstr)
3312 {
3313 dns_scan dnss;
3314 const char * hostnames[2] = { CS host->name, NULL };
3315 int found = 0;
3316
3317 if (DANESSL_init(ssl, NULL, hostnames) != 1)
3318   return tls_error(US"hostnames load", host, NULL, errstr);
3319
3320 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
3321      rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
3322     ) if (rr->type == T_TLSA && rr->size > 3)
3323   {
3324   const uschar * p = rr->data;
3325   uint8_t usage, selector, mtype;
3326   const char * mdname;
3327
3328   usage = *p++;
3329
3330   /* Only DANE-TA(2) and DANE-EE(3) are supported */
3331   if (usage != 2 && usage != 3) continue;
3332
3333   selector = *p++;
3334   mtype = *p++;
3335
3336   switch (mtype)
3337     {
3338     default: continue;  /* Only match-types 0, 1, 2 are supported */
3339     case 0:  mdname = NULL; break;
3340     case 1:  mdname = "sha256"; break;
3341     case 2:  mdname = "sha512"; break;
3342     }
3343
3344   found++;
3345   switch (DANESSL_add_tlsa(ssl, usage, selector, mdname, p, rr->size - 3))
3346     {
3347     default:
3348       return tls_error(US"tlsa load", host, NULL, errstr);
3349     case 0:     /* action not taken */
3350     case 1:     break;
3351     }
3352
3353   tls_out.tlsa_usage |= 1<<usage;
3354   }
3355
3356 if (found)
3357   return OK;
3358
3359 log_write(0, LOG_MAIN, "DANE error: No usable TLSA records");
3360 return DEFER;
3361 }
3362 #endif  /*SUPPORT_DANE*/
3363
3364
3365
3366 #ifndef DISABLE_TLS_RESUME
3367 /* On the client, get any stashed session for the given IP from hints db
3368 and apply it to the ssl-connection for attempted resumption. */
3369
3370 static void
3371 tls_retrieve_session(tls_support * tlsp, SSL * ssl, const uschar * key)
3372 {
3373 tlsp->resumption |= RESUME_SUPPORTED;
3374 if (tlsp->host_resumable)
3375   {
3376   dbdata_tls_session * dt;
3377   int len;
3378   open_db dbblock, * dbm_file;
3379
3380   tlsp->resumption |= RESUME_CLIENT_REQUESTED;
3381   DEBUG(D_tls) debug_printf("checking for resumable session for %s\n", key);
3382   if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
3383     {
3384     /* key for the db is the IP */
3385     if ((dt = dbfn_read_with_length(dbm_file, key, &len)))
3386       {
3387       SSL_SESSION * ss = NULL;
3388       const uschar * sess_asn1 = dt->session;
3389
3390       len -= sizeof(dbdata_tls_session);
3391       if (!(d2i_SSL_SESSION(&ss, &sess_asn1, (long)len)))
3392         {
3393         DEBUG(D_tls)
3394           {
3395           ERR_error_string_n(ERR_get_error(),
3396             ssl_errstring, sizeof(ssl_errstring));
3397           debug_printf("decoding session: %s\n", ssl_errstring);
3398           }
3399         }
3400 #ifdef EXIM_HAVE_SESSION_TICKET
3401       else if ( SSL_SESSION_get_ticket_lifetime_hint(ss) + dt->time_stamp
3402                < time(NULL))
3403         {
3404         DEBUG(D_tls) debug_printf("session expired\n");
3405         dbfn_delete(dbm_file, key);
3406         }
3407 #endif
3408       else if (!SSL_set_session(ssl, ss))
3409         {
3410         DEBUG(D_tls)
3411           {
3412           ERR_error_string_n(ERR_get_error(),
3413             ssl_errstring, sizeof(ssl_errstring));
3414           debug_printf("applying session to ssl: %s\n", ssl_errstring);
3415           }
3416         }
3417       else
3418         {
3419         DEBUG(D_tls) debug_printf("good session\n");
3420         tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
3421         tlsp->verify_override = dt->verify_override;
3422         tlsp->ocsp = dt->ocsp;
3423         }
3424       }
3425     else
3426       DEBUG(D_tls) debug_printf("no session record\n");
3427     dbfn_close(dbm_file);
3428     }
3429   }
3430 }
3431
3432
3433 /* On the client, save the session for later resumption */
3434
3435 static int
3436 tls_save_session_cb(SSL * ssl, SSL_SESSION * ss)
3437 {
3438 exim_openssl_state_st * cbinfo = SSL_get_ex_data(ssl, tls_exdata_idx);
3439 tls_support * tlsp;
3440
3441 DEBUG(D_tls) debug_printf("tls_save_session_cb\n");
3442
3443 if (!cbinfo || !(tlsp = cbinfo->tlsp)->host_resumable) return 0;
3444
3445 # ifdef OPENSSL_HAVE_NUM_TICKETS
3446 if (SSL_SESSION_is_resumable(ss))       /* 1.1.1 */
3447 # endif
3448   {
3449   int len = i2d_SSL_SESSION(ss, NULL);
3450   int dlen = sizeof(dbdata_tls_session) + len;
3451   dbdata_tls_session * dt = store_get(dlen, TRUE);
3452   uschar * s = dt->session;
3453   open_db dbblock, * dbm_file;
3454
3455   DEBUG(D_tls) debug_printf("session is resumable\n");
3456   tlsp->resumption |= RESUME_SERVER_TICKET;     /* server gave us a ticket */
3457
3458   dt->verify_override = tlsp->verify_override;
3459   dt->ocsp = tlsp->ocsp;
3460   (void) i2d_SSL_SESSION(ss, &s);               /* s gets bumped to end */
3461
3462   if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
3463     {
3464     const uschar * key = cbinfo->host->address;
3465     dbfn_delete(dbm_file, key);
3466     dbfn_write(dbm_file, key, dt, dlen);
3467     dbfn_close(dbm_file);
3468     DEBUG(D_tls) debug_printf("wrote session (len %u) to db\n",
3469                   (unsigned)dlen);
3470     }
3471   }
3472 return 1;
3473 }
3474
3475
3476 static void
3477 tls_client_ctx_resume_prehandshake(
3478   exim_openssl_client_tls_ctx * exim_client_ctx, tls_support * tlsp,
3479   smtp_transport_options_block * ob, host_item * host)
3480 {
3481 /* Should the client request a session resumption ticket? */
3482 if (verify_check_given_host(CUSS &ob->tls_resumption_hosts, host) == OK)
3483   {
3484   tlsp->host_resumable = TRUE;
3485
3486   SSL_CTX_set_session_cache_mode(exim_client_ctx->ctx,
3487         SSL_SESS_CACHE_CLIENT
3488         | SSL_SESS_CACHE_NO_INTERNAL | SSL_SESS_CACHE_NO_AUTO_CLEAR);
3489   SSL_CTX_sess_set_new_cb(exim_client_ctx->ctx, tls_save_session_cb);
3490   }
3491 }
3492
3493 static BOOL
3494 tls_client_ssl_resume_prehandshake(SSL * ssl, tls_support * tlsp,
3495   host_item * host, uschar ** errstr)
3496 {
3497 if (tlsp->host_resumable)
3498   {
3499   DEBUG(D_tls)
3500     debug_printf("tls_resumption_hosts overrides openssl_options, enabling tickets\n");
3501   SSL_clear_options(ssl, SSL_OP_NO_TICKET);
3502
3503   tls_exdata_idx = SSL_get_ex_new_index(0, 0, 0, 0, 0);
3504   if (!SSL_set_ex_data(ssl, tls_exdata_idx, client_static_state))
3505     {
3506     tls_error(US"set ex_data", host, NULL, errstr);
3507     return FALSE;
3508     }
3509   debug_printf("tls_exdata_idx %d cbinfo %p\n", tls_exdata_idx, client_static_state);
3510   }
3511
3512 tlsp->resumption = RESUME_SUPPORTED;
3513 /* Pick up a previous session, saved on an old ticket */
3514 tls_retrieve_session(tlsp, ssl, host->address);
3515 return TRUE;
3516 }
3517
3518 static void
3519 tls_client_resume_posthandshake(exim_openssl_client_tls_ctx * exim_client_ctx,
3520   tls_support * tlsp)
3521 {
3522 if (SSL_session_reused(exim_client_ctx->ssl))
3523   {
3524   DEBUG(D_tls) debug_printf("The session was reused\n");
3525   tlsp->resumption |= RESUME_USED;
3526   }
3527 }
3528 #endif  /* !DISABLE_TLS_RESUME */
3529
3530
3531 /*************************************************
3532 *    Start a TLS session in a client             *
3533 *************************************************/
3534
3535 /* Called from the smtp transport after STARTTLS has been accepted.
3536
3537 Arguments:
3538   cctx          connection context
3539   conn_args     connection details
3540   cookie        datum for randomness; can be NULL
3541   tlsp          record details of TLS channel configuration here; must be non-NULL
3542   errstr        error string pointer
3543
3544 Returns:        TRUE for success with TLS session context set in connection context,
3545                 FALSE on error
3546 */
3547
3548 BOOL
3549 tls_client_start(client_conn_ctx * cctx, smtp_connect_args * conn_args,
3550   void * cookie, tls_support * tlsp, uschar ** errstr)
3551 {
3552 host_item * host = conn_args->host;             /* for msgs and option-tests */
3553 transport_instance * tb = conn_args->tblock;    /* always smtp or NULL */
3554 smtp_transport_options_block * ob = tb
3555   ? (smtp_transport_options_block *)tb->options_block
3556   : &smtp_transport_option_defaults;
3557 exim_openssl_client_tls_ctx * exim_client_ctx;
3558 uschar * expciphers;
3559 int rc;
3560 static uschar peerdn[256];
3561
3562 #ifndef DISABLE_OCSP
3563 BOOL request_ocsp = FALSE;
3564 BOOL require_ocsp = FALSE;
3565 #endif
3566
3567 rc = store_pool;
3568 store_pool = POOL_PERM;
3569 exim_client_ctx = store_get(sizeof(exim_openssl_client_tls_ctx), FALSE);
3570 exim_client_ctx->corked = NULL;
3571 store_pool = rc;
3572
3573 #ifdef SUPPORT_DANE
3574 tlsp->tlsa_usage = 0;
3575 #endif
3576
3577 #ifndef DISABLE_OCSP
3578   {
3579 # ifdef SUPPORT_DANE
3580   /*XXX this should be moved to caller, to be common across gnutls/openssl */
3581   if (  conn_args->dane
3582      && ob->hosts_request_ocsp[0] == '*'
3583      && ob->hosts_request_ocsp[1] == '\0'
3584      )
3585     {
3586     /* Unchanged from default.  Use a safer one under DANE */
3587     request_ocsp = TRUE;
3588     ob->hosts_request_ocsp = US"${if or { {= {0}{$tls_out_tlsa_usage}} "
3589                                       "   {= {4}{$tls_out_tlsa_usage}} } "
3590                                  " {*}{}}";
3591     }
3592 # endif
3593
3594   if ((require_ocsp =
3595         verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK))
3596     request_ocsp = TRUE;
3597   else
3598 # ifdef SUPPORT_DANE
3599     if (!request_ocsp)
3600 # endif
3601       request_ocsp =
3602         verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
3603   }
3604 #endif
3605
3606 rc = tls_init(host, ob,
3607 #ifndef DISABLE_OCSP
3608     (void *)(long)request_ocsp,
3609 #endif
3610     cookie, &client_static_state, tlsp, errstr);
3611 if (rc != OK) return FALSE;
3612
3613 exim_client_ctx->ctx = client_static_state->lib_state.lib_ctx;
3614
3615 tlsp->certificate_verified = FALSE;
3616 client_verify_callback_called = FALSE;
3617
3618 expciphers = NULL;
3619 #ifdef SUPPORT_DANE
3620 if (conn_args->dane)
3621   {
3622   /* We fall back to tls_require_ciphers if unset, empty or forced failure, but
3623   other failures should be treated as problems. */
3624   if (ob->dane_require_tls_ciphers &&
3625       !expand_check(ob->dane_require_tls_ciphers, US"dane_require_tls_ciphers",
3626         &expciphers, errstr))
3627     return FALSE;
3628   if (expciphers && *expciphers == '\0')
3629     expciphers = NULL;
3630   }
3631 #endif
3632 if (!expciphers &&
3633     !expand_check(ob->tls_require_ciphers, US"tls_require_ciphers",
3634       &expciphers, errstr))
3635   return FALSE;
3636
3637 /* In OpenSSL, cipher components are separated by hyphens. In GnuTLS, they
3638 are separated by underscores. So that I can use either form in my tests, and
3639 also for general convenience, we turn underscores into hyphens here. */
3640
3641 if (expciphers)
3642   {
3643   uschar *s = expciphers;
3644   while (*s) { if (*s == '_') *s = '-'; s++; }
3645   DEBUG(D_tls) debug_printf("required ciphers: %s\n", expciphers);
3646   if (!SSL_CTX_set_cipher_list(exim_client_ctx->ctx, CS expciphers))
3647     {
3648     tls_error(US"SSL_CTX_set_cipher_list", host, NULL, errstr);
3649     return FALSE;
3650     }
3651   }
3652
3653 #ifdef SUPPORT_DANE
3654 if (conn_args->dane)
3655   {
3656   SSL_CTX_set_verify(exim_client_ctx->ctx,
3657     SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
3658     verify_callback_client_dane);
3659
3660   if (!DANESSL_library_init())
3661     {
3662     tls_error(US"library init", host, NULL, errstr);
3663     return FALSE;
3664     }
3665   if (DANESSL_CTX_init(exim_client_ctx->ctx) <= 0)
3666     {
3667     tls_error(US"context init", host, NULL, errstr);
3668     return FALSE;
3669     }
3670   }
3671 else
3672
3673 #endif
3674
3675 if (tls_client_basic_ctx_init(exim_client_ctx->ctx, host, ob,
3676       client_static_state, errstr) != OK)
3677   return FALSE;
3678
3679 #ifndef DISABLE_TLS_RESUME
3680 tls_client_ctx_resume_prehandshake(exim_client_ctx, tlsp, ob, host);
3681 #endif
3682
3683
3684 if (!(exim_client_ctx->ssl = SSL_new(exim_client_ctx->ctx)))
3685   {
3686   tls_error(US"SSL_new", host, NULL, errstr);
3687   return FALSE;
3688   }
3689 SSL_set_session_id_context(exim_client_ctx->ssl, sid_ctx, Ustrlen(sid_ctx));
3690
3691 SSL_set_fd(exim_client_ctx->ssl, cctx->sock);
3692 SSL_set_connect_state(exim_client_ctx->ssl);
3693
3694 if (ob->tls_sni)
3695   {
3696   if (!expand_check(ob->tls_sni, US"tls_sni", &tlsp->sni, errstr))
3697     return FALSE;
3698   if (!tlsp->sni)
3699     {
3700     DEBUG(D_tls) debug_printf("Setting TLS SNI forced to fail, not sending\n");
3701     }
3702   else if (!Ustrlen(tlsp->sni))
3703     tlsp->sni = NULL;
3704   else
3705     {
3706 #ifdef EXIM_HAVE_OPENSSL_TLSEXT
3707     DEBUG(D_tls) debug_printf("Setting TLS SNI \"%s\"\n", tlsp->sni);
3708     SSL_set_tlsext_host_name(exim_client_ctx->ssl, tlsp->sni);
3709 #else
3710     log_write(0, LOG_MAIN, "SNI unusable with this OpenSSL library version; ignoring \"%s\"\n",
3711           tlsp->sni);
3712 #endif
3713     }
3714   }
3715
3716 #ifdef SUPPORT_DANE
3717 if (conn_args->dane)
3718   if (dane_tlsa_load(exim_client_ctx->ssl, host, &conn_args->tlsa_dnsa, errstr) != OK)
3719     return FALSE;
3720 #endif
3721
3722 #ifndef DISABLE_OCSP
3723 /* Request certificate status at connection-time.  If the server
3724 does OCSP stapling we will get the callback (set in tls_init()) */
3725 # ifdef SUPPORT_DANE
3726 if (request_ocsp)
3727   {
3728   const uschar * s;
3729   if (  ((s = ob->hosts_require_ocsp) && Ustrstr(s, US"tls_out_tlsa_usage"))
3730      || ((s = ob->hosts_request_ocsp) && Ustrstr(s, US"tls_out_tlsa_usage"))
3731      )
3732     {   /* Re-eval now $tls_out_tlsa_usage is populated.  If
3733         this means we avoid the OCSP request, we wasted the setup
3734         cost in tls_init(). */
3735     require_ocsp = verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK;
3736     request_ocsp = require_ocsp
3737       || verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
3738     }
3739   }
3740 # endif
3741
3742 if (request_ocsp)
3743   {
3744   SSL_set_tlsext_status_type(exim_client_ctx->ssl, TLSEXT_STATUSTYPE_ocsp);
3745   client_static_state->u_ocsp.client.verify_required = require_ocsp;
3746   tlsp->ocsp = OCSP_NOT_RESP;
3747   }
3748 #endif
3749
3750 #ifndef DISABLE_TLS_RESUME
3751 if (!tls_client_ssl_resume_prehandshake(exim_client_ctx->ssl, tlsp, host,
3752       errstr))
3753   return FALSE;
3754 #endif
3755
3756 #ifndef DISABLE_EVENT
3757 client_static_state->event_action = tb ? tb->event_action : NULL;
3758 #endif
3759
3760 /* There doesn't seem to be a built-in timeout on connection. */
3761
3762 DEBUG(D_tls) debug_printf("Calling SSL_connect\n");
3763 sigalrm_seen = FALSE;
3764 ALARM(ob->command_timeout);
3765 rc = SSL_connect(exim_client_ctx->ssl);
3766 ALARM_CLR(0);
3767
3768 #ifdef SUPPORT_DANE
3769 if (conn_args->dane)
3770   DANESSL_cleanup(exim_client_ctx->ssl);
3771 #endif
3772
3773 if (rc <= 0)
3774   {
3775   tls_error(US"SSL_connect", host, sigalrm_seen ? US"timed out" : NULL, errstr);
3776   return FALSE;
3777   }
3778
3779 DEBUG(D_tls)
3780   {
3781   debug_printf("SSL_connect succeeded\n");
3782 #ifdef EXIM_HAVE_OPENSSL_KEYLOG
3783   {
3784   BIO * bp = BIO_new_fp(debug_file, BIO_NOCLOSE);
3785   SSL_SESSION_print_keylog(bp, SSL_get_session(exim_client_ctx->ssl));
3786   BIO_free(bp);
3787   }
3788 #endif
3789   }
3790
3791 #ifndef DISABLE_TLS_RESUME
3792 tls_client_resume_posthandshake(exim_client_ctx, tlsp);
3793 #endif
3794
3795 #ifdef SSL_get_extms_support
3796 tlsp->ext_master_secret = SSL_get_extms_support(exim_client_ctx->ssl) == 1;
3797 #endif
3798 peer_cert(exim_client_ctx->ssl, tlsp, peerdn, sizeof(peerdn));
3799
3800 tlsp->ver = tlsver_name(exim_client_ctx->ssl);
3801 tlsp->cipher = construct_cipher_name(exim_client_ctx->ssl, tlsp->ver, &tlsp->bits);
3802 tlsp->cipher_stdname = cipher_stdname_ssl(exim_client_ctx->ssl);
3803
3804 /* Record the certificate we presented */
3805   {
3806   X509 * crt = SSL_get_certificate(exim_client_ctx->ssl);
3807   tlsp->ourcert = crt ? X509_dup(crt) : NULL;
3808   }
3809
3810 /*XXX will this work with continued-TLS? */
3811 /* Channel-binding info for authenticators */
3812   {
3813   uschar c, * s;
3814   size_t len = SSL_get_finished(exim_client_ctx->ssl, &c, 0);
3815   int old_pool = store_pool;
3816
3817   SSL_get_finished(exim_client_ctx->ssl, s = store_get((int)len, TRUE), len);
3818   store_pool = POOL_PERM;
3819     tlsp->channelbinding = b64encode_taint(CUS s, (int)len, TRUE);
3820   store_pool = old_pool;
3821   DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage %p %p\n", tlsp->channelbinding, tlsp);
3822   }
3823
3824 tlsp->active.sock = cctx->sock;
3825 tlsp->active.tls_ctx = exim_client_ctx;
3826 cctx->tls_ctx = exim_client_ctx;
3827 return TRUE;
3828 }
3829
3830
3831
3832
3833
3834 static BOOL
3835 tls_refill(unsigned lim)
3836 {
3837 SSL * ssl = state_server.lib_state.lib_ssl;
3838 int error;
3839 int inbytes;
3840
3841 DEBUG(D_tls) debug_printf("Calling SSL_read(%p, %p, %u)\n", ssl,
3842   ssl_xfer_buffer, ssl_xfer_buffer_size);
3843
3844 ERR_clear_error();
3845 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3846 inbytes = SSL_read(ssl, CS ssl_xfer_buffer,
3847                   MIN(ssl_xfer_buffer_size, lim));
3848 error = SSL_get_error(ssl, inbytes);
3849 if (smtp_receive_timeout > 0) ALARM_CLR(0);
3850
3851 if (had_command_timeout)                /* set by signal handler */
3852   smtp_command_timeout_exit();          /* does not return */
3853 if (had_command_sigterm)
3854   smtp_command_sigterm_exit();
3855 if (had_data_timeout)
3856   smtp_data_timeout_exit();
3857 if (had_data_sigint)
3858   smtp_data_sigint_exit();
3859
3860 /* SSL_ERROR_ZERO_RETURN appears to mean that the SSL session has been
3861 closed down, not that the socket itself has been closed down. Revert to
3862 non-SSL handling. */
3863
3864 switch(error)
3865   {
3866   case SSL_ERROR_NONE:
3867     break;
3868
3869   case SSL_ERROR_ZERO_RETURN:
3870     DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
3871
3872     if (SSL_get_shutdown(ssl) == SSL_RECEIVED_SHUTDOWN)
3873           SSL_shutdown(ssl);
3874
3875     tls_close(NULL, TLS_NO_SHUTDOWN);
3876     return FALSE;
3877
3878   /* Handle genuine errors */
3879   case SSL_ERROR_SSL:
3880     ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
3881     log_write(0, LOG_MAIN, "TLS error (SSL_read): %s", ssl_errstring);
3882     ssl_xfer_error = TRUE;
3883     return FALSE;
3884
3885   default:
3886     DEBUG(D_tls) debug_printf("Got SSL error %d\n", error);
3887     DEBUG(D_tls) if (error == SSL_ERROR_SYSCALL)
3888       debug_printf(" - syscall %s\n", strerror(errno));
3889     ssl_xfer_error = TRUE;
3890     return FALSE;
3891   }
3892
3893 #ifndef DISABLE_DKIM
3894 dkim_exim_verify_feed(ssl_xfer_buffer, inbytes);
3895 #endif
3896 ssl_xfer_buffer_hwm = inbytes;
3897 ssl_xfer_buffer_lwm = 0;
3898 return TRUE;
3899 }
3900
3901
3902 /*************************************************
3903 *            TLS version of getc                 *
3904 *************************************************/
3905
3906 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
3907 it refills the buffer via the SSL reading function.
3908
3909 Arguments:  lim         Maximum amount to read/buffer
3910 Returns:    the next character or EOF
3911
3912 Only used by the server-side TLS.
3913 */
3914
3915 int
3916 tls_getc(unsigned lim)
3917 {
3918 if (ssl_xfer_buffer_lwm >= ssl_xfer_buffer_hwm)
3919   if (!tls_refill(lim))
3920     return ssl_xfer_error ? EOF : smtp_getc(lim);
3921
3922 /* Something in the buffer; return next uschar */
3923
3924 return ssl_xfer_buffer[ssl_xfer_buffer_lwm++];
3925 }
3926
3927 uschar *
3928 tls_getbuf(unsigned * len)
3929 {
3930 unsigned size;
3931 uschar * buf;
3932
3933 if (ssl_xfer_buffer_lwm >= ssl_xfer_buffer_hwm)
3934   if (!tls_refill(*len))
3935     {
3936     if (!ssl_xfer_error) return smtp_getbuf(len);
3937     *len = 0;
3938     return NULL;
3939     }
3940
3941 if ((size = ssl_xfer_buffer_hwm - ssl_xfer_buffer_lwm) > *len)
3942   size = *len;
3943 buf = &ssl_xfer_buffer[ssl_xfer_buffer_lwm];
3944 ssl_xfer_buffer_lwm += size;
3945 *len = size;
3946 return buf;
3947 }
3948
3949
3950 void
3951 tls_get_cache(void)
3952 {
3953 #ifndef DISABLE_DKIM
3954 int n = ssl_xfer_buffer_hwm - ssl_xfer_buffer_lwm;
3955 if (n > 0)
3956   dkim_exim_verify_feed(ssl_xfer_buffer+ssl_xfer_buffer_lwm, n);
3957 #endif
3958 }
3959
3960
3961 BOOL
3962 tls_could_read(void)
3963 {
3964 return ssl_xfer_buffer_lwm < ssl_xfer_buffer_hwm
3965     || SSL_pending(state_server.lib_state.lib_ssl) > 0;
3966 }
3967
3968
3969 /*************************************************
3970 *          Read bytes from TLS channel           *
3971 *************************************************/
3972
3973 /*
3974 Arguments:
3975   ct_ctx    client context pointer, or NULL for the one global server context
3976   buff      buffer of data
3977   len       size of buffer
3978
3979 Returns:    the number of bytes read
3980             -1 after a failed read, including EOF
3981
3982 Only used by the client-side TLS.
3983 */
3984
3985 int
3986 tls_read(void * ct_ctx, uschar *buff, size_t len)
3987 {
3988 SSL * ssl = ct_ctx ? ((exim_openssl_client_tls_ctx *)ct_ctx)->ssl
3989                   : state_server.lib_state.lib_ssl;
3990 int inbytes;
3991 int error;
3992
3993 DEBUG(D_tls) debug_printf("Calling SSL_read(%p, %p, %u)\n", ssl,
3994   buff, (unsigned int)len);
3995
3996 ERR_clear_error();
3997 inbytes = SSL_read(ssl, CS buff, len);
3998 error = SSL_get_error(ssl, inbytes);
3999
4000 if (error == SSL_ERROR_ZERO_RETURN)
4001   {
4002   DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
4003   return -1;
4004   }
4005 else if (error != SSL_ERROR_NONE)
4006   return -1;
4007
4008 return inbytes;
4009 }
4010
4011
4012
4013
4014
4015 /*************************************************
4016 *         Write bytes down TLS channel           *
4017 *************************************************/
4018
4019 /*
4020 Arguments:
4021   ct_ctx    client context pointer, or NULL for the one global server context
4022   buff      buffer of data
4023   len       number of bytes
4024   more      further data expected soon
4025
4026 Returns:    the number of bytes after a successful write,
4027             -1 after a failed write
4028
4029 Used by both server-side and client-side TLS.  Calling with len zero and more unset
4030 will flush buffered writes; buff can be null for this case.
4031 */
4032
4033 int
4034 tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
4035 {
4036 size_t olen = len;
4037 int outbytes, error;
4038 SSL * ssl = ct_ctx
4039   ? ((exim_openssl_client_tls_ctx *)ct_ctx)->ssl
4040   : state_server.lib_state.lib_ssl;
4041 static gstring * server_corked = NULL;
4042 gstring ** corkedp = ct_ctx
4043   ? &((exim_openssl_client_tls_ctx *)ct_ctx)->corked : &server_corked;
4044 gstring * corked = *corkedp;
4045
4046 DEBUG(D_tls) debug_printf("%s(%p, %lu%s)\n", __FUNCTION__,
4047   buff, (unsigned long)len, more ? ", more" : "");
4048
4049 /* Lacking a CORK or MSG_MORE facility (such as GnuTLS has) we copy data when
4050 "more" is notified.  This hack is only ok if small amounts are involved AND only
4051 one stream does it, in one context (i.e. no store reset).  Currently it is used
4052 for the responses to the received SMTP MAIL , RCPT, DATA sequence, only.
4053 We support callouts done by the server process by using a separate client
4054 context for the stashed information. */
4055 /* + if PIPE_COMMAND, banner & ehlo-resp for smmtp-on-connect. Suspect there's
4056 a store reset there, so use POOL_PERM. */
4057 /* + if CHUNKING, cmds EHLO,MAIL,RCPT(s),BDAT */
4058
4059 if (more || corked)
4060   {
4061   if (!len) buff = US &error;   /* dummy just so that string_catn is ok */
4062
4063   int save_pool = store_pool;
4064   store_pool = POOL_PERM;
4065
4066   corked = string_catn(corked, buff, len);
4067
4068   store_pool = save_pool;
4069
4070   if (more)
4071     {
4072     *corkedp = corked;
4073     return len;
4074     }
4075   buff = CUS corked->s;
4076   len = corked->ptr;
4077   *corkedp = NULL;
4078   }
4079
4080 for (int left = len; left > 0;)
4081   {
4082   DEBUG(D_tls) debug_printf("SSL_write(%p, %p, %d)\n", ssl, buff, left);
4083   ERR_clear_error();
4084   outbytes = SSL_write(ssl, CS buff, left);
4085   error = SSL_get_error(ssl, outbytes);
4086   DEBUG(D_tls) debug_printf("outbytes=%d error=%d\n", outbytes, error);
4087   switch (error)
4088     {
4089     case SSL_ERROR_NONE:        /* the usual case */
4090       left -= outbytes;
4091       buff += outbytes;
4092       break;
4093
4094     case SSL_ERROR_SSL:
4095       ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
4096       log_write(0, LOG_MAIN, "TLS error (SSL_write): %s", ssl_errstring);
4097       return -1;
4098
4099     case SSL_ERROR_ZERO_RETURN:
4100       log_write(0, LOG_MAIN, "SSL channel closed on write");
4101       return -1;
4102
4103     case SSL_ERROR_SYSCALL:
4104       if (ct_ctx || errno != ECONNRESET || !f.smtp_in_quit)
4105         log_write(0, LOG_MAIN, "SSL_write: (from %s) syscall: %s",
4106           sender_fullhost ? sender_fullhost : US"<unknown>",
4107           strerror(errno));
4108       else if (LOGGING(protocol_detail))
4109         log_write(0, LOG_MAIN, "[%s] after QUIT, client reset TCP before"
4110           " SMTP response and TLS close\n", sender_host_address);
4111       else
4112         DEBUG(D_tls) debug_printf("[%s] SSL_write: after QUIT,"
4113           " client reset TCP before TLS close\n", sender_host_address);
4114       return -1;
4115
4116     default:
4117       log_write(0, LOG_MAIN, "SSL_write error %d", error);
4118       return -1;
4119     }
4120   }
4121 return olen;
4122 }
4123
4124
4125
4126 /*
4127 Arguments:
4128   ct_ctx        client TLS context pointer, or NULL for the one global server context
4129 */
4130
4131 void
4132 tls_shutdown_wr(void * ct_ctx)
4133 {
4134 exim_openssl_client_tls_ctx * o_ctx = ct_ctx;
4135 SSL ** sslp = o_ctx ? &o_ctx->ssl : (SSL **) &state_server.lib_state.lib_ssl;
4136 int * fdp = o_ctx ? &tls_out.active.sock : &tls_in.active.sock;
4137 int rc;
4138
4139 if (*fdp < 0) return;  /* TLS was not active */
4140
4141 tls_write(ct_ctx, NULL, 0, FALSE);      /* flush write buffer */
4142
4143 HDEBUG(D_transport|D_tls|D_acl|D_v) debug_printf_indent("  SMTP(TLS shutdown)>>\n");
4144 rc = SSL_shutdown(*sslp);
4145 if (rc < 0) DEBUG(D_tls)
4146   {
4147   ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
4148   debug_printf("SSL_shutdown: %s\n", ssl_errstring);
4149   }
4150 }
4151
4152 /*************************************************
4153 *         Close down a TLS session               *
4154 *************************************************/
4155
4156 /* This is also called from within a delivery subprocess forked from the
4157 daemon, to shut down the TLS library, without actually doing a shutdown (which
4158 would tamper with the SSL session in the parent process).
4159
4160 Arguments:
4161   ct_ctx        client TLS context pointer, or NULL for the one global server context
4162   do_shutdown   0 no data-flush or TLS close-alert
4163                 1 if TLS close-alert is to be sent,
4164                 2 if also response to be waited for
4165
4166 Returns:     nothing
4167
4168 Used by both server-side and client-side TLS.
4169 */
4170
4171 void
4172 tls_close(void * ct_ctx, int do_shutdown)
4173 {
4174 exim_openssl_client_tls_ctx * o_ctx = ct_ctx;
4175 SSL ** sslp = o_ctx ? &o_ctx->ssl : (SSL **) &state_server.lib_state.lib_ssl;
4176 int * fdp = o_ctx ? &tls_out.active.sock : &tls_in.active.sock;
4177
4178 if (*fdp < 0) return;  /* TLS was not active */
4179
4180 if (do_shutdown)
4181   {
4182   int rc;
4183   DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
4184     do_shutdown > 1 ? " (with response-wait)" : "");
4185
4186   tls_write(ct_ctx, NULL, 0, FALSE);    /* flush write buffer */
4187
4188   if (  (rc = SSL_shutdown(*sslp)) == 0 /* send "close notify" alert */
4189      && do_shutdown > 1)
4190     {
4191     ALARM(2);
4192     rc = SSL_shutdown(*sslp);           /* wait for response */
4193     ALARM_CLR(0);
4194     }
4195
4196   if (rc < 0) DEBUG(D_tls)
4197     {
4198     ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
4199     debug_printf("SSL_shutdown: %s\n", ssl_errstring);
4200     }
4201   }
4202
4203 if (!o_ctx)             /* server side */
4204   {
4205 #ifndef DISABLE_OCSP
4206   sk_X509_pop_free(state_server.verify_stack, X509_free);
4207   state_server.verify_stack = NULL;
4208 #endif
4209
4210   receive_getc =        smtp_getc;
4211   receive_getbuf =      smtp_getbuf;
4212   receive_get_cache =   smtp_get_cache;
4213   receive_ungetc =      smtp_ungetc;
4214   receive_feof =        smtp_feof;
4215   receive_ferror =      smtp_ferror;
4216   receive_smtp_buffered = smtp_buffered;
4217   tls_in.active.tls_ctx = NULL;
4218   tls_in.sni = NULL;
4219   /* Leave bits, peercert, cipher, peerdn, certificate_verified set, for logging */
4220   }
4221
4222 SSL_free(*sslp);
4223 *sslp = NULL;
4224 *fdp = -1;
4225 }
4226
4227
4228
4229
4230 /*************************************************
4231 *  Let tls_require_ciphers be checked at startup *
4232 *************************************************/
4233
4234 /* The tls_require_ciphers option, if set, must be something which the
4235 library can parse.
4236
4237 Returns:     NULL on success, or error message
4238 */
4239
4240 uschar *
4241 tls_validate_require_cipher(void)
4242 {
4243 SSL_CTX *ctx;
4244 uschar *s, *expciphers, *err;
4245
4246 tls_openssl_init();
4247
4248 if (!(tls_require_ciphers && *tls_require_ciphers))
4249   return NULL;
4250
4251 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
4252                   &err))
4253   return US"failed to expand tls_require_ciphers";
4254
4255 if (!(expciphers && *expciphers))
4256   return NULL;
4257
4258 /* normalisation ripped from above */
4259 s = expciphers;
4260 while (*s != 0) { if (*s == '_') *s = '-'; s++; }
4261
4262 err = NULL;
4263
4264 if (lib_ctx_new(&ctx, NULL, &err) == OK)
4265   {
4266   DEBUG(D_tls)
4267     debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
4268
4269   if (!SSL_CTX_set_cipher_list(ctx, CS expciphers))
4270     {
4271     ERR_error_string_n(ERR_get_error(), ssl_errstring, sizeof(ssl_errstring));
4272     err = string_sprintf("SSL_CTX_set_cipher_list(%s) failed: %s",
4273                         expciphers, ssl_errstring);
4274     }
4275
4276   SSL_CTX_free(ctx);
4277   }
4278 return err;
4279 }
4280
4281
4282
4283
4284 /*************************************************
4285 *         Report the library versions.           *
4286 *************************************************/
4287
4288 /* There have historically been some issues with binary compatibility in
4289 OpenSSL libraries; if Exim (like many other applications) is built against
4290 one version of OpenSSL but the run-time linker picks up another version,
4291 it can result in serious failures, including crashing with a SIGSEGV.  So
4292 report the version found by the compiler and the run-time version.
4293
4294 Note: some OS vendors backport security fixes without changing the version
4295 number/string, and the version date remains unchanged.  The _build_ date
4296 will change, so we can more usefully assist with version diagnosis by also
4297 reporting the build date.
4298
4299 Arguments:   a FILE* to print the results to
4300 Returns:     nothing
4301 */
4302
4303 void
4304 tls_version_report(FILE *f)
4305 {
4306 fprintf(f, "Library version: OpenSSL: Compile: %s\n"
4307            "                          Runtime: %s\n"
4308            "                                 : %s\n",
4309            OPENSSL_VERSION_TEXT,
4310            SSLeay_version(SSLEAY_VERSION),
4311            SSLeay_version(SSLEAY_BUILT_ON));
4312 /* third line is 38 characters for the %s and the line is 73 chars long;
4313 the OpenSSL output includes a "built on: " prefix already. */
4314 }
4315
4316
4317
4318
4319 /*************************************************
4320 *            Random number generation            *
4321 *************************************************/
4322
4323 /* Pseudo-random number generation.  The result is not expected to be
4324 cryptographically strong but not so weak that someone will shoot themselves
4325 in the foot using it as a nonce in input in some email header scheme or
4326 whatever weirdness they'll twist this into.  The result should handle fork()
4327 and avoid repeating sequences.  OpenSSL handles that for us.
4328
4329 Arguments:
4330   max       range maximum
4331 Returns     a random number in range [0, max-1]
4332 */
4333
4334 int
4335 vaguely_random_number(int max)
4336 {
4337 unsigned int r;
4338 int i, needed_len;
4339 static pid_t pidlast = 0;
4340 pid_t pidnow;
4341 uschar smallbuf[sizeof(r)];
4342
4343 if (max <= 1)
4344   return 0;
4345
4346 pidnow = getpid();
4347 if (pidnow != pidlast)
4348   {
4349   /* Although OpenSSL documents that "OpenSSL makes sure that the PRNG state
4350   is unique for each thread", this doesn't apparently apply across processes,
4351   so our own warning from vaguely_random_number_fallback() applies here too.
4352   Fix per PostgreSQL. */
4353   if (pidlast != 0)
4354     RAND_cleanup();
4355   pidlast = pidnow;
4356   }
4357
4358 /* OpenSSL auto-seeds from /dev/random, etc, but this a double-check. */
4359 if (!RAND_status())
4360   {
4361   randstuff r;
4362   gettimeofday(&r.tv, NULL);
4363   r.p = getpid();
4364
4365   RAND_seed(US (&r), sizeof(r));
4366   }
4367 /* We're after pseudo-random, not random; if we still don't have enough data
4368 in the internal PRNG then our options are limited.  We could sleep and hope
4369 for entropy to come along (prayer technique) but if the system is so depleted
4370 in the first place then something is likely to just keep taking it.  Instead,
4371 we'll just take whatever little bit of pseudo-random we can still manage to
4372 get. */
4373
4374 needed_len = sizeof(r);
4375 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
4376 asked for a number less than 10. */
4377 for (r = max, i = 0; r; ++i)
4378   r >>= 1;
4379 i = (i + 7) / 8;
4380 if (i < needed_len)
4381   needed_len = i;
4382
4383 #ifdef EXIM_HAVE_RAND_PSEUDO
4384 /* We do not care if crypto-strong */
4385 i = RAND_pseudo_bytes(smallbuf, needed_len);
4386 #else
4387 i = RAND_bytes(smallbuf, needed_len);
4388 #endif
4389
4390 if (i < 0)
4391   {
4392   DEBUG(D_all)
4393     debug_printf("OpenSSL RAND_pseudo_bytes() not supported by RAND method, using fallback.\n");
4394   return vaguely_random_number_fallback(max);
4395   }
4396
4397 r = 0;
4398 for (uschar * p = smallbuf; needed_len; --needed_len, ++p)
4399   r = 256 * r + *p;
4400
4401 /* We don't particularly care about weighted results; if someone wants
4402 smooth distribution and cares enough then they should submit a patch then. */
4403 return r % max;
4404 }
4405
4406
4407
4408
4409 /*************************************************
4410 *        OpenSSL option parse                    *
4411 *************************************************/
4412
4413 /* Parse one option for tls_openssl_options_parse below
4414
4415 Arguments:
4416   name    one option name
4417   value   place to store a value for it
4418 Returns   success or failure in parsing
4419 */
4420
4421
4422
4423 static BOOL
4424 tls_openssl_one_option_parse(uschar *name, long *value)
4425 {
4426 int first = 0;
4427 int last = exim_openssl_options_size;
4428 while (last > first)
4429   {
4430   int middle = (first + last)/2;
4431   int c = Ustrcmp(name, exim_openssl_options[middle].name);
4432   if (c == 0)
4433     {
4434     *value = exim_openssl_options[middle].value;
4435     return TRUE;
4436     }
4437   else if (c > 0)
4438     first = middle + 1;
4439   else
4440     last = middle;
4441   }
4442 return FALSE;
4443 }
4444
4445
4446
4447
4448 /*************************************************
4449 *        OpenSSL option parsing logic            *
4450 *************************************************/
4451
4452 /* OpenSSL has a number of compatibility options which an administrator might
4453 reasonably wish to set.  Interpret a list similarly to decode_bits(), so that
4454 we look like log_selector.
4455
4456 Arguments:
4457   option_spec  the administrator-supplied string of options
4458   results      ptr to long storage for the options bitmap
4459 Returns        success or failure
4460 */
4461
4462 BOOL
4463 tls_openssl_options_parse(uschar *option_spec, long *results)
4464 {
4465 long result, item;
4466 uschar * exp, * end;
4467 uschar keep_c;
4468 BOOL adding, item_parsed;
4469
4470 /* Server: send no (<= TLS1.2) session tickets */
4471 result = SSL_OP_NO_TICKET;
4472
4473 /* Prior to 4.80 we or'd in SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; removed
4474 from default because it increases BEAST susceptibility. */
4475 #ifdef SSL_OP_NO_SSLv2
4476 result |= SSL_OP_NO_SSLv2;
4477 #endif
4478 #ifdef SSL_OP_NO_SSLv3
4479 result |= SSL_OP_NO_SSLv3;
4480 #endif
4481 #ifdef SSL_OP_SINGLE_DH_USE
4482 result |= SSL_OP_SINGLE_DH_USE;
4483 #endif
4484 #ifdef SSL_OP_NO_RENEGOTIATION
4485 result |= SSL_OP_NO_RENEGOTIATION;
4486 #endif
4487
4488 if (!option_spec)
4489   {
4490   *results = result;
4491   return TRUE;
4492   }
4493
4494 if (!expand_check(option_spec, US"openssl_options", &exp, &end))
4495   return FALSE;
4496
4497 for (uschar * s = exp; *s; /**/)
4498   {
4499   while (isspace(*s)) ++s;
4500   if (*s == '\0')
4501     break;
4502   if (*s != '+' && *s != '-')
4503     {
4504     DEBUG(D_tls) debug_printf("malformed openssl option setting: "
4505         "+ or - expected but found \"%s\"\n", s);
4506     return FALSE;
4507     }
4508   adding = *s++ == '+';
4509   for (end = s; (*end != '\0') && !isspace(*end); ++end) /**/ ;
4510   keep_c = *end;
4511   *end = '\0';
4512   item_parsed = tls_openssl_one_option_parse(s, &item);
4513   *end = keep_c;
4514   if (!item_parsed)
4515     {
4516     DEBUG(D_tls) debug_printf("openssl option setting unrecognised: \"%s\"\n", s);
4517     return FALSE;
4518     }
4519   DEBUG(D_tls) debug_printf("openssl option, %s %08lx: %08lx (%s)\n",
4520       adding ? "adding to    " : "removing from", result, item, s);
4521   if (adding)
4522     result |= item;
4523   else
4524     result &= ~item;
4525   s = end;
4526   }
4527
4528 *results = result;
4529 return TRUE;
4530 }
4531
4532 #endif  /*!MACRO_PREDEF*/
4533 /* vi: aw ai sw=2
4534 */
4535 /* End of tls-openssl.c */