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