1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2012 */
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 Mavroyanopoulos. 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>
46 gnutls_global_set_audit_log_function()
49 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
52 /* Local static variables for GnuTLS */
54 /* Values for verify_requirement */
56 enum peer_verify_requirement { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED };
58 /* This holds most state for server or client; with this, we can set up an
59 outbound TLS-enabled connection in an ACL callout, while not stomping all
60 over the TLS variables available for expansion.
62 Some of these correspond to variables in globals.c; those variables will
63 be set to point to content in one of these instances, as appropriate for
64 the stage of the process lifetime.
66 Not handled here: globals tls_active, tls_bits, tls_cipher, tls_peerdn,
67 tls_certificate_verified, tls_channelbinding_b64, tls_sni.
70 typedef struct exim_gnutls_state {
71 gnutls_session_t session;
72 gnutls_certificate_credentials_t x509_cred;
73 gnutls_priority_t priority_cache;
74 enum peer_verify_requirement verify_requirement;
77 BOOL peer_cert_verified;
78 BOOL trigger_sni_changes;
80 const struct host_item *host;
85 const uschar *tls_certificate;
86 const uschar *tls_privatekey;
87 const uschar *tls_sni; /* client send only, not received */
88 const uschar *tls_verify_certificates;
89 const uschar *tls_crl;
90 const uschar *tls_require_ciphers;
91 uschar *exp_tls_certificate;
92 uschar *exp_tls_privatekey;
94 uschar *exp_tls_verify_certificates;
96 uschar *exp_tls_require_ciphers;
103 } exim_gnutls_state_st;
105 static const exim_gnutls_state_st exim_gnutls_state_init = {
106 NULL, NULL, NULL, VERIFY_NONE, -1, -1, FALSE, FALSE, FALSE,
107 NULL, NULL, NULL, NULL,
108 NULL, NULL, NULL, NULL, NULL, NULL,
109 NULL, NULL, NULL, NULL, NULL, NULL,
113 /* Not only do we have our own APIs which don't pass around state, assuming
114 it's held in globals, GnuTLS doesn't appear to let us register callback data
115 for callbacks, or as part of the session, so we have to keep a "this is the
116 context we're currently dealing with" pointer and rely upon being
117 single-threaded to keep from processing data on an inbound TLS connection while
118 talking to another TLS connection for an outbound check. This does mean that
119 there's no way for heart-beats to be responded to, for the duration of the
120 second connection. */
122 static exim_gnutls_state_st state_server, state_client;
123 static exim_gnutls_state_st *current_global_tls_state;
125 /* dh_params are initialised once within the lifetime of a process using TLS;
126 if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
127 don't want to repeat this. */
129 static gnutls_dh_params_t dh_server_params = NULL;
131 /* No idea how this value was chosen; preserving it. Default is 3600. */
133 static const int ssl_session_timeout = 200;
135 static const char * const exim_default_gnutls_priority = "NORMAL";
137 /* Guard library core initialisation */
139 static BOOL exim_gnutls_base_init_done = FALSE;
142 /* ------------------------------------------------------------------------ */
145 #define MAX_HOST_LEN 255
147 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
148 the library logging; a value less than 0 disables the calls to set up logging
150 #ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
151 #define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
154 #ifndef EXIM_CLIENT_DH_MIN_BITS
155 #define EXIM_CLIENT_DH_MIN_BITS 1024
158 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
159 can ask for a bit-strength. Without that, we stick to the constant we had
161 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
162 #define EXIM_SERVER_DH_BITS_PRE2_12 1024
165 #define exim_gnutls_err_check(Label) do { \
166 if (rc != GNUTLS_E_SUCCESS) { return tls_error((Label), gnutls_strerror(rc), host); } } while (0)
168 #define expand_check_tlsvar(Varname) expand_check(state->Varname, US #Varname, &state->exp_##Varname)
170 #if GNUTLS_VERSION_NUMBER >= 0x020c00
171 #define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
172 #define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
173 #define HAVE_GNUTLS_RND
179 /* ------------------------------------------------------------------------ */
180 /* Callback declarations */
182 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
183 static void exim_gnutls_logger_cb(int level, const char *message);
186 static int exim_sni_handling_cb(gnutls_session_t session);
191 /* ------------------------------------------------------------------------ */
192 /* Static functions */
194 /*************************************************
196 *************************************************/
198 /* Called from lots of places when errors occur before actually starting to do
199 the TLS handshake, that is, while the session is still in clear. Always returns
200 DEFER for a server and FAIL for a client so that most calls can use "return
201 tls_error(...)" to do this processing and then give an appropriate return. A
202 single function is used for both server and client, because it is called from
203 some shared functions.
206 prefix text to include in the logged error
207 msg additional error string (may be NULL)
208 usually obtained from gnutls_strerror()
209 host NULL if setting up a server;
210 the connected host if setting up a client
212 Returns: OK/DEFER/FAIL
216 tls_error(const uschar *prefix, const char *msg, const host_item *host)
220 log_write(0, LOG_MAIN, "TLS error on connection to %s [%s] (%s)%s%s",
221 host->name, host->address, prefix, msg ? ": " : "", msg ? msg : "");
226 uschar *conn_info = smtp_get_connection_info();
227 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0)
229 log_write(0, LOG_MAIN, "TLS error on %s (%s)%s%s",
230 conn_info, prefix, msg ? ": " : "", msg ? msg : "");
238 /*************************************************
239 * Deal with logging errors during I/O *
240 *************************************************/
242 /* We have to get the identity of the peer from saved data.
245 state the current GnuTLS exim state container
246 rc the GnuTLS error code, or 0 if it's a local error
247 when text identifying read or write
248 text local error text when ec is 0
254 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
258 if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED)
259 msg = CS string_sprintf("%s: %s", US gnutls_strerror(rc),
260 US gnutls_alert_get_name(gnutls_alert_get(state->session)));
262 msg = gnutls_strerror(rc);
264 tls_error(when, msg, state->host);
270 /*************************************************
271 * Set various Exim expansion vars *
272 *************************************************/
274 /* We set various Exim global variables from the state, once a session has
275 been established. With TLS callouts, may need to change this to stack
276 variables, or just re-call it with the server state after client callout
279 Make sure anything set here is inset in tls_getc().
283 tls_bits strength indicator
284 tls_certificate_verified bool indicator
285 tls_channelbinding_b64 for some SASL mechanisms
288 tls_sni a (UTF-8) string
290 current_global_tls_state for API limitations
293 state the relevant exim_gnutls_state_st *
297 extract_exim_vars_from_tls_state(exim_gnutls_state_st *state)
299 gnutls_cipher_algorithm_t cipher;
300 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
303 gnutls_datum_t channel;
306 current_global_tls_state = state;
308 tls_active = state->fd_out;
310 cipher = gnutls_cipher_get(state->session);
311 /* returns size in "bytes" */
312 tls_bits = gnutls_cipher_get_key_size(cipher) * 8;
314 tls_cipher = state->ciphersuite;
316 DEBUG(D_tls) debug_printf("cipher: %s\n", tls_cipher);
318 tls_certificate_verified = state->peer_cert_verified;
320 /* note that tls_channelbinding_b64 is not saved to the spool file, since it's
321 only available for use for authenticators while this TLS session is running. */
323 tls_channelbinding_b64 = NULL;
324 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
327 rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel);
329 DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc));
331 old_pool = store_pool;
332 store_pool = POOL_PERM;
333 tls_channelbinding_b64 = auth_b64encode(channel.data, (int)channel.size);
334 store_pool = old_pool;
335 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage.\n");
339 tls_peerdn = state->peerdn;
341 tls_sni = state->received_sni;
347 /*************************************************
348 * Setup up DH parameters *
349 *************************************************/
351 /* Generating the D-H parameters may take a long time. They only need to
352 be re-generated every so often, depending on security policy. What we do is to
353 keep these parameters in a file in the spool directory. If the file does not
354 exist, we generate them. This means that it is easy to cause a regeneration.
356 The new file is written as a temporary file and renamed, so that an incomplete
357 file is never present. If two processes both compute some new parameters, you
358 waste a bit of effort, but it doesn't seem worth messing around with locking to
362 host NULL for server, server for client (for error handling)
364 Returns: OK/DEFER/FAIL
371 unsigned int dh_bits;
373 uschar filename[PATH_MAX];
375 host_item *host = NULL; /* dummy for macros */
377 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
379 rc = gnutls_dh_params_init(&dh_server_params);
380 exim_gnutls_err_check(US"gnutls_dh_params_init");
382 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
383 /* If you change this constant, also change dh_param_fn_ext so that we can use a
384 different filename and ensure we have sufficient bits. */
385 dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL);
387 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL);
389 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits.\n",
392 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
394 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
398 if (!string_format(filename, sizeof(filename),
399 "%s/gnutls-params-%d", spool_directory, dh_bits))
400 return tls_error(US"overlong filename", NULL, NULL);
402 /* Open the cache file for reading and if successful, read it and set up the
405 fd = Uopen(filename, O_RDONLY, 0);
412 if (fstat(fd, &statbuf) < 0) /* EIO */
416 return tls_error(US"TLS cache stat failed", strerror(saved_errno), NULL);
418 if (!S_ISREG(statbuf.st_mode))
421 return tls_error(US"TLS cache not a file", NULL, NULL);
423 fp = fdopen(fd, "rb");
428 return tls_error(US"fdopen(TLS cache stat fd) failed",
429 strerror(saved_errno), NULL);
432 m.size = statbuf.st_size;
433 m.data = malloc(m.size);
437 return tls_error(US"malloc failed", strerror(errno), NULL);
439 sz = fread(m.data, m.size, 1, fp);
445 return tls_error(US"fread failed", strerror(saved_errno), NULL);
449 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
451 exim_gnutls_err_check(US"gnutls_dh_params_import_pkcs3");
452 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
455 /* If the file does not exist, fall through to compute new data and cache it.
456 If there was any other opening error, it is serious. */
458 else if (errno == ENOENT)
462 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
465 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
468 /* If ret < 0, either the cache file does not exist, or the data it contains
469 is not useful. One particular case of this is when upgrading from an older
470 release of Exim in which the data was stored in a different format. We don't
471 try to be clever and support both formats; we just regenerate new data in this
478 if ((PATH_MAX - Ustrlen(filename)) < 10)
479 return tls_error(US"Filename too long to generate replacement",
482 temp_fn = string_copy(US "%s.XXXXXXX");
483 fd = mkstemp(CS temp_fn); /* modifies temp_fn */
485 return tls_error(US"Unable to open temp file", strerror(errno), NULL);
486 (void)fchown(fd, exim_uid, exim_gid); /* Probably not necessary */
488 DEBUG(D_tls) debug_printf("generating %d bits Diffie-Hellman key ...\n", dh_bits);
489 rc = gnutls_dh_params_generate2(dh_server_params, dh_bits);
490 exim_gnutls_err_check(US"gnutls_dh_params_generate2");
492 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
493 and I confirmed that a NULL call to get the size first is how the GnuTLS
494 sample apps handle this. */
498 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
500 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
501 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3(NULL) sizing");
503 m.data = malloc(m.size);
505 return tls_error(US"memory allocation failed", strerror(errno), NULL);
506 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
508 if (rc != GNUTLS_E_SUCCESS)
511 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3() real");
514 sz = write_to_fd_buf(fd, m.data, (size_t) m.size);
518 return tls_error(US"TLS cache write D-H params failed",
519 strerror(errno), NULL);
522 sz = write_to_fd_buf(fd, US"\n", 1);
524 return tls_error(US"TLS cache write D-H params final newline failed",
525 strerror(errno), NULL);
529 return tls_error(US"TLS cache write close() failed",
530 strerror(errno), NULL);
532 if (Urename(temp_fn, filename) < 0)
533 return tls_error(string_sprintf("failed to rename \"%s\" as \"%s\"",
534 temp_fn, filename), strerror(errno), NULL);
536 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
539 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
546 /*************************************************
547 * Variables re-expanded post-SNI *
548 *************************************************/
550 /* Called from both server and client code, via tls_init(), and also from
551 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
553 We can tell the two apart by state->received_sni being non-NULL in callback.
555 The callback should not call us unless state->trigger_sni_changes is true,
556 which we are responsible for setting on the first pass through.
559 state exim_gnutls_state_st *
561 Returns: OK/DEFER/FAIL
565 tls_expand_session_files(exim_gnutls_state_st *state)
569 const host_item *host = state->host; /* macro should be reconsidered? */
570 uschar *saved_tls_certificate = NULL;
571 uschar *saved_tls_privatekey = NULL;
572 uschar *saved_tls_verify_certificates = NULL;
573 uschar *saved_tls_crl = NULL;
576 /* We check for tls_sni *before* expansion. */
579 if (!state->received_sni)
581 if (state->tls_certificate && Ustrstr(state->tls_certificate, US"tls_sni"))
583 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
584 state->trigger_sni_changes = TRUE;
589 /* useful for debugging */
590 saved_tls_certificate = state->exp_tls_certificate;
591 saved_tls_privatekey = state->exp_tls_privatekey;
592 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
593 saved_tls_crl = state->exp_tls_crl;
597 rc = gnutls_certificate_allocate_credentials(&state->x509_cred);
598 exim_gnutls_err_check(US"gnutls_certificate_allocate_credentials");
600 /* remember: expand_check_tlsvar() is expand_check() but fiddling with
601 state members, assuming consistent naming; and expand_check() returns
602 false if expansion failed, unless expansion was forced to fail. */
604 /* check if we at least have a certificate, before doing expensive
607 if (!expand_check_tlsvar(tls_certificate))
610 /* certificate is mandatory in server, optional in client */
612 if ((state->exp_tls_certificate == NULL) ||
613 (*state->exp_tls_certificate == '\0'))
615 if (state->host == NULL)
616 return tls_error(US"no TLS server certificate is specified", NULL, NULL);
618 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
621 if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey))
624 /* tls_privatekey is optional, defaulting to same file as certificate */
626 if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
628 state->tls_privatekey = state->tls_certificate;
629 state->exp_tls_privatekey = state->exp_tls_certificate;
633 if (state->exp_tls_certificate && *state->exp_tls_certificate)
635 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
636 state->exp_tls_certificate, state->exp_tls_privatekey);
638 if (state->received_sni)
640 if ((Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0) &&
641 (Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0))
643 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
647 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair.\n");
651 rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
652 CS state->exp_tls_certificate, CS state->exp_tls_privatekey,
653 GNUTLS_X509_FMT_PEM);
654 exim_gnutls_err_check(
655 string_sprintf("cert/key setup: cert=%s key=%s",
656 state->exp_tls_certificate, state->exp_tls_privatekey));
657 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
658 } /* tls_certificate */
660 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
661 provided. Experiment shows that, if the certificate file is empty, an unhelpful
662 error message is provided. However, if we just refrain from setting anything up
663 in that case, certificate verification fails, which seems to be the correct
666 if (state->tls_verify_certificates && *state->tls_verify_certificates)
668 if (!expand_check_tlsvar(tls_verify_certificates))
670 if (state->tls_crl && *state->tls_crl)
671 if (!expand_check_tlsvar(tls_crl))
674 if (!(state->exp_tls_verify_certificates &&
675 *state->exp_tls_verify_certificates))
678 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
679 /* With no tls_verify_certificates, we ignore tls_crl too */
686 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
690 if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
692 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
693 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
698 /* The test suite passes in /dev/null; we could check for that path explicitly,
699 but who knows if someone has some weird FIFO which always dumps some certs, or
700 other weirdness. The thing we really want to check is that it's not a
701 directory, since while OpenSSL supports that, GnuTLS does not.
702 So s/!S_ISREG/S_ISDIR/ and change some messsaging ... */
703 if (S_ISDIR(statbuf.st_mode))
706 debug_printf("verify certificates path is a dir: \"%s\"\n",
707 state->exp_tls_verify_certificates);
708 log_write(0, LOG_MAIN|LOG_PANIC,
709 "tls_verify_certificates \"%s\" is a directory",
710 state->exp_tls_verify_certificates);
714 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
715 state->exp_tls_verify_certificates, statbuf.st_size);
717 if (statbuf.st_size == 0)
720 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
724 cert_count = gnutls_certificate_set_x509_trust_file(state->x509_cred,
725 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
729 exim_gnutls_err_check(US"gnutls_certificate_set_x509_trust_file");
731 DEBUG(D_tls) debug_printf("Added %d certificate authorities.\n", cert_count);
733 if (state->tls_crl && *state->tls_crl &&
734 state->exp_tls_crl && *state->exp_tls_crl)
736 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
737 cert_count = gnutls_certificate_set_x509_crl_file(state->x509_cred,
738 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM);
742 exim_gnutls_err_check(US"gnutls_certificate_set_x509_crl_file");
744 DEBUG(D_tls) debug_printf("Processed %d CRLs.\n", cert_count);
753 /*************************************************
754 * Set X.509 state variables *
755 *************************************************/
757 /* In GnuTLS, the registered cert/key are not replaced by a later
758 set of a cert/key, so for SNI support we need a whole new x509_cred
759 structure. Which means various other non-re-expanded pieces of state
760 need to be re-set in the new struct, so the setting logic is pulled
764 state exim_gnutls_state_st *
766 Returns: OK/DEFER/FAIL
770 tls_set_remaining_x509(exim_gnutls_state_st *state)
773 const host_item *host = state->host; /* macro should be reconsidered? */
775 /* Create D-H parameters, or read them from the cache file. This function does
776 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
777 client-side params. */
781 if (!dh_server_params)
783 rc = init_server_dh();
784 if (rc != OK) return rc;
786 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
789 /* Link the credentials to the session. */
791 rc = gnutls_credentials_set(state->session, GNUTLS_CRD_CERTIFICATE, state->x509_cred);
792 exim_gnutls_err_check(US"gnutls_credentials_set");
797 /*************************************************
798 * Initialize for GnuTLS *
799 *************************************************/
801 /* Called from both server and client code. In the case of a server, errors
802 before actual TLS negotiation return DEFER.
805 host connected host, if client; NULL if server
806 certificate certificate file
807 privatekey private key file
808 sni TLS SNI to send, sometimes when client; else NULL
811 require_ciphers tls_require_ciphers setting
813 Returns: OK/DEFER/FAIL
818 const host_item *host,
819 const uschar *certificate,
820 const uschar *privatekey,
824 const uschar *require_ciphers,
825 exim_gnutls_state_st **caller_state)
827 exim_gnutls_state_st *state;
832 BOOL want_default_priorities;
834 if (!exim_gnutls_base_init_done)
836 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
838 rc = gnutls_global_init();
839 exim_gnutls_err_check(US"gnutls_global_init");
841 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
844 gnutls_global_set_log_function(exim_gnutls_logger_cb);
845 /* arbitrarily chosen level; bump upto 9 for more */
846 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
850 exim_gnutls_base_init_done = TRUE;
855 state = &state_client;
856 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
857 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
858 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
862 state = &state_server;
863 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
864 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
865 rc = gnutls_init(&state->session, GNUTLS_SERVER);
867 exim_gnutls_err_check(US"gnutls_init");
871 state->tls_certificate = certificate;
872 state->tls_privatekey = privatekey;
873 state->tls_require_ciphers = require_ciphers;
874 state->tls_sni = sni;
875 state->tls_verify_certificates = cas;
876 state->tls_crl = crl;
878 /* This handles the variables that might get re-expanded after TLS SNI;
879 that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
882 debug_printf("Expanding various TLS configuration options for session credentials.\n");
883 rc = tls_expand_session_files(state);
884 if (rc != OK) return rc;
886 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
887 requires a new structure afterwards. */
889 rc = tls_set_remaining_x509(state);
890 if (rc != OK) return rc;
892 /* set SNI in client, only */
895 if (!expand_check_tlsvar(tls_sni))
897 if (state->exp_tls_sni && *state->exp_tls_sni)
900 debug_printf("Setting TLS client SNI to \"%s\"\n", state->exp_tls_sni);
901 sz = Ustrlen(state->exp_tls_sni);
902 rc = gnutls_server_name_set(state->session,
903 GNUTLS_NAME_DNS, state->exp_tls_sni, sz);
904 exim_gnutls_err_check(US"gnutls_server_name_set");
907 else if (state->tls_sni)
908 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
909 "have an SNI set for a client [%s]\n", state->tls_sni);
911 /* This is the priority string support,
912 http://www.gnu.org/software/gnutls/manual/html_node/Priority-Strings.html
913 and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
914 This was backwards incompatible, but means Exim no longer needs to track
915 all algorithms and provide string forms for them. */
917 want_default_priorities = TRUE;
919 if (state->tls_require_ciphers && *state->tls_require_ciphers)
921 if (!expand_check_tlsvar(tls_require_ciphers))
923 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
925 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n",
926 state->exp_tls_require_ciphers);
928 rc = gnutls_priority_init(&state->priority_cache,
929 CS state->exp_tls_require_ciphers, &errpos);
930 want_default_priorities = FALSE;
931 p = state->exp_tls_require_ciphers;
934 if (want_default_priorities)
937 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n",
938 exim_default_gnutls_priority);
939 rc = gnutls_priority_init(&state->priority_cache,
940 exim_default_gnutls_priority, &errpos);
941 p = US exim_default_gnutls_priority;
944 exim_gnutls_err_check(string_sprintf(
945 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
946 p, errpos - CS p, errpos));
948 rc = gnutls_priority_set(state->session, state->priority_cache);
949 exim_gnutls_err_check(US"gnutls_priority_set");
951 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
953 /* Reduce security in favour of increased compatibility, if the admin
954 decides to make that trade-off. */
955 if (gnutls_compat_mode)
957 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
958 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
959 gnutls_session_enable_compatibility_mode(state->session);
961 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
965 *caller_state = state;
966 /* needs to happen before callbacks during handshake */
967 current_global_tls_state = state;
974 /*************************************************
975 * Extract peer information *
976 *************************************************/
978 /* Called from both server and client code.
979 Only this is allowed to set state->peerdn and state->have_set_peerdn
980 and we use that to detect double-calls.
982 NOTE: the state blocks last while the TLS connection is up, which is fine
983 for logging in the server side, but for the client side, we log after teardown
984 in src/deliver.c. While the session is up, we can twist about states and
985 repoint tls_* globals, but those variables used for logging or other variable
986 expansion that happens _after_ delivery need to have a longer life-time.
988 So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
989 doing this more than once per generation of a state context. We set them in
990 the state context, and repoint tls_* to them. After the state goes away, the
991 tls_* copies of the pointers remain valid and client delivery logging is happy.
993 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
997 state exim_gnutls_state_st *
999 Returns: OK/DEFER/FAIL
1003 peer_status(exim_gnutls_state_st *state)
1005 uschar cipherbuf[256];
1006 const gnutls_datum *cert_list;
1008 unsigned int cert_list_size = 0;
1009 gnutls_protocol_t protocol;
1010 gnutls_cipher_algorithm_t cipher;
1011 gnutls_kx_algorithm_t kx;
1012 gnutls_mac_algorithm_t mac;
1013 gnutls_certificate_type_t ct;
1014 gnutls_x509_crt_t crt;
1018 if (state->have_set_peerdn)
1020 state->have_set_peerdn = TRUE;
1022 state->peerdn = NULL;
1025 cipher = gnutls_cipher_get(state->session);
1026 protocol = gnutls_protocol_get_version(state->session);
1027 mac = gnutls_mac_get(state->session);
1028 kx = gnutls_kx_get(state->session);
1030 string_format(cipherbuf, sizeof(cipherbuf),
1032 gnutls_protocol_get_name(protocol),
1033 gnutls_cipher_suite_get_name(kx, cipher, mac),
1034 (int) gnutls_cipher_get_key_size(cipher) * 8);
1036 /* I don't see a way that spaces could occur, in the current GnuTLS
1037 code base, but it was a concern in the old code and perhaps older GnuTLS
1038 releases did return "TLS 1.0"; play it safe, just in case. */
1039 for (p = cipherbuf; *p != '\0'; ++p)
1042 old_pool = store_pool;
1043 store_pool = POOL_PERM;
1044 state->ciphersuite = string_copy(cipherbuf);
1045 store_pool = old_pool;
1046 tls_cipher = state->ciphersuite;
1049 cert_list = gnutls_certificate_get_peers(state->session, &cert_list_size);
1051 if (cert_list == NULL || cert_list_size == 0)
1053 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
1054 cert_list, cert_list_size);
1055 if (state->verify_requirement == VERIFY_REQUIRED)
1056 return tls_error(US"certificate verification failed",
1057 "no certificate received from peer", state->host);
1061 ct = gnutls_certificate_type_get(state->session);
1062 if (ct != GNUTLS_CRT_X509)
1064 const char *ctn = gnutls_certificate_type_get_name(ct);
1066 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1067 if (state->verify_requirement == VERIFY_REQUIRED)
1068 return tls_error(US"certificate verification not possible, unhandled type",
1073 #define exim_gnutls_peer_err(Label) do { \
1074 if (rc != GNUTLS_E_SUCCESS) { \
1075 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", (Label), gnutls_strerror(rc)); \
1076 if (state->verify_requirement == VERIFY_REQUIRED) { return tls_error((Label), gnutls_strerror(rc), state->host); } \
1077 return OK; } } while (0)
1079 rc = gnutls_x509_crt_init(&crt);
1080 exim_gnutls_peer_err(US"gnutls_x509_crt_init (crt)");
1082 rc = gnutls_x509_crt_import(crt, &cert_list[0], GNUTLS_X509_FMT_DER);
1083 exim_gnutls_peer_err(US"failed to import certificate [gnutls_x509_crt_import(cert 0)]");
1085 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1086 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
1088 exim_gnutls_peer_err(US"getting size for cert DN failed");
1089 return FAIL; /* should not happen */
1091 dn_buf = store_get_perm(sz);
1092 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1093 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1094 state->peerdn = dn_buf;
1097 #undef exim_gnutls_peer_err
1103 /*************************************************
1104 * Verify peer certificate *
1105 *************************************************/
1107 /* Called from both server and client code.
1108 *Should* be using a callback registered with
1109 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1110 the peer information, but that's too new for some OSes.
1113 state exim_gnutls_state_st *
1114 error where to put an error message
1117 FALSE if the session should be rejected
1118 TRUE if the cert is okay or we just don't care
1122 verify_certificate(exim_gnutls_state_st *state, const char **error)
1125 unsigned int verify;
1129 rc = peer_status(state);
1132 verify = GNUTLS_CERT_INVALID;
1133 *error = "not supplied";
1137 rc = gnutls_certificate_verify_peers2(state->session, &verify);
1140 /* Handle the result of verification. INVALID seems to be set as well
1141 as REVOKED, but leave the test for both. */
1143 if ((rc < 0) || (verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED)) != 0)
1145 state->peer_cert_verified = FALSE;
1147 *error = ((verify & GNUTLS_CERT_REVOKED) != 0) ? "revoked" : "invalid";
1150 debug_printf("TLS certificate verification failed (%s): peerdn=%s\n",
1151 *error, state->peerdn ? state->peerdn : US"<unset>");
1153 if (state->verify_requirement == VERIFY_REQUIRED)
1155 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1159 debug_printf("TLS verify failure overriden (host in tls_try_verify_hosts)\n");
1163 state->peer_cert_verified = TRUE;
1164 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=%s\n",
1165 state->peerdn ? state->peerdn : US"<unset>");
1168 tls_peerdn = state->peerdn;
1176 /* ------------------------------------------------------------------------ */
1179 /* Logging function which can be registered with
1180 * gnutls_global_set_log_function()
1181 * gnutls_global_set_log_level() 0..9
1183 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1185 exim_gnutls_logger_cb(int level, const char *message)
1187 size_t len = strlen(message);
1190 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
1193 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
1194 message[len-1] == '\n' ? "" : "\n");
1199 /* Called after client hello, should handle SNI work.
1200 This will always set tls_sni (state->received_sni) if available,
1201 and may trigger presenting different certificates,
1202 if state->trigger_sni_changes is TRUE.
1204 Should be registered with
1205 gnutls_handshake_set_post_client_hello_function()
1207 "This callback must return 0 on success or a gnutls error code to terminate the
1210 For inability to get SNI information, we return 0.
1211 We only return non-zero if re-setup failed.
1215 exim_sni_handling_cb(gnutls_session_t session)
1217 char sni_name[MAX_HOST_LEN];
1218 size_t data_len = MAX_HOST_LEN;
1219 exim_gnutls_state_st *state = current_global_tls_state;
1220 unsigned int sni_type;
1223 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
1224 if (rc != GNUTLS_E_SUCCESS)
1227 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
1228 debug_printf("TLS: no SNI presented in handshake.\n");
1230 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
1231 gnutls_strerror(rc), rc);
1236 if (sni_type != GNUTLS_NAME_DNS)
1238 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
1242 /* We now have a UTF-8 string in sni_name */
1243 old_pool = store_pool;
1244 store_pool = POOL_PERM;
1245 state->received_sni = string_copyn(US sni_name, data_len);
1246 store_pool = old_pool;
1248 /* We set this one now so that variable expansions below will work */
1249 tls_sni = state->received_sni;
1251 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
1252 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
1254 if (!state->trigger_sni_changes)
1257 rc = tls_expand_session_files(state);
1260 /* If the setup of certs/etc failed before handshake, TLS would not have
1261 been offered. The best we can do now is abort. */
1262 return GNUTLS_E_APPLICATION_ERROR_MIN;
1265 rc = tls_set_remaining_x509(state);
1266 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
1274 /* ------------------------------------------------------------------------ */
1275 /* Exported functions */
1280 /*************************************************
1281 * Start a TLS session in a server *
1282 *************************************************/
1284 /* This is called when Exim is running as a server, after having received
1285 the STARTTLS command. It must respond to that command, and then negotiate
1289 require_ciphers list of allowed ciphers or NULL
1291 Returns: OK on success
1292 DEFER for errors before the start of the negotiation
1293 FAIL for errors during the negotation; the server can't
1298 tls_server_start(const uschar *require_ciphers)
1302 exim_gnutls_state_st *state = NULL;
1304 /* Check for previous activation */
1305 /* nb: this will not be TLS callout safe, needs reworking as part of that. */
1307 if (tls_active >= 0)
1309 tls_error(US"STARTTLS received after TLS started", "", NULL);
1310 smtp_printf("554 Already in TLS\r\n");
1314 /* Initialize the library. If it fails, it will already have logged the error
1315 and sent an SMTP response. */
1317 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
1319 rc = tls_init(NULL, tls_certificate, tls_privatekey,
1320 NULL, tls_verify_certificates, tls_crl,
1321 require_ciphers, &state);
1322 if (rc != OK) return rc;
1324 /* If this is a host for which certificate verification is mandatory or
1325 optional, set up appropriately. */
1327 if (verify_check_host(&tls_verify_hosts) == OK)
1329 DEBUG(D_tls) debug_printf("TLS: a client certificate will be required.\n");
1330 state->verify_requirement = VERIFY_REQUIRED;
1331 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1333 else if (verify_check_host(&tls_try_verify_hosts) == OK)
1335 DEBUG(D_tls) debug_printf("TLS: a client certificate will be requested but not required.\n");
1336 state->verify_requirement = VERIFY_OPTIONAL;
1337 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1341 DEBUG(D_tls) debug_printf("TLS: a client certificate will not be requested.\n");
1342 state->verify_requirement = VERIFY_NONE;
1343 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
1346 /* Register SNI handling; always, even if not in tls_certificate, so that the
1347 expansion variable $tls_sni is always available. */
1349 gnutls_handshake_set_post_client_hello_function(state->session,
1350 exim_sni_handling_cb);
1352 /* Set context and tell client to go ahead, except in the case of TLS startup
1353 on connection, where outputting anything now upsets the clients and tends to
1354 make them disconnect. We need to have an explicit fflush() here, to force out
1355 the response. Other smtp_printf() calls do not need it, because in non-TLS
1356 mode, the fflush() happens when smtp_getc() is called. */
1358 if (!tls_on_connect)
1360 smtp_printf("220 TLS go ahead\r\n");
1364 /* Now negotiate the TLS session. We put our own timer on it, since it seems
1365 that the GnuTLS library doesn't. */
1367 gnutls_transport_set_ptr2(state->session,
1368 (gnutls_transport_ptr)fileno(smtp_in),
1369 (gnutls_transport_ptr)fileno(smtp_out));
1370 state->fd_in = fileno(smtp_in);
1371 state->fd_out = fileno(smtp_out);
1373 sigalrm_seen = FALSE;
1374 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1377 rc = gnutls_handshake(state->session);
1378 } while ((rc == GNUTLS_E_AGAIN) ||
1379 (rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen));
1382 if (rc != GNUTLS_E_SUCCESS)
1384 tls_error(US"gnutls_handshake",
1385 sigalrm_seen ? "timed out" : gnutls_strerror(rc), NULL);
1386 /* It seems that, except in the case of a timeout, we have to close the
1387 connection right here; otherwise if the other end is running OpenSSL it hangs
1388 until the server times out. */
1392 (void)fclose(smtp_out);
1393 (void)fclose(smtp_in);
1399 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1401 /* Verify after the fact */
1403 if (state->verify_requirement != VERIFY_NONE)
1405 if (!verify_certificate(state, &error))
1407 if (state->verify_requirement == VERIFY_OPTIONAL)
1410 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
1415 tls_error(US"certificate verification failed", error, NULL);
1421 /* Figure out peer DN, and if authenticated, etc. */
1423 rc = peer_status(state);
1424 if (rc != OK) return rc;
1426 /* Sets various Exim expansion variables; always safe within server */
1428 extract_exim_vars_from_tls_state(state);
1430 /* TLS has been set up. Adjust the input functions to read via TLS,
1431 and initialize appropriately. */
1433 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
1435 receive_getc = tls_getc;
1436 receive_ungetc = tls_ungetc;
1437 receive_feof = tls_feof;
1438 receive_ferror = tls_ferror;
1439 receive_smtp_buffered = tls_smtp_buffered;
1447 /*************************************************
1448 * Start a TLS session in a client *
1449 *************************************************/
1451 /* Called from the smtp transport after STARTTLS has been accepted.
1454 fd the fd of the connection
1455 host connected host (for messages)
1456 addr the first address (not used)
1457 dhparam DH parameter file (ignored, we're a client)
1458 certificate certificate file
1459 privatekey private key file
1460 sni TLS SNI to send to remote host
1461 verify_certs file for certificate verify
1462 verify_crl CRL for verify
1463 require_ciphers list of allowed ciphers or NULL
1464 timeout startup timeout
1466 Returns: OK/DEFER/FAIL (because using common functions),
1467 but for a client, DEFER and FAIL have the same meaning
1471 tls_client_start(int fd, host_item *host,
1472 address_item *addr ARG_UNUSED, uschar *dhparam ARG_UNUSED,
1473 uschar *certificate, uschar *privatekey, uschar *sni,
1474 uschar *verify_certs, uschar *verify_crl,
1475 uschar *require_ciphers, int timeout)
1479 exim_gnutls_state_st *state = NULL;
1481 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", fd);
1483 rc = tls_init(host, certificate, privatekey,
1484 sni, verify_certs, verify_crl, require_ciphers, &state);
1485 if (rc != OK) return rc;
1487 gnutls_dh_set_prime_bits(state->session, EXIM_CLIENT_DH_MIN_BITS);
1489 if (verify_certs == NULL)
1491 DEBUG(D_tls) debug_printf("TLS: server certificate verification not required\n");
1492 state->verify_requirement = VERIFY_NONE;
1493 /* we still ask for it, to log it, etc */
1494 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1498 DEBUG(D_tls) debug_printf("TLS: server certificate verification required\n");
1499 state->verify_requirement = VERIFY_REQUIRED;
1500 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1503 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr)fd);
1507 /* There doesn't seem to be a built-in timeout on connection. */
1509 sigalrm_seen = FALSE;
1513 rc = gnutls_handshake(state->session);
1514 } while ((rc == GNUTLS_E_AGAIN) ||
1515 (rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen));
1518 if (rc != GNUTLS_E_SUCCESS)
1519 return tls_error(US"gnutls_handshake",
1520 sigalrm_seen ? "timed out" : gnutls_strerror(rc), state->host);
1522 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1526 if (state->verify_requirement != VERIFY_NONE &&
1527 !verify_certificate(state, &error))
1528 return tls_error(US"certificate verification failed", error, state->host);
1530 /* Figure out peer DN, and if authenticated, etc. */
1532 rc = peer_status(state);
1533 if (rc != OK) return rc;
1535 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
1537 extract_exim_vars_from_tls_state(state);
1545 /*************************************************
1546 * Close down a TLS session *
1547 *************************************************/
1549 /* This is also called from within a delivery subprocess forked from the
1550 daemon, to shut down the TLS library, without actually doing a shutdown (which
1551 would tamper with the TLS session in the parent process).
1553 Arguments: TRUE if gnutls_bye is to be called
1558 tls_close(BOOL shutdown)
1560 exim_gnutls_state_st *state = current_global_tls_state;
1562 if (tls_active < 0) return; /* TLS was not active */
1566 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS\n");
1567 gnutls_bye(state->session, GNUTLS_SHUT_WR);
1570 gnutls_deinit(state->session);
1572 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1574 if ((state_server.session == NULL) && (state_client.session == NULL))
1576 gnutls_global_deinit();
1577 exim_gnutls_base_init_done = FALSE;
1586 /*************************************************
1587 * TLS version of getc *
1588 *************************************************/
1590 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
1591 it refills the buffer via the GnuTLS reading function.
1593 This feeds DKIM and should be used for all message-body reads.
1596 Returns: the next character or EOF
1602 exim_gnutls_state_st *state = current_global_tls_state;
1603 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
1607 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
1608 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
1610 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1611 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
1612 ssl_xfer_buffer_size);
1615 /* A zero-byte return appears to mean that the TLS session has been
1616 closed down, not that the socket itself has been closed down. Revert to
1617 non-TLS handling. */
1621 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1623 receive_getc = smtp_getc;
1624 receive_ungetc = smtp_ungetc;
1625 receive_feof = smtp_feof;
1626 receive_ferror = smtp_ferror;
1627 receive_smtp_buffered = smtp_buffered;
1629 gnutls_deinit(state->session);
1630 state->session = NULL;
1633 tls_certificate_verified = FALSE;
1634 tls_channelbinding_b64 = NULL;
1641 /* Handle genuine errors */
1643 else if (inbytes < 0)
1645 record_io_error(state, (int) inbytes, US"recv", NULL);
1646 state->xfer_error = 1;
1649 #ifndef DISABLE_DKIM
1650 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
1652 state->xfer_buffer_hwm = (int) inbytes;
1653 state->xfer_buffer_lwm = 0;
1656 /* Something in the buffer; return next uschar */
1658 return state->xfer_buffer[state->xfer_buffer_lwm++];
1664 /*************************************************
1665 * Read bytes from TLS channel *
1666 *************************************************/
1668 /* This does not feed DKIM, so if the caller uses this for reading message body,
1669 then the caller must feed DKIM.
1674 Returns: the number of bytes read
1675 -1 after a failed read
1679 tls_read(uschar *buff, size_t len)
1681 exim_gnutls_state_st *state = current_global_tls_state;
1687 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
1689 debug_printf("*** PROBABLY A BUG *** " \
1690 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
1691 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
1694 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
1695 state->session, buff, len);
1697 inbytes = gnutls_record_recv(state->session, buff, len);
1698 if (inbytes > 0) return inbytes;
1701 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1703 else record_io_error(state, (int)inbytes, US"recv", NULL);
1711 /*************************************************
1712 * Write bytes down TLS channel *
1713 *************************************************/
1720 Returns: the number of bytes after a successful write,
1721 -1 after a failed write
1725 tls_write(const uschar *buff, size_t len)
1729 exim_gnutls_state_st *state = current_global_tls_state;
1731 DEBUG(D_tls) debug_printf("tls_do_write(%p, " SIZE_T_FMT ")\n", buff, left);
1734 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
1736 outbytes = gnutls_record_send(state->session, buff, left);
1738 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
1741 record_io_error(state, outbytes, US"send", NULL);
1746 record_io_error(state, 0, US"send", US"TLS channel closed on write");
1757 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
1768 /*************************************************
1769 * Random number generation *
1770 *************************************************/
1772 /* Pseudo-random number generation. The result is not expected to be
1773 cryptographically strong but not so weak that someone will shoot themselves
1774 in the foot using it as a nonce in input in some email header scheme or
1775 whatever weirdness they'll twist this into. The result should handle fork()
1776 and avoid repeating sequences. OpenSSL handles that for us.
1780 Returns a random number in range [0, max-1]
1783 #ifdef HAVE_GNUTLS_RND
1785 vaguely_random_number(int max)
1790 uschar smallbuf[sizeof(r)];
1795 needed_len = sizeof(r);
1796 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
1797 * asked for a number less than 10. */
1798 for (r = max, i = 0; r; ++i)
1804 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
1807 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
1808 return vaguely_random_number_fallback(max);
1811 for (p = smallbuf; needed_len; --needed_len, ++p)
1817 /* We don't particularly care about weighted results; if someone wants
1818 * smooth distribution and cares enough then they should submit a patch then. */
1821 #else /* HAVE_GNUTLS_RND */
1823 vaguely_random_number(int max)
1825 return vaguely_random_number_fallback(max);
1827 #endif /* HAVE_GNUTLS_RND */
1832 /*************************************************
1833 * Report the library versions. *
1834 *************************************************/
1836 /* See a description in tls-openssl.c for an explanation of why this exists.
1838 Arguments: a FILE* to print the results to
1843 tls_version_report(FILE *f)
1845 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
1848 gnutls_check_version(NULL));
1851 /* End of tls-gnu.c */