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 >= 0x030506 && !defined(DISABLE_OCSP)
71 # define SUPPORT_SRV_OCSP_STACK
75 # if GNUTLS_VERSION_NUMBER >= 0x030000
76 # define DANESSL_USAGE_DANE_TA 2
77 # define DANESSL_USAGE_DANE_EE 3
79 # error GnuTLS version too early for DANE
81 # if GNUTLS_VERSION_NUMBER < 0x999999
82 # define GNUTLS_BROKEN_DANE_VALIDATION
87 # include <gnutls/ocsp.h>
90 # include <gnutls/dane.h>
96 gnutls_global_set_audit_log_function()
99 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
102 /* Local static variables for GnuTLS */
104 /* Values for verify_requirement */
106 enum peer_verify_requirement
107 { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED, VERIFY_DANE };
109 /* This holds most state for server or client; with this, we can set up an
110 outbound TLS-enabled connection in an ACL callout, while not stomping all
111 over the TLS variables available for expansion.
113 Some of these correspond to variables in globals.c; those variables will
114 be set to point to content in one of these instances, as appropriate for
115 the stage of the process lifetime.
117 Not handled here: global tls_channelbinding_b64.
120 typedef struct exim_gnutls_state {
121 gnutls_session_t session;
122 gnutls_certificate_credentials_t x509_cred;
123 gnutls_priority_t priority_cache;
124 enum peer_verify_requirement verify_requirement;
127 BOOL peer_cert_verified;
128 BOOL peer_dane_verified;
129 BOOL trigger_sni_changes;
130 BOOL have_set_peerdn;
131 const struct host_item *host; /* NULL if server */
132 gnutls_x509_crt_t peercert;
135 uschar *received_sni;
137 const uschar *tls_certificate;
138 const uschar *tls_privatekey;
139 const uschar *tls_sni; /* client send only, not received */
140 const uschar *tls_verify_certificates;
141 const uschar *tls_crl;
142 const uschar *tls_require_ciphers;
144 uschar *exp_tls_certificate;
145 uschar *exp_tls_privatekey;
146 uschar *exp_tls_verify_certificates;
148 uschar *exp_tls_require_ciphers;
149 const uschar *exp_tls_verify_cert_hostnames;
150 #ifndef DISABLE_EVENT
151 uschar *event_action;
154 char * const * dane_data;
155 const int * dane_data_len;
158 tls_support *tlsp; /* set in tls_init() */
163 BOOL xfer_eof; /*XXX never gets set! */
165 } exim_gnutls_state_st;
167 static const exim_gnutls_state_st exim_gnutls_state_init = {
170 .priority_cache = NULL,
171 .verify_requirement = VERIFY_NONE,
174 .peer_cert_verified = FALSE,
175 .peer_dane_verified = FALSE,
176 .trigger_sni_changes =FALSE,
177 .have_set_peerdn = FALSE,
182 .received_sni = NULL,
184 .tls_certificate = NULL,
185 .tls_privatekey = NULL,
187 .tls_verify_certificates = NULL,
189 .tls_require_ciphers =NULL,
191 .exp_tls_certificate = NULL,
192 .exp_tls_privatekey = NULL,
193 .exp_tls_verify_certificates = NULL,
195 .exp_tls_require_ciphers = NULL,
196 .exp_tls_verify_cert_hostnames = NULL,
197 #ifndef DISABLE_EVENT
198 .event_action = NULL,
203 .xfer_buffer_lwm = 0,
204 .xfer_buffer_hwm = 0,
209 /* Not only do we have our own APIs which don't pass around state, assuming
210 it's held in globals, GnuTLS doesn't appear to let us register callback data
211 for callbacks, or as part of the session, so we have to keep a "this is the
212 context we're currently dealing with" pointer and rely upon being
213 single-threaded to keep from processing data on an inbound TLS connection while
214 talking to another TLS connection for an outbound check. This does mean that
215 there's no way for heart-beats to be responded to, for the duration of the
217 XXX But see gnutls_session_get_ptr()
220 static exim_gnutls_state_st state_server;
222 /* dh_params are initialised once within the lifetime of a process using TLS;
223 if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
224 don't want to repeat this. */
226 static gnutls_dh_params_t dh_server_params = NULL;
228 /* No idea how this value was chosen; preserving it. Default is 3600. */
230 static const int ssl_session_timeout = 200;
232 static const char * const exim_default_gnutls_priority = "NORMAL";
234 /* Guard library core initialisation */
236 static BOOL exim_gnutls_base_init_done = FALSE;
239 static BOOL gnutls_buggy_ocsp = FALSE;
243 /* ------------------------------------------------------------------------ */
246 #define MAX_HOST_LEN 255
248 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
249 the library logging; a value less than 0 disables the calls to set up logging
250 callbacks. Possibly GNuTLS also looks for an environment variable
251 "GNUTLS_DEBUG_LEVEL". */
252 #ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
253 # define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
256 #ifndef EXIM_CLIENT_DH_MIN_BITS
257 # define EXIM_CLIENT_DH_MIN_BITS 1024
260 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
261 can ask for a bit-strength. Without that, we stick to the constant we had
263 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
264 # define EXIM_SERVER_DH_BITS_PRE2_12 1024
267 #define exim_gnutls_err_check(rc, Label) do { \
268 if ((rc) != GNUTLS_E_SUCCESS) \
269 return tls_error((Label), US gnutls_strerror(rc), host, errstr); \
272 #define expand_check_tlsvar(Varname, errstr) \
273 expand_check(state->Varname, US #Varname, &state->exp_##Varname, errstr)
275 #if GNUTLS_VERSION_NUMBER >= 0x020c00
276 # define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
277 # define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
278 # define HAVE_GNUTLS_RND
279 /* The security fix we provide with the gnutls_allow_auto_pkcs11 option
280 * (4.82 PP/09) introduces a compatibility regression. The symbol simply
281 * isn't available sometimes, so this needs to become a conditional
282 * compilation; the sanest way to deal with this being a problem on
283 * older OSes is to block it in the Local/Makefile with this compiler
285 # ifndef AVOID_GNUTLS_PKCS11
286 # define HAVE_GNUTLS_PKCS11
287 # endif /* AVOID_GNUTLS_PKCS11 */
293 /* ------------------------------------------------------------------------ */
294 /* Callback declarations */
296 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
297 static void exim_gnutls_logger_cb(int level, const char *message);
300 static int exim_sni_handling_cb(gnutls_session_t session);
303 static int server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
304 gnutls_datum_t * ocsp_response);
309 /* ------------------------------------------------------------------------ */
310 /* Static functions */
312 /*************************************************
314 *************************************************/
316 /* Called from lots of places when errors occur before actually starting to do
317 the TLS handshake, that is, while the session is still in clear. Always returns
318 DEFER for a server and FAIL for a client so that most calls can use "return
319 tls_error(...)" to do this processing and then give an appropriate return. A
320 single function is used for both server and client, because it is called from
321 some shared functions.
324 prefix text to include in the logged error
325 msg additional error string (may be NULL)
326 usually obtained from gnutls_strerror()
327 host NULL if setting up a server;
328 the connected host if setting up a client
329 errstr pointer to returned error string
331 Returns: OK/DEFER/FAIL
335 tls_error(const uschar *prefix, const uschar *msg, const host_item *host,
339 *errstr = string_sprintf("(%s)%s%s", prefix, msg ? ": " : "", msg ? msg : US"");
340 return host ? FAIL : DEFER;
346 /*************************************************
347 * Deal with logging errors during I/O *
348 *************************************************/
350 /* We have to get the identity of the peer from saved data.
353 state the current GnuTLS exim state container
354 rc the GnuTLS error code, or 0 if it's a local error
355 when text identifying read or write
356 text local error text when ec is 0
362 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
367 if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED)
368 msg = string_sprintf("%s: %s", US gnutls_strerror(rc),
369 US gnutls_alert_get_name(gnutls_alert_get(state->session)));
371 msg = US gnutls_strerror(rc);
373 (void) tls_error(when, msg, state->host, &errstr);
376 log_write(0, LOG_MAIN, "H=%s [%s] TLS error on connection %s",
377 state->host->name, state->host->address, errstr);
380 uschar * conn_info = smtp_get_connection_info();
381 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
382 /* I'd like to get separated H= here, but too hard for now */
383 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
390 /*************************************************
391 * Set various Exim expansion vars *
392 *************************************************/
394 #define exim_gnutls_cert_err(Label) \
397 if (rc != GNUTLS_E_SUCCESS) \
399 DEBUG(D_tls) debug_printf("TLS: cert problem: %s: %s\n", \
400 (Label), gnutls_strerror(rc)); \
406 import_cert(const gnutls_datum_t * cert, gnutls_x509_crt_t * crtp)
410 rc = gnutls_x509_crt_init(crtp);
411 exim_gnutls_cert_err(US"gnutls_x509_crt_init (crt)");
413 rc = gnutls_x509_crt_import(*crtp, cert, GNUTLS_X509_FMT_DER);
414 exim_gnutls_cert_err(US"failed to import certificate [gnutls_x509_crt_import(cert)]");
419 #undef exim_gnutls_cert_err
422 /* We set various Exim global variables from the state, once a session has
423 been established. With TLS callouts, may need to change this to stack
424 variables, or just re-call it with the server state after client callout
427 Make sure anything set here is unset in tls_getc().
431 tls_bits strength indicator
432 tls_certificate_verified bool indicator
433 tls_channelbinding_b64 for some SASL mechanisms
435 tls_peercert pointer to library internal
437 tls_sni a (UTF-8) string
438 tls_ourcert pointer to library internal
441 state the relevant exim_gnutls_state_st *
445 extract_exim_vars_from_tls_state(exim_gnutls_state_st * state)
447 gnutls_cipher_algorithm_t cipher;
448 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
451 gnutls_datum_t channel;
453 tls_support * tlsp = state->tlsp;
455 tlsp->active.sock = state->fd_out;
456 tlsp->active.tls_ctx = state;
458 cipher = gnutls_cipher_get(state->session);
459 /* returns size in "bytes" */
460 tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
462 tlsp->cipher = state->ciphersuite;
464 DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
466 tlsp->certificate_verified = state->peer_cert_verified;
468 tlsp->dane_verified = state->peer_dane_verified;
471 /* note that tls_channelbinding_b64 is not saved to the spool file, since it's
472 only available for use for authenticators while this TLS session is running. */
474 tls_channelbinding_b64 = NULL;
475 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
478 rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel);
480 DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc));
482 old_pool = store_pool;
483 store_pool = POOL_PERM;
484 tls_channelbinding_b64 = b64encode(channel.data, (int)channel.size);
485 store_pool = old_pool;
486 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage.\n");
490 /* peercert is set in peer_status() */
491 tlsp->peerdn = state->peerdn;
492 tlsp->sni = state->received_sni;
494 /* record our certificate */
496 const gnutls_datum_t * cert = gnutls_certificate_get_ours(state->session);
497 gnutls_x509_crt_t crt;
499 tlsp->ourcert = cert && import_cert(cert, &crt)==0 ? crt : NULL;
506 /*************************************************
507 * Setup up DH parameters *
508 *************************************************/
510 /* Generating the D-H parameters may take a long time. They only need to
511 be re-generated every so often, depending on security policy. What we do is to
512 keep these parameters in a file in the spool directory. If the file does not
513 exist, we generate them. This means that it is easy to cause a regeneration.
515 The new file is written as a temporary file and renamed, so that an incomplete
516 file is never present. If two processes both compute some new parameters, you
517 waste a bit of effort, but it doesn't seem worth messing around with locking to
520 Returns: OK/DEFER/FAIL
524 init_server_dh(uschar ** errstr)
527 unsigned int dh_bits;
529 uschar filename_buf[PATH_MAX];
530 uschar *filename = NULL;
532 uschar *exp_tls_dhparam;
533 BOOL use_file_in_spool = FALSE;
534 BOOL use_fixed_file = FALSE;
535 host_item *host = NULL; /* dummy for macros */
537 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
539 rc = gnutls_dh_params_init(&dh_server_params);
540 exim_gnutls_err_check(rc, US"gnutls_dh_params_init");
545 if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam, errstr))
548 if (!exp_tls_dhparam)
550 DEBUG(D_tls) debug_printf("Loading default hard-coded DH params\n");
551 m.data = US std_dh_prime_default();
552 m.size = Ustrlen(m.data);
554 else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
555 use_file_in_spool = TRUE;
556 else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
558 DEBUG(D_tls) debug_printf("Requested no DH parameters.\n");
561 else if (exp_tls_dhparam[0] != '/')
563 if (!(m.data = US std_dh_prime_named(exp_tls_dhparam)))
564 return tls_error(US"No standard prime named", exp_tls_dhparam, NULL, errstr);
565 m.size = Ustrlen(m.data);
569 use_fixed_file = TRUE;
570 filename = exp_tls_dhparam;
575 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
576 exim_gnutls_err_check(rc, US"gnutls_dh_params_import_pkcs3");
577 DEBUG(D_tls) debug_printf("Loaded fixed standard D-H parameters\n");
581 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
582 /* If you change this constant, also change dh_param_fn_ext so that we can use a
583 different filename and ensure we have sufficient bits. */
584 dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL);
586 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL, errstr);
588 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits.\n",
591 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
593 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
597 /* Some clients have hard-coded limits. */
598 if (dh_bits > tls_dh_max_bits)
601 debug_printf("tls_dh_max_bits clamping override, using %d bits instead.\n",
603 dh_bits = tls_dh_max_bits;
606 if (use_file_in_spool)
608 if (!string_format(filename_buf, sizeof(filename_buf),
609 "%s/gnutls-params-%d", spool_directory, dh_bits))
610 return tls_error(US"overlong filename", NULL, NULL, errstr);
611 filename = filename_buf;
614 /* Open the cache file for reading and if successful, read it and set up the
617 if ((fd = Uopen(filename, O_RDONLY, 0)) >= 0)
623 if (fstat(fd, &statbuf) < 0) /* EIO */
627 return tls_error(US"TLS cache stat failed", US strerror(saved_errno), NULL, errstr);
629 if (!S_ISREG(statbuf.st_mode))
632 return tls_error(US"TLS cache not a file", NULL, NULL, errstr);
634 if (!(fp = fdopen(fd, "rb")))
638 return tls_error(US"fdopen(TLS cache stat fd) failed",
639 US strerror(saved_errno), NULL, errstr);
642 m.size = statbuf.st_size;
643 if (!(m.data = malloc(m.size)))
646 return tls_error(US"malloc failed", US strerror(errno), NULL, errstr);
648 if (!(sz = fread(m.data, m.size, 1, fp)))
653 return tls_error(US"fread failed", US strerror(saved_errno), NULL, errstr);
657 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
659 exim_gnutls_err_check(rc, US"gnutls_dh_params_import_pkcs3");
660 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
663 /* If the file does not exist, fall through to compute new data and cache it.
664 If there was any other opening error, it is serious. */
666 else if (errno == ENOENT)
670 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
673 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
676 /* If ret < 0, either the cache file does not exist, or the data it contains
677 is not useful. One particular case of this is when upgrading from an older
678 release of Exim in which the data was stored in a different format. We don't
679 try to be clever and support both formats; we just regenerate new data in this
685 unsigned int dh_bits_gen = dh_bits;
687 if ((PATH_MAX - Ustrlen(filename)) < 10)
688 return tls_error(US"Filename too long to generate replacement",
689 filename, NULL, errstr);
691 temp_fn = string_copy(US"%s.XXXXXXX");
692 if ((fd = mkstemp(CS temp_fn)) < 0) /* modifies temp_fn */
693 return tls_error(US"Unable to open temp file", US strerror(errno), NULL, errstr);
694 (void)fchown(fd, exim_uid, exim_gid); /* Probably not necessary */
696 /* GnuTLS overshoots!
697 * If we ask for 2236, we might get 2237 or more.
698 * But there's no way to ask GnuTLS how many bits there really are.
699 * We can ask how many bits were used in a TLS session, but that's it!
700 * The prime itself is hidden behind too much abstraction.
701 * So we ask for less, and proceed on a wing and a prayer.
702 * First attempt, subtracted 3 for 2233 and got 2240.
704 if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
706 dh_bits_gen = dh_bits - 10;
708 debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
713 debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
715 rc = gnutls_dh_params_generate2(dh_server_params, dh_bits_gen);
716 exim_gnutls_err_check(rc, US"gnutls_dh_params_generate2");
718 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
719 and I confirmed that a NULL call to get the size first is how the GnuTLS
720 sample apps handle this. */
724 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
726 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
727 exim_gnutls_err_check(rc, US"gnutls_dh_params_export_pkcs3(NULL) sizing");
729 if (!(m.data = malloc(m.size)))
730 return tls_error(US"memory allocation failed", US strerror(errno), NULL, errstr);
732 /* this will return a size 1 less than the allocation size above */
733 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
735 if (rc != GNUTLS_E_SUCCESS)
738 exim_gnutls_err_check(rc, US"gnutls_dh_params_export_pkcs3() real");
740 m.size = sz; /* shrink by 1, probably */
742 if ((sz = write_to_fd_buf(fd, m.data, (size_t) m.size)) != m.size)
745 return tls_error(US"TLS cache write D-H params failed",
746 US strerror(errno), NULL, errstr);
749 if ((sz = write_to_fd_buf(fd, US"\n", 1)) != 1)
750 return tls_error(US"TLS cache write D-H params final newline failed",
751 US strerror(errno), NULL, errstr);
753 if ((rc = close(fd)))
754 return tls_error(US"TLS cache write close() failed", US strerror(errno), NULL, errstr);
756 if (Urename(temp_fn, filename) < 0)
757 return tls_error(string_sprintf("failed to rename \"%s\" as \"%s\"",
758 temp_fn, filename), US strerror(errno), NULL, errstr);
760 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
763 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
770 /* Create and install a selfsigned certificate, for use in server mode */
773 tls_install_selfsign(exim_gnutls_state_st * state, uschar ** errstr)
775 gnutls_x509_crt_t cert = NULL;
777 gnutls_x509_privkey_t pkey = NULL;
778 const uschar * where;
781 where = US"initialising pkey";
782 if ((rc = gnutls_x509_privkey_init(&pkey))) goto err;
784 where = US"initialising cert";
785 if ((rc = gnutls_x509_crt_init(&cert))) goto err;
787 where = US"generating pkey";
788 if ((rc = gnutls_x509_privkey_generate(pkey, GNUTLS_PK_RSA,
789 #ifdef SUPPORT_PARAM_TO_PK_BITS
790 gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_LOW),
797 where = US"configuring cert";
799 if ( (rc = gnutls_x509_crt_set_version(cert, 3))
800 || (rc = gnutls_x509_crt_set_serial(cert, &now, sizeof(now)))
801 || (rc = gnutls_x509_crt_set_activation_time(cert, now = time(NULL)))
802 || (rc = gnutls_x509_crt_set_expiration_time(cert, now + 60 * 60)) /* 1 hr */
803 || (rc = gnutls_x509_crt_set_key(cert, pkey))
805 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
806 GNUTLS_OID_X520_COUNTRY_NAME, 0, "UK", 2))
807 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
808 GNUTLS_OID_X520_ORGANIZATION_NAME, 0, "Exim Developers", 15))
809 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
810 GNUTLS_OID_X520_COMMON_NAME, 0,
811 smtp_active_hostname, Ustrlen(smtp_active_hostname)))
815 where = US"signing cert";
816 if ((rc = gnutls_x509_crt_sign(cert, cert, pkey))) goto err;
818 where = US"installing selfsign cert";
820 if ((rc = gnutls_certificate_set_x509_key(state->x509_cred, &cert, 1, pkey)))
826 if (cert) gnutls_x509_crt_deinit(cert);
827 if (pkey) gnutls_x509_privkey_deinit(pkey);
831 rc = tls_error(where, US gnutls_strerror(rc), NULL, errstr);
838 /* Add certificate and key, from files.
841 Zero or negative: good. Negate value for certificate index if < 0.
842 Greater than zero: FAIL or DEFER code.
846 tls_add_certfile(exim_gnutls_state_st * state, const host_item * host,
847 uschar * certfile, uschar * keyfile, uschar ** errstr)
849 int rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
850 CS certfile, CS keyfile, GNUTLS_X509_FMT_PEM);
853 string_sprintf("cert/key setup: cert=%s key=%s", certfile, keyfile),
854 US gnutls_strerror(rc), host, errstr);
859 /*************************************************
860 * Variables re-expanded post-SNI *
861 *************************************************/
863 /* Called from both server and client code, via tls_init(), and also from
864 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
866 We can tell the two apart by state->received_sni being non-NULL in callback.
868 The callback should not call us unless state->trigger_sni_changes is true,
869 which we are responsible for setting on the first pass through.
872 state exim_gnutls_state_st *
873 errstr error string pointer
875 Returns: OK/DEFER/FAIL
879 tls_expand_session_files(exim_gnutls_state_st * state, uschar ** errstr)
883 const host_item *host = state->host; /* macro should be reconsidered? */
884 uschar *saved_tls_certificate = NULL;
885 uschar *saved_tls_privatekey = NULL;
886 uschar *saved_tls_verify_certificates = NULL;
887 uschar *saved_tls_crl = NULL;
890 /* We check for tls_sni *before* expansion. */
891 if (!host) /* server */
892 if (!state->received_sni)
894 if ( state->tls_certificate
895 && ( Ustrstr(state->tls_certificate, US"tls_sni")
896 || Ustrstr(state->tls_certificate, US"tls_in_sni")
897 || Ustrstr(state->tls_certificate, US"tls_out_sni")
900 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
901 state->trigger_sni_changes = TRUE;
906 /* useful for debugging */
907 saved_tls_certificate = state->exp_tls_certificate;
908 saved_tls_privatekey = state->exp_tls_privatekey;
909 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
910 saved_tls_crl = state->exp_tls_crl;
913 rc = gnutls_certificate_allocate_credentials(&state->x509_cred);
914 exim_gnutls_err_check(rc, US"gnutls_certificate_allocate_credentials");
916 #ifdef SUPPORT_SRV_OCSP_STACK
917 gnutls_certificate_set_flags(state->x509_cred, GNUTLS_CERTIFICATE_API_V2);
920 /* remember: expand_check_tlsvar() is expand_check() but fiddling with
921 state members, assuming consistent naming; and expand_check() returns
922 false if expansion failed, unless expansion was forced to fail. */
924 /* check if we at least have a certificate, before doing expensive
927 if (!expand_check_tlsvar(tls_certificate, errstr))
930 /* certificate is mandatory in server, optional in client */
932 if ( !state->exp_tls_certificate
933 || !*state->exp_tls_certificate
936 return tls_install_selfsign(state, errstr);
938 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
940 if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey, errstr))
943 /* tls_privatekey is optional, defaulting to same file as certificate */
945 if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
947 state->tls_privatekey = state->tls_certificate;
948 state->exp_tls_privatekey = state->exp_tls_certificate;
952 if (state->exp_tls_certificate && *state->exp_tls_certificate)
954 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
955 state->exp_tls_certificate, state->exp_tls_privatekey);
957 if (state->received_sni)
958 if ( Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0
959 && Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0
962 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
966 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair.\n");
969 if (!host) /* server */
971 const uschar * clist = state->exp_tls_certificate;
972 const uschar * klist = state->exp_tls_privatekey;
973 const uschar * olist;
974 int csep = 0, ksep = 0, osep = 0, cnt = 0;
975 uschar * cfile, * kfile, * ofile;
978 if (!expand_check(tls_ocsp_file, US"tls_ocsp_file", &ofile, errstr))
983 while (cfile = string_nextinlist(&clist, &csep, NULL, 0))
985 if (!(kfile = string_nextinlist(&klist, &ksep, NULL, 0)))
986 return tls_error(US"cert/key setup: out of keys", NULL, host, errstr);
987 else if (0 < (rc = tls_add_certfile(state, host, cfile, kfile, errstr)))
991 int gnutls_cert_index = -rc;
992 DEBUG(D_tls) debug_printf("TLS: cert/key %s registered\n", cfile);
994 /* Set the OCSP stapling server info */
998 if (gnutls_buggy_ocsp)
1001 debug_printf("GnuTLS library is buggy for OCSP; avoiding\n");
1003 else if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
1005 /* Use the full callback method for stapling just to get
1006 observability. More efficient would be to read the file once only,
1007 if it never changed (due to SNI). Would need restart on file update,
1008 or watch datestamp. */
1010 # ifdef SUPPORT_SRV_OCSP_STACK
1011 rc = gnutls_certificate_set_ocsp_status_request_function2(
1012 state->x509_cred, gnutls_cert_index,
1013 server_ocsp_stapling_cb, ofile);
1015 exim_gnutls_err_check(rc,
1016 US"gnutls_certificate_set_ocsp_status_request_function2");
1021 debug_printf("oops; multiple OCSP files not supported\n");
1024 gnutls_certificate_set_ocsp_status_request_function(
1025 state->x509_cred, server_ocsp_stapling_cb, ofile);
1028 DEBUG(D_tls) debug_printf("OCSP response file = %s\n", ofile);
1031 DEBUG(D_tls) debug_printf("ran out of OCSP response files in list\n");
1037 if (0 < (rc = tls_add_certfile(state, host,
1038 state->exp_tls_certificate, state->exp_tls_privatekey, errstr)))
1040 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
1043 } /* tls_certificate */
1046 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
1047 provided. Experiment shows that, if the certificate file is empty, an unhelpful
1048 error message is provided. However, if we just refrain from setting anything up
1049 in that case, certificate verification fails, which seems to be the correct
1052 if (state->tls_verify_certificates && *state->tls_verify_certificates)
1054 if (!expand_check_tlsvar(tls_verify_certificates, errstr))
1056 #ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1057 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1058 state->exp_tls_verify_certificates = NULL;
1060 if (state->tls_crl && *state->tls_crl)
1061 if (!expand_check_tlsvar(tls_crl, errstr))
1064 if (!(state->exp_tls_verify_certificates &&
1065 *state->exp_tls_verify_certificates))
1068 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
1069 /* With no tls_verify_certificates, we ignore tls_crl too */
1076 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
1080 #ifdef SUPPORT_SYSDEFAULT_CABUNDLE
1081 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1082 cert_count = gnutls_certificate_set_x509_system_trust(state->x509_cred);
1086 if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
1088 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
1089 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
1094 #ifndef SUPPORT_CA_DIR
1095 /* The test suite passes in /dev/null; we could check for that path explicitly,
1096 but who knows if someone has some weird FIFO which always dumps some certs, or
1097 other weirdness. The thing we really want to check is that it's not a
1098 directory, since while OpenSSL supports that, GnuTLS does not.
1099 So s/!S_ISREG/S_ISDIR/ and change some messaging ... */
1100 if (S_ISDIR(statbuf.st_mode))
1103 debug_printf("verify certificates path is a dir: \"%s\"\n",
1104 state->exp_tls_verify_certificates);
1105 log_write(0, LOG_MAIN|LOG_PANIC,
1106 "tls_verify_certificates \"%s\" is a directory",
1107 state->exp_tls_verify_certificates);
1112 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
1113 state->exp_tls_verify_certificates, statbuf.st_size);
1115 if (statbuf.st_size == 0)
1118 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
1124 #ifdef SUPPORT_CA_DIR
1125 (statbuf.st_mode & S_IFMT) == S_IFDIR
1127 gnutls_certificate_set_x509_trust_dir(state->x509_cred,
1128 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM)
1131 gnutls_certificate_set_x509_trust_file(state->x509_cred,
1132 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
1138 exim_gnutls_err_check(rc, US"setting certificate trust");
1140 DEBUG(D_tls) debug_printf("Added %d certificate authorities.\n", cert_count);
1142 if (state->tls_crl && *state->tls_crl &&
1143 state->exp_tls_crl && *state->exp_tls_crl)
1145 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
1146 cert_count = gnutls_certificate_set_x509_crl_file(state->x509_cred,
1147 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM);
1151 exim_gnutls_err_check(rc, US"gnutls_certificate_set_x509_crl_file");
1153 DEBUG(D_tls) debug_printf("Processed %d CRLs.\n", cert_count);
1162 /*************************************************
1163 * Set X.509 state variables *
1164 *************************************************/
1166 /* In GnuTLS, the registered cert/key are not replaced by a later
1167 set of a cert/key, so for SNI support we need a whole new x509_cred
1168 structure. Which means various other non-re-expanded pieces of state
1169 need to be re-set in the new struct, so the setting logic is pulled
1173 state exim_gnutls_state_st *
1174 errstr error string pointer
1176 Returns: OK/DEFER/FAIL
1180 tls_set_remaining_x509(exim_gnutls_state_st *state, uschar ** errstr)
1183 const host_item *host = state->host; /* macro should be reconsidered? */
1185 /* Create D-H parameters, or read them from the cache file. This function does
1186 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
1187 client-side params. */
1191 if (!dh_server_params)
1193 rc = init_server_dh(errstr);
1194 if (rc != OK) return rc;
1196 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
1199 /* Link the credentials to the session. */
1201 rc = gnutls_credentials_set(state->session, GNUTLS_CRD_CERTIFICATE, state->x509_cred);
1202 exim_gnutls_err_check(rc, US"gnutls_credentials_set");
1207 /*************************************************
1208 * Initialize for GnuTLS *
1209 *************************************************/
1212 #ifndef DISABLE_OCSP
1215 tls_is_buggy_ocsp(void)
1218 uschar maj, mid, mic;
1220 s = CUS gnutls_check_version(NULL);
1224 while (*s && *s != '.') s++;
1225 mid = atoi(CCS ++s);
1232 while (*s && *s != '.') s++;
1233 mic = atoi(CCS ++s);
1234 return mic <= (mid == 3 ? 16 : 3);
1243 /* Called from both server and client code. In the case of a server, errors
1244 before actual TLS negotiation return DEFER.
1247 host connected host, if client; NULL if server
1248 certificate certificate file
1249 privatekey private key file
1250 sni TLS SNI to send, sometimes when client; else NULL
1253 require_ciphers tls_require_ciphers setting
1254 caller_state returned state-info structure
1255 errstr error string pointer
1257 Returns: OK/DEFER/FAIL
1262 const host_item *host,
1263 const uschar *certificate,
1264 const uschar *privatekey,
1268 const uschar *require_ciphers,
1269 exim_gnutls_state_st **caller_state,
1273 exim_gnutls_state_st *state;
1278 BOOL want_default_priorities;
1280 if (!exim_gnutls_base_init_done)
1282 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
1284 #ifdef HAVE_GNUTLS_PKCS11
1285 /* By default, gnutls_global_init will init PKCS11 support in auto mode,
1286 which loads modules from a config file, which sounds good and may be wanted
1287 by some sysadmin, but also means in common configurations that GNOME keyring
1288 environment variables are used and so breaks for users calling mailq.
1289 To prevent this, we init PKCS11 first, which is the documented approach. */
1290 if (!gnutls_allow_auto_pkcs11)
1292 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
1293 exim_gnutls_err_check(rc, US"gnutls_pkcs11_init");
1297 rc = gnutls_global_init();
1298 exim_gnutls_err_check(rc, US"gnutls_global_init");
1300 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1303 gnutls_global_set_log_function(exim_gnutls_logger_cb);
1304 /* arbitrarily chosen level; bump upto 9 for more */
1305 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
1309 #ifndef DISABLE_OCSP
1310 if (tls_ocsp_file && (gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
1311 log_write(0, LOG_MAIN, "OCSP unusable with this GnuTLS library version");
1314 exim_gnutls_base_init_done = TRUE;
1319 /* For client-side sessions we allocate a context. This lets us run
1320 several in parallel. */
1321 int old_pool = store_pool;
1322 store_pool = POOL_PERM;
1323 state = store_get(sizeof(exim_gnutls_state_st));
1324 store_pool = old_pool;
1326 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1328 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
1329 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
1333 state = &state_server;
1334 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1336 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
1337 rc = gnutls_init(&state->session, GNUTLS_SERVER);
1339 exim_gnutls_err_check(rc, US"gnutls_init");
1343 state->tls_certificate = certificate;
1344 state->tls_privatekey = privatekey;
1345 state->tls_require_ciphers = require_ciphers;
1346 state->tls_sni = sni;
1347 state->tls_verify_certificates = cas;
1348 state->tls_crl = crl;
1350 /* This handles the variables that might get re-expanded after TLS SNI;
1351 that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
1354 debug_printf("Expanding various TLS configuration options for session credentials.\n");
1355 if ((rc = tls_expand_session_files(state, errstr)) != OK) return rc;
1357 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
1358 requires a new structure afterwards. */
1360 if ((rc = tls_set_remaining_x509(state, errstr)) != OK) return rc;
1362 /* set SNI in client, only */
1365 if (!expand_check(sni, US"tls_out_sni", &state->tlsp->sni, errstr))
1367 if (state->tlsp->sni && *state->tlsp->sni)
1370 debug_printf("Setting TLS client SNI to \"%s\"\n", state->tlsp->sni);
1371 sz = Ustrlen(state->tlsp->sni);
1372 rc = gnutls_server_name_set(state->session,
1373 GNUTLS_NAME_DNS, state->tlsp->sni, sz);
1374 exim_gnutls_err_check(rc, US"gnutls_server_name_set");
1377 else if (state->tls_sni)
1378 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
1379 "have an SNI set for a server [%s]\n", state->tls_sni);
1381 /* This is the priority string support,
1382 http://www.gnutls.org/manual/html_node/Priority-Strings.html
1383 and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
1384 This was backwards incompatible, but means Exim no longer needs to track
1385 all algorithms and provide string forms for them. */
1387 want_default_priorities = TRUE;
1389 if (state->tls_require_ciphers && *state->tls_require_ciphers)
1391 if (!expand_check_tlsvar(tls_require_ciphers, errstr))
1393 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
1395 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n",
1396 state->exp_tls_require_ciphers);
1398 rc = gnutls_priority_init(&state->priority_cache,
1399 CS state->exp_tls_require_ciphers, &errpos);
1400 want_default_priorities = FALSE;
1401 p = state->exp_tls_require_ciphers;
1404 if (want_default_priorities)
1407 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n",
1408 exim_default_gnutls_priority);
1409 rc = gnutls_priority_init(&state->priority_cache,
1410 exim_default_gnutls_priority, &errpos);
1411 p = US exim_default_gnutls_priority;
1414 exim_gnutls_err_check(rc, string_sprintf(
1415 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
1416 p, errpos - CS p, errpos));
1418 rc = gnutls_priority_set(state->session, state->priority_cache);
1419 exim_gnutls_err_check(rc, US"gnutls_priority_set");
1421 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
1423 /* Reduce security in favour of increased compatibility, if the admin
1424 decides to make that trade-off. */
1425 if (gnutls_compat_mode)
1427 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
1428 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
1429 gnutls_session_enable_compatibility_mode(state->session);
1431 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
1435 *caller_state = state;
1441 /*************************************************
1442 * Extract peer information *
1443 *************************************************/
1445 /* Called from both server and client code.
1446 Only this is allowed to set state->peerdn and state->have_set_peerdn
1447 and we use that to detect double-calls.
1449 NOTE: the state blocks last while the TLS connection is up, which is fine
1450 for logging in the server side, but for the client side, we log after teardown
1451 in src/deliver.c. While the session is up, we can twist about states and
1452 repoint tls_* globals, but those variables used for logging or other variable
1453 expansion that happens _after_ delivery need to have a longer life-time.
1455 So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
1456 doing this more than once per generation of a state context. We set them in
1457 the state context, and repoint tls_* to them. After the state goes away, the
1458 tls_* copies of the pointers remain valid and client delivery logging is happy.
1460 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
1464 state exim_gnutls_state_st *
1465 errstr pointer to error string
1467 Returns: OK/DEFER/FAIL
1471 peer_status(exim_gnutls_state_st *state, uschar ** errstr)
1473 uschar cipherbuf[256];
1474 const gnutls_datum_t *cert_list;
1476 unsigned int cert_list_size = 0;
1477 gnutls_protocol_t protocol;
1478 gnutls_cipher_algorithm_t cipher;
1479 gnutls_kx_algorithm_t kx;
1480 gnutls_mac_algorithm_t mac;
1481 gnutls_certificate_type_t ct;
1482 gnutls_x509_crt_t crt;
1486 if (state->have_set_peerdn)
1488 state->have_set_peerdn = TRUE;
1490 state->peerdn = NULL;
1493 cipher = gnutls_cipher_get(state->session);
1494 protocol = gnutls_protocol_get_version(state->session);
1495 mac = gnutls_mac_get(state->session);
1496 kx = gnutls_kx_get(state->session);
1498 string_format(cipherbuf, sizeof(cipherbuf),
1500 gnutls_protocol_get_name(protocol),
1501 gnutls_cipher_suite_get_name(kx, cipher, mac),
1502 (int) gnutls_cipher_get_key_size(cipher) * 8);
1504 /* I don't see a way that spaces could occur, in the current GnuTLS
1505 code base, but it was a concern in the old code and perhaps older GnuTLS
1506 releases did return "TLS 1.0"; play it safe, just in case. */
1507 for (p = cipherbuf; *p != '\0'; ++p)
1510 old_pool = store_pool;
1511 store_pool = POOL_PERM;
1512 state->ciphersuite = string_copy(cipherbuf);
1513 store_pool = old_pool;
1514 state->tlsp->cipher = state->ciphersuite;
1517 cert_list = gnutls_certificate_get_peers(state->session, &cert_list_size);
1519 if (cert_list == NULL || cert_list_size == 0)
1521 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
1522 cert_list, cert_list_size);
1523 if (state->verify_requirement >= VERIFY_REQUIRED)
1524 return tls_error(US"certificate verification failed",
1525 US"no certificate received from peer", state->host, errstr);
1529 ct = gnutls_certificate_type_get(state->session);
1530 if (ct != GNUTLS_CRT_X509)
1532 const uschar *ctn = US gnutls_certificate_type_get_name(ct);
1534 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1535 if (state->verify_requirement >= VERIFY_REQUIRED)
1536 return tls_error(US"certificate verification not possible, unhandled type",
1537 ctn, state->host, errstr);
1541 #define exim_gnutls_peer_err(Label) \
1543 if (rc != GNUTLS_E_SUCCESS) \
1545 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", \
1546 (Label), gnutls_strerror(rc)); \
1547 if (state->verify_requirement >= VERIFY_REQUIRED) \
1548 return tls_error((Label), US gnutls_strerror(rc), state->host, errstr); \
1553 rc = import_cert(&cert_list[0], &crt);
1554 exim_gnutls_peer_err(US"cert 0");
1556 state->tlsp->peercert = state->peercert = crt;
1559 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1560 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
1562 exim_gnutls_peer_err(US"getting size for cert DN failed");
1563 return FAIL; /* should not happen */
1565 dn_buf = store_get_perm(sz);
1566 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1567 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1569 state->peerdn = dn_buf;
1572 #undef exim_gnutls_peer_err
1578 /*************************************************
1579 * Verify peer certificate *
1580 *************************************************/
1582 /* Called from both server and client code.
1583 *Should* be using a callback registered with
1584 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1585 the peer information, but that's too new for some OSes.
1588 state exim_gnutls_state_st *
1589 errstr where to put an error message
1592 FALSE if the session should be rejected
1593 TRUE if the cert is okay or we just don't care
1597 verify_certificate(exim_gnutls_state_st * state, uschar ** errstr)
1602 if (state->verify_requirement == VERIFY_NONE)
1605 DEBUG(D_tls) debug_printf("TLS: checking peer certificate\n");
1608 if ((rc = peer_status(state, errstr)) != OK)
1610 verify = GNUTLS_CERT_INVALID;
1611 *errstr = US"certificate not supplied";
1617 if (state->verify_requirement == VERIFY_DANE && state->host)
1619 /* Using dane_verify_session_crt() would be easy, as it does it all for us
1620 including talking to a DNS resolver. But we want to do that bit ourselves
1621 as the testsuite intercepts and fakes its own DNS environment. */
1626 const gnutls_datum_t * certlist =
1627 gnutls_certificate_get_peers(state->session, &lsize);
1628 int usage = tls_out.tlsa_usage;
1630 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1631 /* Split the TLSA records into two sets, TA and EE selectors. Run the
1632 dane-verification separately so that we know which selector verified;
1633 then we know whether to do name-verification (needed for TA but not EE). */
1635 if (usage == ((1<<DANESSL_USAGE_DANE_TA) | (1<<DANESSL_USAGE_DANE_EE)))
1636 { /* a mixed-usage bundle */
1641 for(nrec = 0; state->dane_data_len[nrec]; ) nrec++;
1644 dd = store_get(nrec * sizeof(uschar *));
1645 ddl = store_get(nrec * sizeof(int));
1648 if ((rc = dane_state_init(&s, 0)))
1651 for (usage = DANESSL_USAGE_DANE_EE;
1652 usage >= DANESSL_USAGE_DANE_TA; usage--)
1653 { /* take records with this usage */
1654 for (j = i = 0; i < nrec; i++)
1655 if (state->dane_data[i][0] == usage)
1657 dd[j] = state->dane_data[i];
1658 ddl[j++] = state->dane_data_len[i];
1665 if ((rc = dane_raw_tlsa(s, &r, (char * const *)dd, ddl, 1, 0)))
1668 if ((rc = dane_verify_crt_raw(s, certlist, lsize,
1669 gnutls_certificate_type_get(state->session),
1671 usage == DANESSL_USAGE_DANE_EE
1672 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
1676 debug_printf("TLSA record problem: %s\n", dane_strerror(rc));
1678 else if (verify == 0) /* verification passed */
1686 if (rc) goto tlsa_prob;
1691 if ( (rc = dane_state_init(&s, 0))
1692 || (rc = dane_raw_tlsa(s, &r, state->dane_data, state->dane_data_len,
1694 || (rc = dane_verify_crt_raw(s, certlist, lsize,
1695 gnutls_certificate_type_get(state->session),
1697 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1698 usage == (1 << DANESSL_USAGE_DANE_EE)
1699 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
1708 if (verify != 0) /* verification failed */
1711 (void) dane_verification_status_print(verify, &str, 0);
1712 *errstr = US str.data; /* don't bother to free */
1716 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1717 /* If a TA-mode TLSA record was used for verification we must additionally
1718 verify the cert name (but not the CA chain). For EE-mode, skip it. */
1720 if (usage & (1 << DANESSL_USAGE_DANE_EE))
1723 state->peer_dane_verified = state->peer_cert_verified = TRUE;
1726 # ifdef GNUTLS_BROKEN_DANE_VALIDATION
1727 /* Assume that the name on the A-record is the one that should be matching
1728 the cert. An alternate view is that the domain part of the email address
1729 is also permissible. */
1731 if (gnutls_x509_crt_check_hostname(state->tlsp->peercert,
1732 CS state->host->name))
1734 state->peer_dane_verified = state->peer_cert_verified = TRUE;
1739 #endif /*SUPPORT_DANE*/
1741 rc = gnutls_certificate_verify_peers2(state->session, &verify);
1744 /* Handle the result of verification. INVALID is set if any others are. */
1746 if (rc < 0 || verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED))
1748 state->peer_cert_verified = FALSE;
1751 #ifdef GNUTLS_CERT_VFY_STATUS_PRINT
1756 if (gnutls_certificate_verification_status_print(verify,
1757 gnutls_certificate_type_get(state->session), &txt, 0)
1758 == GNUTLS_E_SUCCESS)
1760 debug_printf("%s\n", txt.data);
1761 gnutls_free(txt.data);
1765 *errstr = verify & GNUTLS_CERT_REVOKED
1766 ? US"certificate revoked" : US"certificate invalid";
1770 debug_printf("TLS certificate verification failed (%s): peerdn=\"%s\"\n",
1771 *errstr, state->peerdn ? state->peerdn : US"<unset>");
1773 if (state->verify_requirement >= VERIFY_REQUIRED)
1776 debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
1781 /* Client side, check the server's certificate name versus the name on the
1782 A-record for the connection we made. What to do for server side - what name
1783 to use for client? We document that there is no such checking for server
1786 if ( state->exp_tls_verify_cert_hostnames
1787 && !gnutls_x509_crt_check_hostname(state->tlsp->peercert,
1788 CS state->exp_tls_verify_cert_hostnames)
1792 debug_printf("TLS certificate verification failed: cert name mismatch\n");
1793 if (state->verify_requirement >= VERIFY_REQUIRED)
1798 state->peer_cert_verified = TRUE;
1799 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=\"%s\"\n",
1800 state->peerdn ? state->peerdn : US"<unset>");
1804 state->tlsp->peerdn = state->peerdn;
1809 *errstr = string_sprintf("TLSA record problem: %s",
1810 rc == DANE_E_REQUESTED_DATA_NOT_AVAILABLE ? "none usable" : dane_strerror(rc));
1814 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1821 /* ------------------------------------------------------------------------ */
1824 /* Logging function which can be registered with
1825 * gnutls_global_set_log_function()
1826 * gnutls_global_set_log_level() 0..9
1828 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1830 exim_gnutls_logger_cb(int level, const char *message)
1832 size_t len = strlen(message);
1835 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
1838 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
1839 message[len-1] == '\n' ? "" : "\n");
1844 /* Called after client hello, should handle SNI work.
1845 This will always set tls_sni (state->received_sni) if available,
1846 and may trigger presenting different certificates,
1847 if state->trigger_sni_changes is TRUE.
1849 Should be registered with
1850 gnutls_handshake_set_post_client_hello_function()
1852 "This callback must return 0 on success or a gnutls error code to terminate the
1855 For inability to get SNI information, we return 0.
1856 We only return non-zero if re-setup failed.
1857 Only used for server-side TLS.
1861 exim_sni_handling_cb(gnutls_session_t session)
1863 char sni_name[MAX_HOST_LEN];
1864 size_t data_len = MAX_HOST_LEN;
1865 exim_gnutls_state_st *state = &state_server;
1866 unsigned int sni_type;
1868 uschar * dummy_errstr;
1870 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
1871 if (rc != GNUTLS_E_SUCCESS)
1874 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
1875 debug_printf("TLS: no SNI presented in handshake.\n");
1877 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
1878 gnutls_strerror(rc), rc);
1883 if (sni_type != GNUTLS_NAME_DNS)
1885 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
1889 /* We now have a UTF-8 string in sni_name */
1890 old_pool = store_pool;
1891 store_pool = POOL_PERM;
1892 state->received_sni = string_copyn(US sni_name, data_len);
1893 store_pool = old_pool;
1895 /* We set this one now so that variable expansions below will work */
1896 state->tlsp->sni = state->received_sni;
1898 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
1899 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
1901 if (!state->trigger_sni_changes)
1904 if ((rc = tls_expand_session_files(state, &dummy_errstr)) != OK)
1906 /* If the setup of certs/etc failed before handshake, TLS would not have
1907 been offered. The best we can do now is abort. */
1908 return GNUTLS_E_APPLICATION_ERROR_MIN;
1911 rc = tls_set_remaining_x509(state, &dummy_errstr);
1912 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
1919 #ifndef DISABLE_OCSP
1922 server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
1923 gnutls_datum_t * ocsp_response)
1926 DEBUG(D_tls) debug_printf("OCSP stapling callback: %s\n", US ptr);
1928 if ((ret = gnutls_load_file(ptr, ocsp_response)) < 0)
1930 DEBUG(D_tls) debug_printf("Failed to load ocsp stapling file %s\n",
1932 tls_in.ocsp = OCSP_NOT_RESP;
1933 return GNUTLS_E_NO_CERTIFICATE_STATUS;
1936 tls_in.ocsp = OCSP_VFY_NOT_TRIED;
1943 #ifndef DISABLE_EVENT
1945 We use this callback to get observability and detail-level control
1946 for an exim TLS connection (either direction), raising a tls:cert event
1947 for each cert in the chain presented by the peer. Any event
1948 can deny verification.
1950 Return 0 for the handshake to continue or non-zero to terminate.
1954 verify_cb(gnutls_session_t session)
1956 const gnutls_datum_t * cert_list;
1957 unsigned int cert_list_size = 0;
1958 gnutls_x509_crt_t crt;
1961 exim_gnutls_state_st * state = gnutls_session_get_ptr(session);
1963 if ((cert_list = gnutls_certificate_get_peers(session, &cert_list_size)))
1964 while (cert_list_size--)
1966 if ((rc = import_cert(&cert_list[cert_list_size], &crt)) != GNUTLS_E_SUCCESS)
1968 DEBUG(D_tls) debug_printf("TLS: peer cert problem: depth %d: %s\n",
1969 cert_list_size, gnutls_strerror(rc));
1973 state->tlsp->peercert = crt;
1974 if ((yield = event_raise(state->event_action,
1975 US"tls:cert", string_sprintf("%d", cert_list_size))))
1977 log_write(0, LOG_MAIN,
1978 "SSL verify denied by event-action: depth=%d: %s",
1979 cert_list_size, yield);
1980 return 1; /* reject */
1982 state->tlsp->peercert = NULL;
1992 /* ------------------------------------------------------------------------ */
1993 /* Exported functions */
1998 /*************************************************
1999 * Start a TLS session in a server *
2000 *************************************************/
2002 /* This is called when Exim is running as a server, after having received
2003 the STARTTLS command. It must respond to that command, and then negotiate
2007 require_ciphers list of allowed ciphers or NULL
2008 errstr pointer to error string
2010 Returns: OK on success
2011 DEFER for errors before the start of the negotiation
2012 FAIL for errors during the negotiation; the server can't
2017 tls_server_start(const uschar * require_ciphers, uschar ** errstr)
2020 exim_gnutls_state_st * state = NULL;
2022 /* Check for previous activation */
2023 if (tls_in.active.sock >= 0)
2025 tls_error(US"STARTTLS received after TLS started", US "", NULL, errstr);
2026 smtp_printf("554 Already in TLS\r\n", FALSE);
2030 /* Initialize the library. If it fails, it will already have logged the error
2031 and sent an SMTP response. */
2033 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
2035 if ((rc = tls_init(NULL, tls_certificate, tls_privatekey,
2036 NULL, tls_verify_certificates, tls_crl,
2037 require_ciphers, &state, &tls_in, errstr)) != OK) return rc;
2039 /* If this is a host for which certificate verification is mandatory or
2040 optional, set up appropriately. */
2042 if (verify_check_host(&tls_verify_hosts) == OK)
2045 debug_printf("TLS: a client certificate will be required.\n");
2046 state->verify_requirement = VERIFY_REQUIRED;
2047 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2049 else if (verify_check_host(&tls_try_verify_hosts) == OK)
2052 debug_printf("TLS: a client certificate will be requested but not required.\n");
2053 state->verify_requirement = VERIFY_OPTIONAL;
2054 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2059 debug_printf("TLS: a client certificate will not be requested.\n");
2060 state->verify_requirement = VERIFY_NONE;
2061 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2064 #ifndef DISABLE_EVENT
2067 state->event_action = event_action;
2068 gnutls_session_set_ptr(state->session, state);
2069 gnutls_certificate_set_verify_function(state->x509_cred, verify_cb);
2073 /* Register SNI handling; always, even if not in tls_certificate, so that the
2074 expansion variable $tls_sni is always available. */
2076 gnutls_handshake_set_post_client_hello_function(state->session,
2077 exim_sni_handling_cb);
2079 /* Set context and tell client to go ahead, except in the case of TLS startup
2080 on connection, where outputting anything now upsets the clients and tends to
2081 make them disconnect. We need to have an explicit fflush() here, to force out
2082 the response. Other smtp_printf() calls do not need it, because in non-TLS
2083 mode, the fflush() happens when smtp_getc() is called. */
2085 if (!state->tlsp->on_connect)
2087 smtp_printf("220 TLS go ahead\r\n", FALSE);
2091 /* Now negotiate the TLS session. We put our own timer on it, since it seems
2092 that the GnuTLS library doesn't.
2093 From 3.1.0 there is gnutls_handshake_set_timeout() - but it requires you
2094 to set (and clear down afterwards) up a pull-timeout callback function that does
2095 a select, so we're no better off unless avoiding signals becomes an issue. */
2097 gnutls_transport_set_ptr2(state->session,
2098 (gnutls_transport_ptr_t)(long) fileno(smtp_in),
2099 (gnutls_transport_ptr_t)(long) fileno(smtp_out));
2100 state->fd_in = fileno(smtp_in);
2101 state->fd_out = fileno(smtp_out);
2103 sigalrm_seen = FALSE;
2104 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2106 rc = gnutls_handshake(state->session);
2107 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2110 if (rc != GNUTLS_E_SUCCESS)
2112 /* It seems that, except in the case of a timeout, we have to close the
2113 connection right here; otherwise if the other end is running OpenSSL it hangs
2114 until the server times out. */
2118 tls_error(US"gnutls_handshake", US"timed out", NULL, errstr);
2119 gnutls_db_remove_session(state->session);
2123 tls_error(US"gnutls_handshake", US gnutls_strerror(rc), NULL, errstr);
2124 (void) gnutls_alert_send_appropriate(state->session, rc);
2125 gnutls_deinit(state->session);
2126 gnutls_certificate_free_credentials(state->x509_cred);
2128 shutdown(state->fd_out, SHUT_WR);
2129 for (rc = 1024; fgetc(smtp_in) != EOF && rc > 0; ) rc--; /* drain skt */
2130 (void)fclose(smtp_out);
2131 (void)fclose(smtp_in);
2132 smtp_out = smtp_in = NULL;
2138 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
2140 /* Verify after the fact */
2142 if (!verify_certificate(state, errstr))
2144 if (state->verify_requirement != VERIFY_OPTIONAL)
2146 (void) tls_error(US"certificate verification failed", *errstr, NULL, errstr);
2150 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
2154 /* Figure out peer DN, and if authenticated, etc. */
2156 if ((rc = peer_status(state, NULL)) != OK) return rc;
2158 /* Sets various Exim expansion variables; always safe within server */
2160 extract_exim_vars_from_tls_state(state);
2162 /* TLS has been set up. Adjust the input functions to read via TLS,
2163 and initialize appropriately. */
2165 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
2167 receive_getc = tls_getc;
2168 receive_getbuf = tls_getbuf;
2169 receive_get_cache = tls_get_cache;
2170 receive_ungetc = tls_ungetc;
2171 receive_feof = tls_feof;
2172 receive_ferror = tls_ferror;
2173 receive_smtp_buffered = tls_smtp_buffered;
2182 tls_client_setup_hostname_checks(host_item * host, exim_gnutls_state_st * state,
2183 smtp_transport_options_block * ob)
2185 if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
2187 state->exp_tls_verify_cert_hostnames =
2189 string_domain_utf8_to_alabel(host->name, NULL);
2194 debug_printf("TLS: server cert verification includes hostname: \"%s\".\n",
2195 state->exp_tls_verify_cert_hostnames);
2203 /* Given our list of RRs from the TLSA lookup, build a lookup block in
2204 GnuTLS-DANE's preferred format. Hang it on the state str for later
2205 use in DANE verification.
2207 We point at the dnsa data not copy it, so it must remain valid until
2208 after verification is done.*/
2211 dane_tlsa_load(exim_gnutls_state_st * state, dns_answer * dnsa)
2216 const char ** dane_data;
2217 int * dane_data_len;
2219 for (rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS), i = 1;
2221 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
2222 ) if (rr->type == T_TLSA) i++;
2224 dane_data = store_get(i * sizeof(uschar *));
2225 dane_data_len = store_get(i * sizeof(int));
2227 for (rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS), i = 0;
2229 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
2230 ) if (rr->type == T_TLSA && rr->size > 3)
2232 const uschar * p = rr->data;
2233 uint8_t usage = p[0], sel = p[1], type = p[2];
2236 debug_printf("TLSA: %d %d %d size %d\n", usage, sel, type, rr->size);
2238 if ( (usage != DANESSL_USAGE_DANE_TA && usage != DANESSL_USAGE_DANE_EE)
2239 || (sel != 0 && sel != 1)
2244 case 0: /* Full: cannot check at present */
2246 case 1: if (rr->size != 3 + 256/8) continue; /* sha2-256 */
2248 case 2: if (rr->size != 3 + 512/8) continue; /* sha2-512 */
2253 tls_out.tlsa_usage |= 1<<usage;
2254 dane_data[i] = CS p;
2255 dane_data_len[i++] = rr->size;
2258 if (!i) return FALSE;
2260 dane_data[i] = NULL;
2261 dane_data_len[i] = 0;
2263 state->dane_data = (char * const *)dane_data;
2264 state->dane_data_len = dane_data_len;
2271 /*************************************************
2272 * Start a TLS session in a client *
2273 *************************************************/
2275 /* Called from the smtp transport after STARTTLS has been accepted.
2278 fd the fd of the connection
2279 host connected host (for messages and option-tests)
2280 addr the first address (not used)
2281 tb transport (always smtp)
2282 tlsa_dnsa non-NULL, either request or require dane for this host, and
2283 a TLSA record found. Therefore, dane verify required.
2284 Which implies cert must be requested and supplied, dane
2285 verify must pass, and cert verify irrelevant (incl.
2286 hostnames), and (caller handled) require_tls
2287 tlsp record details of channel configuration
2288 errstr error string pointer
2290 Returns: Pointer to TLS session context, or NULL on error
2294 tls_client_start(int fd, host_item *host,
2295 address_item *addr ARG_UNUSED,
2296 transport_instance * tb,
2298 dns_answer * tlsa_dnsa,
2300 tls_support * tlsp, uschar ** errstr)
2302 smtp_transport_options_block *ob = tb
2303 ? (smtp_transport_options_block *)tb->options_block
2304 : &smtp_transport_option_defaults;
2306 exim_gnutls_state_st * state = NULL;
2307 uschar *cipher_list = NULL;
2309 #ifndef DISABLE_OCSP
2311 verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK;
2312 BOOL request_ocsp = require_ocsp ? TRUE
2313 : verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
2316 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", fd);
2319 if (tlsa_dnsa && ob->dane_require_tls_ciphers)
2321 /* not using expand_check_tlsvar because not yet in state */
2322 if (!expand_check(ob->dane_require_tls_ciphers, US"dane_require_tls_ciphers",
2323 &cipher_list, errstr))
2325 cipher_list = cipher_list && *cipher_list
2326 ? ob->dane_require_tls_ciphers : ob->tls_require_ciphers;
2331 cipher_list = ob->tls_require_ciphers;
2333 if (tls_init(host, ob->tls_certificate, ob->tls_privatekey,
2334 ob->tls_sni, ob->tls_verify_certificates, ob->tls_crl,
2335 cipher_list, &state, tlsp, errstr) != OK)
2339 int dh_min_bits = ob->tls_dh_min_bits;
2340 if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
2343 debug_printf("WARNING: tls_dh_min_bits far too low,"
2344 " clamping %d up to %d\n",
2345 dh_min_bits, EXIM_CLIENT_DH_MIN_MIN_BITS);
2346 dh_min_bits = EXIM_CLIENT_DH_MIN_MIN_BITS;
2349 DEBUG(D_tls) debug_printf("Setting D-H prime minimum"
2350 " acceptable bits to %d\n",
2352 gnutls_dh_set_prime_bits(state->session, dh_min_bits);
2355 /* Stick to the old behaviour for compatibility if tls_verify_certificates is
2356 set but both tls_verify_hosts and tls_try_verify_hosts are unset. Check only
2357 the specified host patterns if one of them is defined */
2360 if (tlsa_dnsa && dane_tlsa_load(state, tlsa_dnsa))
2363 debug_printf("TLS: server certificate DANE required.\n");
2364 state->verify_requirement = VERIFY_DANE;
2365 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2369 if ( ( state->exp_tls_verify_certificates
2370 && !ob->tls_verify_hosts
2371 && (!ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts)
2373 || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
2376 tls_client_setup_hostname_checks(host, state, ob);
2378 debug_printf("TLS: server certificate verification required.\n");
2379 state->verify_requirement = VERIFY_REQUIRED;
2380 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2382 else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
2384 tls_client_setup_hostname_checks(host, state, ob);
2386 debug_printf("TLS: server certificate verification optional.\n");
2387 state->verify_requirement = VERIFY_OPTIONAL;
2388 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2393 debug_printf("TLS: server certificate verification not required.\n");
2394 state->verify_requirement = VERIFY_NONE;
2395 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2398 #ifndef DISABLE_OCSP
2399 /* supported since GnuTLS 3.1.3 */
2402 DEBUG(D_tls) debug_printf("TLS: will request OCSP stapling\n");
2403 if ((rc = gnutls_ocsp_status_request_enable_client(state->session,
2404 NULL, 0, NULL)) != OK)
2406 tls_error(US"cert-status-req", US gnutls_strerror(rc), state->host, errstr);
2409 tlsp->ocsp = OCSP_NOT_RESP;
2413 #ifndef DISABLE_EVENT
2414 if (tb && tb->event_action)
2416 state->event_action = tb->event_action;
2417 gnutls_session_set_ptr(state->session, state);
2418 gnutls_certificate_set_verify_function(state->x509_cred, verify_cb);
2422 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr_t)(long) fd);
2426 DEBUG(D_tls) debug_printf("about to gnutls_handshake\n");
2427 /* There doesn't seem to be a built-in timeout on connection. */
2429 sigalrm_seen = FALSE;
2430 ALARM(ob->command_timeout);
2432 rc = gnutls_handshake(state->session);
2433 while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2436 if (rc != GNUTLS_E_SUCCESS)
2440 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_USER_CANCELED);
2441 tls_error(US"gnutls_handshake", US"timed out", state->host, errstr);
2444 tls_error(US"gnutls_handshake", US gnutls_strerror(rc), state->host, errstr);
2448 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
2452 if (!verify_certificate(state, errstr))
2454 tls_error(US"certificate verification failed", *errstr, state->host, errstr);
2458 #ifndef DISABLE_OCSP
2463 gnutls_datum_t stapling;
2464 gnutls_ocsp_resp_t resp;
2465 gnutls_datum_t printed;
2466 if ( (rc= gnutls_ocsp_status_request_get(state->session, &stapling)) == 0
2467 && (rc= gnutls_ocsp_resp_init(&resp)) == 0
2468 && (rc= gnutls_ocsp_resp_import(resp, &stapling)) == 0
2469 && (rc= gnutls_ocsp_resp_print(resp, GNUTLS_OCSP_PRINT_FULL, &printed)) == 0
2472 debug_printf("%.4096s", printed.data);
2473 gnutls_free(printed.data);
2476 (void) tls_error(US"ocsp decode", US gnutls_strerror(rc), state->host, errstr);
2479 if (gnutls_ocsp_status_request_is_checked(state->session, 0) == 0)
2481 tlsp->ocsp = OCSP_FAILED;
2482 tls_error(US"certificate status check failed", NULL, state->host, errstr);
2485 DEBUG(D_tls) debug_printf("Passed OCSP checking\n");
2486 tlsp->ocsp = OCSP_VFIED;
2490 /* Figure out peer DN, and if authenticated, etc. */
2492 if (peer_status(state, errstr) != OK)
2495 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
2497 extract_exim_vars_from_tls_state(state);
2505 /*************************************************
2506 * Close down a TLS session *
2507 *************************************************/
2509 /* This is also called from within a delivery subprocess forked from the
2510 daemon, to shut down the TLS library, without actually doing a shutdown (which
2511 would tamper with the TLS session in the parent process).
2514 ct_ctx client context pointer, or NULL for the one global server context
2515 shutdown 1 if TLS close-alert is to be sent,
2516 2 if also response to be waited for
2522 tls_close(void * ct_ctx, int shutdown)
2524 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
2526 if (!state->tlsp || state->tlsp->active.sock < 0) return; /* TLS was not active */
2530 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
2531 shutdown > 1 ? " (with response-wait)" : "");
2534 gnutls_bye(state->session, shutdown > 1 ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
2538 gnutls_deinit(state->session);
2539 gnutls_certificate_free_credentials(state->x509_cred);
2542 state->tlsp->active.sock = -1;
2543 state->tlsp->active.tls_ctx = NULL;
2544 if (state->xfer_buffer) store_free(state->xfer_buffer);
2545 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
2552 tls_refill(unsigned lim)
2554 exim_gnutls_state_st * state = &state_server;
2557 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
2558 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
2560 sigalrm_seen = FALSE;
2561 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2562 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
2563 MIN(ssl_xfer_buffer_size, lim));
2564 if (smtp_receive_timeout > 0) ALARM_CLR(0);
2566 if (had_command_timeout) /* set by signal handler */
2567 smtp_command_timeout_exit(); /* does not return */
2568 if (had_command_sigterm)
2569 smtp_command_sigterm_exit();
2570 if (had_data_timeout)
2571 smtp_data_timeout_exit();
2572 if (had_data_sigint)
2573 smtp_data_sigint_exit();
2575 /* Timeouts do not get this far. A zero-byte return appears to mean that the
2576 TLS session has been closed down, not that the socket itself has been closed
2577 down. Revert to non-TLS handling. */
2581 DEBUG(D_tls) debug_printf("Got tls read timeout\n");
2582 state->xfer_error = TRUE;
2586 else if (inbytes == 0)
2588 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
2590 receive_getc = smtp_getc;
2591 receive_getbuf = smtp_getbuf;
2592 receive_get_cache = smtp_get_cache;
2593 receive_ungetc = smtp_ungetc;
2594 receive_feof = smtp_feof;
2595 receive_ferror = smtp_ferror;
2596 receive_smtp_buffered = smtp_buffered;
2598 gnutls_deinit(state->session);
2599 gnutls_certificate_free_credentials(state->x509_cred);
2601 state->session = NULL;
2602 state->tlsp->active.sock = -1;
2603 state->tlsp->active.tls_ctx = NULL;
2604 state->tlsp->bits = 0;
2605 state->tlsp->certificate_verified = FALSE;
2606 tls_channelbinding_b64 = NULL;
2607 state->tlsp->cipher = NULL;
2608 state->tlsp->peercert = NULL;
2609 state->tlsp->peerdn = NULL;
2614 /* Handle genuine errors */
2616 else if (inbytes < 0)
2618 debug_printf("%s: err from gnutls_record_recv(\n", __FUNCTION__);
2619 record_io_error(state, (int) inbytes, US"recv", NULL);
2620 state->xfer_error = TRUE;
2623 #ifndef DISABLE_DKIM
2624 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
2626 state->xfer_buffer_hwm = (int) inbytes;
2627 state->xfer_buffer_lwm = 0;
2631 /*************************************************
2632 * TLS version of getc *
2633 *************************************************/
2635 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
2636 it refills the buffer via the GnuTLS reading function.
2637 Only used by the server-side TLS.
2639 This feeds DKIM and should be used for all message-body reads.
2641 Arguments: lim Maximum amount to read/bufffer
2642 Returns: the next character or EOF
2646 tls_getc(unsigned lim)
2648 exim_gnutls_state_st * state = &state_server;
2650 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
2651 if (!tls_refill(lim))
2652 return state->xfer_error ? EOF : smtp_getc(lim);
2654 /* Something in the buffer; return next uschar */
2656 return state->xfer_buffer[state->xfer_buffer_lwm++];
2660 tls_getbuf(unsigned * len)
2662 exim_gnutls_state_st * state = &state_server;
2666 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
2667 if (!tls_refill(*len))
2669 if (!state->xfer_error) return smtp_getbuf(len);
2674 if ((size = state->xfer_buffer_hwm - state->xfer_buffer_lwm) > *len)
2676 buf = &state->xfer_buffer[state->xfer_buffer_lwm];
2677 state->xfer_buffer_lwm += size;
2686 #ifndef DISABLE_DKIM
2687 exim_gnutls_state_st * state = &state_server;
2688 int n = state->xfer_buffer_hwm - state->xfer_buffer_lwm;
2690 dkim_exim_verify_feed(state->xfer_buffer+state->xfer_buffer_lwm, n);
2696 tls_could_read(void)
2698 return state_server.xfer_buffer_lwm < state_server.xfer_buffer_hwm
2699 || gnutls_record_check_pending(state_server.session) > 0;
2705 /*************************************************
2706 * Read bytes from TLS channel *
2707 *************************************************/
2709 /* This does not feed DKIM, so if the caller uses this for reading message body,
2710 then the caller must feed DKIM.
2713 ct_ctx client context pointer, or NULL for the one global server context
2717 Returns: the number of bytes read
2718 -1 after a failed read, including EOF
2722 tls_read(void * ct_ctx, uschar *buff, size_t len)
2724 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
2730 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
2732 debug_printf("*** PROBABLY A BUG *** " \
2733 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
2734 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
2737 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
2738 state->session, buff, len);
2740 inbytes = gnutls_record_recv(state->session, buff, len);
2741 if (inbytes > 0) return inbytes;
2744 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
2748 debug_printf("%s: err from gnutls_record_recv(\n", __FUNCTION__);
2749 record_io_error(state, (int)inbytes, US"recv", NULL);
2758 /*************************************************
2759 * Write bytes down TLS channel *
2760 *************************************************/
2764 ct_ctx client context pointer, or NULL for the one global server context
2767 more more data expected soon
2769 Returns: the number of bytes after a successful write,
2770 -1 after a failed write
2774 tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
2778 exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
2780 static BOOL corked = FALSE;
2782 if (more && !corked) gnutls_record_cork(state->session);
2785 DEBUG(D_tls) debug_printf("%s(%p, " SIZE_T_FMT "%s)\n", __FUNCTION__,
2786 buff, left, more ? ", more" : "");
2790 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
2792 outbytes = gnutls_record_send(state->session, buff, left);
2794 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
2797 DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
2798 record_io_error(state, outbytes, US"send", NULL);
2803 record_io_error(state, 0, US"send", US"TLS channel closed on write");
2814 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
2822 if (!more) (void) gnutls_record_uncork(state->session, 0);
2833 /*************************************************
2834 * Random number generation *
2835 *************************************************/
2837 /* Pseudo-random number generation. The result is not expected to be
2838 cryptographically strong but not so weak that someone will shoot themselves
2839 in the foot using it as a nonce in input in some email header scheme or
2840 whatever weirdness they'll twist this into. The result should handle fork()
2841 and avoid repeating sequences. OpenSSL handles that for us.
2845 Returns a random number in range [0, max-1]
2848 #ifdef HAVE_GNUTLS_RND
2850 vaguely_random_number(int max)
2855 uschar smallbuf[sizeof(r)];
2860 needed_len = sizeof(r);
2861 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
2862 * asked for a number less than 10. */
2863 for (r = max, i = 0; r; ++i)
2869 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
2872 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
2873 return vaguely_random_number_fallback(max);
2876 for (p = smallbuf; needed_len; --needed_len, ++p)
2882 /* We don't particularly care about weighted results; if someone wants
2883 * smooth distribution and cares enough then they should submit a patch then. */
2886 #else /* HAVE_GNUTLS_RND */
2888 vaguely_random_number(int max)
2890 return vaguely_random_number_fallback(max);
2892 #endif /* HAVE_GNUTLS_RND */
2897 /*************************************************
2898 * Let tls_require_ciphers be checked at startup *
2899 *************************************************/
2901 /* The tls_require_ciphers option, if set, must be something which the
2904 Returns: NULL on success, or error message
2908 tls_validate_require_cipher(void)
2911 uschar *expciphers = NULL;
2912 gnutls_priority_t priority_cache;
2914 uschar * dummy_errstr;
2916 #define validate_check_rc(Label) do { \
2917 if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) gnutls_global_deinit(); \
2918 return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
2919 #define return_deinit(Label) do { gnutls_global_deinit(); return (Label); } while (0)
2921 if (exim_gnutls_base_init_done)
2922 log_write(0, LOG_MAIN|LOG_PANIC,
2923 "already initialised GnuTLS, Exim developer bug");
2925 #ifdef HAVE_GNUTLS_PKCS11
2926 if (!gnutls_allow_auto_pkcs11)
2928 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
2929 validate_check_rc(US"gnutls_pkcs11_init");
2932 rc = gnutls_global_init();
2933 validate_check_rc(US"gnutls_global_init()");
2934 exim_gnutls_base_init_done = TRUE;
2936 if (!(tls_require_ciphers && *tls_require_ciphers))
2937 return_deinit(NULL);
2939 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
2941 return_deinit(US"failed to expand tls_require_ciphers");
2943 if (!(expciphers && *expciphers))
2944 return_deinit(NULL);
2947 debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
2949 rc = gnutls_priority_init(&priority_cache, CS expciphers, &errpos);
2950 validate_check_rc(string_sprintf(
2951 "gnutls_priority_init(%s) failed at offset %ld, \"%.8s..\"",
2952 expciphers, errpos - CS expciphers, errpos));
2954 #undef return_deinit
2955 #undef validate_check_rc
2956 gnutls_global_deinit();
2964 /*************************************************
2965 * Report the library versions. *
2966 *************************************************/
2968 /* See a description in tls-openssl.c for an explanation of why this exists.
2970 Arguments: a FILE* to print the results to
2975 tls_version_report(FILE *f)
2977 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
2980 gnutls_check_version(NULL));
2985 /* End of tls-gnu.c */