Guards for older releases of GnuTLS.
[exim.git] / src / src / tls-gnu.c
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2012 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Copyright (c) Phil Pennock 2012 */
9
10 /* This file provides TLS/SSL support for Exim using the GnuTLS library,
11 one of the available supported implementations. This file is #included into
12 tls.c when USE_GNUTLS has been set.
13
14 The code herein is a revamp of GnuTLS integration using the current APIs; the
15 original tls-gnu.c was based on a patch which was contributed by Nikos
16 Mavroyanopoulos. The revamp is partially a rewrite, partially cut&paste as
17 appropriate.
18
19 APIs current as of GnuTLS 2.12.18; note that the GnuTLS manual is for GnuTLS 3,
20 which is not widely deployed by OS vendors. Will note issues below, which may
21 assist in updating the code in the future. Another sources of hints is
22 mod_gnutls for Apache (SNI callback registration and handling).
23
24 Keeping client and server variables more split than before and is currently
25 the norm, in anticipation of TLS in ACL callouts.
26
27 I wanted to switch to gnutls_certificate_set_verify_function() so that
28 certificate rejection could happen during handshake where it belongs, rather
29 than being dropped afterwards, but that was introduced in 2.10.0 and Debian
30 (6.0.5) is still on 2.8.6. So for now we have to stick with sub-par behaviour.
31
32 (I wasn't looking for libraries quite that old, when updating to get rid of
33 compiler warnings of deprecated APIs. If it turns out that a lot of the rest
34 require current GnuTLS, then we'll drop support for the ancient libraries).
35 */
36
37 #include <gnutls/gnutls.h>
38 /* needed for cert checks in verification and DN extraction: */
39 #include <gnutls/x509.h>
40 /* man-page is incorrect, gnutls_rnd() is not in gnutls.h: */
41 #include <gnutls/crypto.h>
42
43 /* GnuTLS 2 vs 3
44
45 GnuTLS 3 only:
46 gnutls_global_set_audit_log_function()
47
48 Changes:
49 gnutls_certificate_verify_peers2(): is new, drop the 2 for old version
50 */
51
52 /* Local static variables for GnuTLS */
53
54 /* Values for verify_requirement */
55
56 enum peer_verify_requirement { VERIFY_NONE, VERIFY_OPTIONAL, VERIFY_REQUIRED };
57
58 /* This holds most state for server or client; with this, we can set up an
59 outbound TLS-enabled connection in an ACL callout, while not stomping all
60 over the TLS variables available for expansion.
61
62 Some of these correspond to variables in globals.c; those variables will
63 be set to point to content in one of these instances, as appropriate for
64 the stage of the process lifetime.
65
66 Not handled here: globals tls_active, tls_bits, tls_cipher, tls_peerdn,
67 tls_certificate_verified, tls_channelbinding_b64, tls_sni.
68 */
69
70 typedef struct exim_gnutls_state {
71 gnutls_session_t session;
72 gnutls_certificate_credentials_t x509_cred;
73 gnutls_priority_t priority_cache;
74 enum peer_verify_requirement verify_requirement;
75 int fd_in;
76 int fd_out;
77 BOOL peer_cert_verified;
78 BOOL trigger_sni_changes;
79 const struct host_item *host;
80 uschar *peerdn;
81 uschar *received_sni;
82
83 const uschar *tls_certificate;
84 const uschar *tls_privatekey;
85 const uschar *tls_sni; /* client send only, not received */
86 const uschar *tls_verify_certificates;
87 const uschar *tls_crl;
88 const uschar *tls_require_ciphers;
89 uschar *exp_tls_certificate;
90 uschar *exp_tls_privatekey;
91 uschar *exp_tls_sni;
92 uschar *exp_tls_verify_certificates;
93 uschar *exp_tls_crl;
94 uschar *exp_tls_require_ciphers;
95
96 uschar *xfer_buffer;
97 int xfer_buffer_lwm;
98 int xfer_buffer_hwm;
99 int xfer_eof;
100 int xfer_error;
101
102 uschar cipherbuf[256];
103 } exim_gnutls_state_st;
104
105 static const exim_gnutls_state_st exim_gnutls_state_init = {
106 NULL, NULL, NULL, VERIFY_NONE, -1, -1, FALSE, FALSE,
107 NULL, NULL, NULL,
108 NULL, NULL, NULL, NULL, NULL, NULL,
109 NULL, NULL, NULL, NULL, NULL, NULL,
110 NULL, 0, 0, 0, 0,
111 ""
112 };
113
114 /* Not only do we have our own APIs which don't pass around state, assuming
115 it's held in globals, GnuTLS doesn't appear to let us register callback data
116 for callbacks, or as part of the session, so we have to keep a "this is the
117 context we're currently dealing with" pointer and rely upon being
118 single-threaded to keep from processing data on an inbound TLS connection while
119 talking to another TLS connection for an outbound check. This does mean that
120 there's no way for heart-beats to be responded to, for the duration of the
121 second connection. */
122
123 static exim_gnutls_state_st state_server, state_client;
124 static exim_gnutls_state_st *current_global_tls_state;
125
126 /* dh_params are initialised once within the lifetime of a process using TLS;
127 if we used TLS in a long-lived daemon, we'd have to reconsider this. But we
128 don't want to repeat this. */
129
130 static gnutls_dh_params_t dh_server_params = NULL;
131
132 /* No idea how this value was chosen; preserving it. Default is 3600. */
133
134 static const int ssl_session_timeout = 200;
135
136 static const char * const exim_default_gnutls_priority = "NORMAL";
137
138 /* Guard library core initialisation */
139
140 static BOOL exim_gnutls_base_init_done = FALSE;
141
142
143 /* ------------------------------------------------------------------------ */
144 /* macros */
145
146 #define MAX_HOST_LEN 255
147
148 /* Set this to control gnutls_global_set_log_level(); values 0 to 9 will setup
149 the library logging; a value less than 0 disables the calls to set up logging
150 callbacks. */
151 #define EXIM_GNUTLS_LIBRARY_LOG_LEVEL -1
152
153 #define EXIM_CLIENT_DH_MIN_BITS 1024
154
155 /* With GnuTLS 2.12.x+ we have gnutls_sec_param_to_pk_bits() with which we
156 can ask for a bit-strength. Without that, we stick to the constant we had
157 before, for now. */
158 #define EXIM_SERVER_DH_BITS_PRE2_12 1024
159
160 #define exim_gnutls_err_check(Label) do { \
161 if (rc != GNUTLS_E_SUCCESS) { return tls_error((Label), gnutls_strerror(rc), host); } } while (0)
162
163 #define exim_gnutls_err_debugreturn0(Label) do { \
164 if (rc != GNUTLS_E_SUCCESS) { \
165 DEBUG(D_tls) debug_printf("TLS failure: %s: %s", (Label), gnutls_strerror(rc)); \
166 return 0; } } while (0)
167
168 #define expand_check_tlsvar(Varname) expand_check(state->Varname, US #Varname, &state->exp_##Varname)
169
170 #if GNUTLS_VERSION_NUMBER >= 0x020c00
171 #define HAVE_GNUTLS_SESSION_CHANNEL_BINDING
172 #define HAVE_GNUTLS_SEC_PARAM_CONSTANTS
173 #define HAVE_GNUTLS_RND
174 #endif
175
176
177
178
179 /* ------------------------------------------------------------------------ */
180 /* Callback declarations */
181
182 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
183 static void exim_gnutls_logger_cb(int level, const char *message);
184 #endif
185
186 static int exim_sni_handling_cb(gnutls_session_t session);
187
188
189
190
191 /* ------------------------------------------------------------------------ */
192 /* Static functions */
193
194 /*************************************************
195 * Handle TLS error *
196 *************************************************/
197
198 /* Called from lots of places when errors occur before actually starting to do
199 the TLS handshake, that is, while the session is still in clear. Always returns
200 DEFER for a server and FAIL for a client so that most calls can use "return
201 tls_error(...)" to do this processing and then give an appropriate return. A
202 single function is used for both server and client, because it is called from
203 some shared functions.
204
205 Argument:
206 prefix text to include in the logged error
207 msg additional error string (may be NULL)
208 usually obtained from gnutls_strerror()
209 host NULL if setting up a server;
210 the connected host if setting up a client
211
212 Returns: OK/DEFER/FAIL
213 */
214
215 static int
216 tls_error(const uschar *prefix, const char *msg, const host_item *host)
217 {
218 if (host)
219 {
220 log_write(0, LOG_MAIN, "TLS error on connection to %s [%s] (%s)%s%s",
221 host->name, host->address, prefix, msg ? ": " : "", msg ? msg : "");
222 return FAIL;
223 }
224 else
225 {
226 uschar *conn_info = smtp_get_connection_info();
227 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0)
228 conn_info += 5;
229 log_write(0, LOG_MAIN, "TLS error on %s (%s)%s%s",
230 conn_info, prefix, msg ? ": " : "", msg ? msg : "");
231 return DEFER;
232 }
233 }
234
235
236
237
238 /*************************************************
239 * Deal with logging errors during I/O *
240 *************************************************/
241
242 /* We have to get the identity of the peer from saved data.
243
244 Argument:
245 state the current GnuTLS exim state container
246 rc the GnuTLS error code, or 0 if it's a local error
247 when text identifying read or write
248 text local error text when ec is 0
249
250 Returns: nothing
251 */
252
253 static void
254 record_io_error(exim_gnutls_state_st *state, int rc, uschar *when, uschar *text)
255 {
256 const char *msg;
257
258 if (rc == GNUTLS_E_FATAL_ALERT_RECEIVED)
259 msg = CS string_sprintf("%s: %s", US gnutls_strerror(rc),
260 US gnutls_alert_get_name(gnutls_alert_get(state->session)));
261 else
262 msg = gnutls_strerror(rc);
263
264 tls_error(when, msg, state->host);
265 }
266
267
268
269
270 /*************************************************
271 * Set various Exim expansion vars *
272 *************************************************/
273
274 /* We set various Exim global variables from the state, once a session has
275 been established. With TLS callouts, may need to change this to stack
276 variables, or just re-call it with the server state after client callout
277 has finished.
278
279 Make sure anything set here is inset in tls_getc().
280
281 Sets:
282 tls_active fd
283 tls_bits strength indicator
284 tls_certificate_verified bool indicator
285 tls_channelbinding_b64 for some SASL mechanisms
286 tls_cipher a string
287 tls_peerdn a string
288 tls_sni a (UTF-8) string
289 Also:
290 current_global_tls_state for API limitations
291
292 Argument:
293 state the relevant exim_gnutls_state_st *
294 */
295
296 static void
297 extract_exim_vars_from_tls_state(exim_gnutls_state_st *state)
298 {
299 gnutls_protocol_t protocol;
300 gnutls_cipher_algorithm_t cipher;
301 gnutls_kx_algorithm_t kx;
302 gnutls_mac_algorithm_t mac;
303 uschar *p;
304 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
305 int old_pool;
306 int rc;
307 gnutls_datum_t channel;
308 #endif
309
310 current_global_tls_state = state;
311
312 tls_active = state->fd_out;
313
314 cipher = gnutls_cipher_get(state->session);
315 /* returns size in "bytes" */
316 tls_bits = gnutls_cipher_get_key_size(cipher) * 8;
317
318 if (!*state->cipherbuf)
319 {
320 protocol = gnutls_protocol_get_version(state->session);
321 mac = gnutls_mac_get(state->session);
322 kx = gnutls_kx_get(state->session);
323
324 string_format(state->cipherbuf, sizeof(state->cipherbuf),
325 "%s:%s:%u",
326 gnutls_protocol_get_name(protocol),
327 gnutls_cipher_suite_get_name(kx, cipher, mac),
328 tls_bits);
329
330 /* I don't see a way that spaces could occur, in the current GnuTLS
331 code base, but it was a concern in the old code and perhaps older GnuTLS
332 releases did return "TLS 1.0"; play it safe, just in case. */
333 for (p = state->cipherbuf; *p != '\0'; ++p)
334 if (isspace(*p))
335 *p = '-';
336 }
337 tls_cipher = state->cipherbuf;
338
339 DEBUG(D_tls) debug_printf("cipher: %s\n", tls_cipher);
340
341 tls_certificate_verified = state->peer_cert_verified;
342
343 /* note that tls_channelbinding_b64 is not saved to the spool file, since it's
344 only available for use for authenticators while this TLS session is running. */
345
346 tls_channelbinding_b64 = NULL;
347 #ifdef HAVE_GNUTLS_SESSION_CHANNEL_BINDING
348 channel.data = NULL;
349 channel.size = 0;
350 rc = gnutls_session_channel_binding(state->session, GNUTLS_CB_TLS_UNIQUE, &channel);
351 if (rc) {
352 DEBUG(D_tls) debug_printf("Channel binding error: %s\n", gnutls_strerror(rc));
353 } else {
354 old_pool = store_pool;
355 store_pool = POOL_PERM;
356 tls_channelbinding_b64 = auth_b64encode(channel.data, (int)channel.size);
357 store_pool = old_pool;
358 DEBUG(D_tls) debug_printf("Have channel bindings cached for possible auth usage.\n");
359 }
360 #endif
361
362 tls_peerdn = state->peerdn;
363
364 tls_sni = state->received_sni;
365 }
366
367
368
369
370 /*************************************************
371 * Setup up DH parameters *
372 *************************************************/
373
374 /* Generating the D-H parameters may take a long time. They only need to
375 be re-generated every so often, depending on security policy. What we do is to
376 keep these parameters in a file in the spool directory. If the file does not
377 exist, we generate them. This means that it is easy to cause a regeneration.
378
379 The new file is written as a temporary file and renamed, so that an incomplete
380 file is never present. If two processes both compute some new parameters, you
381 waste a bit of effort, but it doesn't seem worth messing around with locking to
382 prevent this.
383
384 Argument:
385 host NULL for server, server for client (for error handling)
386
387 Returns: OK/DEFER/FAIL
388 */
389
390 static int
391 init_server_dh(void)
392 {
393 int fd, rc;
394 unsigned int dh_bits;
395 gnutls_datum m;
396 uschar filename[PATH_MAX];
397 size_t sz;
398 host_item *host = NULL; /* dummy for macros */
399
400 DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
401
402 rc = gnutls_dh_params_init(&dh_server_params);
403 exim_gnutls_err_check(US"gnutls_dh_params_init");
404
405 #ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
406 /* If you change this constant, also change dh_param_fn_ext so that we can use a
407 different filename and ensure we have sufficient bits. */
408 dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL);
409 if (!dh_bits)
410 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL);
411 DEBUG(D_tls)
412 debug_printf("GnuTLS tells us that for D-H PL, NORMAL is %d bits.\n",
413 dh_bits);
414 #else
415 dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
416 DEBUG(D_tls)
417 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
418 dh_bits);
419 #endif
420
421 if (!string_format(filename, sizeof(filename),
422 "%s/gnutls-params-%d", spool_directory, dh_bits))
423 return tls_error(US"overlong filename", NULL, NULL);
424
425 /* Open the cache file for reading and if successful, read it and set up the
426 parameters. */
427
428 fd = Uopen(filename, O_RDONLY, 0);
429 if (fd >= 0)
430 {
431 struct stat statbuf;
432 FILE *fp;
433 int saved_errno;
434
435 if (fstat(fd, &statbuf) < 0) /* EIO */
436 {
437 saved_errno = errno;
438 (void)close(fd);
439 return tls_error(US"TLS cache stat failed", strerror(saved_errno), NULL);
440 }
441 if (!S_ISREG(statbuf.st_mode))
442 {
443 (void)close(fd);
444 return tls_error(US"TLS cache not a file", NULL, NULL);
445 }
446 fp = fdopen(fd, "rb");
447 if (!fp)
448 {
449 saved_errno = errno;
450 (void)close(fd);
451 return tls_error(US"fdopen(TLS cache stat fd) failed",
452 strerror(saved_errno), NULL);
453 }
454
455 m.size = statbuf.st_size;
456 m.data = malloc(m.size);
457 if (m.data == NULL)
458 {
459 fclose(fp);
460 return tls_error(US"malloc failed", strerror(errno), NULL);
461 }
462 sz = fread(m.data, m.size, 1, fp);
463 if (!sz)
464 {
465 saved_errno = errno;
466 fclose(fp);
467 free(m.data);
468 return tls_error(US"fread failed", strerror(saved_errno), NULL);
469 }
470 fclose(fp);
471
472 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
473 free(m.data);
474 exim_gnutls_err_check(US"gnutls_dh_params_import_pkcs3");
475 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
476 }
477
478 /* If the file does not exist, fall through to compute new data and cache it.
479 If there was any other opening error, it is serious. */
480
481 else if (errno == ENOENT)
482 {
483 rc = -1;
484 DEBUG(D_tls)
485 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
486 }
487 else
488 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
489 NULL, NULL);
490
491 /* If ret < 0, either the cache file does not exist, or the data it contains
492 is not useful. One particular case of this is when upgrading from an older
493 release of Exim in which the data was stored in a different format. We don't
494 try to be clever and support both formats; we just regenerate new data in this
495 case. */
496
497 if (rc < 0)
498 {
499 uschar *temp_fn;
500
501 if ((PATH_MAX - Ustrlen(filename)) < 10)
502 return tls_error(US"Filename too long to generate replacement",
503 CS filename, NULL);
504
505 temp_fn = string_copy(US "%s.XXXXXXX");
506 fd = mkstemp(CS temp_fn); /* modifies temp_fn */
507 if (fd < 0)
508 return tls_error(US"Unable to open temp file", strerror(errno), NULL);
509 (void)fchown(fd, exim_uid, exim_gid); /* Probably not necessary */
510
511 DEBUG(D_tls) debug_printf("generating %d bits Diffie-Hellman key ...\n", dh_bits);
512 rc = gnutls_dh_params_generate2(dh_server_params, dh_bits);
513 exim_gnutls_err_check(US"gnutls_dh_params_generate2");
514
515 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
516 and I confirmed that a NULL call to get the size first is how the GnuTLS
517 sample apps handle this. */
518
519 sz = 0;
520 m.data = NULL;
521 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
522 m.data, &sz);
523 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
524 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3(NULL) sizing");
525 m.size = sz;
526 m.data = malloc(m.size);
527 if (m.data == NULL)
528 return tls_error(US"memory allocation failed", strerror(errno), NULL);
529 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
530 m.data, &sz);
531 if (rc != GNUTLS_E_SUCCESS)
532 {
533 free(m.data);
534 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3() real");
535 }
536
537 sz = write_to_fd_buf(fd, m.data, (size_t) m.size);
538 if (sz != m.size)
539 {
540 free(m.data);
541 return tls_error(US"TLS cache write D-H params failed",
542 strerror(errno), NULL);
543 }
544 free(m.data);
545 sz = write_to_fd_buf(fd, US"\n", 1);
546 if (sz != 1)
547 return tls_error(US"TLS cache write D-H params final newline failed",
548 strerror(errno), NULL);
549
550 rc = close(fd);
551 if (rc)
552 return tls_error(US"TLS cache write close() failed",
553 strerror(errno), NULL);
554
555 if (Urename(temp_fn, filename) < 0)
556 return tls_error(string_sprintf("failed to rename \"%s\" as \"%s\"",
557 temp_fn, filename), strerror(errno), NULL);
558
559 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
560 }
561
562 DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
563 return OK;
564 }
565
566
567
568
569 /*************************************************
570 * Variables re-expanded post-SNI *
571 *************************************************/
572
573 /* Called from both server and client code, via tls_init(), and also from
574 the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
575
576 We can tell the two apart by state->received_sni being non-NULL in callback.
577
578 The callback should not call us unless state->trigger_sni_changes is true,
579 which we are responsible for setting on the first pass through.
580
581 Arguments:
582 state exim_gnutls_state_st *
583
584 Returns: OK/DEFER/FAIL
585 */
586
587 static int
588 tls_expand_session_files(exim_gnutls_state_st *state)
589 {
590 int rc;
591 const host_item *host = state->host; /* macro should be reconsidered? */
592 uschar *saved_tls_certificate = NULL;
593 uschar *saved_tls_privatekey = NULL;
594 uschar *saved_tls_verify_certificates = NULL;
595 uschar *saved_tls_crl = NULL;
596 int cert_count;
597
598 /* We check for tls_sni *before* expansion. */
599 if (!state->host)
600 {
601 if (!state->received_sni)
602 {
603 if (Ustrstr(state->tls_certificate, US"tls_sni"))
604 {
605 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
606 state->trigger_sni_changes = TRUE;
607 }
608 }
609 else
610 {
611 saved_tls_certificate = state->exp_tls_certificate;
612 saved_tls_privatekey = state->exp_tls_privatekey;
613 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
614 saved_tls_crl = state->exp_tls_crl;
615 }
616 }
617
618 /* remember: expand_check_tlsvar() is expand_check() but fiddling with
619 state members, assuming consistent naming; and expand_check() returns
620 false if expansion failed, unless expansion was forced to fail. */
621
622 /* check if we at least have a certificate, before doing expensive
623 D-H generation. */
624
625 if (!expand_check_tlsvar(tls_certificate))
626 return DEFER;
627
628 /* certificate is mandatory in server, optional in client */
629
630 if ((state->exp_tls_certificate == NULL) ||
631 (*state->exp_tls_certificate == '\0'))
632 {
633 if (state->host == NULL)
634 return tls_error(US"no TLS server certificate is specified", NULL, NULL);
635 else
636 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
637 }
638
639 if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey))
640 return DEFER;
641
642 /* tls_privatekey is optional, defaulting to same file as certificate */
643
644 if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
645 {
646 state->tls_privatekey = state->tls_certificate;
647 state->exp_tls_privatekey = state->exp_tls_certificate;
648 }
649
650
651 if (state->exp_tls_certificate && *state->exp_tls_certificate)
652 {
653 BOOL setit = TRUE;
654 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
655 state->exp_tls_certificate, state->exp_tls_privatekey);
656
657 if (state->received_sni)
658 {
659 if ((Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0) &&
660 (Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0))
661 {
662 DEBUG(D_tls) debug_printf("cert and key unchanged with SNI.\n");
663 setit = FALSE;
664 }
665 else
666 {
667 DEBUG(D_tls) debug_printf("SNI changed cert/key pair.\n");
668 }
669 }
670
671 if (setit)
672 {
673 rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
674 CS state->exp_tls_certificate, CS state->exp_tls_privatekey,
675 GNUTLS_X509_FMT_PEM);
676 exim_gnutls_err_check(
677 string_sprintf("cert/key setup: cert=%s key=%s",
678 state->exp_tls_certificate, state->exp_tls_privatekey));
679 }
680 }
681
682 /* Set the trusted CAs file if one is provided, and then add the CRL if one is
683 provided. Experiment shows that, if the certificate file is empty, an unhelpful
684 error message is provided. However, if we just refrain from setting anything up
685 in that case, certificate verification fails, which seems to be the correct
686 behaviour. */
687
688 if (state->tls_verify_certificates && *state->tls_verify_certificates)
689 {
690 struct stat statbuf;
691 BOOL setit_vc = TRUE, setit_crl = TRUE;
692
693 if (!expand_check_tlsvar(tls_verify_certificates))
694 return DEFER;
695 if (state->tls_crl && *state->tls_crl)
696 if (!expand_check_tlsvar(tls_crl))
697 return DEFER;
698
699 if (state->received_sni)
700 {
701 if (Ustrcmp(state->exp_tls_verify_certificates, saved_tls_verify_certificates) == 0)
702 setit_vc = FALSE;
703 if (Ustrcmp(state->exp_tls_crl, saved_tls_crl) == 0)
704 setit_crl = FALSE;
705 }
706
707 /* nb: early exit; change if add more expansions to this function */
708 if (!(setit_vc || setit_crl))
709 return OK;
710
711 if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
712 {
713 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
714 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
715 strerror(errno));
716 return DEFER;
717 }
718
719 if (!S_ISREG(statbuf.st_mode))
720 {
721 DEBUG(D_tls)
722 debug_printf("verify certificates path is not a file: \"%s\"\n%s\n",
723 state->exp_tls_verify_certificates,
724 S_ISDIR(statbuf.st_mode)
725 ? " it's a directory, that's OpenSSL, this is GnuTLS"
726 : " (not a directory either)");
727 log_write(0, LOG_MAIN|LOG_PANIC,
728 "tls_verify_certificates \"%s\" is not a file",
729 state->exp_tls_verify_certificates);
730 return DEFER;
731 }
732
733 DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
734 state->exp_tls_verify_certificates, statbuf.st_size);
735
736 /* If the CA cert file is empty, there's no point in loading the CRL file,
737 as we aren't verifying, so checking for revocation is pointless. */
738
739 if (statbuf.st_size > 0)
740 {
741 if (setit_vc)
742 {
743 cert_count = gnutls_certificate_set_x509_trust_file(state->x509_cred,
744 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
745 if (cert_count < 0)
746 {
747 rc = cert_count;
748 exim_gnutls_err_check(US"gnutls_certificate_set_x509_trust_file");
749 }
750 DEBUG(D_tls) debug_printf("Added %d certificate authorities.\n", cert_count);
751 }
752
753 if (setit_crl && state->tls_crl && *state->tls_crl)
754 {
755 if (state->exp_tls_crl && *state->exp_tls_crl)
756 {
757 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
758 rc = gnutls_certificate_set_x509_crl_file(state->x509_cred,
759 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM);
760 exim_gnutls_err_check(US"gnutls_certificate_set_x509_crl_file");
761 }
762 }
763 } /* statbuf.st_size */
764 } /* tls_verify_certificates */
765
766 return OK;
767 /* also above, during verify_certificates/crl, during SNI, if unchanged */
768 }
769
770
771
772
773 /*************************************************
774 * Initialize for GnuTLS *
775 *************************************************/
776
777 /* Called from both server and client code. In the case of a server, errors
778 before actual TLS negotiation return DEFER.
779
780 Arguments:
781 host connected host, if client; NULL if server
782 certificate certificate file
783 privatekey private key file
784 sni TLS SNI to send, sometimes when client; else NULL
785 cas CA certs file
786 crl CRL file
787 require_ciphers tls_require_ciphers setting
788
789 Returns: OK/DEFER/FAIL
790 */
791
792 static int
793 tls_init(
794 const host_item *host,
795 const uschar *certificate,
796 const uschar *privatekey,
797 const uschar *sni,
798 const uschar *cas,
799 const uschar *crl,
800 const uschar *require_ciphers,
801 exim_gnutls_state_st **caller_state)
802 {
803 exim_gnutls_state_st *state;
804 int rc;
805 size_t sz;
806 const char *errpos;
807 uschar *p;
808 BOOL want_default_priorities;
809
810 if (!exim_gnutls_base_init_done)
811 {
812 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
813
814 rc = gnutls_global_init();
815 exim_gnutls_err_check(US"gnutls_global_init");
816
817 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
818 DEBUG(D_tls)
819 {
820 gnutls_global_set_log_function(exim_gnutls_logger_cb);
821 /* arbitrarily chosen level; bump upto 9 for more */
822 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
823 }
824 #endif
825
826 exim_gnutls_base_init_done = TRUE;
827 }
828
829 if (host)
830 {
831 state = &state_client;
832 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
833 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
834 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
835 }
836 else
837 {
838 state = &state_server;
839 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
840 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
841 rc = gnutls_init(&state->session, GNUTLS_SERVER);
842 }
843 exim_gnutls_err_check(US"gnutls_init");
844
845 state->host = host;
846
847 state->tls_certificate = certificate;
848 state->tls_privatekey = privatekey;
849 state->tls_sni = sni;
850 state->tls_verify_certificates = cas;
851 state->tls_crl = crl;
852
853 rc = gnutls_certificate_allocate_credentials(&state->x509_cred);
854 exim_gnutls_err_check(US"gnutls_certificate_allocate_credentials");
855
856 /* This handles the variables that might get re-expanded after TLS SNI;
857 that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
858
859 DEBUG(D_tls)
860 debug_printf("Expanding various TLS configuration options for session credentials.\n");
861 rc = tls_expand_session_files(state);
862 if (rc != OK) return rc;
863
864 /* Create D-H parameters, or read them from the cache file. This function does
865 its own SMTP error messaging. This only happens for the server, TLS D-H ignores
866 client-side params. */
867
868 if (!host)
869 {
870 rc = init_server_dh();
871 if (rc != OK) return rc;
872 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
873 }
874
875 /* Link the credentials to the session. */
876
877 rc = gnutls_credentials_set(state->session, GNUTLS_CRD_CERTIFICATE, state->x509_cred);
878 exim_gnutls_err_check(US"gnutls_credentials_set");
879
880 /* set SNI in client, only */
881 if (host)
882 {
883 if (!expand_check_tlsvar(tls_sni))
884 return DEFER;
885 if (state->exp_tls_sni && *state->exp_tls_sni)
886 {
887 DEBUG(D_tls)
888 debug_printf("Setting TLS client SNI to \"%s\"\n", state->exp_tls_sni);
889 sz = Ustrlen(state->exp_tls_sni);
890 rc = gnutls_server_name_set(state->session,
891 GNUTLS_NAME_DNS, state->exp_tls_sni, sz);
892 exim_gnutls_err_check(US"gnutls_server_name_set");
893 }
894 }
895 else if (state->tls_sni)
896 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
897 "have an SNI set for a client [%s]\n", state->tls_sni);
898
899 /* This is the priority string support,
900 http://www.gnu.org/software/gnutls/manual/html_node/Priority-Strings.html
901 and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
902 This was backwards incompatible, but means Exim no longer needs to track
903 all algorithms and provide string forms for them. */
904
905 want_default_priorities = TRUE;
906
907 if (state->tls_require_ciphers && *state->tls_require_ciphers)
908 {
909 if (!expand_check_tlsvar(tls_require_ciphers))
910 return DEFER;
911 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
912 {
913 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n",
914 state->exp_tls_require_ciphers);
915
916 rc = gnutls_priority_init(&state->priority_cache,
917 CS state->exp_tls_require_ciphers, &errpos);
918 want_default_priorities = FALSE;
919 p = state->exp_tls_require_ciphers;
920 }
921 }
922 if (want_default_priorities)
923 {
924 rc = gnutls_priority_init(&state->priority_cache,
925 exim_default_gnutls_priority, &errpos);
926 p = US exim_default_gnutls_priority;
927 }
928
929 exim_gnutls_err_check(string_sprintf(
930 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
931 p, errpos - CS p, errpos));
932
933 rc = gnutls_priority_set(state->session, state->priority_cache);
934 exim_gnutls_err_check(US"gnutls_priority_set");
935
936 gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
937
938 /* Reduce security in favour of increased compatibility, if the admin
939 decides to make that trade-off. */
940 if (gnutls_compat_mode)
941 {
942 #if LIBGNUTLS_VERSION_NUMBER >= 0x020104
943 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
944 gnutls_session_enable_compatibility_mode(state->session);
945 #else
946 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
947 #endif
948 }
949
950 *caller_state = state;
951 /* needs to happen before callbacks during handshake */
952 current_global_tls_state = state;
953 return OK;
954 }
955
956
957
958
959 /*************************************************
960 * Extract peer information *
961 *************************************************/
962
963 /* Called from both server and client code.
964 Only this is allowed to set state->peerdn and we use that to detect double-calls.
965
966 Arguments:
967 state exim_gnutls_state_st *
968
969 Returns: OK/DEFER/FAIL
970 */
971
972 static int
973 peer_status(exim_gnutls_state_st *state)
974 {
975 const gnutls_datum *cert_list;
976 int rc;
977 unsigned int cert_list_size = 0;
978 gnutls_certificate_type_t ct;
979 gnutls_x509_crt_t crt;
980 uschar *dn_buf;
981 size_t sz;
982
983 if (state->peerdn)
984 return OK;
985
986 state->peerdn = US"unknown";
987
988 cert_list = gnutls_certificate_get_peers(state->session, &cert_list_size);
989
990 if (cert_list == NULL || cert_list_size == 0)
991 {
992 state->peerdn = US"unknown (no certificate)";
993 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
994 cert_list, cert_list_size);
995 if (state->verify_requirement == VERIFY_REQUIRED)
996 return tls_error(US"certificate verification failed",
997 "no certificate received from peer", state->host);
998 return OK;
999 }
1000
1001 ct = gnutls_certificate_type_get(state->session);
1002 if (ct != GNUTLS_CRT_X509)
1003 {
1004 const char *ctn = gnutls_certificate_type_get_name(ct);
1005 state->peerdn = string_sprintf("unknown (type %s)", ctn);
1006 DEBUG(D_tls)
1007 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1008 if (state->verify_requirement == VERIFY_REQUIRED)
1009 return tls_error(US"certificate verification not possible, unhandled type",
1010 ctn, state->host);
1011 return OK;
1012 }
1013
1014 #define exim_gnutls_peer_err(Label) do { \
1015 if (rc != GNUTLS_E_SUCCESS) { \
1016 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", (Label), gnutls_strerror(rc)); \
1017 if (state->verify_requirement == VERIFY_REQUIRED) { return tls_error((Label), gnutls_strerror(rc), state->host); } \
1018 return OK; } } while (0)
1019
1020 rc = gnutls_x509_crt_init(&crt);
1021 exim_gnutls_peer_err(US"gnutls_x509_crt_init (crt)");
1022
1023 rc = gnutls_x509_crt_import(crt, &cert_list[0], GNUTLS_X509_FMT_DER);
1024 exim_gnutls_peer_err(US"failed to import certificate [gnutls_x509_crt_import(cert 0)]");
1025 sz = 0;
1026 rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1027 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
1028 {
1029 exim_gnutls_peer_err(US"getting size for cert DN failed");
1030 return FAIL; /* should not happen */
1031 }
1032 dn_buf = store_get_perm(sz);
1033 rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1034 exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1035 state->peerdn = dn_buf;
1036
1037 return OK;
1038 #undef exim_gnutls_peer_err
1039 }
1040
1041
1042
1043
1044 /*************************************************
1045 * Verify peer certificate *
1046 *************************************************/
1047
1048 /* Called from both server and client code.
1049 *Should* be using a callback registered with
1050 gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1051 the peer information, but that's too new for some OSes.
1052
1053 Arguments:
1054 state exim_gnutls_state_st *
1055 error where to put an error message
1056
1057 Returns:
1058 FALSE if the session should be rejected
1059 TRUE if the cert is okay or we just don't care
1060 */
1061
1062 static BOOL
1063 verify_certificate(exim_gnutls_state_st *state, const char **error)
1064 {
1065 int rc;
1066 unsigned int verify;
1067
1068 *error = NULL;
1069
1070 rc = peer_status(state);
1071 if (rc != OK)
1072 {
1073 verify = GNUTLS_CERT_INVALID;
1074 *error = "not supplied";
1075 }
1076 else
1077 {
1078 rc = gnutls_certificate_verify_peers2(state->session, &verify);
1079 }
1080
1081 /* Handle the result of verification. INVALID seems to be set as well
1082 as REVOKED, but leave the test for both. */
1083
1084 if ((rc < 0) || (verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED)) != 0)
1085 {
1086 state->peer_cert_verified = FALSE;
1087 if (*error == NULL)
1088 *error = ((verify & GNUTLS_CERT_REVOKED) != 0) ? "revoked" : "invalid";
1089
1090 DEBUG(D_tls)
1091 debug_printf("TLS certificate verification failed (%s): peerdn=%s\n",
1092 *error, state->peerdn);
1093
1094 if (state->verify_requirement == VERIFY_REQUIRED)
1095 {
1096 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1097 return FALSE;
1098 }
1099 DEBUG(D_tls)
1100 debug_printf("TLS verify failure overriden (host in tls_try_verify_hosts)\n");
1101 }
1102 else
1103 {
1104 state->peer_cert_verified = TRUE;
1105 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=%s\n", state->peerdn);
1106 }
1107
1108 tls_peerdn = state->peerdn;
1109
1110 return TRUE;
1111 }
1112
1113
1114
1115
1116 /* ------------------------------------------------------------------------ */
1117 /* Callbacks */
1118
1119 /* Logging function which can be registered with
1120 * gnutls_global_set_log_function()
1121 * gnutls_global_set_log_level() 0..9
1122 */
1123 #if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
1124 static void
1125 exim_gnutls_logger_cb(int level, const char *message)
1126 {
1127 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s\n", level, message);
1128 }
1129 #endif
1130
1131
1132 /* Called after client hello, should handle SNI work.
1133 This will always set tls_sni (state->received_sni) if available,
1134 and may trigger presenting different certificates,
1135 if state->trigger_sni_changes is TRUE.
1136
1137 Should be registered with
1138 gnutls_handshake_set_post_client_hello_function()
1139
1140 "This callback must return 0 on success or a gnutls error code to terminate the
1141 handshake.".
1142
1143 For inability to get SNI information, we return 0.
1144 We only return non-zero if re-setup failed.
1145 */
1146
1147 static int
1148 exim_sni_handling_cb(gnutls_session_t session)
1149 {
1150 char sni_name[MAX_HOST_LEN];
1151 size_t data_len = MAX_HOST_LEN;
1152 exim_gnutls_state_st *state = current_global_tls_state;
1153 unsigned int sni_type;
1154 int rc, old_pool;
1155
1156 rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
1157 exim_gnutls_err_debugreturn0("gnutls_server_name_get()");
1158 if (sni_type != GNUTLS_NAME_DNS)
1159 {
1160 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
1161 return 0;
1162 }
1163
1164 /* We now have a UTF-8 string in sni_name */
1165 old_pool = store_pool;
1166 store_pool = POOL_PERM;
1167 state->received_sni = string_copyn(US sni_name, data_len);
1168 store_pool = old_pool;
1169
1170 /* We set this one now so that variable expansions below will work */
1171 tls_sni = state->received_sni;
1172
1173 DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
1174 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
1175
1176 if (!state->trigger_sni_changes)
1177 return 0;
1178
1179 rc = tls_expand_session_files(state);
1180 if (rc != OK)
1181 {
1182 /* If the setup of certs/etc failed before handshake, TLS would not have
1183 been offered. The best we can do now is abort. */
1184 return GNUTLS_E_APPLICATION_ERROR_MIN;
1185 }
1186
1187 rc = gnutls_credentials_set(state->session, GNUTLS_CRD_CERTIFICATE, state->x509_cred);
1188 return (rc == GNUTLS_E_SUCCESS) ? 0 : rc;
1189 }
1190
1191
1192
1193
1194 /* ------------------------------------------------------------------------ */
1195 /* Exported functions */
1196
1197
1198
1199
1200 /*************************************************
1201 * Start a TLS session in a server *
1202 *************************************************/
1203
1204 /* This is called when Exim is running as a server, after having received
1205 the STARTTLS command. It must respond to that command, and then negotiate
1206 a TLS session.
1207
1208 Arguments:
1209 require_ciphers list of allowed ciphers or NULL
1210
1211 Returns: OK on success
1212 DEFER for errors before the start of the negotiation
1213 FAIL for errors during the negotation; the server can't
1214 continue running.
1215 */
1216
1217 int
1218 tls_server_start(const uschar *require_ciphers)
1219 {
1220 int rc;
1221 const char *error;
1222 exim_gnutls_state_st *state = NULL;
1223
1224 /* Check for previous activation */
1225 /* nb: this will not be TLS callout safe, needs reworking as part of that. */
1226
1227 if (tls_active >= 0)
1228 {
1229 tls_error(US"STARTTLS received after TLS started", "", NULL);
1230 smtp_printf("554 Already in TLS\r\n");
1231 return FAIL;
1232 }
1233
1234 /* Initialize the library. If it fails, it will already have logged the error
1235 and sent an SMTP response. */
1236
1237 DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
1238
1239 rc = tls_init(NULL, tls_certificate, tls_privatekey,
1240 NULL, tls_verify_certificates, tls_crl,
1241 require_ciphers, &state);
1242 if (rc != OK) return rc;
1243
1244 /* If this is a host for which certificate verification is mandatory or
1245 optional, set up appropriately. */
1246
1247 if (verify_check_host(&tls_verify_hosts) == OK)
1248 {
1249 DEBUG(D_tls) debug_printf("TLS: a client certificate will be required.\n");
1250 state->verify_requirement = VERIFY_REQUIRED;
1251 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1252 }
1253 else if (verify_check_host(&tls_try_verify_hosts) == OK)
1254 {
1255 DEBUG(D_tls) debug_printf("TLS: a client certificate will be requested but not required.\n");
1256 state->verify_requirement = VERIFY_OPTIONAL;
1257 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1258 }
1259 else
1260 {
1261 DEBUG(D_tls) debug_printf("TLS: a client certificate will not be requested.\n");
1262 state->verify_requirement = VERIFY_NONE;
1263 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
1264 }
1265
1266 /* Register SNI handling; always, even if not in tls_certificate, so that the
1267 expansion variable $tls_sni is always available. */
1268
1269 gnutls_handshake_set_post_client_hello_function(state->session,
1270 exim_sni_handling_cb);
1271
1272 /* Set context and tell client to go ahead, except in the case of TLS startup
1273 on connection, where outputting anything now upsets the clients and tends to
1274 make them disconnect. We need to have an explicit fflush() here, to force out
1275 the response. Other smtp_printf() calls do not need it, because in non-TLS
1276 mode, the fflush() happens when smtp_getc() is called. */
1277
1278 if (!tls_on_connect)
1279 {
1280 smtp_printf("220 TLS go ahead\r\n");
1281 fflush(smtp_out);
1282 }
1283
1284 /* Now negotiate the TLS session. We put our own timer on it, since it seems
1285 that the GnuTLS library doesn't. */
1286
1287 gnutls_transport_set_ptr2(state->session,
1288 (gnutls_transport_ptr)fileno(smtp_in),
1289 (gnutls_transport_ptr)fileno(smtp_out));
1290 state->fd_in = fileno(smtp_in);
1291 state->fd_out = fileno(smtp_out);
1292
1293 sigalrm_seen = FALSE;
1294 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1295 do
1296 {
1297 rc = gnutls_handshake(state->session);
1298 } while ((rc == GNUTLS_E_AGAIN) || (rc == GNUTLS_E_INTERRUPTED));
1299 alarm(0);
1300
1301 if (rc != GNUTLS_E_SUCCESS)
1302 {
1303 tls_error(US"gnutls_handshake",
1304 sigalrm_seen ? "timed out" : gnutls_strerror(rc), NULL);
1305 /* It seems that, except in the case of a timeout, we have to close the
1306 connection right here; otherwise if the other end is running OpenSSL it hangs
1307 until the server times out. */
1308
1309 if (!sigalrm_seen)
1310 {
1311 (void)fclose(smtp_out);
1312 (void)fclose(smtp_in);
1313 }
1314
1315 return FAIL;
1316 }
1317
1318 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1319
1320 /* Verify after the fact */
1321
1322 if (state->verify_requirement != VERIFY_NONE)
1323 {
1324 if (!verify_certificate(state, &error))
1325 {
1326 if (state->verify_requirement == VERIFY_OPTIONAL)
1327 {
1328 DEBUG(D_tls)
1329 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
1330 error);
1331 }
1332 else
1333 {
1334 tls_error(US"certificate verification failed", error, NULL);
1335 return FAIL;
1336 }
1337 }
1338 }
1339
1340 /* Figure out peer DN, and if authenticated, etc. */
1341
1342 rc = peer_status(state);
1343 if (rc != OK) return rc;
1344
1345 /* Sets various Exim expansion variables; always safe within server */
1346
1347 extract_exim_vars_from_tls_state(state);
1348
1349 /* TLS has been set up. Adjust the input functions to read via TLS,
1350 and initialize appropriately. */
1351
1352 state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
1353
1354 receive_getc = tls_getc;
1355 receive_ungetc = tls_ungetc;
1356 receive_feof = tls_feof;
1357 receive_ferror = tls_ferror;
1358 receive_smtp_buffered = tls_smtp_buffered;
1359
1360 return OK;
1361 }
1362
1363
1364
1365
1366 /*************************************************
1367 * Start a TLS session in a client *
1368 *************************************************/
1369
1370 /* Called from the smtp transport after STARTTLS has been accepted.
1371
1372 Arguments:
1373 fd the fd of the connection
1374 host connected host (for messages)
1375 addr the first address (not used)
1376 dhparam DH parameter file (ignored, we're a client)
1377 certificate certificate file
1378 privatekey private key file
1379 sni TLS SNI to send to remote host
1380 verify_certs file for certificate verify
1381 verify_crl CRL for verify
1382 require_ciphers list of allowed ciphers or NULL
1383 timeout startup timeout
1384
1385 Returns: OK/DEFER/FAIL (because using common functions),
1386 but for a client, DEFER and FAIL have the same meaning
1387 */
1388
1389 int
1390 tls_client_start(int fd, host_item *host,
1391 address_item *addr ARG_UNUSED, uschar *dhparam ARG_UNUSED,
1392 uschar *certificate, uschar *privatekey, uschar *sni,
1393 uschar *verify_certs, uschar *verify_crl,
1394 uschar *require_ciphers, int timeout)
1395 {
1396 int rc;
1397 const char *error;
1398 exim_gnutls_state_st *state = NULL;
1399
1400 DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", fd);
1401
1402 rc = tls_init(host, certificate, privatekey,
1403 sni, verify_certs, verify_crl, require_ciphers, &state);
1404 if (rc != OK) return rc;
1405
1406 gnutls_dh_set_prime_bits(state->session, EXIM_CLIENT_DH_MIN_BITS);
1407
1408 if (verify_certs == NULL)
1409 {
1410 DEBUG(D_tls) debug_printf("TLS: server certificate verification not required\n");
1411 state->verify_requirement = VERIFY_NONE;
1412 /* we still ask for it, to log it, etc */
1413 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1414 }
1415 else
1416 {
1417 DEBUG(D_tls) debug_printf("TLS: server certificate verification required\n");
1418 state->verify_requirement = VERIFY_REQUIRED;
1419 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1420 }
1421
1422 gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr)fd);
1423 state->fd_in = fd;
1424 state->fd_out = fd;
1425
1426 /* There doesn't seem to be a built-in timeout on connection. */
1427
1428 sigalrm_seen = FALSE;
1429 alarm(timeout);
1430 do
1431 {
1432 rc = gnutls_handshake(state->session);
1433 } while ((rc == GNUTLS_E_AGAIN) || (rc == GNUTLS_E_INTERRUPTED));
1434 alarm(0);
1435
1436 DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1437
1438 /* Verify late */
1439
1440 if (state->verify_requirement != VERIFY_NONE &&
1441 !verify_certificate(state, &error))
1442 return tls_error(US"certificate verification failed", error, state->host);
1443
1444 /* Figure out peer DN, and if authenticated, etc. */
1445
1446 rc = peer_status(state);
1447 if (rc != OK) return rc;
1448
1449 /* Sets various Exim expansion variables; always safe within server */
1450
1451 extract_exim_vars_from_tls_state(state);
1452
1453 return OK;
1454 }
1455
1456
1457
1458
1459 /*************************************************
1460 * Close down a TLS session *
1461 *************************************************/
1462
1463 /* This is also called from within a delivery subprocess forked from the
1464 daemon, to shut down the TLS library, without actually doing a shutdown (which
1465 would tamper with the TLS session in the parent process).
1466
1467 Arguments: TRUE if gnutls_bye is to be called
1468 Returns: nothing
1469 */
1470
1471 void
1472 tls_close(BOOL shutdown)
1473 {
1474 exim_gnutls_state_st *state = current_global_tls_state;
1475
1476 if (tls_active < 0) return; /* TLS was not active */
1477
1478 if (shutdown)
1479 {
1480 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS\n");
1481 gnutls_bye(state->session, GNUTLS_SHUT_WR);
1482 }
1483
1484 gnutls_deinit(state->session);
1485
1486 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1487
1488 if ((state_server.session == NULL) && (state_client.session == NULL))
1489 {
1490 gnutls_global_deinit();
1491 exim_gnutls_base_init_done = FALSE;
1492 }
1493
1494 tls_active = -1;
1495 }
1496
1497
1498
1499
1500 /*************************************************
1501 * TLS version of getc *
1502 *************************************************/
1503
1504 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
1505 it refills the buffer via the GnuTLS reading function.
1506
1507 This feeds DKIM and should be used for all message-body reads.
1508
1509 Arguments: none
1510 Returns: the next character or EOF
1511 */
1512
1513 int
1514 tls_getc(void)
1515 {
1516 exim_gnutls_state_st *state = current_global_tls_state;
1517 if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
1518 {
1519 ssize_t inbytes;
1520
1521 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
1522 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
1523
1524 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
1525 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
1526 ssl_xfer_buffer_size);
1527 alarm(0);
1528
1529 /* A zero-byte return appears to mean that the TLS session has been
1530 closed down, not that the socket itself has been closed down. Revert to
1531 non-TLS handling. */
1532
1533 if (inbytes == 0)
1534 {
1535 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1536
1537 receive_getc = smtp_getc;
1538 receive_ungetc = smtp_ungetc;
1539 receive_feof = smtp_feof;
1540 receive_ferror = smtp_ferror;
1541 receive_smtp_buffered = smtp_buffered;
1542
1543 gnutls_deinit(state->session);
1544 state->session = NULL;
1545 tls_active = -1;
1546 tls_bits = 0;
1547 tls_certificate_verified = FALSE;
1548 tls_channelbinding_b64 = NULL;
1549 tls_cipher = NULL;
1550 tls_peerdn = NULL;
1551
1552 return smtp_getc();
1553 }
1554
1555 /* Handle genuine errors */
1556
1557 else if (inbytes < 0)
1558 {
1559 record_io_error(state, (int) inbytes, US"recv", NULL);
1560 state->xfer_error = 1;
1561 return EOF;
1562 }
1563 #ifndef DISABLE_DKIM
1564 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
1565 #endif
1566 state->xfer_buffer_hwm = (int) inbytes;
1567 state->xfer_buffer_lwm = 0;
1568 }
1569
1570 /* Something in the buffer; return next uschar */
1571
1572 return state->xfer_buffer[state->xfer_buffer_lwm++];
1573 }
1574
1575
1576
1577
1578 /*************************************************
1579 * Read bytes from TLS channel *
1580 *************************************************/
1581
1582 /* This does not feed DKIM, so if the caller uses this for reading message body,
1583 then the caller must feed DKIM.
1584 Arguments:
1585 buff buffer of data
1586 len size of buffer
1587
1588 Returns: the number of bytes read
1589 -1 after a failed read
1590 */
1591
1592 int
1593 tls_read(uschar *buff, size_t len)
1594 {
1595 exim_gnutls_state_st *state = current_global_tls_state;
1596 ssize_t inbytes;
1597
1598 if (len > INT_MAX)
1599 len = INT_MAX;
1600
1601 if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
1602 DEBUG(D_tls)
1603 debug_printf("*** PROBABLY A BUG *** " \
1604 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
1605 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
1606
1607 DEBUG(D_tls)
1608 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
1609 state->session, buff, len);
1610
1611 inbytes = gnutls_record_recv(state->session, buff, len);
1612 if (inbytes > 0) return inbytes;
1613 if (inbytes == 0)
1614 {
1615 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1616 }
1617 else record_io_error(state, (int)inbytes, US"recv", NULL);
1618
1619 return -1;
1620 }
1621
1622
1623
1624
1625 /*************************************************
1626 * Write bytes down TLS channel *
1627 *************************************************/
1628
1629 /*
1630 Arguments:
1631 buff buffer of data
1632 len number of bytes
1633
1634 Returns: the number of bytes after a successful write,
1635 -1 after a failed write
1636 */
1637
1638 int
1639 tls_write(const uschar *buff, size_t len)
1640 {
1641 ssize_t outbytes;
1642 size_t left = len;
1643 exim_gnutls_state_st *state = current_global_tls_state;
1644
1645 DEBUG(D_tls) debug_printf("tls_do_write(%p, " SIZE_T_FMT ")\n", buff, left);
1646 while (left > 0)
1647 {
1648 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
1649 buff, left);
1650 outbytes = gnutls_record_send(state->session, buff, left);
1651
1652 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
1653 if (outbytes < 0)
1654 {
1655 record_io_error(state, outbytes, US"send", NULL);
1656 return -1;
1657 }
1658 if (outbytes == 0)
1659 {
1660 record_io_error(state, 0, US"send", US"TLS channel closed on write");
1661 return -1;
1662 }
1663
1664 left -= outbytes;
1665 buff += outbytes;
1666 }
1667
1668 if (len > INT_MAX)
1669 {
1670 DEBUG(D_tls)
1671 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
1672 len);
1673 len = INT_MAX;
1674 }
1675
1676 return (int) len;
1677 }
1678
1679
1680
1681
1682 /*************************************************
1683 * Random number generation *
1684 *************************************************/
1685
1686 /* Pseudo-random number generation. The result is not expected to be
1687 cryptographically strong but not so weak that someone will shoot themselves
1688 in the foot using it as a nonce in input in some email header scheme or
1689 whatever weirdness they'll twist this into. The result should handle fork()
1690 and avoid repeating sequences. OpenSSL handles that for us.
1691
1692 Arguments:
1693 max range maximum
1694 Returns a random number in range [0, max-1]
1695 */
1696
1697 #ifdef HAVE_GNUTLS_RND
1698 int
1699 vaguely_random_number(int max)
1700 {
1701 unsigned int r;
1702 int i, needed_len;
1703 uschar *p;
1704 uschar smallbuf[sizeof(r)];
1705
1706 if (max <= 1)
1707 return 0;
1708
1709 needed_len = sizeof(r);
1710 /* Don't take 8 times more entropy than needed if int is 8 octets and we were
1711 * asked for a number less than 10. */
1712 for (r = max, i = 0; r; ++i)
1713 r >>= 1;
1714 i = (i + 7) / 8;
1715 if (i < needed_len)
1716 needed_len = i;
1717
1718 i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
1719 if (i < 0)
1720 {
1721 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
1722 return vaguely_random_number_fallback(max);
1723 }
1724 r = 0;
1725 for (p = smallbuf; needed_len; --needed_len, ++p)
1726 {
1727 r *= 256;
1728 r += *p;
1729 }
1730
1731 /* We don't particularly care about weighted results; if someone wants
1732 * smooth distribution and cares enough then they should submit a patch then. */
1733 return r % max;
1734 }
1735 #else /* HAVE_GNUTLS_RND */
1736 int
1737 vaguely_random_number(int max)
1738 {
1739 return vaguely_random_number_fallback(max);
1740 }
1741 #endif /* HAVE_GNUTLS_RND */
1742
1743
1744
1745
1746 /*************************************************
1747 * Report the library versions. *
1748 *************************************************/
1749
1750 /* See a description in tls-openssl.c for an explanation of why this exists.
1751
1752 Arguments: a FILE* to print the results to
1753 Returns: nothing
1754 */
1755
1756 void
1757 tls_version_report(FILE *f)
1758 {
1759 fprintf(f, "Library version: GnuTLS: Compile: %s\n"
1760 " Runtime: %s\n",
1761 LIBGNUTLS_VERSION,
1762 gnutls_check_version(NULL));
1763 }
1764
1765 /* End of tls-gnu.c */