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