GnuTLS: fix non-OCSP bulid
[exim.git] / src / src / tls-gnu.c
... / ...
CommitLineData
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5/* Copyright (c) University of Cambridge 1995 - 2018 */
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* Copyright (c) Phil Pennock 2012 */
9
10/* This file provides TLS/SSL support for Exim using the GnuTLS library,
11one of the available supported implementations. This file is #included into
12tls.c when USE_GNUTLS has been set.
13
14The code herein is a revamp of GnuTLS integration using the current APIs; the
15original tls-gnu.c was based on a patch which was contributed by Nikos
16Mavrogiannopoulos. The revamp is partially a rewrite, partially cut&paste as
17appropriate.
18
19APIs current as of GnuTLS 2.12.18; note that the GnuTLS manual is for GnuTLS 3,
20which is not widely deployed by OS vendors. Will note issues below, which may
21assist in updating the code in the future. Another sources of hints is
22mod_gnutls for Apache (SNI callback registration and handling).
23
24Keeping client and server variables more split than before and is currently
25the norm, in anticipation of TLS in ACL callouts.
26
27I wanted to switch to gnutls_certificate_set_verify_function() so that
28certificate rejection could happen during handshake where it belongs, rather
29than 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.
31
32(I wasn't looking for libraries quite that old, when updating to get rid of
33compiler warnings of deprecated APIs. If it turns out that a lot of the rest
34require current GnuTLS, then we'll drop support for the ancient libraries).
35*/
36
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
43/* needed to disable PKCS11 autoload unless requested */
44#if GNUTLS_VERSION_NUMBER >= 0x020c00
45# include <gnutls/pkcs11.h>
46# define SUPPORT_PARAM_TO_PK_BITS
47#endif
48#if GNUTLS_VERSION_NUMBER < 0x030103 && !defined(DISABLE_OCSP)
49# warning "GnuTLS library version too old; define DISABLE_OCSP in Makefile"
50# define DISABLE_OCSP
51#endif
52#if GNUTLS_VERSION_NUMBER < 0x020a00 && !defined(DISABLE_EVENT)
53# warning "GnuTLS library version too old; tls:cert event unsupported"
54# define DISABLE_EVENT
55#endif
56#if GNUTLS_VERSION_NUMBER >= 0x030306
57# define SUPPORT_CA_DIR
58#else
59# undef SUPPORT_CA_DIR
60#endif
61#if GNUTLS_VERSION_NUMBER >= 0x030014
62# define SUPPORT_SYSDEFAULT_CABUNDLE
63#endif
64#if GNUTLS_VERSION_NUMBER >= 0x030104
65# define GNUTLS_CERT_VFY_STATUS_PRINT
66#endif
67#if GNUTLS_VERSION_NUMBER >= 0x030109
68# define SUPPORT_CORK
69#endif
70#if GNUTLS_VERSION_NUMBER >= 0x03010a
71# define SUPPORT_GNUTLS_SESS_DESC
72#endif
73#if GNUTLS_VERSION_NUMBER >= 0x030500
74# define SUPPORT_GNUTLS_KEYLOG
75#endif
76#if GNUTLS_VERSION_NUMBER >= 0x030506 && !defined(DISABLE_OCSP)
77# define SUPPORT_SRV_OCSP_STACK
78#endif
79
80#ifdef SUPPORT_DANE
81# if GNUTLS_VERSION_NUMBER >= 0x030000
82# define DANESSL_USAGE_DANE_TA 2
83# define DANESSL_USAGE_DANE_EE 3
84# else
85# error GnuTLS version too early for DANE
86# endif
87# if GNUTLS_VERSION_NUMBER < 0x999999
88# define GNUTLS_BROKEN_DANE_VALIDATION
89# endif
90#endif
91
92#ifdef EXPERIMENTAL_TLS_RESUME
93# if GNUTLS_VERSION_NUMBER < 0x030603
94# error GNUTLS version too early for session-resumption
95# endif
96#endif
97
98#ifndef DISABLE_OCSP
99# include <gnutls/ocsp.h>
100#endif
101#ifdef SUPPORT_DANE
102# include <gnutls/dane.h>
103#endif
104
105#include "tls-cipher-stdname.c"
106
107
108#ifdef MACRO_PREDEF
109void
110options_tls(void)
111{
112# ifdef EXPERIMENTAL_TLS_RESUME
113builtin_macro_create_var(US"_RESUME_DECODE", RESUME_DECODE_STRING );
114# endif
115}
116#else
117
118
119/* GnuTLS 2 vs 3
120
121GnuTLS 3 only:
122 gnutls_global_set_audit_log_function()
123
124Changes:
125 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
126*/
127
128/* Local static variables for GnuTLS */
129
130/* Values for verify_requirement */
131
132enum peer_verify_requirement
133 { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED, VERIFY_DANE };
134
135/* This holds most state for server or client; with this, we can set up an
136outbound TLS-enabled connection in an ACL callout, while not stomping all
137over the TLS variables available for expansion.
138
139Some of these correspond to variables in globals.c; those variables will
140be set to point to content in one of these instances, as appropriate for
141the stage of the process lifetime.
142
143Not handled here: global tls_channelbinding_b64.
144*/
145
146typedef struct exim_gnutls_state {
147 gnutls_session_t session;
148 gnutls_certificate_credentials_t x509_cred;
149 gnutls_priority_t priority_cache;
150 enum peer_verify_requirement verify_requirement;
151 int fd_in;
152 int fd_out;
153 BOOL peer_cert_verified;
154 BOOL peer_dane_verified;
155 BOOL trigger_sni_changes;
156 BOOL have_set_peerdn;
157 const struct host_item *host; /* NULL if server */
158 gnutls_x509_crt_t peercert;
159 uschar *peerdn;
160 uschar *ciphersuite;
161 uschar *received_sni;
162
163 const uschar *tls_certificate;
164 const uschar *tls_privatekey;
165 const uschar *tls_sni; /* client send only, not received */
166 const uschar *tls_verify_certificates;
167 const uschar *tls_crl;
168 const uschar *tls_require_ciphers;
169
170 uschar *exp_tls_certificate;
171 uschar *exp_tls_privatekey;
172 uschar *exp_tls_verify_certificates;
173 uschar *exp_tls_crl;
174 uschar *exp_tls_require_ciphers;
175 const uschar *exp_tls_verify_cert_hostnames;
176#ifndef DISABLE_EVENT
177 uschar *event_action;
178#endif
179#ifdef SUPPORT_DANE
180 char * const * dane_data;
181 const int * dane_data_len;
182#endif
183
184 tls_support *tlsp; /* set in tls_init() */
185
186 uschar *xfer_buffer;
187 int xfer_buffer_lwm;
188 int xfer_buffer_hwm;
189 BOOL xfer_eof; /*XXX never gets set! */
190 BOOL xfer_error;
191} exim_gnutls_state_st;
192
193static const exim_gnutls_state_st exim_gnutls_state_init = {
194 /* all elements not explicitly intialised here get 0/NULL/FALSE */
195 .fd_in = -1,
196 .fd_out = -1,
197};
198
199/* Not only do we have our own APIs which don't pass around state, assuming
200it's held in globals, GnuTLS doesn't appear to let us register callback data
201for callbacks, or as part of the session, so we have to keep a "this is the
202context we're currently dealing with" pointer and rely upon being
203single-threaded to keep from processing data on an inbound TLS connection while
204talking to another TLS connection for an outbound check. This does mean that
205there's no way for heart-beats to be responded to, for the duration of the
206second connection.
207XXX But see gnutls_session_get_ptr()
208*/
209
210static exim_gnutls_state_st state_server;
211
212/* dh_params are initialised once within the lifetime of a process using TLS;
213if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
214don't want to repeat this. */
215
216static gnutls_dh_params_t dh_server_params = NULL;
217
218static int ssl_session_timeout = 7200; /* Two hours */
219
220static const uschar * const exim_default_gnutls_priority = US"NORMAL";
221
222/* Guard library core initialisation */
223
224static BOOL exim_gnutls_base_init_done = FALSE;
225
226#ifndef DISABLE_OCSP
227static BOOL gnutls_buggy_ocsp = FALSE;
228static BOOL exim_testharness_disable_ocsp_validity_check = FALSE;
229#endif
230
231#ifdef EXPERIMENTAL_TLS_RESUME
232static gnutls_datum_t server_sessticket_key;
233#endif
234
235/* ------------------------------------------------------------------------ */
236/* macros */
237
238#define MAX_HOST_LEN 255
239
240/* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
241the library logging; a value less than 0 disables the calls to set up logging
242callbacks. GNuTLS also looks for an environment variable - except not for
243setuid binaries, making it useless - "GNUTLS_DEBUG_LEVEL".
244Allegedly the testscript line "GNUTLS_DEBUG_LEVEL=9 sudo exim ..." would work,
245but the env var must be added to /etc/sudoers too. */
246#ifndef EXIM_GNUTLS_LIBRARY_LOG_LEVEL
247# define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
248#endif
249
250#ifndef EXIM_CLIENT_DH_MIN_BITS
251# define EXIM_CLIENT_DH_MIN_BITS 1024
252#endif
253
254/* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
255can ask for a bit-strength. Without that, we stick to the constant we had
256before, for now. */
257#ifndef EXIM_SERVER_DH_BITS_PRE2_12
258# define EXIM_SERVER_DH_BITS_PRE2_12 1024
259#endif
260
261#define expand_check_tlsvar(Varname, errstr) \
262 expand_check(state->Varname, US #Varname, &state->exp_##Varname, errstr)
263
264#if GNUTLS_VERSION_NUMBER >= 0x020c00
265# define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
266# define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
267# define HAVE_GNUTLS_RND
268/* The security fix we provide with the gnutls_allow_auto_pkcs11 option
269 * (4.82 PP/09) introduces a compatibility regression. The symbol simply
270 * isn't available sometimes, so this needs to become a conditional
271 * compilation; the sanest way to deal with this being a problem on
272 * older OSes is to block it in the Local/Makefile with this compiler
273 * definition */
274# ifndef AVOID_GNUTLS_PKCS11
275# define HAVE_GNUTLS_PKCS11
276# endif /* AVOID_GNUTLS_PKCS11 */
277#endif
278
279
280
281
282/* ------------------------------------------------------------------------ */
283/* Callback declarations */
284
285#if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
286static void exim_gnutls_logger_cb(int level, const char *message);
287#endif
288
289static int exim_sni_handling_cb(gnutls_session_t session);
290
291#if !defined(DISABLE_OCSP)
292static int server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
293 gnutls_datum_t * ocsp_response);
294#endif
295
296#ifdef EXPERIMENTAL_TLS_RESUME
297static int
298tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
299 unsigned incoming, const gnutls_datum_t * msg);
300#endif
301
302
303/* Daemon one-time initialisation */
304void
305tls_daemon_init(void)
306{
307#ifdef EXPERIMENTAL_TLS_RESUME
308/* We are dependent on the GnuTLS implementation of the Session Ticket
309encryption; both the strength and the key rotation period. We hope that
310the strength at least matches that of the ciphersuite (but GnuTLS does not
311document this). */
312
313static BOOL once = FALSE;
314if (once) return;
315once = TRUE;
316gnutls_session_ticket_key_generate(&server_sessticket_key); /* >= 2.10.0 */
317if (f.running_in_test_harness) ssl_session_timeout = 6;
318#endif
319}
320
321/* ------------------------------------------------------------------------ */
322/* Static functions */
323
324/*************************************************
325* Handle TLS error *
326*************************************************/
327
328/* Called from lots of places when errors occur before actually starting to do
329the TLS handshake, that is, while the session is still in clear. Always returns
330DEFER for a server and FAIL for a client so that most calls can use "return
331tls_error(...)" to do this processing and then give an appropriate return. A
332single function is used for both server and client, because it is called from
333some shared functions.
334
335Argument:
336 prefix text to include in the logged error
337 msg additional error string (may be NULL)
338 usually obtained from gnutls_strerror()
339 host NULL if setting up a server;
340 the connected host if setting up a client
341 errstr pointer to returned error string
342
343Returns: OK/DEFER/FAIL
344*/
345
346static int
347tls_error(const uschar *prefix, const uschar *msg, const host_item *host,
348 uschar ** errstr)
349{
350if (errstr)
351 *errstr = string_sprintf("(%s)%s%s", prefix, msg ? ": " : "", msg ? msg : US"");
352return host ? FAIL : DEFER;
353}
354
355
356static int
357tls_error_gnu(const uschar *prefix, int err, const host_item *host,
358 uschar ** errstr)
359{
360return tls_error(prefix, US gnutls_strerror(err), host, errstr);
361}
362
363static int
364tls_error_sys(const uschar *prefix, int err, const host_item *host,
365 uschar ** errstr)
366{
367return tls_error(prefix, US strerror(err), host, errstr);
368}
369
370
371/*************************************************
372* Deal with logging errors during I/O *
373*************************************************/
374
375/* We have to get the identity of the peer from saved data.
376
377Argument:
378 state the current GnuTLS exim state container
379 rc the GnuTLS error code, or 0 if it's a local error
380 when text identifying read or write
381 text local error text when rc is 0
382
383Returns: nothing
384*/
385
386static void
387record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
388{
389const uschar * msg;
390uschar * errstr;
391
392if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED)
393 msg = string_sprintf("A TLS fatal alert has been received: %s",
394 US gnutls_alert_get_name(gnutls_alert_get(state->session)));
395else
396 msg = US gnutls_strerror(rc);
397
398(void) tls_error(when, msg, state->host, &errstr);
399
400if (state->host)
401 log_write(0, LOG_MAIN, "H=%s [%s] TLS error on connection %s",
402 state->host->name, state->host->address, errstr);
403else
404 {
405 uschar * conn_info = smtp_get_connection_info();
406 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
407 /* I'd like to get separated H= here, but too hard for now */
408 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
409 }
410}
411
412
413
414
415/*************************************************
416* Set various Exim expansion vars *
417*************************************************/
418
419#define exim_gnutls_cert_err(Label) \
420 do \
421 { \
422 if (rc != GNUTLS_E_SUCCESS) \
423 { \
424 DEBUG(D_tls) debug_printf("TLS: cert problem: %s: %s\n", \
425 (Label), gnutls_strerror(rc)); \
426 return rc; \
427 } \
428 } while (0)
429
430static int
431import_cert(const gnutls_datum_t * cert, gnutls_x509_crt_t * crtp)
432{
433int rc;
434
435rc = gnutls_x509_crt_init(crtp);
436exim_gnutls_cert_err(US"gnutls_x509_crt_init (crt)");
437
438rc = gnutls_x509_crt_import(*crtp, cert, GNUTLS_X509_FMT_DER);
439exim_gnutls_cert_err(US"failed to import certificate [gnutls_x509_crt_import(cert)]");
440
441return rc;
442}
443
444#undef exim_gnutls_cert_err
445
446
447/* We set various Exim global variables from the state, once a session has
448been established. With TLS callouts, may need to change this to stack
449variables, or just re-call it with the server state after client callout
450has finished.
451
452Make sure anything set here is unset in tls_getc().
453
454Sets:
455 tls_active fd
456 tls_bits strength indicator
457 tls_certificate_verified bool indicator
458 tls_channelbinding_b64 for some SASL mechanisms
459 tls_cipher a string
460 tls_peercert pointer to library internal
461 tls_peerdn a string
462 tls_sni a (UTF-8) string
463 tls_ourcert pointer to library internal
464
465Argument:
466 state the relevant exim_gnutls_state_st *
467*/
468
469static void
470extract_exim_vars_from_tls_state(exim_gnutls_state_st * state)
471{
472#ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
473int old_pool;
474int rc;
475gnutls_datum_t channel;
476#endif
477tls_support * tlsp = state->tlsp;
478
479tlsp->active.sock = state->fd_out;
480tlsp->active.tls_ctx = state;
481
482DEBUG(D_tls) debug_printf("cipher: %s\n", state->ciphersuite);
483
484tlsp->certificate_verified = state->peer_cert_verified;
485#ifdef SUPPORT_DANE
486tlsp->dane_verified = state->peer_dane_verified;
487#endif
488
489/* note that tls_channelbinding_b64 is not saved to the spool file, since it's
490only available for use for authenticators while this TLS session is running. */
491
492tls_channelbinding_b64 = NULL;
493#ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
494channel.data = NULL;
495channel.size = 0;
496if ((rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel)))
497 { DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc)); }
498else
499 {
500 old_pool = store_pool;
501 store_pool = POOL_PERM;
502 tls_channelbinding_b64 = b64encode(CUS channel.data, (int)channel.size);
503 store_pool = old_pool;
504 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage.\n");
505 }
506#endif
507
508/* peercert is set in peer_status() */
509tlsp->peerdn = state->peerdn;
510tlsp->sni = state->received_sni;
511
512/* record our certificate */
513 {
514 const gnutls_datum_t * cert = gnutls_certificate_get_ours(state->session);
515 gnutls_x509_crt_t crt;
516
517 tlsp->ourcert = cert && import_cert(cert, &crt)==0 ? crt : NULL;
518 }
519}
520
521
522
523
524/*************************************************
525* Setup up DH parameters *
526*************************************************/
527
528/* Generating the D-H parameters may take a long time. They only need to
529be re-generated every so often, depending on security policy. What we do is to
530keep these parameters in a file in the spool directory. If the file does not
531exist, we generate them. This means that it is easy to cause a regeneration.
532
533The new file is written as a temporary file and renamed, so that an incomplete
534file is never present. If two processes both compute some new parameters, you
535waste a bit of effort, but it doesn't seem worth messing around with locking to
536prevent this.
537
538Returns: OK/DEFER/FAIL
539*/
540
541static int
542init_server_dh(uschar ** errstr)
543{
544int fd, rc;
545unsigned int dh_bits;
546gnutls_datum_t m;
547uschar filename_buf[PATH_MAX];
548uschar *filename = NULL;
549size_t sz;
550uschar *exp_tls_dhparam;
551BOOL use_file_in_spool = FALSE;
552host_item *host = NULL; /* dummy for macros */
553
554DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
555
556if ((rc = gnutls_dh_params_init(&dh_server_params)))
557 return tls_error_gnu(US"gnutls_dh_params_init", rc, host, errstr);
558
559m.data = NULL;
560m.size = 0;
561
562if (!expand_check(tls_dhparam, US"tls_dhparam", &exp_tls_dhparam, errstr))
563 return DEFER;
564
565if (!exp_tls_dhparam)
566 {
567 DEBUG(D_tls) debug_printf("Loading default hard-coded DH params\n");
568 m.data = US std_dh_prime_default();
569 m.size = Ustrlen(m.data);
570 }
571else if (Ustrcmp(exp_tls_dhparam, "historic") == 0)
572 use_file_in_spool = TRUE;
573else if (Ustrcmp(exp_tls_dhparam, "none") == 0)
574 {
575 DEBUG(D_tls) debug_printf("Requested no DH parameters.\n");
576 return OK;
577 }
578else if (exp_tls_dhparam[0] != '/')
579 {
580 if (!(m.data = US std_dh_prime_named(exp_tls_dhparam)))
581 return tls_error(US"No standard prime named", exp_tls_dhparam, NULL, errstr);
582 m.size = Ustrlen(m.data);
583 }
584else
585 filename = exp_tls_dhparam;
586
587if (m.data)
588 {
589 if ((rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM)))
590 return tls_error_gnu(US"gnutls_dh_params_import_pkcs3", rc, host, errstr);
591 DEBUG(D_tls) debug_printf("Loaded fixed standard D-H parameters\n");
592 return OK;
593 }
594
595#ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
596/* If you change this constant, also change dh_param_fn_ext so that we can use a
597different filename and ensure we have sufficient bits. */
598
599if (!(dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL)))
600 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL, errstr);
601DEBUG(D_tls)
602 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits.\n",
603 dh_bits);
604#else
605dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
606DEBUG(D_tls)
607 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
608 dh_bits);
609#endif
610
611/* Some clients have hard-coded limits. */
612if (dh_bits > tls_dh_max_bits)
613 {
614 DEBUG(D_tls)
615 debug_printf("tls_dh_max_bits clamping override, using %d bits instead.\n",
616 tls_dh_max_bits);
617 dh_bits = tls_dh_max_bits;
618 }
619
620if (use_file_in_spool)
621 {
622 if (!string_format(filename_buf, sizeof(filename_buf),
623 "%s/gnutls-params-%d", spool_directory, dh_bits))
624 return tls_error(US"overlong filename", NULL, NULL, errstr);
625 filename = filename_buf;
626 }
627
628/* Open the cache file for reading and if successful, read it and set up the
629parameters. */
630
631if ((fd = Uopen(filename, O_RDONLY, 0)) >= 0)
632 {
633 struct stat statbuf;
634 FILE *fp;
635 int saved_errno;
636
637 if (fstat(fd, &statbuf) < 0) /* EIO */
638 {
639 saved_errno = errno;
640 (void)close(fd);
641 return tls_error_sys(US"TLS cache stat failed", saved_errno, NULL, errstr);
642 }
643 if (!S_ISREG(statbuf.st_mode))
644 {
645 (void)close(fd);
646 return tls_error(US"TLS cache not a file", NULL, NULL, errstr);
647 }
648 if (!(fp = fdopen(fd, "rb")))
649 {
650 saved_errno = errno;
651 (void)close(fd);
652 return tls_error_sys(US"fdopen(TLS cache stat fd) failed",
653 saved_errno, NULL, errstr);
654 }
655
656 m.size = statbuf.st_size;
657 if (!(m.data = store_malloc(m.size)))
658 {
659 fclose(fp);
660 return tls_error_sys(US"malloc failed", errno, NULL, errstr);
661 }
662 if (!(sz = fread(m.data, m.size, 1, fp)))
663 {
664 saved_errno = errno;
665 fclose(fp);
666 store_free(m.data);
667 return tls_error_sys(US"fread failed", saved_errno, NULL, errstr);
668 }
669 fclose(fp);
670
671 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
672 store_free(m.data);
673 if (rc)
674 return tls_error_gnu(US"gnutls_dh_params_import_pkcs3", rc, host, errstr);
675 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
676 }
677
678/* If the file does not exist, fall through to compute new data and cache it.
679If there was any other opening error, it is serious. */
680
681else if (errno == ENOENT)
682 {
683 rc = -1;
684 DEBUG(D_tls)
685 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
686 }
687else
688 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
689 NULL, NULL, errstr);
690
691/* If ret < 0, either the cache file does not exist, or the data it contains
692is not useful. One particular case of this is when upgrading from an older
693release of Exim in which the data was stored in a different format. We don't
694try to be clever and support both formats; we just regenerate new data in this
695case. */
696
697if (rc < 0)
698 {
699 uschar *temp_fn;
700 unsigned int dh_bits_gen = dh_bits;
701
702 if ((PATH_MAX - Ustrlen(filename)) < 10)
703 return tls_error(US"Filename too long to generate replacement",
704 filename, NULL, errstr);
705
706 temp_fn = string_copy(US"%s.XXXXXXX");
707 if ((fd = mkstemp(CS temp_fn)) < 0) /* modifies temp_fn */
708 return tls_error_sys(US"Unable to open temp file", errno, NULL, errstr);
709 (void)exim_chown(temp_fn, exim_uid, exim_gid); /* Probably not necessary */
710
711 /* GnuTLS overshoots!
712 * If we ask for 2236, we might get 2237 or more.
713 * But there's no way to ask GnuTLS how many bits there really are.
714 * We can ask how many bits were used in a TLS session, but that's it!
715 * The prime itself is hidden behind too much abstraction.
716 * So we ask for less, and proceed on a wing and a prayer.
717 * First attempt, subtracted 3 for 2233 and got 2240.
718 */
719 if (dh_bits >= EXIM_CLIENT_DH_MIN_BITS + 10)
720 {
721 dh_bits_gen = dh_bits - 10;
722 DEBUG(D_tls)
723 debug_printf("being paranoid about DH generation, make it '%d' bits'\n",
724 dh_bits_gen);
725 }
726
727 DEBUG(D_tls)
728 debug_printf("requesting generation of %d bit Diffie-Hellman prime ...\n",
729 dh_bits_gen);
730 if ((rc = gnutls_dh_params_generate2(dh_server_params, dh_bits_gen)))
731 return tls_error_gnu(US"gnutls_dh_params_generate2", rc, host, errstr);
732
733 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
734 and I confirmed that a NULL call to get the size first is how the GnuTLS
735 sample apps handle this. */
736
737 sz = 0;
738 m.data = NULL;
739 if ( (rc = gnutls_dh_params_export_pkcs3(dh_server_params,
740 GNUTLS_X509_FMT_PEM, m.data, &sz))
741 && rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
742 return tls_error_gnu(US"gnutls_dh_params_export_pkcs3(NULL) sizing",
743 rc, host, errstr);
744 m.size = sz;
745 if (!(m.data = store_malloc(m.size)))
746 return tls_error_sys(US"memory allocation failed", errno, NULL, errstr);
747
748 /* this will return a size 1 less than the allocation size above */
749 if ((rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
750 m.data, &sz)))
751 {
752 store_free(m.data);
753 return tls_error_gnu(US"gnutls_dh_params_export_pkcs3() real", rc, host, errstr);
754 }
755 m.size = sz; /* shrink by 1, probably */
756
757 if ((sz = write_to_fd_buf(fd, m.data, (size_t) m.size)) != m.size)
758 {
759 store_free(m.data);
760 return tls_error_sys(US"TLS cache write D-H params failed",
761 errno, NULL, errstr);
762 }
763 store_free(m.data);
764 if ((sz = write_to_fd_buf(fd, US"\n", 1)) != 1)
765 return tls_error_sys(US"TLS cache write D-H params final newline failed",
766 errno, NULL, errstr);
767
768 if ((rc = close(fd)))
769 return tls_error_sys(US"TLS cache write close() failed", errno, NULL, errstr);
770
771 if (Urename(temp_fn, filename) < 0)
772 return tls_error_sys(string_sprintf("failed to rename \"%s\" as \"%s\"",
773 temp_fn, filename), errno, NULL, errstr);
774
775 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
776 }
777
778DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
779return OK;
780}
781
782
783
784
785/* Create and install a selfsigned certificate, for use in server mode */
786
787static int
788tls_install_selfsign(exim_gnutls_state_st * state, uschar ** errstr)
789{
790gnutls_x509_crt_t cert = NULL;
791time_t now;
792gnutls_x509_privkey_t pkey = NULL;
793const uschar * where;
794int rc;
795
796where = US"initialising pkey";
797if ((rc = gnutls_x509_privkey_init(&pkey))) goto err;
798
799where = US"initialising cert";
800if ((rc = gnutls_x509_crt_init(&cert))) goto err;
801
802where = US"generating pkey";
803if ((rc = gnutls_x509_privkey_generate(pkey, GNUTLS_PK_RSA,
804#ifdef SUPPORT_PARAM_TO_PK_BITS
805# ifndef GNUTLS_SEC_PARAM_MEDIUM
806# define GNUTLS_SEC_PARAM_MEDIUM GNUTLS_SEC_PARAM_HIGH
807# endif
808 gnutls_sec_param_to_pk_bits(GNUTLS_PK_RSA, GNUTLS_SEC_PARAM_MEDIUM),
809#else
810 2048,
811#endif
812 0)))
813 goto err;
814
815where = US"configuring cert";
816now = 1;
817if ( (rc = gnutls_x509_crt_set_version(cert, 3))
818 || (rc = gnutls_x509_crt_set_serial(cert, &now, sizeof(now)))
819 || (rc = gnutls_x509_crt_set_activation_time(cert, now = time(NULL)))
820 || (rc = gnutls_x509_crt_set_expiration_time(cert, now + 60 * 60)) /* 1 hr */
821 || (rc = gnutls_x509_crt_set_key(cert, pkey))
822
823 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
824 GNUTLS_OID_X520_COUNTRY_NAME, 0, "UK", 2))
825 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
826 GNUTLS_OID_X520_ORGANIZATION_NAME, 0, "Exim Developers", 15))
827 || (rc = gnutls_x509_crt_set_dn_by_oid(cert,
828 GNUTLS_OID_X520_COMMON_NAME, 0,
829 smtp_active_hostname, Ustrlen(smtp_active_hostname)))
830 )
831 goto err;
832
833where = US"signing cert";
834if ((rc = gnutls_x509_crt_sign(cert, cert, pkey))) goto err;
835
836where = US"installing selfsign cert";
837 /* Since: 2.4.0 */
838if ((rc = gnutls_certificate_set_x509_key(state->x509_cred, &cert, 1, pkey)))
839 goto err;
840
841rc = OK;
842
843out:
844 if (cert) gnutls_x509_crt_deinit(cert);
845 if (pkey) gnutls_x509_privkey_deinit(pkey);
846 return rc;
847
848err:
849 rc = tls_error_gnu(where, rc, NULL, errstr);
850 goto out;
851}
852
853
854
855
856/* Add certificate and key, from files.
857
858Return:
859 Zero or negative: good. Negate value for certificate index if < 0.
860 Greater than zero: FAIL or DEFER code.
861*/
862
863static int
864tls_add_certfile(exim_gnutls_state_st * state, const host_item * host,
865 uschar * certfile, uschar * keyfile, uschar ** errstr)
866{
867/*XXX returns certs index for gnutls_certificate_set_x509_key_file(),
868given suitable flags set */
869
870int rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
871 CS certfile, CS keyfile, GNUTLS_X509_FMT_PEM);
872if (rc < 0)
873 return tls_error_gnu(
874 string_sprintf("cert/key setup: cert=%s key=%s", certfile, keyfile),
875 rc, host, errstr);
876return -rc;
877}
878
879
880/* Make a note that we saw a status-request */
881static int
882tls_server_clienthello_ext(void * ctx, unsigned tls_id,
883 const unsigned char *data, unsigned size)
884{
885/* https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
886if (tls_id == 5) /* status_request */
887 {
888 DEBUG(D_tls) debug_printf("Seen status_request extension\n");
889 tls_in.ocsp = OCSP_NOT_RESP;
890 }
891return 0;
892}
893
894/* Callback for client-hello, on server, if we think we might serve stapled-OCSP */
895static int
896tls_server_clienthello_cb(gnutls_session_t session, unsigned int htype,
897 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
898{
899/* Call fn for each extension seen. 3.6.3 onwards */
900return gnutls_ext_raw_parse(NULL, tls_server_clienthello_ext, msg,
901 GNUTLS_EXT_RAW_FLAG_TLS_CLIENT_HELLO);
902}
903
904/* Callback for certificate-status, on server. We sent stapled OCSP. */
905static int
906tls_server_certstatus_cb(gnutls_session_t session, unsigned int htype,
907 unsigned when, unsigned int incoming, const gnutls_datum_t * msg)
908{
909DEBUG(D_tls) debug_printf("Sending certificate-status\n");
910#ifdef SUPPORT_SRV_OCSP_STACK
911tls_in.ocsp = exim_testharness_disable_ocsp_validity_check
912 ? OCSP_VFY_NOT_TRIED : OCSP_VFIED; /* We know that GnuTLS verifies responses */
913#else
914tls_in.ocsp = OCSP_VFY_NOT_TRIED;
915#endif
916return 0;
917}
918
919/* Callback for handshake messages, on server */
920static int
921tls_server_hook_cb(gnutls_session_t sess, u_int htype, unsigned when,
922 unsigned incoming, const gnutls_datum_t * msg)
923{
924switch (htype)
925 {
926 case GNUTLS_HANDSHAKE_CLIENT_HELLO:
927 return tls_server_clienthello_cb(sess, htype, when, incoming, msg);
928 case GNUTLS_HANDSHAKE_CERTIFICATE_STATUS:
929 return tls_server_certstatus_cb(sess, htype, when, incoming, msg);
930#ifdef EXPERIMENTAL_TLS_RESUME
931 case GNUTLS_HANDSHAKE_NEW_SESSION_TICKET:
932 return tls_server_ticket_cb(sess, htype, when, incoming, msg);
933#endif
934 default:
935 return 0;
936 }
937}
938
939
940static void
941tls_server_testharness_ocsp_fiddle(void)
942{
943extern char ** environ;
944if (environ) for (uschar ** p = USS environ; *p; p++)
945 if (Ustrncmp(*p, "EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK", 42) == 0)
946 {
947 DEBUG(D_tls) debug_printf("Permitting known bad OCSP response\n");
948 exim_testharness_disable_ocsp_validity_check = TRUE;
949 }
950}
951
952/*************************************************
953* Variables re-expanded post-SNI *
954*************************************************/
955
956/* Called from both server and client code, via tls_init(), and also from
957the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
958
959We can tell the two apart by state->received_sni being non-NULL in callback.
960
961The callback should not call us unless state->trigger_sni_changes is true,
962which we are responsible for setting on the first pass through.
963
964Arguments:
965 state exim_gnutls_state_st *
966 errstr error string pointer
967
968Returns: OK/DEFER/FAIL
969*/
970
971static int
972tls_expand_session_files(exim_gnutls_state_st * state, uschar ** errstr)
973{
974struct stat statbuf;
975int rc;
976const host_item *host = state->host; /* macro should be reconsidered? */
977uschar *saved_tls_certificate = NULL;
978uschar *saved_tls_privatekey = NULL;
979uschar *saved_tls_verify_certificates = NULL;
980uschar *saved_tls_crl = NULL;
981int cert_count;
982
983/* We check for tls_sni *before* expansion. */
984if (!host) /* server */
985 if (!state->received_sni)
986 {
987 if ( state->tls_certificate
988 && ( Ustrstr(state->tls_certificate, US"tls_sni")
989 || Ustrstr(state->tls_certificate, US"tls_in_sni")
990 || Ustrstr(state->tls_certificate, US"tls_out_sni")
991 ) )
992 {
993 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
994 state->trigger_sni_changes = TRUE;
995 }
996 }
997 else
998 {
999 /* useful for debugging */
1000 saved_tls_certificate = state->exp_tls_certificate;
1001 saved_tls_privatekey = state->exp_tls_privatekey;
1002 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
1003 saved_tls_crl = state->exp_tls_crl;
1004 }
1005
1006if ((rc = gnutls_certificate_allocate_credentials(&state->x509_cred)))
1007 return tls_error_gnu(US"gnutls_certificate_allocate_credentials",
1008 rc, host, errstr);
1009
1010#ifdef SUPPORT_SRV_OCSP_STACK
1011gnutls_certificate_set_flags(state->x509_cred, GNUTLS_CERTIFICATE_API_V2);
1012#endif
1013
1014/* remember: expand_check_tlsvar() is expand_check() but fiddling with
1015state members, assuming consistent naming; and expand_check() returns
1016false if expansion failed, unless expansion was forced to fail. */
1017
1018/* check if we at least have a certificate, before doing expensive
1019D-H generation. */
1020
1021if (!expand_check_tlsvar(tls_certificate, errstr))
1022 return DEFER;
1023
1024/* certificate is mandatory in server, optional in client */
1025
1026if ( !state->exp_tls_certificate
1027 || !*state->exp_tls_certificate
1028 )
1029 if (!host)
1030 return tls_install_selfsign(state, errstr);
1031 else
1032 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
1033
1034if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey, errstr))
1035 return DEFER;
1036
1037/* tls_privatekey is optional, defaulting to same file as certificate */
1038
1039if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
1040 {
1041 state->tls_privatekey = state->tls_certificate;
1042 state->exp_tls_privatekey = state->exp_tls_certificate;
1043 }
1044
1045
1046if (state->exp_tls_certificate && *state->exp_tls_certificate)
1047 {
1048 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
1049 state->exp_tls_certificate, state->exp_tls_privatekey);
1050
1051 if (state->received_sni)
1052 if ( Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0
1053 && Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0
1054 )
1055 {
1056 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
1057 }
1058 else
1059 {
1060 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair.\n");
1061 }
1062
1063 if (!host) /* server */
1064 {
1065 const uschar * clist = state->exp_tls_certificate;
1066 const uschar * klist = state->exp_tls_privatekey;
1067 const uschar * olist;
1068 int csep = 0, ksep = 0, osep = 0, cnt = 0;
1069 uschar * cfile, * kfile, * ofile;
1070
1071#ifndef DISABLE_OCSP
1072 if (!expand_check(tls_ocsp_file, US"tls_ocsp_file", &ofile, errstr))
1073 return DEFER;
1074 olist = ofile;
1075#endif
1076
1077 while (cfile = string_nextinlist(&clist, &csep, NULL, 0))
1078
1079 if (!(kfile = string_nextinlist(&klist, &ksep, NULL, 0)))
1080 return tls_error(US"cert/key setup: out of keys", NULL, host, errstr);
1081 else if (0 < (rc = tls_add_certfile(state, host, cfile, kfile, errstr)))
1082 return rc;
1083 else
1084 {
1085 int gnutls_cert_index = -rc;
1086 DEBUG(D_tls) debug_printf("TLS: cert/key %d %s registered\n", gnutls_cert_index, cfile);
1087
1088 /* Set the OCSP stapling server info */
1089
1090#ifndef DISABLE_OCSP
1091 if (tls_ocsp_file)
1092 {
1093 if (gnutls_buggy_ocsp)
1094 {
1095 DEBUG(D_tls)
1096 debug_printf("GnuTLS library is buggy for OCSP; avoiding\n");
1097 }
1098 else if ((ofile = string_nextinlist(&olist, &osep, NULL, 0)))
1099 {
1100 DEBUG(D_tls) debug_printf("OCSP response file = %s\n", ofile);
1101
1102# ifdef SUPPORT_SRV_OCSP_STACK
1103 if (f.running_in_test_harness) tls_server_testharness_ocsp_fiddle();
1104
1105 if (!exim_testharness_disable_ocsp_validity_check)
1106 {
1107 if ((rc = gnutls_certificate_set_ocsp_status_request_file2(
1108 state->x509_cred, CCS ofile, gnutls_cert_index,
1109 GNUTLS_X509_FMT_DER)) < 0)
1110 return tls_error_gnu(
1111 US"gnutls_certificate_set_ocsp_status_request_file2",
1112 rc, host, errstr);
1113
1114 /* Arrange callbacks for OCSP request observability */
1115
1116 gnutls_handshake_set_hook_function(state->session,
1117 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
1118 }
1119 else
1120# endif
1121 {
1122 if (cnt++ > 0)
1123 {
1124 DEBUG(D_tls)
1125 debug_printf("oops; multiple OCSP files not supported\n");
1126 break;
1127 }
1128 gnutls_certificate_set_ocsp_status_request_function(
1129 state->x509_cred, server_ocsp_stapling_cb, ofile);
1130 }
1131 }
1132 else
1133 DEBUG(D_tls) debug_printf("ran out of OCSP response files in list\n");
1134 }
1135#endif /* DISABLE_OCSP */
1136 }
1137 }
1138 else /* client */
1139 {
1140 if (0 < (rc = tls_add_certfile(state, host,
1141 state->exp_tls_certificate, state->exp_tls_privatekey, errstr)))
1142 return rc;
1143 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
1144 }
1145
1146 } /* tls_certificate */
1147
1148
1149/* Set the trusted CAs file if one is provided, and then add the CRL if one is
1150provided. Experiment shows that, if the certificate file is empty, an unhelpful
1151error message is provided. However, if we just refrain from setting anything up
1152in that case, certificate verification fails, which seems to be the correct
1153behaviour. */
1154
1155if (state->tls_verify_certificates && *state->tls_verify_certificates)
1156 {
1157 if (!expand_check_tlsvar(tls_verify_certificates, errstr))
1158 return DEFER;
1159#ifndef SUPPORT_SYSDEFAULT_CABUNDLE
1160 if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1161 state->exp_tls_verify_certificates = NULL;
1162#endif
1163 if (state->tls_crl && *state->tls_crl)
1164 if (!expand_check_tlsvar(tls_crl, errstr))
1165 return DEFER;
1166
1167 if (!(state->exp_tls_verify_certificates &&
1168 *state->exp_tls_verify_certificates))
1169 {
1170 DEBUG(D_tls)
1171 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
1172 /* With no tls_verify_certificates, we ignore tls_crl too */
1173 return OK;
1174 }
1175 }
1176else
1177 {
1178 DEBUG(D_tls)
1179 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
1180 return OK;
1181 }
1182
1183#ifdef SUPPORT_SYSDEFAULT_CABUNDLE
1184if (Ustrcmp(state->exp_tls_verify_certificates, "system") == 0)
1185 cert_count = gnutls_certificate_set_x509_system_trust(state->x509_cred);
1186else
1187#endif
1188 {
1189 if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
1190 {
1191 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
1192 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
1193 strerror(errno));
1194 return DEFER;
1195 }
1196
1197#ifndef SUPPORT_CA_DIR
1198 /* The test suite passes in /dev/null; we could check for that path explicitly,
1199 but who knows if someone has some weird FIFO which always dumps some certs, or
1200 other weirdness. The thing we really want to check is that it's not a
1201 directory, since while OpenSSL supports that, GnuTLS does not.
1202 So s/!S_ISREG/S_ISDIR/ and change some messaging ... */
1203 if (S_ISDIR(statbuf.st_mode))
1204 {
1205 DEBUG(D_tls)
1206 debug_printf("verify certificates path is a dir: \"%s\"\n",
1207 state->exp_tls_verify_certificates);
1208 log_write(0, LOG_MAIN|LOG_PANIC,
1209 "tls_verify_certificates \"%s\" is a directory",
1210 state->exp_tls_verify_certificates);
1211 return DEFER;
1212 }
1213#endif
1214
1215 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
1216 state->exp_tls_verify_certificates, statbuf.st_size);
1217
1218 if (statbuf.st_size == 0)
1219 {
1220 DEBUG(D_tls)
1221 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
1222 return OK;
1223 }
1224
1225 cert_count =
1226
1227#ifdef SUPPORT_CA_DIR
1228 (statbuf.st_mode & S_IFMT) == S_IFDIR
1229 ?
1230 gnutls_certificate_set_x509_trust_dir(state->x509_cred,
1231 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM)
1232 :
1233#endif
1234 gnutls_certificate_set_x509_trust_file(state->x509_cred,
1235 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
1236
1237#ifdef SUPPORT_CA_DIR
1238 /* Mimic the behaviour with OpenSSL of not advertising a usable-cert list
1239 when using the directory-of-certs config model. */
1240
1241 if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
1242 gnutls_certificate_send_x509_rdn_sequence(state->session, 1);
1243#endif
1244 }
1245
1246if (cert_count < 0)
1247 return tls_error_gnu(US"setting certificate trust", cert_count, host, errstr);
1248DEBUG(D_tls)
1249 debug_printf("Added %d certificate authorities.\n", cert_count);
1250
1251if (state->tls_crl && *state->tls_crl &&
1252 state->exp_tls_crl && *state->exp_tls_crl)
1253 {
1254 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
1255 if ((cert_count = gnutls_certificate_set_x509_crl_file(state->x509_cred,
1256 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM)) < 0)
1257 return tls_error_gnu(US"gnutls_certificate_set_x509_crl_file",
1258 cert_count, host, errstr);
1259
1260 DEBUG(D_tls) debug_printf("Processed %d CRLs.\n", cert_count);
1261 }
1262
1263return OK;
1264}
1265
1266
1267
1268
1269/*************************************************
1270* Set X.509 state variables *
1271*************************************************/
1272
1273/* In GnuTLS, the registered cert/key are not replaced by a later
1274set of a cert/key, so for SNI support we need a whole new x509_cred
1275structure. Which means various other non-re-expanded pieces of state
1276need to be re-set in the new struct, so the setting logic is pulled
1277out to this.
1278
1279Arguments:
1280 state exim_gnutls_state_st *
1281 errstr error string pointer
1282
1283Returns: OK/DEFER/FAIL
1284*/
1285
1286static int
1287tls_set_remaining_x509(exim_gnutls_state_st *state, uschar ** errstr)
1288{
1289int rc;
1290const host_item *host = state->host; /* macro should be reconsidered? */
1291
1292/* Create D-H parameters, or read them from the cache file. This function does
1293its own SMTP error messaging. This only happens for the server, TLS D-H ignores
1294client-side params. */
1295
1296if (!state->host)
1297 {
1298 if (!dh_server_params)
1299 if ((rc = init_server_dh(errstr)) != OK) return rc;
1300 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
1301 }
1302
1303/* Link the credentials to the session. */
1304
1305if ((rc = gnutls_credentials_set(state->session,
1306 GNUTLS_CRD_CERTIFICATE, state->x509_cred)))
1307 return tls_error_gnu(US"gnutls_credentials_set", rc, host, errstr);
1308
1309return OK;
1310}
1311
1312/*************************************************
1313* Initialize for GnuTLS *
1314*************************************************/
1315
1316
1317#ifndef DISABLE_OCSP
1318
1319static BOOL
1320tls_is_buggy_ocsp(void)
1321{
1322const uschar * s;
1323uschar maj, mid, mic;
1324
1325s = CUS gnutls_check_version(NULL);
1326maj = atoi(CCS s);
1327if (maj == 3)
1328 {
1329 while (*s && *s != '.') s++;
1330 mid = atoi(CCS ++s);
1331 if (mid <= 2)
1332 return TRUE;
1333 else if (mid >= 5)
1334 return FALSE;
1335 else
1336 {
1337 while (*s && *s != '.') s++;
1338 mic = atoi(CCS ++s);
1339 return mic <= (mid == 3 ? 16 : 3);
1340 }
1341 }
1342return FALSE;
1343}
1344
1345#endif
1346
1347
1348/* Called from both server and client code. In the case of a server, errors
1349before actual TLS negotiation return DEFER.
1350
1351Arguments:
1352 host connected host, if client; NULL if server
1353 certificate certificate file
1354 privatekey private key file
1355 sni TLS SNI to send, sometimes when client; else NULL
1356 cas CA certs file
1357 crl CRL file
1358 require_ciphers tls_require_ciphers setting
1359 caller_state returned state-info structure
1360 errstr error string pointer
1361
1362Returns: OK/DEFER/FAIL
1363*/
1364
1365static int
1366tls_init(
1367 const host_item *host,
1368 const uschar *certificate,
1369 const uschar *privatekey,
1370 const uschar *sni,
1371 const uschar *cas,
1372 const uschar *crl,
1373 const uschar *require_ciphers,
1374 exim_gnutls_state_st **caller_state,
1375 tls_support * tlsp,
1376 uschar ** errstr)
1377{
1378exim_gnutls_state_st * state;
1379int rc;
1380size_t sz;
1381const char * errpos;
1382const uschar * p;
1383
1384if (!exim_gnutls_base_init_done)
1385 {
1386 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
1387
1388#ifdef HAVE_GNUTLS_PKCS11
1389 /* By default, gnutls_global_init will init PKCS11 support in auto mode,
1390 which loads modules from a config file, which sounds good and may be wanted
1391 by some sysadmin, but also means in common configurations that GNOME keyring
1392 environment variables are used and so breaks for users calling mailq.
1393 To prevent this, we init PKCS11 first, which is the documented approach. */
1394 if (!gnutls_allow_auto_pkcs11)
1395 if ((rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL)))
1396 return tls_error_gnu(US"gnutls_pkcs11_init", rc, host, errstr);
1397#endif
1398
1399 if ((rc = gnutls_global_init()))
1400 return tls_error_gnu(US"gnutls_global_init", rc, host, errstr);
1401
1402#if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1403 DEBUG(D_tls)
1404 {
1405 gnutls_global_set_log_function(exim_gnutls_logger_cb);
1406 /* arbitrarily chosen level; bump up to 9 for more */
1407 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
1408 }
1409#endif
1410
1411#ifndef DISABLE_OCSP
1412 if (tls_ocsp_file && (gnutls_buggy_ocsp = tls_is_buggy_ocsp()))
1413 log_write(0, LOG_MAIN, "OCSP unusable with this GnuTLS library version");
1414#endif
1415
1416 exim_gnutls_base_init_done = TRUE;
1417 }
1418
1419if (host)
1420 {
1421 /* For client-side sessions we allocate a context. This lets us run
1422 several in parallel. */
1423 int old_pool = store_pool;
1424 store_pool = POOL_PERM;
1425 state = store_get(sizeof(exim_gnutls_state_st), FALSE);
1426 store_pool = old_pool;
1427
1428 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1429 state->tlsp = tlsp;
1430 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
1431 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
1432 }
1433else
1434 {
1435 state = &state_server;
1436 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1437 state->tlsp = tlsp;
1438 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
1439 rc = gnutls_init(&state->session, GNUTLS_SERVER);
1440 }
1441if (rc)
1442 return tls_error_gnu(US"gnutls_init", rc, host, errstr);
1443
1444state->host = host;
1445
1446state->tls_certificate = certificate;
1447state->tls_privatekey = privatekey;
1448state->tls_require_ciphers = require_ciphers;
1449state->tls_sni = sni;
1450state->tls_verify_certificates = cas;
1451state->tls_crl = crl;
1452
1453/* This handles the variables that might get re-expanded after TLS SNI;
1454that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
1455
1456DEBUG(D_tls)
1457 debug_printf("Expanding various TLS configuration options for session credentials.\n");
1458if ((rc = tls_expand_session_files(state, errstr)) != OK) return rc;
1459
1460/* These are all other parts of the x509_cred handling, since SNI in GnuTLS
1461requires a new structure afterwards. */
1462
1463if ((rc = tls_set_remaining_x509(state, errstr)) != OK) return rc;
1464
1465/* set SNI in client, only */
1466if (host)
1467 {
1468 if (!expand_check(sni, US"tls_out_sni", &state->tlsp->sni, errstr))
1469 return DEFER;
1470 if (state->tlsp->sni && *state->tlsp->sni)
1471 {
1472 DEBUG(D_tls)
1473 debug_printf("Setting TLS client SNI to \"%s\"\n", state->tlsp->sni);
1474 sz = Ustrlen(state->tlsp->sni);
1475 if ((rc = gnutls_server_name_set(state->session,
1476 GNUTLS_NAME_DNS, state->tlsp->sni, sz)))
1477 return tls_error_gnu(US"gnutls_server_name_set", rc, host, errstr);
1478 }
1479 }
1480else if (state->tls_sni)
1481 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
1482 "have an SNI set for a server [%s]\n", state->tls_sni);
1483
1484/* This is the priority string support,
1485http://www.gnutls.org/manual/html_node/Priority-Strings.html
1486and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
1487This was backwards incompatible, but means Exim no longer needs to track
1488all algorithms and provide string forms for them. */
1489
1490p = NULL;
1491if (state->tls_require_ciphers && *state->tls_require_ciphers)
1492 {
1493 if (!expand_check_tlsvar(tls_require_ciphers, errstr))
1494 return DEFER;
1495 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
1496 {
1497 p = state->exp_tls_require_ciphers;
1498 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n", p);
1499 }
1500 }
1501if (!p)
1502 {
1503 p = exim_default_gnutls_priority;
1504 DEBUG(D_tls)
1505 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n", p);
1506 }
1507
1508if ((rc = gnutls_priority_init(&state->priority_cache, CCS p, &errpos)))
1509 return tls_error_gnu(string_sprintf(
1510 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
1511 p, errpos - CS p, errpos),
1512 rc, host, errstr);
1513
1514if ((rc = gnutls_priority_set(state->session, state->priority_cache)))
1515 return tls_error_gnu(US"gnutls_priority_set", rc, host, errstr);
1516
1517/* This also sets the server ticket expiration time to the same, and
1518the STEK rotation time to 3x. */
1519
1520gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
1521
1522/* Reduce security in favour of increased compatibility, if the admin
1523decides to make that trade-off. */
1524if (gnutls_compat_mode)
1525 {
1526#if LIBGNUTLS_VERSION_NUMBER >= 0x020104
1527 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
1528 gnutls_session_enable_compatibility_mode(state->session);
1529#else
1530 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
1531#endif
1532 }
1533
1534*caller_state = state;
1535return OK;
1536}
1537
1538
1539
1540/*************************************************
1541* Extract peer information *
1542*************************************************/
1543
1544static const uschar *
1545cipher_stdname_kcm(gnutls_kx_algorithm_t kx, gnutls_cipher_algorithm_t cipher,
1546 gnutls_mac_algorithm_t mac)
1547{
1548uschar cs_id[2];
1549gnutls_kx_algorithm_t kx_i;
1550gnutls_cipher_algorithm_t cipher_i;
1551gnutls_mac_algorithm_t mac_i;
1552
1553for (size_t i = 0;
1554 gnutls_cipher_suite_info(i, cs_id, &kx_i, &cipher_i, &mac_i, NULL);
1555 i++)
1556 if (kx_i == kx && cipher_i == cipher && mac_i == mac)
1557 return cipher_stdname(cs_id[0], cs_id[1]);
1558return NULL;
1559}
1560
1561
1562
1563/* Called from both server and client code.
1564Only this is allowed to set state->peerdn and state->have_set_peerdn
1565and we use that to detect double-calls.
1566
1567NOTE: the state blocks last while the TLS connection is up, which is fine
1568for logging in the server side, but for the client side, we log after teardown
1569in src/deliver.c. While the session is up, we can twist about states and
1570repoint tls_* globals, but those variables used for logging or other variable
1571expansion that happens _after_ delivery need to have a longer life-time.
1572
1573So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
1574doing this more than once per generation of a state context. We set them in
1575the state context, and repoint tls_* to them. After the state goes away, the
1576tls_* copies of the pointers remain valid and client delivery logging is happy.
1577
1578tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
1579don't apply.
1580
1581Arguments:
1582 state exim_gnutls_state_st *
1583 errstr pointer to error string
1584
1585Returns: OK/DEFER/FAIL
1586*/
1587
1588static int
1589peer_status(exim_gnutls_state_st * state, uschar ** errstr)
1590{
1591gnutls_session_t session = state->session;
1592const gnutls_datum_t * cert_list;
1593int old_pool, rc;
1594unsigned int cert_list_size = 0;
1595gnutls_protocol_t protocol;
1596gnutls_cipher_algorithm_t cipher;
1597gnutls_kx_algorithm_t kx;
1598gnutls_mac_algorithm_t mac;
1599gnutls_certificate_type_t ct;
1600gnutls_x509_crt_t crt;
1601uschar * dn_buf;
1602size_t sz;
1603
1604if (state->have_set_peerdn)
1605 return OK;
1606state->have_set_peerdn = TRUE;
1607
1608state->peerdn = NULL;
1609
1610/* tls_cipher */
1611cipher = gnutls_cipher_get(session);
1612protocol = gnutls_protocol_get_version(session);
1613mac = gnutls_mac_get(session);
1614kx =
1615#ifdef GNUTLS_TLS1_3
1616 protocol >= GNUTLS_TLS1_3 ? 0 :
1617#endif
1618 gnutls_kx_get(session);
1619
1620old_pool = store_pool;
1621 {
1622 tls_support * tlsp = state->tlsp;
1623 store_pool = POOL_PERM;
1624
1625#ifdef SUPPORT_GNUTLS_SESS_DESC
1626 {
1627 gstring * g = NULL;
1628 uschar * s = US gnutls_session_get_desc(session), c;
1629
1630 /* Nikos M suggests we use this by preference. It returns like:
1631 (TLS1.3)-(ECDHE-SECP256R1)-(RSA-PSS-RSAE-SHA256)-(AES-256-GCM)
1632
1633 For partial back-compat, put a colon after the TLS version, replace the
1634 )-( grouping with __, replace in-group - with _ and append the :keysize. */
1635
1636 /* debug_printf("peer_status: gnutls_session_get_desc %s\n", s); */
1637
1638 for (s++; (c = *s) && c != ')'; s++) g = string_catn(g, s, 1);
1639 g = string_catn(g, US":", 1);
1640 if (*s) s++; /* now on _ between groups */
1641 while ((c = *s))
1642 {
1643 for (*++s && ++s; (c = *s) && c != ')'; s++) g = string_catn(g, c == '-' ? US"_" : s, 1);
1644 /* now on ) closing group */
1645 if ((c = *s) && *++s == '-') g = string_catn(g, US"__", 2);
1646 /* now on _ between groups */
1647 }
1648 g = string_catn(g, US":", 1);
1649 g = string_cat(g, string_sprintf("%d", (int) gnutls_cipher_get_key_size(cipher) * 8));
1650 state->ciphersuite = string_from_gstring(g);
1651 }
1652#else
1653 state->ciphersuite = string_sprintf("%s:%s:%d",
1654 gnutls_protocol_get_name(protocol),
1655 gnutls_cipher_suite_get_name(kx, cipher, mac),
1656 (int) gnutls_cipher_get_key_size(cipher) * 8);
1657
1658 /* I don't see a way that spaces could occur, in the current GnuTLS
1659 code base, but it was a concern in the old code and perhaps older GnuTLS
1660 releases did return "TLS 1.0"; play it safe, just in case. */
1661
1662 for (uschar * p = state->ciphersuite; *p; p++) if (isspace(*p)) *p = '-';
1663#endif
1664
1665/* debug_printf("peer_status: ciphersuite %s\n", state->ciphersuite); */
1666
1667 tlsp->cipher = state->ciphersuite;
1668 tlsp->bits = gnutls_cipher_get_key_size(cipher) * 8;
1669
1670 tlsp->cipher_stdname = cipher_stdname_kcm(kx, cipher, mac);
1671 }
1672store_pool = old_pool;
1673
1674/* tls_peerdn */
1675cert_list = gnutls_certificate_get_peers(session, &cert_list_size);
1676
1677if (!cert_list || cert_list_size == 0)
1678 {
1679 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
1680 cert_list, cert_list_size);
1681 if (state->verify_requirement >= VERIFY_REQUIRED)
1682 return tls_error(US"certificate verification failed",
1683 US"no certificate received from peer", state->host, errstr);
1684 return OK;
1685 }
1686
1687if ((ct = gnutls_certificate_type_get(session)) != GNUTLS_CRT_X509)
1688 {
1689 const uschar * ctn = US gnutls_certificate_type_get_name(ct);
1690 DEBUG(D_tls)
1691 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1692 if (state->verify_requirement >= VERIFY_REQUIRED)
1693 return tls_error(US"certificate verification not possible, unhandled type",
1694 ctn, state->host, errstr);
1695 return OK;
1696 }
1697
1698#define exim_gnutls_peer_err(Label) \
1699 do { \
1700 if (rc != GNUTLS_E_SUCCESS) \
1701 { \
1702 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", \
1703 (Label), gnutls_strerror(rc)); \
1704 if (state->verify_requirement >= VERIFY_REQUIRED) \
1705 return tls_error_gnu((Label), rc, state->host, errstr); \
1706 return OK; \
1707 } \
1708 } while (0)
1709
1710rc = import_cert(&cert_list[0], &crt);
1711exim_gnutls_peer_err(US"cert 0");
1712
1713state->tlsp->peercert = state->peercert = crt;
1714
1715sz = 0;
1716rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1717if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
1718 {
1719 exim_gnutls_peer_err(US"getting size for cert DN failed");
1720 return FAIL; /* should not happen */
1721 }
1722dn_buf = store_get_perm(sz, TRUE); /* tainted */
1723rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1724exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1725
1726state->peerdn = dn_buf;
1727
1728return OK;
1729#undef exim_gnutls_peer_err
1730}
1731
1732
1733
1734
1735/*************************************************
1736* Verify peer certificate *
1737*************************************************/
1738
1739/* Called from both server and client code.
1740*Should* be using a callback registered with
1741gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1742the peer information, but that's too new for some OSes.
1743
1744Arguments:
1745 state exim_gnutls_state_st *
1746 errstr where to put an error message
1747
1748Returns:
1749 FALSE if the session should be rejected
1750 TRUE if the cert is okay or we just don't care
1751*/
1752
1753static BOOL
1754verify_certificate(exim_gnutls_state_st * state, uschar ** errstr)
1755{
1756int rc;
1757uint verify;
1758
1759DEBUG(D_tls) debug_printf("TLS: checking peer certificate\n");
1760*errstr = NULL;
1761rc = peer_status(state, errstr);
1762
1763if (state->verify_requirement == VERIFY_NONE)
1764 return TRUE;
1765
1766if (rc != OK || !state->peerdn)
1767 {
1768 verify = GNUTLS_CERT_INVALID;
1769 *errstr = US"certificate not supplied";
1770 }
1771else
1772
1773 {
1774#ifdef SUPPORT_DANE
1775 if (state->verify_requirement == VERIFY_DANE && state->host)
1776 {
1777 /* Using dane_verify_session_crt() would be easy, as it does it all for us
1778 including talking to a DNS resolver. But we want to do that bit ourselves
1779 as the testsuite intercepts and fakes its own DNS environment. */
1780
1781 dane_state_t s;
1782 dane_query_t r;
1783 uint lsize;
1784 const gnutls_datum_t * certlist =
1785 gnutls_certificate_get_peers(state->session, &lsize);
1786 int usage = tls_out.tlsa_usage;
1787
1788# ifdef GNUTLS_BROKEN_DANE_VALIDATION
1789 /* Split the TLSA records into two sets, TA and EE selectors. Run the
1790 dane-verification separately so that we know which selector verified;
1791 then we know whether to do name-verification (needed for TA but not EE). */
1792
1793 if (usage == ((1<<DANESSL_USAGE_DANE_TA) | (1<<DANESSL_USAGE_DANE_EE)))
1794 { /* a mixed-usage bundle */
1795 int i, j, nrec;
1796 const char ** dd;
1797 int * ddl;
1798
1799 for(nrec = 0; state->dane_data_len[nrec]; ) nrec++;
1800 nrec++;
1801
1802 dd = store_get(nrec * sizeof(uschar *), FALSE);
1803 ddl = store_get(nrec * sizeof(int), FALSE);
1804 nrec--;
1805
1806 if ((rc = dane_state_init(&s, 0)))
1807 goto tlsa_prob;
1808
1809 for (usage = DANESSL_USAGE_DANE_EE;
1810 usage >= DANESSL_USAGE_DANE_TA; usage--)
1811 { /* take records with this usage */
1812 for (j = i = 0; i < nrec; i++)
1813 if (state->dane_data[i][0] == usage)
1814 {
1815 dd[j] = state->dane_data[i];
1816 ddl[j++] = state->dane_data_len[i];
1817 }
1818 if (j)
1819 {
1820 dd[j] = NULL;
1821 ddl[j] = 0;
1822
1823 if ((rc = dane_raw_tlsa(s, &r, (char * const *)dd, ddl, 1, 0)))
1824 goto tlsa_prob;
1825
1826 if ((rc = dane_verify_crt_raw(s, certlist, lsize,
1827 gnutls_certificate_type_get(state->session),
1828 r, 0,
1829 usage == DANESSL_USAGE_DANE_EE
1830 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
1831 &verify)))
1832 {
1833 DEBUG(D_tls)
1834 debug_printf("TLSA record problem: %s\n", dane_strerror(rc));
1835 }
1836 else if (verify == 0) /* verification passed */
1837 {
1838 usage = 1 << usage;
1839 break;
1840 }
1841 }
1842 }
1843
1844 if (rc) goto tlsa_prob;
1845 }
1846 else
1847# endif
1848 {
1849 if ( (rc = dane_state_init(&s, 0))
1850 || (rc = dane_raw_tlsa(s, &r, state->dane_data, state->dane_data_len,
1851 1, 0))
1852 || (rc = dane_verify_crt_raw(s, certlist, lsize,
1853 gnutls_certificate_type_get(state->session),
1854 r, 0,
1855# ifdef GNUTLS_BROKEN_DANE_VALIDATION
1856 usage == (1 << DANESSL_USAGE_DANE_EE)
1857 ? DANE_VFLAG_ONLY_CHECK_EE_USAGE : 0,
1858# else
1859 0,
1860# endif
1861 &verify))
1862 )
1863 goto tlsa_prob;
1864 }
1865
1866 if (verify != 0) /* verification failed */
1867 {
1868 gnutls_datum_t str;
1869 (void) dane_verification_status_print(verify, &str, 0);
1870 *errstr = US str.data; /* don't bother to free */
1871 goto badcert;
1872 }
1873
1874# ifdef GNUTLS_BROKEN_DANE_VALIDATION
1875 /* If a TA-mode TLSA record was used for verification we must additionally
1876 verify the cert name (but not the CA chain). For EE-mode, skip it. */
1877
1878 if (usage & (1 << DANESSL_USAGE_DANE_EE))
1879# endif
1880 {
1881 state->peer_dane_verified = state->peer_cert_verified = TRUE;
1882 goto goodcert;
1883 }
1884# ifdef GNUTLS_BROKEN_DANE_VALIDATION
1885 /* Assume that the name on the A-record is the one that should be matching
1886 the cert. An alternate view is that the domain part of the email address
1887 is also permissible. */
1888
1889 if (gnutls_x509_crt_check_hostname(state->tlsp->peercert,
1890 CS state->host->name))
1891 {
1892 state->peer_dane_verified = state->peer_cert_verified = TRUE;
1893 goto goodcert;
1894 }
1895# endif
1896 }
1897#endif /*SUPPORT_DANE*/
1898
1899 rc = gnutls_certificate_verify_peers2(state->session, &verify);
1900 }
1901
1902/* Handle the result of verification. INVALID is set if any others are. */
1903
1904if (rc < 0 || verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED))
1905 {
1906 state->peer_cert_verified = FALSE;
1907 if (!*errstr)
1908 {
1909#ifdef GNUTLS_CERT_VFY_STATUS_PRINT
1910 DEBUG(D_tls)
1911 {
1912 gnutls_datum_t txt;
1913
1914 if (gnutls_certificate_verification_status_print(verify,
1915 gnutls_certificate_type_get(state->session), &txt, 0)
1916 == GNUTLS_E_SUCCESS)
1917 {
1918 debug_printf("%s\n", txt.data);
1919 gnutls_free(txt.data);
1920 }
1921 }
1922#endif
1923 *errstr = verify & GNUTLS_CERT_REVOKED
1924 ? US"certificate revoked" : US"certificate invalid";
1925 }
1926
1927 DEBUG(D_tls)
1928 debug_printf("TLS certificate verification failed (%s): peerdn=\"%s\"\n",
1929 *errstr, state->peerdn ? state->peerdn : US"<unset>");
1930
1931 if (state->verify_requirement >= VERIFY_REQUIRED)
1932 goto badcert;
1933 DEBUG(D_tls)
1934 debug_printf("TLS verify failure overridden (host in tls_try_verify_hosts)\n");
1935 }
1936
1937else
1938 {
1939 /* Client side, check the server's certificate name versus the name on the
1940 A-record for the connection we made. What to do for server side - what name
1941 to use for client? We document that there is no such checking for server
1942 side. */
1943
1944 if ( state->exp_tls_verify_cert_hostnames
1945 && !gnutls_x509_crt_check_hostname(state->tlsp->peercert,
1946 CS state->exp_tls_verify_cert_hostnames)
1947 )
1948 {
1949 DEBUG(D_tls)
1950 debug_printf("TLS certificate verification failed: cert name mismatch\n");
1951 if (state->verify_requirement >= VERIFY_REQUIRED)
1952 goto badcert;
1953 return TRUE;
1954 }
1955
1956 state->peer_cert_verified = TRUE;
1957 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=\"%s\"\n",
1958 state->peerdn ? state->peerdn : US"<unset>");
1959 }
1960
1961goodcert:
1962 state->tlsp->peerdn = state->peerdn;
1963 return TRUE;
1964
1965#ifdef SUPPORT_DANE
1966tlsa_prob:
1967 *errstr = string_sprintf("TLSA record problem: %s",
1968 rc == DANE_E_REQUESTED_DATA_NOT_AVAILABLE ? "none usable" : dane_strerror(rc));
1969#endif
1970
1971badcert:
1972 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1973 return FALSE;
1974}
1975
1976
1977
1978
1979/* ------------------------------------------------------------------------ */
1980/* Callbacks */
1981
1982/* Logging function which can be registered with
1983 * gnutls_global_set_log_function()
1984 * gnutls_global_set_log_level() 0..9
1985 */
1986#if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1987static void
1988exim_gnutls_logger_cb(int level, const char *message)
1989{
1990 size_t len = strlen(message);
1991 if (len < 1)
1992 {
1993 DEBUG(D_tls) debug_printf("GnuTLS<%d> empty debug message\n", level);
1994 return;
1995 }
1996 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s%s", level, message,
1997 message[len-1] == '\n' ? "" : "\n");
1998}
1999#endif
2000
2001
2002/* Called after client hello, should handle SNI work.
2003This will always set tls_sni (state->received_sni) if available,
2004and may trigger presenting different certificates,
2005if state->trigger_sni_changes is TRUE.
2006
2007Should be registered with
2008 gnutls_handshake_set_post_client_hello_function()
2009
2010"This callback must return 0 on success or a gnutls error code to terminate the
2011handshake.".
2012
2013For inability to get SNI information, we return 0.
2014We only return non-zero if re-setup failed.
2015Only used for server-side TLS.
2016*/
2017
2018static int
2019exim_sni_handling_cb(gnutls_session_t session)
2020{
2021char sni_name[MAX_HOST_LEN];
2022size_t data_len = MAX_HOST_LEN;
2023exim_gnutls_state_st *state = &state_server;
2024unsigned int sni_type;
2025int rc, old_pool;
2026uschar * dummy_errstr;
2027
2028rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
2029if (rc != GNUTLS_E_SUCCESS)
2030 {
2031 DEBUG(D_tls)
2032 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
2033 debug_printf("TLS: no SNI presented in handshake.\n");
2034 else
2035 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
2036 gnutls_strerror(rc), rc);
2037 return 0;
2038 }
2039
2040if (sni_type != GNUTLS_NAME_DNS)
2041 {
2042 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
2043 return 0;
2044 }
2045
2046/* We now have a UTF-8 string in sni_name */
2047old_pool = store_pool;
2048store_pool = POOL_PERM;
2049state->received_sni = string_copy_taint(US sni_name, TRUE);
2050store_pool = old_pool;
2051
2052/* We set this one now so that variable expansions below will work */
2053state->tlsp->sni = state->received_sni;
2054
2055DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
2056 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
2057
2058if (!state->trigger_sni_changes)
2059 return 0;
2060
2061if ((rc = tls_expand_session_files(state, &dummy_errstr)) != OK)
2062 {
2063 /* If the setup of certs/etc failed before handshake, TLS would not have
2064 been offered. The best we can do now is abort. */
2065 return GNUTLS_E_APPLICATION_ERROR_MIN;
2066 }
2067
2068rc = tls_set_remaining_x509(state, &dummy_errstr);
2069if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
2070
2071return 0;
2072}
2073
2074
2075
2076#if !defined(DISABLE_OCSP)
2077
2078static int
2079server_ocsp_stapling_cb(gnutls_session_t session, void * ptr,
2080 gnutls_datum_t * ocsp_response)
2081{
2082int ret;
2083DEBUG(D_tls) debug_printf("OCSP stapling callback: %s\n", US ptr);
2084
2085if ((ret = gnutls_load_file(ptr, ocsp_response)) < 0)
2086 {
2087 DEBUG(D_tls) debug_printf("Failed to load ocsp stapling file %s\n",
2088 CS ptr);
2089 tls_in.ocsp = OCSP_NOT_RESP;
2090 return GNUTLS_E_NO_CERTIFICATE_STATUS;
2091 }
2092
2093tls_in.ocsp = OCSP_VFY_NOT_TRIED;
2094return 0;
2095}
2096
2097#endif
2098
2099
2100#ifndef DISABLE_EVENT
2101/*
2102We use this callback to get observability and detail-level control
2103for an exim TLS connection (either direction), raising a tls:cert event
2104for each cert in the chain presented by the peer. Any event
2105can deny verification.
2106
2107Return 0 for the handshake to continue or non-zero to terminate.
2108*/
2109
2110static int
2111verify_cb(gnutls_session_t session)
2112{
2113const gnutls_datum_t * cert_list;
2114unsigned int cert_list_size = 0;
2115gnutls_x509_crt_t crt;
2116int rc;
2117uschar * yield;
2118exim_gnutls_state_st * state = gnutls_session_get_ptr(session);
2119
2120if ((cert_list = gnutls_certificate_get_peers(session, &cert_list_size)))
2121 while (cert_list_size--)
2122 {
2123 if ((rc = import_cert(&cert_list[cert_list_size], &crt)) != GNUTLS_E_SUCCESS)
2124 {
2125 DEBUG(D_tls) debug_printf("TLS: peer cert problem: depth %d: %s\n",
2126 cert_list_size, gnutls_strerror(rc));
2127 break;
2128 }
2129
2130 state->tlsp->peercert = crt;
2131 if ((yield = event_raise(state->event_action,
2132 US"tls:cert", string_sprintf("%d", cert_list_size))))
2133 {
2134 log_write(0, LOG_MAIN,
2135 "SSL verify denied by event-action: depth=%d: %s",
2136 cert_list_size, yield);
2137 return 1; /* reject */
2138 }
2139 state->tlsp->peercert = NULL;
2140 }
2141
2142return 0;
2143}
2144
2145#endif
2146
2147
2148static gstring *
2149ddump(gnutls_datum_t * d)
2150{
2151gstring * g = string_get((d->size+1) * 2);
2152uschar * s = d->data;
2153for (unsigned i = d->size; i > 0; i--, s++)
2154 {
2155 g = string_catn(g, US "0123456789abcdef" + (*s >> 4), 1);
2156 g = string_catn(g, US "0123456789abcdef" + (*s & 0xf), 1);
2157 }
2158return g;
2159}
2160
2161static void
2162post_handshake_debug(exim_gnutls_state_st * state)
2163{
2164#ifdef SUPPORT_GNUTLS_SESS_DESC
2165debug_printf("%s\n", gnutls_session_get_desc(state->session));
2166#endif
2167#ifdef SUPPORT_GNUTLS_KEYLOG
2168# ifdef GNUTLS_TLS1_3
2169if (gnutls_protocol_get_version(state->session) < GNUTLS_TLS1_3)
2170#else
2171if (TRUE)
2172#endif
2173 {
2174 gnutls_datum_t c, s;
2175 gstring * gc, * gs;
2176 /* we only want the client random and the master secret */
2177 gnutls_session_get_random(state->session, &c, &s);
2178 gnutls_session_get_master_secret(state->session, &s);
2179 gc = ddump(&c);
2180 gs = ddump(&s);
2181 debug_printf("CLIENT_RANDOM %.*s %.*s\n", (int)gc->ptr, gc->s, (int)gs->ptr, gs->s);
2182 }
2183else
2184 debug_printf("To get keying info for TLS1.3 is hard:\n"
2185 " set environment variable SSLKEYLOGFILE to a filename writable by uid exim\n"
2186 " add SSLKEYLOGFILE to keep_environment in the exim config\n"
2187 " run exim as root\n"
2188 " if using sudo, add SSLKEYLOGFILE to env_keep in /etc/sudoers\n");
2189#endif
2190}
2191
2192
2193#ifdef EXPERIMENTAL_TLS_RESUME
2194static int
2195tls_server_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2196 unsigned incoming, const gnutls_datum_t * msg)
2197{
2198DEBUG(D_tls) debug_printf("newticket cb\n");
2199tls_in.resumption |= RESUME_CLIENT_REQUESTED;
2200return 0;
2201}
2202
2203static void
2204tls_server_resume_prehandshake(exim_gnutls_state_st * state)
2205{
2206/* Should the server offer session resumption? */
2207tls_in.resumption = RESUME_SUPPORTED;
2208if (verify_check_host(&tls_resumption_hosts) == OK)
2209 {
2210 int rc;
2211 /* GnuTLS appears to not do ticket overlap, but does emit a fresh ticket when
2212 an offered resumption is unacceptable. We lose one resumption per ticket
2213 lifetime, and sessions cannot be indefinitely re-used. There seems to be no
2214 way (3.6.7) of changing the default number of 2 TLS1.3 tickets issued, but at
2215 least they go out in a single packet. */
2216
2217 if (!(rc = gnutls_session_ticket_enable_server(state->session,
2218 &server_sessticket_key)))
2219 tls_in.resumption |= RESUME_SERVER_TICKET;
2220 else
2221 DEBUG(D_tls)
2222 debug_printf("enabling session tickets: %s\n", US gnutls_strerror(rc));
2223
2224 /* Try to tell if we see a ticket request */
2225 gnutls_handshake_set_hook_function(state->session,
2226 GNUTLS_HANDSHAKE_ANY, GNUTLS_HOOK_POST, tls_server_hook_cb);
2227 }
2228}
2229
2230static void
2231tls_server_resume_posthandshake(exim_gnutls_state_st * state)
2232{
2233if (gnutls_session_resumption_requested(state->session))
2234 {
2235 /* This tells us the client sent a full ticket. We use a
2236 callback on session-ticket request, elsewhere, to tell
2237 if a client asked for a ticket. */
2238
2239 tls_in.resumption |= RESUME_CLIENT_SUGGESTED;
2240 DEBUG(D_tls) debug_printf("client requested resumption\n");
2241 }
2242if (gnutls_session_is_resumed(state->session))
2243 {
2244 tls_in.resumption |= RESUME_USED;
2245 DEBUG(D_tls) debug_printf("Session resumed\n");
2246 }
2247}
2248#endif
2249/* ------------------------------------------------------------------------ */
2250/* Exported functions */
2251
2252
2253
2254
2255/*************************************************
2256* Start a TLS session in a server *
2257*************************************************/
2258
2259/* This is called when Exim is running as a server, after having received
2260the STARTTLS command. It must respond to that command, and then negotiate
2261a TLS session.
2262
2263Arguments:
2264 require_ciphers list of allowed ciphers or NULL
2265 errstr pointer to error string
2266
2267Returns: OK on success
2268 DEFER for errors before the start of the negotiation
2269 FAIL for errors during the negotiation; the server can't
2270 continue running.
2271*/
2272
2273int
2274tls_server_start(const uschar * require_ciphers, uschar ** errstr)
2275{
2276int rc;
2277exim_gnutls_state_st * state = NULL;
2278
2279/* Check for previous activation */
2280if (tls_in.active.sock >= 0)
2281 {
2282 tls_error(US"STARTTLS received after TLS started", US "", NULL, errstr);
2283 smtp_printf("554 Already in TLS\r\n", FALSE);
2284 return FAIL;
2285 }
2286
2287/* Initialize the library. If it fails, it will already have logged the error
2288and sent an SMTP response. */
2289
2290DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
2291
2292if ((rc = tls_init(NULL, tls_certificate, tls_privatekey,
2293 NULL, tls_verify_certificates, tls_crl,
2294 require_ciphers, &state, &tls_in, errstr)) != OK) return rc;
2295
2296#ifdef EXPERIMENTAL_TLS_RESUME
2297tls_server_resume_prehandshake(state);
2298#endif
2299
2300/* If this is a host for which certificate verification is mandatory or
2301optional, set up appropriately. */
2302
2303if (verify_check_host(&tls_verify_hosts) == OK)
2304 {
2305 DEBUG(D_tls)
2306 debug_printf("TLS: a client certificate will be required.\n");
2307 state->verify_requirement = VERIFY_REQUIRED;
2308 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2309 }
2310else if (verify_check_host(&tls_try_verify_hosts) == OK)
2311 {
2312 DEBUG(D_tls)
2313 debug_printf("TLS: a client certificate will be requested but not required.\n");
2314 state->verify_requirement = VERIFY_OPTIONAL;
2315 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2316 }
2317else
2318 {
2319 DEBUG(D_tls)
2320 debug_printf("TLS: a client certificate will not be requested.\n");
2321 state->verify_requirement = VERIFY_NONE;
2322 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2323 }
2324
2325#ifndef DISABLE_EVENT
2326if (event_action)
2327 {
2328 state->event_action = event_action;
2329 gnutls_session_set_ptr(state->session, state);
2330 gnutls_certificate_set_verify_function(state->x509_cred, verify_cb);
2331 }
2332#endif
2333
2334/* Register SNI handling; always, even if not in tls_certificate, so that the
2335expansion variable $tls_sni is always available. */
2336
2337gnutls_handshake_set_post_client_hello_function(state->session,
2338 exim_sni_handling_cb);
2339
2340/* Set context and tell client to go ahead, except in the case of TLS startup
2341on connection, where outputting anything now upsets the clients and tends to
2342make them disconnect. We need to have an explicit fflush() here, to force out
2343the response. Other smtp_printf() calls do not need it, because in non-TLS
2344mode, the fflush() happens when smtp_getc() is called. */
2345
2346if (!state->tlsp->on_connect)
2347 {
2348 smtp_printf("220 TLS go ahead\r\n", FALSE);
2349 fflush(smtp_out);
2350 }
2351
2352/* Now negotiate the TLS session. We put our own timer on it, since it seems
2353that the GnuTLS library doesn't.
2354From 3.1.0 there is gnutls_handshake_set_timeout() - but it requires you
2355to set (and clear down afterwards) up a pull-timeout callback function that does
2356a select, so we're no better off unless avoiding signals becomes an issue. */
2357
2358gnutls_transport_set_ptr2(state->session,
2359 (gnutls_transport_ptr_t)(long) fileno(smtp_in),
2360 (gnutls_transport_ptr_t)(long) fileno(smtp_out));
2361state->fd_in = fileno(smtp_in);
2362state->fd_out = fileno(smtp_out);
2363
2364sigalrm_seen = FALSE;
2365if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2366do
2367 rc = gnutls_handshake(state->session);
2368while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2369ALARM_CLR(0);
2370
2371if (rc != GNUTLS_E_SUCCESS)
2372 {
2373 /* It seems that, except in the case of a timeout, we have to close the
2374 connection right here; otherwise if the other end is running OpenSSL it hangs
2375 until the server times out. */
2376
2377 if (sigalrm_seen)
2378 {
2379 tls_error(US"gnutls_handshake", US"timed out", NULL, errstr);
2380 gnutls_db_remove_session(state->session);
2381 }
2382 else
2383 {
2384 tls_error_gnu(US"gnutls_handshake", rc, NULL, errstr);
2385 (void) gnutls_alert_send_appropriate(state->session, rc);
2386 gnutls_deinit(state->session);
2387 gnutls_certificate_free_credentials(state->x509_cred);
2388 millisleep(500);
2389 shutdown(state->fd_out, SHUT_WR);
2390 for (int i = 1024; fgetc(smtp_in) != EOF && i > 0; ) i--; /* drain skt */
2391 (void)fclose(smtp_out);
2392 (void)fclose(smtp_in);
2393 smtp_out = smtp_in = NULL;
2394 }
2395
2396 return FAIL;
2397 }
2398
2399#ifdef EXPERIMENTAL_TLS_RESUME
2400tls_server_resume_posthandshake(state);
2401#endif
2402
2403DEBUG(D_tls) post_handshake_debug(state);
2404
2405/* Verify after the fact */
2406
2407if (!verify_certificate(state, errstr))
2408 {
2409 if (state->verify_requirement != VERIFY_OPTIONAL)
2410 {
2411 (void) tls_error(US"certificate verification failed", *errstr, NULL, errstr);
2412 return FAIL;
2413 }
2414 DEBUG(D_tls)
2415 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
2416 *errstr);
2417 }
2418
2419/* Sets various Exim expansion variables; always safe within server */
2420
2421extract_exim_vars_from_tls_state(state);
2422
2423/* TLS has been set up. Adjust the input functions to read via TLS,
2424and initialize appropriately. */
2425
2426state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
2427
2428receive_getc = tls_getc;
2429receive_getbuf = tls_getbuf;
2430receive_get_cache = tls_get_cache;
2431receive_ungetc = tls_ungetc;
2432receive_feof = tls_feof;
2433receive_ferror = tls_ferror;
2434receive_smtp_buffered = tls_smtp_buffered;
2435
2436return OK;
2437}
2438
2439
2440
2441
2442static void
2443tls_client_setup_hostname_checks(host_item * host, exim_gnutls_state_st * state,
2444 smtp_transport_options_block * ob)
2445{
2446if (verify_check_given_host(CUSS &ob->tls_verify_cert_hostnames, host) == OK)
2447 {
2448 state->exp_tls_verify_cert_hostnames =
2449#ifdef SUPPORT_I18N
2450 string_domain_utf8_to_alabel(host->name, NULL);
2451#else
2452 host->name;
2453#endif
2454 DEBUG(D_tls)
2455 debug_printf("TLS: server cert verification includes hostname: \"%s\".\n",
2456 state->exp_tls_verify_cert_hostnames);
2457 }
2458}
2459
2460
2461
2462
2463#ifdef SUPPORT_DANE
2464/* Given our list of RRs from the TLSA lookup, build a lookup block in
2465GnuTLS-DANE's preferred format. Hang it on the state str for later
2466use in DANE verification.
2467
2468We point at the dnsa data not copy it, so it must remain valid until
2469after verification is done.*/
2470
2471static BOOL
2472dane_tlsa_load(exim_gnutls_state_st * state, dns_answer * dnsa)
2473{
2474dns_scan dnss;
2475int i;
2476const char ** dane_data;
2477int * dane_data_len;
2478
2479i = 1;
2480for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
2481 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
2482 ) if (rr->type == T_TLSA) i++;
2483
2484dane_data = store_get(i * sizeof(uschar *), FALSE);
2485dane_data_len = store_get(i * sizeof(int), FALSE);
2486
2487i = 0;
2488for (dns_record * rr = dns_next_rr(dnsa, &dnss, RESET_ANSWERS); rr;
2489 rr = dns_next_rr(dnsa, &dnss, RESET_NEXT)
2490 ) if (rr->type == T_TLSA && rr->size > 3)
2491 {
2492 const uschar * p = rr->data;
2493/*XXX need somehow to mark rr and its data as tainted. Doues this mean copying it? */
2494 uint8_t usage = p[0], sel = p[1], type = p[2];
2495
2496 DEBUG(D_tls)
2497 debug_printf("TLSA: %d %d %d size %d\n", usage, sel, type, rr->size);
2498
2499 if ( (usage != DANESSL_USAGE_DANE_TA && usage != DANESSL_USAGE_DANE_EE)
2500 || (sel != 0 && sel != 1)
2501 )
2502 continue;
2503 switch(type)
2504 {
2505 case 0: /* Full: cannot check at present */
2506 break;
2507 case 1: if (rr->size != 3 + 256/8) continue; /* sha2-256 */
2508 break;
2509 case 2: if (rr->size != 3 + 512/8) continue; /* sha2-512 */
2510 break;
2511 default: continue;
2512 }
2513
2514 tls_out.tlsa_usage |= 1<<usage;
2515 dane_data[i] = CS p;
2516 dane_data_len[i++] = rr->size;
2517 }
2518
2519if (!i) return FALSE;
2520
2521dane_data[i] = NULL;
2522dane_data_len[i] = 0;
2523
2524state->dane_data = (char * const *)dane_data;
2525state->dane_data_len = dane_data_len;
2526return TRUE;
2527}
2528#endif
2529
2530
2531
2532#ifdef EXPERIMENTAL_TLS_RESUME
2533/* On the client, get any stashed session for the given IP from hints db
2534and apply it to the ssl-connection for attempted resumption. Although
2535there is a gnutls_session_ticket_enable_client() interface it is
2536documented as unnecessary (as of 3.6.7) as "session tickets are emabled
2537by deafult". There seems to be no way to disable them, so even hosts not
2538enabled by the transport option will be sent a ticket request. We will
2539however avoid storing and retrieving session information. */
2540
2541static void
2542tls_retrieve_session(tls_support * tlsp, gnutls_session_t session,
2543 host_item * host, smtp_transport_options_block * ob)
2544{
2545tlsp->resumption = RESUME_SUPPORTED;
2546if (verify_check_given_host(CUSS &ob->tls_resumption_hosts, host) == OK)
2547 {
2548 dbdata_tls_session * dt;
2549 int len, rc;
2550 open_db dbblock, * dbm_file;
2551
2552 DEBUG(D_tls)
2553 debug_printf("check for resumable session for %s\n", host->address);
2554 tlsp->host_resumable = TRUE;
2555 tlsp->resumption |= RESUME_CLIENT_REQUESTED;
2556 if ((dbm_file = dbfn_open(US"tls", O_RDONLY, &dbblock, FALSE, FALSE)))
2557 {
2558 /* Key for the db is the IP. We'd like to filter the retrieved session
2559 for ticket advisory expiry, but 3.6.1 seems to give no access to that */
2560
2561 if ((dt = dbfn_read_with_length(dbm_file, host->address, &len)))
2562 if (!(rc = gnutls_session_set_data(session,
2563 CUS dt->session, (size_t)len - sizeof(dbdata_tls_session))))
2564 {
2565 DEBUG(D_tls) debug_printf("good session\n");
2566 tlsp->resumption |= RESUME_CLIENT_SUGGESTED;
2567 }
2568 else DEBUG(D_tls) debug_printf("setting session resumption data: %s\n",
2569 US gnutls_strerror(rc));
2570 dbfn_close(dbm_file);
2571 }
2572 }
2573}
2574
2575
2576static void
2577tls_save_session(tls_support * tlsp, gnutls_session_t session, const host_item * host)
2578{
2579/* TLS 1.2 - we get both the callback and the direct posthandshake call,
2580but this flag is not set until the second. TLS 1.3 it's the other way about.
2581Keep both calls as the session data cannot be extracted before handshake
2582completes. */
2583
2584if (gnutls_session_get_flags(session) & GNUTLS_SFLAGS_SESSION_TICKET)
2585 {
2586 gnutls_datum_t tkt;
2587 int rc;
2588
2589 DEBUG(D_tls) debug_printf("server offered session ticket\n");
2590 tlsp->ticket_received = TRUE;
2591 tlsp->resumption |= RESUME_SERVER_TICKET;
2592
2593 if (tlsp->host_resumable)
2594 if (!(rc = gnutls_session_get_data2(session, &tkt)))
2595 {
2596 open_db dbblock, * dbm_file;
2597 int dlen = sizeof(dbdata_tls_session) + tkt.size;
2598 dbdata_tls_session * dt = store_get(dlen, TRUE);
2599
2600 DEBUG(D_tls) debug_printf("session data size %u\n", (unsigned)tkt.size);
2601 memcpy(dt->session, tkt.data, tkt.size);
2602 gnutls_free(tkt.data);
2603
2604 if ((dbm_file = dbfn_open(US"tls", O_RDWR, &dbblock, FALSE, FALSE)))
2605 {
2606 /* key for the db is the IP */
2607 dbfn_delete(dbm_file, host->address);
2608 dbfn_write(dbm_file, host->address, dt, dlen);
2609 dbfn_close(dbm_file);
2610
2611 DEBUG(D_tls)
2612 debug_printf("wrote session db (len %u)\n", (unsigned)dlen);
2613 }
2614 }
2615 else DEBUG(D_tls)
2616 debug_printf("extract session data: %s\n", US gnutls_strerror(rc));
2617 }
2618}
2619
2620
2621/* With a TLS1.3 session, the ticket(s) are not seen until
2622the first data read is attempted. And there's often two of them.
2623Pick them up with this callback. We are also called for 1.2
2624but we do nothing.
2625*/
2626static int
2627tls_client_ticket_cb(gnutls_session_t sess, u_int htype, unsigned when,
2628 unsigned incoming, const gnutls_datum_t * msg)
2629{
2630exim_gnutls_state_st * state = gnutls_session_get_ptr(sess);
2631tls_support * tlsp = state->tlsp;
2632
2633DEBUG(D_tls) debug_printf("newticket cb\n");
2634
2635if (!tlsp->ticket_received)
2636 tls_save_session(tlsp, sess, state->host);
2637return 0;
2638}
2639
2640
2641static void
2642tls_client_resume_prehandshake(exim_gnutls_state_st * state,
2643 tls_support * tlsp, host_item * host,
2644 smtp_transport_options_block * ob)
2645{
2646gnutls_session_set_ptr(state->session, state);
2647gnutls_handshake_set_hook_function(state->session,
2648 GNUTLS_HANDSHAKE_NEW_SESSION_TICKET, GNUTLS_HOOK_POST, tls_client_ticket_cb);
2649
2650tls_retrieve_session(tlsp, state->session, host, ob);
2651}
2652
2653static void
2654tls_client_resume_posthandshake(exim_gnutls_state_st * state,
2655 tls_support * tlsp, host_item * host)
2656{
2657if (gnutls_session_is_resumed(state->session))
2658 {
2659 DEBUG(D_tls) debug_printf("Session resumed\n");
2660 tlsp->resumption |= RESUME_USED;
2661 }
2662
2663tls_save_session(tlsp, state->session, host);
2664}
2665#endif /* EXPERIMENTAL_TLS_RESUME */
2666
2667
2668/*************************************************
2669* Start a TLS session in a client *
2670*************************************************/
2671
2672/* Called from the smtp transport after STARTTLS has been accepted.
2673
2674Arguments:
2675 cctx connection context
2676 conn_args connection details
2677 cookie datum for randomness (not used)
2678 tlsp record details of channel configuration here; must be non-NULL
2679 errstr error string pointer
2680
2681Returns: TRUE for success with TLS session context set in smtp context,
2682 FALSE on error
2683*/
2684
2685BOOL
2686tls_client_start(client_conn_ctx * cctx, smtp_connect_args * conn_args,
2687 void * cookie ARG_UNUSED,
2688 tls_support * tlsp, uschar ** errstr)
2689{
2690host_item * host = conn_args->host; /* for msgs and option-tests */
2691transport_instance * tb = conn_args->tblock; /* always smtp or NULL */
2692smtp_transport_options_block * ob = tb
2693 ? (smtp_transport_options_block *)tb->options_block
2694 : &smtp_transport_option_defaults;
2695int rc;
2696exim_gnutls_state_st * state = NULL;
2697uschar * cipher_list = NULL;
2698
2699#ifndef DISABLE_OCSP
2700BOOL require_ocsp =
2701 verify_check_given_host(CUSS &ob->hosts_require_ocsp, host) == OK;
2702BOOL request_ocsp = require_ocsp ? TRUE
2703 : verify_check_given_host(CUSS &ob->hosts_request_ocsp, host) == OK;
2704#endif
2705
2706DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", cctx->sock);
2707
2708#ifdef SUPPORT_DANE
2709/* If dane is flagged, have either request or require dane for this host, and
2710a TLSA record found. Therefore, dane verify required. Which implies cert must
2711be requested and supplied, dane verify must pass, and cert verify irrelevant
2712(incl. hostnames), and (caller handled) require_tls */
2713
2714if (conn_args->dane && ob->dane_require_tls_ciphers)
2715 {
2716 /* not using expand_check_tlsvar because not yet in state */
2717 if (!expand_check(ob->dane_require_tls_ciphers, US"dane_require_tls_ciphers",
2718 &cipher_list, errstr))
2719 return FALSE;
2720 cipher_list = cipher_list && *cipher_list
2721 ? ob->dane_require_tls_ciphers : ob->tls_require_ciphers;
2722 }
2723#endif
2724
2725if (!cipher_list)
2726 cipher_list = ob->tls_require_ciphers;
2727
2728if (tls_init(host, ob->tls_certificate, ob->tls_privatekey,
2729 ob->tls_sni, ob->tls_verify_certificates, ob->tls_crl,
2730 cipher_list, &state, tlsp, errstr) != OK)
2731 return FALSE;
2732
2733 {
2734 int dh_min_bits = ob->tls_dh_min_bits;
2735 if (dh_min_bits < EXIM_CLIENT_DH_MIN_MIN_BITS)
2736 {
2737 DEBUG(D_tls)
2738 debug_printf("WARNING: tls_dh_min_bits far too low,"
2739 " clamping %d up to %d\n",
2740 dh_min_bits, EXIM_CLIENT_DH_MIN_MIN_BITS);
2741 dh_min_bits = EXIM_CLIENT_DH_MIN_MIN_BITS;
2742 }
2743
2744 DEBUG(D_tls) debug_printf("Setting D-H prime minimum"
2745 " acceptable bits to %d\n",
2746 dh_min_bits);
2747 gnutls_dh_set_prime_bits(state->session, dh_min_bits);
2748 }
2749
2750/* Stick to the old behaviour for compatibility if tls_verify_certificates is
2751set but both tls_verify_hosts and tls_try_verify_hosts are unset. Check only
2752the specified host patterns if one of them is defined */
2753
2754#ifdef SUPPORT_DANE
2755if (conn_args->dane && dane_tlsa_load(state, &conn_args->tlsa_dnsa))
2756 {
2757 DEBUG(D_tls)
2758 debug_printf("TLS: server certificate DANE required.\n");
2759 state->verify_requirement = VERIFY_DANE;
2760 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2761 }
2762else
2763#endif
2764 if ( ( state->exp_tls_verify_certificates
2765 && !ob->tls_verify_hosts
2766 && (!ob->tls_try_verify_hosts || !*ob->tls_try_verify_hosts)
2767 )
2768 || verify_check_given_host(CUSS &ob->tls_verify_hosts, host) == OK
2769 )
2770 {
2771 tls_client_setup_hostname_checks(host, state, ob);
2772 DEBUG(D_tls)
2773 debug_printf("TLS: server certificate verification required.\n");
2774 state->verify_requirement = VERIFY_REQUIRED;
2775 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
2776 }
2777else if (verify_check_given_host(CUSS &ob->tls_try_verify_hosts, host) == OK)
2778 {
2779 tls_client_setup_hostname_checks(host, state, ob);
2780 DEBUG(D_tls)
2781 debug_printf("TLS: server certificate verification optional.\n");
2782 state->verify_requirement = VERIFY_OPTIONAL;
2783 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
2784 }
2785else
2786 {
2787 DEBUG(D_tls)
2788 debug_printf("TLS: server certificate verification not required.\n");
2789 state->verify_requirement = VERIFY_NONE;
2790 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
2791 }
2792
2793#ifndef DISABLE_OCSP
2794 /* supported since GnuTLS 3.1.3 */
2795if (request_ocsp)
2796 {
2797 DEBUG(D_tls) debug_printf("TLS: will request OCSP stapling\n");
2798 if ((rc = gnutls_ocsp_status_request_enable_client(state->session,
2799 NULL, 0, NULL)) != OK)
2800 {
2801 tls_error_gnu(US"cert-status-req", rc, state->host, errstr);
2802 return FALSE;
2803 }
2804 tlsp->ocsp = OCSP_NOT_RESP;
2805 }
2806#endif
2807
2808#ifdef EXPERIMENTAL_TLS_RESUME
2809tls_client_resume_prehandshake(state, tlsp, host, ob);
2810#endif
2811
2812#ifndef DISABLE_EVENT
2813if (tb && tb->event_action)
2814 {
2815 state->event_action = tb->event_action;
2816 gnutls_session_set_ptr(state->session, state);
2817 gnutls_certificate_set_verify_function(state->x509_cred, verify_cb);
2818 }
2819#endif
2820
2821gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr_t)(long) cctx->sock);
2822state->fd_in = cctx->sock;
2823state->fd_out = cctx->sock;
2824
2825DEBUG(D_tls) debug_printf("about to gnutls_handshake\n");
2826/* There doesn't seem to be a built-in timeout on connection. */
2827
2828sigalrm_seen = FALSE;
2829ALARM(ob->command_timeout);
2830do
2831 rc = gnutls_handshake(state->session);
2832while (rc == GNUTLS_E_AGAIN || rc == GNUTLS_E_INTERRUPTED && !sigalrm_seen);
2833ALARM_CLR(0);
2834
2835if (rc != GNUTLS_E_SUCCESS)
2836 {
2837 if (sigalrm_seen)
2838 {
2839 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_USER_CANCELED);
2840 tls_error(US"gnutls_handshake", US"timed out", state->host, errstr);
2841 }
2842 else
2843 tls_error_gnu(US"gnutls_handshake", rc, state->host, errstr);
2844 return FALSE;
2845 }
2846
2847DEBUG(D_tls) post_handshake_debug(state);
2848
2849/* Verify late */
2850
2851if (!verify_certificate(state, errstr))
2852 {
2853 tls_error(US"certificate verification failed", *errstr, state->host, errstr);
2854 return FALSE;
2855 }
2856
2857#ifndef DISABLE_OCSP
2858if (request_ocsp)
2859 {
2860 DEBUG(D_tls)
2861 {
2862 gnutls_datum_t stapling;
2863 gnutls_ocsp_resp_t resp;
2864 gnutls_datum_t printed;
2865 if ( (rc= gnutls_ocsp_status_request_get(state->session, &stapling)) == 0
2866 && (rc= gnutls_ocsp_resp_init(&resp)) == 0
2867 && (rc= gnutls_ocsp_resp_import(resp, &stapling)) == 0
2868 && (rc= gnutls_ocsp_resp_print(resp, GNUTLS_OCSP_PRINT_FULL, &printed)) == 0
2869 )
2870 {
2871 debug_printf("%.4096s", printed.data);
2872 gnutls_free(printed.data);
2873 }
2874 else
2875 (void) tls_error_gnu(US"ocsp decode", rc, state->host, errstr);
2876 }
2877
2878 if (gnutls_ocsp_status_request_is_checked(state->session, 0) == 0)
2879 {
2880 tlsp->ocsp = OCSP_FAILED;
2881 tls_error(US"certificate status check failed", NULL, state->host, errstr);
2882 if (require_ocsp)
2883 return FALSE;
2884 }
2885 else
2886 {
2887 DEBUG(D_tls) debug_printf("Passed OCSP checking\n");
2888 tlsp->ocsp = OCSP_VFIED;
2889 }
2890 }
2891#endif
2892
2893#ifdef EXPERIMENTAL_TLS_RESUME
2894tls_client_resume_posthandshake(state, tlsp, host);
2895#endif
2896
2897/* Sets various Exim expansion variables; may need to adjust for ACL callouts */
2898
2899extract_exim_vars_from_tls_state(state);
2900
2901cctx->tls_ctx = state;
2902return TRUE;
2903}
2904
2905
2906
2907
2908/*************************************************
2909* Close down a TLS session *
2910*************************************************/
2911
2912/* This is also called from within a delivery subprocess forked from the
2913daemon, to shut down the TLS library, without actually doing a shutdown (which
2914would tamper with the TLS session in the parent process).
2915
2916Arguments:
2917 ct_ctx client context pointer, or NULL for the one global server context
2918 shutdown 1 if TLS close-alert is to be sent,
2919 2 if also response to be waited for
2920
2921Returns: nothing
2922*/
2923
2924void
2925tls_close(void * ct_ctx, int shutdown)
2926{
2927exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
2928tls_support * tlsp = state->tlsp;
2929
2930if (!tlsp || tlsp->active.sock < 0) return; /* TLS was not active */
2931
2932if (shutdown)
2933 {
2934 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS%s\n",
2935 shutdown > 1 ? " (with response-wait)" : "");
2936
2937 ALARM(2);
2938 gnutls_bye(state->session, shutdown > 1 ? GNUTLS_SHUT_RDWR : GNUTLS_SHUT_WR);
2939 ALARM_CLR(0);
2940 }
2941
2942if (!ct_ctx) /* server */
2943 {
2944 receive_getc = smtp_getc;
2945 receive_getbuf = smtp_getbuf;
2946 receive_get_cache = smtp_get_cache;
2947 receive_ungetc = smtp_ungetc;
2948 receive_feof = smtp_feof;
2949 receive_ferror = smtp_ferror;
2950 receive_smtp_buffered = smtp_buffered;
2951 }
2952
2953gnutls_deinit(state->session);
2954gnutls_certificate_free_credentials(state->x509_cred);
2955
2956tlsp->active.sock = -1;
2957tlsp->active.tls_ctx = NULL;
2958/* Leave bits, peercert, cipher, peerdn, certificate_verified set, for logging */
2959tls_channelbinding_b64 = NULL;
2960
2961
2962if (state->xfer_buffer) store_free(state->xfer_buffer);
2963memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
2964}
2965
2966
2967
2968
2969static BOOL
2970tls_refill(unsigned lim)
2971{
2972exim_gnutls_state_st * state = &state_server;
2973ssize_t inbytes;
2974
2975DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
2976 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
2977
2978sigalrm_seen = FALSE;
2979if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
2980
2981do
2982 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
2983 MIN(ssl_xfer_buffer_size, lim));
2984while (inbytes == GNUTLS_E_AGAIN);
2985
2986if (smtp_receive_timeout > 0) ALARM_CLR(0);
2987
2988if (had_command_timeout) /* set by signal handler */
2989 smtp_command_timeout_exit(); /* does not return */
2990if (had_command_sigterm)
2991 smtp_command_sigterm_exit();
2992if (had_data_timeout)
2993 smtp_data_timeout_exit();
2994if (had_data_sigint)
2995 smtp_data_sigint_exit();
2996
2997/* Timeouts do not get this far. A zero-byte return appears to mean that the
2998TLS session has been closed down, not that the socket itself has been closed
2999down. Revert to non-TLS handling. */
3000
3001if (sigalrm_seen)
3002 {
3003 DEBUG(D_tls) debug_printf("Got tls read timeout\n");
3004 state->xfer_error = TRUE;
3005 return FALSE;
3006 }
3007
3008else if (inbytes == 0)
3009 {
3010 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3011 tls_close(NULL, TLS_NO_SHUTDOWN);
3012 return FALSE;
3013 }
3014
3015/* Handle genuine errors */
3016
3017else if (inbytes < 0)
3018 {
3019 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3020 record_io_error(state, (int) inbytes, US"recv", NULL);
3021 state->xfer_error = TRUE;
3022 return FALSE;
3023 }
3024#ifndef DISABLE_DKIM
3025dkim_exim_verify_feed(state->xfer_buffer, inbytes);
3026#endif
3027state->xfer_buffer_hwm = (int) inbytes;
3028state->xfer_buffer_lwm = 0;
3029return TRUE;
3030}
3031
3032/*************************************************
3033* TLS version of getc *
3034*************************************************/
3035
3036/* This gets the next byte from the TLS input buffer. If the buffer is empty,
3037it refills the buffer via the GnuTLS reading function.
3038Only used by the server-side TLS.
3039
3040This feeds DKIM and should be used for all message-body reads.
3041
3042Arguments: lim Maximum amount to read/buffer
3043Returns: the next character or EOF
3044*/
3045
3046int
3047tls_getc(unsigned lim)
3048{
3049exim_gnutls_state_st * state = &state_server;
3050
3051if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3052 if (!tls_refill(lim))
3053 return state->xfer_error ? EOF : smtp_getc(lim);
3054
3055/* Something in the buffer; return next uschar */
3056
3057return state->xfer_buffer[state->xfer_buffer_lwm++];
3058}
3059
3060uschar *
3061tls_getbuf(unsigned * len)
3062{
3063exim_gnutls_state_st * state = &state_server;
3064unsigned size;
3065uschar * buf;
3066
3067if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
3068 if (!tls_refill(*len))
3069 {
3070 if (!state->xfer_error) return smtp_getbuf(len);
3071 *len = 0;
3072 return NULL;
3073 }
3074
3075if ((size = state->xfer_buffer_hwm - state->xfer_buffer_lwm) > *len)
3076 size = *len;
3077buf = &state->xfer_buffer[state->xfer_buffer_lwm];
3078state->xfer_buffer_lwm += size;
3079*len = size;
3080return buf;
3081}
3082
3083
3084void
3085tls_get_cache()
3086{
3087#ifndef DISABLE_DKIM
3088exim_gnutls_state_st * state = &state_server;
3089int n = state->xfer_buffer_hwm - state->xfer_buffer_lwm;
3090if (n > 0)
3091 dkim_exim_verify_feed(state->xfer_buffer+state->xfer_buffer_lwm, n);
3092#endif
3093}
3094
3095
3096BOOL
3097tls_could_read(void)
3098{
3099return state_server.xfer_buffer_lwm < state_server.xfer_buffer_hwm
3100 || gnutls_record_check_pending(state_server.session) > 0;
3101}
3102
3103
3104
3105
3106/*************************************************
3107* Read bytes from TLS channel *
3108*************************************************/
3109
3110/* This does not feed DKIM, so if the caller uses this for reading message body,
3111then the caller must feed DKIM.
3112
3113Arguments:
3114 ct_ctx client context pointer, or NULL for the one global server context
3115 buff buffer of data
3116 len size of buffer
3117
3118Returns: the number of bytes read
3119 -1 after a failed read, including EOF
3120*/
3121
3122int
3123tls_read(void * ct_ctx, uschar *buff, size_t len)
3124{
3125exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3126ssize_t inbytes;
3127
3128if (len > INT_MAX)
3129 len = INT_MAX;
3130
3131if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
3132 DEBUG(D_tls)
3133 debug_printf("*** PROBABLY A BUG *** " \
3134 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
3135 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
3136
3137DEBUG(D_tls)
3138 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
3139 state->session, buff, len);
3140
3141do
3142 inbytes = gnutls_record_recv(state->session, buff, len);
3143while (inbytes == GNUTLS_E_AGAIN);
3144
3145if (inbytes > 0) return inbytes;
3146if (inbytes == 0)
3147 {
3148 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
3149 }
3150else
3151 {
3152 DEBUG(D_tls) debug_printf("%s: err from gnutls_record_recv\n", __FUNCTION__);
3153 record_io_error(state, (int)inbytes, US"recv", NULL);
3154 }
3155
3156return -1;
3157}
3158
3159
3160
3161
3162/*************************************************
3163* Write bytes down TLS channel *
3164*************************************************/
3165
3166/*
3167Arguments:
3168 ct_ctx client context pointer, or NULL for the one global server context
3169 buff buffer of data
3170 len number of bytes
3171 more more data expected soon
3172
3173Returns: the number of bytes after a successful write,
3174 -1 after a failed write
3175*/
3176
3177int
3178tls_write(void * ct_ctx, const uschar * buff, size_t len, BOOL more)
3179{
3180ssize_t outbytes;
3181size_t left = len;
3182exim_gnutls_state_st * state = ct_ctx ? ct_ctx : &state_server;
3183#ifdef SUPPORT_CORK
3184static BOOL corked = FALSE;
3185
3186if (more && !corked) gnutls_record_cork(state->session);
3187#endif
3188
3189DEBUG(D_tls) debug_printf("%s(%p, " SIZE_T_FMT "%s)\n", __FUNCTION__,
3190 buff, left, more ? ", more" : "");
3191
3192while (left > 0)
3193 {
3194 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
3195 buff, left);
3196
3197 do
3198 outbytes = gnutls_record_send(state->session, buff, left);
3199 while (outbytes == GNUTLS_E_AGAIN);
3200
3201 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
3202 if (outbytes < 0)
3203 {
3204 DEBUG(D_tls) debug_printf("%s: gnutls_record_send err\n", __FUNCTION__);
3205 record_io_error(state, outbytes, US"send", NULL);
3206 return -1;
3207 }
3208 if (outbytes == 0)
3209 {
3210 record_io_error(state, 0, US"send", US"TLS channel closed on write");
3211 return -1;
3212 }
3213
3214 left -= outbytes;
3215 buff += outbytes;
3216 }
3217
3218if (len > INT_MAX)
3219 {
3220 DEBUG(D_tls)
3221 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
3222 len);
3223 len = INT_MAX;
3224 }
3225
3226#ifdef SUPPORT_CORK
3227if (more != corked)
3228 {
3229 if (!more) (void) gnutls_record_uncork(state->session, 0);
3230 corked = more;
3231 }
3232#endif
3233
3234return (int) len;
3235}
3236
3237
3238
3239
3240/*************************************************
3241* Random number generation *
3242*************************************************/
3243
3244/* Pseudo-random number generation. The result is not expected to be
3245cryptographically strong but not so weak that someone will shoot themselves
3246in the foot using it as a nonce in input in some email header scheme or
3247whatever weirdness they'll twist this into. The result should handle fork()
3248and avoid repeating sequences. OpenSSL handles that for us.
3249
3250Arguments:
3251 max range maximum
3252Returns a random number in range [0, max-1]
3253*/
3254
3255#ifdef HAVE_GNUTLS_RND
3256int
3257vaguely_random_number(int max)
3258{
3259unsigned int r;
3260int i, needed_len;
3261uschar smallbuf[sizeof(r)];
3262
3263if (max <= 1)
3264 return 0;
3265
3266needed_len = sizeof(r);
3267/* Don't take 8 times more entropy than needed if int is 8 octets and we were
3268asked for a number less than 10. */
3269
3270for (r = max, i = 0; r; ++i)
3271 r >>= 1;
3272i = (i + 7) / 8;
3273if (i < needed_len)
3274 needed_len = i;
3275
3276i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
3277if (i < 0)
3278 {
3279 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
3280 return vaguely_random_number_fallback(max);
3281 }
3282r = 0;
3283for (uschar * p = smallbuf; needed_len; --needed_len, ++p)
3284 r = r * 256 + *p;
3285
3286/* We don't particularly care about weighted results; if someone wants
3287 * smooth distribution and cares enough then they should submit a patch then. */
3288return r % max;
3289}
3290#else /* HAVE_GNUTLS_RND */
3291int
3292vaguely_random_number(int max)
3293{
3294 return vaguely_random_number_fallback(max);
3295}
3296#endif /* HAVE_GNUTLS_RND */
3297
3298
3299
3300
3301/*************************************************
3302* Let tls_require_ciphers be checked at startup *
3303*************************************************/
3304
3305/* The tls_require_ciphers option, if set, must be something which the
3306library can parse.
3307
3308Returns: NULL on success, or error message
3309*/
3310
3311uschar *
3312tls_validate_require_cipher(void)
3313{
3314int rc;
3315uschar *expciphers = NULL;
3316gnutls_priority_t priority_cache;
3317const char *errpos;
3318uschar * dummy_errstr;
3319
3320#define validate_check_rc(Label) do { \
3321 if (rc != GNUTLS_E_SUCCESS) { if (exim_gnutls_base_init_done) gnutls_global_deinit(); \
3322 return string_sprintf("%s failed: %s", (Label), gnutls_strerror(rc)); } } while (0)
3323#define return_deinit(Label) do { gnutls_global_deinit(); return (Label); } while (0)
3324
3325if (exim_gnutls_base_init_done)
3326 log_write(0, LOG_MAIN|LOG_PANIC,
3327 "already initialised GnuTLS, Exim developer bug");
3328
3329#ifdef HAVE_GNUTLS_PKCS11
3330if (!gnutls_allow_auto_pkcs11)
3331 {
3332 rc = gnutls_pkcs11_init(GNUTLS_PKCS11_FLAG_MANUAL, NULL);
3333 validate_check_rc(US"gnutls_pkcs11_init");
3334 }
3335#endif
3336rc = gnutls_global_init();
3337validate_check_rc(US"gnutls_global_init()");
3338exim_gnutls_base_init_done = TRUE;
3339
3340if (!(tls_require_ciphers && *tls_require_ciphers))
3341 return_deinit(NULL);
3342
3343if (!expand_check(tls_require_ciphers, US"tls_require_ciphers", &expciphers,
3344 &dummy_errstr))
3345 return_deinit(US"failed to expand tls_require_ciphers");
3346
3347if (!(expciphers && *expciphers))
3348 return_deinit(NULL);
3349
3350DEBUG(D_tls)
3351 debug_printf("tls_require_ciphers expands to \"%s\"\n", expciphers);
3352
3353rc = gnutls_priority_init(&priority_cache, CS expciphers, &errpos);
3354validate_check_rc(string_sprintf(
3355 "gnutls_priority_init(%s) failed at offset %ld, \"%.8s..\"",
3356 expciphers, errpos - CS expciphers, errpos));
3357
3358#undef return_deinit
3359#undef validate_check_rc
3360gnutls_global_deinit();
3361
3362return NULL;
3363}
3364
3365
3366
3367
3368/*************************************************
3369* Report the library versions. *
3370*************************************************/
3371
3372/* See a description in tls-openssl.c for an explanation of why this exists.
3373
3374Arguments: a FILE* to print the results to
3375Returns: nothing
3376*/
3377
3378void
3379tls_version_report(FILE *f)
3380{
3381fprintf(f, "Library version: GnuTLS: Compile: %s\n"
3382 " Runtime: %s\n",
3383 LIBGNUTLS_VERSION,
3384 gnutls_check_version(NULL));
3385}
3386
3387#endif /*!MACRO_PREDEF*/
3388/* vi: aw ai sw=2
3389*/
3390/* End of tls-gnu.c */