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