1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* Copyright (c) Phil Pennock 2012 */
10 /* This file provides TLS/SSL support for Exim using the GnuTLS library,
11 one of the available supported implementations. This file is #included into
12 tls.c when USE_GNUTLS has been set.
14 The code herein is a revamp of GnuTLS integration using the current APIs; the
15 original tls-gnu.c was based on a patch which was contributed by Nikos
16 Mavrogiannopoulos. The revamp is partially a rewrite, partially cut&paste as
19 APIs current as of GnuTLS 2.12.18; note that the GnuTLS manual is for GnuTLS 3,
20 which is not widely deployed by OS vendors. Will note issues below, which may
21 assist in updating the code in the future. Another sources of hints is
22 mod_gnutls for Apache (SNI callback registration and handling).
24 Keeping client and server variables more split than before and is currently
25 the norm, in anticipation of TLS in ACL callouts.
27 I wanted to switch to gnutls_certificate_set_verify_function() so that
28 certificate rejection could happen during handshake where it belongs, rather
29 than being dropped afterwards, but that was introduced in 2.10.0 and Debian
30 (6.0.5) is still on 2.8.6. So for now we have to stick with sub-par behaviour.
32 (I wasn't looking for libraries quite that old, when updating to get rid of
33 compiler warnings of deprecated APIs. If it turns out that a lot of the rest
34 require current GnuTLS, then we'll drop support for the ancient libraries).
37 #include <gnutls/gnutls.h>
38 /* needed for cert checks in verification and DN extraction: */
39 #include <gnutls/x509.h>
40 /* man-page is incorrect, gnutls_rnd() is not in gnutls.h: */
41 #include <gnutls/crypto.h>
43 /* needed to disable PKCS11 autoload unless requested */
44 #if GNUTLS_VERSION_NUMBER >= 0x020c00
45 # include <gnutls/pkcs11.h>
46 # define SUPPORT_PARAM_TO_PK_BITS
48 #if GNUTLS_VERSION_NUMBER < 0x030103 && !defined(DISABLE_OCSP)
49 # warning "GnuTLS library version too old; define DISABLE_OCSP in Makefile"
52 #if GNUTLS_VERSION_NUMBER < 0x020a00 && !defined(DISABLE_EVENT)
53 # warning "GnuTLS library version too old; tls:cert event unsupported"
54 # define DISABLE_EVENT
56 #if GNUTLS_VERSION_NUMBER >= 0x030306
57 # define SUPPORT_CA_DIR
59 # undef SUPPORT_CA_DIR
61 #if GNUTLS_VERSION_NUMBER >= 0x030014
62 # define SUPPORT_SYSDEFAULT_CABUNDLE
64 #if GNUTLS_VERSION_NUMBER >= 0x030104
65 # define GNUTLS_CERT_VFY_STATUS_PRINT
67 #if GNUTLS_VERSION_NUMBER >= 0x030109
70 #if GNUTLS_VERSION_NUMBER >= 0x03010a
71 # define SUPPORT_GNUTLS_SESS_DESC
73 #if GNUTLS_VERSION_NUMBER >= 0x030500
74 # define SUPPORT_GNUTLS_KEYLOG
76 #if GNUTLS_VERSION_NUMBER >= 0x030506 && !defined(DISABLE_OCSP)
77 # define SUPPORT_SRV_OCSP_STACK
81 # if GNUTLS_VERSION_NUMBER >= 0x030000
82 # define DANESSL_USAGE_DANE_TA 2
83 # define DANESSL_USAGE_DANE_EE 3
85 # error GnuTLS version too early for DANE
87 # if GNUTLS_VERSION_NUMBER < 0x999999
88 # define GNUTLS_BROKEN_DANE_VALIDATION
92 #ifdef EXPERIMENTAL_TLS_RESUME
93 # if GNUTLS_VERSION_NUMBER < 0x030603
94 # error GNUTLS version too early for session-resumption
99 # include <gnutls/ocsp.h>
102 # include <gnutls/dane.h>
105 #include "tls-cipher-stdname.c"
112 # ifdef EXPERIMENTAL_TLS_RESUME
113 builtin_macro_create_var(US"_RESUME_DECODE", RESUME_DECODE_STRING );
122 gnutls_global_set_audit_log_function()
125 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
128 /* Local static variables for GnuTLS */
130 /* Values for verify_requirement */
132 enum peer_verify_requirement
133 { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED, VERIFY_DANE };
135 /* This holds most state for server or client; with this, we can set up an
136 outbound TLS-enabled connection in an ACL callout, while not stomping all
137 over the TLS variables available for expansion.
139 Some of these correspond to variables in globals.c; those variables will
140 be set to point to content in one of these instances, as appropriate for
141 the stage of the process lifetime.
143 Not handled here: global tls_channelbinding_b64.
146 typedef struct exim_gnutls_state {
147 gnutls_session_t session;
148 gnutls_certificate_credentials_t x509_cred;
149 gnutls_priority_t priority_cache;
150 enum peer_verify_requirement verify_requirement;
153 BOOL peer_cert_verified;
154 BOOL peer_dane_verified;
155 BOOL trigger_sni_changes;
156 BOOL have_set_peerdn;
157 const struct host_item *host; /* NULL if server */
158 gnutls_x509_crt_t peercert;
161 uschar *received_sni;
163 const uschar *tls_certificate;
164 const uschar *tls_privatekey;
165 const uschar *tls_sni; /* client send only, not received */
166 const uschar *tls_verify_certificates;
167 const uschar *tls_crl;
168 const uschar *tls_require_ciphers;
170 uschar *exp_tls_certificate;
171 uschar *exp_tls_privatekey;
172 uschar *exp_tls_verify_certificates;
174 uschar *exp_tls_require_ciphers;
175 const uschar *exp_tls_verify_cert_hostnames;
176 #ifndef DISABLE_EVENT
177 uschar *event_action;
180 char * const * dane_data;
181 const int * dane_data_len;
184 tls_support *tlsp; /* set in tls_init() */
189 BOOL xfer_eof; /*XXX never gets set! */
191 } exim_gnutls_state_st;
193 static const exim_gnutls_state_st exim_gnutls_state_init = {
194 /* all elements not explicitly intialised here get 0/NULL/FALSE */
199 /* Not only do we have our own APIs which don't pass around state, assuming
200 it's held in globals, GnuTLS doesn't appear to let us register callback data
201 for callbacks, or as part of the session, so we have to keep a "this is the
202 context we're currently dealing with" pointer and rely upon being
203 single-threaded to keep from processing data on an inbound TLS connection while
204 talking to another TLS connection for an outbound check. This does mean that
205 there's no way for heart-beats to be responded to, for the duration of the
207 XXX But see gnutls_session_get_ptr()
210 static exim_gnutls_state_st state_server;
212 /* dh_params are initialised once within the lifetime of a process using TLS;
213 if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
214 don't want to repeat this. */
216 static gnutls_dh_params_t dh_server_params = NULL;
218 static int ssl_session_timeout = 7200; /* Two hours */
220 static const uschar * const exim_default_gnutls_priority = US"NORMAL";
222 /* Guard library core initialisation */
224 static BOOL exim_gnutls_base_init_done = FALSE;
227 static BOOL gnutls_buggy_ocsp = FALSE;
228 static BOOL exim_testharness_disable_ocsp_validity_check = FALSE;
231 #ifdef EXPERIMENTAL_TLS_RESUME
232 static gnutls_datum_t server_sessticket_key;
235 /* ------------------------------------------------------------------------ */
238 #define MAX_HOST_LEN 255
240 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
241 the library logging; a value less than 0 disables the calls to set up logging
242 callbacks. GNuTLS also looks for an environment variable - except not for
243 setuid binaries, making it useless - "GNUTLS_DEBUG_LEVEL".
244 Allegedly the testscript line "GNUTLS_DEBUG_LEVEL=9 sudo exim ..." would work,
245 but the env var must be added to /etc/sudoers too. */
246 #ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
247 # define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
250 #ifndef EXIM_CLIENT_DH_MIN_BITS
251 # define EXIM_CLIENT_DH_MIN_BITS 1024
254 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
255 can ask for a bit-strength. Without that, we stick to the constant we had
257 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
258 # define EXIM_SERVER_DH_BITS_PRE2_12 1024
261 #define expand_check_tlsvar(Varname, errstr) \
262 expand_check(state->Varname, US #Varname, &state->exp_##Varname, errstr)
264 #if GNUTLS_VERSION_NUMBER >= 0x020c00
265 # define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
266 # define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
267 # define HAVE_GNUTLS_RND
268 /* The security fix we provide with the gnutls_allow_auto_pkcs11 option
269 * (4.82 PP/09) introduces a compatibility regression. The symbol simply
270 * isn't available sometimes, so this needs to become a conditional
271 * compilation; the sanest way to deal with this being a problem on
272 * older OSes is to block it in the Local/Makefile with this compiler
274 # ifndef AVOID_GNUTLS_PKCS11
275 # define HAVE_GNUTLS_PKCS11
276 # endif /* AVOID_GNUTLS_PKCS11 */
282 /* ------------------------------------------------------------------------ */
283 /* Callback declarations */
285 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
286 static void exim_gnutls_logger_cb(int level, const char *message);
289 static int exim_sni_handling_cb(gnutls_session_t session);
291 #if !defined(DISABLE_OCSP)
292 static int server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
293 gnutls_datum_t * ocsp_response);
296 #ifdef EXPERIMENTAL_TLS_RESUME
298 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
299 unsigned incoming, const gnutls_datum_t * msg);
303 /* Daemon one-time initialisation */
305 tls_daemon_init(void)
307 #ifdef EXPERIMENTAL_TLS_RESUME
308 /* We are dependent on the GnuTLS implementation of the Session Ticket
309 encryption; both the strength and the key rotation period. We hope that
310 the strength at least matches that of the ciphersuite (but GnuTLS does not
313 static BOOL once = FALSE;
316 gnutls_session_ticket_key_generate(&server_sessticket_key); /* >= 2.10.0 */
317 if (f.running_in_test_harness) ssl_session_timeout = 6;
321 /* ------------------------------------------------------------------------ */
322 /* Static functions */
324 /*************************************************
326 *************************************************/
328 /* Called from lots of places when errors occur before actually starting to do
329 the TLS handshake, that is, while the session is still in clear. Always returns
330 DEFER for a server and FAIL for a client so that most calls can use "return
331 tls_error(...)" to do this processing and then give an appropriate return. A
332 single function is used for both server and client, because it is called from
333 some shared functions.
336 prefix text to include in the logged error
337 msg additional error string (may be NULL)
338 usually obtained from gnutls_strerror()
339 host NULL if setting up a server;
340 the connected host if setting up a client
341 errstr pointer to returned error string
343 Returns: OK/DEFER/FAIL
347 tls_error(const uschar *prefix, const uschar *msg, const host_item *host,
351 *errstr = string_sprintf("(%s)%s%s", prefix, msg ? ": " : "", msg ? msg : US"");
352 return host ? FAIL : DEFER;
357 tls_error_gnu(const uschar *prefix, int err, const host_item *host,
360 return tls_error(prefix, US gnutls_strerror(err), host, errstr);
364 tls_error_sys(const uschar *prefix, int err, const host_item *host,
367 return tls_error(prefix, US strerror(err), host, errstr);
371 /*************************************************
372 * Deal with logging errors during I/O *
373 *************************************************/
375 /* We have to get the identity of the peer from saved data.
378 state the current GnuTLS exim state container
379 rc the GnuTLS error code, or 0 if it's a local error
380 when text identifying read or write
381 text local error text when rc is 0
387 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
392 if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED)
393 msg = string_sprintf("A TLS fatal alert has been received: %s",
394 US gnutls_alert_get_name(gnutls_alert_get(state->session)));
396 msg = US gnutls_strerror(rc);
398 (void) tls_error(when, msg, state->host, &errstr);
401 log_write(0, LOG_MAIN, "H=%s [%s] TLS error on connection %s",
402 state->host->name, state->host->address, errstr);
405 uschar * conn_info = smtp_get_connection_info();
406 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
407 /* I'd like to get separated H= here, but too hard for now */
408 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
415 /*************************************************
416 * Set various Exim expansion vars *
417 *************************************************/
419 #define exim_gnutls_cert_err(Label) \
422 if (rc != GNUTLS_E_SUCCESS) \
424 DEBUG(D_tls) debug_printf("TLS: cert problem: %s: %s\n", \
425 (Label), gnutls_strerror(rc)); \
431 import_cert(const gnutls_datum_t * cert, gnutls_x509_crt_t * crtp)
435 rc = gnutls_x509_crt_init(crtp);
436 exim_gnutls_cert_err(US"gnutls_x509_crt_init (crt)");
438 rc = gnutls_x509_crt_import(*crtp, cert, GNUTLS_X509_FMT_DER);
439 exim_gnutls_cert_err(US"failed to import certificate [gnutls_x509_crt_import(cert)]");
444 #undef exim_gnutls_cert_err
447 /* We set various Exim global variables from the state, once a session has
448 been established. With TLS callouts, may need to change this to stack
449 variables, or just re-call it with the server state after client callout
452 Make sure anything set here is unset in tls_getc().
456 tls_bits strength indicator
457 tls_certificate_verified bool indicator
458 tls_channelbinding_b64 for some SASL mechanisms
460 tls_peercert pointer to library internal
462 tls_sni a (UTF-8) string
463 tls_ourcert pointer to library internal
466 state the relevant exim_gnutls_state_st *
470 extract_exim_vars_from_tls_state(exim_gnutls_state_st * state)
472 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
475 gnutls_datum_t channel;
477 tls_support * tlsp = state->tlsp;
479 tlsp->active.sock = state->fd_out;
480 tlsp->active.tls_ctx = state;
482 DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
484 tlsp->certificate_verified = state->peer_cert_verified;
486 tlsp->dane_verified = state->peer_dane_verified;
489 /* note that tls_channelbinding_b64 is not saved to the spool file, since it's
490 only available for use for authenticators while this TLS session is running. */
492 tls_channelbinding_b64 = NULL;
493 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
496 if ((rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel)))
497 { DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc)); }
500 old_pool = store_pool;
501 store_pool = POOL_PERM;
502 tls_channelbinding_b64 = b64encode(CUS channel.data, (int)channel.size);
503 store_pool = old_pool;
504 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage.\n");
508 /* peercert is set in peer_status() */
509 tlsp->peerdn = state->peerdn;
510 tlsp->sni = state->received_sni;
512 /* record our certificate */
514 const gnutls_datum_t * cert = gnutls_certificate_get_ours(state->session);
515 gnutls_x509_crt_t crt;
517 tlsp->ourcert = cert && import_cert(cert, &crt)==0 ? crt : NULL;
524 /*************************************************
525 * Setup up DH parameters *
526 *************************************************/
528 /* Generating the D-H parameters may take a long time. They only need to
529 be re-generated every so often, depending on security policy. What we do is to
530 keep these parameters in a file in the spool directory. If the file does not
531 exist, we generate them. This means that it is easy to cause a regeneration.
533 The new file is written as a temporary file and renamed, so that an incomplete
534 file is never present. If two processes both compute some new parameters, you
535 waste a bit of effort, but it doesn't seem worth messing around with locking to
538 Returns: OK/DEFER/FAIL
542 init_server_dh(uschar ** errstr)
545 unsigned int dh_bits;
547 uschar filename_buf[PATH_MAX];
548 uschar *filename = NULL;
550 uschar *exp_tls_dhparam;
551 BOOL use_file_in_spool = FALSE;
552 host_item *host = NULL; /* dummy for macros */
554 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
556 if ((rc = gnutls_dh_params_init(&dh_server_params)))
557 return tls_error_gnu(US"gnutls_dh_params_init", rc, host, errstr);
562 if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam, errstr))
565 if (!exp_tls_dhparam)
567 DEBUG(D_tls) debug_printf("Loading default hard-coded DH params\n");
568 m.data = US std_dh_prime_default();
569 m.size = Ustrlen(m.data);
571 else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
572 use_file_in_spool = TRUE;
573 else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
575 DEBUG(D_tls) debug_printf("Requested no DH parameters.\n");
578 else if (exp_tls_dhparam[0] != '/')
580 if (!(m.data = US std_dh_prime_named(exp_tls_dhparam)))
581 return tls_error(US"No standard prime named", exp_tls_dhparam, NULL, errstr);
582 m.size = Ustrlen(m.data);
585 filename = exp_tls_dhparam;
589 if ((rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM)))
590 return tls_error_gnu(US"gnutls_dh_params_import_pkcs3", rc, host, errstr);
591 DEBUG(D_tls) debug_printf("Loaded fixed standard D-H parameters\n");
595 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
596 /* If you change this constant, also change dh_param_fn_ext so that we can use a
597 different filename and ensure we have sufficient bits. */
599 if (!(dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL)))
600 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL, errstr);
602 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits.\n",
605 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
607 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
611 /* Some clients have hard-coded limits. */
612 if (dh_bits > tls_dh_max_bits)
615 debug_printf("tls_dh_max_bits clamping override, using %d bits instead.\n",
617 dh_bits = tls_dh_max_bits;
620 if (use_file_in_spool)
622 if (!string_format(filename_buf, sizeof(filename_buf),
623 "%s/gnutls-params-%d", spool_directory, dh_bits))
624 return tls_error(US"overlong filename", NULL, NULL, errstr);
625 filename = filename_buf;
628 /* Open the cache file for reading and if successful, read it and set up the
631 if ((fd = Uopen(filename, O_RDONLY, 0)) >= 0)
637 if (fstat(fd, &statbuf) < 0) /* EIO */
641 return tls_error_sys(US"TLS cache stat failed", saved_errno, NULL, errstr);
643 if (!S_ISREG(statbuf.st_mode))
646 return tls_error(US"TLS cache not a file", NULL, NULL, errstr);
648 if (!(fp = fdopen(fd, "rb")))
652 return tls_error_sys(US"fdopen(TLS cache stat fd) failed",
653 saved_errno, NULL, errstr);
656 m.size = statbuf.st_size;
657 if (!(m.data = store_malloc(m.size)))
660 return tls_error_sys(US"malloc failed", errno, NULL, errstr);
662 if (!(sz = fread(m.data, m.size, 1, fp)))
667 return tls_error_sys(US"fread failed", saved_errno, NULL, errstr);
671 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
674 return tls_error_gnu(US"gnutls_dh_params_import_pkcs3", rc, host, errstr);
675 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
678 /* If the file does not exist, fall through to compute new data and cache it.
679 If there was any other opening error, it is serious. */
681 else if (errno == ENOENT)
685 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
688 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
691 /* If ret < 0, either the cache file does not exist, or the data it contains
692 is not useful. One particular case of this is when upgrading from an older
693 release of Exim in which the data was stored in a different format. We don't
694 try to be clever and support both formats; we just regenerate new data in this
700 unsigned int dh_bits_gen = dh_bits;
702 if ((PATH_MAX - Ustrlen(filename)) < 10)
703 return tls_error(US"Filename too long to generate replacement",
704 filename, NULL, errstr);
706 temp_fn = string_copy(US"%s.XXXXXXX");
707 if ((fd = mkstemp(CS temp_fn)) < 0) /* modifies temp_fn */
708 return tls_error_sys(US"Unable to open temp file", errno, NULL, errstr);
709 (void)exim_chown(temp_fn, exim_uid, exim_gid); /* Probably not necessary */
711 /* GnuTLS overshoots!
712 * If we ask for 2236, we might get 2237 or more.
713 * But there's no way to ask GnuTLS how many bits there really are.
714 * We can ask how many bits were used in a TLS session, but that's it!
715 * The prime itself is hidden behind too much abstraction.
716 * So we ask for less, and proceed on a wing and a prayer.
717 * First attempt, subtracted 3 for 2233 and got 2240.
719 if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
721 dh_bits_gen = dh_bits - 10;
723 debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
728 debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
730 if ((rc = gnutls_dh_params_generate2(dh_server_params, dh_bits_gen)))
731 return tls_error_gnu(US"gnutls_dh_params_generate2", rc, host, errstr);
733 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
734 and I confirmed that a NULL call to get the size first is how the GnuTLS
735 sample apps handle this. */
739 if ( (rc = gnutls_dh_params_export_pkcs3(dh_server_params,
740 GNUTLS_X509_FMT_PEM, m.data, &sz))
741 && rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
742 return tls_error_gnu(US"gnutls_dh_params_export_pkcs3(NULL) sizing",
745 if (!(m.data = store_malloc(m.size)))
746 return tls_error_sys(US"memory allocation failed", errno, NULL, errstr);
748 /* this will return a size 1 less than the allocation size above */
749 if ((rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
753 return tls_error_gnu(US"gnutls_dh_params_export_pkcs3() real", rc, host, errstr);
755 m.size = sz; /* shrink by 1, probably */
757 if ((sz = write_to_fd_buf(fd, m.data, (size_t) m.size)) != m.size)
760 return tls_error_sys(US"TLS cache write D-H params failed",
761 errno, NULL, errstr);
764 if ((sz = write_to_fd_buf(fd, US"\n", 1)) != 1)
765 return tls_error_sys(US"TLS cache write D-H params final newline failed",
766 errno, NULL, errstr);
768 if ((rc = close(fd)))
769 return tls_error_sys(US"TLS cache write close() failed", errno, NULL, errstr);
771 if (Urename(temp_fn, filename) < 0)
772 return tls_error_sys(string_sprintf("failed to rename \"%s\" as \"%s\"",
773 temp_fn, filename), errno, NULL, errstr);
775 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
778 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
785 /* Create and install a selfsigned certificate, for use in server mode */
788 tls_install_selfsign(exim_gnutls_state_st * state, uschar ** errstr)
790 gnutls_x509_crt_t cert = NULL;
792 gnutls_x509_privkey_t pkey = NULL;
793 const uschar * where;
796 where = US"initialising pkey";
797 if ((rc = gnutls_x509_privkey_init(&pkey))) goto err;
799 where = US"initialising cert";
800 if ((rc = gnutls_x509_crt_init(&cert))) goto err;
802 where = US"generating pkey";
803 if ((rc = gnutls_x509_privkey_generate(pkey, GNUTLS_PK_RSA,
804 #ifdef SUPPORT_PARAM_TO_PK_BITS
805 # ifndef GNUTLS_SEC_PARAM_MEDIUM
806 # define GNUTLS_SEC_PARAM_MEDIUM GNUTLS_SEC_PARAM_HIGH
808 gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_MEDIUM),
815 where = US"configuring cert";
817 if ( (rc = gnutls_x509_crt_set_version(cert, 3))
818 || (rc = gnutls_x509_crt_set_serial(cert, &now, sizeof(now)))
819 || (rc = gnutls_x509_crt_set_activation_time(cert, now = time(NULL)))
820 || (rc = gnutls_x509_crt_set_expiration_time(cert, now + 60 * 60)) /* 1 hr */
821 || (rc = gnutls_x509_crt_set_key(cert, pkey))
823 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
824 GNUTLS_OID_X520_COUNTRY_NAME, 0, "UK", 2))
825 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
826 GNUTLS_OID_X520_ORGANIZATION_NAME, 0, "Exim Developers", 15))
827 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
828 GNUTLS_OID_X520_COMMON_NAME, 0,
829 smtp_active_hostname, Ustrlen(smtp_active_hostname)))
833 where = US"signing cert";
834 if ((rc = gnutls_x509_crt_sign(cert, cert, pkey))) goto err;
836 where = US"installing selfsign cert";
838 if ((rc = gnutls_certificate_set_x509_key(state->x509_cred, &cert, 1, pkey)))
844 if (cert) gnutls_x509_crt_deinit(cert);
845 if (pkey) gnutls_x509_privkey_deinit(pkey);
849 rc = tls_error_gnu(where, rc, NULL, errstr);
856 /* Add certificate and key, from files.
859 Zero or negative: good. Negate value for certificate index if < 0.
860 Greater than zero: FAIL or DEFER code.
864 tls_add_certfile(exim_gnutls_state_st * state, const host_item * host,
865 uschar * certfile, uschar * keyfile, uschar ** errstr)
867 /*XXX returns certs index for gnutls_certificate_set_x509_key_file(),
868 given suitable flags set */
870 int rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
871 CS certfile, CS keyfile, GNUTLS_X509_FMT_PEM);
873 return tls_error_gnu(
874 string_sprintf("cert/key setup: cert=%s key=%s", certfile, keyfile),
880 /* Make a note that we saw a status-request */
882 tls_server_clienthello_ext(void * ctx, unsigned tls_id,
883 const unsigned char *data, unsigned size)
885 /* https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
886 if (tls_id == 5) /* status_request */
888 DEBUG(D_tls) debug_printf("Seen status_request extension\n");
889 tls_in.ocsp = OCSP_NOT_RESP;
894 /* Callback for client-hello, on server, if we think we might serve stapled-OCSP */
896 tls_server_clienthello_cb(gnutls_session_t session, unsigned int htype,
897 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
899 /* Call fn for each extension seen. 3.6.3 onwards */
900 return gnutls_ext_raw_parse(NULL, tls_server_clienthello_ext, msg,
901 GNUTLS_EXT_RAW_FLAG_TLS_CLIENT_HELLO);
904 /* Callback for certificate-status, on server. We sent stapled OCSP. */
906 tls_server_certstatus_cb(gnutls_session_t session, unsigned int htype,
907 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
909 DEBUG(D_tls) debug_printf("Sending certificate-status\n");
910 #ifdef SUPPORT_SRV_OCSP_STACK
911 tls_in.ocsp = exim_testharness_disable_ocsp_validity_check
912 ? OCSP_VFY_NOT_TRIED : OCSP_VFIED; /* We know that GnuTLS verifies responses */
914 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
919 /* Callback for handshake messages, on server */
921 tls_server_hook_cb(gnutls_session_t sess, u_int htype, unsigned when,
922 unsigned incoming, const gnutls_datum_t * msg)
926 case GNUTLS_HANDSHAKE_CLIENT_HELLO:
927 return tls_server_clienthello_cb(sess, htype, when, incoming, msg);
928 case GNUTLS_HANDSHAKE_CERTIFICATE_STATUS:
929 return tls_server_certstatus_cb(sess, htype, when, incoming, msg);
930 #ifdef EXPERIMENTAL_TLS_RESUME
931 case GNUTLS_HANDSHAKE_NEW_SESSION_TICKET:
932 return tls_server_ticket_cb(sess, htype, when, incoming, msg);
941 tls_server_testharness_ocsp_fiddle(void)
943 extern char ** environ;
944 if (environ) for (uschar ** p = USS environ; *p; p++)
945 if (Ustrncmp(*p, "EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK", 42) == 0)
947 DEBUG(D_tls) debug_printf("Permitting known bad OCSP response\n");
948 exim_testharness_disable_ocsp_validity_check = TRUE;
952 /*************************************************
953 * Variables re-expanded post-SNI *
954 *************************************************/
956 /* Called from both server and client code, via tls_init(), and also from
957 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
959 We can tell the two apart by state->received_sni being non-NULL in callback.
961 The callback should not call us unless state->trigger_sni_changes is true,
962 which we are responsible for setting on the first pass through.
965 state exim_gnutls_state_st *
966 errstr error string pointer
968 Returns: OK/DEFER/FAIL
972 tls_expand_session_files(exim_gnutls_state_st * state, uschar ** errstr)
976 const host_item *host = state->host; /* macro should be reconsidered? */
977 uschar *saved_tls_certificate = NULL;
978 uschar *saved_tls_privatekey = NULL;
979 uschar *saved_tls_verify_certificates = NULL;
980 uschar *saved_tls_crl = NULL;
983 /* We check for tls_sni *before* expansion. */
984 if (!host) /* server */
985 if (!state->received_sni)
987 if ( state->tls_certificate
988 && ( Ustrstr(state->tls_certificate, US"tls_sni")
989 || Ustrstr(state->tls_certificate, US"tls_in_sni")
990 || Ustrstr(state->tls_certificate, US"tls_out_sni")
993 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
994 state->trigger_sni_changes = TRUE;
999 /* useful for debugging */
1000 saved_tls_certificate = state->exp_tls_certificate;
1001 saved_tls_privatekey = state->exp_tls_privatekey;
1002 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
1003 saved_tls_crl = state->exp_tls_crl;
1006 if ((rc = gnutls_certificate_allocate_credentials(&state->x509_cred)))
1007 return tls_error_gnu(US"gnutls_certificate_allocate_credentials",
1010 #ifdef SUPPORT_SRV_OCSP_STACK
1011 gnutls_certificate_set_flags(state->x509_cred, GNUTLS_CERTIFICATE_API_V2);
1014 /* remember: expand_check_tlsvar() is expand_check() but fiddling with
1015 state members, assuming consistent naming; and expand_check() returns
1016 false if expansion failed, unless expansion was forced to fail. */
1018 /* check if we at least have a certificate, before doing expensive
1021 if (!expand_check_tlsvar(tls_certificate, errstr))
1024 /* certificate is mandatory in server, optional in client */
1026 if ( !state->exp_tls_certificate
1027 || !*state->exp_tls_certificate
1030 return tls_install_selfsign(state, errstr);
1032 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
1034 if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey, errstr))
1037 /* tls_privatekey is optional, defaulting to same file as certificate */
1039 if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
1041 state->tls_privatekey = state->tls_certificate;
1042 state->exp_tls_privatekey = state->exp_tls_certificate;
1046 if (state->exp_tls_certificate && *state->exp_tls_certificate)
1048 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
1049 state->exp_tls_certificate, state->exp_tls_privatekey);
1051 if (state->received_sni)
1052 if ( Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0
1053 && Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0
1056 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
1060 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair.\n");
1063 if (!host) /* server */
1065 const uschar * clist = state->exp_tls_certificate;
1066 const uschar * klist = state->exp_tls_privatekey;
1067 const uschar * olist;
1068 int csep = 0, ksep = 0, osep = 0, cnt = 0;
1069 uschar * cfile, * kfile, * ofile;
1071 #ifndef DISABLE_OCSP
1072 if (!expand_check(tls_ocsp_file, US"tls_ocsp_file", &ofile, errstr))
1077 while (cfile = string_nextinlist(&clist, &csep, NULL, 0))
1079 if (!(kfile = string_nextinlist(&klist, &ksep, NULL, 0)))
1080 return tls_error(US"cert/key setup: out of keys", NULL, host, errstr);
1081 else if (0 < (rc = tls_add_certfile(state, host, cfile, kfile, errstr)))
1085 int gnutls_cert_index = -rc;
1086 DEBUG(D_tls) debug_printf("TLS: cert/key %d %s registered\n", gnutls_cert_index, cfile);
1088 /* Set the OCSP stapling server info */
1090 #ifndef DISABLE_OCSP
1093 if (gnutls_buggy_ocsp)
1096 debug_printf("GnuTLS library is buggy for OCSP; avoiding\n");
1098 else if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
1100 DEBUG(D_tls) debug_printf("OCSP response file = %s\n", ofile);
1102 # ifdef SUPPORT_SRV_OCSP_STACK
1103 if (f.running_in_test_harness) tls_server_testharness_ocsp_fiddle();
1105 if (!exim_testharness_disable_ocsp_validity_check)
1107 if ((rc = gnutls_certificate_set_ocsp_status_request_file2(
1108 state->x509_cred, CCS ofile, gnutls_cert_index,
1109 GNUTLS_X509_FMT_DER)) < 0)
1110 return tls_error_gnu(
1111 US"gnutls_certificate_set_ocsp_status_request_file2",
1114 /* Arrange callbacks for OCSP request observability */
1116 gnutls_handshake_set_hook_function(state->session,
1117 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1125 debug_printf("oops; multiple OCSP files not supported\n");
1128 gnutls_certificate_set_ocsp_status_request_function(
1129 state->x509_cred, server_ocsp_stapling_cb, ofile);
1133 DEBUG(D_tls) debug_printf("ran out of OCSP response files in list\n");
1140 if (0 < (rc = tls_add_certfile(state, host,
1141 state->exp_tls_certificate, state->exp_tls_privatekey, errstr)))
1143 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
1146 } /* tls_certificate */
1149 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
1150 provided. Experiment shows that, if the certificate file is empty, an unhelpful
1151 error message is provided. However, if we just refrain from setting anything up
1152 in that case, certificate verification fails, which seems to be the correct
1155 if (state->tls_verify_certificates && *state->tls_verify_certificates)
1157 if (!expand_check_tlsvar(tls_verify_certificates, errstr))
1159 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1160 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1161 state->exp_tls_verify_certificates = NULL;
1163 if (state->tls_crl && *state->tls_crl)
1164 if (!expand_check_tlsvar(tls_crl, errstr))
1167 if (!(state->exp_tls_verify_certificates &&
1168 *state->exp_tls_verify_certificates))
1171 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
1172 /* With no tls_verify_certificates, we ignore tls_crl too */
1179 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
1183 #ifdef SUPPORT_SYSDEFAULT_CABUNDLE
1184 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1185 cert_count = gnutls_certificate_set_x509_system_trust(state->x509_cred);
1189 if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
1191 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
1192 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
1197 #ifndef SUPPORT_CA_DIR
1198 /* The test suite passes in /dev/null; we could check for that path explicitly,
1199 but who knows if someone has some weird FIFO which always dumps some certs, or
1200 other weirdness. The thing we really want to check is that it's not a
1201 directory, since while OpenSSL supports that, GnuTLS does not.
1202 So s/!S_ISREG/S_ISDIR/ and change some messaging ... */
1203 if (S_ISDIR(statbuf.st_mode))
1206 debug_printf("verify certificates path is a dir: \"%s\"\n",
1207 state->exp_tls_verify_certificates);
1208 log_write(0, LOG_MAIN|LOG_PANIC,
1209 "tls_verify_certificates \"%s\" is a directory",
1210 state->exp_tls_verify_certificates);
1215 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
1216 state->exp_tls_verify_certificates, statbuf.st_size);
1218 if (statbuf.st_size == 0)
1221 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
1227 #ifdef SUPPORT_CA_DIR
1228 (statbuf.st_mode & S_IFMT) == S_IFDIR
1230 gnutls_certificate_set_x509_trust_dir(state->x509_cred,
1231 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM)
1234 gnutls_certificate_set_x509_trust_file(state->x509_cred,
1235 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
1237 #ifdef SUPPORT_CA_DIR
1238 /* Mimic the behaviour with OpenSSL of not advertising a usable-cert list
1239 when using the directory-of-certs config model. */
1241 if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
1242 gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1247 return tls_error_gnu(US"setting certificate trust", cert_count, host, errstr);
1249 debug_printf("Added %d certificate authorities.\n", cert_count);
1251 if (state->tls_crl && *state->tls_crl &&
1252 state->exp_tls_crl && *state->exp_tls_crl)
1254 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
1255 if ((cert_count = gnutls_certificate_set_x509_crl_file(state->x509_cred,
1256 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM)) < 0)
1257 return tls_error_gnu(US"gnutls_certificate_set_x509_crl_file",
1258 cert_count, host, errstr);
1260 DEBUG(D_tls) debug_printf("Processed %d CRLs.\n", cert_count);
1269 /*************************************************
1270 * Set X.509 state variables *
1271 *************************************************/
1273 /* In GnuTLS, the registered cert/key are not replaced by a later
1274 set of a cert/key, so for SNI support we need a whole new x509_cred
1275 structure. Which means various other non-re-expanded pieces of state
1276 need to be re-set in the new struct, so the setting logic is pulled
1280 state exim_gnutls_state_st *
1281 errstr error string pointer
1283 Returns: OK/DEFER/FAIL
1287 tls_set_remaining_x509(exim_gnutls_state_st *state, uschar ** errstr)
1290 const host_item *host = state->host; /* macro should be reconsidered? */
1292 /* Create D-H parameters, or read them from the cache file. This function does
1293 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
1294 client-side params. */
1298 if (!dh_server_params)
1299 if ((rc = init_server_dh(errstr)) != OK) return rc;
1300 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
1303 /* Link the credentials to the session. */
1305 if ((rc = gnutls_credentials_set(state->session,
1306 GNUTLS_CRD_CERTIFICATE, state->x509_cred)))
1307 return tls_error_gnu(US"gnutls_credentials_set", rc, host, errstr);
1312 /*************************************************
1313 * Initialize for GnuTLS *
1314 *************************************************/
1317 #ifndef DISABLE_OCSP
1320 tls_is_buggy_ocsp(void)
1323 uschar maj, mid, mic;
1325 s = CUS gnutls_check_version(NULL);
1329 while (*s && *s != '.') s++;
1330 mid = atoi(CCS ++s);
1337 while (*s && *s != '.') s++;
1338 mic = atoi(CCS ++s);
1339 return mic <= (mid == 3 ? 16 : 3);
1348 /* Called from both server and client code. In the case of a server, errors
1349 before actual TLS negotiation return DEFER.
1352 host connected host, if client; NULL if server
1353 certificate certificate file
1354 privatekey private key file
1355 sni TLS SNI to send, sometimes when client; else NULL
1358 require_ciphers tls_require_ciphers setting
1359 caller_state returned state-info structure
1360 errstr error string pointer
1362 Returns: OK/DEFER/FAIL
1367 const host_item *host,
1368 const uschar *certificate,
1369 const uschar *privatekey,
1373 const uschar *require_ciphers,
1374 exim_gnutls_state_st **caller_state,
1378 exim_gnutls_state_st * state;
1381 const char * errpos;
1384 if (!exim_gnutls_base_init_done)
1386 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
1388 #ifdef HAVE_GNUTLS_PKCS11
1389 /* By default, gnutls_global_init will init PKCS11 support in auto mode,
1390 which loads modules from a config file, which sounds good and may be wanted
1391 by some sysadmin, but also means in common configurations that GNOME keyring
1392 environment variables are used and so breaks for users calling mailq.
1393 To prevent this, we init PKCS11 first, which is the documented approach. */
1394 if (!gnutls_allow_auto_pkcs11)
1395 if ((rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL)))
1396 return tls_error_gnu(US"gnutls_pkcs11_init", rc, host, errstr);
1399 if ((rc = gnutls_global_init()))
1400 return tls_error_gnu(US"gnutls_global_init", rc, host, errstr);
1402 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1405 gnutls_global_set_log_function(exim_gnutls_logger_cb);
1406 /* arbitrarily chosen level; bump up to 9 for more */
1407 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
1411 #ifndef DISABLE_OCSP
1412 if (tls_ocsp_file && (gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
1413 log_write(0, LOG_MAIN, "OCSP unusable with this GnuTLS library version");
1416 exim_gnutls_base_init_done = TRUE;
1421 /* For client-side sessions we allocate a context. This lets us run
1422 several in parallel. */
1423 int old_pool = store_pool;
1424 store_pool = POOL_PERM;
1425 state = store_get(sizeof(exim_gnutls_state_st), FALSE);
1426 store_pool = old_pool;
1428 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1430 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
1431 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
1435 state = &state_server;
1436 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1438 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
1439 rc = gnutls_init(&state->session, GNUTLS_SERVER);
1442 return tls_error_gnu(US"gnutls_init", rc, host, errstr);
1446 state->tls_certificate = certificate;
1447 state->tls_privatekey = privatekey;
1448 state->tls_require_ciphers = require_ciphers;
1449 state->tls_sni = sni;
1450 state->tls_verify_certificates = cas;
1451 state->tls_crl = crl;
1453 /* This handles the variables that might get re-expanded after TLS SNI;
1454 that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
1457 debug_printf("Expanding various TLS configuration options for session credentials.\n");
1458 if ((rc = tls_expand_session_files(state, errstr)) != OK) return rc;
1460 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
1461 requires a new structure afterwards. */
1463 if ((rc = tls_set_remaining_x509(state, errstr)) != OK) return rc;
1465 /* set SNI in client, only */
1468 if (!expand_check(sni, US"tls_out_sni", &state->tlsp->sni, errstr))
1470 if (state->tlsp->sni && *state->tlsp->sni)
1473 debug_printf("Setting TLS client SNI to \"%s\"\n", state->tlsp->sni);
1474 sz = Ustrlen(state->tlsp->sni);
1475 if ((rc = gnutls_server_name_set(state->session,
1476 GNUTLS_NAME_DNS, state->tlsp->sni, sz)))
1477 return tls_error_gnu(US"gnutls_server_name_set", rc, host, errstr);
1480 else if (state->tls_sni)
1481 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
1482 "have an SNI set for a server [%s]\n", state->tls_sni);
1484 /* This is the priority string support,
1485 http://www.gnutls.org/manual/html_node/Priority-Strings.html
1486 and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
1487 This was backwards incompatible, but means Exim no longer needs to track
1488 all algorithms and provide string forms for them. */
1491 if (state->tls_require_ciphers && *state->tls_require_ciphers)
1493 if (!expand_check_tlsvar(tls_require_ciphers, errstr))
1495 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
1497 p = state->exp_tls_require_ciphers;
1498 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n", p);
1503 p = exim_default_gnutls_priority;
1505 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n", p);
1508 if ((rc = gnutls_priority_init(&state->priority_cache, CCS p, &errpos)))
1509 return tls_error_gnu(string_sprintf(
1510 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
1511 p, errpos - CS p, errpos),
1514 if ((rc = gnutls_priority_set(state->session, state->priority_cache)))
1515 return tls_error_gnu(US"gnutls_priority_set", rc, host, errstr);
1517 /* This also sets the server ticket expiration time to the same, and
1518 the STEK rotation time to 3x. */
1520 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
1522 /* Reduce security in favour of increased compatibility, if the admin
1523 decides to make that trade-off. */
1524 if (gnutls_compat_mode)
1526 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
1527 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
1528 gnutls_session_enable_compatibility_mode(state->session);
1530 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
1534 *caller_state = state;
1540 /*************************************************
1541 * Extract peer information *
1542 *************************************************/
1544 static const uschar *
1545 cipher_stdname_kcm(gnutls_kx_algorithm_t kx, gnutls_cipher_algorithm_t cipher,
1546 gnutls_mac_algorithm_t mac)
1549 gnutls_kx_algorithm_t kx_i;
1550 gnutls_cipher_algorithm_t cipher_i;
1551 gnutls_mac_algorithm_t mac_i;
1554 gnutls_cipher_suite_info(i, cs_id, &kx_i, &cipher_i, &mac_i, NULL);
1556 if (kx_i == kx && cipher_i == cipher && mac_i == mac)
1557 return cipher_stdname(cs_id[0], cs_id[1]);
1563 /* Called from both server and client code.
1564 Only this is allowed to set state->peerdn and state->have_set_peerdn
1565 and we use that to detect double-calls.
1567 NOTE: the state blocks last while the TLS connection is up, which is fine
1568 for logging in the server side, but for the client side, we log after teardown
1569 in src/deliver.c. While the session is up, we can twist about states and
1570 repoint tls_* globals, but those variables used for logging or other variable
1571 expansion that happens _after_ delivery need to have a longer life-time.
1573 So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
1574 doing this more than once per generation of a state context. We set them in
1575 the state context, and repoint tls_* to them. After the state goes away, the
1576 tls_* copies of the pointers remain valid and client delivery logging is happy.
1578 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
1582 state exim_gnutls_state_st *
1583 errstr pointer to error string
1585 Returns: OK/DEFER/FAIL
1589 peer_status(exim_gnutls_state_st * state, uschar ** errstr)
1591 gnutls_session_t session = state->session;
1592 const gnutls_datum_t * cert_list;
1594 unsigned int cert_list_size = 0;
1595 gnutls_protocol_t protocol;
1596 gnutls_cipher_algorithm_t cipher;
1597 gnutls_kx_algorithm_t kx;
1598 gnutls_mac_algorithm_t mac;
1599 gnutls_certificate_type_t ct;
1600 gnutls_x509_crt_t crt;
1604 if (state->have_set_peerdn)
1606 state->have_set_peerdn = TRUE;
1608 state->peerdn = NULL;
1611 cipher = gnutls_cipher_get(session);
1612 protocol = gnutls_protocol_get_version(session);
1613 mac = gnutls_mac_get(session);
1615 #ifdef GNUTLS_TLS1_3
1616 protocol >= GNUTLS_TLS1_3 ? 0 :
1618 gnutls_kx_get(session);
1620 old_pool = store_pool;
1622 tls_support * tlsp = state->tlsp;
1623 store_pool = POOL_PERM;
1625 #ifdef SUPPORT_GNUTLS_SESS_DESC
1628 uschar * s = US gnutls_session_get_desc(session), c;
1630 /* Nikos M suggests we use this by preference. It returns like:
1631 (TLS1.3)-(ECDHE-SECP256R1)-(RSA-PSS-RSAE-SHA256)-(AES-256-GCM)
1633 For partial back-compat, put a colon after the TLS version, replace the
1634 )-( grouping with __, replace in-group - with _ and append the :keysize. */
1636 /* debug_printf("peer_status: gnutls_session_get_desc %s\n", s); */
1638 for (s++; (c = *s) && c != ')'; s++) g = string_catn(g, s, 1);
1639 g = string_catn(g, US":", 1);
1640 if (*s) s++; /* now on _ between groups */
1643 for (*++s && ++s; (c = *s) && c != ')'; s++) g = string_catn(g, c == '-' ? US"_" : s, 1);
1644 /* now on ) closing group */
1645 if ((c = *s) && *++s == '-') g = string_catn(g, US"__", 2);
1646 /* now on _ between groups */
1648 g = string_catn(g, US":", 1);
1649 g = string_cat(g, string_sprintf("%d", (int) gnutls_cipher_get_key_size(cipher) * 8));
1650 state->ciphersuite = string_from_gstring(g);
1653 state->ciphersuite = string_sprintf("%s:%s:%d",
1654 gnutls_protocol_get_name(protocol),
1655 gnutls_cipher_suite_get_name(kx, cipher, mac),
1656 (int) gnutls_cipher_get_key_size(cipher) * 8);
1658 /* I don't see a way that spaces could occur, in the current GnuTLS
1659 code base, but it was a concern in the old code and perhaps older GnuTLS
1660 releases did return "TLS 1.0"; play it safe, just in case. */
1662 for (uschar * p = state->ciphersuite; *p; p++) if (isspace(*p)) *p = '-';
1665 /* debug_printf("peer_status: ciphersuite %s\n", state->ciphersuite); */
1667 tlsp->cipher = state->ciphersuite;
1668 tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
1670 tlsp->cipher_stdname = cipher_stdname_kcm(kx, cipher, mac);
1672 store_pool = old_pool;
1675 cert_list = gnutls_certificate_get_peers(session, &cert_list_size);
1677 if (!cert_list || cert_list_size == 0)
1679 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
1680 cert_list, cert_list_size);
1681 if (state->verify_requirement >= VERIFY_REQUIRED)
1682 return tls_error(US"certificate verification failed",
1683 US"no certificate received from peer", state->host, errstr);
1687 if ((ct = gnutls_certificate_type_get(session)) != GNUTLS_CRT_X509)
1689 const uschar * ctn = US gnutls_certificate_type_get_name(ct);
1691 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1692 if (state->verify_requirement >= VERIFY_REQUIRED)
1693 return tls_error(US"certificate verification not possible, unhandled type",
1694 ctn, state->host, errstr);
1698 #define exim_gnutls_peer_err(Label) \
1700 if (rc != GNUTLS_E_SUCCESS) \
1702 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", \
1703 (Label), gnutls_strerror(rc)); \
1704 if (state->verify_requirement >= VERIFY_REQUIRED) \
1705 return tls_error_gnu((Label), rc, state->host, errstr); \
1710 rc = import_cert(&cert_list[0], &crt);
1711 exim_gnutls_peer_err(US"cert 0");
1713 state->tlsp->peercert = state->peercert = crt;
1716 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1717 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
1719 exim_gnutls_peer_err(US"getting size for cert DN failed");
1720 return FAIL; /* should not happen */
1722 dn_buf = store_get_perm(sz, TRUE); /* tainted */
1723 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1724 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1726 state->peerdn = dn_buf;
1729 #undef exim_gnutls_peer_err
1735 /*************************************************
1736 * Verify peer certificate *
1737 *************************************************/
1739 /* Called from both server and client code.
1740 *Should* be using a callback registered with
1741 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1742 the peer information, but that's too new for some OSes.
1745 state exim_gnutls_state_st *
1746 errstr where to put an error message
1749 FALSE if the session should be rejected
1750 TRUE if the cert is okay or we just don't care
1754 verify_certificate(exim_gnutls_state_st * state, uschar ** errstr)
1759 DEBUG(D_tls) debug_printf("TLS: checking peer certificate\n");
1761 rc = peer_status(state, errstr);
1763 if (state->verify_requirement == VERIFY_NONE)
1766 if (rc != OK || !state->peerdn)
1768 verify = GNUTLS_CERT_INVALID;
1769 *errstr = US"certificate not supplied";
1775 if (state->verify_requirement == VERIFY_DANE && state->host)
1777 /* Using dane_verify_session_crt() would be easy, as it does it all for us
1778 including talking to a DNS resolver. But we want to do that bit ourselves
1779 as the testsuite intercepts and fakes its own DNS environment. */
1784 const gnutls_datum_t * certlist =
1785 gnutls_certificate_get_peers(state->session, &lsize);
1786 int usage = tls_out.tlsa_usage;
1788 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1789 /* Split the TLSA records into two sets, TA and EE selectors. Run the
1790 dane-verification separately so that we know which selector verified;
1791 then we know whether to do name-verification (needed for TA but not EE). */
1793 if (usage == ((1<<DANESSL_USAGE_DANE_TA) | (1<<DANESSL_USAGE_DANE_EE)))
1794 { /* a mixed-usage bundle */
1799 for(nrec = 0; state->dane_data_len[nrec]; ) nrec++;
1802 dd = store_get(nrec * sizeof(uschar *), FALSE);
1803 ddl = store_get(nrec * sizeof(int), FALSE);
1806 if ((rc = dane_state_init(&s, 0)))
1809 for (usage = DANESSL_USAGE_DANE_EE;
1810 usage >= DANESSL_USAGE_DANE_TA; usage--)
1811 { /* take records with this usage */
1812 for (j = i = 0; i < nrec; i++)
1813 if (state->dane_data[i][0] == usage)
1815 dd[j] = state->dane_data[i];
1816 ddl[j++] = state->dane_data_len[i];
1823 if ((rc = dane_raw_tlsa(s, &r, (char * const *)dd, ddl, 1, 0)))
1826 if ((rc = dane_verify_crt_raw(s, certlist, lsize,
1827 gnutls_certificate_type_get(state->session),
1829 usage == DANESSL_USAGE_DANE_EE
1830 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
1834 debug_printf("TLSA record problem: %s\n", dane_strerror(rc));
1836 else if (verify == 0) /* verification passed */
1844 if (rc) goto tlsa_prob;
1849 if ( (rc = dane_state_init(&s, 0))
1850 || (rc = dane_raw_tlsa(s, &r, state->dane_data, state->dane_data_len,
1852 || (rc = dane_verify_crt_raw(s, certlist, lsize,
1853 gnutls_certificate_type_get(state->session),
1855 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1856 usage == (1 << DANESSL_USAGE_DANE_EE)
1857 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
1866 if (verify != 0) /* verification failed */
1869 (void) dane_verification_status_print(verify, &str, 0);
1870 *errstr = US str.data; /* don't bother to free */
1874 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1875 /* If a TA-mode TLSA record was used for verification we must additionally
1876 verify the cert name (but not the CA chain). For EE-mode, skip it. */
1878 if (usage & (1 << DANESSL_USAGE_DANE_EE))
1881 state->peer_dane_verified = state->peer_cert_verified = TRUE;
1884 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1885 /* Assume that the name on the A-record is the one that should be matching
1886 the cert. An alternate view is that the domain part of the email address
1887 is also permissible. */
1889 if (gnutls_x509_crt_check_hostname(state->tlsp->peercert,
1890 CS state->host->name))
1892 state->peer_dane_verified = state->peer_cert_verified = TRUE;
1897 #endif /*SUPPORT_DANE*/
1899 rc = gnutls_certificate_verify_peers2(state->session, &verify);
1902 /* Handle the result of verification. INVALID is set if any others are. */
1904 if (rc < 0 || verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED))
1906 state->peer_cert_verified = FALSE;
1909 #ifdef GNUTLS_CERT_VFY_STATUS_PRINT
1914 if (gnutls_certificate_verification_status_print(verify,
1915 gnutls_certificate_type_get(state->session), &txt, 0)
1916 == GNUTLS_E_SUCCESS)
1918 debug_printf("%s\n", txt.data);
1919 gnutls_free(txt.data);
1923 *errstr = verify & GNUTLS_CERT_REVOKED
1924 ? US"certificate revoked" : US"certificate invalid";
1928 debug_printf("TLS certificate verification failed (%s): peerdn=\"%s\"\n",
1929 *errstr, state->peerdn ? state->peerdn : US"<unset>");
1931 if (state->verify_requirement >= VERIFY_REQUIRED)
1934 debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
1939 /* Client side, check the server's certificate name versus the name on the
1940 A-record for the connection we made. What to do for server side - what name
1941 to use for client? We document that there is no such checking for server
1944 if ( state->exp_tls_verify_cert_hostnames
1945 && !gnutls_x509_crt_check_hostname(state->tlsp->peercert,
1946 CS state->exp_tls_verify_cert_hostnames)
1950 debug_printf("TLS certificate verification failed: cert name mismatch\n");
1951 if (state->verify_requirement >= VERIFY_REQUIRED)
1956 state->peer_cert_verified = TRUE;
1957 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=\"%s\"\n",
1958 state->peerdn ? state->peerdn : US"<unset>");
1962 state->tlsp->peerdn = state->peerdn;
1967 *errstr = string_sprintf("TLSA record problem: %s",
1968 rc == DANE_E_REQUESTED_DATA_NOT_AVAILABLE ? "none usable" : dane_strerror(rc));
1972 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1979 /* ------------------------------------------------------------------------ */
1982 /* Logging function which can be registered with
1983 * gnutls_global_set_log_function()
1984 * gnutls_global_set_log_level() 0..9
1986 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1988 exim_gnutls_logger_cb(int level, const char *message)
1990 size_t len = strlen(message);
1993 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
1996 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
1997 message[len-1] == '\n' ? "" : "\n");
2002 /* Called after client hello, should handle SNI work.
2003 This will always set tls_sni (state->received_sni) if available,
2004 and may trigger presenting different certificates,
2005 if state->trigger_sni_changes is TRUE.
2007 Should be registered with
2008 gnutls_handshake_set_post_client_hello_function()
2010 "This callback must return 0 on success or a gnutls error code to terminate the
2013 For inability to get SNI information, we return 0.
2014 We only return non-zero if re-setup failed.
2015 Only used for server-side TLS.
2019 exim_sni_handling_cb(gnutls_session_t session)
2021 char sni_name[MAX_HOST_LEN];
2022 size_t data_len = MAX_HOST_LEN;
2023 exim_gnutls_state_st *state = &state_server;
2024 unsigned int sni_type;
2026 uschar * dummy_errstr;
2028 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
2029 if (rc != GNUTLS_E_SUCCESS)
2032 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
2033 debug_printf("TLS: no SNI presented in handshake.\n");
2035 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
2036 gnutls_strerror(rc), rc);
2040 if (sni_type != GNUTLS_NAME_DNS)
2042 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
2046 /* We now have a UTF-8 string in sni_name */
2047 old_pool = store_pool;
2048 store_pool = POOL_PERM;
2049 state->received_sni = string_copy_taint(US sni_name, TRUE);
2050 store_pool = old_pool;
2052 /* We set this one now so that variable expansions below will work */
2053 state->tlsp->sni = state->received_sni;
2055 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
2056 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
2058 if (!state->trigger_sni_changes)
2061 if ((rc = tls_expand_session_files(state, &dummy_errstr)) != OK)
2063 /* If the setup of certs/etc failed before handshake, TLS would not have
2064 been offered. The best we can do now is abort. */
2065 return GNUTLS_E_APPLICATION_ERROR_MIN;
2068 rc = tls_set_remaining_x509(state, &dummy_errstr);
2069 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
2076 #if !defined(DISABLE_OCSP)
2079 server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
2080 gnutls_datum_t * ocsp_response)
2083 DEBUG(D_tls) debug_printf("OCSP stapling callback: %s\n", US ptr);
2085 if ((ret = gnutls_load_file(ptr, ocsp_response)) < 0)
2087 DEBUG(D_tls) debug_printf("Failed to load ocsp stapling file %s\n",
2089 tls_in.ocsp = OCSP_NOT_RESP;
2090 return GNUTLS_E_NO_CERTIFICATE_STATUS;
2093 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
2100 #ifndef DISABLE_EVENT
2102 We use this callback to get observability and detail-level control
2103 for an exim TLS connection (either direction), raising a tls:cert event
2104 for each cert in the chain presented by the peer. Any event
2105 can deny verification.
2107 Return 0 for the handshake to continue or non-zero to terminate.
2111 verify_cb(gnutls_session_t session)
2113 const gnutls_datum_t * cert_list;
2114 unsigned int cert_list_size = 0;
2115 gnutls_x509_crt_t crt;
2118 exim_gnutls_state_st * state = gnutls_session_get_ptr(session);
2120 if ((cert_list = gnutls_certificate_get_peers(session, &cert_list_size)))
2121 while (cert_list_size--)
2123 if ((rc = import_cert(&cert_list[cert_list_size], &crt)) != GNUTLS_E_SUCCESS)
2125 DEBUG(D_tls) debug_printf("TLS: peer cert problem: depth %d: %s\n",
2126 cert_list_size, gnutls_strerror(rc));
2130 state->tlsp->peercert = crt;
2131 if ((yield = event_raise(state->event_action,
2132 US"tls:cert", string_sprintf("%d", cert_list_size))))
2134 log_write(0, LOG_MAIN,
2135 "SSL verify denied by event-action: depth=%d: %s",
2136 cert_list_size, yield);
2137 return 1; /* reject */
2139 state->tlsp->peercert = NULL;
2149 ddump(gnutls_datum_t * d)
2151 gstring * g = string_get((d->size+1) * 2);
2152 uschar * s = d->data;
2153 for (unsigned i = d->size; i > 0; i--, s++)
2155 g = string_catn(g, US "0123456789abcdef" + (*s >> 4), 1);
2156 g = string_catn(g, US "0123456789abcdef" + (*s & 0xf), 1);
2162 post_handshake_debug(exim_gnutls_state_st * state)
2164 #ifdef SUPPORT_GNUTLS_SESS_DESC
2165 debug_printf("%s\n", gnutls_session_get_desc(state->session));
2167 #ifdef SUPPORT_GNUTLS_KEYLOG
2168 # ifdef GNUTLS_TLS1_3
2169 if (gnutls_protocol_get_version(state->session) < GNUTLS_TLS1_3)
2174 gnutls_datum_t c, s;
2176 /* we only want the client random and the master secret */
2177 gnutls_session_get_random(state->session, &c, &s);
2178 gnutls_session_get_master_secret(state->session, &s);
2181 debug_printf("CLIENT_RANDOM %.*s %.*s\n", (int)gc->ptr, gc->s, (int)gs->ptr, gs->s);
2184 debug_printf("To get keying info for TLS1.3 is hard:\n"
2185 " set environment variable SSLKEYLOGFILE to a filename writable by uid exim\n"
2186 " add SSLKEYLOGFILE to keep_environment in the exim config\n"
2187 " run exim as root\n"
2188 " if using sudo, add SSLKEYLOGFILE to env_keep in /etc/sudoers\n");
2193 #ifdef EXPERIMENTAL_TLS_RESUME
2195 tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2196 unsigned incoming, const gnutls_datum_t * msg)
2198 DEBUG(D_tls) debug_printf("newticket cb\n");
2199 tls_in.resumption |= RESUME_CLIENT_REQUESTED;
2204 tls_server_resume_prehandshake(exim_gnutls_state_st * state)
2206 /* Should the server offer session resumption? */
2207 tls_in.resumption = RESUME_SUPPORTED;
2208 if (verify_check_host(&tls_resumption_hosts) == OK)
2211 /* GnuTLS appears to not do ticket overlap, but does emit a fresh ticket when
2212 an offered resumption is unacceptable. We lose one resumption per ticket
2213 lifetime, and sessions cannot be indefinitely re-used. There seems to be no
2214 way (3.6.7) of changing the default number of 2 TLS1.3 tickets issued, but at
2215 least they go out in a single packet. */
2217 if (!(rc = gnutls_session_ticket_enable_server(state->session,
2218 &server_sessticket_key)))
2219 tls_in.resumption |= RESUME_SERVER_TICKET;
2222 debug_printf("enabling session tickets: %s\n", US gnutls_strerror(rc));
2224 /* Try to tell if we see a ticket request */
2225 gnutls_handshake_set_hook_function(state->session,
2226 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
2231 tls_server_resume_posthandshake(exim_gnutls_state_st * state)
2233 if (gnutls_session_resumption_requested(state->session))
2235 /* This tells us the client sent a full ticket. We use a
2236 callback on session-ticket request, elsewhere, to tell
2237 if a client asked for a ticket. */
2239 tls_in.resumption |= RESUME_CLIENT_SUGGESTED;
2240 DEBUG(D_tls) debug_printf("client requested resumption\n");
2242 if (gnutls_session_is_resumed(state->session))
2244 tls_in.resumption |= RESUME_USED;
2245 DEBUG(D_tls) debug_printf("Session resumed\n");
2249 /* ------------------------------------------------------------------------ */
2250 /* Exported functions */
2255 /*************************************************
2256 * Start a TLS session in a server *
2257 *************************************************/
2259 /* This is called when Exim is running as a server, after having received
2260 the STARTTLS command. It must respond to that command, and then negotiate
2264 require_ciphers list of allowed ciphers or NULL
2265 errstr pointer to error string
2267 Returns: OK on success
2268 DEFER for errors before the start of the negotiation
2269 FAIL for errors during the negotiation; the server can't
2274 tls_server_start(const uschar * require_ciphers, uschar ** errstr)
2277 exim_gnutls_state_st * state = NULL;
2279 /* Check for previous activation */
2280 if (tls_in.active.sock >= 0)
2282 tls_error(US"STARTTLS received after TLS started", US "", NULL, errstr);
2283 smtp_printf("554 Already in TLS\r\n", FALSE);
2287 /* Initialize the library. If it fails, it will already have logged the error
2288 and sent an SMTP response. */
2290 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
2292 if ((rc = tls_init(NULL, tls_certificate, tls_privatekey,
2293 NULL, tls_verify_certificates, tls_crl,
2294 require_ciphers, &state, &tls_in, errstr)) != OK) return rc;
2296 #ifdef EXPERIMENTAL_TLS_RESUME
2297 tls_server_resume_prehandshake(state);
2300 /* If this is a host for which certificate verification is mandatory or
2301 optional, set up appropriately. */
2303 if (verify_check_host(&tls_verify_hosts) == OK)
2306 debug_printf("TLS: a client certificate will be required.\n");
2307 state->verify_requirement = VERIFY_REQUIRED;
2308 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2310 else if (verify_check_host(&tls_try_verify_hosts) == OK)
2313 debug_printf("TLS: a client certificate will be requested but not required.\n");
2314 state->verify_requirement = VERIFY_OPTIONAL;
2315 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2320 debug_printf("TLS: a client certificate will not be requested.\n");
2321 state->verify_requirement = VERIFY_NONE;
2322 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2325 #ifndef DISABLE_EVENT
2328 state->event_action = event_action;
2329 gnutls_session_set_ptr(state->session, state);
2330 gnutls_certificate_set_verify_function(state->x509_cred, verify_cb);
2334 /* Register SNI handling; always, even if not in tls_certificate, so that the
2335 expansion variable $tls_sni is always available. */
2337 gnutls_handshake_set_post_client_hello_function(state->session,
2338 exim_sni_handling_cb);
2340 /* Set context and tell client to go ahead, except in the case of TLS startup
2341 on connection, where outputting anything now upsets the clients and tends to
2342 make them disconnect. We need to have an explicit fflush() here, to force out
2343 the response. Other smtp_printf() calls do not need it, because in non-TLS
2344 mode, the fflush() happens when smtp_getc() is called. */
2346 if (!state->tlsp->on_connect)
2348 smtp_printf("220 TLS go ahead\r\n", FALSE);
2352 /* Now negotiate the TLS session. We put our own timer on it, since it seems
2353 that the GnuTLS library doesn't.
2354 From 3.1.0 there is gnutls_handshake_set_timeout() - but it requires you
2355 to set (and clear down afterwards) up a pull-timeout callback function that does
2356 a select, so we're no better off unless avoiding signals becomes an issue. */
2358 gnutls_transport_set_ptr2(state->session,
2359 (gnutls_transport_ptr_t)(long) fileno(smtp_in),
2360 (gnutls_transport_ptr_t)(long) fileno(smtp_out));
2361 state->fd_in = fileno(smtp_in);
2362 state->fd_out = fileno(smtp_out);
2364 sigalrm_seen = FALSE;
2365 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2367 rc = gnutls_handshake(state->session);
2368 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2371 if (rc != GNUTLS_E_SUCCESS)
2373 /* It seems that, except in the case of a timeout, we have to close the
2374 connection right here; otherwise if the other end is running OpenSSL it hangs
2375 until the server times out. */
2379 tls_error(US"gnutls_handshake", US"timed out", NULL, errstr);
2380 gnutls_db_remove_session(state->session);
2384 tls_error_gnu(US"gnutls_handshake", rc, NULL, errstr);
2385 (void) gnutls_alert_send_appropriate(state->session, rc);
2386 gnutls_deinit(state->session);
2387 gnutls_certificate_free_credentials(state->x509_cred);
2389 shutdown(state->fd_out, SHUT_WR);
2390 for (int i = 1024; fgetc(smtp_in) != EOF && i > 0; ) i--; /* drain skt */
2391 (void)fclose(smtp_out);
2392 (void)fclose(smtp_in);
2393 smtp_out = smtp_in = NULL;
2399 #ifdef EXPERIMENTAL_TLS_RESUME
2400 tls_server_resume_posthandshake(state);
2403 DEBUG(D_tls) post_handshake_debug(state);
2405 /* Verify after the fact */
2407 if (!verify_certificate(state, errstr))
2409 if (state->verify_requirement != VERIFY_OPTIONAL)
2411 (void) tls_error(US"certificate verification failed", *errstr, NULL, errstr);
2415 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
2419 /* Sets various Exim expansion variables; always safe within server */
2421 extract_exim_vars_from_tls_state(state);
2423 /* TLS has been set up. Adjust the input functions to read via TLS,
2424 and initialize appropriately. */
2426 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
2428 receive_getc = tls_getc;
2429 receive_getbuf = tls_getbuf;
2430 receive_get_cache = tls_get_cache;
2431 receive_ungetc = tls_ungetc;
2432 receive_feof = tls_feof;
2433 receive_ferror = tls_ferror;
2434 receive_smtp_buffered = tls_smtp_buffered;
2443 tls_client_setup_hostname_checks(host_item * host, exim_gnutls_state_st * state,
2444 smtp_transport_options_block * ob)
2446 if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
2448 state->exp_tls_verify_cert_hostnames =
2450 string_domain_utf8_to_alabel(host->name, NULL);
2455 debug_printf("TLS: server cert verification includes hostname: \"%s\".\n",
2456 state->exp_tls_verify_cert_hostnames);
2464 /* Given our list of RRs from the TLSA lookup, build a lookup block in
2465 GnuTLS-DANE's preferred format. Hang it on the state str for later
2466 use in DANE verification.
2468 We point at the dnsa data not copy it, so it must remain valid until
2469 after verification is done.*/
2472 dane_tlsa_load(exim_gnutls_state_st * state, dns_answer * dnsa)
2476 const char ** dane_data;
2477 int * dane_data_len;
2480 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
2481 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
2482 ) if (rr->type == T_TLSA) i++;
2484 dane_data = store_get(i * sizeof(uschar *), FALSE);
2485 dane_data_len = store_get(i * sizeof(int), FALSE);
2488 for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
2489 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
2490 ) if (rr->type == T_TLSA && rr->size > 3)
2492 const uschar * p = rr->data;
2493 /*XXX need somehow to mark rr and its data as tainted. Doues this mean copying it? */
2494 uint8_t usage = p[0], sel = p[1], type = p[2];
2497 debug_printf("TLSA: %d %d %d size %d\n", usage, sel, type, rr->size);
2499 if ( (usage != DANESSL_USAGE_DANE_TA && usage != DANESSL_USAGE_DANE_EE)
2500 || (sel != 0 && sel != 1)
2505 case 0: /* Full: cannot check at present */
2507 case 1: if (rr->size != 3 + 256/8) continue; /* sha2-256 */
2509 case 2: if (rr->size != 3 + 512/8) continue; /* sha2-512 */
2514 tls_out.tlsa_usage |= 1<<usage;
2515 dane_data[i] = CS p;
2516 dane_data_len[i++] = rr->size;
2519 if (!i) return FALSE;
2521 dane_data[i] = NULL;
2522 dane_data_len[i] = 0;
2524 state->dane_data = (char * const *)dane_data;
2525 state->dane_data_len = dane_data_len;
2532 #ifdef EXPERIMENTAL_TLS_RESUME
2533 /* On the client, get any stashed session for the given IP from hints db
2534 and apply it to the ssl-connection for attempted resumption. Although
2535 there is a gnutls_session_ticket_enable_client() interface it is
2536 documented as unnecessary (as of 3.6.7) as "session tickets are emabled
2537 by deafult". There seems to be no way to disable them, so even hosts not
2538 enabled by the transport option will be sent a ticket request. We will
2539 however avoid storing and retrieving session information. */
2542 tls_retrieve_session(tls_support * tlsp, gnutls_session_t session,
2543 host_item * host, smtp_transport_options_block * ob)
2545 tlsp->resumption = RESUME_SUPPORTED;
2546 if (verify_check_given_host(CUSS &ob->tls_resumption_hosts, host) == OK)
2548 dbdata_tls_session * dt;
2550 open_db dbblock, * dbm_file;
2553 debug_printf("check for resumable session for %s\n", host->address);
2554 tlsp->host_resumable = TRUE;
2555 tlsp->resumption |= RESUME_CLIENT_REQUESTED;
2556 if ((dbm_file = dbfn_open(US"tls", O_RDONLY, &dbblock, FALSE, FALSE)))
2558 /* Key for the db is the IP. We'd like to filter the retrieved session
2559 for ticket advisory expiry, but 3.6.1 seems to give no access to that */
2561 if ((dt = dbfn_read_with_length(dbm_file, host->address, &len)))
2562 if (!(rc = gnutls_session_set_data(session,
2563 CUS dt->session, (size_t)len - sizeof(dbdata_tls_session))))
2565 DEBUG(D_tls) debug_printf("good session\n");
2566 tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
2568 else DEBUG(D_tls) debug_printf("setting session resumption data: %s\n",
2569 US gnutls_strerror(rc));
2570 dbfn_close(dbm_file);
2577 tls_save_session(tls_support * tlsp, gnutls_session_t session, const host_item * host)
2579 /* TLS 1.2 - we get both the callback and the direct posthandshake call,
2580 but this flag is not set until the second. TLS 1.3 it's the other way about.
2581 Keep both calls as the session data cannot be extracted before handshake
2584 if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
2589 DEBUG(D_tls) debug_printf("server offered session ticket\n");
2590 tlsp->ticket_received = TRUE;
2591 tlsp->resumption |= RESUME_SERVER_TICKET;
2593 if (tlsp->host_resumable)
2594 if (!(rc = gnutls_session_get_data2(session, &tkt)))
2596 open_db dbblock, * dbm_file;
2597 int dlen = sizeof(dbdata_tls_session) + tkt.size;
2598 dbdata_tls_session * dt = store_get(dlen, TRUE);
2600 DEBUG(D_tls) debug_printf("session data size %u\n", (unsigned)tkt.size);
2601 memcpy(dt->session, tkt.data, tkt.size);
2602 gnutls_free(tkt.data);
2604 if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
2606 /* key for the db is the IP */
2607 dbfn_delete(dbm_file, host->address);
2608 dbfn_write(dbm_file, host->address, dt, dlen);
2609 dbfn_close(dbm_file);
2612 debug_printf("wrote session db (len %u)\n", (unsigned)dlen);
2616 debug_printf("extract session data: %s\n", US gnutls_strerror(rc));
2621 /* With a TLS1.3 session, the ticket(s) are not seen until
2622 the first data read is attempted. And there's often two of them.
2623 Pick them up with this callback. We are also called for 1.2
2627 tls_client_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2628 unsigned incoming, const gnutls_datum_t * msg)
2630 exim_gnutls_state_st * state = gnutls_session_get_ptr(sess);
2631 tls_support * tlsp = state->tlsp;
2633 DEBUG(D_tls) debug_printf("newticket cb\n");
2635 if (!tlsp->ticket_received)
2636 tls_save_session(tlsp, sess, state->host);
2642 tls_client_resume_prehandshake(exim_gnutls_state_st * state,
2643 tls_support * tlsp, host_item * host,
2644 smtp_transport_options_block * ob)
2646 gnutls_session_set_ptr(state->session, state);
2647 gnutls_handshake_set_hook_function(state->session,
2648 GNUTLS_HANDSHAKE_NEW_SESSION_TICKET, GNUTLS_HOOK_POST, tls_client_ticket_cb);
2650 tls_retrieve_session(tlsp, state->session, host, ob);
2654 tls_client_resume_posthandshake(exim_gnutls_state_st * state,
2655 tls_support * tlsp, host_item * host)
2657 if (gnutls_session_is_resumed(state->session))
2659 DEBUG(D_tls) debug_printf("Session resumed\n");
2660 tlsp->resumption |= RESUME_USED;
2663 tls_save_session(tlsp, state->session, host);
2665 #endif /* EXPERIMENTAL_TLS_RESUME */
2668 /*************************************************
2669 * Start a TLS session in a client *
2670 *************************************************/
2672 /* Called from the smtp transport after STARTTLS has been accepted.
2675 cctx connection context
2676 conn_args connection details
2677 cookie datum for randomness (not used)
2678 tlsp record details of channel configuration here; must be non-NULL
2679 errstr error string pointer
2681 Returns: TRUE for success with TLS session context set in smtp context,
2686 tls_client_start(client_conn_ctx * cctx, smtp_connect_args * conn_args,
2687 void * cookie ARG_UNUSED,
2688 tls_support * tlsp, uschar ** errstr)
2690 host_item * host = conn_args->host; /* for msgs and option-tests */
2691 transport_instance * tb = conn_args->tblock; /* always smtp or NULL */
2692 smtp_transport_options_block * ob = tb
2693 ? (smtp_transport_options_block *)tb->options_block
2694 : &smtp_transport_option_defaults;
2696 exim_gnutls_state_st * state = NULL;
2697 uschar * cipher_list = NULL;
2699 #ifndef DISABLE_OCSP
2701 verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK;
2702 BOOL request_ocsp = require_ocsp ? TRUE
2703 : verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
2706 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", cctx->sock);
2709 /* If dane is flagged, have either request or require dane for this host, and
2710 a TLSA record found. Therefore, dane verify required. Which implies cert must
2711 be requested and supplied, dane verify must pass, and cert verify irrelevant
2712 (incl. hostnames), and (caller handled) require_tls */
2714 if (conn_args->dane && ob->dane_require_tls_ciphers)
2716 /* not using expand_check_tlsvar because not yet in state */
2717 if (!expand_check(ob->dane_require_tls_ciphers, US"dane_require_tls_ciphers",
2718 &cipher_list, errstr))
2720 cipher_list = cipher_list && *cipher_list
2721 ? ob->dane_require_tls_ciphers : ob->tls_require_ciphers;
2726 cipher_list = ob->tls_require_ciphers;
2728 if (tls_init(host, ob->tls_certificate, ob->tls_privatekey,
2729 ob->tls_sni, ob->tls_verify_certificates, ob->tls_crl,
2730 cipher_list, &state, tlsp, errstr) != OK)
2734 int dh_min_bits = ob->tls_dh_min_bits;
2735 if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
2738 debug_printf("WARNING: tls_dh_min_bits far too low,"
2739 " clamping %d up to %d\n",
2740 dh_min_bits, EXIM_CLIENT_DH_MIN_MIN_BITS);
2741 dh_min_bits = EXIM_CLIENT_DH_MIN_MIN_BITS;
2744 DEBUG(D_tls) debug_printf("Setting D-H prime minimum"
2745 " acceptable bits to %d\n",
2747 gnutls_dh_set_prime_bits(state->session, dh_min_bits);
2750 /* Stick to the old behaviour for compatibility if tls_verify_certificates is
2751 set but both tls_verify_hosts and tls_try_verify_hosts are unset. Check only
2752 the specified host patterns if one of them is defined */
2755 if (conn_args->dane && dane_tlsa_load(state, &conn_args->tlsa_dnsa))
2758 debug_printf("TLS: server certificate DANE required.\n");
2759 state->verify_requirement = VERIFY_DANE;
2760 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2764 if ( ( state->exp_tls_verify_certificates
2765 && !ob->tls_verify_hosts
2766 && (!ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts)
2768 || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
2771 tls_client_setup_hostname_checks(host, state, ob);
2773 debug_printf("TLS: server certificate verification required.\n");
2774 state->verify_requirement = VERIFY_REQUIRED;
2775 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2777 else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
2779 tls_client_setup_hostname_checks(host, state, ob);
2781 debug_printf("TLS: server certificate verification optional.\n");
2782 state->verify_requirement = VERIFY_OPTIONAL;
2783 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2788 debug_printf("TLS: server certificate verification not required.\n");
2789 state->verify_requirement = VERIFY_NONE;
2790 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2793 #ifndef DISABLE_OCSP
2794 /* supported since GnuTLS 3.1.3 */
2797 DEBUG(D_tls) debug_printf("TLS: will request OCSP stapling\n");
2798 if ((rc = gnutls_ocsp_status_request_enable_client(state->session,
2799 NULL, 0, NULL)) != OK)
2801 tls_error_gnu(US"cert-status-req", rc, state->host, errstr);
2804 tlsp->ocsp = OCSP_NOT_RESP;
2808 #ifdef EXPERIMENTAL_TLS_RESUME
2809 tls_client_resume_prehandshake(state, tlsp, host, ob);
2812 #ifndef DISABLE_EVENT
2813 if (tb && tb->event_action)
2815 state->event_action = tb->event_action;
2816 gnutls_session_set_ptr(state->session, state);
2817 gnutls_certificate_set_verify_function(state->x509_cred, verify_cb);
2821 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr_t)(long) cctx->sock);
2822 state->fd_in = cctx->sock;
2823 state->fd_out = cctx->sock;
2825 DEBUG(D_tls) debug_printf("about to gnutls_handshake\n");
2826 /* There doesn't seem to be a built-in timeout on connection. */
2828 sigalrm_seen = FALSE;
2829 ALARM(ob->command_timeout);
2831 rc = gnutls_handshake(state->session);
2832 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2835 if (rc != GNUTLS_E_SUCCESS)
2839 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_USER_CANCELED);
2840 tls_error(US"gnutls_handshake", US"timed out", state->host, errstr);
2843 tls_error_gnu(US"gnutls_handshake", rc, state->host, errstr);
2847 DEBUG(D_tls) post_handshake_debug(state);
2851 if (!verify_certificate(state, errstr))
2853 tls_error(US"certificate verification failed", *errstr, state->host, errstr);
2857 #ifndef DISABLE_OCSP
2862 gnutls_datum_t stapling;
2863 gnutls_ocsp_resp_t resp;
2864 gnutls_datum_t printed;
2865 if ( (rc= gnutls_ocsp_status_request_get(state->session, &stapling)) == 0
2866 && (rc= gnutls_ocsp_resp_init(&resp)) == 0
2867 && (rc= gnutls_ocsp_resp_import(resp, &stapling)) == 0
2868 && (rc= gnutls_ocsp_resp_print(resp, GNUTLS_OCSP_PRINT_FULL, &printed)) == 0
2871 debug_printf("%.4096s", printed.data);
2872 gnutls_free(printed.data);
2875 (void) tls_error_gnu(US"ocsp decode", rc, state->host, errstr);
2878 if (gnutls_ocsp_status_request_is_checked(state->session, 0) == 0)
2880 tlsp->ocsp = OCSP_FAILED;
2881 tls_error(US"certificate status check failed", NULL, state->host, errstr);
2887 DEBUG(D_tls) debug_printf("Passed OCSP checking\n");
2888 tlsp->ocsp = OCSP_VFIED;
2893 #ifdef EXPERIMENTAL_TLS_RESUME
2894 tls_client_resume_posthandshake(state, tlsp, host);
2897 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
2899 extract_exim_vars_from_tls_state(state);
2901 cctx->tls_ctx = state;
2908 /*************************************************
2909 * Close down a TLS session *
2910 *************************************************/
2912 /* This is also called from within a delivery subprocess forked from the
2913 daemon, to shut down the TLS library, without actually doing a shutdown (which
2914 would tamper with the TLS session in the parent process).
2917 ct_ctx client context pointer, or NULL for the one global server context
2918 shutdown 1 if TLS close-alert is to be sent,
2919 2 if also response to be waited for
2925 tls_close(void * ct_ctx, int shutdown)
2927 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
2928 tls_support * tlsp = state->tlsp;
2930 if (!tlsp || tlsp->active.sock < 0) return; /* TLS was not active */
2934 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
2935 shutdown > 1 ? " (with response-wait)" : "");
2938 gnutls_bye(state->session, shutdown > 1 ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
2942 if (!ct_ctx) /* server */
2944 receive_getc = smtp_getc;
2945 receive_getbuf = smtp_getbuf;
2946 receive_get_cache = smtp_get_cache;
2947 receive_ungetc = smtp_ungetc;
2948 receive_feof = smtp_feof;
2949 receive_ferror = smtp_ferror;
2950 receive_smtp_buffered = smtp_buffered;
2953 gnutls_deinit(state->session);
2954 gnutls_certificate_free_credentials(state->x509_cred);
2956 tlsp->active.sock = -1;
2957 tlsp->active.tls_ctx = NULL;
2958 /* Leave bits, peercert, cipher, peerdn, certificate_verified set, for logging */
2959 tls_channelbinding_b64 = NULL;
2962 if (state->xfer_buffer) store_free(state->xfer_buffer);
2963 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
2970 tls_refill(unsigned lim)
2972 exim_gnutls_state_st * state = &state_server;
2975 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
2976 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
2978 sigalrm_seen = FALSE;
2979 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2982 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
2983 MIN(ssl_xfer_buffer_size, lim));
2984 while (inbytes == GNUTLS_E_AGAIN);
2986 if (smtp_receive_timeout > 0) ALARM_CLR(0);
2988 if (had_command_timeout) /* set by signal handler */
2989 smtp_command_timeout_exit(); /* does not return */
2990 if (had_command_sigterm)
2991 smtp_command_sigterm_exit();
2992 if (had_data_timeout)
2993 smtp_data_timeout_exit();
2994 if (had_data_sigint)
2995 smtp_data_sigint_exit();
2997 /* Timeouts do not get this far. A zero-byte return appears to mean that the
2998 TLS session has been closed down, not that the socket itself has been closed
2999 down. Revert to non-TLS handling. */
3003 DEBUG(D_tls) debug_printf("Got tls read timeout\n");
3004 state->xfer_error = TRUE;
3008 else if (inbytes == 0)
3010 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3011 tls_close(NULL, TLS_NO_SHUTDOWN);
3015 /* Handle genuine errors */
3017 else if (inbytes < 0)
3019 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3020 record_io_error(state, (int) inbytes, US"recv", NULL);
3021 state->xfer_error = TRUE;
3024 #ifndef DISABLE_DKIM
3025 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
3027 state->xfer_buffer_hwm = (int) inbytes;
3028 state->xfer_buffer_lwm = 0;
3032 /*************************************************
3033 * TLS version of getc *
3034 *************************************************/
3036 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
3037 it refills the buffer via the GnuTLS reading function.
3038 Only used by the server-side TLS.
3040 This feeds DKIM and should be used for all message-body reads.
3042 Arguments: lim Maximum amount to read/buffer
3043 Returns: the next character or EOF
3047 tls_getc(unsigned lim)
3049 exim_gnutls_state_st * state = &state_server;
3051 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3052 if (!tls_refill(lim))
3053 return state->xfer_error ? EOF : smtp_getc(lim);
3055 /* Something in the buffer; return next uschar */
3057 return state->xfer_buffer[state->xfer_buffer_lwm++];
3061 tls_getbuf(unsigned * len)
3063 exim_gnutls_state_st * state = &state_server;
3067 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3068 if (!tls_refill(*len))
3070 if (!state->xfer_error) return smtp_getbuf(len);
3075 if ((size = state->xfer_buffer_hwm - state->xfer_buffer_lwm) > *len)
3077 buf = &state->xfer_buffer[state->xfer_buffer_lwm];
3078 state->xfer_buffer_lwm += size;
3087 #ifndef DISABLE_DKIM
3088 exim_gnutls_state_st * state = &state_server;
3089 int n = state->xfer_buffer_hwm - state->xfer_buffer_lwm;
3091 dkim_exim_verify_feed(state->xfer_buffer+state->xfer_buffer_lwm, n);
3097 tls_could_read(void)
3099 return state_server.xfer_buffer_lwm < state_server.xfer_buffer_hwm
3100 || gnutls_record_check_pending(state_server.session) > 0;
3106 /*************************************************
3107 * Read bytes from TLS channel *
3108 *************************************************/
3110 /* This does not feed DKIM, so if the caller uses this for reading message body,
3111 then the caller must feed DKIM.
3114 ct_ctx client context pointer, or NULL for the one global server context
3118 Returns: the number of bytes read
3119 -1 after a failed read, including EOF
3123 tls_read(void * ct_ctx, uschar *buff, size_t len)
3125 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3131 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
3133 debug_printf("*** PROBABLY A BUG *** " \
3134 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
3135 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
3138 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
3139 state->session, buff, len);
3142 inbytes = gnutls_record_recv(state->session, buff, len);
3143 while (inbytes == GNUTLS_E_AGAIN);
3145 if (inbytes > 0) return inbytes;
3148 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3152 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3153 record_io_error(state, (int)inbytes, US"recv", NULL);
3162 /*************************************************
3163 * Write bytes down TLS channel *
3164 *************************************************/
3168 ct_ctx client context pointer, or NULL for the one global server context
3171 more more data expected soon
3173 Returns: the number of bytes after a successful write,
3174 -1 after a failed write
3178 tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
3182 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3184 static BOOL corked = FALSE;
3186 if (more && !corked) gnutls_record_cork(state->session);
3189 DEBUG(D_tls) debug_printf("%s(%p, " SIZE_T_FMT "%s)\n", __FUNCTION__,
3190 buff, left, more ? ", more" : "");
3194 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
3198 outbytes = gnutls_record_send(state->session, buff, left);
3199 while (outbytes == GNUTLS_E_AGAIN);
3201 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
3204 DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
3205 record_io_error(state, outbytes, US"send", NULL);
3210 record_io_error(state, 0, US"send", US"TLS channel closed on write");
3221 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
3229 if (!more) (void) gnutls_record_uncork(state->session, 0);
3240 /*************************************************
3241 * Random number generation *
3242 *************************************************/
3244 /* Pseudo-random number generation. The result is not expected to be
3245 cryptographically strong but not so weak that someone will shoot themselves
3246 in the foot using it as a nonce in input in some email header scheme or
3247 whatever weirdness they'll twist this into. The result should handle fork()
3248 and avoid repeating sequences. OpenSSL handles that for us.
3252 Returns a random number in range [0, max-1]
3255 #ifdef HAVE_GNUTLS_RND
3257 vaguely_random_number(int max)
3261 uschar smallbuf[sizeof(r)];
3266 needed_len = sizeof(r);
3267 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
3268 asked for a number less than 10. */
3270 for (r = max, i = 0; r; ++i)
3276 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
3279 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
3280 return vaguely_random_number_fallback(max);
3283 for (uschar * p = smallbuf; needed_len; --needed_len, ++p)
3286 /* We don't particularly care about weighted results; if someone wants
3287 * smooth distribution and cares enough then they should submit a patch then. */
3290 #else /* HAVE_GNUTLS_RND */
3292 vaguely_random_number(int max)
3294 return vaguely_random_number_fallback(max);
3296 #endif /* HAVE_GNUTLS_RND */
3301 /*************************************************
3302 * Let tls_require_ciphers be checked at startup *
3303 *************************************************/
3305 /* The tls_require_ciphers option, if set, must be something which the
3308 Returns: NULL on success, or error message
3312 tls_validate_require_cipher(void)
3315 uschar *expciphers = NULL;
3316 gnutls_priority_t priority_cache;
3318 uschar * dummy_errstr;
3320 #define validate_check_rc(Label) do { \
3321 if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) gnutls_global_deinit(); \
3322 return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
3323 #define return_deinit(Label) do { gnutls_global_deinit(); return (Label); } while (0)
3325 if (exim_gnutls_base_init_done)
3326 log_write(0, LOG_MAIN|LOG_PANIC,
3327 "already initialised GnuTLS, Exim developer bug");
3329 #ifdef HAVE_GNUTLS_PKCS11
3330 if (!gnutls_allow_auto_pkcs11)
3332 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
3333 validate_check_rc(US"gnutls_pkcs11_init");
3336 rc = gnutls_global_init();
3337 validate_check_rc(US"gnutls_global_init()");
3338 exim_gnutls_base_init_done = TRUE;
3340 if (!(tls_require_ciphers && *tls_require_ciphers))
3341 return_deinit(NULL);
3343 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
3345 return_deinit(US"failed to expand tls_require_ciphers");
3347 if (!(expciphers && *expciphers))
3348 return_deinit(NULL);
3351 debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
3353 rc = gnutls_priority_init(&priority_cache, CS expciphers, &errpos);
3354 validate_check_rc(string_sprintf(
3355 "gnutls_priority_init(%s) failed at offset %ld, \"%.8s..\"",
3356 expciphers, errpos - CS expciphers, errpos));
3358 #undef return_deinit
3359 #undef validate_check_rc
3360 gnutls_global_deinit();
3368 /*************************************************
3369 * Report the library versions. *
3370 *************************************************/
3372 /* See a description in tls-openssl.c for an explanation of why this exists.
3374 Arguments: a FILE* to print the results to
3379 tls_version_report(FILE *f)
3381 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
3384 gnutls_check_version(NULL));
3387 #endif /*!MACRO_PREDEF*/
3390 /* End of tls-gnu.c */