1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2013 */
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>
42 /* needed to disable PKCS11 autoload unless requested */
43 #if GNUTLS_VERSION_NUMBER >= 0x020c00
44 # include <gnutls/pkcs11.h>
50 gnutls_global_set_audit_log_function()
53 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
56 /* Local static variables for GnuTLS */
58 /* Values for verify_requirement */
60 enum peer_verify_requirement { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED };
62 /* This holds most state for server or client; with this, we can set up an
63 outbound TLS-enabled connection in an ACL callout, while not stomping all
64 over the TLS variables available for expansion.
66 Some of these correspond to variables in globals.c; those variables will
67 be set to point to content in one of these instances, as appropriate for
68 the stage of the process lifetime.
70 Not handled here: global tls_channelbinding_b64.
73 typedef struct exim_gnutls_state {
74 gnutls_session_t session;
75 gnutls_certificate_credentials_t x509_cred;
76 gnutls_priority_t priority_cache;
77 enum peer_verify_requirement verify_requirement;
80 BOOL peer_cert_verified;
81 BOOL trigger_sni_changes;
83 const struct host_item *host;
88 const uschar *tls_certificate;
89 const uschar *tls_privatekey;
90 const uschar *tls_sni; /* client send only, not received */
91 const uschar *tls_verify_certificates;
92 const uschar *tls_crl;
93 const uschar *tls_require_ciphers;
94 uschar *exp_tls_certificate;
95 uschar *exp_tls_privatekey;
97 uschar *exp_tls_verify_certificates;
99 uschar *exp_tls_require_ciphers;
101 tls_support *tlsp; /* set in tls_init() */
108 } exim_gnutls_state_st;
110 static const exim_gnutls_state_st exim_gnutls_state_init = {
111 NULL, NULL, NULL, VERIFY_NONE, -1, -1, FALSE, FALSE, FALSE,
112 NULL, NULL, NULL, NULL,
113 NULL, NULL, NULL, NULL, NULL, NULL,
114 NULL, NULL, NULL, NULL, NULL, NULL,
119 /* Not only do we have our own APIs which don't pass around state, assuming
120 it's held in globals, GnuTLS doesn't appear to let us register callback data
121 for callbacks, or as part of the session, so we have to keep a "this is the
122 context we're currently dealing with" pointer and rely upon being
123 single-threaded to keep from processing data on an inbound TLS connection while
124 talking to another TLS connection for an outbound check. This does mean that
125 there's no way for heart-beats to be responded to, for the duration of the
126 second connection. */
128 static exim_gnutls_state_st state_server, state_client;
130 /* dh_params are initialised once within the lifetime of a process using TLS;
131 if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
132 don't want to repeat this. */
134 static gnutls_dh_params_t dh_server_params = NULL;
136 /* No idea how this value was chosen; preserving it. Default is 3600. */
138 static const int ssl_session_timeout = 200;
140 static const char * const exim_default_gnutls_priority = "NORMAL";
142 /* Guard library core initialisation */
144 static BOOL exim_gnutls_base_init_done = FALSE;
147 /* ------------------------------------------------------------------------ */
150 #define MAX_HOST_LEN 255
152 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
153 the library logging; a value less than 0 disables the calls to set up logging
155 #ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
156 #define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
159 #ifndef EXIM_CLIENT_DH_MIN_BITS
160 #define EXIM_CLIENT_DH_MIN_BITS 1024
163 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
164 can ask for a bit-strength. Without that, we stick to the constant we had
166 #ifndef EXIM_SERVER_DH_BITS_PRE2_12
167 #define EXIM_SERVER_DH_BITS_PRE2_12 1024
170 #define exim_gnutls_err_check(Label) do { \
171 if (rc != GNUTLS_E_SUCCESS) { return tls_error((Label), gnutls_strerror(rc), host); } } while (0)
173 #define expand_check_tlsvar(Varname) expand_check(state->Varname, US #Varname, &state->exp_##Varname)
175 #if GNUTLS_VERSION_NUMBER >= 0x020c00
176 #define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
177 #define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
178 #define HAVE_GNUTLS_RND
179 /* The security fix we provide with the gnutls_allow_auto_pkcs11 option
180 * (4.82 PP/09) introduces a compatibility regression. The symbol simply
181 * isn't available sometimes, so this needs to become a conditional
182 * compilation; the sanest way to deal with this being a problem on
183 * older OSes is to block it in the Local/Makefile with this compiler
185 #ifndef AVOID_GNUTLS_PKCS11
186 #define HAVE_GNUTLS_PKCS11
187 #endif /* AVOID_GNUTLS_PKCS11 */
193 /* ------------------------------------------------------------------------ */
194 /* Callback declarations */
196 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
197 static void exim_gnutls_logger_cb(int level, const char *message);
200 static int exim_sni_handling_cb(gnutls_session_t session);
205 /* ------------------------------------------------------------------------ */
206 /* Static functions */
208 /*************************************************
210 *************************************************/
212 /* Called from lots of places when errors occur before actually starting to do
213 the TLS handshake, that is, while the session is still in clear. Always returns
214 DEFER for a server and FAIL for a client so that most calls can use "return
215 tls_error(...)" to do this processing and then give an appropriate return. A
216 single function is used for both server and client, because it is called from
217 some shared functions.
220 prefix text to include in the logged error
221 msg additional error string (may be NULL)
222 usually obtained from gnutls_strerror()
223 host NULL if setting up a server;
224 the connected host if setting up a client
226 Returns: OK/DEFER/FAIL
230 tls_error(const uschar *prefix, const char *msg, const host_item *host)
234 log_write(0, LOG_MAIN, "TLS error on connection to %s [%s] (%s)%s%s",
235 host->name, host->address, prefix, msg ? ": " : "", msg ? msg : "");
240 uschar *conn_info = smtp_get_connection_info();
241 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0)
243 log_write(0, LOG_MAIN, "TLS error on %s (%s)%s%s",
244 conn_info, prefix, msg ? ": " : "", msg ? msg : "");
252 /*************************************************
253 * Deal with logging errors during I/O *
254 *************************************************/
256 /* We have to get the identity of the peer from saved data.
259 state the current GnuTLS exim state container
260 rc the GnuTLS error code, or 0 if it's a local error
261 when text identifying read or write
262 text local error text when ec is 0
268 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
272 if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED)
273 msg = CS string_sprintf("%s: %s", US gnutls_strerror(rc),
274 US gnutls_alert_get_name(gnutls_alert_get(state->session)));
276 msg = gnutls_strerror(rc);
278 tls_error(when, msg, state->host);
284 /*************************************************
285 * Set various Exim expansion vars *
286 *************************************************/
288 /* We set various Exim global variables from the state, once a session has
289 been established. With TLS callouts, may need to change this to stack
290 variables, or just re-call it with the server state after client callout
293 Make sure anything set here is inset in tls_getc().
297 tls_bits strength indicator
298 tls_certificate_verified bool indicator
299 tls_channelbinding_b64 for some SASL mechanisms
302 tls_sni a (UTF-8) string
305 state the relevant exim_gnutls_state_st *
309 extract_exim_vars_from_tls_state(exim_gnutls_state_st *state, BOOL is_server)
311 gnutls_cipher_algorithm_t cipher;
312 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
315 gnutls_datum_t channel;
318 state->tlsp->active = state->fd_out;
320 cipher = gnutls_cipher_get(state->session);
321 /* returns size in "bytes" */
322 state->tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
324 state->tlsp->cipher = state->ciphersuite;
326 DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
328 state->tlsp->certificate_verified = state->peer_cert_verified;
330 /* note that tls_channelbinding_b64 is not saved to the spool file, since it's
331 only available for use for authenticators while this TLS session is running. */
333 tls_channelbinding_b64 = NULL;
334 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
337 rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel);
339 DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc));
341 old_pool = store_pool;
342 store_pool = POOL_PERM;
343 tls_channelbinding_b64 = auth_b64encode(channel.data, (int)channel.size);
344 store_pool = old_pool;
345 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage.\n");
349 state->tlsp->peerdn = state->peerdn;
350 state->tlsp->sni = state->received_sni;
356 /*************************************************
357 * Setup up DH parameters *
358 *************************************************/
360 /* Generating the D-H parameters may take a long time. They only need to
361 be re-generated every so often, depending on security policy. What we do is to
362 keep these parameters in a file in the spool directory. If the file does not
363 exist, we generate them. This means that it is easy to cause a regeneration.
365 The new file is written as a temporary file and renamed, so that an incomplete
366 file is never present. If two processes both compute some new parameters, you
367 waste a bit of effort, but it doesn't seem worth messing around with locking to
370 Returns: OK/DEFER/FAIL
377 unsigned int dh_bits;
379 uschar filename_buf[PATH_MAX];
380 uschar *filename = NULL;
382 uschar *exp_tls_dhparam;
383 BOOL use_file_in_spool = FALSE;
384 BOOL use_fixed_file = FALSE;
385 host_item *host = NULL; /* dummy for macros */
387 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
389 rc = gnutls_dh_params_init(&dh_server_params);
390 exim_gnutls_err_check(US"gnutls_dh_params_init");
395 if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam))
398 if (!exp_tls_dhparam)
400 DEBUG(D_tls) debug_printf("Loading default hard-coded DH params\n");
401 m.data = US std_dh_prime_default();
402 m.size = Ustrlen(m.data);
404 else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
405 use_file_in_spool = TRUE;
406 else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
408 DEBUG(D_tls) debug_printf("Requested no DH parameters.\n");
411 else if (exp_tls_dhparam[0] != '/')
413 m.data = US std_dh_prime_named(exp_tls_dhparam);
415 return tls_error(US"No standard prime named", CS exp_tls_dhparam, NULL);
416 m.size = Ustrlen(m.data);
420 use_fixed_file = TRUE;
421 filename = exp_tls_dhparam;
426 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
427 exim_gnutls_err_check(US"gnutls_dh_params_import_pkcs3");
428 DEBUG(D_tls) debug_printf("Loaded fixed standard D-H parameters\n");
432 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
433 /* If you change this constant, also change dh_param_fn_ext so that we can use a
434 different filename and ensure we have sufficient bits. */
435 dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL);
437 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL);
439 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits.\n",
442 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
444 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
448 /* Some clients have hard-coded limits. */
449 if (dh_bits > tls_dh_max_bits)
452 debug_printf("tls_dh_max_bits clamping override, using %d bits instead.\n",
454 dh_bits = tls_dh_max_bits;
457 if (use_file_in_spool)
459 if (!string_format(filename_buf, sizeof(filename_buf),
460 "%s/gnutls-params-%d", spool_directory, dh_bits))
461 return tls_error(US"overlong filename", NULL, NULL);
462 filename = filename_buf;
465 /* Open the cache file for reading and if successful, read it and set up the
468 fd = Uopen(filename, O_RDONLY, 0);
475 if (fstat(fd, &statbuf) < 0) /* EIO */
479 return tls_error(US"TLS cache stat failed", strerror(saved_errno), NULL);
481 if (!S_ISREG(statbuf.st_mode))
484 return tls_error(US"TLS cache not a file", NULL, NULL);
486 fp = fdopen(fd, "rb");
491 return tls_error(US"fdopen(TLS cache stat fd) failed",
492 strerror(saved_errno), NULL);
495 m.size = statbuf.st_size;
496 m.data = malloc(m.size);
500 return tls_error(US"malloc failed", strerror(errno), NULL);
502 sz = fread(m.data, m.size, 1, fp);
508 return tls_error(US"fread failed", strerror(saved_errno), NULL);
512 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
514 exim_gnutls_err_check(US"gnutls_dh_params_import_pkcs3");
515 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
518 /* If the file does not exist, fall through to compute new data and cache it.
519 If there was any other opening error, it is serious. */
521 else if (errno == ENOENT)
525 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
528 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
531 /* If ret < 0, either the cache file does not exist, or the data it contains
532 is not useful. One particular case of this is when upgrading from an older
533 release of Exim in which the data was stored in a different format. We don't
534 try to be clever and support both formats; we just regenerate new data in this
540 unsigned int dh_bits_gen = dh_bits;
542 if ((PATH_MAX - Ustrlen(filename)) < 10)
543 return tls_error(US"Filename too long to generate replacement",
546 temp_fn = string_copy(US "%s.XXXXXXX");
547 fd = mkstemp(CS temp_fn); /* modifies temp_fn */
549 return tls_error(US"Unable to open temp file", strerror(errno), NULL);
550 (void)fchown(fd, exim_uid, exim_gid); /* Probably not necessary */
552 /* GnuTLS overshoots!
553 * If we ask for 2236, we might get 2237 or more.
554 * But there's no way to ask GnuTLS how many bits there really are.
555 * We can ask how many bits were used in a TLS session, but that's it!
556 * The prime itself is hidden behind too much abstraction.
557 * So we ask for less, and proceed on a wing and a prayer.
558 * First attempt, subtracted 3 for 2233 and got 2240.
560 if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
562 dh_bits_gen = dh_bits - 10;
564 debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
569 debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
571 rc = gnutls_dh_params_generate2(dh_server_params, dh_bits_gen);
572 exim_gnutls_err_check(US"gnutls_dh_params_generate2");
574 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
575 and I confirmed that a NULL call to get the size first is how the GnuTLS
576 sample apps handle this. */
580 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
582 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
583 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3(NULL) sizing");
585 m.data = malloc(m.size);
587 return tls_error(US"memory allocation failed", strerror(errno), NULL);
588 /* this will return a size 1 less than the allocation size above */
589 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
591 if (rc != GNUTLS_E_SUCCESS)
594 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3() real");
596 m.size = sz; /* shrink by 1, probably */
598 sz = write_to_fd_buf(fd, m.data, (size_t) m.size);
602 return tls_error(US"TLS cache write D-H params failed",
603 strerror(errno), NULL);
606 sz = write_to_fd_buf(fd, US"\n", 1);
608 return tls_error(US"TLS cache write D-H params final newline failed",
609 strerror(errno), NULL);
613 return tls_error(US"TLS cache write close() failed",
614 strerror(errno), NULL);
616 if (Urename(temp_fn, filename) < 0)
617 return tls_error(string_sprintf("failed to rename \"%s\" as \"%s\"",
618 temp_fn, filename), strerror(errno), NULL);
620 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
623 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
630 /*************************************************
631 * Variables re-expanded post-SNI *
632 *************************************************/
634 /* Called from both server and client code, via tls_init(), and also from
635 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
637 We can tell the two apart by state->received_sni being non-NULL in callback.
639 The callback should not call us unless state->trigger_sni_changes is true,
640 which we are responsible for setting on the first pass through.
643 state exim_gnutls_state_st *
645 Returns: OK/DEFER/FAIL
649 tls_expand_session_files(exim_gnutls_state_st *state)
653 const host_item *host = state->host; /* macro should be reconsidered? */
654 uschar *saved_tls_certificate = NULL;
655 uschar *saved_tls_privatekey = NULL;
656 uschar *saved_tls_verify_certificates = NULL;
657 uschar *saved_tls_crl = NULL;
660 /* We check for tls_sni *before* expansion. */
663 if (!state->received_sni)
665 if (state->tls_certificate &&
666 (Ustrstr(state->tls_certificate, US"tls_sni") ||
667 Ustrstr(state->tls_certificate, US"tls_in_sni") ||
668 Ustrstr(state->tls_certificate, US"tls_out_sni")
671 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
672 state->trigger_sni_changes = TRUE;
677 /* useful for debugging */
678 saved_tls_certificate = state->exp_tls_certificate;
679 saved_tls_privatekey = state->exp_tls_privatekey;
680 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
681 saved_tls_crl = state->exp_tls_crl;
685 rc = gnutls_certificate_allocate_credentials(&state->x509_cred);
686 exim_gnutls_err_check(US"gnutls_certificate_allocate_credentials");
688 /* remember: expand_check_tlsvar() is expand_check() but fiddling with
689 state members, assuming consistent naming; and expand_check() returns
690 false if expansion failed, unless expansion was forced to fail. */
692 /* check if we at least have a certificate, before doing expensive
695 if (!expand_check_tlsvar(tls_certificate))
698 /* certificate is mandatory in server, optional in client */
700 if ((state->exp_tls_certificate == NULL) ||
701 (*state->exp_tls_certificate == '\0'))
703 if (state->host == NULL)
704 return tls_error(US"no TLS server certificate is specified", NULL, NULL);
706 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
709 if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey))
712 /* tls_privatekey is optional, defaulting to same file as certificate */
714 if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
716 state->tls_privatekey = state->tls_certificate;
717 state->exp_tls_privatekey = state->exp_tls_certificate;
721 if (state->exp_tls_certificate && *state->exp_tls_certificate)
723 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
724 state->exp_tls_certificate, state->exp_tls_privatekey);
726 if (state->received_sni)
728 if ((Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0) &&
729 (Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0))
731 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
735 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair.\n");
739 rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
740 CS state->exp_tls_certificate, CS state->exp_tls_privatekey,
741 GNUTLS_X509_FMT_PEM);
742 exim_gnutls_err_check(
743 string_sprintf("cert/key setup: cert=%s key=%s",
744 state->exp_tls_certificate, state->exp_tls_privatekey));
745 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
746 } /* tls_certificate */
748 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
749 provided. Experiment shows that, if the certificate file is empty, an unhelpful
750 error message is provided. However, if we just refrain from setting anything up
751 in that case, certificate verification fails, which seems to be the correct
754 if (state->tls_verify_certificates && *state->tls_verify_certificates)
756 if (!expand_check_tlsvar(tls_verify_certificates))
758 if (state->tls_crl && *state->tls_crl)
759 if (!expand_check_tlsvar(tls_crl))
762 if (!(state->exp_tls_verify_certificates &&
763 *state->exp_tls_verify_certificates))
766 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
767 /* With no tls_verify_certificates, we ignore tls_crl too */
774 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
778 if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
780 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
781 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
786 /* The test suite passes in /dev/null; we could check for that path explicitly,
787 but who knows if someone has some weird FIFO which always dumps some certs, or
788 other weirdness. The thing we really want to check is that it's not a
789 directory, since while OpenSSL supports that, GnuTLS does not.
790 So s/!S_ISREG/S_ISDIR/ and change some messsaging ... */
791 if (S_ISDIR(statbuf.st_mode))
794 debug_printf("verify certificates path is a dir: \"%s\"\n",
795 state->exp_tls_verify_certificates);
796 log_write(0, LOG_MAIN|LOG_PANIC,
797 "tls_verify_certificates \"%s\" is a directory",
798 state->exp_tls_verify_certificates);
802 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
803 state->exp_tls_verify_certificates, statbuf.st_size);
805 if (statbuf.st_size == 0)
808 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
812 cert_count = gnutls_certificate_set_x509_trust_file(state->x509_cred,
813 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
817 exim_gnutls_err_check(US"gnutls_certificate_set_x509_trust_file");
819 DEBUG(D_tls) debug_printf("Added %d certificate authorities.\n", cert_count);
821 if (state->tls_crl && *state->tls_crl &&
822 state->exp_tls_crl && *state->exp_tls_crl)
824 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
825 cert_count = gnutls_certificate_set_x509_crl_file(state->x509_cred,
826 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM);
830 exim_gnutls_err_check(US"gnutls_certificate_set_x509_crl_file");
832 DEBUG(D_tls) debug_printf("Processed %d CRLs.\n", cert_count);
841 /*************************************************
842 * Set X.509 state variables *
843 *************************************************/
845 /* In GnuTLS, the registered cert/key are not replaced by a later
846 set of a cert/key, so for SNI support we need a whole new x509_cred
847 structure. Which means various other non-re-expanded pieces of state
848 need to be re-set in the new struct, so the setting logic is pulled
852 state exim_gnutls_state_st *
854 Returns: OK/DEFER/FAIL
858 tls_set_remaining_x509(exim_gnutls_state_st *state)
861 const host_item *host = state->host; /* macro should be reconsidered? */
863 /* Create D-H parameters, or read them from the cache file. This function does
864 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
865 client-side params. */
869 if (!dh_server_params)
871 rc = init_server_dh();
872 if (rc != OK) return rc;
874 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
877 /* Link the credentials to the session. */
879 rc = gnutls_credentials_set(state->session, GNUTLS_CRD_CERTIFICATE, state->x509_cred);
880 exim_gnutls_err_check(US"gnutls_credentials_set");
885 /*************************************************
886 * Initialize for GnuTLS *
887 *************************************************/
889 /* Called from both server and client code. In the case of a server, errors
890 before actual TLS negotiation return DEFER.
893 host connected host, if client; NULL if server
894 certificate certificate file
895 privatekey private key file
896 sni TLS SNI to send, sometimes when client; else NULL
899 require_ciphers tls_require_ciphers setting
900 caller_state returned state-info structure
902 Returns: OK/DEFER/FAIL
907 const host_item *host,
908 const uschar *certificate,
909 const uschar *privatekey,
913 const uschar *require_ciphers,
914 exim_gnutls_state_st **caller_state)
916 exim_gnutls_state_st *state;
921 BOOL want_default_priorities;
923 if (!exim_gnutls_base_init_done)
925 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
927 #ifdef HAVE_GNUTLS_PKCS11
928 /* By default, gnutls_global_init will init PKCS11 support in auto mode,
929 which loads modules from a config file, which sounds good and may be wanted
930 by some sysadmin, but also means in common configurations that GNOME keyring
931 environment variables are used and so breaks for users calling mailq.
932 To prevent this, we init PKCS11 first, which is the documented approach. */
933 if (!gnutls_allow_auto_pkcs11)
935 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
936 exim_gnutls_err_check(US"gnutls_pkcs11_init");
940 rc = gnutls_global_init();
941 exim_gnutls_err_check(US"gnutls_global_init");
943 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
946 gnutls_global_set_log_function(exim_gnutls_logger_cb);
947 /* arbitrarily chosen level; bump upto 9 for more */
948 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
952 exim_gnutls_base_init_done = TRUE;
957 state = &state_client;
958 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
959 state->tlsp = &tls_out;
960 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
961 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
965 state = &state_server;
966 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
967 state->tlsp = &tls_in;
968 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
969 rc = gnutls_init(&state->session, GNUTLS_SERVER);
971 exim_gnutls_err_check(US"gnutls_init");
975 state->tls_certificate = certificate;
976 state->tls_privatekey = privatekey;
977 state->tls_require_ciphers = require_ciphers;
978 state->tls_sni = sni;
979 state->tls_verify_certificates = cas;
980 state->tls_crl = crl;
982 /* This handles the variables that might get re-expanded after TLS SNI;
983 that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
986 debug_printf("Expanding various TLS configuration options for session credentials.\n");
987 rc = tls_expand_session_files(state);
988 if (rc != OK) return rc;
990 /* These are all other parts of the x509_cred handling, since SNI in GnuTLS
991 requires a new structure afterwards. */
993 rc = tls_set_remaining_x509(state);
994 if (rc != OK) return rc;
996 /* set SNI in client, only */
999 if (!expand_check(state->tlsp->sni, US"tls_out_sni", &state->exp_tls_sni))
1001 if (state->exp_tls_sni && *state->exp_tls_sni)
1004 debug_printf("Setting TLS client SNI to \"%s\"\n", state->exp_tls_sni);
1005 sz = Ustrlen(state->exp_tls_sni);
1006 rc = gnutls_server_name_set(state->session,
1007 GNUTLS_NAME_DNS, state->exp_tls_sni, sz);
1008 exim_gnutls_err_check(US"gnutls_server_name_set");
1011 else if (state->tls_sni)
1012 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
1013 "have an SNI set for a client [%s]\n", state->tls_sni);
1015 /* This is the priority string support,
1016 http://www.gnutls.org/manual/html_node/Priority-Strings.html
1017 and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
1018 This was backwards incompatible, but means Exim no longer needs to track
1019 all algorithms and provide string forms for them. */
1021 want_default_priorities = TRUE;
1023 if (state->tls_require_ciphers && *state->tls_require_ciphers)
1025 if (!expand_check_tlsvar(tls_require_ciphers))
1027 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
1029 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n",
1030 state->exp_tls_require_ciphers);
1032 rc = gnutls_priority_init(&state->priority_cache,
1033 CS state->exp_tls_require_ciphers, &errpos);
1034 want_default_priorities = FALSE;
1035 p = state->exp_tls_require_ciphers;
1038 if (want_default_priorities)
1041 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n",
1042 exim_default_gnutls_priority);
1043 rc = gnutls_priority_init(&state->priority_cache,
1044 exim_default_gnutls_priority, &errpos);
1045 p = US exim_default_gnutls_priority;
1048 exim_gnutls_err_check(string_sprintf(
1049 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
1050 p, errpos - CS p, errpos));
1052 rc = gnutls_priority_set(state->session, state->priority_cache);
1053 exim_gnutls_err_check(US"gnutls_priority_set");
1055 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
1057 /* Reduce security in favour of increased compatibility, if the admin
1058 decides to make that trade-off. */
1059 if (gnutls_compat_mode)
1061 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
1062 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
1063 gnutls_session_enable_compatibility_mode(state->session);
1065 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
1069 *caller_state = state;
1076 /*************************************************
1077 * Extract peer information *
1078 *************************************************/
1080 /* Called from both server and client code.
1081 Only this is allowed to set state->peerdn and state->have_set_peerdn
1082 and we use that to detect double-calls.
1084 NOTE: the state blocks last while the TLS connection is up, which is fine
1085 for logging in the server side, but for the client side, we log after teardown
1086 in src/deliver.c. While the session is up, we can twist about states and
1087 repoint tls_* globals, but those variables used for logging or other variable
1088 expansion that happens _after_ delivery need to have a longer life-time.
1090 So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
1091 doing this more than once per generation of a state context. We set them in
1092 the state context, and repoint tls_* to them. After the state goes away, the
1093 tls_* copies of the pointers remain valid and client delivery logging is happy.
1095 tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
1099 state exim_gnutls_state_st *
1101 Returns: OK/DEFER/FAIL
1105 peer_status(exim_gnutls_state_st *state)
1107 uschar cipherbuf[256];
1108 const gnutls_datum *cert_list;
1110 unsigned int cert_list_size = 0;
1111 gnutls_protocol_t protocol;
1112 gnutls_cipher_algorithm_t cipher;
1113 gnutls_kx_algorithm_t kx;
1114 gnutls_mac_algorithm_t mac;
1115 gnutls_certificate_type_t ct;
1116 gnutls_x509_crt_t crt;
1120 if (state->have_set_peerdn)
1122 state->have_set_peerdn = TRUE;
1124 state->peerdn = NULL;
1127 cipher = gnutls_cipher_get(state->session);
1128 protocol = gnutls_protocol_get_version(state->session);
1129 mac = gnutls_mac_get(state->session);
1130 kx = gnutls_kx_get(state->session);
1132 string_format(cipherbuf, sizeof(cipherbuf),
1134 gnutls_protocol_get_name(protocol),
1135 gnutls_cipher_suite_get_name(kx, cipher, mac),
1136 (int) gnutls_cipher_get_key_size(cipher) * 8);
1138 /* I don't see a way that spaces could occur, in the current GnuTLS
1139 code base, but it was a concern in the old code and perhaps older GnuTLS
1140 releases did return "TLS 1.0"; play it safe, just in case. */
1141 for (p = cipherbuf; *p != '\0'; ++p)
1144 old_pool = store_pool;
1145 store_pool = POOL_PERM;
1146 state->ciphersuite = string_copy(cipherbuf);
1147 store_pool = old_pool;
1148 state->tlsp->cipher = state->ciphersuite;
1151 cert_list = gnutls_certificate_get_peers(state->session, &cert_list_size);
1153 if (cert_list == NULL || cert_list_size == 0)
1155 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
1156 cert_list, cert_list_size);
1157 if (state->verify_requirement == VERIFY_REQUIRED)
1158 return tls_error(US"certificate verification failed",
1159 "no certificate received from peer", state->host);
1163 ct = gnutls_certificate_type_get(state->session);
1164 if (ct != GNUTLS_CRT_X509)
1166 const char *ctn = gnutls_certificate_type_get_name(ct);
1168 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1169 if (state->verify_requirement == VERIFY_REQUIRED)
1170 return tls_error(US"certificate verification not possible, unhandled type",
1175 #define exim_gnutls_peer_err(Label) do { \
1176 if (rc != GNUTLS_E_SUCCESS) { \
1177 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", (Label), gnutls_strerror(rc)); \
1178 if (state->verify_requirement == VERIFY_REQUIRED) { return tls_error((Label), gnutls_strerror(rc), state->host); } \
1179 return OK; } } while (0)
1181 rc = gnutls_x509_crt_init(&crt);
1182 exim_gnutls_peer_err(US"gnutls_x509_crt_init (crt)");
1184 rc = gnutls_x509_crt_import(crt, &cert_list[0], GNUTLS_X509_FMT_DER);
1185 exim_gnutls_peer_err(US"failed to import certificate [gnutls_x509_crt_import(cert 0)]");
1187 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1188 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
1190 exim_gnutls_peer_err(US"getting size for cert DN failed");
1191 return FAIL; /* should not happen */
1193 dn_buf = store_get_perm(sz);
1194 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1195 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1196 state->peerdn = dn_buf;
1199 #undef exim_gnutls_peer_err
1205 /*************************************************
1206 * Verify peer certificate *
1207 *************************************************/
1209 /* Called from both server and client code.
1210 *Should* be using a callback registered with
1211 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1212 the peer information, but that's too new for some OSes.
1215 state exim_gnutls_state_st *
1216 error where to put an error message
1219 FALSE if the session should be rejected
1220 TRUE if the cert is okay or we just don't care
1224 verify_certificate(exim_gnutls_state_st *state, const char **error)
1227 unsigned int verify;
1231 rc = peer_status(state);
1234 verify = GNUTLS_CERT_INVALID;
1235 *error = "not supplied";
1239 rc = gnutls_certificate_verify_peers2(state->session, &verify);
1242 /* Handle the result of verification. INVALID seems to be set as well
1243 as REVOKED, but leave the test for both. */
1245 if ((rc < 0) || (verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED)) != 0)
1247 state->peer_cert_verified = FALSE;
1249 *error = ((verify & GNUTLS_CERT_REVOKED) != 0) ? "revoked" : "invalid";
1252 debug_printf("TLS certificate verification failed (%s): peerdn=%s\n",
1253 *error, state->peerdn ? state->peerdn : US"<unset>");
1255 if (state->verify_requirement == VERIFY_REQUIRED)
1257 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1261 debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
1265 state->peer_cert_verified = TRUE;
1266 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=%s\n",
1267 state->peerdn ? state->peerdn : US"<unset>");
1270 state->tlsp->peerdn = state->peerdn;
1278 /* ------------------------------------------------------------------------ */
1281 /* Logging function which can be registered with
1282 * gnutls_global_set_log_function()
1283 * gnutls_global_set_log_level() 0..9
1285 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1287 exim_gnutls_logger_cb(int level, const char *message)
1289 size_t len = strlen(message);
1292 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
1295 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
1296 message[len-1] == '\n' ? "" : "\n");
1301 /* Called after client hello, should handle SNI work.
1302 This will always set tls_sni (state->received_sni) if available,
1303 and may trigger presenting different certificates,
1304 if state->trigger_sni_changes is TRUE.
1306 Should be registered with
1307 gnutls_handshake_set_post_client_hello_function()
1309 "This callback must return 0 on success or a gnutls error code to terminate the
1312 For inability to get SNI information, we return 0.
1313 We only return non-zero if re-setup failed.
1314 Only used for server-side TLS.
1318 exim_sni_handling_cb(gnutls_session_t session)
1320 char sni_name[MAX_HOST_LEN];
1321 size_t data_len = MAX_HOST_LEN;
1322 exim_gnutls_state_st *state = &state_server;
1323 unsigned int sni_type;
1326 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
1327 if (rc != GNUTLS_E_SUCCESS)
1330 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
1331 debug_printf("TLS: no SNI presented in handshake.\n");
1333 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
1334 gnutls_strerror(rc), rc);
1339 if (sni_type != GNUTLS_NAME_DNS)
1341 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
1345 /* We now have a UTF-8 string in sni_name */
1346 old_pool = store_pool;
1347 store_pool = POOL_PERM;
1348 state->received_sni = string_copyn(US sni_name, data_len);
1349 store_pool = old_pool;
1351 /* We set this one now so that variable expansions below will work */
1352 state->tlsp->sni = state->received_sni;
1354 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
1355 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
1357 if (!state->trigger_sni_changes)
1360 rc = tls_expand_session_files(state);
1363 /* If the setup of certs/etc failed before handshake, TLS would not have
1364 been offered. The best we can do now is abort. */
1365 return GNUTLS_E_APPLICATION_ERROR_MIN;
1368 rc = tls_set_remaining_x509(state);
1369 if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
1377 /* ------------------------------------------------------------------------ */
1378 /* Exported functions */
1383 /*************************************************
1384 * Start a TLS session in a server *
1385 *************************************************/
1387 /* This is called when Exim is running as a server, after having received
1388 the STARTTLS command. It must respond to that command, and then negotiate
1392 require_ciphers list of allowed ciphers or NULL
1394 Returns: OK on success
1395 DEFER for errors before the start of the negotiation
1396 FAIL for errors during the negotation; the server can't
1401 tls_server_start(const uschar *require_ciphers)
1405 exim_gnutls_state_st *state = NULL;
1407 /* Check for previous activation */
1408 if (tls_in.active >= 0)
1410 tls_error(US"STARTTLS received after TLS started", "", NULL);
1411 smtp_printf("554 Already in TLS\r\n");
1415 /* Initialize the library. If it fails, it will already have logged the error
1416 and sent an SMTP response. */
1418 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
1420 rc = tls_init(NULL, tls_certificate, tls_privatekey,
1421 NULL, tls_verify_certificates, tls_crl,
1422 require_ciphers, &state);
1423 if (rc != OK) return rc;
1425 /* If this is a host for which certificate verification is mandatory or
1426 optional, set up appropriately. */
1428 if (verify_check_host(&tls_verify_hosts) == OK)
1430 DEBUG(D_tls) debug_printf("TLS: a client certificate will be required.\n");
1431 state->verify_requirement = VERIFY_REQUIRED;
1432 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1434 else if (verify_check_host(&tls_try_verify_hosts) == OK)
1436 DEBUG(D_tls) debug_printf("TLS: a client certificate will be requested but not required.\n");
1437 state->verify_requirement = VERIFY_OPTIONAL;
1438 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1442 DEBUG(D_tls) debug_printf("TLS: a client certificate will not be requested.\n");
1443 state->verify_requirement = VERIFY_NONE;
1444 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
1447 /* Register SNI handling; always, even if not in tls_certificate, so that the
1448 expansion variable $tls_sni is always available. */
1450 gnutls_handshake_set_post_client_hello_function(state->session,
1451 exim_sni_handling_cb);
1453 /* Set context and tell client to go ahead, except in the case of TLS startup
1454 on connection, where outputting anything now upsets the clients and tends to
1455 make them disconnect. We need to have an explicit fflush() here, to force out
1456 the response. Other smtp_printf() calls do not need it, because in non-TLS
1457 mode, the fflush() happens when smtp_getc() is called. */
1459 if (!state->tlsp->on_connect)
1461 smtp_printf("220 TLS go ahead\r\n");
1462 fflush(smtp_out); /*XXX JGH */
1465 /* Now negotiate the TLS session. We put our own timer on it, since it seems
1466 that the GnuTLS library doesn't. */
1468 gnutls_transport_set_ptr2(state->session,
1469 (gnutls_transport_ptr)fileno(smtp_in),
1470 (gnutls_transport_ptr)fileno(smtp_out));
1471 state->fd_in = fileno(smtp_in);
1472 state->fd_out = fileno(smtp_out);
1474 sigalrm_seen = FALSE;
1475 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1478 rc = gnutls_handshake(state->session);
1479 } while ((rc == GNUTLS_E_AGAIN) ||
1480 (rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen));
1483 if (rc != GNUTLS_E_SUCCESS)
1485 tls_error(US"gnutls_handshake",
1486 sigalrm_seen ? "timed out" : gnutls_strerror(rc), NULL);
1487 /* It seems that, except in the case of a timeout, we have to close the
1488 connection right here; otherwise if the other end is running OpenSSL it hangs
1489 until the server times out. */
1493 (void)fclose(smtp_out);
1494 (void)fclose(smtp_in);
1500 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1502 /* Verify after the fact */
1504 if (state->verify_requirement != VERIFY_NONE)
1506 if (!verify_certificate(state, &error))
1508 if (state->verify_requirement == VERIFY_OPTIONAL)
1511 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
1516 tls_error(US"certificate verification failed", error, NULL);
1522 /* Figure out peer DN, and if authenticated, etc. */
1524 rc = peer_status(state);
1525 if (rc != OK) return rc;
1527 /* Sets various Exim expansion variables; always safe within server */
1529 extract_exim_vars_from_tls_state(state, TRUE);
1531 /* TLS has been set up. Adjust the input functions to read via TLS,
1532 and initialize appropriately. */
1534 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
1536 receive_getc = tls_getc;
1537 receive_ungetc = tls_ungetc;
1538 receive_feof = tls_feof;
1539 receive_ferror = tls_ferror;
1540 receive_smtp_buffered = tls_smtp_buffered;
1548 /*************************************************
1549 * Start a TLS session in a client *
1550 *************************************************/
1552 /* Called from the smtp transport after STARTTLS has been accepted.
1555 fd the fd of the connection
1556 host connected host (for messages)
1557 addr the first address (not used)
1558 certificate certificate file
1559 privatekey private key file
1560 sni TLS SNI to send to remote host
1561 verify_certs file for certificate verify
1562 verify_crl CRL for verify
1563 require_ciphers list of allowed ciphers or NULL
1564 dh_min_bits minimum number of bits acceptable in server's DH prime
1565 timeout startup timeout
1567 Returns: OK/DEFER/FAIL (because using common functions),
1568 but for a client, DEFER and FAIL have the same meaning
1572 tls_client_start(int fd, host_item *host,
1573 address_item *addr ARG_UNUSED,
1574 uschar *certificate, uschar *privatekey, uschar *sni,
1575 uschar *verify_certs, uschar *verify_crl,
1576 uschar *require_ciphers,
1577 #ifdef EXPERIMENTAL_OCSP
1578 uschar *require_ocsp ARG_UNUSED,
1580 int dh_min_bits, int timeout)
1584 exim_gnutls_state_st *state = NULL;
1586 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", fd);
1588 rc = tls_init(host, certificate, privatekey,
1589 sni, verify_certs, verify_crl, require_ciphers, &state);
1590 if (rc != OK) return rc;
1592 if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
1595 debug_printf("WARNING: tls_dh_min_bits far too low, clamping %d up to %d\n",
1596 dh_min_bits, EXIM_CLIENT_DH_MIN_MIN_BITS);
1597 dh_min_bits = EXIM_CLIENT_DH_MIN_MIN_BITS;
1600 DEBUG(D_tls) debug_printf("Setting D-H prime minimum acceptable bits to %d\n",
1602 gnutls_dh_set_prime_bits(state->session, dh_min_bits);
1604 if (state->exp_tls_verify_certificates == NULL)
1606 DEBUG(D_tls) debug_printf("TLS: server certificate verification not required\n");
1607 state->verify_requirement = VERIFY_NONE;
1608 /* we still ask for it, to log it, etc */
1609 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1613 DEBUG(D_tls) debug_printf("TLS: server certificate verification required\n");
1614 state->verify_requirement = VERIFY_REQUIRED;
1615 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1618 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr)fd);
1622 /* There doesn't seem to be a built-in timeout on connection. */
1624 sigalrm_seen = FALSE;
1628 rc = gnutls_handshake(state->session);
1629 } while ((rc == GNUTLS_E_AGAIN) ||
1630 (rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen));
1633 if (rc != GNUTLS_E_SUCCESS)
1634 return tls_error(US"gnutls_handshake",
1635 sigalrm_seen ? "timed out" : gnutls_strerror(rc), state->host);
1637 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1641 if (state->verify_requirement != VERIFY_NONE &&
1642 !verify_certificate(state, &error))
1643 return tls_error(US"certificate verification failed", error, state->host);
1645 /* Figure out peer DN, and if authenticated, etc. */
1647 rc = peer_status(state);
1648 if (rc != OK) return rc;
1650 /* Sets various Exim expansion variables; may need to adjust for ACL callouts */
1652 extract_exim_vars_from_tls_state(state, FALSE);
1660 /*************************************************
1661 * Close down a TLS session *
1662 *************************************************/
1664 /* This is also called from within a delivery subprocess forked from the
1665 daemon, to shut down the TLS library, without actually doing a shutdown (which
1666 would tamper with the TLS session in the parent process).
1668 Arguments: TRUE if gnutls_bye is to be called
1673 tls_close(BOOL is_server, BOOL shutdown)
1675 exim_gnutls_state_st *state = is_server ? &state_server : &state_client;
1677 if (!state->tlsp || state->tlsp->active < 0) return; /* TLS was not active */
1681 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS\n");
1682 gnutls_bye(state->session, GNUTLS_SHUT_WR);
1685 gnutls_deinit(state->session);
1687 state->tlsp->active = -1;
1688 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1690 if ((state_server.session == NULL) && (state_client.session == NULL))
1692 gnutls_global_deinit();
1693 exim_gnutls_base_init_done = FALSE;
1701 /*************************************************
1702 * TLS version of getc *
1703 *************************************************/
1705 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
1706 it refills the buffer via the GnuTLS reading function.
1707 Only used by the server-side TLS.
1709 This feeds DKIM and should be used for all message-body reads.
1712 Returns: the next character or EOF
1718 exim_gnutls_state_st *state = &state_server;
1719 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
1723 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
1724 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
1726 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1727 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
1728 ssl_xfer_buffer_size);
1731 /* A zero-byte return appears to mean that the TLS session has been
1732 closed down, not that the socket itself has been closed down. Revert to
1733 non-TLS handling. */
1737 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1739 receive_getc = smtp_getc;
1740 receive_ungetc = smtp_ungetc;
1741 receive_feof = smtp_feof;
1742 receive_ferror = smtp_ferror;
1743 receive_smtp_buffered = smtp_buffered;
1745 gnutls_deinit(state->session);
1746 state->session = NULL;
1747 state->tlsp->active = -1;
1748 state->tlsp->bits = 0;
1749 state->tlsp->certificate_verified = FALSE;
1750 tls_channelbinding_b64 = NULL; /*XXX JGH */
1751 state->tlsp->cipher = NULL;
1752 state->tlsp->peerdn = NULL;
1757 /* Handle genuine errors */
1759 else if (inbytes < 0)
1761 record_io_error(state, (int) inbytes, US"recv", NULL);
1762 state->xfer_error = 1;
1765 #ifndef DISABLE_DKIM
1766 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
1768 state->xfer_buffer_hwm = (int) inbytes;
1769 state->xfer_buffer_lwm = 0;
1772 /* Something in the buffer; return next uschar */
1774 return state->xfer_buffer[state->xfer_buffer_lwm++];
1780 /*************************************************
1781 * Read bytes from TLS channel *
1782 *************************************************/
1784 /* This does not feed DKIM, so if the caller uses this for reading message body,
1785 then the caller must feed DKIM.
1791 Returns: the number of bytes read
1792 -1 after a failed read
1796 tls_read(BOOL is_server, uschar *buff, size_t len)
1798 exim_gnutls_state_st *state = is_server ? &state_server : &state_client;
1804 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
1806 debug_printf("*** PROBABLY A BUG *** " \
1807 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
1808 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
1811 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
1812 state->session, buff, len);
1814 inbytes = gnutls_record_recv(state->session, buff, len);
1815 if (inbytes > 0) return inbytes;
1818 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1820 else record_io_error(state, (int)inbytes, US"recv", NULL);
1828 /*************************************************
1829 * Write bytes down TLS channel *
1830 *************************************************/
1834 is_server channel specifier
1838 Returns: the number of bytes after a successful write,
1839 -1 after a failed write
1843 tls_write(BOOL is_server, const uschar *buff, size_t len)
1847 exim_gnutls_state_st *state = is_server ? &state_server : &state_client;
1849 DEBUG(D_tls) debug_printf("tls_do_write(%p, " SIZE_T_FMT ")\n", buff, left);
1852 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
1854 outbytes = gnutls_record_send(state->session, buff, left);
1856 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
1859 record_io_error(state, outbytes, US"send", NULL);
1864 record_io_error(state, 0, US"send", US"TLS channel closed on write");
1875 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
1886 /*************************************************
1887 * Random number generation *
1888 *************************************************/
1890 /* Pseudo-random number generation. The result is not expected to be
1891 cryptographically strong but not so weak that someone will shoot themselves
1892 in the foot using it as a nonce in input in some email header scheme or
1893 whatever weirdness they'll twist this into. The result should handle fork()
1894 and avoid repeating sequences. OpenSSL handles that for us.
1898 Returns a random number in range [0, max-1]
1901 #ifdef HAVE_GNUTLS_RND
1903 vaguely_random_number(int max)
1908 uschar smallbuf[sizeof(r)];
1913 needed_len = sizeof(r);
1914 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
1915 * asked for a number less than 10. */
1916 for (r = max, i = 0; r; ++i)
1922 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
1925 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
1926 return vaguely_random_number_fallback(max);
1929 for (p = smallbuf; needed_len; --needed_len, ++p)
1935 /* We don't particularly care about weighted results; if someone wants
1936 * smooth distribution and cares enough then they should submit a patch then. */
1939 #else /* HAVE_GNUTLS_RND */
1941 vaguely_random_number(int max)
1943 return vaguely_random_number_fallback(max);
1945 #endif /* HAVE_GNUTLS_RND */
1950 /*************************************************
1951 * Let tls_require_ciphers be checked at startup *
1952 *************************************************/
1954 /* The tls_require_ciphers option, if set, must be something which the
1957 Returns: NULL on success, or error message
1961 tls_validate_require_cipher(void)
1964 uschar *expciphers = NULL;
1965 gnutls_priority_t priority_cache;
1968 #define validate_check_rc(Label) do { \
1969 if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) gnutls_global_deinit(); \
1970 return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
1971 #define return_deinit(Label) do { gnutls_global_deinit(); return (Label); } while (0)
1973 if (exim_gnutls_base_init_done)
1974 log_write(0, LOG_MAIN|LOG_PANIC,
1975 "already initialised GnuTLS, Exim developer bug");
1977 #ifdef HAVE_GNUTLS_PKCS11
1978 if (!gnutls_allow_auto_pkcs11)
1980 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
1981 validate_check_rc(US"gnutls_pkcs11_init");
1984 rc = gnutls_global_init();
1985 validate_check_rc(US"gnutls_global_init()");
1986 exim_gnutls_base_init_done = TRUE;
1988 if (!(tls_require_ciphers && *tls_require_ciphers))
1989 return_deinit(NULL);
1991 if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers))
1992 return_deinit(US"failed to expand tls_require_ciphers");
1994 if (!(expciphers && *expciphers))
1995 return_deinit(NULL);
1998 debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
2000 rc = gnutls_priority_init(&priority_cache, CS expciphers, &errpos);
2001 validate_check_rc(string_sprintf(
2002 "gnutls_priority_init(%s) failed at offset %ld, \"%.8s..\"",
2003 expciphers, errpos - CS expciphers, errpos));
2005 #undef return_deinit
2006 #undef validate_check_rc
2007 gnutls_global_deinit();
2015 /*************************************************
2016 * Report the library versions. *
2017 *************************************************/
2019 /* See a description in tls-openssl.c for an explanation of why this exists.
2021 Arguments: a FILE* to print the results to
2026 tls_version_report(FILE *f)
2028 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
2031 gnutls_check_version(NULL));
2034 /* End of tls-gnu.c */