GnuTLS: add debug warning for tls_dhparam ignore
[exim.git] / src / src / tls-gnu.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* Copyright (c) The Exim Maintainers 2020 */
7 /* See the file NOTICE for conditions of use and distribution. */
8
9 /* Copyright (c) Phil Pennock 2012 */
10
11 /* This file provides TLS/SSL support for Exim using the GnuTLS library,
12 one of the available supported implementations.  This file is #included into
13 tls.c when USE_GNUTLS has been set.
14
15 The code herein is a revamp of GnuTLS integration using the current APIs; the
16 original tls-gnu.c was based on a patch which was contributed by Nikos
17 Mavrogiannopoulos.  The revamp is partially a rewrite, partially cut&paste as
18 appropriate.
19
20 APIs current as of GnuTLS 2.12.18; note that the GnuTLS manual is for GnuTLS 3,
21 which is not widely deployed by OS vendors.  Will note issues below, which may
22 assist in updating the code in the future.  Another sources of hints is
23 mod_gnutls for Apache (SNI callback registration and handling).
24
25 Keeping client and server variables more split than before and is currently
26 the norm, in anticipation of TLS in ACL callouts.
27
28 I wanted to switch to gnutls_certificate_set_verify_function() so that
29 certificate rejection could happen during handshake where it belongs, rather
30 than being dropped afterwards, but that was introduced in 2.10.0 and Debian
31 (6.0.5) is still on 2.8.6.  So for now we have to stick with sub-par behaviour.
32
33 (I wasn't looking for libraries quite that old, when updating to get rid of
34 compiler warnings of deprecated APIs.  If it turns out that a lot of the rest
35 require current GnuTLS, then we'll drop support for the ancient libraries).
36 */
37
38 #include <gnutls/gnutls.h>
39 /* needed for cert checks in verification and DN extraction: */
40 #include <gnutls/x509.h>
41 /* man-page is incorrect, gnutls_rnd() is not in gnutls.h: */
42 #include <gnutls/crypto.h>
43
44 /* needed to disable PKCS11 autoload unless requested */
45 #if GNUTLS_VERSION_NUMBER >= 0x020c00
46 # include <gnutls/pkcs11.h>
47 # define SUPPORT_PARAM_TO_PK_BITS
48 #endif
49 #if GNUTLS_VERSION_NUMBER < 0x030103 && !defined(DISABLE_OCSP)
50 # warning "GnuTLS library version too old; define DISABLE_OCSP in Makefile"
51 # define DISABLE_OCSP
52 #endif
53 #if GNUTLS_VERSION_NUMBER < 0x020a00 && !defined(DISABLE_EVENT)
54 # warning "GnuTLS library version too old; tls:cert event unsupported"
55 # define DISABLE_EVENT
56 #endif
57 #if GNUTLS_VERSION_NUMBER >= 0x030000
58 # define SUPPORT_SELFSIGN       /* Uncertain what version is first usable but 2.12.23 is not */
59 #endif
60 #if GNUTLS_VERSION_NUMBER >= 0x030306
61 # define SUPPORT_CA_DIR
62 #else
63 # undef  SUPPORT_CA_DIR
64 #endif
65 #if GNUTLS_VERSION_NUMBER >= 0x030014
66 # define SUPPORT_SYSDEFAULT_CABUNDLE
67 #endif
68 #if GNUTLS_VERSION_NUMBER >= 0x030104
69 # define GNUTLS_CERT_VFY_STATUS_PRINT
70 #endif
71 #if GNUTLS_VERSION_NUMBER >= 0x030109
72 # define SUPPORT_CORK
73 #endif
74 #if GNUTLS_VERSION_NUMBER >= 0x03010a
75 # define SUPPORT_GNUTLS_SESS_DESC
76 #endif
77 #if GNUTLS_VERSION_NUMBER >= 0x030300
78 # define GNUTLS_AUTO_GLOBAL_INIT
79 # define GNUTLS_AUTO_PKCS11_MANUAL
80 #endif
81 #if (GNUTLS_VERSION_NUMBER >= 0x030404) \
82   || (GNUTLS_VERSION_NUMBER >= 0x030311) && (GNUTLS_VERSION_NUMBER & 0xffff00 == 0x030300)
83 # ifndef DISABLE_OCSP
84 #  define EXIM_HAVE_OCSP
85 # endif
86 #endif
87 #if GNUTLS_VERSION_NUMBER >= 0x030500
88 # define SUPPORT_GNUTLS_KEYLOG
89 #endif
90 #if GNUTLS_VERSION_NUMBER >= 0x030506 && !defined(DISABLE_OCSP)
91 # define SUPPORT_SRV_OCSP_STACK
92 #endif
93 #if GNUTLS_VERSION_NUMBER >= 0x030600
94 # define GNUTLS_AUTO_DHPARAMS
95 #endif
96 #if GNUTLS_VERSION_NUMBER >= 0x030603
97 # define EXIM_HAVE_TLS1_3
98 # define SUPPORT_GNUTLS_EXT_RAW_PARSE
99 # define GNUTLS_OCSP_STATUS_REQUEST_GET2
100 #endif
101
102 #ifdef SUPPORT_DANE
103 # if GNUTLS_VERSION_NUMBER >= 0x030000
104 #  define DANESSL_USAGE_DANE_TA 2
105 #  define DANESSL_USAGE_DANE_EE 3
106 # else
107 #  error GnuTLS version too early for DANE
108 # endif
109 # if GNUTLS_VERSION_NUMBER < 0x999999
110 #  define GNUTLS_BROKEN_DANE_VALIDATION
111 # endif
112 #endif
113
114 #ifndef DISABLE_TLS_RESUME
115 # if GNUTLS_VERSION_NUMBER >= 0x030603
116 #  define EXIM_HAVE_TLS_RESUME
117 # else
118 #  warning "GnuTLS library version too old; resumption unsupported"
119 # endif
120 #endif
121
122 #if GNUTLS_VERSION_NUMBER >= 0x030200
123 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
124 #  define EXIM_HAVE_ALPN
125 # endif
126 #endif
127
128 #ifndef DISABLE_OCSP
129 # include <gnutls/ocsp.h>
130 #endif
131 #ifdef SUPPORT_DANE
132 # include <gnutls/dane.h>
133 #endif
134
135 #include "tls-cipher-stdname.c"
136
137
138 #ifdef MACRO_PREDEF
139 void
140 options_tls(void)
141 {
142 # ifndef DISABLE_TLS_RESUME
143 builtin_macro_create_var(US"_RESUME_DECODE", RESUME_DECODE_STRING );
144 # endif
145 # ifdef EXIM_HAVE_TLS1_3
146 builtin_macro_create(US"_HAVE_TLS1_3");
147 # endif
148 # ifdef EXIM_HAVE_OCSP
149 builtin_macro_create(US"_HAVE_TLS_OCSP");
150 # endif
151 # ifdef SUPPORT_SRV_OCSP_STACK
152 builtin_macro_create(US"_HAVE_TLS_OCSP_LIST");
153 # endif
154 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
155 builtin_macro_create(US"_HAVE_TLS_CA_CACHE");
156 # endif
157 # ifdef EXIM_HAVE_ALPN
158 builtin_macro_create(US"_HAVE_TLS_ALPN");
159 # endif
160 }
161 #else
162
163
164 /* GnuTLS 2 vs 3
165
166 GnuTLS 3 only:
167   gnutls_global_set_audit_log_function()
168
169 Changes:
170   gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
171 */
172
173 /* Local static variables for GnuTLS */
174
175 /* Values for verify_requirement */
176
177 enum peer_verify_requirement
178   { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED, VERIFY_DANE };
179
180 /* This holds most state for server or client; with this, we can set up an
181 outbound TLS-enabled connection in an ACL callout, while not stomping all
182 over the TLS variables available for expansion.
183
184 Some of these correspond to variables in globals.c; those variables will
185 be set to point to content in one of these instances, as appropriate for
186 the stage of the process lifetime.
187
188 Not handled here: global tlsp->tls_channelbinding.
189 */
190
191 typedef struct exim_gnutls_state {
192   gnutls_session_t      session;
193
194   exim_tlslib_state     lib_state;
195 #define x509_cred               libdata0
196 #define pri_cache               libdata1
197
198   enum peer_verify_requirement verify_requirement;
199   int                   fd_in;
200   int                   fd_out;
201
202   BOOL                  peer_cert_verified:1;
203   BOOL                  peer_dane_verified:1;
204   BOOL                  trigger_sni_changes:1;
205   BOOL                  have_set_peerdn:1;
206   BOOL                  xfer_eof:1;     /*XXX never gets set! */
207   BOOL                  xfer_error:1;
208 #ifdef SUPPORT_CORK
209   BOOL                  corked:1;
210 #endif
211
212   const struct host_item *host;         /* NULL if server */
213   gnutls_x509_crt_t     peercert;
214   uschar                *peerdn;
215   uschar                *ciphersuite;
216   uschar                *received_sni;
217
218   const uschar *tls_certificate;
219   const uschar *tls_privatekey;
220   const uschar *tls_sni; /* client send only, not received */
221   const uschar *tls_verify_certificates;
222   const uschar *tls_crl;
223   const uschar *tls_require_ciphers;
224
225   uschar *exp_tls_certificate;
226   uschar *exp_tls_privatekey;
227   uschar *exp_tls_verify_certificates;
228   uschar *exp_tls_crl;
229   uschar *exp_tls_require_ciphers;
230   const uschar *exp_tls_verify_cert_hostnames;
231 #ifndef DISABLE_EVENT
232   uschar *event_action;
233 #endif
234 #ifdef SUPPORT_DANE
235   char * const *        dane_data;
236   const int *           dane_data_len;
237 #endif
238
239   tls_support *tlsp;    /* set in tls_init() */
240
241   uschar *xfer_buffer;
242   int xfer_buffer_lwm;
243   int xfer_buffer_hwm;
244 } exim_gnutls_state_st;
245
246 static const exim_gnutls_state_st exim_gnutls_state_init = {
247   /* all elements not explicitly intialised here get 0/NULL/FALSE */
248   .fd_in =              -1,
249   .fd_out =             -1,
250 };
251
252 /* Not only do we have our own APIs which don't pass around state, assuming
253 it's held in globals, GnuTLS doesn't appear to let us register callback data
254 for callbacks, or as part of the session, so we have to keep a "this is the
255 context we're currently dealing with" pointer and rely upon being
256 single-threaded to keep from processing data on an inbound TLS connection while
257 talking to another TLS connection for an outbound check.  This does mean that
258 there's no way for heart-beats to be responded to, for the duration of the
259 second connection.
260 XXX But see gnutls_session_get_ptr()
261 */
262
263 static exim_gnutls_state_st state_server = {
264   /* all elements not explicitly intialised here get 0/NULL/FALSE */
265   .fd_in =              -1,
266   .fd_out =             -1,
267 };
268
269 #ifndef GNUTLS_AUTO_DHPARAMS
270 /* dh_params are initialised once within the lifetime of a process using TLS;
271 if we used TLS in a long-lived daemon, we'd have to reconsider this.  But we
272 don't want to repeat this. */
273
274 static gnutls_dh_params_t dh_server_params = NULL;
275 #endif
276
277 static int ssl_session_timeout = 7200;  /* Two hours */
278
279 static const uschar * const exim_default_gnutls_priority = US"NORMAL";
280
281 /* Guard library core initialisation */
282
283 static BOOL exim_gnutls_base_init_done = FALSE;
284
285 #ifndef DISABLE_OCSP
286 static BOOL gnutls_buggy_ocsp = FALSE;
287 static BOOL exim_testharness_disable_ocsp_validity_check = FALSE;
288 #endif
289
290 #ifdef EXIM_HAVE_ALPN
291 static int server_seen_alpn = -1;       /* count of names */
292 #endif
293 #ifdef EXIM_HAVE_TLS_RESUME
294 static gnutls_datum_t server_sessticket_key;
295 #endif
296
297
298 /* ------------------------------------------------------------------------ */
299 /* macros */
300
301 #define MAX_HOST_LEN 255
302
303 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
304 the library logging; a value less than 0 disables the calls to set up logging
305 callbacks.  GNuTLS also looks for an environment variable - except not for
306 setuid binaries, making it useless - "GNUTLS_DEBUG_LEVEL".
307 Allegedly the testscript line "GNUTLS_DEBUG_LEVEL=9 sudo exim ..." would work,
308 but the env var must be added to /etc/sudoers too. */
309 #ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
310 # define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
311 #endif
312
313 #ifndef EXIM_CLIENT_DH_MIN_BITS
314 # define EXIM_CLIENT_DH_MIN_BITS 1024
315 #endif
316
317 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
318 can ask for a bit-strength.  Without that, we stick to the constant we had
319 before, for now. */
320 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
321 # define EXIM_SERVER_DH_BITS_PRE2_12 1024
322 #endif
323
324 #define Expand_check_tlsvar(Varname, errstr) \
325   expand_check(state->Varname, US #Varname, &state->exp_##Varname, errstr)
326
327 #if GNUTLS_VERSION_NUMBER >= 0x020c00
328 # define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
329 # define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
330 # define HAVE_GNUTLS_RND
331 /* The security fix we provide with the gnutls_allow_auto_pkcs11 option
332  * (4.82 PP/09) introduces a compatibility regression. The symbol simply
333  * isn't available sometimes, so this needs to become a conditional
334  * compilation; the sanest way to deal with this being a problem on
335  * older OSes is to block it in the Local/Makefile with this compiler
336  * definition  */
337 # ifndef AVOID_GNUTLS_PKCS11
338 #  define HAVE_GNUTLS_PKCS11
339 # endif /* AVOID_GNUTLS_PKCS11 */
340 #endif
341
342
343
344
345 /* ------------------------------------------------------------------------ */
346 /* Callback declarations */
347
348 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
349 static void exim_gnutls_logger_cb(int level, const char *message);
350 #endif
351
352 static int exim_sni_handling_cb(gnutls_session_t session);
353
354 #ifdef EXIM_HAVE_TLS_RESUME
355 static int
356 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
357   unsigned incoming, const gnutls_datum_t * msg);
358 #endif
359
360
361 /*************************************************
362 *               Handle TLS error                 *
363 *************************************************/
364
365 /* Called from lots of places when errors occur before actually starting to do
366 the TLS handshake, that is, while the session is still in clear. Always returns
367 DEFER for a server and FAIL for a client so that most calls can use "return
368 tls_error(...)" to do this processing and then give an appropriate return. A
369 single function is used for both server and client, because it is called from
370 some shared functions.
371
372 Argument:
373   prefix    text to include in the logged error
374   msg       additional error string (may be NULL)
375             usually obtained from gnutls_strerror()
376   host      NULL if setting up a server;
377             the connected host if setting up a client
378   errstr    pointer to returned error string
379
380 Returns:    OK/DEFER/FAIL
381 */
382
383 static int
384 tls_error(const uschar *prefix, const uschar *msg, const host_item *host,
385   uschar ** errstr)
386 {
387 if (errstr)
388   *errstr = string_sprintf("(%s)%s%s", prefix, msg ? ": " : "", msg ? msg : US"");
389 return host ? FAIL : DEFER;
390 }
391
392
393 static int
394 tls_error_gnu(exim_gnutls_state_st * state, const uschar *prefix, int err,
395   uschar ** errstr)
396 {
397 return tls_error(prefix,
398   state && err == GNUTLS_E_FATAL_ALERT_RECEIVED
399   ? US gnutls_alert_get_name(gnutls_alert_get(state->session))
400   : US gnutls_strerror(err),
401   state ? state->host : NULL,
402   errstr);
403 }
404
405 static int
406 tls_error_sys(const uschar *prefix, int err, const host_item *host,
407   uschar ** errstr)
408 {
409 return tls_error(prefix, US strerror(err), host, errstr);
410 }
411
412
413 /* ------------------------------------------------------------------------ */
414 /* Initialisation */
415
416 #ifndef DISABLE_OCSP
417
418 static BOOL
419 tls_is_buggy_ocsp(void)
420 {
421 const uschar * s;
422 uschar maj, mid, mic;
423
424 s = CUS gnutls_check_version(NULL);
425 maj = atoi(CCS s);
426 if (maj == 3)
427   {
428   while (*s && *s != '.') s++;
429   mid = atoi(CCS ++s);
430   if (mid <= 2)
431     return TRUE;
432   else if (mid >= 5)
433     return FALSE;
434   else
435     {
436     while (*s && *s != '.') s++;
437     mic = atoi(CCS ++s);
438     return mic <= (mid == 3 ? 16 : 3);
439     }
440   }
441 return FALSE;
442 }
443
444 #endif
445
446
447 static int
448 tls_g_init(uschar ** errstr)
449 {
450 int rc;
451 DEBUG(D_tls) debug_printf("GnuTLS global init required\n");
452
453 #if defined(HAVE_GNUTLS_PKCS11) && !defined(GNUTLS_AUTO_PKCS11_MANUAL)
454 /* By default, gnutls_global_init will init PKCS11 support in auto mode,
455 which loads modules from a config file, which sounds good and may be wanted
456 by some sysadmin, but also means in common configurations that GNOME keyring
457 environment variables are used and so breaks for users calling mailq.
458 To prevent this, we init PKCS11 first, which is the documented approach. */
459
460 if (!gnutls_allow_auto_pkcs11)
461   if ((rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL)))
462     return tls_error_gnu(NULL, US"gnutls_pkcs11_init", rc, errstr);
463 #endif
464
465 #ifndef GNUTLS_AUTO_GLOBAL_INIT
466 if ((rc = gnutls_global_init()))
467   return tls_error_gnu(NULL, US"gnutls_global_init", rc, errstr);
468 #endif
469
470 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
471 DEBUG(D_tls)
472   {
473   gnutls_global_set_log_function(exim_gnutls_logger_cb);
474   /* arbitrarily chosen level; bump up to 9 for more */
475   gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
476   }
477 #endif
478
479 #ifndef DISABLE_OCSP
480 if (tls_ocsp_file && (gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
481   log_write(0, LOG_MAIN, "OCSP unusable with this GnuTLS library version");
482 #endif
483
484 exim_gnutls_base_init_done = TRUE;
485 return OK;
486 }
487
488
489
490 /* Daemon-call before each connection.  Nothing to do for GnuTLS. */
491
492 static void
493 tls_per_lib_daemon_tick(void)
494 {
495 }
496
497 /* Daemon one-time initialisation */
498
499 static void
500 tls_per_lib_daemon_init(void)
501 {
502 uschar * dummy_errstr;
503 static BOOL once = FALSE;
504
505 if (!exim_gnutls_base_init_done)
506   tls_g_init(&dummy_errstr);
507
508 if (!once)
509   {
510   once = TRUE;
511
512 #ifdef EXIM_HAVE_TLS_RESUME
513   /* We are dependent on the GnuTLS implementation of the Session Ticket
514   encryption; both the strength and the key rotation period.  We hope that
515   the strength at least matches that of the ciphersuite (but GnuTLS does not
516   document this). */
517
518   gnutls_session_ticket_key_generate(&server_sessticket_key);   /* >= 2.10.0 */
519   if (f.running_in_test_harness) ssl_session_timeout = 6;
520 #endif
521
522   tls_daemon_creds_reload();
523   }
524 }
525
526 /* ------------------------------------------------------------------------ */
527
528 /*************************************************
529 *    Deal with logging errors during I/O         *
530 *************************************************/
531
532 /* We have to get the identity of the peer from saved data.
533
534 Argument:
535   state    the current GnuTLS exim state container
536   rc       the GnuTLS error code, or 0 if it's a local error
537   when     text identifying read or write
538   text     local error text when rc is 0
539
540 Returns:   nothing
541 */
542
543 static void
544 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
545 {
546 const uschar * msg;
547 uschar * errstr;
548
549 msg = rc == GNUTLS_E_FATAL_ALERT_RECEIVED
550   ? string_sprintf("A TLS fatal alert has been received: %s",
551       US gnutls_alert_get_name(gnutls_alert_get(state->session)))
552 #ifdef GNUTLS_E_PREMATURE_TERMINATION
553   : rc == GNUTLS_E_PREMATURE_TERMINATION && errno
554   ? string_sprintf("%s: syscall: %s", US gnutls_strerror(rc), strerror(errno))
555 #endif
556   : US gnutls_strerror(rc);
557
558 (void) tls_error(when, msg, state->host, &errstr);
559
560 if (state->host)
561   log_write(0, LOG_MAIN, "H=%s [%s] TLS error on connection %s",
562     state->host->name, state->host->address, errstr);
563 else
564   {
565   uschar * conn_info = smtp_get_connection_info();
566   if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
567   /* I'd like to get separated H= here, but too hard for now */
568   log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
569   }
570 }
571
572
573
574
575 /*************************************************
576 *        Set various Exim expansion vars         *
577 *************************************************/
578
579 #define exim_gnutls_cert_err(Label) \
580   do \
581     { \
582     if (rc != GNUTLS_E_SUCCESS) \
583       { \
584       DEBUG(D_tls) debug_printf("TLS: cert problem: %s: %s\n", \
585         (Label), gnutls_strerror(rc)); \
586       return rc; \
587       } \
588     } while (0)
589
590 static int
591 import_cert(const gnutls_datum_t * cert, gnutls_x509_crt_t * crtp)
592 {
593 int rc;
594
595 rc = gnutls_x509_crt_init(crtp);
596 exim_gnutls_cert_err(US"gnutls_x509_crt_init (crt)");
597
598 rc = gnutls_x509_crt_import(*crtp, cert, GNUTLS_X509_FMT_DER);
599 exim_gnutls_cert_err(US"failed to import certificate [gnutls_x509_crt_import(cert)]");
600
601 return rc;
602 }
603
604 #undef exim_gnutls_cert_err
605
606
607 /* We set various Exim global variables from the state, once a session has
608 been established.  With TLS callouts, may need to change this to stack
609 variables, or just re-call it with the server state after client callout
610 has finished.
611
612 Make sure anything set here is unset in tls_getc().
613
614 Sets:
615   tls_active                fd
616   tls_bits                  strength indicator
617   tls_certificate_verified  bool indicator
618   tls_channelbinding        for some SASL mechanisms
619   tls_ver                   a string
620   tls_cipher                a string
621   tls_peercert              pointer to library internal
622   tls_peerdn                a string
623   tls_sni                   a (UTF-8) string
624   tls_ourcert               pointer to library internal
625
626 Argument:
627   state      the relevant exim_gnutls_state_st *
628 */
629
630 static void
631 extract_exim_vars_from_tls_state(exim_gnutls_state_st * state)
632 {
633 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
634 int old_pool;
635 int rc;
636 gnutls_datum_t channel;
637 #endif
638 tls_support * tlsp = state->tlsp;
639
640 tlsp->active.sock = state->fd_out;
641 tlsp->active.tls_ctx = state;
642
643 DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
644
645 tlsp->certificate_verified = state->peer_cert_verified;
646 #ifdef SUPPORT_DANE
647 tlsp->dane_verified = state->peer_dane_verified;
648 #endif
649
650 /* note that tls_channelbinding is not saved to the spool file, since it's
651 only available for use for authenticators while this TLS session is running. */
652
653 tlsp->channelbinding = NULL;
654 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
655 channel.data = NULL;
656 channel.size = 0;
657 if ((rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel)))
658   { DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc)); }
659 else
660   {
661   /* Declare the taintedness of the binding info.  On server, untainted; on
662   client, tainted - being the Finish msg from the server. */
663
664   old_pool = store_pool;
665   store_pool = POOL_PERM;
666   tlsp->channelbinding = b64encode_taint(CUS channel.data, (int)channel.size,
667                                           !!state->host);
668   store_pool = old_pool;
669   DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage\n");
670   }
671 #endif
672
673 /* peercert is set in peer_status() */
674 tlsp->peerdn = state->peerdn;
675
676 /* do not corrupt sni sent by client; record sni rxd by server */
677 if (!state->host)
678   tlsp->sni = state->received_sni;
679
680 /* record our certificate */
681   {
682   const gnutls_datum_t * cert = gnutls_certificate_get_ours(state->session);
683   gnutls_x509_crt_t crt;
684
685   tlsp->ourcert = cert && import_cert(cert, &crt)==0 ? crt : NULL;
686   }
687 }
688
689
690
691
692 #ifndef GNUTLS_AUTO_DHPARAMS
693 /*************************************************
694 *            Setup up DH parameters              *
695 *************************************************/
696
697 /* Generating the D-H parameters may take a long time. They only need to
698 be re-generated every so often, depending on security policy. What we do is to
699 keep these parameters in a file in the spool directory. If the file does not
700 exist, we generate them. This means that it is easy to cause a regeneration.
701
702 The new file is written as a temporary file and renamed, so that an incomplete
703 file is never present. If two processes both compute some new parameters, you
704 waste a bit of effort, but it doesn't seem worth messing around with locking to
705 prevent this.
706
707 Returns:     OK/DEFER/FAIL
708 */
709
710 static int
711 init_server_dh(uschar ** errstr)
712 {
713 int fd, rc;
714 unsigned int dh_bits;
715 gnutls_datum_t m = {.data = NULL, .size = 0};
716 uschar filename_buf[PATH_MAX];
717 uschar *filename = NULL;
718 size_t sz;
719 uschar *exp_tls_dhparam;
720 BOOL use_file_in_spool = FALSE;
721 host_item *host = NULL; /* dummy for macros */
722
723 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params\n");
724
725 if ((rc = gnutls_dh_params_init(&dh_server_params)))
726   return tls_error_gnu(NULL, US"gnutls_dh_params_init", rc, errstr);
727
728 if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam, errstr))
729   return DEFER;
730
731 if (!exp_tls_dhparam)
732   {
733   DEBUG(D_tls) debug_printf("Loading default hard-coded DH params\n");
734   m.data = US std_dh_prime_default();
735   m.size = Ustrlen(m.data);
736   }
737 else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
738   use_file_in_spool = TRUE;
739 else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
740   {
741   DEBUG(D_tls) debug_printf("Requested no DH parameters\n");
742   return OK;
743   }
744 else if (exp_tls_dhparam[0] != '/')
745   {
746   if (!(m.data = US std_dh_prime_named(exp_tls_dhparam)))
747     return tls_error(US"No standard prime named", exp_tls_dhparam, NULL, errstr);
748   m.size = Ustrlen(m.data);
749   }
750 else
751   filename = exp_tls_dhparam;
752
753 if (m.data)
754   {
755   if ((rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM)))
756     return tls_error_gnu(NULL, US"gnutls_dh_params_import_pkcs3", rc, errstr);
757   DEBUG(D_tls) debug_printf("Loaded fixed standard D-H parameters\n");
758   return OK;
759   }
760
761 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
762 /* If you change this constant, also change dh_param_fn_ext so that we can use a
763 different filename and ensure we have sufficient bits. */
764
765 if (!(dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL)))
766   return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL, errstr);
767 DEBUG(D_tls)
768   debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits\n",
769       dh_bits);
770 #else
771 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
772 DEBUG(D_tls)
773   debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits\n",
774       dh_bits);
775 #endif
776
777 /* Some clients have hard-coded limits. */
778 if (dh_bits > tls_dh_max_bits)
779   {
780   DEBUG(D_tls)
781     debug_printf("tls_dh_max_bits clamping override, using %d bits instead\n",
782         tls_dh_max_bits);
783   dh_bits = tls_dh_max_bits;
784   }
785
786 if (use_file_in_spool)
787   {
788   if (!string_format(filename_buf, sizeof(filename_buf),
789         "%s/gnutls-params-%d", spool_directory, dh_bits))
790     return tls_error(US"overlong filename", NULL, NULL, errstr);
791   filename = filename_buf;
792   }
793
794 /* Open the cache file for reading and if successful, read it and set up the
795 parameters. */
796
797 if ((fd = Uopen(filename, O_RDONLY, 0)) >= 0)
798   {
799   struct stat statbuf;
800   FILE *fp;
801   int saved_errno;
802
803   if (fstat(fd, &statbuf) < 0)  /* EIO */
804     {
805     saved_errno = errno;
806     (void)close(fd);
807     return tls_error_sys(US"TLS cache stat failed", saved_errno, NULL, errstr);
808     }
809   if (!S_ISREG(statbuf.st_mode))
810     {
811     (void)close(fd);
812     return tls_error(US"TLS cache not a file", NULL, NULL, errstr);
813     }
814   if (!(fp = fdopen(fd, "rb")))
815     {
816     saved_errno = errno;
817     (void)close(fd);
818     return tls_error_sys(US"fdopen(TLS cache stat fd) failed",
819         saved_errno, NULL, errstr);
820     }
821
822   m.size = statbuf.st_size;
823   if (!(m.data = store_malloc(m.size)))
824     {
825     fclose(fp);
826     return tls_error_sys(US"malloc failed", errno, NULL, errstr);
827     }
828   if (!(sz = fread(m.data, m.size, 1, fp)))
829     {
830     saved_errno = errno;
831     fclose(fp);
832     store_free(m.data);
833     return tls_error_sys(US"fread failed", saved_errno, NULL, errstr);
834     }
835   fclose(fp);
836
837   rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
838   store_free(m.data);
839   if (rc)
840     return tls_error_gnu(NULL, US"gnutls_dh_params_import_pkcs3", rc, errstr);
841   DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
842   }
843
844 /* If the file does not exist, fall through to compute new data and cache it.
845 If there was any other opening error, it is serious. */
846
847 else if (errno == ENOENT)
848   {
849   rc = -1;
850   DEBUG(D_tls)
851     debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
852   }
853 else
854   return tls_error(string_open_failed("\"%s\" for reading", filename),
855       NULL, NULL, errstr);
856
857 /* If ret < 0, either the cache file does not exist, or the data it contains
858 is not useful. One particular case of this is when upgrading from an older
859 release of Exim in which the data was stored in a different format. We don't
860 try to be clever and support both formats; we just regenerate new data in this
861 case. */
862
863 if (rc < 0)
864   {
865   uschar *temp_fn;
866   unsigned int dh_bits_gen = dh_bits;
867
868   if ((PATH_MAX - Ustrlen(filename)) < 10)
869     return tls_error(US"Filename too long to generate replacement",
870         filename, NULL, errstr);
871
872   temp_fn = string_copy(US"exim-dh.XXXXXXX");
873   if ((fd = mkstemp(CS temp_fn)) < 0)   /* modifies temp_fn */
874     return tls_error_sys(US"Unable to open temp file", errno, NULL, errstr);
875   (void)exim_chown(temp_fn, exim_uid, exim_gid);   /* Probably not necessary */
876
877   /* GnuTLS overshoots!  If we ask for 2236, we might get 2237 or more.  But
878   there's no way to ask GnuTLS how many bits there really are.  We can ask
879   how many bits were used in a TLS session, but that's it!  The prime itself
880   is hidden behind too much abstraction.  So we ask for less, and proceed on
881   a wing and a prayer.  First attempt, subtracted 3 for 2233 and got 2240.  */
882
883   if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
884     {
885     dh_bits_gen = dh_bits - 10;
886     DEBUG(D_tls)
887       debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
888           dh_bits_gen);
889     }
890
891   DEBUG(D_tls)
892     debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
893         dh_bits_gen);
894   if ((rc = gnutls_dh_params_generate2(dh_server_params, dh_bits_gen)))
895     return tls_error_gnu(NULL, US"gnutls_dh_params_generate2", rc, errstr);
896
897   /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
898   and I confirmed that a NULL call to get the size first is how the GnuTLS
899   sample apps handle this. */
900
901   sz = 0;
902   m.data = NULL;
903   if (  (rc = gnutls_dh_params_export_pkcs3(dh_server_params,
904                 GNUTLS_X509_FMT_PEM, m.data, &sz))
905      && rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
906     return tls_error_gnu(NULL, US"gnutls_dh_params_export_pkcs3(NULL) sizing",
907               rc, errstr);
908   m.size = sz;
909   if (!(m.data = store_malloc(m.size)))
910     return tls_error_sys(US"memory allocation failed", errno, NULL, errstr);
911
912   /* this will return a size 1 less than the allocation size above */
913   if ((rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
914       m.data, &sz)))
915     {
916     store_free(m.data);
917     return tls_error_gnu(NULL, US"gnutls_dh_params_export_pkcs3() real", rc, errstr);
918     }
919   m.size = sz; /* shrink by 1, probably */
920
921   if ((sz = write_to_fd_buf(fd, m.data, (size_t) m.size)) != m.size)
922     {
923     store_free(m.data);
924     return tls_error_sys(US"TLS cache write D-H params failed",
925         errno, NULL, errstr);
926     }
927   store_free(m.data);
928   if ((sz = write_to_fd_buf(fd, US"\n", 1)) != 1)
929     return tls_error_sys(US"TLS cache write D-H params final newline failed",
930         errno, NULL, errstr);
931
932   if ((rc = close(fd)))
933     return tls_error_sys(US"TLS cache write close() failed", errno, NULL, errstr);
934
935   if (Urename(temp_fn, filename) < 0)
936     return tls_error_sys(string_sprintf("failed to rename \"%s\" as \"%s\"",
937           temp_fn, filename), errno, NULL, errstr);
938
939   DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
940   }
941
942 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
943 return OK;
944 }
945 #endif
946
947
948
949
950 /* Create and install a selfsigned certificate, for use in server mode. */
951
952 static int
953 tls_install_selfsign(exim_gnutls_state_st * state, uschar ** errstr)
954 {
955 gnutls_x509_crt_t cert = NULL;
956 time_t now;
957 gnutls_x509_privkey_t pkey = NULL;
958 const uschar * where;
959 int rc;
960
961 #ifndef SUPPORT_SELFSIGN
962 where = US"library too old";
963 rc = GNUTLS_E_NO_CERTIFICATE_FOUND;
964 if (TRUE) goto err;
965 #endif
966
967 DEBUG(D_tls) debug_printf("TLS: generating selfsigned server cert\n");
968 where = US"initialising pkey";
969 if ((rc = gnutls_x509_privkey_init(&pkey))) goto err;
970
971 where = US"initialising cert";
972 if ((rc = gnutls_x509_crt_init(&cert))) goto err;
973
974 where = US"generating pkey";    /* Hangs on 2.12.23 */
975 if ((rc = gnutls_x509_privkey_generate(pkey, GNUTLS_PK_RSA,
976 #ifdef SUPPORT_PARAM_TO_PK_BITS
977 # ifndef GNUTLS_SEC_PARAM_MEDIUM
978 #  define GNUTLS_SEC_PARAM_MEDIUM GNUTLS_SEC_PARAM_HIGH
979 # endif
980             gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_MEDIUM),
981 #else
982             2048,
983 #endif
984             0)))
985   goto err;
986
987 where = US"configuring cert";
988 now = 1;
989 if (  (rc = gnutls_x509_crt_set_version(cert, 3))
990    || (rc = gnutls_x509_crt_set_serial(cert, &now, sizeof(now)))
991    || (rc = gnutls_x509_crt_set_activation_time(cert, now = time(NULL)))
992    || (rc = gnutls_x509_crt_set_expiration_time(cert, (long)2 * 60 * 60))       /* 2 hour */
993    || (rc = gnutls_x509_crt_set_key(cert, pkey))
994
995    || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
996               GNUTLS_OID_X520_COUNTRY_NAME, 0, "UK", 2))
997    || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
998               GNUTLS_OID_X520_ORGANIZATION_NAME, 0, "Exim Developers", 15))
999    || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
1000               GNUTLS_OID_X520_COMMON_NAME, 0,
1001               smtp_active_hostname, Ustrlen(smtp_active_hostname)))
1002    )
1003   goto err;
1004
1005 where = US"signing cert";
1006 if ((rc = gnutls_x509_crt_sign(cert, cert, pkey))) goto err;
1007
1008 where = US"installing selfsign cert";
1009                                         /* Since: 2.4.0 */
1010 if ((rc = gnutls_certificate_set_x509_key(state->lib_state.x509_cred,
1011     &cert, 1, pkey)))
1012   goto err;
1013
1014 rc = OK;
1015
1016 out:
1017   if (cert) gnutls_x509_crt_deinit(cert);
1018   if (pkey) gnutls_x509_privkey_deinit(pkey);
1019   return rc;
1020
1021 err:
1022   rc = tls_error_gnu(state, where, rc, errstr);
1023   goto out;
1024 }
1025
1026
1027
1028
1029 /* Add certificate and key, from files.
1030
1031 Return:
1032   Zero or negative: good.  Negate value for certificate index if < 0.
1033   Greater than zero: FAIL or DEFER code.
1034 */
1035
1036 static int
1037 tls_add_certfile(exim_gnutls_state_st * state, const host_item * host,
1038   const uschar * certfile, const uschar * keyfile, uschar ** errstr)
1039 {
1040 int rc = gnutls_certificate_set_x509_key_file(state->lib_state.x509_cred,
1041     CCS certfile, CCS keyfile, GNUTLS_X509_FMT_PEM);
1042 if (rc < 0)
1043   return tls_error_gnu(state,
1044     string_sprintf("cert/key setup: cert=%s key=%s", certfile, keyfile),
1045     rc, errstr);
1046 return -rc;
1047 }
1048
1049
1050 #if !defined(DISABLE_OCSP) && !defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1051 /* Load an OCSP proof from file for sending by the server.  Called
1052 on getting a status-request handshake message, for earlier versions
1053 of GnuTLS. */
1054
1055 static int
1056 server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
1057   gnutls_datum_t * ocsp_response)
1058 {
1059 int ret;
1060 DEBUG(D_tls) debug_printf("OCSP stapling callback: %s\n", US ptr);
1061
1062 if ((ret = gnutls_load_file(ptr, ocsp_response)) < 0)
1063   {
1064   DEBUG(D_tls) debug_printf("Failed to load ocsp stapling file %s\n",
1065                               CS ptr);
1066   tls_in.ocsp = OCSP_NOT_RESP;
1067   return GNUTLS_E_NO_CERTIFICATE_STATUS;
1068   }
1069
1070 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1071 return 0;
1072 }
1073 #endif
1074
1075
1076 #ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1077 /* Make a note that we saw a status-request */
1078 static int
1079 tls_server_clienthello_ext(void * ctx, unsigned tls_id,
1080   const uschar * data, unsigned size)
1081 {
1082 /* The values for tls_id are documented here:
1083 https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1084 switch (tls_id)
1085   {
1086   case 5:       /* Status Request */
1087     DEBUG(D_tls) debug_printf("Seen status_request extension from client\n");
1088     tls_in.ocsp = OCSP_NOT_RESP;
1089     break;
1090 #ifdef EXIM_HAVE_ALPN
1091   case 16:      /* Application Layer Protocol Notification */
1092     /* The format of "data" here doesn't seem to be documented, but appears
1093     to be a 2-byte field with a (redundant, given the "size" arg) total length
1094     then a sequence of one-byte size then string (not nul-term) names.  The
1095     latter is as described in OpenSSL documentation. */
1096
1097     DEBUG(D_tls) debug_printf("Seen ALPN extension from client (s=%u):", size);
1098     for (const uschar * s = data+2; s-data < size-1; s += *s + 1)
1099       {
1100       server_seen_alpn++;
1101       DEBUG(D_tls) debug_printf(" '%.*s'", (int)*s, s+1);
1102       }
1103     DEBUG(D_tls) debug_printf("\n");
1104     if (server_seen_alpn > 1)
1105       {
1106       DEBUG(D_tls) debug_printf("TLS: too many ALPNs presented in handshake\n");
1107       return GNUTLS_E_NO_APPLICATION_PROTOCOL;
1108       }
1109     break;
1110 #endif
1111   }
1112 return 0;
1113 }
1114
1115 /* Callback for client-hello, on server, if we think we might serve stapled-OCSP */
1116 static int
1117 tls_server_clienthello_cb(gnutls_session_t session, unsigned int htype,
1118   unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1119 {
1120 /* Call fn for each extension seen.  3.6.3 onwards */
1121 return gnutls_ext_raw_parse(NULL, tls_server_clienthello_ext, msg,
1122                            GNUTLS_EXT_RAW_FLAG_TLS_CLIENT_HELLO);
1123 }
1124
1125
1126 # ifdef notdef_crashes
1127 /* Make a note that we saw a status-response */
1128 static int
1129 tls_server_servercerts_ext(void * ctx, unsigned tls_id,
1130   const unsigned char *data, unsigned size)
1131 {
1132 /* debug_printf("%s %u\n", __FUNCTION__, tls_id); */
1133 /* https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1134 if (FALSE && tls_id == 5)       /* status_request */
1135   {
1136   DEBUG(D_tls) debug_printf("Seen status_request extension\n");
1137   tls_in.ocsp = exim_testharness_disable_ocsp_validity_check
1138     ? OCSP_VFY_NOT_TRIED : OCSP_VFIED;  /* We know that GnuTLS verifies responses */
1139   }
1140 return 0;
1141 }
1142 # endif
1143
1144 /* Callback for certificates packet, on server, if we think we might serve stapled-OCSP */
1145 static int
1146 tls_server_servercerts_cb(gnutls_session_t session, unsigned int htype,
1147   unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1148 {
1149 /* Call fn for each extension seen.  3.6.3 onwards */
1150 # ifdef notdef_crashes
1151                                 /*XXX crashes */
1152 return gnutls_ext_raw_parse(NULL, tls_server_servercerts_ext, msg, 0);
1153 # endif
1154 }
1155 #endif /*SUPPORT_GNUTLS_EXT_RAW_PARSE*/
1156
1157 /*XXX in tls1.3 the cert-status travel as an extension next to the cert, in the
1158  "Handshake Protocol: Certificate" record.
1159 So we need to spot the Certificate handshake message, parse it and spot any status_request extension(s)
1160
1161 This is different to tls1.2 - where it is a separate record (wireshark term) / handshake message (gnutls term).
1162 */
1163
1164 #if defined(EXIM_HAVE_TLS_RESUME) || defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1165 /* Callback for certificate-status, on server. We sent stapled OCSP. */
1166 static int
1167 tls_server_certstatus_cb(gnutls_session_t session, unsigned int htype,
1168   unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1169 {
1170 DEBUG(D_tls) debug_printf("Sending certificate-status\n");              /*XXX we get this for tls1.2 but not for 1.3 */
1171 # ifdef SUPPORT_SRV_OCSP_STACK
1172 tls_in.ocsp = exim_testharness_disable_ocsp_validity_check
1173   ? OCSP_VFY_NOT_TRIED : OCSP_VFIED;    /* We know that GnuTLS verifies responses */
1174 # else
1175 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1176 # endif
1177 return 0;
1178 }
1179
1180 /* Callback for handshake messages, on server */
1181 static int
1182 tls_server_hook_cb(gnutls_session_t sess, u_int htype, unsigned when,
1183   unsigned incoming, const gnutls_datum_t * msg)
1184 {
1185 /* debug_printf("%s: htype %u\n", __FUNCTION__, htype); */
1186 switch (htype)
1187   {
1188 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1189   case GNUTLS_HANDSHAKE_CLIENT_HELLO:
1190     return tls_server_clienthello_cb(sess, htype, when, incoming, msg);
1191   case GNUTLS_HANDSHAKE_CERTIFICATE_PKT:
1192     return tls_server_servercerts_cb(sess, htype, when, incoming, msg);
1193 # endif
1194   case GNUTLS_HANDSHAKE_CERTIFICATE_STATUS:
1195     return tls_server_certstatus_cb(sess, htype, when, incoming, msg);
1196 # ifdef EXIM_HAVE_TLS_RESUME
1197   case GNUTLS_HANDSHAKE_NEW_SESSION_TICKET:
1198     return tls_server_ticket_cb(sess, htype, when, incoming, msg);
1199 # endif
1200   default:
1201     return 0;
1202   }
1203 }
1204 #endif
1205
1206
1207 #if !defined(DISABLE_OCSP) && defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1208 static void
1209 tls_server_testharness_ocsp_fiddle(void)
1210 {
1211 extern char ** environ;
1212 if (environ) for (uschar ** p = USS environ; *p; p++)
1213   if (Ustrncmp(*p, "EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK", 42) == 0)
1214     {
1215     DEBUG(D_tls) debug_printf("Permitting known bad OCSP response\n");
1216     exim_testharness_disable_ocsp_validity_check = TRUE;
1217     }
1218 }
1219 #endif
1220
1221 /**************************************************
1222 * One-time init credentials for server and client *
1223 **************************************************/
1224
1225 static void
1226 creds_basic_init(gnutls_certificate_credentials_t x509_cred, BOOL server)
1227 {
1228 #ifdef SUPPORT_SRV_OCSP_STACK
1229 gnutls_certificate_set_flags(x509_cred, GNUTLS_CERTIFICATE_API_V2);
1230
1231 # if !defined(DISABLE_OCSP) && defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1232 if (server && tls_ocsp_file)
1233   {
1234   if (f.running_in_test_harness)
1235     tls_server_testharness_ocsp_fiddle();
1236
1237   if (exim_testharness_disable_ocsp_validity_check)
1238     gnutls_certificate_set_flags(x509_cred,
1239       GNUTLS_CERTIFICATE_API_V2 | GNUTLS_CERTIFICATE_SKIP_OCSP_RESPONSE_CHECK);
1240   }
1241 # endif
1242 #endif
1243 DEBUG(D_tls)
1244   debug_printf("TLS: basic cred init, %s\n", server ? "server" : "client");
1245 }
1246
1247 static int
1248 creds_load_server_certs(exim_gnutls_state_st * state, const uschar * cert,
1249   const uschar * pkey, const uschar * ocsp, uschar ** errstr)
1250 {
1251 const uschar * clist = cert;
1252 const uschar * klist = pkey;
1253 const uschar * olist;
1254 int csep = 0, ksep = 0, osep = 0, cnt = 0, rc;
1255 uschar * cfile, * kfile, * ofile;
1256 #ifndef DISABLE_OCSP
1257 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1258 gnutls_x509_crt_fmt_t ocsp_fmt = GNUTLS_X509_FMT_DER;
1259 # endif
1260
1261 if (!expand_check(ocsp, US"tls_ocsp_file", &ofile, errstr))
1262   return DEFER;
1263 olist = ofile;
1264 #endif
1265
1266 while (cfile = string_nextinlist(&clist, &csep, NULL, 0))
1267
1268   if (!(kfile = string_nextinlist(&klist, &ksep, NULL, 0)))
1269     return tls_error(US"cert/key setup: out of keys", NULL, NULL, errstr);
1270   else if ((rc = tls_add_certfile(state, NULL, cfile, kfile, errstr)) > 0)
1271     return rc;
1272   else
1273     {
1274     int gnutls_cert_index = -rc;
1275     DEBUG(D_tls) debug_printf("TLS: cert/key %d %s registered\n",
1276                               gnutls_cert_index, cfile);
1277
1278 #ifndef DISABLE_OCSP
1279     if (ocsp)
1280       {
1281       /* Set the OCSP stapling server info */
1282       if (gnutls_buggy_ocsp)
1283         {
1284         DEBUG(D_tls)
1285           debug_printf("GnuTLS library is buggy for OCSP; avoiding\n");
1286         }
1287       else if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
1288         {
1289         DEBUG(D_tls) debug_printf("OCSP response file %d  = %s\n",
1290                                   gnutls_cert_index, ofile);
1291 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1292         if (Ustrncmp(ofile, US"PEM ", 4) == 0)
1293           {
1294           ocsp_fmt = GNUTLS_X509_FMT_PEM;
1295           ofile += 4;
1296           }
1297         else if (Ustrncmp(ofile, US"DER ", 4) == 0)
1298           {
1299           ocsp_fmt = GNUTLS_X509_FMT_DER;
1300           ofile += 4;
1301           }
1302
1303         if  ((rc = gnutls_certificate_set_ocsp_status_request_file2(
1304                   state->lib_state.x509_cred, CCS ofile, gnutls_cert_index,
1305                   ocsp_fmt)) < 0)
1306           return tls_error_gnu(state,
1307                   US"gnutls_certificate_set_ocsp_status_request_file2",
1308                   rc, errstr);
1309         DEBUG(D_tls)
1310           debug_printf(" %d response%s loaded\n", rc, rc>1 ? "s":"");
1311
1312         /* Arrange callbacks for OCSP request observability */
1313
1314         if (state->session)
1315           gnutls_handshake_set_hook_function(state->session,
1316             GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1317         else
1318           state->lib_state.ocsp_hook = TRUE;
1319
1320
1321 # else
1322 #  if defined(SUPPORT_SRV_OCSP_STACK)
1323         if ((rc = gnutls_certificate_set_ocsp_status_request_function2(
1324                      state->lib_state.x509_cred, gnutls_cert_index,
1325                      server_ocsp_stapling_cb, ofile)))
1326             return tls_error_gnu(state,
1327                   US"gnutls_certificate_set_ocsp_status_request_function2",
1328                   rc, errstr);
1329         else
1330 #  endif
1331           {
1332           if (cnt++ > 0)
1333             {
1334             DEBUG(D_tls)
1335               debug_printf("oops; multiple OCSP files not supported\n");
1336             break;
1337             }
1338           gnutls_certificate_set_ocsp_status_request_function(
1339             state->lib_state.x509_cred, server_ocsp_stapling_cb, ofile);
1340           }
1341 # endif /* SUPPORT_GNUTLS_EXT_RAW_PARSE */
1342         }
1343       else
1344         DEBUG(D_tls) debug_printf("ran out of OCSP response files in list\n");
1345       }
1346 #endif /* DISABLE_OCSP */
1347     }
1348 return 0;
1349 }
1350
1351 static int
1352 creds_load_client_certs(exim_gnutls_state_st * state, const host_item * host,
1353   const uschar * cert, const uschar * pkey, uschar ** errstr)
1354 {
1355 int rc = tls_add_certfile(state, host, cert, pkey, errstr);
1356 if (rc > 0) return rc;
1357 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
1358 return 0;
1359 }
1360
1361 static int
1362 creds_load_cabundle(exim_gnutls_state_st * state, const uschar * bundle,
1363   const host_item * host, uschar ** errstr)
1364 {
1365 int cert_count;
1366 struct stat statbuf;
1367
1368 #ifdef SUPPORT_SYSDEFAULT_CABUNDLE
1369 if (Ustrcmp(bundle, "system") == 0 || Ustrncmp(bundle, "system,", 7) == 0)
1370   cert_count = gnutls_certificate_set_x509_system_trust(state->lib_state.x509_cred);
1371 else
1372 #endif
1373   {
1374   if (Ustat(bundle, &statbuf) < 0)
1375     {
1376     log_write(0, LOG_MAIN|LOG_PANIC, "could not stat '%s' "
1377         "(tls_verify_certificates): %s", bundle, strerror(errno));
1378     return DEFER;
1379     }
1380
1381 #ifndef SUPPORT_CA_DIR
1382   /* The test suite passes in /dev/null; we could check for that path explicitly,
1383   but who knows if someone has some weird FIFO which always dumps some certs, or
1384   other weirdness.  The thing we really want to check is that it's not a
1385   directory, since while OpenSSL supports that, GnuTLS does not.
1386   So s/!S_ISREG/S_ISDIR/ and change some messaging ... */
1387   if (S_ISDIR(statbuf.st_mode))
1388     {
1389     log_write(0, LOG_MAIN|LOG_PANIC,
1390         "tls_verify_certificates \"%s\" is a directory", bundle);
1391     return DEFER;
1392     }
1393 #endif
1394
1395   DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
1396           bundle, statbuf.st_size);
1397
1398   if (statbuf.st_size == 0)
1399     {
1400     DEBUG(D_tls)
1401       debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
1402     return OK;
1403     }
1404
1405   cert_count =
1406
1407 #ifdef SUPPORT_CA_DIR
1408     (statbuf.st_mode & S_IFMT) == S_IFDIR
1409     ?
1410     gnutls_certificate_set_x509_trust_dir(state->lib_state.x509_cred,
1411       CS bundle, GNUTLS_X509_FMT_PEM)
1412     :
1413 #endif
1414     gnutls_certificate_set_x509_trust_file(state->lib_state.x509_cred,
1415       CS bundle, GNUTLS_X509_FMT_PEM);
1416
1417 #ifdef SUPPORT_CA_DIR
1418   /* Mimic the behaviour with OpenSSL of not advertising a usable-cert list
1419   when using the directory-of-certs config model. */
1420
1421   if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
1422     if (state->session)
1423       gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1424     else
1425       state->lib_state.ca_rdn_emulate = TRUE;
1426 #endif
1427   }
1428
1429 if (cert_count < 0)
1430   return tls_error_gnu(state, US"setting certificate trust", cert_count, errstr);
1431 DEBUG(D_tls)
1432   debug_printf("Added %d certificate authorities\n", cert_count);
1433
1434 return OK;
1435 }
1436
1437
1438 static int
1439 creds_load_crl(exim_gnutls_state_st * state, const uschar * crl, uschar ** errstr)
1440 {
1441 int cert_count;
1442 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", crl);
1443 if ((cert_count = gnutls_certificate_set_x509_crl_file(state->lib_state.x509_cred,
1444     CS crl, GNUTLS_X509_FMT_PEM)) < 0)
1445   return tls_error_gnu(state, US"gnutls_certificate_set_x509_crl_file",
1446             cert_count, errstr);
1447
1448 DEBUG(D_tls) debug_printf("Processed %d CRLs\n", cert_count);
1449 return OK;
1450 }
1451
1452
1453 static int
1454 creds_load_pristring(exim_gnutls_state_st * state, const uschar * p,
1455   const char ** errpos)
1456 {
1457 if (!p)
1458   {
1459   p = exim_default_gnutls_priority;
1460   DEBUG(D_tls)
1461     debug_printf("GnuTLS using default session cipher/priority \"%s\"\n", p);
1462   }
1463 return gnutls_priority_init( (gnutls_priority_t *) &state->lib_state.pri_cache,
1464   CCS p, errpos);
1465 }
1466
1467 static unsigned
1468 tls_server_creds_init(void)
1469 {
1470 uschar * dummy_errstr;
1471 unsigned lifetime = 0;
1472
1473 state_server.lib_state = null_tls_preload;
1474 if (gnutls_certificate_allocate_credentials(
1475       (gnutls_certificate_credentials_t *) &state_server.lib_state.x509_cred))
1476   {
1477   state_server.lib_state.x509_cred = NULL;
1478   return lifetime;
1479   }
1480 creds_basic_init(state_server.lib_state.x509_cred, TRUE);
1481
1482 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
1483 /* If tls_certificate has any $ indicating expansions, it is not good.
1484 If tls_privatekey is set but has $, not good.  Likewise for tls_ocsp_file.
1485 If all good (and tls_certificate set), load the cert(s). */
1486
1487 if (  opt_set_and_noexpand(tls_certificate)
1488 # ifndef DISABLE_OCSP
1489    && opt_unset_or_noexpand(tls_ocsp_file)
1490 # endif
1491    && opt_unset_or_noexpand(tls_privatekey))
1492   {
1493   /* Set watches on the filenames.  The implementation does de-duplication
1494   so we can just blindly do them all.
1495   */
1496
1497   if (  tls_set_watch(tls_certificate, TRUE)
1498 # ifndef DISABLE_OCSP
1499      && tls_set_watch(tls_ocsp_file, TRUE)
1500 # endif
1501      && tls_set_watch(tls_privatekey, TRUE))
1502     {
1503     DEBUG(D_tls) debug_printf("TLS: preloading server certs\n");
1504     if (creds_load_server_certs(&state_server, tls_certificate,
1505           tls_privatekey && *tls_privatekey ? tls_privatekey : tls_certificate,
1506 # ifdef DISABLE_OCSP
1507           NULL,
1508 # else
1509           tls_ocsp_file,
1510 # endif
1511           &dummy_errstr) == 0)
1512       state_server.lib_state.conn_certs = TRUE;
1513     }
1514   }
1515 else if (  !tls_certificate && !tls_privatekey
1516 # ifndef DISABLE_OCSP
1517         && !tls_ocsp_file
1518 # endif
1519         )
1520   {             /* Generate & preload a selfsigned cert. No files to watch. */
1521   if ((tls_install_selfsign(&state_server, &dummy_errstr)) == OK)
1522     {
1523     state_server.lib_state.conn_certs = TRUE;
1524     lifetime = f.running_in_test_harness ? 2 : 60 * 60;         /* 1 hour */
1525     }
1526   }
1527 else
1528   DEBUG(D_tls) debug_printf("TLS: not preloading server certs\n");
1529
1530 /* If tls_verify_certificates is non-empty and has no $, load CAs.
1531 If none was configured and we can't handle "system", treat as empty. */
1532
1533 if (  opt_set_and_noexpand(tls_verify_certificates)
1534 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1535    && Ustrcmp(tls_verify_certificates, "system") != 0
1536 #endif
1537    )
1538   {
1539   if (tls_set_watch(tls_verify_certificates, FALSE))
1540     {
1541     DEBUG(D_tls) debug_printf("TLS: preloading CA bundle for server\n");
1542     if (creds_load_cabundle(&state_server, tls_verify_certificates,
1543                             NULL, &dummy_errstr) != OK)
1544       return lifetime;
1545     state_server.lib_state.cabundle = TRUE;
1546
1547     /* If CAs loaded and tls_crl is non-empty and has no $, load it */
1548
1549     if (opt_set_and_noexpand(tls_crl))
1550       {
1551       if (tls_set_watch(tls_crl, FALSE))
1552         {
1553         DEBUG(D_tls) debug_printf("TLS: preloading CRL for server\n");
1554         if (creds_load_crl(&state_server, tls_crl, &dummy_errstr) != OK)
1555           return lifetime;
1556         state_server.lib_state.crl = TRUE;
1557         }
1558       }
1559     else
1560       DEBUG(D_tls) debug_printf("TLS: not preloading CRL for server\n");
1561     }
1562   }
1563 else
1564   DEBUG(D_tls) debug_printf("TLS: not preloading CA bundle for server\n");
1565 #endif  /* EXIM_HAVE_INOTIFY */
1566
1567 /* If tls_require_ciphers is non-empty and has no $, load the
1568 ciphers priority cache.  If unset, load with the default.
1569 (server-only as the client one depends on non/DANE) */
1570
1571 if (!tls_require_ciphers || opt_set_and_noexpand(tls_require_ciphers))
1572   {
1573   const char * dummy_errpos;
1574   DEBUG(D_tls) debug_printf("TLS: preloading cipher list for server: %s\n",
1575                   tls_require_ciphers);
1576   if (  creds_load_pristring(&state_server, tls_require_ciphers, &dummy_errpos)
1577      == OK)
1578     state_server.lib_state.pri_string = TRUE;
1579   }
1580 else
1581   DEBUG(D_tls) debug_printf("TLS: not preloading cipher list for server\n");
1582 return lifetime;
1583 }
1584
1585
1586 /* Preload whatever creds are static, onto a transport.  The client can then
1587 just copy the pointer as it starts up. */
1588
1589 static void
1590 tls_client_creds_init(transport_instance * t, BOOL watch)
1591 {
1592 smtp_transport_options_block * ob = t->options_block;
1593 exim_gnutls_state_st tpt_dummy_state;
1594 host_item * dummy_host = (host_item *)1;
1595 uschar * dummy_errstr;
1596
1597 if (  !exim_gnutls_base_init_done
1598    && tls_g_init(&dummy_errstr) != OK)
1599   return;
1600
1601 ob->tls_preload = null_tls_preload;
1602 if (gnutls_certificate_allocate_credentials(
1603   (struct gnutls_certificate_credentials_st **)&ob->tls_preload.x509_cred))
1604   {
1605   ob->tls_preload.x509_cred = NULL;
1606   return;
1607   }
1608 creds_basic_init(ob->tls_preload.x509_cred, FALSE);
1609
1610 tpt_dummy_state.session = NULL;
1611 tpt_dummy_state.lib_state = ob->tls_preload;
1612
1613 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
1614 if (  opt_set_and_noexpand(ob->tls_certificate)
1615    && opt_unset_or_noexpand(ob->tls_privatekey))
1616   {
1617   if (  !watch
1618      || (  tls_set_watch(ob->tls_certificate, FALSE)
1619         && tls_set_watch(ob->tls_privatekey, FALSE)
1620      )  )
1621     {
1622     const uschar * pkey = ob->tls_privatekey;
1623
1624     DEBUG(D_tls)
1625       debug_printf("TLS: preloading client certs for transport '%s'\n", t->name);
1626
1627     /* The state->lib_state.x509_cred is used for the certs load, and is the sole
1628     structure element used.  So we can set up a dummy.  The hoat arg only
1629     selects a retcode in case of fail, so any value */
1630
1631     if (creds_load_client_certs(&tpt_dummy_state, dummy_host,
1632           ob->tls_certificate, pkey ? pkey : ob->tls_certificate,
1633           &dummy_errstr) == OK)
1634       ob->tls_preload.conn_certs = TRUE;
1635     }
1636   }
1637 else
1638   DEBUG(D_tls)
1639     debug_printf("TLS: not preloading client certs, for transport '%s'\n", t->name);
1640
1641 /* If tls_verify_certificates is non-empty and has no $, load CAs.
1642 If none was configured and we can't handle "system", treat as empty. */
1643
1644 if (  opt_set_and_noexpand(ob->tls_verify_certificates)
1645 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1646    && Ustrcmp(ob->tls_verify_certificates, "system") != 0
1647 #endif
1648    )
1649   {
1650   if (!watch || tls_set_watch(ob->tls_verify_certificates, FALSE))
1651     {
1652     DEBUG(D_tls)
1653       debug_printf("TLS: preloading CA bundle for transport '%s'\n", t->name);
1654     if (creds_load_cabundle(&tpt_dummy_state, ob->tls_verify_certificates,
1655                             dummy_host, &dummy_errstr) != OK)
1656       return;
1657     ob->tls_preload.cabundle = TRUE;
1658
1659     if (opt_set_and_noexpand(ob->tls_crl))
1660       {
1661       if (!watch || tls_set_watch(ob->tls_crl, FALSE))
1662         {
1663         DEBUG(D_tls) debug_printf("TLS: preloading CRL for transport '%s'\n", t->name);
1664         if (creds_load_crl(&tpt_dummy_state, ob->tls_crl, &dummy_errstr) != OK)
1665           return;
1666         ob->tls_preload.crl = TRUE;
1667         }
1668       }
1669     else
1670       DEBUG(D_tls) debug_printf("TLS: not preloading CRL, for transport '%s'\n", t->name);
1671     }
1672   }
1673 else
1674   DEBUG(D_tls)
1675       debug_printf("TLS: not preloading CA bundle, for transport '%s'\n", t->name);
1676
1677 /* We do not preload tls_require_ciphers to to the transport as it implicitly
1678 depends on DANE or plain usage. */
1679
1680 #endif
1681 }
1682
1683
1684 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
1685 /* Invalidate the creds cached, by dropping the current ones.
1686 Call when we notice one of the source files has changed. */
1687  
1688 static void
1689 tls_server_creds_invalidate(void)
1690 {
1691 if (state_server.lib_state.pri_cache)
1692   gnutls_priority_deinit(state_server.lib_state.pri_cache);
1693 state_server.lib_state.pri_cache = NULL;
1694
1695 if (state_server.lib_state.x509_cred)
1696   gnutls_certificate_free_credentials(state_server.lib_state.x509_cred);
1697 state_server.lib_state = null_tls_preload;
1698 }
1699
1700
1701 static void
1702 tls_client_creds_invalidate(transport_instance * t)
1703 {
1704 smtp_transport_options_block * ob = t->options_block;
1705 if (ob->tls_preload.x509_cred)
1706   gnutls_certificate_free_credentials(ob->tls_preload.x509_cred);
1707 ob->tls_preload = null_tls_preload;
1708 }
1709 #endif
1710
1711
1712 /*************************************************
1713 *       Variables re-expanded post-SNI           *
1714 *************************************************/
1715
1716 /* Called from both server and client code, via tls_init(), and also from
1717 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
1718
1719 We can tell the two apart by state->received_sni being non-NULL in callback.
1720
1721 The callback should not call us unless state->trigger_sni_changes is true,
1722 which we are responsible for setting on the first pass through.
1723
1724 Arguments:
1725   state           exim_gnutls_state_st *
1726   errstr          error string pointer
1727
1728 Returns:          OK/DEFER/FAIL
1729 */
1730
1731 static int
1732 tls_expand_session_files(exim_gnutls_state_st * state, uschar ** errstr)
1733 {
1734 int rc;
1735 const host_item *host = state->host;  /* macro should be reconsidered? */
1736 const uschar *saved_tls_certificate = NULL;
1737 const uschar *saved_tls_privatekey = NULL;
1738 const uschar *saved_tls_verify_certificates = NULL;
1739 const uschar *saved_tls_crl = NULL;
1740 int cert_count;
1741
1742 /* We check for tls_sni *before* expansion. */
1743 if (!host)      /* server */
1744   if (!state->received_sni)
1745     {
1746     if (  state->tls_certificate
1747        && (  Ustrstr(state->tls_certificate, US"tls_sni")
1748           || Ustrstr(state->tls_certificate, US"tls_in_sni")
1749           || Ustrstr(state->tls_certificate, US"tls_out_sni")
1750        )  )
1751       {
1752       DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI\n");
1753       state->trigger_sni_changes = TRUE;
1754       }
1755     }
1756   else  /* SNI callback case */
1757     {
1758     /* useful for debugging */
1759     saved_tls_certificate = state->exp_tls_certificate;
1760     saved_tls_privatekey = state->exp_tls_privatekey;
1761     saved_tls_verify_certificates = state->exp_tls_verify_certificates;
1762     saved_tls_crl = state->exp_tls_crl;
1763     }
1764
1765 if (!state->lib_state.x509_cred)
1766   {
1767   if ((rc = gnutls_certificate_allocate_credentials(
1768         (gnutls_certificate_credentials_t *) &state->lib_state.x509_cred)))
1769     return tls_error_gnu(state, US"gnutls_certificate_allocate_credentials",
1770             rc, errstr);
1771   creds_basic_init(state->lib_state.x509_cred, !host);
1772   }
1773
1774
1775 /* remember: Expand_check_tlsvar() is expand_check() but fiddling with
1776 state members, assuming consistent naming; and expand_check() returns
1777 false if expansion failed, unless expansion was forced to fail. */
1778
1779 /* check if we at least have a certificate, before doing expensive
1780 D-H generation. */
1781
1782 if (!state->lib_state.conn_certs)
1783   {
1784   if (!Expand_check_tlsvar(tls_certificate, errstr))
1785     return DEFER;
1786
1787   /* certificate is mandatory in server, optional in client */
1788
1789   if (  !state->exp_tls_certificate
1790      || !*state->exp_tls_certificate
1791      )
1792     if (!host)
1793       return tls_install_selfsign(state, errstr);
1794     else
1795       DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
1796
1797   if (state->tls_privatekey && !Expand_check_tlsvar(tls_privatekey, errstr))
1798     return DEFER;
1799
1800   /* tls_privatekey is optional, defaulting to same file as certificate */
1801
1802   if (!state->tls_privatekey || !*state->tls_privatekey)
1803     {
1804     state->tls_privatekey = state->tls_certificate;
1805     state->exp_tls_privatekey = state->exp_tls_certificate;
1806     }
1807
1808   if (state->exp_tls_certificate && *state->exp_tls_certificate)
1809     {
1810     BOOL load = TRUE;
1811     DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
1812         state->exp_tls_certificate, state->exp_tls_privatekey);
1813
1814     if (state->received_sni)
1815       if (  Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0
1816          && Ustrcmp(state->exp_tls_privatekey,  saved_tls_privatekey)  == 0
1817          )
1818         {
1819         DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
1820         load = FALSE;   /* avoid re-loading the same certs */
1821         }
1822       else              /* unload the pre-SNI certs before loading new ones */
1823         {
1824         DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair\n");
1825         gnutls_certificate_free_keys(state->lib_state.x509_cred);
1826         }
1827
1828     if (  load
1829        && (rc = host
1830           ? creds_load_client_certs(state, host, state->exp_tls_certificate,
1831                               state->exp_tls_privatekey, errstr)
1832           : creds_load_server_certs(state, state->exp_tls_certificate,
1833                               state->exp_tls_privatekey,
1834 #ifdef DISABLE_OCSP
1835                               NULL,
1836 #else
1837                               tls_ocsp_file,
1838 #endif
1839                               errstr)
1840        )  ) return rc;
1841     }
1842   }
1843 else
1844   {
1845   DEBUG(D_tls)
1846     debug_printf("%s certs were preloaded\n", host ? "client" : "server");
1847
1848   if (!state->tls_privatekey) state->tls_privatekey = state->tls_certificate;
1849   state->exp_tls_certificate = US state->tls_certificate;
1850   state->exp_tls_privatekey = US state->tls_privatekey;
1851
1852 #ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1853   if (state->lib_state.ocsp_hook)
1854      gnutls_handshake_set_hook_function(state->session,
1855        GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1856 #endif
1857   }
1858
1859
1860 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
1861 provided. Experiment shows that, if the certificate file is empty, an unhelpful
1862 error message is provided. However, if we just refrain from setting anything up
1863 in that case, certificate verification fails, which seems to be the correct
1864 behaviour.
1865 If none was configured and we can't handle "system", treat as empty. */
1866
1867 if (!state->lib_state.cabundle)
1868   {
1869   if (state->tls_verify_certificates && *state->tls_verify_certificates)
1870     {
1871     if (!Expand_check_tlsvar(tls_verify_certificates, errstr))
1872       return DEFER;
1873 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1874     if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1875       state->exp_tls_verify_certificates = NULL;
1876 #endif
1877     if (state->tls_crl && *state->tls_crl)
1878       if (!Expand_check_tlsvar(tls_crl, errstr))
1879         return DEFER;
1880
1881     if (!(state->exp_tls_verify_certificates &&
1882           *state->exp_tls_verify_certificates))
1883       {
1884       DEBUG(D_tls)
1885         debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
1886       /* With no tls_verify_certificates, we ignore tls_crl too */
1887       return OK;
1888       }
1889     }
1890   else
1891     {
1892     DEBUG(D_tls)
1893       debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
1894     return OK;
1895     }
1896   rc = creds_load_cabundle(state, state->exp_tls_verify_certificates, host, errstr);
1897   if (rc != OK) return rc;
1898   }
1899 else
1900   {
1901   DEBUG(D_tls)
1902     debug_printf("%s CA bundle was preloaded\n", host ? "client" : "server");
1903   state->exp_tls_verify_certificates = US state->tls_verify_certificates;
1904
1905 #ifdef SUPPORT_CA_DIR
1906 /* Mimic the behaviour with OpenSSL of not advertising a usable-cert list
1907 when using the directory-of-certs config model. */
1908     if (state->lib_state.ca_rdn_emulate)
1909       gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1910 #endif
1911   }
1912
1913
1914 if (!state->lib_state.crl)
1915   {
1916   if (  state->tls_crl && *state->tls_crl
1917      && state->exp_tls_crl && *state->exp_tls_crl)
1918     return creds_load_crl(state, state->exp_tls_crl, errstr);
1919   }
1920 else
1921   {
1922   DEBUG(D_tls)
1923       debug_printf("%s CRL was preloaded\n", host ? "client" : "server");
1924   state->exp_tls_crl = US state->tls_crl;
1925   }
1926
1927 return OK;
1928 }
1929
1930
1931
1932
1933 /*************************************************
1934 *          Set X.509 state variables             *
1935 *************************************************/
1936
1937 /* In GnuTLS, the registered cert/key are not replaced by a later
1938 set of a cert/key, so for SNI support we need a whole new x509_cred
1939 structure.  Which means various other non-re-expanded pieces of state
1940 need to be re-set in the new struct, so the setting logic is pulled
1941 out to this.
1942
1943 Arguments:
1944   state           exim_gnutls_state_st *
1945   errstr          error string pointer
1946
1947 Returns:          OK/DEFER/FAIL
1948 */
1949
1950 static int
1951 tls_set_remaining_x509(exim_gnutls_state_st *state, uschar ** errstr)
1952 {
1953 int rc;
1954 const host_item *host = state->host;  /* macro should be reconsidered? */
1955
1956 #ifndef GNUTLS_AUTO_DHPARAMS
1957 /* Create D-H parameters, or read them from the cache file. This function does
1958 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
1959 client-side params. */
1960
1961 if (!state->host)
1962   {
1963   if (!dh_server_params)
1964     if ((rc = init_server_dh(errstr)) != OK) return rc;
1965
1966   /* Unnecessary & discouraged with 3.6.0 or later */
1967   gnutls_certificate_set_dh_params(state->lib_state.x509_cred, dh_server_params);
1968   }
1969 #else
1970 DEBUG(D_tls) if (tls_dhparam)
1971   debug_printf("Ignoring tls_dhparam (recent version GnuTLS)\n");
1972 #endif
1973
1974 /* Link the credentials to the session. */
1975
1976 if ((rc = gnutls_credentials_set(state->session,
1977             GNUTLS_CRD_CERTIFICATE, state->lib_state.x509_cred)))
1978   return tls_error_gnu(state, US"gnutls_credentials_set", rc, errstr);
1979
1980 return OK;
1981 }
1982
1983 /*************************************************
1984 *            Initialize for GnuTLS               *
1985 *************************************************/
1986
1987
1988 /* Called from both server and client code. In the case of a server, errors
1989 before actual TLS negotiation return DEFER.
1990
1991 Arguments:
1992   host            connected host, if client; NULL if server
1993   ob              tranport options block, if client; NULL if server
1994   require_ciphers tls_require_ciphers setting
1995   caller_state    returned state-info structure
1996   errstr          error string pointer
1997
1998 Returns:          OK/DEFER/FAIL
1999 */
2000
2001 static int
2002 tls_init(
2003     const host_item *host,
2004     smtp_transport_options_block * ob,
2005     const uschar * require_ciphers,
2006     exim_gnutls_state_st **caller_state,
2007     tls_support * tlsp,
2008     uschar ** errstr)
2009 {
2010 exim_gnutls_state_st * state;
2011 int rc;
2012 size_t sz;
2013
2014 if (  !exim_gnutls_base_init_done
2015    && (rc = tls_g_init(errstr)) != OK)
2016   return rc;
2017
2018 if (host)
2019   {
2020   /* For client-side sessions we allocate a context. This lets us run
2021   several in parallel. */
2022
2023   int old_pool = store_pool;
2024   store_pool = POOL_PERM;
2025   state = store_get(sizeof(exim_gnutls_state_st), FALSE);
2026   store_pool = old_pool;
2027
2028   memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
2029   state->lib_state = ob->tls_preload;
2030   state->tlsp = tlsp;
2031   DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
2032   rc = gnutls_init(&state->session, GNUTLS_CLIENT);
2033
2034   state->tls_certificate =      ob->tls_certificate;
2035   state->tls_privatekey =       ob->tls_privatekey;
2036   state->tls_sni =              ob->tls_sni;
2037   state->tls_verify_certificates = ob->tls_verify_certificates;
2038   state->tls_crl =              ob->tls_crl;
2039   }
2040 else
2041   {
2042   /* Server operations always use the one state_server context.  It is not
2043   shared because we have forked a fresh process for every receive.  However it
2044   can get re-used for successive TLS sessions on a single TCP connection. */
2045
2046   state = &state_server;
2047   state->tlsp = tlsp;
2048   DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
2049   rc = gnutls_init(&state->session, GNUTLS_SERVER);
2050
2051   state->tls_certificate =      tls_certificate;
2052   state->tls_privatekey =       tls_privatekey;
2053   state->tls_sni =              NULL;
2054   state->tls_verify_certificates = tls_verify_certificates;
2055   state->tls_crl =              tls_crl;
2056   }
2057 if (rc)
2058   return tls_error_gnu(state, US"gnutls_init", rc, errstr);
2059
2060 state->tls_require_ciphers =    require_ciphers;
2061 state->host = host;
2062
2063 /* This handles the variables that might get re-expanded after TLS SNI;
2064 tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
2065
2066 DEBUG(D_tls)
2067   debug_printf("Expanding various TLS configuration options for session credentials\n");
2068 if ((rc = tls_expand_session_files(state, errstr)) != OK) return rc;
2069
2070 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
2071 requires a new structure afterwards. */
2072
2073 if ((rc = tls_set_remaining_x509(state, errstr)) != OK) return rc;
2074
2075 /* set SNI in client, only */
2076 if (host)
2077   {
2078   if (!expand_check(state->tls_sni, US"tls_out_sni", &state->tlsp->sni, errstr))
2079     return DEFER;
2080   if (state->tlsp->sni && *state->tlsp->sni)
2081     {
2082     DEBUG(D_tls)
2083       debug_printf("Setting TLS client SNI to \"%s\"\n", state->tlsp->sni);
2084     sz = Ustrlen(state->tlsp->sni);
2085     if ((rc = gnutls_server_name_set(state->session,
2086           GNUTLS_NAME_DNS, state->tlsp->sni, sz)))
2087       return tls_error_gnu(state, US"gnutls_server_name_set", rc, errstr);
2088     }
2089   }
2090 else if (state->tls_sni)
2091   DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
2092       "have an SNI set for a server [%s]\n", state->tls_sni);
2093
2094 if (!state->lib_state.pri_string)
2095   {
2096   const uschar * p = NULL;
2097   const char * errpos;
2098
2099   /* This is the priority string support,
2100   http://www.gnutls.org/manual/html_node/Priority-Strings.html
2101   and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
2102   This was backwards incompatible, but means Exim no longer needs to track
2103   all algorithms and provide string forms for them. */
2104
2105   if (state->tls_require_ciphers && *state->tls_require_ciphers)
2106     {
2107     if (!Expand_check_tlsvar(tls_require_ciphers, errstr))
2108       return DEFER;
2109     if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
2110       {
2111       p = state->exp_tls_require_ciphers;
2112       DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n", p);
2113       }
2114     }
2115
2116   if ((rc = creds_load_pristring(state, p, &errpos)))
2117     return tls_error_gnu(state, string_sprintf(
2118                         "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
2119                         p, (long)(errpos - CS p), errpos),
2120                     rc, errstr);
2121   }
2122 else
2123   {
2124   DEBUG(D_tls) debug_printf("cipher list preloaded\n");
2125   state->exp_tls_require_ciphers = US state->tls_require_ciphers;
2126   }
2127
2128
2129 if ((rc = gnutls_priority_set(state->session, state->lib_state.pri_cache)))
2130   return tls_error_gnu(state, US"gnutls_priority_set", rc, errstr);
2131
2132 /* This also sets the server ticket expiration time to the same, and
2133 the STEK rotation time to 3x. */
2134
2135 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
2136
2137 /* Reduce security in favour of increased compatibility, if the admin
2138 decides to make that trade-off. */
2139 if (gnutls_compat_mode)
2140   {
2141 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
2142   DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
2143   gnutls_session_enable_compatibility_mode(state->session);
2144 #else
2145   DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
2146 #endif
2147   }
2148
2149 *caller_state = state;
2150 return OK;
2151 }
2152
2153
2154
2155 /*************************************************
2156 *            Extract peer information            *
2157 *************************************************/
2158
2159 static const uschar *
2160 cipher_stdname_kcm(gnutls_kx_algorithm_t kx, gnutls_cipher_algorithm_t cipher,
2161   gnutls_mac_algorithm_t mac)
2162 {
2163 uschar cs_id[2];
2164 gnutls_kx_algorithm_t kx_i;
2165 gnutls_cipher_algorithm_t cipher_i;
2166 gnutls_mac_algorithm_t mac_i;
2167
2168 for (size_t i = 0;
2169      gnutls_cipher_suite_info(i, cs_id, &kx_i, &cipher_i, &mac_i, NULL);
2170      i++)
2171   if (kx_i == kx && cipher_i == cipher && mac_i == mac)
2172     return cipher_stdname(cs_id[0], cs_id[1]);
2173 return NULL;
2174 }
2175
2176
2177
2178 /* Called from both server and client code.
2179 Only this is allowed to set state->peerdn and state->have_set_peerdn
2180 and we use that to detect double-calls.
2181
2182 NOTE: the state blocks last while the TLS connection is up, which is fine
2183 for logging in the server side, but for the client side, we log after teardown
2184 in src/deliver.c.  While the session is up, we can twist about states and
2185 repoint tls_* globals, but those variables used for logging or other variable
2186 expansion that happens _after_ delivery need to have a longer life-time.
2187
2188 So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
2189 doing this more than once per generation of a state context.  We set them in
2190 the state context, and repoint tls_* to them.  After the state goes away, the
2191 tls_* copies of the pointers remain valid and client delivery logging is happy.
2192
2193 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
2194 don't apply.
2195
2196 Arguments:
2197   state           exim_gnutls_state_st *
2198   errstr          pointer to error string
2199
2200 Returns:          OK/DEFER/FAIL
2201 */
2202
2203 static int
2204 peer_status(exim_gnutls_state_st * state, uschar ** errstr)
2205 {
2206 gnutls_session_t session = state->session;
2207 const gnutls_datum_t * cert_list;
2208 int old_pool, rc;
2209 unsigned int cert_list_size = 0;
2210 gnutls_protocol_t protocol;
2211 gnutls_cipher_algorithm_t cipher;
2212 gnutls_kx_algorithm_t kx;
2213 gnutls_mac_algorithm_t mac;
2214 gnutls_certificate_type_t ct;
2215 gnutls_x509_crt_t crt;
2216 uschar * dn_buf;
2217 size_t sz;
2218
2219 if (state->have_set_peerdn)
2220   return OK;
2221 state->have_set_peerdn = TRUE;
2222
2223 state->peerdn = NULL;
2224
2225 /* tls_cipher */
2226 cipher = gnutls_cipher_get(session);
2227 protocol = gnutls_protocol_get_version(session);
2228 mac = gnutls_mac_get(session);
2229 kx =
2230 #ifdef GNUTLS_TLS1_3
2231     protocol >= GNUTLS_TLS1_3 ? 0 :
2232 #endif
2233   gnutls_kx_get(session);
2234
2235 old_pool = store_pool;
2236   {
2237   tls_support * tlsp = state->tlsp;
2238   store_pool = POOL_PERM;
2239
2240 #ifdef SUPPORT_GNUTLS_SESS_DESC
2241     {
2242     gstring * g = NULL;
2243     uschar * s = US gnutls_session_get_desc(session), c;
2244
2245     /* Nikos M suggests we use this by preference.  It returns like:
2246     (TLS1.3)-(ECDHE-SECP256R1)-(RSA-PSS-RSAE-SHA256)-(AES-256-GCM)
2247
2248     For partial back-compat, put a colon after the TLS version, replace the
2249     )-( grouping with __, replace in-group - with _ and append the :keysize. */
2250
2251     /* debug_printf("peer_status: gnutls_session_get_desc %s\n", s); */
2252
2253     for (s++; (c = *s) && c != ')'; s++) g = string_catn(g, s, 1);
2254
2255     tlsp->ver = string_copyn(g->s, g->ptr);
2256     for (uschar * p = US tlsp->ver; *p; p++)
2257       if (*p == '-') { *p = '\0'; break; }      /* TLS1.0-PKIX -> TLS1.0 */
2258
2259     g = string_catn(g, US":", 1);
2260     if (*s) s++;                /* now on _ between groups */
2261     while ((c = *s))
2262       {
2263       for (*++s && ++s; (c = *s) && c != ')'; s++)
2264         g = string_catn(g, c == '-' ? US"_" : s, 1);
2265       /* now on ) closing group */
2266       if ((c = *s) && *++s == '-') g = string_catn(g, US"__", 2);
2267       /* now on _ between groups */
2268       }
2269     g = string_catn(g, US":", 1);
2270     g = string_cat(g, string_sprintf("%d", (int) gnutls_cipher_get_key_size(cipher) * 8));
2271     state->ciphersuite = string_from_gstring(g);
2272     }
2273 #else
2274   state->ciphersuite = string_sprintf("%s:%s:%d",
2275       gnutls_protocol_get_name(protocol),
2276       gnutls_cipher_suite_get_name(kx, cipher, mac),
2277       (int) gnutls_cipher_get_key_size(cipher) * 8);
2278
2279   /* I don't see a way that spaces could occur, in the current GnuTLS
2280   code base, but it was a concern in the old code and perhaps older GnuTLS
2281   releases did return "TLS 1.0"; play it safe, just in case. */
2282
2283   for (uschar * p = state->ciphersuite; *p; p++) if (isspace(*p)) *p = '-';
2284   tlsp->ver = string_copyn(state->ciphersuite,
2285                         Ustrchr(state->ciphersuite, ':') - state->ciphersuite);
2286 #endif
2287
2288 /* debug_printf("peer_status: ciphersuite %s\n", state->ciphersuite); */
2289
2290   tlsp->cipher = state->ciphersuite;
2291   tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
2292
2293   tlsp->cipher_stdname = cipher_stdname_kcm(kx, cipher, mac);
2294   }
2295 store_pool = old_pool;
2296
2297 /* tls_peerdn */
2298 cert_list = gnutls_certificate_get_peers(session, &cert_list_size);
2299
2300 if (!cert_list || cert_list_size == 0)
2301   {
2302   DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
2303       cert_list, cert_list_size);
2304   if (state->verify_requirement >= VERIFY_REQUIRED)
2305     return tls_error(US"certificate verification failed",
2306         US"no certificate received from peer", state->host, errstr);
2307   return OK;
2308   }
2309
2310 if ((ct = gnutls_certificate_type_get(session)) != GNUTLS_CRT_X509)
2311   {
2312   const uschar * ctn = US gnutls_certificate_type_get_name(ct);
2313   DEBUG(D_tls)
2314     debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
2315   if (state->verify_requirement >= VERIFY_REQUIRED)
2316     return tls_error(US"certificate verification not possible, unhandled type",
2317         ctn, state->host, errstr);
2318   return OK;
2319   }
2320
2321 #define exim_gnutls_peer_err(Label) \
2322   do { \
2323     if (rc != GNUTLS_E_SUCCESS) \
2324       { \
2325       DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", \
2326         (Label), gnutls_strerror(rc)); \
2327       if (state->verify_requirement >= VERIFY_REQUIRED) \
2328         return tls_error_gnu(state, (Label), rc, errstr); \
2329       return OK; \
2330       } \
2331     } while (0)
2332
2333 rc = import_cert(&cert_list[0], &crt);
2334 exim_gnutls_peer_err(US"cert 0");
2335
2336 state->tlsp->peercert = state->peercert = crt;
2337
2338 sz = 0;
2339 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
2340 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
2341   {
2342   exim_gnutls_peer_err(US"getting size for cert DN failed");
2343   return FAIL; /* should not happen */
2344   }
2345 dn_buf = store_get_perm(sz, TRUE);      /* tainted */
2346 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
2347 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
2348
2349 state->peerdn = dn_buf;
2350
2351 return OK;
2352 #undef exim_gnutls_peer_err
2353 }
2354
2355
2356
2357
2358 /*************************************************
2359 *            Verify peer certificate             *
2360 *************************************************/
2361
2362 /* Called from both server and client code.
2363 *Should* be using a callback registered with
2364 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
2365 the peer information, but that's too new for some OSes.
2366
2367 Arguments:
2368   state         exim_gnutls_state_st *
2369   errstr        where to put an error message
2370
2371 Returns:
2372   FALSE     if the session should be rejected
2373   TRUE      if the cert is okay or we just don't care
2374 */
2375
2376 static BOOL
2377 verify_certificate(exim_gnutls_state_st * state, uschar ** errstr)
2378 {
2379 int rc;
2380 uint verify;
2381
2382 DEBUG(D_tls) debug_printf("TLS: checking peer certificate\n");
2383 *errstr = NULL;
2384 rc = peer_status(state, errstr);
2385
2386 if (state->verify_requirement == VERIFY_NONE)
2387   return TRUE;
2388
2389 if (rc != OK || !state->peerdn)
2390   {
2391   verify = GNUTLS_CERT_INVALID;
2392   *errstr = US"certificate not supplied";
2393   }
2394 else
2395
2396   {
2397 #ifdef SUPPORT_DANE
2398   if (state->verify_requirement == VERIFY_DANE && state->host)
2399     {
2400     /* Using dane_verify_session_crt() would be easy, as it does it all for us
2401     including talking to a DNS resolver.  But we want to do that bit ourselves
2402     as the testsuite intercepts and fakes its own DNS environment. */
2403
2404     dane_state_t s;
2405     dane_query_t r;
2406     uint lsize;
2407     const gnutls_datum_t * certlist =
2408       gnutls_certificate_get_peers(state->session, &lsize);
2409     int usage = tls_out.tlsa_usage;
2410
2411 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2412     /* Split the TLSA records into two sets, TA and EE selectors.  Run the
2413     dane-verification separately so that we know which selector verified;
2414     then we know whether to do name-verification (needed for TA but not EE). */
2415
2416     if (usage == ((1<<DANESSL_USAGE_DANE_TA) | (1<<DANESSL_USAGE_DANE_EE)))
2417       {                                         /* a mixed-usage bundle */
2418       int i, j, nrec;
2419       const char ** dd;
2420       int * ddl;
2421
2422       for (nrec = 0; state->dane_data_len[nrec]; ) nrec++;
2423       nrec++;
2424
2425       dd = store_get(nrec * sizeof(uschar *), FALSE);
2426       ddl = store_get(nrec * sizeof(int), FALSE);
2427       nrec--;
2428
2429       if ((rc = dane_state_init(&s, 0)))
2430         goto tlsa_prob;
2431
2432       for (usage = DANESSL_USAGE_DANE_EE;
2433            usage >= DANESSL_USAGE_DANE_TA; usage--)
2434         {                               /* take records with this usage */
2435         for (j = i = 0; i < nrec; i++)
2436           if (state->dane_data[i][0] == usage)
2437             {
2438             dd[j] = state->dane_data[i];
2439             ddl[j++] = state->dane_data_len[i];
2440             }
2441         if (j)
2442           {
2443           dd[j] = NULL;
2444           ddl[j] = 0;
2445
2446           if ((rc = dane_raw_tlsa(s, &r, (char * const *)dd, ddl, 1, 0)))
2447             goto tlsa_prob;
2448
2449           if ((rc = dane_verify_crt_raw(s, certlist, lsize,
2450                             gnutls_certificate_type_get(state->session),
2451                             r, 0,
2452                             usage == DANESSL_USAGE_DANE_EE
2453                             ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
2454                             &verify)))
2455             {
2456             DEBUG(D_tls)
2457               debug_printf("TLSA record problem: %s\n", dane_strerror(rc));
2458             }
2459           else if (verify == 0) /* verification passed */
2460             {
2461             usage = 1 << usage;
2462             break;
2463             }
2464           }
2465         }
2466
2467         if (rc) goto tlsa_prob;
2468       }
2469     else
2470 # endif
2471       {
2472       if (  (rc = dane_state_init(&s, 0))
2473          || (rc = dane_raw_tlsa(s, &r, state->dane_data, state->dane_data_len,
2474                         1, 0))
2475          || (rc = dane_verify_crt_raw(s, certlist, lsize,
2476                         gnutls_certificate_type_get(state->session),
2477                         r, 0,
2478 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2479                         usage == (1 << DANESSL_USAGE_DANE_EE)
2480                         ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
2481 # else
2482                         0,
2483 # endif
2484                         &verify))
2485          )
2486         goto tlsa_prob;
2487       }
2488
2489     if (verify != 0)            /* verification failed */
2490       {
2491       gnutls_datum_t str;
2492       (void) dane_verification_status_print(verify, &str, 0);
2493       *errstr = US str.data;    /* don't bother to free */
2494       goto badcert;
2495       }
2496
2497 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2498     /* If a TA-mode TLSA record was used for verification we must additionally
2499     verify the cert name (but not the CA chain).  For EE-mode, skip it. */
2500
2501     if (usage & (1 << DANESSL_USAGE_DANE_EE))
2502 # endif
2503       {
2504       state->peer_dane_verified = state->peer_cert_verified = TRUE;
2505       goto goodcert;
2506       }
2507 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2508     /* Assume that the name on the A-record is the one that should be matching
2509     the cert.  An alternate view is that the domain part of the email address
2510     is also permissible. */
2511
2512     if (gnutls_x509_crt_check_hostname(state->tlsp->peercert,
2513           CS state->host->name))
2514       {
2515       state->peer_dane_verified = state->peer_cert_verified = TRUE;
2516       goto goodcert;
2517       }
2518 # endif
2519     }
2520 #endif  /*SUPPORT_DANE*/
2521
2522   rc = gnutls_certificate_verify_peers2(state->session, &verify);
2523   }
2524
2525 /* Handle the result of verification. INVALID is set if any others are. */
2526
2527 if (rc < 0 || verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED))
2528   {
2529   state->peer_cert_verified = FALSE;
2530   if (!*errstr)
2531     {
2532 #ifdef GNUTLS_CERT_VFY_STATUS_PRINT
2533     DEBUG(D_tls)
2534       {
2535       gnutls_datum_t txt;
2536
2537       if (gnutls_certificate_verification_status_print(verify,
2538             gnutls_certificate_type_get(state->session), &txt, 0)
2539           == GNUTLS_E_SUCCESS)
2540         {
2541         debug_printf("%s\n", txt.data);
2542         gnutls_free(txt.data);
2543         }
2544       }
2545 #endif
2546     *errstr = verify & GNUTLS_CERT_REVOKED
2547       ? US"certificate revoked" : US"certificate invalid";
2548     }
2549
2550   DEBUG(D_tls)
2551     debug_printf("TLS certificate verification failed (%s): peerdn=\"%s\"\n",
2552         *errstr, state->peerdn ? state->peerdn : US"<unset>");
2553
2554   if (state->verify_requirement >= VERIFY_REQUIRED)
2555     goto badcert;
2556   DEBUG(D_tls)
2557     debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
2558   }
2559
2560 else
2561   {
2562   /* Client side, check the server's certificate name versus the name on the
2563   A-record for the connection we made.  What to do for server side - what name
2564   to use for client?  We document that there is no such checking for server
2565   side. */
2566
2567   if (  state->exp_tls_verify_cert_hostnames
2568      && !gnutls_x509_crt_check_hostname(state->tlsp->peercert,
2569                 CS state->exp_tls_verify_cert_hostnames)
2570      )
2571     {
2572     DEBUG(D_tls)
2573       debug_printf("TLS certificate verification failed: cert name mismatch\n");
2574     if (state->verify_requirement >= VERIFY_REQUIRED)
2575       goto badcert;
2576     return TRUE;
2577     }
2578
2579   state->peer_cert_verified = TRUE;
2580   DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=\"%s\"\n",
2581       state->peerdn ? state->peerdn : US"<unset>");
2582   }
2583
2584 goodcert:
2585   state->tlsp->peerdn = state->peerdn;
2586   return TRUE;
2587
2588 #ifdef SUPPORT_DANE
2589 tlsa_prob:
2590   *errstr = string_sprintf("TLSA record problem: %s",
2591     rc == DANE_E_REQUESTED_DATA_NOT_AVAILABLE ? "none usable" : dane_strerror(rc));
2592 #endif
2593
2594 badcert:
2595   gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
2596   return FALSE;
2597 }
2598
2599
2600
2601
2602 /* ------------------------------------------------------------------------ */
2603 /* Callbacks */
2604
2605 /* Logging function which can be registered with
2606  *   gnutls_global_set_log_function()
2607  *   gnutls_global_set_log_level() 0..9
2608  */
2609 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
2610 static void
2611 exim_gnutls_logger_cb(int level, const char *message)
2612 {
2613   size_t len = strlen(message);
2614   if (len < 1)
2615     {
2616     DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
2617     return;
2618     }
2619   DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
2620       message[len-1] == '\n' ? "" : "\n");
2621 }
2622 #endif
2623
2624
2625 /* Called after client hello, should handle SNI work.
2626 This will always set tls_sni (state->received_sni) if available,
2627 and may trigger presenting different certificates,
2628 if state->trigger_sni_changes is TRUE.
2629
2630 Should be registered with
2631   gnutls_handshake_set_post_client_hello_function()
2632
2633 "This callback must return 0 on success or a gnutls error code to terminate the
2634 handshake.".
2635
2636 For inability to get SNI information, we return 0.
2637 We only return non-zero if re-setup failed.
2638 Only used for server-side TLS.
2639 */
2640
2641 static int
2642 exim_sni_handling_cb(gnutls_session_t session)
2643 {
2644 char sni_name[MAX_HOST_LEN];
2645 size_t data_len = MAX_HOST_LEN;
2646 exim_gnutls_state_st *state = &state_server;
2647 unsigned int sni_type;
2648 int rc, old_pool;
2649 uschar * dummy_errstr;
2650
2651 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
2652 if (rc != GNUTLS_E_SUCCESS)
2653   {
2654   DEBUG(D_tls)
2655     if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
2656       debug_printf("TLS: no SNI presented in handshake\n");
2657     else
2658       debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
2659         gnutls_strerror(rc), rc);
2660   return 0;
2661   }
2662
2663 if (sni_type != GNUTLS_NAME_DNS)
2664   {
2665   DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
2666   return 0;
2667   }
2668
2669 /* We now have a UTF-8 string in sni_name */
2670 old_pool = store_pool;
2671 store_pool = POOL_PERM;
2672 state->received_sni = string_copy_taint(US sni_name, TRUE);
2673 store_pool = old_pool;
2674
2675 /* We set this one now so that variable expansions below will work */
2676 state->tlsp->sni = state->received_sni;
2677
2678 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
2679     state->trigger_sni_changes ? "" : " (unused for certificate selection)");
2680
2681 if (!state->trigger_sni_changes)
2682   return 0;
2683
2684 if ((rc = tls_expand_session_files(state, &dummy_errstr)) != OK)
2685   {
2686   /* If the setup of certs/etc failed before handshake, TLS would not have
2687   been offered.  The best we can do now is abort. */
2688   return GNUTLS_E_APPLICATION_ERROR_MIN;
2689   }
2690
2691 rc = tls_set_remaining_x509(state, &dummy_errstr);
2692 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
2693
2694 return 0;
2695 }
2696
2697
2698
2699 #ifndef DISABLE_EVENT
2700 /*
2701 We use this callback to get observability and detail-level control
2702 for an exim TLS connection (either direction), raising a tls:cert event
2703 for each cert in the chain presented by the peer.  Any event
2704 can deny verification.
2705
2706 Return 0 for the handshake to continue or non-zero to terminate.
2707 */
2708
2709 static int
2710 verify_cb(gnutls_session_t session)
2711 {
2712 const gnutls_datum_t * cert_list;
2713 unsigned int cert_list_size = 0;
2714 gnutls_x509_crt_t crt;
2715 int rc;
2716 uschar * yield;
2717 exim_gnutls_state_st * state = gnutls_session_get_ptr(session);
2718
2719 if ((cert_list = gnutls_certificate_get_peers(session, &cert_list_size)))
2720   while (cert_list_size--)
2721   {
2722   if ((rc = import_cert(&cert_list[cert_list_size], &crt)) != GNUTLS_E_SUCCESS)
2723     {
2724     DEBUG(D_tls) debug_printf("TLS: peer cert problem: depth %d: %s\n",
2725       cert_list_size, gnutls_strerror(rc));
2726     break;
2727     }
2728
2729   state->tlsp->peercert = crt;
2730   if ((yield = event_raise(state->event_action,
2731               US"tls:cert", string_sprintf("%d", cert_list_size))))
2732     {
2733     log_write(0, LOG_MAIN,
2734               "SSL verify denied by event-action: depth=%d: %s",
2735               cert_list_size, yield);
2736     return 1;                     /* reject */
2737     }
2738   state->tlsp->peercert = NULL;
2739   }
2740
2741 return 0;
2742 }
2743
2744 #endif
2745
2746
2747 static gstring *
2748 ddump(gnutls_datum_t * d)
2749 {
2750 gstring * g = string_get((d->size+1) * 2);
2751 uschar * s = d->data;
2752 for (unsigned i = d->size; i > 0; i--, s++)
2753   {
2754   g = string_catn(g, US "0123456789abcdef" + (*s >> 4), 1);
2755   g = string_catn(g, US "0123456789abcdef" + (*s & 0xf), 1);
2756   }
2757 return g;
2758 }
2759
2760 static void
2761 post_handshake_debug(exim_gnutls_state_st * state)
2762 {
2763 #ifdef SUPPORT_GNUTLS_SESS_DESC
2764 debug_printf("%s\n", gnutls_session_get_desc(state->session));
2765 #endif
2766
2767 #ifdef SUPPORT_GNUTLS_KEYLOG
2768 # ifdef EXIM_HAVE_TLS1_3
2769 if (gnutls_protocol_get_version(state->session) < GNUTLS_TLS1_3)
2770 # else
2771 if (TRUE)
2772 # endif
2773   {
2774   gnutls_datum_t c, s;
2775   gstring * gc, * gs;
2776   /* For TLS1.2 we only want the client random and the master secret */
2777   gnutls_session_get_random(state->session, &c, &s);
2778   gnutls_session_get_master_secret(state->session, &s);
2779   gc = ddump(&c);
2780   gs = ddump(&s);
2781   debug_printf("CLIENT_RANDOM %.*s %.*s\n", (int)gc->ptr, gc->s, (int)gs->ptr, gs->s);
2782   }
2783 else
2784   debug_printf("To get keying info for TLS1.3 is hard:\n"
2785     " Set environment variable SSLKEYLOGFILE to a filename relative to the spool directory,\n"
2786     " and make sure it is writable by the Exim runtime user.\n"
2787     " Add SSLKEYLOGFILE to keep_environment in the exim config.\n"
2788     " Start Exim as root.\n"
2789     " If using sudo, add SSLKEYLOGFILE to env_keep in /etc/sudoers\n"
2790     " (works for TLS1.2 also, and saves cut-paste into file).\n"
2791     " Trying to use add_environment for this will not work\n");
2792 #endif
2793 }
2794
2795
2796 #ifdef EXIM_HAVE_TLS_RESUME
2797 static int
2798 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2799   unsigned incoming, const gnutls_datum_t * msg)
2800 {
2801 DEBUG(D_tls) debug_printf("newticket cb\n");
2802 tls_in.resumption |= RESUME_CLIENT_REQUESTED;
2803 return 0;
2804 }
2805
2806 static void
2807 tls_server_resume_prehandshake(exim_gnutls_state_st * state)
2808 {
2809 /* Should the server offer session resumption? */
2810 tls_in.resumption = RESUME_SUPPORTED;
2811 if (verify_check_host(&tls_resumption_hosts) == OK)
2812   {
2813   int rc;
2814   /* GnuTLS appears to not do ticket overlap, but does emit a fresh ticket when
2815   an offered resumption is unacceptable.  We lose one resumption per ticket
2816   lifetime, and sessions cannot be indefinitely re-used.  There seems to be no
2817   way (3.6.7) of changing the default number of 2 TLS1.3 tickets issued, but at
2818   least they go out in a single packet. */
2819
2820   if (!(rc = gnutls_session_ticket_enable_server(state->session,
2821               &server_sessticket_key)))
2822     tls_in.resumption |= RESUME_SERVER_TICKET;
2823   else
2824     DEBUG(D_tls)
2825       debug_printf("enabling session tickets: %s\n", US gnutls_strerror(rc));
2826
2827   /* Try to tell if we see a ticket request */
2828   gnutls_handshake_set_hook_function(state->session,
2829     GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
2830   }
2831 }
2832
2833 static void
2834 tls_server_resume_posthandshake(exim_gnutls_state_st * state)
2835 {
2836 if (gnutls_session_resumption_requested(state->session))
2837   {
2838   /* This tells us the client sent a full ticket.  We use a
2839   callback on session-ticket request, elsewhere, to tell
2840   if a client asked for a ticket. */
2841
2842   tls_in.resumption |= RESUME_CLIENT_SUGGESTED;
2843   DEBUG(D_tls) debug_printf("client requested resumption\n");
2844   }
2845 if (gnutls_session_is_resumed(state->session))
2846   {
2847   tls_in.resumption |= RESUME_USED;
2848   DEBUG(D_tls) debug_printf("Session resumed\n");
2849   }
2850 }
2851 #endif  /* EXIM_HAVE_TLS_RESUME */
2852
2853
2854 #ifdef EXIM_HAVE_ALPN
2855 /* Expand and convert an Exim list to a gnutls_datum list.  False return for fail.
2856 NULL plist return for silent no-ALPN.
2857 */
2858
2859 static BOOL
2860 tls_alpn_plist(const uschar * tls_alpn, const gnutls_datum_t ** plist, unsigned * plen,
2861   uschar ** errstr)
2862 {
2863 uschar * exp_alpn;
2864
2865 if (!expand_check(tls_alpn, US"tls_alpn", &exp_alpn, errstr))
2866   return FALSE;
2867
2868 if (!exp_alpn)
2869   {
2870   DEBUG(D_tls) debug_printf("Setting TLS ALPN forced to fail, not sending\n");
2871   *plist = NULL;
2872   }
2873 else
2874   {
2875   const uschar * list = exp_alpn;
2876   int sep = 0;
2877   unsigned cnt = 0;
2878   gnutls_datum_t * p;
2879   uschar * s;
2880
2881   while (string_nextinlist(&list, &sep, NULL, 0)) cnt++;
2882
2883   p = store_get(sizeof(gnutls_datum_t) * cnt, is_tainted(exp_alpn));
2884   list = exp_alpn;
2885   for (int i = 0; s = string_nextinlist(&list, &sep, NULL, 0); i++)
2886     { p[i].data = s; p[i].size = Ustrlen(s); }
2887   *plist = (*plen = cnt) ? p : NULL;
2888   }
2889 return TRUE;
2890 }
2891
2892 static void
2893 tls_server_set_acceptable_alpns(exim_gnutls_state_st * state, uschar ** errstr)
2894 {
2895 int rc;
2896 const gnutls_datum_t * plist;
2897 unsigned plen;
2898
2899 if (tls_alpn_plist(tls_alpn, &plist, &plen, errstr) && plist)
2900   {
2901   /* This seems to be only mandatory if the client sends an ALPN extension;
2902   not trying ALPN is ok. Need to decide how to support server-side must-alpn. */
2903
2904   server_seen_alpn = 0;
2905   if (!(rc = gnutls_alpn_set_protocols(state->session, plist, plen,
2906                                         GNUTLS_ALPN_MANDATORY)))
2907     gnutls_handshake_set_hook_function(state->session,
2908       GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
2909   else
2910     DEBUG(D_tls)
2911       debug_printf("setting alpn protocols: %s\n", US gnutls_strerror(rc));
2912   }
2913 }
2914 #endif  /* EXIM_HAVE_ALPN */
2915
2916 /* ------------------------------------------------------------------------ */
2917 /* Exported functions */
2918
2919
2920
2921
2922 /*************************************************
2923 *       Start a TLS session in a server          *
2924 *************************************************/
2925
2926 /* This is called when Exim is running as a server, after having received
2927 the STARTTLS command. It must respond to that command, and then negotiate
2928 a TLS session.
2929
2930 Arguments:
2931   errstr           pointer to error string
2932
2933 Returns:           OK on success
2934                    DEFER for errors before the start of the negotiation
2935                    FAIL for errors during the negotiation; the server can't
2936                      continue running.
2937 */
2938
2939 int
2940 tls_server_start(uschar ** errstr)
2941 {
2942 int rc;
2943 exim_gnutls_state_st * state = NULL;
2944
2945 /* Check for previous activation */
2946 if (tls_in.active.sock >= 0)
2947   {
2948   tls_error(US"STARTTLS received after TLS started", US "", NULL, errstr);
2949   smtp_printf("554 Already in TLS\r\n", FALSE);
2950   return FAIL;
2951   }
2952
2953 /* Initialize the library. If it fails, it will already have logged the error
2954 and sent an SMTP response. */
2955
2956 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
2957
2958   {
2959 #ifdef MEASURE_TIMING
2960   struct timeval t0;
2961   gettimeofday(&t0, NULL);
2962 #endif
2963
2964   if ((rc = tls_init(NULL, NULL,
2965       tls_require_ciphers, &state, &tls_in, errstr)) != OK) return rc;
2966
2967 #ifdef MEASURE_TIMING
2968   report_time_since(&t0, US"server tls_init (delta)");
2969 #endif
2970   }
2971
2972 #ifdef EXIM_HAVE_ALPN
2973 tls_server_set_acceptable_alpns(state, errstr);
2974 #endif
2975
2976 #ifdef EXIM_HAVE_TLS_RESUME
2977 tls_server_resume_prehandshake(state);
2978 #endif
2979
2980 /* If this is a host for which certificate verification is mandatory or
2981 optional, set up appropriately. */
2982
2983 if (verify_check_host(&tls_verify_hosts) == OK)
2984   {
2985   DEBUG(D_tls)
2986     debug_printf("TLS: a client certificate will be required\n");
2987   state->verify_requirement = VERIFY_REQUIRED;
2988   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2989   }
2990 else if (verify_check_host(&tls_try_verify_hosts) == OK)
2991   {
2992   DEBUG(D_tls)
2993     debug_printf("TLS: a client certificate will be requested but not required\n");
2994   state->verify_requirement = VERIFY_OPTIONAL;
2995   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2996   }
2997 else
2998   {
2999   DEBUG(D_tls)
3000     debug_printf("TLS: a client certificate will not be requested\n");
3001   state->verify_requirement = VERIFY_NONE;
3002   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
3003   }
3004
3005 #ifndef DISABLE_EVENT
3006 if (event_action)
3007   {
3008   state->event_action = event_action;
3009   gnutls_session_set_ptr(state->session, state);
3010   gnutls_certificate_set_verify_function(state->lib_state.x509_cred, verify_cb);
3011   }
3012 #endif
3013
3014 /* Register SNI handling; always, even if not in tls_certificate, so that the
3015 expansion variable $tls_sni is always available. */
3016
3017 gnutls_handshake_set_post_client_hello_function(state->session,
3018     exim_sni_handling_cb);
3019
3020 /* Set context and tell client to go ahead, except in the case of TLS startup
3021 on connection, where outputting anything now upsets the clients and tends to
3022 make them disconnect. We need to have an explicit fflush() here, to force out
3023 the response. Other smtp_printf() calls do not need it, because in non-TLS
3024 mode, the fflush() happens when smtp_getc() is called. */
3025
3026 if (!state->tlsp->on_connect)
3027   {
3028   smtp_printf("220 TLS go ahead\r\n", FALSE);
3029   fflush(smtp_out);
3030   }
3031
3032 /* Now negotiate the TLS session. We put our own timer on it, since it seems
3033 that the GnuTLS library doesn't.
3034 From 3.1.0 there is gnutls_handshake_set_timeout() - but it requires you
3035 to set (and clear down afterwards) up a pull-timeout callback function that does
3036 a select, so we're no better off unless avoiding signals becomes an issue. */
3037
3038 gnutls_transport_set_ptr2(state->session,
3039     (gnutls_transport_ptr_t)(long) fileno(smtp_in),
3040     (gnutls_transport_ptr_t)(long) fileno(smtp_out));
3041 state->fd_in = fileno(smtp_in);
3042 state->fd_out = fileno(smtp_out);
3043
3044 sigalrm_seen = FALSE;
3045 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3046 do
3047   rc = gnutls_handshake(state->session);
3048 while (rc == GNUTLS_E_AGAIN ||  rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
3049 ALARM_CLR(0);
3050
3051 if (rc != GNUTLS_E_SUCCESS)
3052   {
3053   /* It seems that, except in the case of a timeout, we have to close the
3054   connection right here; otherwise if the other end is running OpenSSL it hangs
3055   until the server times out. */
3056
3057   if (sigalrm_seen)
3058     {
3059     tls_error(US"gnutls_handshake", US"timed out", NULL, errstr);
3060     gnutls_db_remove_session(state->session);
3061     }
3062   else
3063     {
3064     tls_error_gnu(state, US"gnutls_handshake", rc, errstr);
3065     (void) gnutls_alert_send_appropriate(state->session, rc);
3066     gnutls_deinit(state->session);
3067     gnutls_certificate_free_credentials(state->lib_state.x509_cred);
3068     state->lib_state = null_tls_preload;
3069     millisleep(500);
3070     shutdown(state->fd_out, SHUT_WR);
3071     for (int i = 1024; fgetc(smtp_in) != EOF && i > 0; ) i--;   /* drain skt */
3072     (void)fclose(smtp_out);
3073     (void)fclose(smtp_in);
3074     smtp_out = smtp_in = NULL;
3075     }
3076
3077   return FAIL;
3078   }
3079
3080 #ifdef GNUTLS_SFLAGS_EXT_MASTER_SECRET
3081 if (gnutls_session_get_flags(state->session) & GNUTLS_SFLAGS_EXT_MASTER_SECRET)
3082   tls_in.ext_master_secret = TRUE;
3083 #endif
3084
3085 #ifdef EXIM_HAVE_TLS_RESUME
3086 tls_server_resume_posthandshake(state);
3087 #endif
3088
3089 DEBUG(D_tls) post_handshake_debug(state);
3090
3091 #ifdef EXIM_HAVE_ALPN
3092 if (server_seen_alpn > 0)
3093   {
3094   DEBUG(D_tls)
3095     {           /* The client offered ALPN.  See what was negotiated. */
3096     gnutls_datum_t p = {.size = 0};
3097     int rc = gnutls_alpn_get_selected_protocol(state->session, &p);
3098     if (!rc)
3099         debug_printf("ALPN negotiated: %.*s\n", (int)p.size, p.data);
3100     else
3101         debug_printf("getting alpn protocol: %s\n", US gnutls_strerror(rc));
3102
3103     }
3104   }
3105 else if (server_seen_alpn == 0)
3106   if (verify_check_host(&hosts_require_alpn) == OK)
3107     {
3108     gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_NO_APPLICATION_PROTOCOL);
3109     tls_error(US"handshake", US"ALPN required but not negotiated", NULL, errstr);
3110     return FAIL;
3111     }
3112   else
3113     DEBUG(D_tls) debug_printf("TLS: no ALPN presented in handshake\n");
3114 else
3115   DEBUG(D_tls) debug_printf("TLS: was not watching for ALPN\n");
3116 #endif
3117
3118 /* Verify after the fact */
3119
3120 if (!verify_certificate(state, errstr))
3121   {
3122   if (state->verify_requirement != VERIFY_OPTIONAL)
3123     {
3124     (void) tls_error(US"certificate verification failed", *errstr, NULL, errstr);
3125     return FAIL;
3126     }
3127   DEBUG(D_tls)
3128     debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
3129         *errstr);
3130   }
3131
3132 /* Sets various Exim expansion variables; always safe within server */
3133
3134 extract_exim_vars_from_tls_state(state);
3135
3136 /* TLS has been set up. Adjust the input functions to read via TLS,
3137 and initialize appropriately. */
3138
3139 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
3140
3141 receive_getc = tls_getc;
3142 receive_getbuf = tls_getbuf;
3143 receive_get_cache = tls_get_cache;
3144 receive_hasc = tls_hasc;
3145 receive_ungetc = tls_ungetc;
3146 receive_feof = tls_feof;
3147 receive_ferror = tls_ferror;
3148 receive_smtp_buffered = tls_smtp_buffered;
3149
3150 return OK;
3151 }
3152
3153
3154
3155
3156 static void
3157 tls_client_setup_hostname_checks(host_item * host, exim_gnutls_state_st * state,
3158   smtp_transport_options_block * ob)
3159 {
3160 if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
3161   {
3162   state->exp_tls_verify_cert_hostnames =
3163 #ifdef SUPPORT_I18N
3164     string_domain_utf8_to_alabel(host->certname, NULL);
3165 #else
3166     host->certname;
3167 #endif
3168   DEBUG(D_tls)
3169     debug_printf("TLS: server cert verification includes hostname: \"%s\"\n",
3170                     state->exp_tls_verify_cert_hostnames);
3171   }
3172 }
3173
3174
3175
3176
3177 #ifdef SUPPORT_DANE
3178 /* Given our list of RRs from the TLSA lookup, build a lookup block in
3179 GnuTLS-DANE's preferred format.  Hang it on the state str for later
3180 use in DANE verification.
3181
3182 We point at the dnsa data not copy it, so it must remain valid until
3183 after verification is done.*/
3184
3185 static BOOL
3186 dane_tlsa_load(exim_gnutls_state_st * state, dns_answer * dnsa)
3187 {
3188 dns_scan dnss;
3189 int i;
3190 const char **   dane_data;
3191 int *           dane_data_len;
3192
3193 i = 1;
3194 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
3195      rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
3196     ) if (rr->type == T_TLSA) i++;
3197
3198 dane_data = store_get(i * sizeof(uschar *), FALSE);
3199 dane_data_len = store_get(i * sizeof(int), FALSE);
3200
3201 i = 0;
3202 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
3203      rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
3204     ) if (rr->type == T_TLSA && rr->size > 3)
3205   {
3206   const uschar * p = rr->data;
3207 /*XXX need somehow to mark rr and its data as tainted.  Doues this mean copying it? */
3208   uint8_t usage = p[0], sel = p[1], type = p[2];
3209
3210   DEBUG(D_tls)
3211     debug_printf("TLSA: %d %d %d size %d\n", usage, sel, type, rr->size);
3212
3213   if (  (usage != DANESSL_USAGE_DANE_TA && usage != DANESSL_USAGE_DANE_EE)
3214      || (sel != 0 && sel != 1)
3215      )
3216     continue;
3217   switch(type)
3218     {
3219     case 0:     /* Full: cannot check at present */
3220                 break;
3221     case 1:     if (rr->size != 3 + 256/8) continue;    /* sha2-256 */
3222                 break;
3223     case 2:     if (rr->size != 3 + 512/8) continue;    /* sha2-512 */
3224                 break;
3225     default:    continue;
3226     }
3227
3228   tls_out.tlsa_usage |= 1<<usage;
3229   dane_data[i] = CS p;
3230   dane_data_len[i++] = rr->size;
3231   }
3232
3233 if (!i) return FALSE;
3234
3235 dane_data[i] = NULL;
3236 dane_data_len[i] = 0;
3237
3238 state->dane_data = (char * const *)dane_data;
3239 state->dane_data_len = dane_data_len;
3240 return TRUE;
3241 }
3242 #endif
3243
3244
3245
3246 #ifdef EXIM_HAVE_TLS_RESUME
3247 /* On the client, get any stashed session for the given IP from hints db
3248 and apply it to the ssl-connection for attempted resumption.  Although
3249 there is a gnutls_session_ticket_enable_client() interface it is
3250 documented as unnecessary (as of 3.6.7) as "session tickets are emabled
3251 by deafult".  There seems to be no way to disable them, so even hosts not
3252 enabled by the transport option will be sent a ticket request.  We will
3253 however avoid storing and retrieving session information. */
3254
3255 static void
3256 tls_retrieve_session(tls_support * tlsp, gnutls_session_t session,
3257   host_item * host, smtp_transport_options_block * ob)
3258 {
3259 tlsp->resumption = RESUME_SUPPORTED;
3260 if (verify_check_given_host(CUSS &ob->tls_resumption_hosts, host) == OK)
3261   {
3262   dbdata_tls_session * dt;
3263   int len, rc;
3264   open_db dbblock, * dbm_file;
3265
3266   DEBUG(D_tls)
3267     debug_printf("check for resumable session for %s\n", host->address);
3268   tlsp->host_resumable = TRUE;
3269   tlsp->resumption |= RESUME_CLIENT_REQUESTED;
3270   if ((dbm_file = dbfn_open(US"tls", O_RDONLY, &dbblock, FALSE, FALSE)))
3271     {
3272     /* Key for the db is the IP.  We'd like to filter the retrieved session
3273     for ticket advisory expiry, but 3.6.1 seems to give no access to that */
3274
3275     if ((dt = dbfn_read_with_length(dbm_file, host->address, &len)))
3276       if (!(rc = gnutls_session_set_data(session,
3277                     CUS dt->session, (size_t)len - sizeof(dbdata_tls_session))))
3278         {
3279         DEBUG(D_tls) debug_printf("good session\n");
3280         tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
3281         }
3282       else DEBUG(D_tls) debug_printf("setting session resumption data: %s\n",
3283             US gnutls_strerror(rc));
3284     dbfn_close(dbm_file);
3285     }
3286   }
3287 }
3288
3289
3290 static void
3291 tls_save_session(tls_support * tlsp, gnutls_session_t session, const host_item * host)
3292 {
3293 /* TLS 1.2 - we get both the callback and the direct posthandshake call,
3294 but this flag is not set until the second.  TLS 1.3 it's the other way about.
3295 Keep both calls as the session data cannot be extracted before handshake
3296 completes. */
3297
3298 if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
3299   {
3300   gnutls_datum_t tkt;
3301   int rc;
3302
3303   DEBUG(D_tls) debug_printf("server offered session ticket\n");
3304   tlsp->ticket_received = TRUE;
3305   tlsp->resumption |= RESUME_SERVER_TICKET;
3306
3307   if (tlsp->host_resumable)
3308     if (!(rc = gnutls_session_get_data2(session, &tkt)))
3309       {
3310       open_db dbblock, * dbm_file;
3311       int dlen = sizeof(dbdata_tls_session) + tkt.size;
3312       dbdata_tls_session * dt = store_get(dlen, TRUE);
3313
3314       DEBUG(D_tls) debug_printf("session data size %u\n", (unsigned)tkt.size);
3315       memcpy(dt->session, tkt.data, tkt.size);
3316       gnutls_free(tkt.data);
3317
3318       if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
3319         {
3320         /* key for the db is the IP */
3321         dbfn_delete(dbm_file, host->address);
3322         dbfn_write(dbm_file, host->address, dt, dlen);
3323         dbfn_close(dbm_file);
3324
3325         DEBUG(D_tls)
3326           debug_printf("wrote session db (len %u)\n", (unsigned)dlen);
3327         }
3328       }
3329     else DEBUG(D_tls)
3330       debug_printf("extract session data: %s\n", US gnutls_strerror(rc));
3331   }
3332 }
3333
3334
3335 /* With a TLS1.3 session, the ticket(s) are not seen until
3336 the first data read is attempted.  And there's often two of them.
3337 Pick them up with this callback.  We are also called for 1.2
3338 but we do nothing.
3339 */
3340 static int
3341 tls_client_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
3342   unsigned incoming, const gnutls_datum_t * msg)
3343 {
3344 exim_gnutls_state_st * state = gnutls_session_get_ptr(sess);
3345 tls_support * tlsp = state->tlsp;
3346
3347 DEBUG(D_tls) debug_printf("newticket cb\n");
3348
3349 if (!tlsp->ticket_received)
3350   tls_save_session(tlsp, sess, state->host);
3351 return 0;
3352 }
3353
3354
3355 static void
3356 tls_client_resume_prehandshake(exim_gnutls_state_st * state,
3357   tls_support * tlsp, host_item * host,
3358   smtp_transport_options_block * ob)
3359 {
3360 gnutls_session_set_ptr(state->session, state);
3361 gnutls_handshake_set_hook_function(state->session,
3362   GNUTLS_HANDSHAKE_NEW_SESSION_TICKET, GNUTLS_HOOK_POST, tls_client_ticket_cb);
3363
3364 tls_retrieve_session(tlsp, state->session, host, ob);
3365 }
3366
3367 static void
3368 tls_client_resume_posthandshake(exim_gnutls_state_st * state,
3369   tls_support * tlsp, host_item * host)
3370 {
3371 if (gnutls_session_is_resumed(state->session))
3372   {
3373   DEBUG(D_tls) debug_printf("Session resumed\n");
3374   tlsp->resumption |= RESUME_USED;
3375   }
3376
3377 tls_save_session(tlsp, state->session, host);
3378 }
3379 #endif  /* !DISABLE_TLS_RESUME */
3380
3381
3382 /*************************************************
3383 *    Start a TLS session in a client             *
3384 *************************************************/
3385
3386 /* Called from the smtp transport after STARTTLS has been accepted.
3387
3388 Arguments:
3389   cctx          connection context
3390   conn_args     connection details
3391   cookie        datum for randomness (not used)
3392   tlsp          record details of channel configuration here; must be non-NULL
3393   errstr        error string pointer
3394
3395 Returns:        TRUE for success with TLS session context set in smtp context,
3396                 FALSE on error
3397 */
3398
3399 BOOL
3400 tls_client_start(client_conn_ctx * cctx, smtp_connect_args * conn_args,
3401   void * cookie ARG_UNUSED,
3402   tls_support * tlsp, uschar ** errstr)
3403 {
3404 host_item * host = conn_args->host;          /* for msgs and option-tests */
3405 transport_instance * tb = conn_args->tblock; /* always smtp or NULL */
3406 smtp_transport_options_block * ob = tb
3407   ? (smtp_transport_options_block *)tb->options_block
3408   : &smtp_transport_option_defaults;
3409 int rc;
3410 exim_gnutls_state_st * state = NULL;
3411 uschar * cipher_list = NULL;
3412
3413 #ifndef DISABLE_OCSP
3414 BOOL require_ocsp =
3415   verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK;
3416 BOOL request_ocsp = require_ocsp ? TRUE
3417   : verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
3418 #endif
3419
3420 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", cctx->sock);
3421
3422 #ifdef SUPPORT_DANE
3423 /* If dane is flagged, have either request or require dane for this host, and
3424 a TLSA record found.  Therefore, dane verify required.  Which implies cert must
3425 be requested and supplied, dane verify must pass, and cert verify irrelevant
3426 (incl.  hostnames), and (caller handled) require_tls and sni=$domain */
3427
3428 if (conn_args->dane && ob->dane_require_tls_ciphers)
3429   {
3430   /* not using Expand_check_tlsvar because not yet in state */
3431   if (!expand_check(ob->dane_require_tls_ciphers, US"dane_require_tls_ciphers",
3432       &cipher_list, errstr))
3433     return FALSE;
3434   cipher_list = cipher_list && *cipher_list
3435     ? ob->dane_require_tls_ciphers : ob->tls_require_ciphers;
3436   }
3437 #endif
3438
3439 if (!cipher_list)
3440   cipher_list = ob->tls_require_ciphers;
3441
3442   {
3443 #ifdef MEASURE_TIMING
3444   struct timeval t0;
3445   gettimeofday(&t0, NULL);
3446 #endif
3447
3448   if (tls_init(host, ob, cipher_list, &state, tlsp, errstr) != OK)
3449     return FALSE;
3450
3451 #ifdef MEASURE_TIMING
3452   report_time_since(&t0, US"client tls_init (delta)");
3453 #endif
3454   }
3455
3456 if (ob->tls_alpn)
3457 #ifdef EXIM_HAVE_ALPN
3458   {
3459   const gnutls_datum_t * plist;
3460   unsigned plen;
3461
3462   if (!tls_alpn_plist(ob->tls_alpn, &plist, &plen, errstr))
3463     return FALSE;
3464   if (plist)
3465     if (gnutls_alpn_set_protocols(state->session, plist, plen, 0) != 0)
3466       {
3467       tls_error(US"alpn init", NULL, state->host, errstr);
3468       return FALSE;
3469       }
3470     else
3471       DEBUG(D_tls) debug_printf("Setting TLS ALPN '%s'\n", ob->tls_alpn);
3472   }
3473 #else
3474   log_write(0, LOG_MAIN, "ALPN unusable with this GnuTLS library version; ignoring \"%s\"\n",
3475           ob->tls_alpn);
3476 #endif
3477
3478   {
3479   int dh_min_bits = ob->tls_dh_min_bits;
3480   if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
3481     {
3482     DEBUG(D_tls)
3483       debug_printf("WARNING: tls_dh_min_bits far too low,"
3484                     " clamping %d up to %d\n",
3485           dh_min_bits, EXIM_CLIENT_DH_MIN_MIN_BITS);
3486     dh_min_bits = EXIM_CLIENT_DH_MIN_MIN_BITS;
3487     }
3488
3489   DEBUG(D_tls) debug_printf("Setting D-H prime minimum"
3490                     " acceptable bits to %d\n",
3491       dh_min_bits);
3492   gnutls_dh_set_prime_bits(state->session, dh_min_bits);
3493   }
3494
3495 /* Stick to the old behaviour for compatibility if tls_verify_certificates is
3496 set but both tls_verify_hosts and tls_try_verify_hosts are unset. Check only
3497 the specified host patterns if one of them is defined */
3498
3499 #ifdef SUPPORT_DANE
3500 if (conn_args->dane && dane_tlsa_load(state, &conn_args->tlsa_dnsa))
3501   {
3502   DEBUG(D_tls)
3503     debug_printf("TLS: server certificate DANE required\n");
3504   state->verify_requirement = VERIFY_DANE;
3505   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
3506   }
3507 else
3508 #endif
3509     if (  (  state->exp_tls_verify_certificates
3510           && !ob->tls_verify_hosts
3511           && (!ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts)
3512           )
3513         || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
3514        )
3515   {
3516   tls_client_setup_hostname_checks(host, state, ob);
3517   DEBUG(D_tls)
3518     debug_printf("TLS: server certificate verification required\n");
3519   state->verify_requirement = VERIFY_REQUIRED;
3520   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
3521   }
3522 else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
3523   {
3524   tls_client_setup_hostname_checks(host, state, ob);
3525   DEBUG(D_tls)
3526     debug_printf("TLS: server certificate verification optional\n");
3527   state->verify_requirement = VERIFY_OPTIONAL;
3528   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
3529   }
3530 else
3531   {
3532   DEBUG(D_tls)
3533     debug_printf("TLS: server certificate verification not required\n");
3534   state->verify_requirement = VERIFY_NONE;
3535   gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
3536   }
3537
3538 #ifndef DISABLE_OCSP
3539                         /* supported since GnuTLS 3.1.3 */
3540 if (request_ocsp)
3541   {
3542   DEBUG(D_tls) debug_printf("TLS: will request OCSP stapling\n");
3543   if ((rc = gnutls_ocsp_status_request_enable_client(state->session,
3544                     NULL, 0, NULL)) != OK)
3545     {
3546     tls_error_gnu(state, US"cert-status-req", rc, errstr);
3547     return FALSE;
3548     }
3549   tlsp->ocsp = OCSP_NOT_RESP;
3550   }
3551 #endif
3552
3553 #ifdef EXIM_HAVE_TLS_RESUME
3554 tls_client_resume_prehandshake(state, tlsp, host, ob);
3555 #endif
3556
3557 #ifndef DISABLE_EVENT
3558 if (tb && tb->event_action)
3559   {
3560   state->event_action = tb->event_action;
3561   gnutls_session_set_ptr(state->session, state);
3562   gnutls_certificate_set_verify_function(state->lib_state.x509_cred, verify_cb);
3563   }
3564 #endif
3565
3566 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr_t)(long) cctx->sock);
3567 state->fd_in = cctx->sock;
3568 state->fd_out = cctx->sock;
3569
3570 DEBUG(D_tls) debug_printf("about to gnutls_handshake\n");
3571 /* There doesn't seem to be a built-in timeout on connection. */
3572
3573 sigalrm_seen = FALSE;
3574 ALARM(ob->command_timeout);
3575 do
3576   rc = gnutls_handshake(state->session);
3577 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
3578 ALARM_CLR(0);
3579
3580 if (rc != GNUTLS_E_SUCCESS)
3581   {
3582   if (sigalrm_seen)
3583     {
3584     gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_USER_CANCELED);
3585     tls_error(US"gnutls_handshake", US"timed out", state->host, errstr);
3586     }
3587   else
3588     tls_error_gnu(state, US"gnutls_handshake", rc, errstr);
3589   return FALSE;
3590   }
3591
3592 DEBUG(D_tls) post_handshake_debug(state);
3593
3594 /* Verify late */
3595
3596 if (!verify_certificate(state, errstr))
3597   {
3598   tls_error(US"certificate verification failed", *errstr, state->host, errstr);
3599   return FALSE;
3600   }
3601
3602 #ifdef GNUTLS_SFLAGS_EXT_MASTER_SECRET
3603 if (gnutls_session_get_flags(state->session) & GNUTLS_SFLAGS_EXT_MASTER_SECRET)
3604   tlsp->ext_master_secret = TRUE;
3605 #endif
3606
3607 #ifndef DISABLE_OCSP
3608 if (request_ocsp)
3609   {
3610   DEBUG(D_tls)
3611     {
3612     gnutls_datum_t stapling;
3613     gnutls_ocsp_resp_t resp;
3614     gnutls_datum_t printed;
3615     unsigned idx = 0;
3616
3617     for (;
3618 # ifdef GNUTLS_OCSP_STATUS_REQUEST_GET2
3619          (rc = gnutls_ocsp_status_request_get2(state->session, idx, &stapling)) == 0;
3620 #else
3621          (rc = gnutls_ocsp_status_request_get(state->session, &stapling)) == 0;
3622 #endif
3623          idx++)
3624       if (  (rc= gnutls_ocsp_resp_init(&resp)) == 0
3625          && (rc= gnutls_ocsp_resp_import(resp, &stapling)) == 0
3626          && (rc= gnutls_ocsp_resp_print(resp, GNUTLS_OCSP_PRINT_COMPACT, &printed)) == 0
3627          )
3628         {
3629         debug_printf("%.4096s", printed.data);
3630         gnutls_free(printed.data);
3631         }
3632       else
3633         (void) tls_error_gnu(state, US"ocsp decode", rc, errstr);
3634     if (idx == 0 && rc)
3635       (void) tls_error_gnu(state, US"ocsp decode", rc, errstr);
3636     }
3637
3638   if (gnutls_ocsp_status_request_is_checked(state->session, 0) == 0)
3639     {
3640     tlsp->ocsp = OCSP_FAILED;
3641     tls_error(US"certificate status check failed", NULL, state->host, errstr);
3642     if (require_ocsp)
3643       return FALSE;
3644     }
3645   else
3646     {
3647     DEBUG(D_tls) debug_printf("Passed OCSP checking\n");
3648     tlsp->ocsp = OCSP_VFIED;
3649     }
3650   }
3651 #endif
3652
3653 #ifdef EXIM_HAVE_TLS_RESUME
3654 tls_client_resume_posthandshake(state, tlsp, host);
3655 #endif
3656
3657 #ifdef EXIM_HAVE_ALPN
3658 if (ob->tls_alpn)       /* We requested. See what was negotiated. */
3659   {
3660   gnutls_datum_t p = {.size = 0};
3661
3662   if (gnutls_alpn_get_selected_protocol(state->session, &p) == 0)
3663     { DEBUG(D_tls) debug_printf("ALPN negotiated: '%.*s'\n", (int)p.size, p.data); }
3664   else if (verify_check_given_host(CUSS &ob->hosts_require_alpn, host) == OK)
3665     {
3666     gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_NO_APPLICATION_PROTOCOL);
3667     tls_error(US"handshake", US"ALPN required but not negotiated", state->host, errstr);
3668     return FALSE;
3669     }
3670   else
3671     DEBUG(D_tls) debug_printf("No ALPN negotiated");
3672   }
3673 #endif
3674
3675 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
3676
3677 extract_exim_vars_from_tls_state(state);
3678
3679 cctx->tls_ctx = state;
3680 return TRUE;
3681 }
3682
3683
3684
3685
3686 /*
3687 Arguments:
3688   ct_ctx        client TLS context pointer, or NULL for the one global server context
3689 */
3690
3691 void
3692 tls_shutdown_wr(void * ct_ctx)
3693 {
3694 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3695 tls_support * tlsp = state->tlsp;
3696
3697 if (!tlsp || tlsp->active.sock < 0) return;  /* TLS was not active */
3698
3699 tls_write(ct_ctx, NULL, 0, FALSE);      /* flush write buffer */
3700
3701 HDEBUG(D_transport|D_tls|D_acl|D_v) debug_printf_indent("  SMTP(TLS shutdown)>>\n");
3702 gnutls_bye(state->session, GNUTLS_SHUT_WR);
3703 }
3704
3705 /*************************************************
3706 *         Close down a TLS session               *
3707 *************************************************/
3708
3709 /* This is also called from within a delivery subprocess forked from the
3710 daemon, to shut down the TLS library, without actually doing a shutdown (which
3711 would tamper with the TLS session in the parent process).
3712
3713 Arguments:
3714   ct_ctx        client context pointer, or NULL for the one global server context
3715   do_shutdown   0 no data-flush or TLS close-alert
3716                 1 if TLS close-alert is to be sent,
3717                 2 if also response to be waited for (2s timeout)
3718
3719 Returns:     nothing
3720 */
3721
3722 void
3723 tls_close(void * ct_ctx, int do_shutdown)
3724 {
3725 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3726 tls_support * tlsp = state->tlsp;
3727
3728 if (!tlsp || tlsp->active.sock < 0) return;  /* TLS was not active */
3729
3730 if (do_shutdown)
3731   {
3732   DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
3733     do_shutdown > 1 ? " (with response-wait)" : "");
3734
3735   tls_write(ct_ctx, NULL, 0, FALSE);    /* flush write buffer */
3736
3737   ALARM(2);
3738   gnutls_bye(state->session, do_shutdown > 1 ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
3739   ALARM_CLR(0);
3740   }
3741
3742 if (!ct_ctx)    /* server */
3743   {
3744   receive_getc =        smtp_getc;
3745   receive_getbuf =      smtp_getbuf;
3746   receive_get_cache =   smtp_get_cache;
3747   receive_hasc =        smtp_hasc;
3748   receive_ungetc =      smtp_ungetc;
3749   receive_feof =        smtp_feof;
3750   receive_ferror =      smtp_ferror;
3751   receive_smtp_buffered = smtp_buffered;
3752   }
3753
3754 gnutls_deinit(state->session);
3755 gnutls_certificate_free_credentials(state->lib_state.x509_cred);
3756 state->lib_state = null_tls_preload;
3757
3758 tlsp->active.sock = -1;
3759 tlsp->active.tls_ctx = NULL;
3760 /* Leave bits, peercert, cipher, peerdn, certificate_verified set, for logging */
3761 tlsp->channelbinding = NULL;
3762
3763
3764 if (state->xfer_buffer) store_free(state->xfer_buffer);
3765 }
3766
3767
3768
3769
3770 static BOOL
3771 tls_refill(unsigned lim)
3772 {
3773 exim_gnutls_state_st * state = &state_server;
3774 ssize_t inbytes;
3775
3776 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(session=%p, buffer=%p, buffersize=%u)\n",
3777   state->session, state->xfer_buffer, ssl_xfer_buffer_size);
3778
3779 sigalrm_seen = FALSE;
3780 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3781
3782 errno = 0;
3783 do
3784   inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
3785     MIN(ssl_xfer_buffer_size, lim));
3786 while (inbytes == GNUTLS_E_AGAIN);
3787
3788 if (smtp_receive_timeout > 0) ALARM_CLR(0);
3789
3790 if (had_command_timeout)                /* set by signal handler */
3791   smtp_command_timeout_exit();          /* does not return */
3792 if (had_command_sigterm)
3793   smtp_command_sigterm_exit();
3794 if (had_data_timeout)
3795   smtp_data_timeout_exit();
3796 if (had_data_sigint)
3797   smtp_data_sigint_exit();
3798
3799 /* Timeouts do not get this far.  A zero-byte return appears to mean that the
3800 TLS session has been closed down, not that the socket itself has been closed
3801 down. Revert to non-TLS handling. */
3802
3803 if (sigalrm_seen)
3804   {
3805   DEBUG(D_tls) debug_printf("Got tls read timeout\n");
3806   state->xfer_error = TRUE;
3807   return FALSE;
3808   }
3809
3810 else if (inbytes == 0)
3811   {
3812   DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3813   tls_close(NULL, TLS_NO_SHUTDOWN);
3814   return FALSE;
3815   }
3816
3817 /* Handle genuine errors */
3818
3819 else if (inbytes < 0)
3820   {
3821   DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3822   record_io_error(state, (int) inbytes, US"recv", NULL);
3823   state->xfer_error = TRUE;
3824   return FALSE;
3825   }
3826 #ifndef DISABLE_DKIM
3827 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
3828 #endif
3829 state->xfer_buffer_hwm = (int) inbytes;
3830 state->xfer_buffer_lwm = 0;
3831 return TRUE;
3832 }
3833
3834 /*************************************************
3835 *            TLS version of getc                 *
3836 *************************************************/
3837
3838 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
3839 it refills the buffer via the GnuTLS reading function.
3840 Only used by the server-side TLS.
3841
3842 This feeds DKIM and should be used for all message-body reads.
3843
3844 Arguments:  lim         Maximum amount to read/buffer
3845 Returns:    the next character or EOF
3846 */
3847
3848 int
3849 tls_getc(unsigned lim)
3850 {
3851 exim_gnutls_state_st * state = &state_server;
3852
3853 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3854   if (!tls_refill(lim))
3855     return state->xfer_error ? EOF : smtp_getc(lim);
3856
3857 /* Something in the buffer; return next uschar */
3858
3859 return state->xfer_buffer[state->xfer_buffer_lwm++];
3860 }
3861
3862 BOOL
3863 tls_hasc(void)
3864 {
3865 exim_gnutls_state_st * state = &state_server;
3866 return state->xfer_buffer_lwm < state->xfer_buffer_hwm;
3867 }
3868
3869 uschar *
3870 tls_getbuf(unsigned * len)
3871 {
3872 exim_gnutls_state_st * state = &state_server;
3873 unsigned size;
3874 uschar * buf;
3875
3876 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3877   if (!tls_refill(*len))
3878     {
3879     if (!state->xfer_error) return smtp_getbuf(len);
3880     *len = 0;
3881     return NULL;
3882     }
3883
3884 if ((size = state->xfer_buffer_hwm - state->xfer_buffer_lwm) > *len)
3885   size = *len;
3886 buf = &state->xfer_buffer[state->xfer_buffer_lwm];
3887 state->xfer_buffer_lwm += size;
3888 *len = size;
3889 return buf;
3890 }
3891
3892
3893 /* Get up to the given number of bytes from any cached data, and feed to dkim. */
3894 void
3895 tls_get_cache(unsigned lim)
3896 {
3897 #ifndef DISABLE_DKIM
3898 exim_gnutls_state_st * state = &state_server;
3899 int n = state->xfer_buffer_hwm - state->xfer_buffer_lwm;
3900 if (n > lim)
3901   n = lim;
3902 if (n > 0)
3903   dkim_exim_verify_feed(state->xfer_buffer+state->xfer_buffer_lwm, n);
3904 #endif
3905 }
3906
3907
3908 BOOL
3909 tls_could_read(void)
3910 {
3911 return state_server.xfer_buffer_lwm < state_server.xfer_buffer_hwm
3912  || gnutls_record_check_pending(state_server.session) > 0;
3913 }
3914
3915
3916 /*************************************************
3917 *          Read bytes from TLS channel           *
3918 *************************************************/
3919
3920 /* This does not feed DKIM, so if the caller uses this for reading message body,
3921 then the caller must feed DKIM.
3922
3923 Arguments:
3924   ct_ctx    client context pointer, or NULL for the one global server context
3925   buff      buffer of data
3926   len       size of buffer
3927
3928 Returns:    the number of bytes read
3929             -1 after a failed read, including EOF
3930 */
3931
3932 int
3933 tls_read(void * ct_ctx, uschar *buff, size_t len)
3934 {
3935 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3936 ssize_t inbytes;
3937
3938 if (len > INT_MAX)
3939   len = INT_MAX;
3940
3941 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
3942   DEBUG(D_tls)
3943     debug_printf("*** PROBABLY A BUG *** " \
3944         "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
3945         state->xfer_buffer_hwm - state->xfer_buffer_lwm);
3946
3947 DEBUG(D_tls)
3948   debug_printf("Calling gnutls_record_recv(session=%p, buffer=%p, len=" SIZE_T_FMT ")\n",
3949       state->session, buff, len);
3950
3951 errno = 0;
3952 do
3953   inbytes = gnutls_record_recv(state->session, buff, len);
3954 while (inbytes == GNUTLS_E_AGAIN);
3955
3956 if (inbytes > 0) return inbytes;
3957 if (inbytes == 0)
3958   {
3959   DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3960   }
3961 else
3962   {
3963   DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3964   record_io_error(state, (int)inbytes, US"recv", NULL);
3965   }
3966
3967 return -1;
3968 }
3969
3970
3971
3972
3973 /*************************************************
3974 *         Write bytes down TLS channel           *
3975 *************************************************/
3976
3977 /*
3978 Arguments:
3979   ct_ctx    client context pointer, or NULL for the one global server context
3980   buff      buffer of data
3981   len       number of bytes
3982   more      more data expected soon
3983
3984 Calling with len zero and more unset will flush buffered writes.  The buff
3985 argument can be null for that case.
3986
3987 Returns:    the number of bytes after a successful write,
3988             -1 after a failed write
3989 */
3990
3991 int
3992 tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
3993 {
3994 ssize_t outbytes;
3995 size_t left = len;
3996 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3997
3998 #ifdef SUPPORT_CORK
3999 if (more && !state->corked)
4000   {
4001   DEBUG(D_tls) debug_printf("gnutls_record_cork(session=%p)\n", state->session);
4002   gnutls_record_cork(state->session);
4003   state->corked = TRUE;
4004   }
4005 #endif
4006
4007 DEBUG(D_tls) debug_printf("%s(%p, " SIZE_T_FMT "%s)\n", __FUNCTION__,
4008   buff, left, more ? ", more" : "");
4009
4010 while (left > 0)
4011   {
4012   DEBUG(D_tls) debug_printf("gnutls_record_send(session=%p, buffer=%p, left=" SIZE_T_FMT ")\n",
4013       state->session, buff, left);
4014
4015   errno = 0;
4016   do
4017     outbytes = gnutls_record_send(state->session, buff, left);
4018   while (outbytes == GNUTLS_E_AGAIN);
4019
4020   DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
4021
4022   if (outbytes < 0)
4023     {
4024 #ifdef GNUTLS_E_PREMATURE_TERMINATION
4025     if (  outbytes == GNUTLS_E_PREMATURE_TERMINATION && errno == ECONNRESET
4026        && !ct_ctx && f.smtp_in_quit
4027        )
4028       {                                 /* Outlook, dammit */
4029       if (LOGGING(protocol_detail))
4030         log_write(0, LOG_MAIN, "[%s] after QUIT, client reset TCP before"
4031           " SMTP response and TLS close\n", sender_host_address);
4032       else
4033         DEBUG(D_tls) debug_printf("[%s] SSL_write: after QUIT,"
4034           " client reset TCP before TLS close\n", sender_host_address);
4035       }
4036     else
4037 #endif
4038       {
4039       DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
4040       record_io_error(state, outbytes, US"send", NULL);
4041       }
4042     return -1;
4043     }
4044   if (outbytes == 0)
4045     {
4046     record_io_error(state, 0, US"send", US"TLS channel closed on write");
4047     return -1;
4048     }
4049
4050   left -= outbytes;
4051   buff += outbytes;
4052   }
4053
4054 if (len > INT_MAX)
4055   {
4056   DEBUG(D_tls)
4057     debug_printf("Whoops!  Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
4058         len);
4059   len = INT_MAX;
4060   }
4061
4062 #ifdef SUPPORT_CORK
4063 if (!more && state->corked)
4064   {
4065   DEBUG(D_tls) debug_printf("gnutls_record_uncork(session=%p)\n", state->session);
4066   do
4067     /* We can't use GNUTLS_RECORD_WAIT here, as it retries on
4068     GNUTLS_E_AGAIN || GNUTLS_E_INTR, which would break our timeout set by alarm().
4069     The GNUTLS_E_AGAIN should not happen ever, as our sockets are blocking anyway.
4070     But who knows. (That all relies on the fact that GNUTLS_E_INTR and GNUTLS_E_AGAIN
4071     match the EINTR and EAGAIN errno values.) */
4072     outbytes = gnutls_record_uncork(state->session, 0);
4073   while (outbytes == GNUTLS_E_AGAIN);
4074
4075   if (outbytes < 0)
4076     {
4077     record_io_error(state, len, US"uncork", NULL);
4078     return -1;
4079     }
4080
4081   state->corked = FALSE;
4082   }
4083 #endif
4084
4085 return (int) len;
4086 }
4087
4088
4089
4090
4091 /*************************************************
4092 *            Random number generation            *
4093 *************************************************/
4094
4095 /* Pseudo-random number generation.  The result is not expected to be
4096 cryptographically strong but not so weak that someone will shoot themselves
4097 in the foot using it as a nonce in input in some email header scheme or
4098 whatever weirdness they'll twist this into.  The result should handle fork()
4099 and avoid repeating sequences.  OpenSSL handles that for us.
4100
4101 Arguments:
4102   max       range maximum
4103 Returns     a random number in range [0, max-1]
4104 */
4105
4106 #ifdef HAVE_GNUTLS_RND
4107 int
4108 vaguely_random_number(int max)
4109 {
4110 unsigned int r;
4111 int i, needed_len;
4112 uschar smallbuf[sizeof(r)];
4113
4114 if (max <= 1)
4115   return 0;
4116
4117 needed_len = sizeof(r);
4118 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
4119 asked for a number less than 10. */
4120
4121 for (r = max, i = 0; r; ++i)
4122   r >>= 1;
4123 i = (i + 7) / 8;
4124 if (i < needed_len)
4125   needed_len = i;
4126
4127 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
4128 if (i < 0)
4129   {
4130   DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback\n");
4131   return vaguely_random_number_fallback(max);
4132   }
4133 r = 0;
4134 for (uschar * p = smallbuf; needed_len; --needed_len, ++p)
4135   r = r * 256 + *p;
4136
4137 /* We don't particularly care about weighted results; if someone wants
4138  * smooth distribution and cares enough then they should submit a patch then. */
4139 return r % max;
4140 }
4141 #else /* HAVE_GNUTLS_RND */
4142 int
4143 vaguely_random_number(int max)
4144 {
4145   return vaguely_random_number_fallback(max);
4146 }
4147 #endif /* HAVE_GNUTLS_RND */
4148
4149
4150
4151
4152 /*************************************************
4153 *  Let tls_require_ciphers be checked at startup *
4154 *************************************************/
4155
4156 /* The tls_require_ciphers option, if set, must be something which the
4157 library can parse.
4158
4159 Returns:     NULL on success, or error message
4160 */
4161
4162 uschar *
4163 tls_validate_require_cipher(void)
4164 {
4165 int rc;
4166 uschar *expciphers = NULL;
4167 gnutls_priority_t priority_cache;
4168 const char *errpos;
4169 uschar * dummy_errstr;
4170
4171 #ifdef GNUTLS_AUTO_GLOBAL_INIT
4172 # define validate_check_rc(Label) do { \
4173   if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) \
4174     return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
4175 # define return_deinit(Label) do { return (Label); } while (0)
4176 #else
4177 # define validate_check_rc(Label) do { \
4178   if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) gnutls_global_deinit(); \
4179     return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
4180 # define return_deinit(Label) do { gnutls_global_deinit(); return (Label); } while (0)
4181 #endif
4182
4183 if (exim_gnutls_base_init_done)
4184   log_write(0, LOG_MAIN|LOG_PANIC,
4185       "already initialised GnuTLS, Exim developer bug");
4186
4187 #if defined(HAVE_GNUTLS_PKCS11) && !defined(GNUTLS_AUTO_PKCS11_MANUAL)
4188 if (!gnutls_allow_auto_pkcs11)
4189   {
4190   rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
4191   validate_check_rc(US"gnutls_pkcs11_init");
4192   }
4193 #endif
4194 #ifndef GNUTLS_AUTO_GLOBAL_INIT
4195 rc = gnutls_global_init();
4196 validate_check_rc(US"gnutls_global_init()");
4197 #endif
4198 exim_gnutls_base_init_done = TRUE;
4199
4200 if (!(tls_require_ciphers && *tls_require_ciphers))
4201   return_deinit(NULL);
4202
4203 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
4204                   &dummy_errstr))
4205   return_deinit(US"failed to expand tls_require_ciphers");
4206
4207 if (!(expciphers && *expciphers))
4208   return_deinit(NULL);
4209
4210 DEBUG(D_tls)
4211   debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
4212
4213 rc = gnutls_priority_init(&priority_cache, CS expciphers, &errpos);
4214 validate_check_rc(string_sprintf(
4215       "gnutls_priority_init(%s) failed at offset %ld, \"%.8s..\"",
4216       expciphers, (long)(errpos - CS expciphers), errpos));
4217
4218 #undef return_deinit
4219 #undef validate_check_rc
4220 #ifndef GNUTLS_AUTO_GLOBAL_INIT
4221 gnutls_global_deinit();
4222 #endif
4223
4224 return NULL;
4225 }
4226
4227
4228
4229
4230 /*************************************************
4231 *         Report the library versions.           *
4232 *************************************************/
4233
4234 /* See a description in tls-openssl.c for an explanation of why this exists.
4235
4236 Arguments:   a FILE* to print the results to
4237 Returns:     nothing
4238 */
4239
4240 void
4241 tls_version_report(FILE *f)
4242 {
4243 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
4244            "                         Runtime: %s\n",
4245            LIBGNUTLS_VERSION,
4246            gnutls_check_version(NULL));
4247 }
4248
4249 #endif  /*!MACRO_PREDEF*/
4250 /* vi: aw ai sw=2
4251 */
4252 /* End of tls-gnu.c */