1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
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. */
9 /* Copyright (c) Phil Pennock 2012 */
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.
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
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).
25 Keeping client and server variables more split than before and is currently
26 the norm, in anticipation of TLS in ACL callouts.
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.
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).
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>
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
49 #if GNUTLS_VERSION_NUMBER < 0x030103 && !defined(DISABLE_OCSP)
50 # warning "GnuTLS library version too old; define DISABLE_OCSP in Makefile"
53 #if GNUTLS_VERSION_NUMBER < 0x020a00 && !defined(DISABLE_EVENT)
54 # warning "GnuTLS library version too old; tls:cert event unsupported"
55 # define DISABLE_EVENT
57 #if GNUTLS_VERSION_NUMBER >= 0x030000
58 # define SUPPORT_SELFSIGN /* Uncertain what version is first usable but 2.12.23 is not */
60 #if GNUTLS_VERSION_NUMBER >= 0x030306
61 # define SUPPORT_CA_DIR
63 # undef SUPPORT_CA_DIR
65 #if GNUTLS_VERSION_NUMBER >= 0x030014
66 # define SUPPORT_SYSDEFAULT_CABUNDLE
68 #if GNUTLS_VERSION_NUMBER >= 0x030104
69 # define GNUTLS_CERT_VFY_STATUS_PRINT
71 #if GNUTLS_VERSION_NUMBER >= 0x030109
74 #if GNUTLS_VERSION_NUMBER >= 0x03010a
75 # define SUPPORT_GNUTLS_SESS_DESC
77 #if GNUTLS_VERSION_NUMBER >= 0x030300
78 # define GNUTLS_AUTO_GLOBAL_INIT
79 # define GNUTLS_AUTO_PKCS11_MANUAL
81 #if (GNUTLS_VERSION_NUMBER >= 0x030404) \
82 || (GNUTLS_VERSION_NUMBER >= 0x030311) && (GNUTLS_VERSION_NUMBER & 0xffff00 == 0x030300)
84 # define EXIM_HAVE_OCSP
87 #if GNUTLS_VERSION_NUMBER >= 0x030500
88 # define SUPPORT_GNUTLS_KEYLOG
90 #if GNUTLS_VERSION_NUMBER >= 0x030506 && !defined(DISABLE_OCSP)
91 # define SUPPORT_SRV_OCSP_STACK
93 #if GNUTLS_VERSION_NUMBER >= 0x030600
94 # define GNUTLS_AUTO_DHPARAMS
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
103 # if GNUTLS_VERSION_NUMBER >= 0x030000
104 # define DANESSL_USAGE_DANE_TA 2
105 # define DANESSL_USAGE_DANE_EE 3
107 # error GnuTLS version too early for DANE
109 # if GNUTLS_VERSION_NUMBER < 0x999999
110 # define GNUTLS_BROKEN_DANE_VALIDATION
114 #ifndef DISABLE_TLS_RESUME
115 # if GNUTLS_VERSION_NUMBER >= 0x030603
116 # define EXIM_HAVE_TLS_RESUME
118 # warning "GnuTLS library version too old; resumption unsupported"
122 #if GNUTLS_VERSION_NUMBER >= 0x030200
123 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
124 # define EXIM_HAVE_ALPN
129 # include <gnutls/ocsp.h>
132 # include <gnutls/dane.h>
135 #include "tls-cipher-stdname.c"
142 # ifndef DISABLE_TLS_RESUME
143 builtin_macro_create_var(US"_RESUME_DECODE", RESUME_DECODE_STRING );
145 # ifdef EXIM_HAVE_TLS1_3
146 builtin_macro_create(US"_HAVE_TLS1_3");
148 # ifdef EXIM_HAVE_OCSP
149 builtin_macro_create(US"_HAVE_TLS_OCSP");
151 # ifdef SUPPORT_SRV_OCSP_STACK
152 builtin_macro_create(US"_HAVE_TLS_OCSP_LIST");
154 #if defined(EXIM_HAVE_INOTIFY) || defined(EXIM_HAVE_KEVENT)
155 builtin_macro_create(US"_HAVE_TLS_CA_CACHE");
157 # ifdef EXIM_HAVE_ALPN
158 builtin_macro_create(US"_HAVE_TLS_ALPN");
167 gnutls_global_set_audit_log_function()
170 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
173 /* Local static variables for GnuTLS */
175 /* Values for verify_requirement */
177 enum peer_verify_requirement
178 { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED, VERIFY_DANE };
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.
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.
188 Not handled here: global tlsp->tls_channelbinding.
191 typedef struct exim_gnutls_state {
192 gnutls_session_t session;
194 exim_tlslib_state lib_state;
195 #define x509_cred libdata0
196 #define pri_cache libdata1
198 enum peer_verify_requirement verify_requirement;
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! */
212 const struct host_item *host; /* NULL if server */
213 gnutls_x509_crt_t peercert;
216 uschar *received_sni;
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;
225 uschar *exp_tls_certificate;
226 uschar *exp_tls_privatekey;
227 uschar *exp_tls_verify_certificates;
229 uschar *exp_tls_require_ciphers;
230 const uschar *exp_tls_verify_cert_hostnames;
231 #ifndef DISABLE_EVENT
232 uschar *event_action;
235 char * const * dane_data;
236 const int * dane_data_len;
239 tls_support *tlsp; /* set in tls_init() */
244 } exim_gnutls_state_st;
246 static const exim_gnutls_state_st exim_gnutls_state_init = {
247 /* all elements not explicitly intialised here get 0/NULL/FALSE */
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
260 XXX But see gnutls_session_get_ptr()
263 static exim_gnutls_state_st state_server = {
264 /* all elements not explicitly intialised here get 0/NULL/FALSE */
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. */
274 static gnutls_dh_params_t dh_server_params = NULL;
277 static int ssl_session_timeout = 7200; /* Two hours */
279 static const uschar * const exim_default_gnutls_priority = US"NORMAL";
281 /* Guard library core initialisation */
283 static BOOL exim_gnutls_base_init_done = FALSE;
286 static BOOL gnutls_buggy_ocsp = FALSE;
287 static BOOL exim_testharness_disable_ocsp_validity_check = FALSE;
290 #ifdef EXIM_HAVE_ALPN
291 static int server_seen_alpn = -1; /* count of names */
293 #ifdef EXIM_HAVE_TLS_RESUME
294 static gnutls_datum_t server_sessticket_key;
298 /* ------------------------------------------------------------------------ */
301 #define MAX_HOST_LEN 255
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
313 #ifndef EXIM_CLIENT_DH_MIN_BITS
314 # define EXIM_CLIENT_DH_MIN_BITS 1024
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
320 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
321 # define EXIM_SERVER_DH_BITS_PRE2_12 1024
324 #define Expand_check_tlsvar(Varname, errstr) \
325 expand_check(state->Varname, US #Varname, &state->exp_##Varname, errstr)
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
337 # ifndef AVOID_GNUTLS_PKCS11
338 # define HAVE_GNUTLS_PKCS11
339 # endif /* AVOID_GNUTLS_PKCS11 */
345 /* ------------------------------------------------------------------------ */
346 /* Callback declarations */
348 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
349 static void exim_gnutls_logger_cb(int level, const char *message);
352 static int exim_sni_handling_cb(gnutls_session_t session);
354 #ifdef EXIM_HAVE_TLS_RESUME
356 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
357 unsigned incoming, const gnutls_datum_t * msg);
361 /*************************************************
363 *************************************************/
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.
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
380 Returns: OK/DEFER/FAIL
384 tls_error(const uschar *prefix, const uschar *msg, const host_item *host,
388 *errstr = string_sprintf("(%s)%s%s", prefix, msg ? ": " : "", msg ? msg : US"");
389 return host ? FAIL : DEFER;
394 tls_error_gnu(exim_gnutls_state_st * state, const uschar *prefix, int err,
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,
406 tls_error_sys(const uschar *prefix, int err, const host_item *host,
409 return tls_error(prefix, US strerror(err), host, errstr);
413 /* ------------------------------------------------------------------------ */
419 tls_is_buggy_ocsp(void)
422 uschar maj, mid, mic;
424 s = CUS gnutls_check_version(NULL);
428 while (*s && *s != '.') s++;
436 while (*s && *s != '.') s++;
438 return mic <= (mid == 3 ? 16 : 3);
448 tls_g_init(uschar ** errstr)
451 DEBUG(D_tls) debug_printf("GnuTLS global init required\n");
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. */
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);
465 #ifndef GNUTLS_AUTO_GLOBAL_INIT
466 if ((rc = gnutls_global_init()))
467 return tls_error_gnu(NULL, US"gnutls_global_init", rc, errstr);
470 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
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);
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");
484 exim_gnutls_base_init_done = TRUE;
490 /* Daemon-call before each connection. Nothing to do for GnuTLS. */
493 tls_per_lib_daemon_tick(void)
497 /* Daemon one-time initialisation */
500 tls_per_lib_daemon_init(void)
502 uschar * dummy_errstr;
503 static BOOL once = FALSE;
505 if (!exim_gnutls_base_init_done)
506 tls_g_init(&dummy_errstr);
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
518 gnutls_session_ticket_key_generate(&server_sessticket_key); /* >= 2.10.0 */
519 if (f.running_in_test_harness) ssl_session_timeout = 6;
522 tls_daemon_creds_reload();
526 /* ------------------------------------------------------------------------ */
528 /*************************************************
529 * Deal with logging errors during I/O *
530 *************************************************/
532 /* We have to get the identity of the peer from saved data.
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
544 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
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))
556 : US gnutls_strerror(rc);
558 (void) tls_error(when, msg, state->host, &errstr);
561 log_write(0, LOG_MAIN, "H=%s [%s] TLS error on connection %s",
562 state->host->name, state->host->address, errstr);
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);
575 /*************************************************
576 * Set various Exim expansion vars *
577 *************************************************/
579 #define exim_gnutls_cert_err(Label) \
582 if (rc != GNUTLS_E_SUCCESS) \
584 DEBUG(D_tls) debug_printf("TLS: cert problem: %s: %s\n", \
585 (Label), gnutls_strerror(rc)); \
591 import_cert(const gnutls_datum_t * cert, gnutls_x509_crt_t * crtp)
595 rc = gnutls_x509_crt_init(crtp);
596 exim_gnutls_cert_err(US"gnutls_x509_crt_init (crt)");
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)]");
604 #undef exim_gnutls_cert_err
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
612 Make sure anything set here is unset in tls_getc().
616 tls_bits strength indicator
617 tls_certificate_verified bool indicator
618 tls_channelbinding for some SASL mechanisms
621 tls_peercert pointer to library internal
623 tls_sni a (UTF-8) string
624 tls_ourcert pointer to library internal
627 state the relevant exim_gnutls_state_st *
631 extract_exim_vars_from_tls_state(exim_gnutls_state_st * state)
633 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
636 gnutls_datum_t channel;
638 tls_support * tlsp = state->tlsp;
640 tlsp->active.sock = state->fd_out;
641 tlsp->active.tls_ctx = state;
643 DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
645 tlsp->certificate_verified = state->peer_cert_verified;
647 tlsp->dane_verified = state->peer_dane_verified;
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. */
653 tlsp->channelbinding = NULL;
654 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
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)); }
661 /* Declare the taintedness of the binding info. On server, untainted; on
662 client, tainted - being the Finish msg from the server. */
664 old_pool = store_pool;
665 store_pool = POOL_PERM;
666 tlsp->channelbinding = b64encode_taint(CUS channel.data, (int)channel.size,
668 store_pool = old_pool;
669 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage\n");
673 /* peercert is set in peer_status() */
674 tlsp->peerdn = state->peerdn;
676 /* do not corrupt sni sent by client; record sni rxd by server */
678 tlsp->sni = state->received_sni;
680 /* record our certificate */
682 const gnutls_datum_t * cert = gnutls_certificate_get_ours(state->session);
683 gnutls_x509_crt_t crt;
685 tlsp->ourcert = cert && import_cert(cert, &crt)==0 ? crt : NULL;
692 #ifndef GNUTLS_AUTO_DHPARAMS
693 /*************************************************
694 * Setup up DH parameters *
695 *************************************************/
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.
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
707 Returns: OK/DEFER/FAIL
711 init_server_dh(uschar ** errstr)
714 unsigned int dh_bits;
715 gnutls_datum_t m = {.data = NULL, .size = 0};
716 uschar filename_buf[PATH_MAX];
717 uschar *filename = NULL;
719 uschar *exp_tls_dhparam;
720 BOOL use_file_in_spool = FALSE;
721 host_item *host = NULL; /* dummy for macros */
723 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params\n");
725 if ((rc = gnutls_dh_params_init(&dh_server_params)))
726 return tls_error_gnu(NULL, US"gnutls_dh_params_init", rc, errstr);
728 if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam, errstr))
731 if (!exp_tls_dhparam)
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);
737 else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
738 use_file_in_spool = TRUE;
739 else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
741 DEBUG(D_tls) debug_printf("Requested no DH parameters\n");
744 else if (exp_tls_dhparam[0] != '/')
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);
751 filename = exp_tls_dhparam;
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");
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. */
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);
768 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits\n",
771 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
773 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits\n",
777 /* Some clients have hard-coded limits. */
778 if (dh_bits > tls_dh_max_bits)
781 debug_printf("tls_dh_max_bits clamping override, using %d bits instead\n",
783 dh_bits = tls_dh_max_bits;
786 if (use_file_in_spool)
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;
794 /* Open the cache file for reading and if successful, read it and set up the
797 if ((fd = Uopen(filename, O_RDONLY, 0)) >= 0)
803 if (fstat(fd, &statbuf) < 0) /* EIO */
807 return tls_error_sys(US"TLS cache stat failed", saved_errno, NULL, errstr);
809 if (!S_ISREG(statbuf.st_mode))
812 return tls_error(US"TLS cache not a file", NULL, NULL, errstr);
814 if (!(fp = fdopen(fd, "rb")))
818 return tls_error_sys(US"fdopen(TLS cache stat fd) failed",
819 saved_errno, NULL, errstr);
822 m.size = statbuf.st_size;
823 if (!(m.data = store_malloc(m.size)))
826 return tls_error_sys(US"malloc failed", errno, NULL, errstr);
828 if (!(sz = fread(m.data, m.size, 1, fp)))
833 return tls_error_sys(US"fread failed", saved_errno, NULL, errstr);
837 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
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);
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. */
847 else if (errno == ENOENT)
851 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
854 return tls_error(string_open_failed("\"%s\" for reading", filename),
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
866 unsigned int dh_bits_gen = dh_bits;
868 if ((PATH_MAX - Ustrlen(filename)) < 10)
869 return tls_error(US"Filename too long to generate replacement",
870 filename, NULL, errstr);
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 */
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. */
883 if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
885 dh_bits_gen = dh_bits - 10;
887 debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
892 debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
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);
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. */
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",
909 if (!(m.data = store_malloc(m.size)))
910 return tls_error_sys(US"memory allocation failed", errno, NULL, errstr);
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,
917 return tls_error_gnu(NULL, US"gnutls_dh_params_export_pkcs3() real", rc, errstr);
919 m.size = sz; /* shrink by 1, probably */
921 if ((sz = write_to_fd_buf(fd, m.data, (size_t) m.size)) != m.size)
924 return tls_error_sys(US"TLS cache write D-H params failed",
925 errno, NULL, errstr);
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);
932 if ((rc = close(fd)))
933 return tls_error_sys(US"TLS cache write close() failed", errno, NULL, errstr);
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);
939 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
942 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
950 /* Create and install a selfsigned certificate, for use in server mode. */
953 tls_install_selfsign(exim_gnutls_state_st * state, uschar ** errstr)
955 gnutls_x509_crt_t cert = NULL;
957 gnutls_x509_privkey_t pkey = NULL;
958 const uschar * where;
961 #ifndef SUPPORT_SELFSIGN
962 where = US"library too old";
963 rc = GNUTLS_E_NO_CERTIFICATE_FOUND;
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;
971 where = US"initialising cert";
972 if ((rc = gnutls_x509_crt_init(&cert))) goto err;
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
980 gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_MEDIUM),
987 where = US"configuring cert";
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))
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)))
1005 where = US"signing cert";
1006 if ((rc = gnutls_x509_crt_sign(cert, cert, pkey))) goto err;
1008 where = US"installing selfsign cert";
1010 if ((rc = gnutls_certificate_set_x509_key(state->lib_state.x509_cred,
1017 if (cert) gnutls_x509_crt_deinit(cert);
1018 if (pkey) gnutls_x509_privkey_deinit(pkey);
1022 rc = tls_error_gnu(state, where, rc, errstr);
1029 /* Add certificate and key, from files.
1032 Zero or negative: good. Negate value for certificate index if < 0.
1033 Greater than zero: FAIL or DEFER code.
1037 tls_add_certfile(exim_gnutls_state_st * state, const host_item * host,
1038 const uschar * certfile, const uschar * keyfile, uschar ** errstr)
1040 int rc = gnutls_certificate_set_x509_key_file(state->lib_state.x509_cred,
1041 CCS certfile, CCS keyfile, GNUTLS_X509_FMT_PEM);
1043 return tls_error_gnu(state,
1044 string_sprintf("cert/key setup: cert=%s key=%s", certfile, keyfile),
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
1056 server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
1057 gnutls_datum_t * ocsp_response)
1060 DEBUG(D_tls) debug_printf("OCSP stapling callback: %s\n", US ptr);
1062 if ((ret = gnutls_load_file(ptr, ocsp_response)) < 0)
1064 DEBUG(D_tls) debug_printf("Failed to load ocsp stapling file %s\n",
1066 tls_in.ocsp = OCSP_NOT_RESP;
1067 return GNUTLS_E_NO_CERTIFICATE_STATUS;
1070 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1076 #ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1077 /* Make a note that we saw a status-request */
1079 tls_server_clienthello_ext(void * ctx, unsigned tls_id,
1080 const uschar * data, unsigned size)
1082 /* The values for tls_id are documented here:
1083 https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
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;
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. */
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)
1101 DEBUG(D_tls) debug_printf(" '%.*s'", (int)*s, s+1);
1103 DEBUG(D_tls) debug_printf("\n");
1104 if (server_seen_alpn > 1)
1106 DEBUG(D_tls) debug_printf("TLS: too many ALPNs presented in handshake\n");
1107 return GNUTLS_E_NO_APPLICATION_PROTOCOL;
1115 /* Callback for client-hello, on server, if we think we might serve stapled-OCSP */
1117 tls_server_clienthello_cb(gnutls_session_t session, unsigned int htype,
1118 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
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);
1126 # ifdef notdef_crashes
1127 /* Make a note that we saw a status-response */
1129 tls_server_servercerts_ext(void * ctx, unsigned tls_id,
1130 const unsigned char *data, unsigned size)
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 */
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 */
1144 /* Callback for certificates packet, on server, if we think we might serve stapled-OCSP */
1146 tls_server_servercerts_cb(gnutls_session_t session, unsigned int htype,
1147 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1149 /* Call fn for each extension seen. 3.6.3 onwards */
1150 # ifdef notdef_crashes
1152 return gnutls_ext_raw_parse(NULL, tls_server_servercerts_ext, msg, 0);
1155 #endif /*SUPPORT_GNUTLS_EXT_RAW_PARSE*/
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)
1161 This is different to tls1.2 - where it is a separate record (wireshark term) / handshake message (gnutls term).
1164 #if defined(EXIM_HAVE_TLS_RESUME) || defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1165 /* Callback for certificate-status, on server. We sent stapled OCSP. */
1167 tls_server_certstatus_cb(gnutls_session_t session, unsigned int htype,
1168 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
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 */
1175 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1180 /* Callback for handshake messages, on server */
1182 tls_server_hook_cb(gnutls_session_t sess, u_int htype, unsigned when,
1183 unsigned incoming, const gnutls_datum_t * msg)
1185 /* debug_printf("%s: htype %u\n", __FUNCTION__, htype); */
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);
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);
1207 #if !defined(DISABLE_OCSP) && defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1209 tls_server_testharness_ocsp_fiddle(void)
1211 extern char ** environ;
1212 if (environ) for (uschar ** p = USS environ; *p; p++)
1213 if (Ustrncmp(*p, "EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK", 42) == 0)
1215 DEBUG(D_tls) debug_printf("Permitting known bad OCSP response\n");
1216 exim_testharness_disable_ocsp_validity_check = TRUE;
1221 /**************************************************
1222 * One-time init credentials for server and client *
1223 **************************************************/
1226 creds_basic_init(gnutls_certificate_credentials_t x509_cred, BOOL server)
1228 #ifdef SUPPORT_SRV_OCSP_STACK
1229 gnutls_certificate_set_flags(x509_cred, GNUTLS_CERTIFICATE_API_V2);
1231 # if !defined(DISABLE_OCSP) && defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1232 if (server && tls_ocsp_file)
1234 if (f.running_in_test_harness)
1235 tls_server_testharness_ocsp_fiddle();
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);
1244 debug_printf("TLS: basic cred init, %s\n", server ? "server" : "client");
1248 creds_load_server_certs(exim_gnutls_state_st * state, const uschar * cert,
1249 const uschar * pkey, const uschar * ocsp, uschar ** errstr)
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;
1261 if (!expand_check(ocsp, US"tls_ocsp_file", &ofile, errstr))
1266 while (cfile = string_nextinlist(&clist, &csep, NULL, 0))
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)
1274 int gnutls_cert_index = -rc;
1275 DEBUG(D_tls) debug_printf("TLS: cert/key %d %s registered\n",
1276 gnutls_cert_index, cfile);
1278 #ifndef DISABLE_OCSP
1281 /* Set the OCSP stapling server info */
1282 if (gnutls_buggy_ocsp)
1285 debug_printf("GnuTLS library is buggy for OCSP; avoiding\n");
1287 else if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
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)
1294 ocsp_fmt = GNUTLS_X509_FMT_PEM;
1297 else if (Ustrncmp(ofile, US"DER ", 4) == 0)
1299 ocsp_fmt = GNUTLS_X509_FMT_DER;
1303 if ((rc = gnutls_certificate_set_ocsp_status_request_file2(
1304 state->lib_state.x509_cred, CCS ofile, gnutls_cert_index,
1306 return tls_error_gnu(state,
1307 US"gnutls_certificate_set_ocsp_status_request_file2",
1310 debug_printf(" %d response%s loaded\n", rc, rc>1 ? "s":"");
1312 /* Arrange callbacks for OCSP request observability */
1315 gnutls_handshake_set_hook_function(state->session,
1316 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1318 state->lib_state.ocsp_hook = TRUE;
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",
1335 debug_printf("oops; multiple OCSP files not supported\n");
1338 gnutls_certificate_set_ocsp_status_request_function(
1339 state->lib_state.x509_cred, server_ocsp_stapling_cb, ofile);
1341 # endif /* SUPPORT_GNUTLS_EXT_RAW_PARSE */
1344 DEBUG(D_tls) debug_printf("ran out of OCSP response files in list\n");
1346 #endif /* DISABLE_OCSP */
1352 creds_load_client_certs(exim_gnutls_state_st * state, const host_item * host,
1353 const uschar * cert, const uschar * pkey, uschar ** errstr)
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");
1362 creds_load_cabundle(exim_gnutls_state_st * state, const uschar * bundle,
1363 const host_item * host, uschar ** errstr)
1366 struct stat statbuf;
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);
1374 if (Ustat(bundle, &statbuf) < 0)
1376 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat '%s' "
1377 "(tls_verify_certificates): %s", bundle, strerror(errno));
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))
1389 log_write(0, LOG_MAIN|LOG_PANIC,
1390 "tls_verify_certificates \"%s\" is a directory", bundle);
1395 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
1396 bundle, statbuf.st_size);
1398 if (statbuf.st_size == 0)
1401 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
1407 #ifdef SUPPORT_CA_DIR
1408 (statbuf.st_mode & S_IFMT) == S_IFDIR
1410 gnutls_certificate_set_x509_trust_dir(state->lib_state.x509_cred,
1411 CS bundle, GNUTLS_X509_FMT_PEM)
1414 gnutls_certificate_set_x509_trust_file(state->lib_state.x509_cred,
1415 CS bundle, GNUTLS_X509_FMT_PEM);
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. */
1421 if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
1423 gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1425 state->lib_state.ca_rdn_emulate = TRUE;
1430 return tls_error_gnu(state, US"setting certificate trust", cert_count, errstr);
1432 debug_printf("Added %d certificate authorities\n", cert_count);
1439 creds_load_crl(exim_gnutls_state_st * state, const uschar * crl, uschar ** errstr)
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);
1448 DEBUG(D_tls) debug_printf("Processed %d CRLs\n", cert_count);
1454 creds_load_pristring(exim_gnutls_state_st * state, const uschar * p,
1455 const char ** errpos)
1459 p = exim_default_gnutls_priority;
1461 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n", p);
1463 return gnutls_priority_init( (gnutls_priority_t *) &state->lib_state.pri_cache,
1468 tls_server_creds_init(void)
1470 uschar * dummy_errstr;
1471 unsigned lifetime = 0;
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))
1477 state_server.lib_state.x509_cred = NULL;
1480 creds_basic_init(state_server.lib_state.x509_cred, TRUE);
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). */
1487 if ( opt_set_and_noexpand(tls_certificate)
1488 # ifndef DISABLE_OCSP
1489 && opt_unset_or_noexpand(tls_ocsp_file)
1491 && opt_unset_or_noexpand(tls_privatekey))
1493 /* Set watches on the filenames. The implementation does de-duplication
1494 so we can just blindly do them all.
1497 if ( tls_set_watch(tls_certificate, TRUE)
1498 # ifndef DISABLE_OCSP
1499 && tls_set_watch(tls_ocsp_file, TRUE)
1501 && tls_set_watch(tls_privatekey, TRUE))
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
1511 &dummy_errstr) == 0)
1512 state_server.lib_state.conn_certs = TRUE;
1515 else if ( !tls_certificate && !tls_privatekey
1516 # ifndef DISABLE_OCSP
1520 { /* Generate & preload a selfsigned cert. No files to watch. */
1521 if ((tls_install_selfsign(&state_server, &dummy_errstr)) == OK)
1523 state_server.lib_state.conn_certs = TRUE;
1524 lifetime = f.running_in_test_harness ? 2 : 60 * 60; /* 1 hour */
1528 DEBUG(D_tls) debug_printf("TLS: not preloading server certs\n");
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. */
1533 if ( opt_set_and_noexpand(tls_verify_certificates)
1534 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1535 && Ustrcmp(tls_verify_certificates, "system") != 0
1539 if (tls_set_watch(tls_verify_certificates, FALSE))
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)
1545 state_server.lib_state.cabundle = TRUE;
1547 /* If CAs loaded and tls_crl is non-empty and has no $, load it */
1549 if (opt_set_and_noexpand(tls_crl))
1551 if (tls_set_watch(tls_crl, FALSE))
1553 DEBUG(D_tls) debug_printf("TLS: preloading CRL for server\n");
1554 if (creds_load_crl(&state_server, tls_crl, &dummy_errstr) != OK)
1556 state_server.lib_state.crl = TRUE;
1560 DEBUG(D_tls) debug_printf("TLS: not preloading CRL for server\n");
1564 DEBUG(D_tls) debug_printf("TLS: not preloading CA bundle for server\n");
1565 #endif /* EXIM_HAVE_INOTIFY */
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) */
1571 if (!tls_require_ciphers || opt_set_and_noexpand(tls_require_ciphers))
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)
1578 state_server.lib_state.pri_string = TRUE;
1581 DEBUG(D_tls) debug_printf("TLS: not preloading cipher list for server\n");
1586 /* Preload whatever creds are static, onto a transport. The client can then
1587 just copy the pointer as it starts up. */
1590 tls_client_creds_init(transport_instance * t, BOOL watch)
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;
1597 if ( !exim_gnutls_base_init_done
1598 && tls_g_init(&dummy_errstr) != OK)
1601 ob->tls_preload = null_tls_preload;
1602 if (gnutls_certificate_allocate_credentials(
1603 (struct gnutls_certificate_credentials_st **)&ob->tls_preload.x509_cred))
1605 ob->tls_preload.x509_cred = NULL;
1608 creds_basic_init(ob->tls_preload.x509_cred, FALSE);
1610 tpt_dummy_state.session = NULL;
1611 tpt_dummy_state.lib_state = ob->tls_preload;
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))
1618 || ( tls_set_watch(ob->tls_certificate, FALSE)
1619 && tls_set_watch(ob->tls_privatekey, FALSE)
1622 const uschar * pkey = ob->tls_privatekey;
1625 debug_printf("TLS: preloading client certs for transport '%s'\n", t->name);
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 */
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;
1639 debug_printf("TLS: not preloading client certs, for transport '%s'\n", t->name);
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. */
1644 if ( opt_set_and_noexpand(ob->tls_verify_certificates)
1645 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1646 && Ustrcmp(ob->tls_verify_certificates, "system") != 0
1650 if (!watch || tls_set_watch(ob->tls_verify_certificates, FALSE))
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)
1657 ob->tls_preload.cabundle = TRUE;
1659 if (opt_set_and_noexpand(ob->tls_crl))
1661 if (!watch || tls_set_watch(ob->tls_crl, FALSE))
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)
1666 ob->tls_preload.crl = TRUE;
1670 DEBUG(D_tls) debug_printf("TLS: not preloading CRL, for transport '%s'\n", t->name);
1675 debug_printf("TLS: not preloading CA bundle, for transport '%s'\n", t->name);
1677 /* We do not preload tls_require_ciphers to to the transport as it implicitly
1678 depends on DANE or plain usage. */
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. */
1689 tls_server_creds_invalidate(void)
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;
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;
1702 tls_client_creds_invalidate(transport_instance * t)
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;
1712 /*************************************************
1713 * Variables re-expanded post-SNI *
1714 *************************************************/
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".
1719 We can tell the two apart by state->received_sni being non-NULL in callback.
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.
1725 state exim_gnutls_state_st *
1726 errstr error string pointer
1728 Returns: OK/DEFER/FAIL
1732 tls_expand_session_files(exim_gnutls_state_st * state, uschar ** errstr)
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;
1742 /* We check for tls_sni *before* expansion. */
1743 if (!host) /* server */
1744 if (!state->received_sni)
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")
1752 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI\n");
1753 state->trigger_sni_changes = TRUE;
1756 else /* SNI callback case */
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;
1765 if (!state->lib_state.x509_cred)
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",
1771 creds_basic_init(state->lib_state.x509_cred, !host);
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. */
1779 /* check if we at least have a certificate, before doing expensive
1782 if (!state->lib_state.conn_certs)
1784 if (!Expand_check_tlsvar(tls_certificate, errstr))
1787 /* certificate is mandatory in server, optional in client */
1789 if ( !state->exp_tls_certificate
1790 || !*state->exp_tls_certificate
1793 return tls_install_selfsign(state, errstr);
1795 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
1797 if (state->tls_privatekey && !Expand_check_tlsvar(tls_privatekey, errstr))
1800 /* tls_privatekey is optional, defaulting to same file as certificate */
1802 if (!state->tls_privatekey || !*state->tls_privatekey)
1804 state->tls_privatekey = state->tls_certificate;
1805 state->exp_tls_privatekey = state->exp_tls_certificate;
1808 if (state->exp_tls_certificate && *state->exp_tls_certificate)
1811 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
1812 state->exp_tls_certificate, state->exp_tls_privatekey);
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
1819 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
1820 load = FALSE; /* avoid re-loading the same certs */
1822 else /* unload the pre-SNI certs before loading new ones */
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);
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,
1846 debug_printf("%s certs were preloaded\n", host ? "client" : "server");
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;
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);
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
1865 If none was configured and we can't handle "system", treat as empty. */
1867 if (!state->lib_state.cabundle)
1869 if (state->tls_verify_certificates && *state->tls_verify_certificates)
1871 if (!Expand_check_tlsvar(tls_verify_certificates, errstr))
1873 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1874 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1875 state->exp_tls_verify_certificates = NULL;
1877 if (state->tls_crl && *state->tls_crl)
1878 if (!Expand_check_tlsvar(tls_crl, errstr))
1881 if (!(state->exp_tls_verify_certificates &&
1882 *state->exp_tls_verify_certificates))
1885 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
1886 /* With no tls_verify_certificates, we ignore tls_crl too */
1893 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
1896 rc = creds_load_cabundle(state, state->exp_tls_verify_certificates, host, errstr);
1897 if (rc != OK) return rc;
1902 debug_printf("%s CA bundle was preloaded\n", host ? "client" : "server");
1903 state->exp_tls_verify_certificates = US state->tls_verify_certificates;
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);
1914 if (!state->lib_state.crl)
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);
1923 debug_printf("%s CRL was preloaded\n", host ? "client" : "server");
1924 state->exp_tls_crl = US state->tls_crl;
1933 /*************************************************
1934 * Set X.509 state variables *
1935 *************************************************/
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
1944 state exim_gnutls_state_st *
1945 errstr error string pointer
1947 Returns: OK/DEFER/FAIL
1951 tls_set_remaining_x509(exim_gnutls_state_st *state, uschar ** errstr)
1954 const host_item *host = state->host; /* macro should be reconsidered? */
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. */
1963 if (!dh_server_params)
1964 if ((rc = init_server_dh(errstr)) != OK) return rc;
1966 /* Unnecessary & discouraged with 3.6.0 or later */
1967 gnutls_certificate_set_dh_params(state->lib_state.x509_cred, dh_server_params);
1970 DEBUG(D_tls) if (tls_dhparam)
1971 debug_printf("Ignoring tls_dhparam (recent version GnuTLS)\n");
1974 /* Link the credentials to the session. */
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);
1983 /*************************************************
1984 * Initialize for GnuTLS *
1985 *************************************************/
1988 /* Called from both server and client code. In the case of a server, errors
1989 before actual TLS negotiation return DEFER.
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
1998 Returns: OK/DEFER/FAIL
2003 const host_item *host,
2004 smtp_transport_options_block * ob,
2005 const uschar * require_ciphers,
2006 exim_gnutls_state_st **caller_state,
2010 exim_gnutls_state_st * state;
2014 if ( !exim_gnutls_base_init_done
2015 && (rc = tls_g_init(errstr)) != OK)
2020 /* For client-side sessions we allocate a context. This lets us run
2021 several in parallel. */
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;
2028 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
2029 state->lib_state = ob->tls_preload;
2031 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
2032 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
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;
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. */
2046 state = &state_server;
2048 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
2049 rc = gnutls_init(&state->session, GNUTLS_SERVER);
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;
2058 return tls_error_gnu(state, US"gnutls_init", rc, errstr);
2060 state->tls_require_ciphers = require_ciphers;
2063 /* This handles the variables that might get re-expanded after TLS SNI;
2064 tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
2067 debug_printf("Expanding various TLS configuration options for session credentials\n");
2068 if ((rc = tls_expand_session_files(state, errstr)) != OK) return rc;
2070 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
2071 requires a new structure afterwards. */
2073 if ((rc = tls_set_remaining_x509(state, errstr)) != OK) return rc;
2075 /* set SNI in client, only */
2078 if (!expand_check(state->tls_sni, US"tls_out_sni", &state->tlsp->sni, errstr))
2080 if (state->tlsp->sni && *state->tlsp->sni)
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);
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);
2094 if (!state->lib_state.pri_string)
2096 const uschar * p = NULL;
2097 const char * errpos;
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. */
2105 if (state->tls_require_ciphers && *state->tls_require_ciphers)
2107 if (!Expand_check_tlsvar(tls_require_ciphers, errstr))
2109 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
2111 p = state->exp_tls_require_ciphers;
2112 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n", p);
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),
2124 DEBUG(D_tls) debug_printf("cipher list preloaded\n");
2125 state->exp_tls_require_ciphers = US state->tls_require_ciphers;
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);
2132 /* This also sets the server ticket expiration time to the same, and
2133 the STEK rotation time to 3x. */
2135 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
2137 /* Reduce security in favour of increased compatibility, if the admin
2138 decides to make that trade-off. */
2139 if (gnutls_compat_mode)
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);
2145 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
2149 *caller_state = state;
2155 /*************************************************
2156 * Extract peer information *
2157 *************************************************/
2159 static const uschar *
2160 cipher_stdname_kcm(gnutls_kx_algorithm_t kx, gnutls_cipher_algorithm_t cipher,
2161 gnutls_mac_algorithm_t mac)
2164 gnutls_kx_algorithm_t kx_i;
2165 gnutls_cipher_algorithm_t cipher_i;
2166 gnutls_mac_algorithm_t mac_i;
2169 gnutls_cipher_suite_info(i, cs_id, &kx_i, &cipher_i, &mac_i, NULL);
2171 if (kx_i == kx && cipher_i == cipher && mac_i == mac)
2172 return cipher_stdname(cs_id[0], cs_id[1]);
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.
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.
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.
2193 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
2197 state exim_gnutls_state_st *
2198 errstr pointer to error string
2200 Returns: OK/DEFER/FAIL
2204 peer_status(exim_gnutls_state_st * state, uschar ** errstr)
2206 gnutls_session_t session = state->session;
2207 const gnutls_datum_t * cert_list;
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;
2219 if (state->have_set_peerdn)
2221 state->have_set_peerdn = TRUE;
2223 state->peerdn = NULL;
2226 cipher = gnutls_cipher_get(session);
2227 protocol = gnutls_protocol_get_version(session);
2228 mac = gnutls_mac_get(session);
2230 #ifdef GNUTLS_TLS1_3
2231 protocol >= GNUTLS_TLS1_3 ? 0 :
2233 gnutls_kx_get(session);
2235 old_pool = store_pool;
2237 tls_support * tlsp = state->tlsp;
2238 store_pool = POOL_PERM;
2240 #ifdef SUPPORT_GNUTLS_SESS_DESC
2243 uschar * s = US gnutls_session_get_desc(session), c;
2245 /* Nikos M suggests we use this by preference. It returns like:
2246 (TLS1.3)-(ECDHE-SECP256R1)-(RSA-PSS-RSAE-SHA256)-(AES-256-GCM)
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. */
2251 /* debug_printf("peer_status: gnutls_session_get_desc %s\n", s); */
2253 for (s++; (c = *s) && c != ')'; s++) g = string_catn(g, s, 1);
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 */
2259 g = string_catn(g, US":", 1);
2260 if (*s) s++; /* now on _ between groups */
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 */
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);
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);
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. */
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);
2288 /* debug_printf("peer_status: ciphersuite %s\n", state->ciphersuite); */
2290 tlsp->cipher = state->ciphersuite;
2291 tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
2293 tlsp->cipher_stdname = cipher_stdname_kcm(kx, cipher, mac);
2295 store_pool = old_pool;
2298 cert_list = gnutls_certificate_get_peers(session, &cert_list_size);
2300 if (!cert_list || cert_list_size == 0)
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);
2310 if ((ct = gnutls_certificate_type_get(session)) != GNUTLS_CRT_X509)
2312 const uschar * ctn = US gnutls_certificate_type_get_name(ct);
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);
2321 #define exim_gnutls_peer_err(Label) \
2323 if (rc != GNUTLS_E_SUCCESS) \
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); \
2333 rc = import_cert(&cert_list[0], &crt);
2334 exim_gnutls_peer_err(US"cert 0");
2336 state->tlsp->peercert = state->peercert = crt;
2339 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
2340 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
2342 exim_gnutls_peer_err(US"getting size for cert DN failed");
2343 return FAIL; /* should not happen */
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)]");
2349 state->peerdn = dn_buf;
2352 #undef exim_gnutls_peer_err
2358 /*************************************************
2359 * Verify peer certificate *
2360 *************************************************/
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.
2368 state exim_gnutls_state_st *
2369 errstr where to put an error message
2372 FALSE if the session should be rejected
2373 TRUE if the cert is okay or we just don't care
2377 verify_certificate(exim_gnutls_state_st * state, uschar ** errstr)
2382 DEBUG(D_tls) debug_printf("TLS: checking peer certificate\n");
2384 rc = peer_status(state, errstr);
2386 if (state->verify_requirement == VERIFY_NONE)
2389 if (rc != OK || !state->peerdn)
2391 verify = GNUTLS_CERT_INVALID;
2392 *errstr = US"certificate not supplied";
2398 if (state->verify_requirement == VERIFY_DANE && state->host)
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. */
2407 const gnutls_datum_t * certlist =
2408 gnutls_certificate_get_peers(state->session, &lsize);
2409 int usage = tls_out.tlsa_usage;
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). */
2416 if (usage == ((1<<DANESSL_USAGE_DANE_TA) | (1<<DANESSL_USAGE_DANE_EE)))
2417 { /* a mixed-usage bundle */
2422 for (nrec = 0; state->dane_data_len[nrec]; ) nrec++;
2425 dd = store_get(nrec * sizeof(uschar *), FALSE);
2426 ddl = store_get(nrec * sizeof(int), FALSE);
2429 if ((rc = dane_state_init(&s, 0)))
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)
2438 dd[j] = state->dane_data[i];
2439 ddl[j++] = state->dane_data_len[i];
2446 if ((rc = dane_raw_tlsa(s, &r, (char * const *)dd, ddl, 1, 0)))
2449 if ((rc = dane_verify_crt_raw(s, certlist, lsize,
2450 gnutls_certificate_type_get(state->session),
2452 usage == DANESSL_USAGE_DANE_EE
2453 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
2457 debug_printf("TLSA record problem: %s\n", dane_strerror(rc));
2459 else if (verify == 0) /* verification passed */
2467 if (rc) goto tlsa_prob;
2472 if ( (rc = dane_state_init(&s, 0))
2473 || (rc = dane_raw_tlsa(s, &r, state->dane_data, state->dane_data_len,
2475 || (rc = dane_verify_crt_raw(s, certlist, lsize,
2476 gnutls_certificate_type_get(state->session),
2478 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2479 usage == (1 << DANESSL_USAGE_DANE_EE)
2480 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
2489 if (verify != 0) /* verification failed */
2492 (void) dane_verification_status_print(verify, &str, 0);
2493 *errstr = US str.data; /* don't bother to free */
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. */
2501 if (usage & (1 << DANESSL_USAGE_DANE_EE))
2504 state->peer_dane_verified = state->peer_cert_verified = TRUE;
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. */
2512 if (gnutls_x509_crt_check_hostname(state->tlsp->peercert,
2513 CS state->host->name))
2515 state->peer_dane_verified = state->peer_cert_verified = TRUE;
2520 #endif /*SUPPORT_DANE*/
2522 rc = gnutls_certificate_verify_peers2(state->session, &verify);
2525 /* Handle the result of verification. INVALID is set if any others are. */
2527 if (rc < 0 || verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED))
2529 state->peer_cert_verified = FALSE;
2532 #ifdef GNUTLS_CERT_VFY_STATUS_PRINT
2537 if (gnutls_certificate_verification_status_print(verify,
2538 gnutls_certificate_type_get(state->session), &txt, 0)
2539 == GNUTLS_E_SUCCESS)
2541 debug_printf("%s\n", txt.data);
2542 gnutls_free(txt.data);
2546 *errstr = verify & GNUTLS_CERT_REVOKED
2547 ? US"certificate revoked" : US"certificate invalid";
2551 debug_printf("TLS certificate verification failed (%s): peerdn=\"%s\"\n",
2552 *errstr, state->peerdn ? state->peerdn : US"<unset>");
2554 if (state->verify_requirement >= VERIFY_REQUIRED)
2557 debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
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
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)
2573 debug_printf("TLS certificate verification failed: cert name mismatch\n");
2574 if (state->verify_requirement >= VERIFY_REQUIRED)
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>");
2585 state->tlsp->peerdn = state->peerdn;
2590 *errstr = string_sprintf("TLSA record problem: %s",
2591 rc == DANE_E_REQUESTED_DATA_NOT_AVAILABLE ? "none usable" : dane_strerror(rc));
2595 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
2602 /* ------------------------------------------------------------------------ */
2605 /* Logging function which can be registered with
2606 * gnutls_global_set_log_function()
2607 * gnutls_global_set_log_level() 0..9
2609 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
2611 exim_gnutls_logger_cb(int level, const char *message)
2613 size_t len = strlen(message);
2616 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
2619 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
2620 message[len-1] == '\n' ? "" : "\n");
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.
2630 Should be registered with
2631 gnutls_handshake_set_post_client_hello_function()
2633 "This callback must return 0 on success or a gnutls error code to terminate the
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.
2642 exim_sni_handling_cb(gnutls_session_t session)
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;
2649 uschar * dummy_errstr;
2651 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
2652 if (rc != GNUTLS_E_SUCCESS)
2655 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
2656 debug_printf("TLS: no SNI presented in handshake\n");
2658 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
2659 gnutls_strerror(rc), rc);
2663 if (sni_type != GNUTLS_NAME_DNS)
2665 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
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;
2675 /* We set this one now so that variable expansions below will work */
2676 state->tlsp->sni = state->received_sni;
2678 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
2679 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
2681 if (!state->trigger_sni_changes)
2684 if ((rc = tls_expand_session_files(state, &dummy_errstr)) != OK)
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;
2691 rc = tls_set_remaining_x509(state, &dummy_errstr);
2692 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
2699 #ifndef DISABLE_EVENT
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.
2706 Return 0 for the handshake to continue or non-zero to terminate.
2710 verify_cb(gnutls_session_t session)
2712 const gnutls_datum_t * cert_list;
2713 unsigned int cert_list_size = 0;
2714 gnutls_x509_crt_t crt;
2717 exim_gnutls_state_st * state = gnutls_session_get_ptr(session);
2719 if ((cert_list = gnutls_certificate_get_peers(session, &cert_list_size)))
2720 while (cert_list_size--)
2722 if ((rc = import_cert(&cert_list[cert_list_size], &crt)) != GNUTLS_E_SUCCESS)
2724 DEBUG(D_tls) debug_printf("TLS: peer cert problem: depth %d: %s\n",
2725 cert_list_size, gnutls_strerror(rc));
2729 state->tlsp->peercert = crt;
2730 if ((yield = event_raise(state->event_action,
2731 US"tls:cert", string_sprintf("%d", cert_list_size))))
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 */
2738 state->tlsp->peercert = NULL;
2748 ddump(gnutls_datum_t * d)
2750 gstring * g = string_get((d->size+1) * 2);
2751 uschar * s = d->data;
2752 for (unsigned i = d->size; i > 0; i--, s++)
2754 g = string_catn(g, US "0123456789abcdef" + (*s >> 4), 1);
2755 g = string_catn(g, US "0123456789abcdef" + (*s & 0xf), 1);
2761 post_handshake_debug(exim_gnutls_state_st * state)
2763 #ifdef SUPPORT_GNUTLS_SESS_DESC
2764 debug_printf("%s\n", gnutls_session_get_desc(state->session));
2767 #ifdef SUPPORT_GNUTLS_KEYLOG
2768 # ifdef EXIM_HAVE_TLS1_3
2769 if (gnutls_protocol_get_version(state->session) < GNUTLS_TLS1_3)
2774 gnutls_datum_t c, s;
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);
2781 debug_printf("CLIENT_RANDOM %.*s %.*s\n", (int)gc->ptr, gc->s, (int)gs->ptr, gs->s);
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");
2796 #ifdef EXIM_HAVE_TLS_RESUME
2798 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2799 unsigned incoming, const gnutls_datum_t * msg)
2801 DEBUG(D_tls) debug_printf("newticket cb\n");
2802 tls_in.resumption |= RESUME_CLIENT_REQUESTED;
2807 tls_server_resume_prehandshake(exim_gnutls_state_st * state)
2809 /* Should the server offer session resumption? */
2810 tls_in.resumption = RESUME_SUPPORTED;
2811 if (verify_check_host(&tls_resumption_hosts) == OK)
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. */
2820 if (!(rc = gnutls_session_ticket_enable_server(state->session,
2821 &server_sessticket_key)))
2822 tls_in.resumption |= RESUME_SERVER_TICKET;
2825 debug_printf("enabling session tickets: %s\n", US gnutls_strerror(rc));
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);
2834 tls_server_resume_posthandshake(exim_gnutls_state_st * state)
2836 if (gnutls_session_resumption_requested(state->session))
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. */
2842 tls_in.resumption |= RESUME_CLIENT_SUGGESTED;
2843 DEBUG(D_tls) debug_printf("client requested resumption\n");
2845 if (gnutls_session_is_resumed(state->session))
2847 tls_in.resumption |= RESUME_USED;
2848 DEBUG(D_tls) debug_printf("Session resumed\n");
2851 #endif /* EXIM_HAVE_TLS_RESUME */
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.
2860 tls_alpn_plist(const uschar * tls_alpn, const gnutls_datum_t ** plist, unsigned * plen,
2865 if (!expand_check(tls_alpn, US"tls_alpn", &exp_alpn, errstr))
2870 DEBUG(D_tls) debug_printf("Setting TLS ALPN forced to fail, not sending\n");
2875 const uschar * list = exp_alpn;
2881 while (string_nextinlist(&list, &sep, NULL, 0)) cnt++;
2883 p = store_get(sizeof(gnutls_datum_t) * cnt, is_tainted(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;
2893 tls_server_set_acceptable_alpns(exim_gnutls_state_st * state, uschar ** errstr)
2896 const gnutls_datum_t * plist;
2899 if (tls_alpn_plist(tls_alpn, &plist, &plen, errstr) && plist)
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. */
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);
2911 debug_printf("setting alpn protocols: %s\n", US gnutls_strerror(rc));
2914 #endif /* EXIM_HAVE_ALPN */
2916 /* ------------------------------------------------------------------------ */
2917 /* Exported functions */
2922 /*************************************************
2923 * Start a TLS session in a server *
2924 *************************************************/
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
2931 errstr pointer to error string
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
2940 tls_server_start(uschar ** errstr)
2943 exim_gnutls_state_st * state = NULL;
2945 /* Check for previous activation */
2946 if (tls_in.active.sock >= 0)
2948 tls_error(US"STARTTLS received after TLS started", US "", NULL, errstr);
2949 smtp_printf("554 Already in TLS\r\n", FALSE);
2953 /* Initialize the library. If it fails, it will already have logged the error
2954 and sent an SMTP response. */
2956 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
2959 #ifdef MEASURE_TIMING
2961 gettimeofday(&t0, NULL);
2964 if ((rc = tls_init(NULL, NULL,
2965 tls_require_ciphers, &state, &tls_in, errstr)) != OK) return rc;
2967 #ifdef MEASURE_TIMING
2968 report_time_since(&t0, US"server tls_init (delta)");
2972 #ifdef EXIM_HAVE_ALPN
2973 tls_server_set_acceptable_alpns(state, errstr);
2976 #ifdef EXIM_HAVE_TLS_RESUME
2977 tls_server_resume_prehandshake(state);
2980 /* If this is a host for which certificate verification is mandatory or
2981 optional, set up appropriately. */
2983 if (verify_check_host(&tls_verify_hosts) == OK)
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);
2990 else if (verify_check_host(&tls_try_verify_hosts) == OK)
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);
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);
3005 #ifndef DISABLE_EVENT
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);
3014 /* Register SNI handling; always, even if not in tls_certificate, so that the
3015 expansion variable $tls_sni is always available. */
3017 gnutls_handshake_set_post_client_hello_function(state->session,
3018 exim_sni_handling_cb);
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. */
3026 if (!state->tlsp->on_connect)
3028 smtp_printf("220 TLS go ahead\r\n", FALSE);
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. */
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);
3044 sigalrm_seen = FALSE;
3045 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3047 rc = gnutls_handshake(state->session);
3048 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
3051 if (rc != GNUTLS_E_SUCCESS)
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. */
3059 tls_error(US"gnutls_handshake", US"timed out", NULL, errstr);
3060 gnutls_db_remove_session(state->session);
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;
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;
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;
3085 #ifdef EXIM_HAVE_TLS_RESUME
3086 tls_server_resume_posthandshake(state);
3089 DEBUG(D_tls) post_handshake_debug(state);
3091 #ifdef EXIM_HAVE_ALPN
3092 if (server_seen_alpn > 0)
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);
3099 debug_printf("ALPN negotiated: %.*s\n", (int)p.size, p.data);
3101 debug_printf("getting alpn protocol: %s\n", US gnutls_strerror(rc));
3105 else if (server_seen_alpn == 0)
3106 if (verify_check_host(&hosts_require_alpn) == OK)
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);
3113 DEBUG(D_tls) debug_printf("TLS: no ALPN presented in handshake\n");
3115 DEBUG(D_tls) debug_printf("TLS: was not watching for ALPN\n");
3118 /* Verify after the fact */
3120 if (!verify_certificate(state, errstr))
3122 if (state->verify_requirement != VERIFY_OPTIONAL)
3124 (void) tls_error(US"certificate verification failed", *errstr, NULL, errstr);
3128 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
3132 /* Sets various Exim expansion variables; always safe within server */
3134 extract_exim_vars_from_tls_state(state);
3136 /* TLS has been set up. Adjust the input functions to read via TLS,
3137 and initialize appropriately. */
3139 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
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;
3157 tls_client_setup_hostname_checks(host_item * host, exim_gnutls_state_st * state,
3158 smtp_transport_options_block * ob)
3160 if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
3162 state->exp_tls_verify_cert_hostnames =
3164 string_domain_utf8_to_alabel(host->certname, NULL);
3169 debug_printf("TLS: server cert verification includes hostname: \"%s\"\n",
3170 state->exp_tls_verify_cert_hostnames);
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.
3182 We point at the dnsa data not copy it, so it must remain valid until
3183 after verification is done.*/
3186 dane_tlsa_load(exim_gnutls_state_st * state, dns_answer * dnsa)
3190 const char ** dane_data;
3191 int * dane_data_len;
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++;
3198 dane_data = store_get(i * sizeof(uschar *), FALSE);
3199 dane_data_len = store_get(i * sizeof(int), FALSE);
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)
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];
3211 debug_printf("TLSA: %d %d %d size %d\n", usage, sel, type, rr->size);
3213 if ( (usage != DANESSL_USAGE_DANE_TA && usage != DANESSL_USAGE_DANE_EE)
3214 || (sel != 0 && sel != 1)
3219 case 0: /* Full: cannot check at present */
3221 case 1: if (rr->size != 3 + 256/8) continue; /* sha2-256 */
3223 case 2: if (rr->size != 3 + 512/8) continue; /* sha2-512 */
3228 tls_out.tlsa_usage |= 1<<usage;
3229 dane_data[i] = CS p;
3230 dane_data_len[i++] = rr->size;
3233 if (!i) return FALSE;
3235 dane_data[i] = NULL;
3236 dane_data_len[i] = 0;
3238 state->dane_data = (char * const *)dane_data;
3239 state->dane_data_len = dane_data_len;
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. */
3256 tls_retrieve_session(tls_support * tlsp, gnutls_session_t session,
3257 host_item * host, smtp_transport_options_block * ob)
3259 tlsp->resumption = RESUME_SUPPORTED;
3260 if (verify_check_given_host(CUSS &ob->tls_resumption_hosts, host) == OK)
3262 dbdata_tls_session * dt;
3264 open_db dbblock, * dbm_file;
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)))
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 */
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))))
3279 DEBUG(D_tls) debug_printf("good session\n");
3280 tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
3282 else DEBUG(D_tls) debug_printf("setting session resumption data: %s\n",
3283 US gnutls_strerror(rc));
3284 dbfn_close(dbm_file);
3291 tls_save_session(tls_support * tlsp, gnutls_session_t session, const host_item * host)
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
3298 if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
3303 DEBUG(D_tls) debug_printf("server offered session ticket\n");
3304 tlsp->ticket_received = TRUE;
3305 tlsp->resumption |= RESUME_SERVER_TICKET;
3307 if (tlsp->host_resumable)
3308 if (!(rc = gnutls_session_get_data2(session, &tkt)))
3310 open_db dbblock, * dbm_file;
3311 int dlen = sizeof(dbdata_tls_session) + tkt.size;
3312 dbdata_tls_session * dt = store_get(dlen, TRUE);
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);
3318 if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
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);
3326 debug_printf("wrote session db (len %u)\n", (unsigned)dlen);
3330 debug_printf("extract session data: %s\n", US gnutls_strerror(rc));
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
3341 tls_client_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
3342 unsigned incoming, const gnutls_datum_t * msg)
3344 exim_gnutls_state_st * state = gnutls_session_get_ptr(sess);
3345 tls_support * tlsp = state->tlsp;
3347 DEBUG(D_tls) debug_printf("newticket cb\n");
3349 if (!tlsp->ticket_received)
3350 tls_save_session(tlsp, sess, state->host);
3356 tls_client_resume_prehandshake(exim_gnutls_state_st * state,
3357 tls_support * tlsp, host_item * host,
3358 smtp_transport_options_block * ob)
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);
3364 tls_retrieve_session(tlsp, state->session, host, ob);
3368 tls_client_resume_posthandshake(exim_gnutls_state_st * state,
3369 tls_support * tlsp, host_item * host)
3371 if (gnutls_session_is_resumed(state->session))
3373 DEBUG(D_tls) debug_printf("Session resumed\n");
3374 tlsp->resumption |= RESUME_USED;
3377 tls_save_session(tlsp, state->session, host);
3379 #endif /* !DISABLE_TLS_RESUME */
3382 /*************************************************
3383 * Start a TLS session in a client *
3384 *************************************************/
3386 /* Called from the smtp transport after STARTTLS has been accepted.
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
3395 Returns: TRUE for success with TLS session context set in smtp context,
3400 tls_client_start(client_conn_ctx * cctx, smtp_connect_args * conn_args,
3401 void * cookie ARG_UNUSED,
3402 tls_support * tlsp, uschar ** errstr)
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;
3410 exim_gnutls_state_st * state = NULL;
3411 uschar * cipher_list = NULL;
3413 #ifndef DISABLE_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;
3420 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", cctx->sock);
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 */
3428 if (conn_args->dane && ob->dane_require_tls_ciphers)
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))
3434 cipher_list = cipher_list && *cipher_list
3435 ? ob->dane_require_tls_ciphers : ob->tls_require_ciphers;
3440 cipher_list = ob->tls_require_ciphers;
3443 #ifdef MEASURE_TIMING
3445 gettimeofday(&t0, NULL);
3448 if (tls_init(host, ob, cipher_list, &state, tlsp, errstr) != OK)
3451 #ifdef MEASURE_TIMING
3452 report_time_since(&t0, US"client tls_init (delta)");
3457 #ifdef EXIM_HAVE_ALPN
3459 const gnutls_datum_t * plist;
3462 if (!tls_alpn_plist(ob->tls_alpn, &plist, &plen, errstr))
3465 if (gnutls_alpn_set_protocols(state->session, plist, plen, 0) != 0)
3467 tls_error(US"alpn init", NULL, state->host, errstr);
3471 DEBUG(D_tls) debug_printf("Setting TLS ALPN '%s'\n", ob->tls_alpn);
3474 log_write(0, LOG_MAIN, "ALPN unusable with this GnuTLS library version; ignoring \"%s\"\n",
3479 int dh_min_bits = ob->tls_dh_min_bits;
3480 if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
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;
3489 DEBUG(D_tls) debug_printf("Setting D-H prime minimum"
3490 " acceptable bits to %d\n",
3492 gnutls_dh_set_prime_bits(state->session, dh_min_bits);
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 */
3500 if (conn_args->dane && dane_tlsa_load(state, &conn_args->tlsa_dnsa))
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);
3509 if ( ( state->exp_tls_verify_certificates
3510 && !ob->tls_verify_hosts
3511 && (!ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts)
3513 || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
3516 tls_client_setup_hostname_checks(host, state, ob);
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);
3522 else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
3524 tls_client_setup_hostname_checks(host, state, ob);
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);
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);
3538 #ifndef DISABLE_OCSP
3539 /* supported since GnuTLS 3.1.3 */
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)
3546 tls_error_gnu(state, US"cert-status-req", rc, errstr);
3549 tlsp->ocsp = OCSP_NOT_RESP;
3553 #ifdef EXIM_HAVE_TLS_RESUME
3554 tls_client_resume_prehandshake(state, tlsp, host, ob);
3557 #ifndef DISABLE_EVENT
3558 if (tb && tb->event_action)
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);
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;
3570 DEBUG(D_tls) debug_printf("about to gnutls_handshake\n");
3571 /* There doesn't seem to be a built-in timeout on connection. */
3573 sigalrm_seen = FALSE;
3574 ALARM(ob->command_timeout);
3576 rc = gnutls_handshake(state->session);
3577 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
3580 if (rc != GNUTLS_E_SUCCESS)
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);
3588 tls_error_gnu(state, US"gnutls_handshake", rc, errstr);
3592 DEBUG(D_tls) post_handshake_debug(state);
3596 if (!verify_certificate(state, errstr))
3598 tls_error(US"certificate verification failed", *errstr, state->host, errstr);
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;
3607 #ifndef DISABLE_OCSP
3612 gnutls_datum_t stapling;
3613 gnutls_ocsp_resp_t resp;
3614 gnutls_datum_t printed;
3618 # ifdef GNUTLS_OCSP_STATUS_REQUEST_GET2
3619 (rc = gnutls_ocsp_status_request_get2(state->session, idx, &stapling)) == 0;
3621 (rc = gnutls_ocsp_status_request_get(state->session, &stapling)) == 0;
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
3629 debug_printf("%.4096s", printed.data);
3630 gnutls_free(printed.data);
3633 (void) tls_error_gnu(state, US"ocsp decode", rc, errstr);
3635 (void) tls_error_gnu(state, US"ocsp decode", rc, errstr);
3638 if (gnutls_ocsp_status_request_is_checked(state->session, 0) == 0)
3640 tlsp->ocsp = OCSP_FAILED;
3641 tls_error(US"certificate status check failed", NULL, state->host, errstr);
3647 DEBUG(D_tls) debug_printf("Passed OCSP checking\n");
3648 tlsp->ocsp = OCSP_VFIED;
3653 #ifdef EXIM_HAVE_TLS_RESUME
3654 tls_client_resume_posthandshake(state, tlsp, host);
3657 #ifdef EXIM_HAVE_ALPN
3658 if (ob->tls_alpn) /* We requested. See what was negotiated. */
3660 gnutls_datum_t p = {.size = 0};
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)
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);
3671 DEBUG(D_tls) debug_printf("No ALPN negotiated");
3675 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
3677 extract_exim_vars_from_tls_state(state);
3679 cctx->tls_ctx = state;
3688 ct_ctx client TLS context pointer, or NULL for the one global server context
3692 tls_shutdown_wr(void * ct_ctx)
3694 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3695 tls_support * tlsp = state->tlsp;
3697 if (!tlsp || tlsp->active.sock < 0) return; /* TLS was not active */
3699 tls_write(ct_ctx, NULL, 0, FALSE); /* flush write buffer */
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);
3705 /*************************************************
3706 * Close down a TLS session *
3707 *************************************************/
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).
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)
3723 tls_close(void * ct_ctx, int do_shutdown)
3725 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3726 tls_support * tlsp = state->tlsp;
3728 if (!tlsp || tlsp->active.sock < 0) return; /* TLS was not active */
3732 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
3733 do_shutdown > 1 ? " (with response-wait)" : "");
3735 tls_write(ct_ctx, NULL, 0, FALSE); /* flush write buffer */
3738 gnutls_bye(state->session, do_shutdown > 1 ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
3742 if (!ct_ctx) /* server */
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;
3754 gnutls_deinit(state->session);
3755 gnutls_certificate_free_credentials(state->lib_state.x509_cred);
3756 state->lib_state = null_tls_preload;
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;
3764 if (state->xfer_buffer) store_free(state->xfer_buffer);
3771 tls_refill(unsigned lim)
3773 exim_gnutls_state_st * state = &state_server;
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);
3779 sigalrm_seen = FALSE;
3780 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3784 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
3785 MIN(ssl_xfer_buffer_size, lim));
3786 while (inbytes == GNUTLS_E_AGAIN);
3788 if (smtp_receive_timeout > 0) ALARM_CLR(0);
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();
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. */
3805 DEBUG(D_tls) debug_printf("Got tls read timeout\n");
3806 state->xfer_error = TRUE;
3810 else if (inbytes == 0)
3812 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3813 tls_close(NULL, TLS_NO_SHUTDOWN);
3817 /* Handle genuine errors */
3819 else if (inbytes < 0)
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;
3826 #ifndef DISABLE_DKIM
3827 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
3829 state->xfer_buffer_hwm = (int) inbytes;
3830 state->xfer_buffer_lwm = 0;
3834 /*************************************************
3835 * TLS version of getc *
3836 *************************************************/
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.
3842 This feeds DKIM and should be used for all message-body reads.
3844 Arguments: lim Maximum amount to read/buffer
3845 Returns: the next character or EOF
3849 tls_getc(unsigned lim)
3851 exim_gnutls_state_st * state = &state_server;
3853 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3854 if (!tls_refill(lim))
3855 return state->xfer_error ? EOF : smtp_getc(lim);
3857 /* Something in the buffer; return next uschar */
3859 return state->xfer_buffer[state->xfer_buffer_lwm++];
3865 exim_gnutls_state_st * state = &state_server;
3866 return state->xfer_buffer_lwm < state->xfer_buffer_hwm;
3870 tls_getbuf(unsigned * len)
3872 exim_gnutls_state_st * state = &state_server;
3876 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3877 if (!tls_refill(*len))
3879 if (!state->xfer_error) return smtp_getbuf(len);
3884 if ((size = state->xfer_buffer_hwm - state->xfer_buffer_lwm) > *len)
3886 buf = &state->xfer_buffer[state->xfer_buffer_lwm];
3887 state->xfer_buffer_lwm += size;
3893 /* Get up to the given number of bytes from any cached data, and feed to dkim. */
3895 tls_get_cache(unsigned lim)
3897 #ifndef DISABLE_DKIM
3898 exim_gnutls_state_st * state = &state_server;
3899 int n = state->xfer_buffer_hwm - state->xfer_buffer_lwm;
3903 dkim_exim_verify_feed(state->xfer_buffer+state->xfer_buffer_lwm, n);
3909 tls_could_read(void)
3911 return state_server.xfer_buffer_lwm < state_server.xfer_buffer_hwm
3912 || gnutls_record_check_pending(state_server.session) > 0;
3916 /*************************************************
3917 * Read bytes from TLS channel *
3918 *************************************************/
3920 /* This does not feed DKIM, so if the caller uses this for reading message body,
3921 then the caller must feed DKIM.
3924 ct_ctx client context pointer, or NULL for the one global server context
3928 Returns: the number of bytes read
3929 -1 after a failed read, including EOF
3933 tls_read(void * ct_ctx, uschar *buff, size_t len)
3935 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3941 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
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);
3948 debug_printf("Calling gnutls_record_recv(session=%p, buffer=%p, len=" SIZE_T_FMT ")\n",
3949 state->session, buff, len);
3953 inbytes = gnutls_record_recv(state->session, buff, len);
3954 while (inbytes == GNUTLS_E_AGAIN);
3956 if (inbytes > 0) return inbytes;
3959 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3963 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3964 record_io_error(state, (int)inbytes, US"recv", NULL);
3973 /*************************************************
3974 * Write bytes down TLS channel *
3975 *************************************************/
3979 ct_ctx client context pointer, or NULL for the one global server context
3982 more more data expected soon
3984 Calling with len zero and more unset will flush buffered writes. The buff
3985 argument can be null for that case.
3987 Returns: the number of bytes after a successful write,
3988 -1 after a failed write
3992 tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
3996 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3999 if (more && !state->corked)
4001 DEBUG(D_tls) debug_printf("gnutls_record_cork(session=%p)\n", state->session);
4002 gnutls_record_cork(state->session);
4003 state->corked = TRUE;
4007 DEBUG(D_tls) debug_printf("%s(%p, " SIZE_T_FMT "%s)\n", __FUNCTION__,
4008 buff, left, more ? ", more" : "");
4012 DEBUG(D_tls) debug_printf("gnutls_record_send(session=%p, buffer=%p, left=" SIZE_T_FMT ")\n",
4013 state->session, buff, left);
4017 outbytes = gnutls_record_send(state->session, buff, left);
4018 while (outbytes == GNUTLS_E_AGAIN);
4020 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
4024 #ifdef GNUTLS_E_PREMATURE_TERMINATION
4025 if ( outbytes == GNUTLS_E_PREMATURE_TERMINATION && errno == ECONNRESET
4026 && !ct_ctx && f.smtp_in_quit
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);
4033 DEBUG(D_tls) debug_printf("[%s] SSL_write: after QUIT,"
4034 " client reset TCP before TLS close\n", sender_host_address);
4039 DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
4040 record_io_error(state, outbytes, US"send", NULL);
4046 record_io_error(state, 0, US"send", US"TLS channel closed on write");
4057 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
4063 if (!more && state->corked)
4065 DEBUG(D_tls) debug_printf("gnutls_record_uncork(session=%p)\n", state->session);
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);
4077 record_io_error(state, len, US"uncork", NULL);
4081 state->corked = FALSE;
4091 /*************************************************
4092 * Random number generation *
4093 *************************************************/
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.
4103 Returns a random number in range [0, max-1]
4106 #ifdef HAVE_GNUTLS_RND
4108 vaguely_random_number(int max)
4112 uschar smallbuf[sizeof(r)];
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. */
4121 for (r = max, i = 0; r; ++i)
4127 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
4130 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback\n");
4131 return vaguely_random_number_fallback(max);
4134 for (uschar * p = smallbuf; needed_len; --needed_len, ++p)
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. */
4141 #else /* HAVE_GNUTLS_RND */
4143 vaguely_random_number(int max)
4145 return vaguely_random_number_fallback(max);
4147 #endif /* HAVE_GNUTLS_RND */
4152 /*************************************************
4153 * Let tls_require_ciphers be checked at startup *
4154 *************************************************/
4156 /* The tls_require_ciphers option, if set, must be something which the
4159 Returns: NULL on success, or error message
4163 tls_validate_require_cipher(void)
4166 uschar *expciphers = NULL;
4167 gnutls_priority_t priority_cache;
4169 uschar * dummy_errstr;
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)
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)
4183 if (exim_gnutls_base_init_done)
4184 log_write(0, LOG_MAIN|LOG_PANIC,
4185 "already initialised GnuTLS, Exim developer bug");
4187 #if defined(HAVE_GNUTLS_PKCS11) && !defined(GNUTLS_AUTO_PKCS11_MANUAL)
4188 if (!gnutls_allow_auto_pkcs11)
4190 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
4191 validate_check_rc(US"gnutls_pkcs11_init");
4194 #ifndef GNUTLS_AUTO_GLOBAL_INIT
4195 rc = gnutls_global_init();
4196 validate_check_rc(US"gnutls_global_init()");
4198 exim_gnutls_base_init_done = TRUE;
4200 if (!(tls_require_ciphers && *tls_require_ciphers))
4201 return_deinit(NULL);
4203 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
4205 return_deinit(US"failed to expand tls_require_ciphers");
4207 if (!(expciphers && *expciphers))
4208 return_deinit(NULL);
4211 debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
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));
4218 #undef return_deinit
4219 #undef validate_check_rc
4220 #ifndef GNUTLS_AUTO_GLOBAL_INIT
4221 gnutls_global_deinit();
4230 /*************************************************
4231 * Report the library versions. *
4232 *************************************************/
4234 /* See a description in tls-openssl.c for an explanation of why this exists.
4236 Arguments: a FILE* to print the results to
4241 tls_version_report(FILE *f)
4243 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
4246 gnutls_check_version(NULL));
4249 #endif /*!MACRO_PREDEF*/
4252 /* End of tls-gnu.c */