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