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"
123 # include <gnutls/ocsp.h>
126 # include <gnutls/dane.h>
129 #include "tls-cipher-stdname.c"
136 # ifndef DISABLE_TLS_RESUME
137 builtin_macro_create_var(US"_RESUME_DECODE", RESUME_DECODE_STRING );
139 # ifdef EXIM_HAVE_TLS1_3
140 builtin_macro_create(US"_HAVE_TLS1_3");
142 # ifdef EXIM_HAVE_OCSP
143 builtin_macro_create(US"_HAVE_TLS_OCSP");
145 # ifdef SUPPORT_SRV_OCSP_STACK
146 builtin_macro_create(US"_HAVE_TLS_OCSP_LIST");
148 #ifdef EXIM_HAVE_INOTIFY
149 builtin_macro_create(US"_HAVE_TLS_CA_CACHE");
158 gnutls_global_set_audit_log_function()
161 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
164 /* Local static variables for GnuTLS */
166 /* Values for verify_requirement */
168 enum peer_verify_requirement
169 { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED, VERIFY_DANE };
171 /* This holds most state for server or client; with this, we can set up an
172 outbound TLS-enabled connection in an ACL callout, while not stomping all
173 over the TLS variables available for expansion.
175 Some of these correspond to variables in globals.c; those variables will
176 be set to point to content in one of these instances, as appropriate for
177 the stage of the process lifetime.
179 Not handled here: global tlsp->tls_channelbinding.
182 typedef struct exim_gnutls_state {
183 gnutls_session_t session;
185 exim_tlslib_state lib_state;
186 #define x509_cred libdata0
187 #define pri_cache libdata1
189 enum peer_verify_requirement verify_requirement;
193 BOOL peer_cert_verified:1;
194 BOOL peer_dane_verified:1;
195 BOOL trigger_sni_changes:1;
196 BOOL have_set_peerdn:1;
197 BOOL xfer_eof:1; /*XXX never gets set! */
203 const struct host_item *host; /* NULL if server */
204 gnutls_x509_crt_t peercert;
207 uschar *received_sni;
209 const uschar *tls_certificate;
210 const uschar *tls_privatekey;
211 const uschar *tls_sni; /* client send only, not received */
212 const uschar *tls_verify_certificates;
213 const uschar *tls_crl;
214 const uschar *tls_require_ciphers;
216 uschar *exp_tls_certificate;
217 uschar *exp_tls_privatekey;
218 uschar *exp_tls_verify_certificates;
220 uschar *exp_tls_require_ciphers;
221 const uschar *exp_tls_verify_cert_hostnames;
222 #ifndef DISABLE_EVENT
223 uschar *event_action;
226 char * const * dane_data;
227 const int * dane_data_len;
230 tls_support *tlsp; /* set in tls_init() */
235 } exim_gnutls_state_st;
237 static const exim_gnutls_state_st exim_gnutls_state_init = {
238 /* all elements not explicitly intialised here get 0/NULL/FALSE */
243 /* Not only do we have our own APIs which don't pass around state, assuming
244 it's held in globals, GnuTLS doesn't appear to let us register callback data
245 for callbacks, or as part of the session, so we have to keep a "this is the
246 context we're currently dealing with" pointer and rely upon being
247 single-threaded to keep from processing data on an inbound TLS connection while
248 talking to another TLS connection for an outbound check. This does mean that
249 there's no way for heart-beats to be responded to, for the duration of the
251 XXX But see gnutls_session_get_ptr()
254 static exim_gnutls_state_st state_server = {
255 /* all elements not explicitly intialised here get 0/NULL/FALSE */
260 #ifndef GNUTLS_AUTO_DHPARAMS
261 /* dh_params are initialised once within the lifetime of a process using TLS;
262 if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
263 don't want to repeat this. */
265 static gnutls_dh_params_t dh_server_params = NULL;
268 static int ssl_session_timeout = 7200; /* Two hours */
270 static const uschar * const exim_default_gnutls_priority = US"NORMAL";
272 /* Guard library core initialisation */
274 static BOOL exim_gnutls_base_init_done = FALSE;
277 static BOOL gnutls_buggy_ocsp = FALSE;
278 static BOOL exim_testharness_disable_ocsp_validity_check = FALSE;
281 #ifdef EXIM_HAVE_TLS_RESUME
282 static gnutls_datum_t server_sessticket_key;
285 /* ------------------------------------------------------------------------ */
288 #define MAX_HOST_LEN 255
290 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
291 the library logging; a value less than 0 disables the calls to set up logging
292 callbacks. GNuTLS also looks for an environment variable - except not for
293 setuid binaries, making it useless - "GNUTLS_DEBUG_LEVEL".
294 Allegedly the testscript line "GNUTLS_DEBUG_LEVEL=9 sudo exim ..." would work,
295 but the env var must be added to /etc/sudoers too. */
296 #ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
297 # define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
300 #ifndef EXIM_CLIENT_DH_MIN_BITS
301 # define EXIM_CLIENT_DH_MIN_BITS 1024
304 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
305 can ask for a bit-strength. Without that, we stick to the constant we had
307 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
308 # define EXIM_SERVER_DH_BITS_PRE2_12 1024
311 #define Expand_check_tlsvar(Varname, errstr) \
312 expand_check(state->Varname, US #Varname, &state->exp_##Varname, errstr)
314 #if GNUTLS_VERSION_NUMBER >= 0x020c00
315 # define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
316 # define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
317 # define HAVE_GNUTLS_RND
318 /* The security fix we provide with the gnutls_allow_auto_pkcs11 option
319 * (4.82 PP/09) introduces a compatibility regression. The symbol simply
320 * isn't available sometimes, so this needs to become a conditional
321 * compilation; the sanest way to deal with this being a problem on
322 * older OSes is to block it in the Local/Makefile with this compiler
324 # ifndef AVOID_GNUTLS_PKCS11
325 # define HAVE_GNUTLS_PKCS11
326 # endif /* AVOID_GNUTLS_PKCS11 */
332 /* ------------------------------------------------------------------------ */
333 /* Callback declarations */
335 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
336 static void exim_gnutls_logger_cb(int level, const char *message);
339 static int exim_sni_handling_cb(gnutls_session_t session);
341 #ifdef EXIM_HAVE_TLS_RESUME
343 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
344 unsigned incoming, const gnutls_datum_t * msg);
348 /*************************************************
350 *************************************************/
352 /* Called from lots of places when errors occur before actually starting to do
353 the TLS handshake, that is, while the session is still in clear. Always returns
354 DEFER for a server and FAIL for a client so that most calls can use "return
355 tls_error(...)" to do this processing and then give an appropriate return. A
356 single function is used for both server and client, because it is called from
357 some shared functions.
360 prefix text to include in the logged error
361 msg additional error string (may be NULL)
362 usually obtained from gnutls_strerror()
363 host NULL if setting up a server;
364 the connected host if setting up a client
365 errstr pointer to returned error string
367 Returns: OK/DEFER/FAIL
371 tls_error(const uschar *prefix, const uschar *msg, const host_item *host,
375 *errstr = string_sprintf("(%s)%s%s", prefix, msg ? ": " : "", msg ? msg : US"");
376 return host ? FAIL : DEFER;
381 tls_error_gnu(const uschar *prefix, int err, const host_item *host,
384 return tls_error(prefix, US gnutls_strerror(err), host, errstr);
388 tls_error_sys(const uschar *prefix, int err, const host_item *host,
391 return tls_error(prefix, US strerror(err), host, errstr);
395 /* ------------------------------------------------------------------------ */
401 tls_is_buggy_ocsp(void)
404 uschar maj, mid, mic;
406 s = CUS gnutls_check_version(NULL);
410 while (*s && *s != '.') s++;
418 while (*s && *s != '.') s++;
420 return mic <= (mid == 3 ? 16 : 3);
430 tls_g_init(uschar ** errstr)
433 DEBUG(D_tls) debug_printf("GnuTLS global init required\n");
435 #if defined(HAVE_GNUTLS_PKCS11) && !defined(GNUTLS_AUTO_PKCS11_MANUAL)
436 /* By default, gnutls_global_init will init PKCS11 support in auto mode,
437 which loads modules from a config file, which sounds good and may be wanted
438 by some sysadmin, but also means in common configurations that GNOME keyring
439 environment variables are used and so breaks for users calling mailq.
440 To prevent this, we init PKCS11 first, which is the documented approach. */
442 if (!gnutls_allow_auto_pkcs11)
443 if ((rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL)))
444 return tls_error_gnu(US"gnutls_pkcs11_init", rc, NULL, errstr);
447 #ifndef GNUTLS_AUTO_GLOBAL_INIT
448 if ((rc = gnutls_global_init()))
449 return tls_error_gnu(US"gnutls_global_init", rc, NULL, errstr);
452 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
455 gnutls_global_set_log_function(exim_gnutls_logger_cb);
456 /* arbitrarily chosen level; bump up to 9 for more */
457 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
462 if (tls_ocsp_file && (gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
463 log_write(0, LOG_MAIN, "OCSP unusable with this GnuTLS library version");
466 exim_gnutls_base_init_done = TRUE;
472 /* Daemon-call before each connection. Nothing to do for GnuTLS. */
475 tls_per_lib_daemon_tick(void)
479 /* Daemon one-time initialisation */
482 tls_per_lib_daemon_init(void)
484 uschar * dummy_errstr;
485 static BOOL once = FALSE;
487 if (!exim_gnutls_base_init_done)
488 tls_g_init(&dummy_errstr);
494 #ifdef EXIM_HAVE_TLS_RESUME
495 /* We are dependent on the GnuTLS implementation of the Session Ticket
496 encryption; both the strength and the key rotation period. We hope that
497 the strength at least matches that of the ciphersuite (but GnuTLS does not
500 gnutls_session_ticket_key_generate(&server_sessticket_key); /* >= 2.10.0 */
501 if (f.running_in_test_harness) ssl_session_timeout = 6;
504 tls_daemon_creds_reload();
508 /* ------------------------------------------------------------------------ */
510 /*************************************************
511 * Deal with logging errors during I/O *
512 *************************************************/
514 /* We have to get the identity of the peer from saved data.
517 state the current GnuTLS exim state container
518 rc the GnuTLS error code, or 0 if it's a local error
519 when text identifying read or write
520 text local error text when rc is 0
526 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
531 msg = rc == GNUTLS_E_FATAL_ALERT_RECEIVED
532 ? string_sprintf("A TLS fatal alert has been received: %s",
533 US gnutls_alert_get_name(gnutls_alert_get(state->session)))
534 #ifdef GNUTLS_E_PREMATURE_TERMINATION
535 : rc == GNUTLS_E_PREMATURE_TERMINATION && errno
536 ? string_sprintf("%s: syscall: %s", US gnutls_strerror(rc), strerror(errno))
538 : US gnutls_strerror(rc);
540 (void) tls_error(when, msg, state->host, &errstr);
543 log_write(0, LOG_MAIN, "H=%s [%s] TLS error on connection %s",
544 state->host->name, state->host->address, errstr);
547 uschar * conn_info = smtp_get_connection_info();
548 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
549 /* I'd like to get separated H= here, but too hard for now */
550 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
557 /*************************************************
558 * Set various Exim expansion vars *
559 *************************************************/
561 #define exim_gnutls_cert_err(Label) \
564 if (rc != GNUTLS_E_SUCCESS) \
566 DEBUG(D_tls) debug_printf("TLS: cert problem: %s: %s\n", \
567 (Label), gnutls_strerror(rc)); \
573 import_cert(const gnutls_datum_t * cert, gnutls_x509_crt_t * crtp)
577 rc = gnutls_x509_crt_init(crtp);
578 exim_gnutls_cert_err(US"gnutls_x509_crt_init (crt)");
580 rc = gnutls_x509_crt_import(*crtp, cert, GNUTLS_X509_FMT_DER);
581 exim_gnutls_cert_err(US"failed to import certificate [gnutls_x509_crt_import(cert)]");
586 #undef exim_gnutls_cert_err
589 /* We set various Exim global variables from the state, once a session has
590 been established. With TLS callouts, may need to change this to stack
591 variables, or just re-call it with the server state after client callout
594 Make sure anything set here is unset in tls_getc().
598 tls_bits strength indicator
599 tls_certificate_verified bool indicator
600 tls_channelbinding for some SASL mechanisms
603 tls_peercert pointer to library internal
605 tls_sni a (UTF-8) string
606 tls_ourcert pointer to library internal
609 state the relevant exim_gnutls_state_st *
613 extract_exim_vars_from_tls_state(exim_gnutls_state_st * state)
615 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
618 gnutls_datum_t channel;
620 tls_support * tlsp = state->tlsp;
622 tlsp->active.sock = state->fd_out;
623 tlsp->active.tls_ctx = state;
625 DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
627 tlsp->certificate_verified = state->peer_cert_verified;
629 tlsp->dane_verified = state->peer_dane_verified;
632 /* note that tls_channelbinding is not saved to the spool file, since it's
633 only available for use for authenticators while this TLS session is running. */
635 tlsp->channelbinding = NULL;
636 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
639 if ((rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel)))
640 { DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc)); }
643 /* Declare the taintedness of the binding info. On server, untainted; on
644 client, tainted - being the Finish msg from the server. */
646 old_pool = store_pool;
647 store_pool = POOL_PERM;
648 tlsp->channelbinding = b64encode_taint(CUS channel.data, (int)channel.size,
650 store_pool = old_pool;
651 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage\n");
655 /* peercert is set in peer_status() */
656 tlsp->peerdn = state->peerdn;
658 /* do not corrupt sni sent by client; record sni rxd by server */
660 tlsp->sni = state->received_sni;
662 /* record our certificate */
664 const gnutls_datum_t * cert = gnutls_certificate_get_ours(state->session);
665 gnutls_x509_crt_t crt;
667 tlsp->ourcert = cert && import_cert(cert, &crt)==0 ? crt : NULL;
674 #ifndef GNUTLS_AUTO_DHPARAMS
675 /*************************************************
676 * Setup up DH parameters *
677 *************************************************/
679 /* Generating the D-H parameters may take a long time. They only need to
680 be re-generated every so often, depending on security policy. What we do is to
681 keep these parameters in a file in the spool directory. If the file does not
682 exist, we generate them. This means that it is easy to cause a regeneration.
684 The new file is written as a temporary file and renamed, so that an incomplete
685 file is never present. If two processes both compute some new parameters, you
686 waste a bit of effort, but it doesn't seem worth messing around with locking to
689 Returns: OK/DEFER/FAIL
693 init_server_dh(uschar ** errstr)
696 unsigned int dh_bits;
697 gnutls_datum_t m = {.data = NULL, .size = 0};
698 uschar filename_buf[PATH_MAX];
699 uschar *filename = NULL;
701 uschar *exp_tls_dhparam;
702 BOOL use_file_in_spool = FALSE;
703 host_item *host = NULL; /* dummy for macros */
705 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params\n");
707 if ((rc = gnutls_dh_params_init(&dh_server_params)))
708 return tls_error_gnu(US"gnutls_dh_params_init", rc, host, errstr);
710 if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam, errstr))
713 if (!exp_tls_dhparam)
715 DEBUG(D_tls) debug_printf("Loading default hard-coded DH params\n");
716 m.data = US std_dh_prime_default();
717 m.size = Ustrlen(m.data);
719 else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
720 use_file_in_spool = TRUE;
721 else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
723 DEBUG(D_tls) debug_printf("Requested no DH parameters\n");
726 else if (exp_tls_dhparam[0] != '/')
728 if (!(m.data = US std_dh_prime_named(exp_tls_dhparam)))
729 return tls_error(US"No standard prime named", exp_tls_dhparam, NULL, errstr);
730 m.size = Ustrlen(m.data);
733 filename = exp_tls_dhparam;
737 if ((rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM)))
738 return tls_error_gnu(US"gnutls_dh_params_import_pkcs3", rc, host, errstr);
739 DEBUG(D_tls) debug_printf("Loaded fixed standard D-H parameters\n");
743 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
744 /* If you change this constant, also change dh_param_fn_ext so that we can use a
745 different filename and ensure we have sufficient bits. */
747 if (!(dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL)))
748 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL, errstr);
750 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits\n",
753 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
755 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits\n",
759 /* Some clients have hard-coded limits. */
760 if (dh_bits > tls_dh_max_bits)
763 debug_printf("tls_dh_max_bits clamping override, using %d bits instead\n",
765 dh_bits = tls_dh_max_bits;
768 if (use_file_in_spool)
770 if (!string_format(filename_buf, sizeof(filename_buf),
771 "%s/gnutls-params-%d", spool_directory, dh_bits))
772 return tls_error(US"overlong filename", NULL, NULL, errstr);
773 filename = filename_buf;
776 /* Open the cache file for reading and if successful, read it and set up the
779 if ((fd = Uopen(filename, O_RDONLY, 0)) >= 0)
785 if (fstat(fd, &statbuf) < 0) /* EIO */
789 return tls_error_sys(US"TLS cache stat failed", saved_errno, NULL, errstr);
791 if (!S_ISREG(statbuf.st_mode))
794 return tls_error(US"TLS cache not a file", NULL, NULL, errstr);
796 if (!(fp = fdopen(fd, "rb")))
800 return tls_error_sys(US"fdopen(TLS cache stat fd) failed",
801 saved_errno, NULL, errstr);
804 m.size = statbuf.st_size;
805 if (!(m.data = store_malloc(m.size)))
808 return tls_error_sys(US"malloc failed", errno, NULL, errstr);
810 if (!(sz = fread(m.data, m.size, 1, fp)))
815 return tls_error_sys(US"fread failed", saved_errno, NULL, errstr);
819 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
822 return tls_error_gnu(US"gnutls_dh_params_import_pkcs3", rc, host, errstr);
823 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
826 /* If the file does not exist, fall through to compute new data and cache it.
827 If there was any other opening error, it is serious. */
829 else if (errno == ENOENT)
833 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
836 return tls_error(string_open_failed("\"%s\" for reading", filename),
839 /* If ret < 0, either the cache file does not exist, or the data it contains
840 is not useful. One particular case of this is when upgrading from an older
841 release of Exim in which the data was stored in a different format. We don't
842 try to be clever and support both formats; we just regenerate new data in this
848 unsigned int dh_bits_gen = dh_bits;
850 if ((PATH_MAX - Ustrlen(filename)) < 10)
851 return tls_error(US"Filename too long to generate replacement",
852 filename, NULL, errstr);
854 temp_fn = string_copy(US"%s.XXXXXXX");
855 if ((fd = mkstemp(CS temp_fn)) < 0) /* modifies temp_fn */
856 return tls_error_sys(US"Unable to open temp file", errno, NULL, errstr);
857 (void)exim_chown(temp_fn, exim_uid, exim_gid); /* Probably not necessary */
859 /* GnuTLS overshoots! If we ask for 2236, we might get 2237 or more. But
860 there's no way to ask GnuTLS how many bits there really are. We can ask
861 how many bits were used in a TLS session, but that's it! The prime itself
862 is hidden behind too much abstraction. So we ask for less, and proceed on
863 a wing and a prayer. First attempt, subtracted 3 for 2233 and got 2240. */
865 if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
867 dh_bits_gen = dh_bits - 10;
869 debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
874 debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
876 if ((rc = gnutls_dh_params_generate2(dh_server_params, dh_bits_gen)))
877 return tls_error_gnu(US"gnutls_dh_params_generate2", rc, host, errstr);
879 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
880 and I confirmed that a NULL call to get the size first is how the GnuTLS
881 sample apps handle this. */
885 if ( (rc = gnutls_dh_params_export_pkcs3(dh_server_params,
886 GNUTLS_X509_FMT_PEM, m.data, &sz))
887 && rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
888 return tls_error_gnu(US"gnutls_dh_params_export_pkcs3(NULL) sizing",
891 if (!(m.data = store_malloc(m.size)))
892 return tls_error_sys(US"memory allocation failed", errno, NULL, errstr);
894 /* this will return a size 1 less than the allocation size above */
895 if ((rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
899 return tls_error_gnu(US"gnutls_dh_params_export_pkcs3() real", rc, host, errstr);
901 m.size = sz; /* shrink by 1, probably */
903 if ((sz = write_to_fd_buf(fd, m.data, (size_t) m.size)) != m.size)
906 return tls_error_sys(US"TLS cache write D-H params failed",
907 errno, NULL, errstr);
910 if ((sz = write_to_fd_buf(fd, US"\n", 1)) != 1)
911 return tls_error_sys(US"TLS cache write D-H params final newline failed",
912 errno, NULL, errstr);
914 if ((rc = close(fd)))
915 return tls_error_sys(US"TLS cache write close() failed", errno, NULL, errstr);
917 if (Urename(temp_fn, filename) < 0)
918 return tls_error_sys(string_sprintf("failed to rename \"%s\" as \"%s\"",
919 temp_fn, filename), errno, NULL, errstr);
921 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
924 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
932 /* Create and install a selfsigned certificate, for use in server mode */
935 tls_install_selfsign(exim_gnutls_state_st * state, uschar ** errstr)
937 gnutls_x509_crt_t cert = NULL;
939 gnutls_x509_privkey_t pkey = NULL;
940 const uschar * where;
943 #ifndef SUPPORT_SELFSIGN
944 where = US"library too old";
945 rc = GNUTLS_E_NO_CERTIFICATE_FOUND;
949 where = US"initialising pkey";
950 if ((rc = gnutls_x509_privkey_init(&pkey))) goto err;
952 where = US"initialising cert";
953 if ((rc = gnutls_x509_crt_init(&cert))) goto err;
955 where = US"generating pkey"; /* Hangs on 2.12.23 */
956 if ((rc = gnutls_x509_privkey_generate(pkey, GNUTLS_PK_RSA,
957 #ifdef SUPPORT_PARAM_TO_PK_BITS
958 # ifndef GNUTLS_SEC_PARAM_MEDIUM
959 # define GNUTLS_SEC_PARAM_MEDIUM GNUTLS_SEC_PARAM_HIGH
961 gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_MEDIUM),
968 where = US"configuring cert";
970 if ( (rc = gnutls_x509_crt_set_version(cert, 3))
971 || (rc = gnutls_x509_crt_set_serial(cert, &now, sizeof(now)))
972 || (rc = gnutls_x509_crt_set_activation_time(cert, now = time(NULL)))
973 || (rc = gnutls_x509_crt_set_expiration_time(cert, now + 60 * 60)) /* 1 hr */
974 || (rc = gnutls_x509_crt_set_key(cert, pkey))
976 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
977 GNUTLS_OID_X520_COUNTRY_NAME, 0, "UK", 2))
978 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
979 GNUTLS_OID_X520_ORGANIZATION_NAME, 0, "Exim Developers", 15))
980 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
981 GNUTLS_OID_X520_COMMON_NAME, 0,
982 smtp_active_hostname, Ustrlen(smtp_active_hostname)))
986 where = US"signing cert";
987 if ((rc = gnutls_x509_crt_sign(cert, cert, pkey))) goto err;
989 where = US"installing selfsign cert";
991 if ((rc = gnutls_certificate_set_x509_key(state->lib_state.x509_cred,
998 if (cert) gnutls_x509_crt_deinit(cert);
999 if (pkey) gnutls_x509_privkey_deinit(pkey);
1003 rc = tls_error_gnu(where, rc, NULL, errstr);
1010 /* Add certificate and key, from files.
1013 Zero or negative: good. Negate value for certificate index if < 0.
1014 Greater than zero: FAIL or DEFER code.
1018 tls_add_certfile(exim_gnutls_state_st * state, const host_item * host,
1019 const uschar * certfile, const uschar * keyfile, uschar ** errstr)
1021 int rc = gnutls_certificate_set_x509_key_file(state->lib_state.x509_cred,
1022 CCS certfile, CCS keyfile, GNUTLS_X509_FMT_PEM);
1024 return tls_error_gnu(
1025 string_sprintf("cert/key setup: cert=%s key=%s", certfile, keyfile),
1031 #if !defined(DISABLE_OCSP) && !defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1032 /* Load an OCSP proof from file for sending by the server. Called
1033 on getting a status-request handshake message, for earlier versions
1037 server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
1038 gnutls_datum_t * ocsp_response)
1041 DEBUG(D_tls) debug_printf("OCSP stapling callback: %s\n", US ptr);
1043 if ((ret = gnutls_load_file(ptr, ocsp_response)) < 0)
1045 DEBUG(D_tls) debug_printf("Failed to load ocsp stapling file %s\n",
1047 tls_in.ocsp = OCSP_NOT_RESP;
1048 return GNUTLS_E_NO_CERTIFICATE_STATUS;
1051 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1057 #ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1058 /* Make a note that we saw a status-request */
1060 tls_server_clienthello_ext(void * ctx, unsigned tls_id,
1061 const unsigned char *data, unsigned size)
1063 /* https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1064 if (tls_id == 5) /* status_request */
1066 DEBUG(D_tls) debug_printf("Seen status_request extension from client\n");
1067 tls_in.ocsp = OCSP_NOT_RESP;
1072 /* Callback for client-hello, on server, if we think we might serve stapled-OCSP */
1074 tls_server_clienthello_cb(gnutls_session_t session, unsigned int htype,
1075 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1077 /* Call fn for each extension seen. 3.6.3 onwards */
1078 return gnutls_ext_raw_parse(NULL, tls_server_clienthello_ext, msg,
1079 GNUTLS_EXT_RAW_FLAG_TLS_CLIENT_HELLO);
1083 # ifdef notdef_crashes
1084 /* Make a note that we saw a status-response */
1086 tls_server_servercerts_ext(void * ctx, unsigned tls_id,
1087 const unsigned char *data, unsigned size)
1089 /* debug_printf("%s %u\n", __FUNCTION__, tls_id); */
1090 /* https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1091 if (FALSE && tls_id == 5) /* status_request */
1093 DEBUG(D_tls) debug_printf("Seen status_request extension\n");
1094 tls_in.ocsp = exim_testharness_disable_ocsp_validity_check
1095 ? OCSP_VFY_NOT_TRIED : OCSP_VFIED; /* We know that GnuTLS verifies responses */
1101 /* Callback for certificates packet, on server, if we think we might serve stapled-OCSP */
1103 tls_server_servercerts_cb(gnutls_session_t session, unsigned int htype,
1104 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1106 /* Call fn for each extension seen. 3.6.3 onwards */
1107 # ifdef notdef_crashes
1109 return gnutls_ext_raw_parse(NULL, tls_server_servercerts_ext, msg, 0);
1112 #endif /*SUPPORT_GNUTLS_EXT_RAW_PARSE*/
1114 /*XXX in tls1.3 the cert-status travel as an extension next to the cert, in the
1115 "Handshake Protocol: Certificate" record.
1116 So we need to spot the Certificate handshake message, parse it and spot any status_request extension(s)
1118 This is different to tls1.2 - where it is a separate record (wireshark term) / handshake message (gnutls term).
1121 #if defined(EXIM_HAVE_TLS_RESUME) || defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1122 /* Callback for certificate-status, on server. We sent stapled OCSP. */
1124 tls_server_certstatus_cb(gnutls_session_t session, unsigned int htype,
1125 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
1127 DEBUG(D_tls) debug_printf("Sending certificate-status\n"); /*XXX we get this for tls1.2 but not for 1.3 */
1128 #ifdef SUPPORT_SRV_OCSP_STACK
1129 tls_in.ocsp = exim_testharness_disable_ocsp_validity_check
1130 ? OCSP_VFY_NOT_TRIED : OCSP_VFIED; /* We know that GnuTLS verifies responses */
1132 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1137 /* Callback for handshake messages, on server */
1139 tls_server_hook_cb(gnutls_session_t sess, u_int htype, unsigned when,
1140 unsigned incoming, const gnutls_datum_t * msg)
1142 /* debug_printf("%s: htype %u\n", __FUNCTION__, htype); */
1145 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1146 case GNUTLS_HANDSHAKE_CLIENT_HELLO:
1147 return tls_server_clienthello_cb(sess, htype, when, incoming, msg);
1148 case GNUTLS_HANDSHAKE_CERTIFICATE_PKT:
1149 return tls_server_servercerts_cb(sess, htype, when, incoming, msg);
1151 case GNUTLS_HANDSHAKE_CERTIFICATE_STATUS:
1152 return tls_server_certstatus_cb(sess, htype, when, incoming, msg);
1153 # ifdef EXIM_HAVE_TLS_RESUME
1154 case GNUTLS_HANDSHAKE_NEW_SESSION_TICKET:
1155 return tls_server_ticket_cb(sess, htype, when, incoming, msg);
1164 #if !defined(DISABLE_OCSP) && defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1166 tls_server_testharness_ocsp_fiddle(void)
1168 extern char ** environ;
1169 if (environ) for (uschar ** p = USS environ; *p; p++)
1170 if (Ustrncmp(*p, "EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK", 42) == 0)
1172 DEBUG(D_tls) debug_printf("Permitting known bad OCSP response\n");
1173 exim_testharness_disable_ocsp_validity_check = TRUE;
1178 /**************************************************
1179 * One-time init credentials for server and client *
1180 **************************************************/
1183 creds_basic_init(gnutls_certificate_credentials_t x509_cred, BOOL server)
1185 #ifdef SUPPORT_SRV_OCSP_STACK
1186 gnutls_certificate_set_flags(x509_cred, GNUTLS_CERTIFICATE_API_V2);
1188 # if !defined(DISABLE_OCSP) && defined(SUPPORT_GNUTLS_EXT_RAW_PARSE)
1189 if (server && tls_ocsp_file)
1191 if (f.running_in_test_harness)
1192 tls_server_testharness_ocsp_fiddle();
1194 if (exim_testharness_disable_ocsp_validity_check)
1195 gnutls_certificate_set_flags(x509_cred,
1196 GNUTLS_CERTIFICATE_API_V2 | GNUTLS_CERTIFICATE_SKIP_OCSP_RESPONSE_CHECK);
1201 debug_printf("TLS: basic cred init, %s\n", server ? "server" : "client");
1205 creds_load_server_certs(exim_gnutls_state_st * state, const uschar * cert,
1206 const uschar * pkey, const uschar * ocsp, uschar ** errstr)
1208 const uschar * clist = cert;
1209 const uschar * klist = pkey;
1210 const uschar * olist;
1211 int csep = 0, ksep = 0, osep = 0, cnt = 0, rc;
1212 uschar * cfile, * kfile, * ofile;
1213 #ifndef DISABLE_OCSP
1214 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1215 gnutls_x509_crt_fmt_t ocsp_fmt = GNUTLS_X509_FMT_DER;
1218 if (!expand_check(ocsp, US"tls_ocsp_file", &ofile, errstr))
1223 while (cfile = string_nextinlist(&clist, &csep, NULL, 0))
1225 if (!(kfile = string_nextinlist(&klist, &ksep, NULL, 0)))
1226 return tls_error(US"cert/key setup: out of keys", NULL, NULL, errstr);
1227 else if ((rc = tls_add_certfile(state, NULL, cfile, kfile, errstr)) > 0)
1231 int gnutls_cert_index = -rc;
1232 DEBUG(D_tls) debug_printf("TLS: cert/key %d %s registered\n",
1233 gnutls_cert_index, cfile);
1235 #ifndef DISABLE_OCSP
1238 /* Set the OCSP stapling server info */
1239 if (gnutls_buggy_ocsp)
1242 debug_printf("GnuTLS library is buggy for OCSP; avoiding\n");
1244 else if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
1246 DEBUG(D_tls) debug_printf("OCSP response file %d = %s\n",
1247 gnutls_cert_index, ofile);
1248 # ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1249 if (Ustrncmp(ofile, US"PEM ", 4) == 0)
1251 ocsp_fmt = GNUTLS_X509_FMT_PEM;
1254 else if (Ustrncmp(ofile, US"DER ", 4) == 0)
1256 ocsp_fmt = GNUTLS_X509_FMT_DER;
1260 if ((rc = gnutls_certificate_set_ocsp_status_request_file2(
1261 state->lib_state.x509_cred, CCS ofile, gnutls_cert_index,
1263 return tls_error_gnu(
1264 US"gnutls_certificate_set_ocsp_status_request_file2",
1267 debug_printf(" %d response%s loaded\n", rc, rc>1 ? "s":"");
1269 /* Arrange callbacks for OCSP request observability */
1272 gnutls_handshake_set_hook_function(state->session,
1273 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1275 state->lib_state.ocsp_hook = TRUE;
1279 # if defined(SUPPORT_SRV_OCSP_STACK)
1280 if ((rc = gnutls_certificate_set_ocsp_status_request_function2(
1281 state->lib_state.x509_cred, gnutls_cert_index,
1282 server_ocsp_stapling_cb, ofile)))
1283 return tls_error_gnu(
1284 US"gnutls_certificate_set_ocsp_status_request_function2",
1292 debug_printf("oops; multiple OCSP files not supported\n");
1295 gnutls_certificate_set_ocsp_status_request_function(
1296 state->lib_state.x509_cred, server_ocsp_stapling_cb, ofile);
1298 # endif /* SUPPORT_GNUTLS_EXT_RAW_PARSE */
1301 DEBUG(D_tls) debug_printf("ran out of OCSP response files in list\n");
1303 #endif /* DISABLE_OCSP */
1309 creds_load_client_certs(exim_gnutls_state_st * state, const host_item * host,
1310 const uschar * cert, const uschar * pkey, uschar ** errstr)
1312 int rc = tls_add_certfile(state, host, cert, pkey, errstr);
1313 if (rc > 0) return rc;
1314 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
1319 creds_load_cabundle(exim_gnutls_state_st * state, const uschar * bundle,
1320 const host_item * host, uschar ** errstr)
1323 struct stat statbuf;
1325 #ifdef SUPPORT_SYSDEFAULT_CABUNDLE
1326 if (Ustrcmp(bundle, "system") == 0 || Ustrncmp(bundle, "system,", 7) == 0)
1327 cert_count = gnutls_certificate_set_x509_system_trust(state->lib_state.x509_cred);
1331 if (Ustat(bundle, &statbuf) < 0)
1333 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat '%s' "
1334 "(tls_verify_certificates): %s", bundle, strerror(errno));
1338 #ifndef SUPPORT_CA_DIR
1339 /* The test suite passes in /dev/null; we could check for that path explicitly,
1340 but who knows if someone has some weird FIFO which always dumps some certs, or
1341 other weirdness. The thing we really want to check is that it's not a
1342 directory, since while OpenSSL supports that, GnuTLS does not.
1343 So s/!S_ISREG/S_ISDIR/ and change some messaging ... */
1344 if (S_ISDIR(statbuf.st_mode))
1346 log_write(0, LOG_MAIN|LOG_PANIC,
1347 "tls_verify_certificates \"%s\" is a directory", bundle);
1352 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
1353 bundle, statbuf.st_size);
1355 if (statbuf.st_size == 0)
1358 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
1364 #ifdef SUPPORT_CA_DIR
1365 (statbuf.st_mode & S_IFMT) == S_IFDIR
1367 gnutls_certificate_set_x509_trust_dir(state->lib_state.x509_cred,
1368 CS bundle, GNUTLS_X509_FMT_PEM)
1371 gnutls_certificate_set_x509_trust_file(state->lib_state.x509_cred,
1372 CS bundle, GNUTLS_X509_FMT_PEM);
1374 #ifdef SUPPORT_CA_DIR
1375 /* Mimic the behaviour with OpenSSL of not advertising a usable-cert list
1376 when using the directory-of-certs config model. */
1378 if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
1380 gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1382 state->lib_state.ca_rdn_emulate = TRUE;
1387 return tls_error_gnu(US"setting certificate trust", cert_count, host, errstr);
1389 debug_printf("Added %d certificate authorities\n", cert_count);
1396 creds_load_crl(exim_gnutls_state_st * state, const uschar * crl, uschar ** errstr)
1399 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", crl);
1400 if ((cert_count = gnutls_certificate_set_x509_crl_file(state->lib_state.x509_cred,
1401 CS crl, GNUTLS_X509_FMT_PEM)) < 0)
1402 return tls_error_gnu(US"gnutls_certificate_set_x509_crl_file",
1403 cert_count, state->host, errstr);
1405 DEBUG(D_tls) debug_printf("Processed %d CRLs\n", cert_count);
1411 creds_load_pristring(exim_gnutls_state_st * state, const uschar * p,
1412 const char ** errpos)
1416 p = exim_default_gnutls_priority;
1418 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n", p);
1420 return gnutls_priority_init( (gnutls_priority_t *) &state->lib_state.pri_cache,
1425 tls_server_creds_init(void)
1427 uschar * dummy_errstr;
1429 state_server.lib_state = null_tls_preload;
1430 if (gnutls_certificate_allocate_credentials(
1431 (gnutls_certificate_credentials_t *) &state_server.lib_state.x509_cred))
1433 state_server.lib_state.x509_cred = NULL;
1436 creds_basic_init(state_server.lib_state.x509_cred, TRUE);
1438 #ifdef EXIM_HAVE_INOTIFY
1439 /* If tls_certificate has any $ indicating expansions, it is not good.
1440 If tls_privatekey is set but has $, not good. Likewise for tls_ocsp_file.
1441 If all good (and tls_certificate set), load the cert(s). Do not try
1442 to handle selfsign generation for now (tls_certificate null/empty;
1443 XXX will want to do that later though) due to the lifetime/expiry issue. */
1445 if ( opt_set_and_noexpand(tls_certificate)
1446 # ifndef DISABLE_OCSP
1447 && opt_unset_or_noexpand(tls_ocsp_file)
1449 && opt_unset_or_noexpand(tls_privatekey))
1451 /* Set watches on the filenames. The implementation does de-duplication
1452 so we can just blindly do them all.
1455 if ( tls_set_watch(tls_certificate, TRUE)
1456 # ifndef DISABLE_OCSP
1457 && tls_set_watch(tls_ocsp_file, TRUE)
1459 && tls_set_watch(tls_privatekey, TRUE))
1461 DEBUG(D_tls) debug_printf("TLS: preloading server certs\n");
1462 if (creds_load_server_certs(&state_server, tls_certificate,
1463 tls_privatekey && *tls_privatekey ? tls_privatekey : tls_certificate,
1464 # ifdef DISABLE_OCSP
1469 &dummy_errstr) == 0)
1470 state_server.lib_state.conn_certs = TRUE;
1474 DEBUG(D_tls) debug_printf("TLS: not preloading server certs\n");
1476 /* If tls_verify_certificates is non-empty and has no $, load CAs */
1478 if (opt_set_and_noexpand(tls_verify_certificates))
1480 if (tls_set_watch(tls_verify_certificates, FALSE))
1482 DEBUG(D_tls) debug_printf("TLS: preloading CA bundle for server\n");
1483 if (creds_load_cabundle(&state_server, tls_verify_certificates,
1484 NULL, &dummy_errstr) != OK)
1486 state_server.lib_state.cabundle = TRUE;
1488 /* If CAs loaded and tls_crl is non-empty and has no $, load it */
1490 if (opt_set_and_noexpand(tls_crl))
1492 if (tls_set_watch(tls_crl, FALSE))
1494 DEBUG(D_tls) debug_printf("TLS: preloading CRL for server\n");
1495 if (creds_load_crl(&state_server, tls_crl, &dummy_errstr) != OK)
1497 state_server.lib_state.crl = TRUE;
1501 DEBUG(D_tls) debug_printf("TLS: not preloading CRL for server\n");
1505 DEBUG(D_tls) debug_printf("TLS: not preloading CA bundle for server\n");
1506 #endif /* EXIM_HAVE_INOTIFY */
1508 /* If tls_require_ciphers is non-empty and has no $, load the
1509 ciphers priority cache. If unset, load with the default.
1510 (server-only as the client one depends on non/DANE) */
1512 if (!tls_require_ciphers || opt_set_and_noexpand(tls_require_ciphers))
1514 const char * dummy_errpos;
1515 DEBUG(D_tls) debug_printf("TLS: preloading cipher list for server: %s\n",
1516 tls_require_ciphers);
1517 if ( creds_load_pristring(&state_server, tls_require_ciphers, &dummy_errpos)
1519 state_server.lib_state.pri_string = TRUE;
1522 DEBUG(D_tls) debug_printf("TLS: not preloading cipher list for server\n");
1526 /* Preload whatever creds are static, onto a transport. The client can then
1527 just copy the pointer as it starts up. */
1530 tls_client_creds_init(transport_instance * t, BOOL watch)
1532 smtp_transport_options_block * ob = t->options_block;
1533 exim_gnutls_state_st tpt_dummy_state;
1534 host_item * dummy_host = (host_item *)1;
1535 uschar * dummy_errstr;
1537 if ( !exim_gnutls_base_init_done
1538 && tls_g_init(&dummy_errstr) != OK)
1541 ob->tls_preload = null_tls_preload;
1542 if (gnutls_certificate_allocate_credentials(
1543 (struct gnutls_certificate_credentials_st **)&ob->tls_preload.x509_cred))
1545 ob->tls_preload.x509_cred = NULL;
1548 creds_basic_init(ob->tls_preload.x509_cred, FALSE);
1550 tpt_dummy_state.session = NULL;
1551 tpt_dummy_state.lib_state = ob->tls_preload;
1553 #ifdef EXIM_HAVE_INOTIFY
1554 if ( opt_set_and_noexpand(ob->tls_certificate)
1555 && opt_unset_or_noexpand(ob->tls_privatekey))
1558 || ( tls_set_watch(ob->tls_certificate, FALSE)
1559 && tls_set_watch(ob->tls_privatekey, FALSE)
1562 const uschar * pkey = ob->tls_privatekey;
1565 debug_printf("TLS: preloading client certs for transport '%s'\n", t->name);
1567 /* The state->lib_state.x509_cred is used for the certs load, and is the sole
1568 structure element used. So we can set up a dummy. The hoat arg only
1569 selects a retcode in case of fail, so any value */
1571 if (creds_load_client_certs(&tpt_dummy_state, dummy_host,
1572 ob->tls_certificate, pkey ? pkey : ob->tls_certificate,
1573 &dummy_errstr) == OK)
1574 ob->tls_preload.conn_certs = TRUE;
1579 debug_printf("TLS: not preloading client certs, for transport '%s'\n", t->name);
1581 if (opt_set_and_noexpand(ob->tls_verify_certificates))
1583 if (!watch || tls_set_watch(ob->tls_verify_certificates, FALSE))
1586 debug_printf("TLS: preloading CA bundle for transport '%s'\n", t->name);
1587 if (creds_load_cabundle(&tpt_dummy_state, ob->tls_verify_certificates,
1588 dummy_host, &dummy_errstr) != OK)
1590 ob->tls_preload.cabundle = TRUE;
1592 if (opt_set_and_noexpand(ob->tls_crl))
1594 if (!watch || tls_set_watch(ob->tls_crl, FALSE))
1596 DEBUG(D_tls) debug_printf("TLS: preloading CRL for transport '%s'\n", t->name);
1597 if (creds_load_crl(&tpt_dummy_state, ob->tls_crl, &dummy_errstr) != OK)
1599 ob->tls_preload.crl = TRUE;
1603 DEBUG(D_tls) debug_printf("TLS: not preloading CRL, for transport '%s'\n", t->name);
1608 debug_printf("TLS: not preloading CA bundle, for transport '%s'\n", t->name);
1610 /* We do not preload tls_require_ciphers to to the transport as it implicitly
1611 depends on DANE or plain usage. */
1617 #ifdef EXIM_HAVE_INOTIFY
1618 /* Invalidate the creds cached, by dropping the current ones.
1619 Call when we notice one of the source files has changed. */
1622 tls_server_creds_invalidate(void)
1624 if (state_server.lib_state.pri_cache)
1625 gnutls_priority_deinit(state_server.lib_state.pri_cache);
1626 state_server.lib_state.pri_cache = NULL;
1628 if (state_server.lib_state.x509_cred)
1629 gnutls_certificate_free_credentials(state_server.lib_state.x509_cred);
1630 state_server.lib_state = null_tls_preload;
1635 tls_client_creds_invalidate(transport_instance * t)
1637 smtp_transport_options_block * ob = t->options_block;
1638 if (ob->tls_preload.x509_cred)
1639 gnutls_certificate_free_credentials(ob->tls_preload.x509_cred);
1640 ob->tls_preload = null_tls_preload;
1645 /*************************************************
1646 * Variables re-expanded post-SNI *
1647 *************************************************/
1649 /* Called from both server and client code, via tls_init(), and also from
1650 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
1652 We can tell the two apart by state->received_sni being non-NULL in callback.
1654 The callback should not call us unless state->trigger_sni_changes is true,
1655 which we are responsible for setting on the first pass through.
1658 state exim_gnutls_state_st *
1659 errstr error string pointer
1661 Returns: OK/DEFER/FAIL
1665 tls_expand_session_files(exim_gnutls_state_st * state, uschar ** errstr)
1668 const host_item *host = state->host; /* macro should be reconsidered? */
1669 const uschar *saved_tls_certificate = NULL;
1670 const uschar *saved_tls_privatekey = NULL;
1671 const uschar *saved_tls_verify_certificates = NULL;
1672 const uschar *saved_tls_crl = NULL;
1675 /* We check for tls_sni *before* expansion. */
1676 if (!host) /* server */
1677 if (!state->received_sni)
1679 if ( state->tls_certificate
1680 && ( Ustrstr(state->tls_certificate, US"tls_sni")
1681 || Ustrstr(state->tls_certificate, US"tls_in_sni")
1682 || Ustrstr(state->tls_certificate, US"tls_out_sni")
1685 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI\n");
1686 state->trigger_sni_changes = TRUE;
1689 else /* SNI callback case */
1691 /* useful for debugging */
1692 saved_tls_certificate = state->exp_tls_certificate;
1693 saved_tls_privatekey = state->exp_tls_privatekey;
1694 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
1695 saved_tls_crl = state->exp_tls_crl;
1698 if (!state->lib_state.x509_cred)
1700 if ((rc = gnutls_certificate_allocate_credentials(
1701 (gnutls_certificate_credentials_t *) &state->lib_state.x509_cred)))
1702 return tls_error_gnu(US"gnutls_certificate_allocate_credentials",
1704 creds_basic_init(state->lib_state.x509_cred, !host);
1708 /* remember: Expand_check_tlsvar() is expand_check() but fiddling with
1709 state members, assuming consistent naming; and expand_check() returns
1710 false if expansion failed, unless expansion was forced to fail. */
1712 /* check if we at least have a certificate, before doing expensive
1715 if (!state->lib_state.conn_certs)
1717 if (!Expand_check_tlsvar(tls_certificate, errstr))
1720 /* certificate is mandatory in server, optional in client */
1722 if ( !state->exp_tls_certificate
1723 || !*state->exp_tls_certificate
1726 return tls_install_selfsign(state, errstr);
1728 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
1730 if (state->tls_privatekey && !Expand_check_tlsvar(tls_privatekey, errstr))
1733 /* tls_privatekey is optional, defaulting to same file as certificate */
1735 if (!state->tls_privatekey || !*state->tls_privatekey)
1737 state->tls_privatekey = state->tls_certificate;
1738 state->exp_tls_privatekey = state->exp_tls_certificate;
1741 if (state->exp_tls_certificate && *state->exp_tls_certificate)
1744 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
1745 state->exp_tls_certificate, state->exp_tls_privatekey);
1747 if (state->received_sni)
1748 if ( Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0
1749 && Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0
1752 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
1753 load = FALSE; /* avoid re-loading the same certs */
1755 else /* unload the pre-SNI certs before loading new ones */
1757 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair\n");
1758 gnutls_certificate_free_keys(state->lib_state.x509_cred);
1763 ? creds_load_client_certs(state, host, state->exp_tls_certificate,
1764 state->exp_tls_privatekey, errstr)
1765 : creds_load_server_certs(state, state->exp_tls_certificate,
1766 state->exp_tls_privatekey,
1779 debug_printf("%s certs were preloaded\n", host ? "client" : "server");
1781 if (!state->tls_privatekey) state->tls_privatekey = state->tls_certificate;
1782 state->exp_tls_certificate = US state->tls_certificate;
1783 state->exp_tls_privatekey = US state->tls_privatekey;
1785 #ifdef SUPPORT_GNUTLS_EXT_RAW_PARSE
1786 if (state->lib_state.ocsp_hook)
1787 gnutls_handshake_set_hook_function(state->session,
1788 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1793 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
1794 provided. Experiment shows that, if the certificate file is empty, an unhelpful
1795 error message is provided. However, if we just refrain from setting anything up
1796 in that case, certificate verification fails, which seems to be the correct
1799 if (!state->lib_state.cabundle)
1801 if (state->tls_verify_certificates && *state->tls_verify_certificates)
1803 if (!Expand_check_tlsvar(tls_verify_certificates, errstr))
1805 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1806 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1807 state->exp_tls_verify_certificates = NULL;
1809 if (state->tls_crl && *state->tls_crl)
1810 if (!Expand_check_tlsvar(tls_crl, errstr))
1813 if (!(state->exp_tls_verify_certificates &&
1814 *state->exp_tls_verify_certificates))
1817 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
1818 /* With no tls_verify_certificates, we ignore tls_crl too */
1825 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
1828 rc = creds_load_cabundle(state, state->exp_tls_verify_certificates, host, errstr);
1829 if (rc != OK) return rc;
1834 debug_printf("%s CA bundle was preloaded\n", host ? "client" : "server");
1835 state->exp_tls_verify_certificates = US state->tls_verify_certificates;
1837 #ifdef SUPPORT_CA_DIR
1838 /* Mimic the behaviour with OpenSSL of not advertising a usable-cert list
1839 when using the directory-of-certs config model. */
1840 if (state->lib_state.ca_rdn_emulate)
1841 gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1846 if (!state->lib_state.crl)
1848 if ( state->tls_crl && *state->tls_crl
1849 && state->exp_tls_crl && *state->exp_tls_crl)
1850 return creds_load_crl(state, state->exp_tls_crl, errstr);
1855 debug_printf("%s CRL was preloaded\n", host ? "client" : "server");
1856 state->exp_tls_crl = US state->tls_crl;
1865 /*************************************************
1866 * Set X.509 state variables *
1867 *************************************************/
1869 /* In GnuTLS, the registered cert/key are not replaced by a later
1870 set of a cert/key, so for SNI support we need a whole new x509_cred
1871 structure. Which means various other non-re-expanded pieces of state
1872 need to be re-set in the new struct, so the setting logic is pulled
1876 state exim_gnutls_state_st *
1877 errstr error string pointer
1879 Returns: OK/DEFER/FAIL
1883 tls_set_remaining_x509(exim_gnutls_state_st *state, uschar ** errstr)
1886 const host_item *host = state->host; /* macro should be reconsidered? */
1888 #ifndef GNUTLS_AUTO_DHPARAMS
1889 /* Create D-H parameters, or read them from the cache file. This function does
1890 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
1891 client-side params. */
1895 if (!dh_server_params)
1896 if ((rc = init_server_dh(errstr)) != OK) return rc;
1898 /* Unnecessary & discouraged with 3.6.0 or later */
1899 gnutls_certificate_set_dh_params(state->lib_state.x509_cred, dh_server_params);
1903 /* Link the credentials to the session. */
1905 if ((rc = gnutls_credentials_set(state->session,
1906 GNUTLS_CRD_CERTIFICATE, state->lib_state.x509_cred)))
1907 return tls_error_gnu(US"gnutls_credentials_set", rc, host, errstr);
1912 /*************************************************
1913 * Initialize for GnuTLS *
1914 *************************************************/
1917 /* Called from both server and client code. In the case of a server, errors
1918 before actual TLS negotiation return DEFER.
1921 host connected host, if client; NULL if server
1922 ob tranport options block, if client; NULL if server
1923 require_ciphers tls_require_ciphers setting
1924 caller_state returned state-info structure
1925 errstr error string pointer
1927 Returns: OK/DEFER/FAIL
1932 const host_item *host,
1933 smtp_transport_options_block * ob,
1934 const uschar * require_ciphers,
1935 exim_gnutls_state_st **caller_state,
1939 exim_gnutls_state_st * state;
1943 if ( !exim_gnutls_base_init_done
1944 && (rc = tls_g_init(errstr)) != OK)
1949 /* For client-side sessions we allocate a context. This lets us run
1950 several in parallel. */
1952 int old_pool = store_pool;
1953 store_pool = POOL_PERM;
1954 state = store_get(sizeof(exim_gnutls_state_st), FALSE);
1955 store_pool = old_pool;
1957 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1958 state->lib_state = ob->tls_preload;
1960 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
1961 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
1963 state->tls_certificate = ob->tls_certificate;
1964 state->tls_privatekey = ob->tls_privatekey;
1965 state->tls_sni = ob->tls_sni;
1966 state->tls_verify_certificates = ob->tls_verify_certificates;
1967 state->tls_crl = ob->tls_crl;
1971 /* Server operations always use the one state_server context. It is not
1972 shared because we have forked a fresh process for every receive. However it
1973 can get re-used for successive TLS sessions on a single TCP connection. */
1975 state = &state_server;
1977 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
1978 rc = gnutls_init(&state->session, GNUTLS_SERVER);
1980 state->tls_certificate = tls_certificate;
1981 state->tls_privatekey = tls_privatekey;
1982 state->tls_sni = NULL;
1983 state->tls_verify_certificates = tls_verify_certificates;
1984 state->tls_crl = tls_crl;
1987 return tls_error_gnu(US"gnutls_init", rc, host, errstr);
1989 state->tls_require_ciphers = require_ciphers;
1992 /* This handles the variables that might get re-expanded after TLS SNI;
1993 that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
1996 debug_printf("Expanding various TLS configuration options for session credentials\n");
1997 if ((rc = tls_expand_session_files(state, errstr)) != OK) return rc;
1999 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
2000 requires a new structure afterwards. */
2002 if ((rc = tls_set_remaining_x509(state, errstr)) != OK) return rc;
2004 /* set SNI in client, only */
2007 if (!expand_check(state->tls_sni, US"tls_out_sni", &state->tlsp->sni, errstr))
2009 if (state->tlsp->sni && *state->tlsp->sni)
2012 debug_printf("Setting TLS client SNI to \"%s\"\n", state->tlsp->sni);
2013 sz = Ustrlen(state->tlsp->sni);
2014 if ((rc = gnutls_server_name_set(state->session,
2015 GNUTLS_NAME_DNS, state->tlsp->sni, sz)))
2016 return tls_error_gnu(US"gnutls_server_name_set", rc, host, errstr);
2019 else if (state->tls_sni)
2020 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
2021 "have an SNI set for a server [%s]\n", state->tls_sni);
2023 if (!state->lib_state.pri_string)
2025 const uschar * p = NULL;
2026 const char * errpos;
2028 /* This is the priority string support,
2029 http://www.gnutls.org/manual/html_node/Priority-Strings.html
2030 and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
2031 This was backwards incompatible, but means Exim no longer needs to track
2032 all algorithms and provide string forms for them. */
2034 if (state->tls_require_ciphers && *state->tls_require_ciphers)
2036 if (!Expand_check_tlsvar(tls_require_ciphers, errstr))
2038 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
2040 p = state->exp_tls_require_ciphers;
2041 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n", p);
2045 if ((rc = creds_load_pristring(state, p, &errpos)))
2046 return tls_error_gnu(string_sprintf(
2047 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
2048 p, errpos - CS p, errpos),
2053 DEBUG(D_tls) debug_printf("cipher list preloaded\n");
2054 state->exp_tls_require_ciphers = US state->tls_require_ciphers;
2058 if ((rc = gnutls_priority_set(state->session, state->lib_state.pri_cache)))
2059 return tls_error_gnu(US"gnutls_priority_set", rc, host, errstr);
2061 /* This also sets the server ticket expiration time to the same, and
2062 the STEK rotation time to 3x. */
2064 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
2066 /* Reduce security in favour of increased compatibility, if the admin
2067 decides to make that trade-off. */
2068 if (gnutls_compat_mode)
2070 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
2071 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
2072 gnutls_session_enable_compatibility_mode(state->session);
2074 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
2078 *caller_state = state;
2084 /*************************************************
2085 * Extract peer information *
2086 *************************************************/
2088 static const uschar *
2089 cipher_stdname_kcm(gnutls_kx_algorithm_t kx, gnutls_cipher_algorithm_t cipher,
2090 gnutls_mac_algorithm_t mac)
2093 gnutls_kx_algorithm_t kx_i;
2094 gnutls_cipher_algorithm_t cipher_i;
2095 gnutls_mac_algorithm_t mac_i;
2098 gnutls_cipher_suite_info(i, cs_id, &kx_i, &cipher_i, &mac_i, NULL);
2100 if (kx_i == kx && cipher_i == cipher && mac_i == mac)
2101 return cipher_stdname(cs_id[0], cs_id[1]);
2107 /* Called from both server and client code.
2108 Only this is allowed to set state->peerdn and state->have_set_peerdn
2109 and we use that to detect double-calls.
2111 NOTE: the state blocks last while the TLS connection is up, which is fine
2112 for logging in the server side, but for the client side, we log after teardown
2113 in src/deliver.c. While the session is up, we can twist about states and
2114 repoint tls_* globals, but those variables used for logging or other variable
2115 expansion that happens _after_ delivery need to have a longer life-time.
2117 So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
2118 doing this more than once per generation of a state context. We set them in
2119 the state context, and repoint tls_* to them. After the state goes away, the
2120 tls_* copies of the pointers remain valid and client delivery logging is happy.
2122 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
2126 state exim_gnutls_state_st *
2127 errstr pointer to error string
2129 Returns: OK/DEFER/FAIL
2133 peer_status(exim_gnutls_state_st * state, uschar ** errstr)
2135 gnutls_session_t session = state->session;
2136 const gnutls_datum_t * cert_list;
2138 unsigned int cert_list_size = 0;
2139 gnutls_protocol_t protocol;
2140 gnutls_cipher_algorithm_t cipher;
2141 gnutls_kx_algorithm_t kx;
2142 gnutls_mac_algorithm_t mac;
2143 gnutls_certificate_type_t ct;
2144 gnutls_x509_crt_t crt;
2148 if (state->have_set_peerdn)
2150 state->have_set_peerdn = TRUE;
2152 state->peerdn = NULL;
2155 cipher = gnutls_cipher_get(session);
2156 protocol = gnutls_protocol_get_version(session);
2157 mac = gnutls_mac_get(session);
2159 #ifdef GNUTLS_TLS1_3
2160 protocol >= GNUTLS_TLS1_3 ? 0 :
2162 gnutls_kx_get(session);
2164 old_pool = store_pool;
2166 tls_support * tlsp = state->tlsp;
2167 store_pool = POOL_PERM;
2169 #ifdef SUPPORT_GNUTLS_SESS_DESC
2172 uschar * s = US gnutls_session_get_desc(session), c;
2174 /* Nikos M suggests we use this by preference. It returns like:
2175 (TLS1.3)-(ECDHE-SECP256R1)-(RSA-PSS-RSAE-SHA256)-(AES-256-GCM)
2177 For partial back-compat, put a colon after the TLS version, replace the
2178 )-( grouping with __, replace in-group - with _ and append the :keysize. */
2180 /* debug_printf("peer_status: gnutls_session_get_desc %s\n", s); */
2182 for (s++; (c = *s) && c != ')'; s++) g = string_catn(g, s, 1);
2184 tlsp->ver = string_copyn(g->s, g->ptr);
2185 for (uschar * p = US tlsp->ver; *p; p++)
2186 if (*p == '-') { *p = '\0'; break; } /* TLS1.0-PKIX -> TLS1.0 */
2188 g = string_catn(g, US":", 1);
2189 if (*s) s++; /* now on _ between groups */
2192 for (*++s && ++s; (c = *s) && c != ')'; s++)
2193 g = string_catn(g, c == '-' ? US"_" : s, 1);
2194 /* now on ) closing group */
2195 if ((c = *s) && *++s == '-') g = string_catn(g, US"__", 2);
2196 /* now on _ between groups */
2198 g = string_catn(g, US":", 1);
2199 g = string_cat(g, string_sprintf("%d", (int) gnutls_cipher_get_key_size(cipher) * 8));
2200 state->ciphersuite = string_from_gstring(g);
2203 state->ciphersuite = string_sprintf("%s:%s:%d",
2204 gnutls_protocol_get_name(protocol),
2205 gnutls_cipher_suite_get_name(kx, cipher, mac),
2206 (int) gnutls_cipher_get_key_size(cipher) * 8);
2208 /* I don't see a way that spaces could occur, in the current GnuTLS
2209 code base, but it was a concern in the old code and perhaps older GnuTLS
2210 releases did return "TLS 1.0"; play it safe, just in case. */
2212 for (uschar * p = state->ciphersuite; *p; p++) if (isspace(*p)) *p = '-';
2213 tlsp->ver = string_copyn(state->ciphersuite,
2214 Ustrchr(state->ciphersuite, ':') - state->ciphersuite);
2217 /* debug_printf("peer_status: ciphersuite %s\n", state->ciphersuite); */
2219 tlsp->cipher = state->ciphersuite;
2220 tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
2222 tlsp->cipher_stdname = cipher_stdname_kcm(kx, cipher, mac);
2224 store_pool = old_pool;
2227 cert_list = gnutls_certificate_get_peers(session, &cert_list_size);
2229 if (!cert_list || cert_list_size == 0)
2231 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
2232 cert_list, cert_list_size);
2233 if (state->verify_requirement >= VERIFY_REQUIRED)
2234 return tls_error(US"certificate verification failed",
2235 US"no certificate received from peer", state->host, errstr);
2239 if ((ct = gnutls_certificate_type_get(session)) != GNUTLS_CRT_X509)
2241 const uschar * ctn = US gnutls_certificate_type_get_name(ct);
2243 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
2244 if (state->verify_requirement >= VERIFY_REQUIRED)
2245 return tls_error(US"certificate verification not possible, unhandled type",
2246 ctn, state->host, errstr);
2250 #define exim_gnutls_peer_err(Label) \
2252 if (rc != GNUTLS_E_SUCCESS) \
2254 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", \
2255 (Label), gnutls_strerror(rc)); \
2256 if (state->verify_requirement >= VERIFY_REQUIRED) \
2257 return tls_error_gnu((Label), rc, state->host, errstr); \
2262 rc = import_cert(&cert_list[0], &crt);
2263 exim_gnutls_peer_err(US"cert 0");
2265 state->tlsp->peercert = state->peercert = crt;
2268 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
2269 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
2271 exim_gnutls_peer_err(US"getting size for cert DN failed");
2272 return FAIL; /* should not happen */
2274 dn_buf = store_get_perm(sz, TRUE); /* tainted */
2275 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
2276 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
2278 state->peerdn = dn_buf;
2281 #undef exim_gnutls_peer_err
2287 /*************************************************
2288 * Verify peer certificate *
2289 *************************************************/
2291 /* Called from both server and client code.
2292 *Should* be using a callback registered with
2293 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
2294 the peer information, but that's too new for some OSes.
2297 state exim_gnutls_state_st *
2298 errstr where to put an error message
2301 FALSE if the session should be rejected
2302 TRUE if the cert is okay or we just don't care
2306 verify_certificate(exim_gnutls_state_st * state, uschar ** errstr)
2311 DEBUG(D_tls) debug_printf("TLS: checking peer certificate\n");
2313 rc = peer_status(state, errstr);
2315 if (state->verify_requirement == VERIFY_NONE)
2318 if (rc != OK || !state->peerdn)
2320 verify = GNUTLS_CERT_INVALID;
2321 *errstr = US"certificate not supplied";
2327 if (state->verify_requirement == VERIFY_DANE && state->host)
2329 /* Using dane_verify_session_crt() would be easy, as it does it all for us
2330 including talking to a DNS resolver. But we want to do that bit ourselves
2331 as the testsuite intercepts and fakes its own DNS environment. */
2336 const gnutls_datum_t * certlist =
2337 gnutls_certificate_get_peers(state->session, &lsize);
2338 int usage = tls_out.tlsa_usage;
2340 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2341 /* Split the TLSA records into two sets, TA and EE selectors. Run the
2342 dane-verification separately so that we know which selector verified;
2343 then we know whether to do name-verification (needed for TA but not EE). */
2345 if (usage == ((1<<DANESSL_USAGE_DANE_TA) | (1<<DANESSL_USAGE_DANE_EE)))
2346 { /* a mixed-usage bundle */
2351 for (nrec = 0; state->dane_data_len[nrec]; ) nrec++;
2354 dd = store_get(nrec * sizeof(uschar *), FALSE);
2355 ddl = store_get(nrec * sizeof(int), FALSE);
2358 if ((rc = dane_state_init(&s, 0)))
2361 for (usage = DANESSL_USAGE_DANE_EE;
2362 usage >= DANESSL_USAGE_DANE_TA; usage--)
2363 { /* take records with this usage */
2364 for (j = i = 0; i < nrec; i++)
2365 if (state->dane_data[i][0] == usage)
2367 dd[j] = state->dane_data[i];
2368 ddl[j++] = state->dane_data_len[i];
2375 if ((rc = dane_raw_tlsa(s, &r, (char * const *)dd, ddl, 1, 0)))
2378 if ((rc = dane_verify_crt_raw(s, certlist, lsize,
2379 gnutls_certificate_type_get(state->session),
2381 usage == DANESSL_USAGE_DANE_EE
2382 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
2386 debug_printf("TLSA record problem: %s\n", dane_strerror(rc));
2388 else if (verify == 0) /* verification passed */
2396 if (rc) goto tlsa_prob;
2401 if ( (rc = dane_state_init(&s, 0))
2402 || (rc = dane_raw_tlsa(s, &r, state->dane_data, state->dane_data_len,
2404 || (rc = dane_verify_crt_raw(s, certlist, lsize,
2405 gnutls_certificate_type_get(state->session),
2407 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2408 usage == (1 << DANESSL_USAGE_DANE_EE)
2409 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
2418 if (verify != 0) /* verification failed */
2421 (void) dane_verification_status_print(verify, &str, 0);
2422 *errstr = US str.data; /* don't bother to free */
2426 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2427 /* If a TA-mode TLSA record was used for verification we must additionally
2428 verify the cert name (but not the CA chain). For EE-mode, skip it. */
2430 if (usage & (1 << DANESSL_USAGE_DANE_EE))
2433 state->peer_dane_verified = state->peer_cert_verified = TRUE;
2436 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
2437 /* Assume that the name on the A-record is the one that should be matching
2438 the cert. An alternate view is that the domain part of the email address
2439 is also permissible. */
2441 if (gnutls_x509_crt_check_hostname(state->tlsp->peercert,
2442 CS state->host->name))
2444 state->peer_dane_verified = state->peer_cert_verified = TRUE;
2449 #endif /*SUPPORT_DANE*/
2451 rc = gnutls_certificate_verify_peers2(state->session, &verify);
2454 /* Handle the result of verification. INVALID is set if any others are. */
2456 if (rc < 0 || verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED))
2458 state->peer_cert_verified = FALSE;
2461 #ifdef GNUTLS_CERT_VFY_STATUS_PRINT
2466 if (gnutls_certificate_verification_status_print(verify,
2467 gnutls_certificate_type_get(state->session), &txt, 0)
2468 == GNUTLS_E_SUCCESS)
2470 debug_printf("%s\n", txt.data);
2471 gnutls_free(txt.data);
2475 *errstr = verify & GNUTLS_CERT_REVOKED
2476 ? US"certificate revoked" : US"certificate invalid";
2480 debug_printf("TLS certificate verification failed (%s): peerdn=\"%s\"\n",
2481 *errstr, state->peerdn ? state->peerdn : US"<unset>");
2483 if (state->verify_requirement >= VERIFY_REQUIRED)
2486 debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
2491 /* Client side, check the server's certificate name versus the name on the
2492 A-record for the connection we made. What to do for server side - what name
2493 to use for client? We document that there is no such checking for server
2496 if ( state->exp_tls_verify_cert_hostnames
2497 && !gnutls_x509_crt_check_hostname(state->tlsp->peercert,
2498 CS state->exp_tls_verify_cert_hostnames)
2502 debug_printf("TLS certificate verification failed: cert name mismatch\n");
2503 if (state->verify_requirement >= VERIFY_REQUIRED)
2508 state->peer_cert_verified = TRUE;
2509 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=\"%s\"\n",
2510 state->peerdn ? state->peerdn : US"<unset>");
2514 state->tlsp->peerdn = state->peerdn;
2519 *errstr = string_sprintf("TLSA record problem: %s",
2520 rc == DANE_E_REQUESTED_DATA_NOT_AVAILABLE ? "none usable" : dane_strerror(rc));
2524 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
2531 /* ------------------------------------------------------------------------ */
2534 /* Logging function which can be registered with
2535 * gnutls_global_set_log_function()
2536 * gnutls_global_set_log_level() 0..9
2538 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
2540 exim_gnutls_logger_cb(int level, const char *message)
2542 size_t len = strlen(message);
2545 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
2548 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
2549 message[len-1] == '\n' ? "" : "\n");
2554 /* Called after client hello, should handle SNI work.
2555 This will always set tls_sni (state->received_sni) if available,
2556 and may trigger presenting different certificates,
2557 if state->trigger_sni_changes is TRUE.
2559 Should be registered with
2560 gnutls_handshake_set_post_client_hello_function()
2562 "This callback must return 0 on success or a gnutls error code to terminate the
2565 For inability to get SNI information, we return 0.
2566 We only return non-zero if re-setup failed.
2567 Only used for server-side TLS.
2571 exim_sni_handling_cb(gnutls_session_t session)
2573 char sni_name[MAX_HOST_LEN];
2574 size_t data_len = MAX_HOST_LEN;
2575 exim_gnutls_state_st *state = &state_server;
2576 unsigned int sni_type;
2578 uschar * dummy_errstr;
2580 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
2581 if (rc != GNUTLS_E_SUCCESS)
2584 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
2585 debug_printf("TLS: no SNI presented in handshake\n");
2587 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
2588 gnutls_strerror(rc), rc);
2592 if (sni_type != GNUTLS_NAME_DNS)
2594 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
2598 /* We now have a UTF-8 string in sni_name */
2599 old_pool = store_pool;
2600 store_pool = POOL_PERM;
2601 state->received_sni = string_copy_taint(US sni_name, TRUE);
2602 store_pool = old_pool;
2604 /* We set this one now so that variable expansions below will work */
2605 state->tlsp->sni = state->received_sni;
2607 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
2608 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
2610 if (!state->trigger_sni_changes)
2613 if ((rc = tls_expand_session_files(state, &dummy_errstr)) != OK)
2615 /* If the setup of certs/etc failed before handshake, TLS would not have
2616 been offered. The best we can do now is abort. */
2617 return GNUTLS_E_APPLICATION_ERROR_MIN;
2620 rc = tls_set_remaining_x509(state, &dummy_errstr);
2621 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
2628 #ifndef DISABLE_EVENT
2630 We use this callback to get observability and detail-level control
2631 for an exim TLS connection (either direction), raising a tls:cert event
2632 for each cert in the chain presented by the peer. Any event
2633 can deny verification.
2635 Return 0 for the handshake to continue or non-zero to terminate.
2639 verify_cb(gnutls_session_t session)
2641 const gnutls_datum_t * cert_list;
2642 unsigned int cert_list_size = 0;
2643 gnutls_x509_crt_t crt;
2646 exim_gnutls_state_st * state = gnutls_session_get_ptr(session);
2648 if ((cert_list = gnutls_certificate_get_peers(session, &cert_list_size)))
2649 while (cert_list_size--)
2651 if ((rc = import_cert(&cert_list[cert_list_size], &crt)) != GNUTLS_E_SUCCESS)
2653 DEBUG(D_tls) debug_printf("TLS: peer cert problem: depth %d: %s\n",
2654 cert_list_size, gnutls_strerror(rc));
2658 state->tlsp->peercert = crt;
2659 if ((yield = event_raise(state->event_action,
2660 US"tls:cert", string_sprintf("%d", cert_list_size))))
2662 log_write(0, LOG_MAIN,
2663 "SSL verify denied by event-action: depth=%d: %s",
2664 cert_list_size, yield);
2665 return 1; /* reject */
2667 state->tlsp->peercert = NULL;
2677 ddump(gnutls_datum_t * d)
2679 gstring * g = string_get((d->size+1) * 2);
2680 uschar * s = d->data;
2681 for (unsigned i = d->size; i > 0; i--, s++)
2683 g = string_catn(g, US "0123456789abcdef" + (*s >> 4), 1);
2684 g = string_catn(g, US "0123456789abcdef" + (*s & 0xf), 1);
2690 post_handshake_debug(exim_gnutls_state_st * state)
2692 #ifdef SUPPORT_GNUTLS_SESS_DESC
2693 debug_printf("%s\n", gnutls_session_get_desc(state->session));
2696 #ifdef SUPPORT_GNUTLS_KEYLOG
2697 # ifdef EXIM_HAVE_TLS1_3
2698 if (gnutls_protocol_get_version(state->session) < GNUTLS_TLS1_3)
2703 gnutls_datum_t c, s;
2705 /* For TLS1.2 we only want the client random and the master secret */
2706 gnutls_session_get_random(state->session, &c, &s);
2707 gnutls_session_get_master_secret(state->session, &s);
2710 debug_printf("CLIENT_RANDOM %.*s %.*s\n", (int)gc->ptr, gc->s, (int)gs->ptr, gs->s);
2713 debug_printf("To get keying info for TLS1.3 is hard:\n"
2714 " Set environment variable SSLKEYLOGFILE to a filename relative to the spool directory,\n"
2715 " and make sure it is writable by the Exim runtime user.\n"
2716 " Add SSLKEYLOGFILE to keep_environment in the exim config.\n"
2717 " Start Exim as root.\n"
2718 " If using sudo, add SSLKEYLOGFILE to env_keep in /etc/sudoers\n"
2719 " (works for TLS1.2 also, and saves cut-paste into file).\n"
2720 " Trying to use add_environment for this will not work\n");
2725 #ifdef EXIM_HAVE_TLS_RESUME
2727 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2728 unsigned incoming, const gnutls_datum_t * msg)
2730 DEBUG(D_tls) debug_printf("newticket cb\n");
2731 tls_in.resumption |= RESUME_CLIENT_REQUESTED;
2736 tls_server_resume_prehandshake(exim_gnutls_state_st * state)
2738 /* Should the server offer session resumption? */
2739 tls_in.resumption = RESUME_SUPPORTED;
2740 if (verify_check_host(&tls_resumption_hosts) == OK)
2743 /* GnuTLS appears to not do ticket overlap, but does emit a fresh ticket when
2744 an offered resumption is unacceptable. We lose one resumption per ticket
2745 lifetime, and sessions cannot be indefinitely re-used. There seems to be no
2746 way (3.6.7) of changing the default number of 2 TLS1.3 tickets issued, but at
2747 least they go out in a single packet. */
2749 if (!(rc = gnutls_session_ticket_enable_server(state->session,
2750 &server_sessticket_key)))
2751 tls_in.resumption |= RESUME_SERVER_TICKET;
2754 debug_printf("enabling session tickets: %s\n", US gnutls_strerror(rc));
2756 /* Try to tell if we see a ticket request */
2757 gnutls_handshake_set_hook_function(state->session,
2758 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
2763 tls_server_resume_posthandshake(exim_gnutls_state_st * state)
2765 if (gnutls_session_resumption_requested(state->session))
2767 /* This tells us the client sent a full ticket. We use a
2768 callback on session-ticket request, elsewhere, to tell
2769 if a client asked for a ticket. */
2771 tls_in.resumption |= RESUME_CLIENT_SUGGESTED;
2772 DEBUG(D_tls) debug_printf("client requested resumption\n");
2774 if (gnutls_session_is_resumed(state->session))
2776 tls_in.resumption |= RESUME_USED;
2777 DEBUG(D_tls) debug_printf("Session resumed\n");
2781 /* ------------------------------------------------------------------------ */
2782 /* Exported functions */
2787 /*************************************************
2788 * Start a TLS session in a server *
2789 *************************************************/
2791 /* This is called when Exim is running as a server, after having received
2792 the STARTTLS command. It must respond to that command, and then negotiate
2796 errstr pointer to error string
2798 Returns: OK on success
2799 DEFER for errors before the start of the negotiation
2800 FAIL for errors during the negotiation; the server can't
2805 tls_server_start(uschar ** errstr)
2808 exim_gnutls_state_st * state = NULL;
2810 /* Check for previous activation */
2811 if (tls_in.active.sock >= 0)
2813 tls_error(US"STARTTLS received after TLS started", US "", NULL, errstr);
2814 smtp_printf("554 Already in TLS\r\n", FALSE);
2818 /* Initialize the library. If it fails, it will already have logged the error
2819 and sent an SMTP response. */
2821 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
2824 #ifdef MEASURE_TIMING
2826 gettimeofday(&t0, NULL);
2829 if ((rc = tls_init(NULL, NULL,
2830 tls_require_ciphers, &state, &tls_in, errstr)) != OK) return rc;
2832 #ifdef MEASURE_TIMING
2833 report_time_since(&t0, US"server tls_init (delta)");
2837 #ifdef EXIM_HAVE_TLS_RESUME
2838 tls_server_resume_prehandshake(state);
2841 /* If this is a host for which certificate verification is mandatory or
2842 optional, set up appropriately. */
2844 if (verify_check_host(&tls_verify_hosts) == OK)
2847 debug_printf("TLS: a client certificate will be required\n");
2848 state->verify_requirement = VERIFY_REQUIRED;
2849 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2851 else if (verify_check_host(&tls_try_verify_hosts) == OK)
2854 debug_printf("TLS: a client certificate will be requested but not required\n");
2855 state->verify_requirement = VERIFY_OPTIONAL;
2856 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2861 debug_printf("TLS: a client certificate will not be requested\n");
2862 state->verify_requirement = VERIFY_NONE;
2863 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2866 #ifndef DISABLE_EVENT
2869 state->event_action = event_action;
2870 gnutls_session_set_ptr(state->session, state);
2871 gnutls_certificate_set_verify_function(state->lib_state.x509_cred, verify_cb);
2875 /* Register SNI handling; always, even if not in tls_certificate, so that the
2876 expansion variable $tls_sni is always available. */
2878 gnutls_handshake_set_post_client_hello_function(state->session,
2879 exim_sni_handling_cb);
2881 /* Set context and tell client to go ahead, except in the case of TLS startup
2882 on connection, where outputting anything now upsets the clients and tends to
2883 make them disconnect. We need to have an explicit fflush() here, to force out
2884 the response. Other smtp_printf() calls do not need it, because in non-TLS
2885 mode, the fflush() happens when smtp_getc() is called. */
2887 if (!state->tlsp->on_connect)
2889 smtp_printf("220 TLS go ahead\r\n", FALSE);
2893 /* Now negotiate the TLS session. We put our own timer on it, since it seems
2894 that the GnuTLS library doesn't.
2895 From 3.1.0 there is gnutls_handshake_set_timeout() - but it requires you
2896 to set (and clear down afterwards) up a pull-timeout callback function that does
2897 a select, so we're no better off unless avoiding signals becomes an issue. */
2899 gnutls_transport_set_ptr2(state->session,
2900 (gnutls_transport_ptr_t)(long) fileno(smtp_in),
2901 (gnutls_transport_ptr_t)(long) fileno(smtp_out));
2902 state->fd_in = fileno(smtp_in);
2903 state->fd_out = fileno(smtp_out);
2905 sigalrm_seen = FALSE;
2906 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2908 rc = gnutls_handshake(state->session);
2909 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2912 if (rc != GNUTLS_E_SUCCESS)
2914 /* It seems that, except in the case of a timeout, we have to close the
2915 connection right here; otherwise if the other end is running OpenSSL it hangs
2916 until the server times out. */
2920 tls_error(US"gnutls_handshake", US"timed out", NULL, errstr);
2921 gnutls_db_remove_session(state->session);
2925 tls_error_gnu(US"gnutls_handshake", rc, NULL, errstr);
2926 (void) gnutls_alert_send_appropriate(state->session, rc);
2927 gnutls_deinit(state->session);
2928 gnutls_certificate_free_credentials(state->lib_state.x509_cred);
2929 state->lib_state = null_tls_preload;
2931 shutdown(state->fd_out, SHUT_WR);
2932 for (int i = 1024; fgetc(smtp_in) != EOF && i > 0; ) i--; /* drain skt */
2933 (void)fclose(smtp_out);
2934 (void)fclose(smtp_in);
2935 smtp_out = smtp_in = NULL;
2941 #ifdef GNUTLS_SFLAGS_EXT_MASTER_SECRET
2942 if (gnutls_session_get_flags(state->session) & GNUTLS_SFLAGS_EXT_MASTER_SECRET)
2943 tls_in.ext_master_secret = TRUE;
2946 #ifdef EXIM_HAVE_TLS_RESUME
2947 tls_server_resume_posthandshake(state);
2950 DEBUG(D_tls) post_handshake_debug(state);
2952 /* Verify after the fact */
2954 if (!verify_certificate(state, errstr))
2956 if (state->verify_requirement != VERIFY_OPTIONAL)
2958 (void) tls_error(US"certificate verification failed", *errstr, NULL, errstr);
2962 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
2966 /* Sets various Exim expansion variables; always safe within server */
2968 extract_exim_vars_from_tls_state(state);
2970 /* TLS has been set up. Adjust the input functions to read via TLS,
2971 and initialize appropriately. */
2973 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
2975 receive_getc = tls_getc;
2976 receive_getbuf = tls_getbuf;
2977 receive_get_cache = tls_get_cache;
2978 receive_ungetc = tls_ungetc;
2979 receive_feof = tls_feof;
2980 receive_ferror = tls_ferror;
2981 receive_smtp_buffered = tls_smtp_buffered;
2990 tls_client_setup_hostname_checks(host_item * host, exim_gnutls_state_st * state,
2991 smtp_transport_options_block * ob)
2993 if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
2995 state->exp_tls_verify_cert_hostnames =
2997 string_domain_utf8_to_alabel(host->certname, NULL);
3002 debug_printf("TLS: server cert verification includes hostname: \"%s\"\n",
3003 state->exp_tls_verify_cert_hostnames);
3011 /* Given our list of RRs from the TLSA lookup, build a lookup block in
3012 GnuTLS-DANE's preferred format. Hang it on the state str for later
3013 use in DANE verification.
3015 We point at the dnsa data not copy it, so it must remain valid until
3016 after verification is done.*/
3019 dane_tlsa_load(exim_gnutls_state_st * state, dns_answer * dnsa)
3023 const char ** dane_data;
3024 int * dane_data_len;
3027 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
3028 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
3029 ) if (rr->type == T_TLSA) i++;
3031 dane_data = store_get(i * sizeof(uschar *), FALSE);
3032 dane_data_len = store_get(i * sizeof(int), FALSE);
3035 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
3036 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
3037 ) if (rr->type == T_TLSA && rr->size > 3)
3039 const uschar * p = rr->data;
3040 /*XXX need somehow to mark rr and its data as tainted. Doues this mean copying it? */
3041 uint8_t usage = p[0], sel = p[1], type = p[2];
3044 debug_printf("TLSA: %d %d %d size %d\n", usage, sel, type, rr->size);
3046 if ( (usage != DANESSL_USAGE_DANE_TA && usage != DANESSL_USAGE_DANE_EE)
3047 || (sel != 0 && sel != 1)
3052 case 0: /* Full: cannot check at present */
3054 case 1: if (rr->size != 3 + 256/8) continue; /* sha2-256 */
3056 case 2: if (rr->size != 3 + 512/8) continue; /* sha2-512 */
3061 tls_out.tlsa_usage |= 1<<usage;
3062 dane_data[i] = CS p;
3063 dane_data_len[i++] = rr->size;
3066 if (!i) return FALSE;
3068 dane_data[i] = NULL;
3069 dane_data_len[i] = 0;
3071 state->dane_data = (char * const *)dane_data;
3072 state->dane_data_len = dane_data_len;
3079 #ifdef EXIM_HAVE_TLS_RESUME
3080 /* On the client, get any stashed session for the given IP from hints db
3081 and apply it to the ssl-connection for attempted resumption. Although
3082 there is a gnutls_session_ticket_enable_client() interface it is
3083 documented as unnecessary (as of 3.6.7) as "session tickets are emabled
3084 by deafult". There seems to be no way to disable them, so even hosts not
3085 enabled by the transport option will be sent a ticket request. We will
3086 however avoid storing and retrieving session information. */
3089 tls_retrieve_session(tls_support * tlsp, gnutls_session_t session,
3090 host_item * host, smtp_transport_options_block * ob)
3092 tlsp->resumption = RESUME_SUPPORTED;
3093 if (verify_check_given_host(CUSS &ob->tls_resumption_hosts, host) == OK)
3095 dbdata_tls_session * dt;
3097 open_db dbblock, * dbm_file;
3100 debug_printf("check for resumable session for %s\n", host->address);
3101 tlsp->host_resumable = TRUE;
3102 tlsp->resumption |= RESUME_CLIENT_REQUESTED;
3103 if ((dbm_file = dbfn_open(US"tls", O_RDONLY, &dbblock, FALSE, FALSE)))
3105 /* Key for the db is the IP. We'd like to filter the retrieved session
3106 for ticket advisory expiry, but 3.6.1 seems to give no access to that */
3108 if ((dt = dbfn_read_with_length(dbm_file, host->address, &len)))
3109 if (!(rc = gnutls_session_set_data(session,
3110 CUS dt->session, (size_t)len - sizeof(dbdata_tls_session))))
3112 DEBUG(D_tls) debug_printf("good session\n");
3113 tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
3115 else DEBUG(D_tls) debug_printf("setting session resumption data: %s\n",
3116 US gnutls_strerror(rc));
3117 dbfn_close(dbm_file);
3124 tls_save_session(tls_support * tlsp, gnutls_session_t session, const host_item * host)
3126 /* TLS 1.2 - we get both the callback and the direct posthandshake call,
3127 but this flag is not set until the second. TLS 1.3 it's the other way about.
3128 Keep both calls as the session data cannot be extracted before handshake
3131 if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
3136 DEBUG(D_tls) debug_printf("server offered session ticket\n");
3137 tlsp->ticket_received = TRUE;
3138 tlsp->resumption |= RESUME_SERVER_TICKET;
3140 if (tlsp->host_resumable)
3141 if (!(rc = gnutls_session_get_data2(session, &tkt)))
3143 open_db dbblock, * dbm_file;
3144 int dlen = sizeof(dbdata_tls_session) + tkt.size;
3145 dbdata_tls_session * dt = store_get(dlen, TRUE);
3147 DEBUG(D_tls) debug_printf("session data size %u\n", (unsigned)tkt.size);
3148 memcpy(dt->session, tkt.data, tkt.size);
3149 gnutls_free(tkt.data);
3151 if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
3153 /* key for the db is the IP */
3154 dbfn_delete(dbm_file, host->address);
3155 dbfn_write(dbm_file, host->address, dt, dlen);
3156 dbfn_close(dbm_file);
3159 debug_printf("wrote session db (len %u)\n", (unsigned)dlen);
3163 debug_printf("extract session data: %s\n", US gnutls_strerror(rc));
3168 /* With a TLS1.3 session, the ticket(s) are not seen until
3169 the first data read is attempted. And there's often two of them.
3170 Pick them up with this callback. We are also called for 1.2
3174 tls_client_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
3175 unsigned incoming, const gnutls_datum_t * msg)
3177 exim_gnutls_state_st * state = gnutls_session_get_ptr(sess);
3178 tls_support * tlsp = state->tlsp;
3180 DEBUG(D_tls) debug_printf("newticket cb\n");
3182 if (!tlsp->ticket_received)
3183 tls_save_session(tlsp, sess, state->host);
3189 tls_client_resume_prehandshake(exim_gnutls_state_st * state,
3190 tls_support * tlsp, host_item * host,
3191 smtp_transport_options_block * ob)
3193 gnutls_session_set_ptr(state->session, state);
3194 gnutls_handshake_set_hook_function(state->session,
3195 GNUTLS_HANDSHAKE_NEW_SESSION_TICKET, GNUTLS_HOOK_POST, tls_client_ticket_cb);
3197 tls_retrieve_session(tlsp, state->session, host, ob);
3201 tls_client_resume_posthandshake(exim_gnutls_state_st * state,
3202 tls_support * tlsp, host_item * host)
3204 if (gnutls_session_is_resumed(state->session))
3206 DEBUG(D_tls) debug_printf("Session resumed\n");
3207 tlsp->resumption |= RESUME_USED;
3210 tls_save_session(tlsp, state->session, host);
3212 #endif /* !DISABLE_TLS_RESUME */
3215 /*************************************************
3216 * Start a TLS session in a client *
3217 *************************************************/
3219 /* Called from the smtp transport after STARTTLS has been accepted.
3222 cctx connection context
3223 conn_args connection details
3224 cookie datum for randomness (not used)
3225 tlsp record details of channel configuration here; must be non-NULL
3226 errstr error string pointer
3228 Returns: TRUE for success with TLS session context set in smtp context,
3233 tls_client_start(client_conn_ctx * cctx, smtp_connect_args * conn_args,
3234 void * cookie ARG_UNUSED,
3235 tls_support * tlsp, uschar ** errstr)
3237 host_item * host = conn_args->host; /* for msgs and option-tests */
3238 transport_instance * tb = conn_args->tblock; /* always smtp or NULL */
3239 smtp_transport_options_block * ob = tb
3240 ? (smtp_transport_options_block *)tb->options_block
3241 : &smtp_transport_option_defaults;
3243 exim_gnutls_state_st * state = NULL;
3244 uschar * cipher_list = NULL;
3246 #ifndef DISABLE_OCSP
3248 verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK;
3249 BOOL request_ocsp = require_ocsp ? TRUE
3250 : verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
3253 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", cctx->sock);
3256 /* If dane is flagged, have either request or require dane for this host, and
3257 a TLSA record found. Therefore, dane verify required. Which implies cert must
3258 be requested and supplied, dane verify must pass, and cert verify irrelevant
3259 (incl. hostnames), and (caller handled) require_tls and sni=$domain */
3261 if (conn_args->dane && ob->dane_require_tls_ciphers)
3263 /* not using Expand_check_tlsvar because not yet in state */
3264 if (!expand_check(ob->dane_require_tls_ciphers, US"dane_require_tls_ciphers",
3265 &cipher_list, errstr))
3267 cipher_list = cipher_list && *cipher_list
3268 ? ob->dane_require_tls_ciphers : ob->tls_require_ciphers;
3273 cipher_list = ob->tls_require_ciphers;
3276 #ifdef MEASURE_TIMING
3278 gettimeofday(&t0, NULL);
3281 if (tls_init(host, ob, cipher_list, &state, tlsp, errstr) != OK)
3284 #ifdef MEASURE_TIMING
3285 report_time_since(&t0, US"client tls_init (delta)");
3290 int dh_min_bits = ob->tls_dh_min_bits;
3291 if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
3294 debug_printf("WARNING: tls_dh_min_bits far too low,"
3295 " clamping %d up to %d\n",
3296 dh_min_bits, EXIM_CLIENT_DH_MIN_MIN_BITS);
3297 dh_min_bits = EXIM_CLIENT_DH_MIN_MIN_BITS;
3300 DEBUG(D_tls) debug_printf("Setting D-H prime minimum"
3301 " acceptable bits to %d\n",
3303 gnutls_dh_set_prime_bits(state->session, dh_min_bits);
3306 /* Stick to the old behaviour for compatibility if tls_verify_certificates is
3307 set but both tls_verify_hosts and tls_try_verify_hosts are unset. Check only
3308 the specified host patterns if one of them is defined */
3311 if (conn_args->dane && dane_tlsa_load(state, &conn_args->tlsa_dnsa))
3314 debug_printf("TLS: server certificate DANE required\n");
3315 state->verify_requirement = VERIFY_DANE;
3316 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
3320 if ( ( state->exp_tls_verify_certificates
3321 && !ob->tls_verify_hosts
3322 && (!ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts)
3324 || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
3327 tls_client_setup_hostname_checks(host, state, ob);
3329 debug_printf("TLS: server certificate verification required\n");
3330 state->verify_requirement = VERIFY_REQUIRED;
3331 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
3333 else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
3335 tls_client_setup_hostname_checks(host, state, ob);
3337 debug_printf("TLS: server certificate verification optional\n");
3338 state->verify_requirement = VERIFY_OPTIONAL;
3339 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
3344 debug_printf("TLS: server certificate verification not required\n");
3345 state->verify_requirement = VERIFY_NONE;
3346 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
3349 #ifndef DISABLE_OCSP
3350 /* supported since GnuTLS 3.1.3 */
3353 DEBUG(D_tls) debug_printf("TLS: will request OCSP stapling\n");
3354 if ((rc = gnutls_ocsp_status_request_enable_client(state->session,
3355 NULL, 0, NULL)) != OK)
3357 tls_error_gnu(US"cert-status-req", rc, state->host, errstr);
3360 tlsp->ocsp = OCSP_NOT_RESP;
3364 #ifdef EXIM_HAVE_TLS_RESUME
3365 tls_client_resume_prehandshake(state, tlsp, host, ob);
3368 #ifndef DISABLE_EVENT
3369 if (tb && tb->event_action)
3371 state->event_action = tb->event_action;
3372 gnutls_session_set_ptr(state->session, state);
3373 gnutls_certificate_set_verify_function(state->lib_state.x509_cred, verify_cb);
3377 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr_t)(long) cctx->sock);
3378 state->fd_in = cctx->sock;
3379 state->fd_out = cctx->sock;
3381 DEBUG(D_tls) debug_printf("about to gnutls_handshake\n");
3382 /* There doesn't seem to be a built-in timeout on connection. */
3384 sigalrm_seen = FALSE;
3385 ALARM(ob->command_timeout);
3387 rc = gnutls_handshake(state->session);
3388 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
3391 if (rc != GNUTLS_E_SUCCESS)
3395 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_USER_CANCELED);
3396 tls_error(US"gnutls_handshake", US"timed out", state->host, errstr);
3399 tls_error_gnu(US"gnutls_handshake", rc, state->host, errstr);
3403 DEBUG(D_tls) post_handshake_debug(state);
3407 if (!verify_certificate(state, errstr))
3409 tls_error(US"certificate verification failed", *errstr, state->host, errstr);
3413 #ifdef GNUTLS_SFLAGS_EXT_MASTER_SECRET
3414 if (gnutls_session_get_flags(state->session) & GNUTLS_SFLAGS_EXT_MASTER_SECRET)
3415 tlsp->ext_master_secret = TRUE;
3418 #ifndef DISABLE_OCSP
3423 gnutls_datum_t stapling;
3424 gnutls_ocsp_resp_t resp;
3425 gnutls_datum_t printed;
3429 # ifdef GNUTLS_OCSP_STATUS_REQUEST_GET2
3430 (rc = gnutls_ocsp_status_request_get2(state->session, idx, &stapling)) == 0;
3432 (rc = gnutls_ocsp_status_request_get(state->session, &stapling)) == 0;
3435 if ( (rc= gnutls_ocsp_resp_init(&resp)) == 0
3436 && (rc= gnutls_ocsp_resp_import(resp, &stapling)) == 0
3437 && (rc= gnutls_ocsp_resp_print(resp, GNUTLS_OCSP_PRINT_COMPACT, &printed)) == 0
3440 debug_printf("%.4096s", printed.data);
3441 gnutls_free(printed.data);
3444 (void) tls_error_gnu(US"ocsp decode", rc, state->host, errstr);
3446 (void) tls_error_gnu(US"ocsp decode", rc, state->host, errstr);
3449 if (gnutls_ocsp_status_request_is_checked(state->session, 0) == 0)
3451 tlsp->ocsp = OCSP_FAILED;
3452 tls_error(US"certificate status check failed", NULL, state->host, errstr);
3458 DEBUG(D_tls) debug_printf("Passed OCSP checking\n");
3459 tlsp->ocsp = OCSP_VFIED;
3464 #ifdef EXIM_HAVE_TLS_RESUME
3465 tls_client_resume_posthandshake(state, tlsp, host);
3468 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
3470 extract_exim_vars_from_tls_state(state);
3472 cctx->tls_ctx = state;
3479 /*************************************************
3480 * Close down a TLS session *
3481 *************************************************/
3483 /* This is also called from within a delivery subprocess forked from the
3484 daemon, to shut down the TLS library, without actually doing a shutdown (which
3485 would tamper with the TLS session in the parent process).
3488 ct_ctx client context pointer, or NULL for the one global server context
3489 shutdown 1 if TLS close-alert is to be sent,
3490 2 if also response to be waited for
3496 tls_close(void * ct_ctx, int shutdown)
3498 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3499 tls_support * tlsp = state->tlsp;
3501 if (!tlsp || tlsp->active.sock < 0) return; /* TLS was not active */
3505 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
3506 shutdown > 1 ? " (with response-wait)" : "");
3509 gnutls_bye(state->session, shutdown > 1 ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
3513 if (!ct_ctx) /* server */
3515 receive_getc = smtp_getc;
3516 receive_getbuf = smtp_getbuf;
3517 receive_get_cache = smtp_get_cache;
3518 receive_ungetc = smtp_ungetc;
3519 receive_feof = smtp_feof;
3520 receive_ferror = smtp_ferror;
3521 receive_smtp_buffered = smtp_buffered;
3524 gnutls_deinit(state->session);
3525 gnutls_certificate_free_credentials(state->lib_state.x509_cred);
3526 state->lib_state = null_tls_preload;
3528 tlsp->active.sock = -1;
3529 tlsp->active.tls_ctx = NULL;
3530 /* Leave bits, peercert, cipher, peerdn, certificate_verified set, for logging */
3531 tlsp->channelbinding = NULL;
3534 if (state->xfer_buffer) store_free(state->xfer_buffer);
3541 tls_refill(unsigned lim)
3543 exim_gnutls_state_st * state = &state_server;
3546 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(session=%p, buffer=%p, buffersize=%u)\n",
3547 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
3549 sigalrm_seen = FALSE;
3550 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
3554 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
3555 MIN(ssl_xfer_buffer_size, lim));
3556 while (inbytes == GNUTLS_E_AGAIN);
3558 if (smtp_receive_timeout > 0) ALARM_CLR(0);
3560 if (had_command_timeout) /* set by signal handler */
3561 smtp_command_timeout_exit(); /* does not return */
3562 if (had_command_sigterm)
3563 smtp_command_sigterm_exit();
3564 if (had_data_timeout)
3565 smtp_data_timeout_exit();
3566 if (had_data_sigint)
3567 smtp_data_sigint_exit();
3569 /* Timeouts do not get this far. A zero-byte return appears to mean that the
3570 TLS session has been closed down, not that the socket itself has been closed
3571 down. Revert to non-TLS handling. */
3575 DEBUG(D_tls) debug_printf("Got tls read timeout\n");
3576 state->xfer_error = TRUE;
3580 else if (inbytes == 0)
3582 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3583 tls_close(NULL, TLS_NO_SHUTDOWN);
3587 /* Handle genuine errors */
3589 else if (inbytes < 0)
3591 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3592 record_io_error(state, (int) inbytes, US"recv", NULL);
3593 state->xfer_error = TRUE;
3596 #ifndef DISABLE_DKIM
3597 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
3599 state->xfer_buffer_hwm = (int) inbytes;
3600 state->xfer_buffer_lwm = 0;
3604 /*************************************************
3605 * TLS version of getc *
3606 *************************************************/
3608 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
3609 it refills the buffer via the GnuTLS reading function.
3610 Only used by the server-side TLS.
3612 This feeds DKIM and should be used for all message-body reads.
3614 Arguments: lim Maximum amount to read/buffer
3615 Returns: the next character or EOF
3619 tls_getc(unsigned lim)
3621 exim_gnutls_state_st * state = &state_server;
3623 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3624 if (!tls_refill(lim))
3625 return state->xfer_error ? EOF : smtp_getc(lim);
3627 /* Something in the buffer; return next uschar */
3629 return state->xfer_buffer[state->xfer_buffer_lwm++];
3633 tls_getbuf(unsigned * len)
3635 exim_gnutls_state_st * state = &state_server;
3639 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3640 if (!tls_refill(*len))
3642 if (!state->xfer_error) return smtp_getbuf(len);
3647 if ((size = state->xfer_buffer_hwm - state->xfer_buffer_lwm) > *len)
3649 buf = &state->xfer_buffer[state->xfer_buffer_lwm];
3650 state->xfer_buffer_lwm += size;
3659 #ifndef DISABLE_DKIM
3660 exim_gnutls_state_st * state = &state_server;
3661 int n = state->xfer_buffer_hwm - state->xfer_buffer_lwm;
3663 dkim_exim_verify_feed(state->xfer_buffer+state->xfer_buffer_lwm, n);
3669 tls_could_read(void)
3671 return state_server.xfer_buffer_lwm < state_server.xfer_buffer_hwm
3672 || gnutls_record_check_pending(state_server.session) > 0;
3678 /*************************************************
3679 * Read bytes from TLS channel *
3680 *************************************************/
3682 /* This does not feed DKIM, so if the caller uses this for reading message body,
3683 then the caller must feed DKIM.
3686 ct_ctx client context pointer, or NULL for the one global server context
3690 Returns: the number of bytes read
3691 -1 after a failed read, including EOF
3695 tls_read(void * ct_ctx, uschar *buff, size_t len)
3697 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3703 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
3705 debug_printf("*** PROBABLY A BUG *** " \
3706 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
3707 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
3710 debug_printf("Calling gnutls_record_recv(session=%p, buffer=%p, len=" SIZE_T_FMT ")\n",
3711 state->session, buff, len);
3715 inbytes = gnutls_record_recv(state->session, buff, len);
3716 while (inbytes == GNUTLS_E_AGAIN);
3718 if (inbytes > 0) return inbytes;
3721 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3725 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3726 record_io_error(state, (int)inbytes, US"recv", NULL);
3735 /*************************************************
3736 * Write bytes down TLS channel *
3737 *************************************************/
3741 ct_ctx client context pointer, or NULL for the one global server context
3744 more more data expected soon
3746 Calling with len zero and more unset will flush buffered writes. The buff
3747 argument can be null for that case.
3749 Returns: the number of bytes after a successful write,
3750 -1 after a failed write
3754 tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
3758 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3761 if (more && !state->corked)
3763 DEBUG(D_tls) debug_printf("gnutls_record_cork(session=%p)\n", state->session);
3764 gnutls_record_cork(state->session);
3765 state->corked = TRUE;
3769 DEBUG(D_tls) debug_printf("%s(%p, " SIZE_T_FMT "%s)\n", __FUNCTION__,
3770 buff, left, more ? ", more" : "");
3774 DEBUG(D_tls) debug_printf("gnutls_record_send(session=%p, buffer=%p, left=" SIZE_T_FMT ")\n",
3775 state->session, buff, left);
3779 outbytes = gnutls_record_send(state->session, buff, left);
3780 while (outbytes == GNUTLS_E_AGAIN);
3782 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
3786 #ifdef GNUTLS_E_PREMATURE_TERMINATION
3787 if ( outbytes == GNUTLS_E_PREMATURE_TERMINATION && errno == ECONNRESET
3788 && !ct_ctx && f.smtp_in_quit
3790 { /* Outlook, dammit */
3791 if (LOGGING(protocol_detail))
3792 log_write(0, LOG_MAIN, "[%s] after QUIT, client reset TCP before"
3793 " SMTP response and TLS close\n", sender_host_address);
3795 DEBUG(D_tls) debug_printf("[%s] SSL_write: after QUIT,"
3796 " client reset TCP before TLS close\n", sender_host_address);
3801 DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
3802 record_io_error(state, outbytes, US"send", NULL);
3808 record_io_error(state, 0, US"send", US"TLS channel closed on write");
3819 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
3825 if (!more && state->corked)
3827 DEBUG(D_tls) debug_printf("gnutls_record_uncork(session=%p)\n", state->session);
3829 /* We can't use GNUTLS_RECORD_WAIT here, as it retries on
3830 GNUTLS_E_AGAIN || GNUTLS_E_INTR, which would break our timeout set by alarm().
3831 The GNUTLS_E_AGAIN should not happen ever, as our sockets are blocking anyway.
3832 But who knows. (That all relies on the fact that GNUTLS_E_INTR and GNUTLS_E_AGAIN
3833 match the EINTR and EAGAIN errno values.) */
3834 outbytes = gnutls_record_uncork(state->session, 0);
3835 while (outbytes == GNUTLS_E_AGAIN);
3839 record_io_error(state, len, US"uncork", NULL);
3843 state->corked = FALSE;
3853 /*************************************************
3854 * Random number generation *
3855 *************************************************/
3857 /* Pseudo-random number generation. The result is not expected to be
3858 cryptographically strong but not so weak that someone will shoot themselves
3859 in the foot using it as a nonce in input in some email header scheme or
3860 whatever weirdness they'll twist this into. The result should handle fork()
3861 and avoid repeating sequences. OpenSSL handles that for us.
3865 Returns a random number in range [0, max-1]
3868 #ifdef HAVE_GNUTLS_RND
3870 vaguely_random_number(int max)
3874 uschar smallbuf[sizeof(r)];
3879 needed_len = sizeof(r);
3880 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
3881 asked for a number less than 10. */
3883 for (r = max, i = 0; r; ++i)
3889 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
3892 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback\n");
3893 return vaguely_random_number_fallback(max);
3896 for (uschar * p = smallbuf; needed_len; --needed_len, ++p)
3899 /* We don't particularly care about weighted results; if someone wants
3900 * smooth distribution and cares enough then they should submit a patch then. */
3903 #else /* HAVE_GNUTLS_RND */
3905 vaguely_random_number(int max)
3907 return vaguely_random_number_fallback(max);
3909 #endif /* HAVE_GNUTLS_RND */
3914 /*************************************************
3915 * Let tls_require_ciphers be checked at startup *
3916 *************************************************/
3918 /* The tls_require_ciphers option, if set, must be something which the
3921 Returns: NULL on success, or error message
3925 tls_validate_require_cipher(void)
3928 uschar *expciphers = NULL;
3929 gnutls_priority_t priority_cache;
3931 uschar * dummy_errstr;
3933 #ifdef GNUTLS_AUTO_GLOBAL_INIT
3934 # define validate_check_rc(Label) do { \
3935 if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) \
3936 return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
3937 # define return_deinit(Label) do { return (Label); } while (0)
3939 # define validate_check_rc(Label) do { \
3940 if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) gnutls_global_deinit(); \
3941 return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
3942 # define return_deinit(Label) do { gnutls_global_deinit(); return (Label); } while (0)
3945 if (exim_gnutls_base_init_done)
3946 log_write(0, LOG_MAIN|LOG_PANIC,
3947 "already initialised GnuTLS, Exim developer bug");
3949 #if defined(HAVE_GNUTLS_PKCS11) && !defined(GNUTLS_AUTO_PKCS11_MANUAL)
3950 if (!gnutls_allow_auto_pkcs11)
3952 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
3953 validate_check_rc(US"gnutls_pkcs11_init");
3956 #ifndef GNUTLS_AUTO_GLOBAL_INIT
3957 rc = gnutls_global_init();
3958 validate_check_rc(US"gnutls_global_init()");
3960 exim_gnutls_base_init_done = TRUE;
3962 if (!(tls_require_ciphers && *tls_require_ciphers))
3963 return_deinit(NULL);
3965 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
3967 return_deinit(US"failed to expand tls_require_ciphers");
3969 if (!(expciphers && *expciphers))
3970 return_deinit(NULL);
3973 debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
3975 rc = gnutls_priority_init(&priority_cache, CS expciphers, &errpos);
3976 validate_check_rc(string_sprintf(
3977 "gnutls_priority_init(%s) failed at offset %ld, \"%.8s..\"",
3978 expciphers, errpos - CS expciphers, errpos));
3980 #undef return_deinit
3981 #undef validate_check_rc
3982 #ifndef GNUTLS_AUTO_GLOBAL_INIT
3983 gnutls_global_deinit();
3992 /*************************************************
3993 * Report the library versions. *
3994 *************************************************/
3996 /* See a description in tls-openssl.c for an explanation of why this exists.
3998 Arguments: a FILE* to print the results to
4003 tls_version_report(FILE *f)
4005 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
4008 gnutls_check_version(NULL));
4011 #endif /*!MACRO_PREDEF*/
4014 /* End of tls-gnu.c */