Insert new JH/02 entry for the ACL clean-up
[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
17c76198 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
361Argument:
362 host NULL for server, server for client (for error handling)
363
364Returns: OK/DEFER/FAIL
365*/
366
367static int
17c76198 368init_server_dh(void)
059ec3d9 369{
17c76198
PP
370int fd, rc;
371unsigned int dh_bits;
b5aea5e1 372gnutls_datum m;
17c76198
PP
373uschar filename[PATH_MAX];
374size_t sz;
375host_item *host = NULL; /* dummy for macros */
059ec3d9 376
17c76198 377DEBUG(D_tls) debug_printf("Initialising GnuTLS server params.\n");
059ec3d9 378
17c76198
PP
379rc = gnutls_dh_params_init(&dh_server_params);
380exim_gnutls_err_check(US"gnutls_dh_params_init");
059ec3d9 381
af3498d6
PP
382#ifdef HAVE_GNUTLS_SEC_PARAM_CONSTANTS
383/* If you change this constant, also change dh_param_fn_ext so that we can use a
17c76198
PP
384different filename and ensure we have sufficient bits. */
385dh_bits = gnutls_sec_param_to_pk_bits(GNUTLS_PK_DH, GNUTLS_SEC_PARAM_NORMAL);
386if (!dh_bits)
387 return tls_error(US"gnutls_sec_param_to_pk_bits() failed", NULL, NULL);
af3498d6 388DEBUG(D_tls)
b34fc30c 389 debug_printf("GnuTLS tells us that for D-H PK, NORMAL is %d bits.\n",
af3498d6
PP
390 dh_bits);
391#else
392dh_bits = EXIM_SERVER_DH_BITS_PRE2_12;
393DEBUG(D_tls)
394 debug_printf("GnuTLS lacks gnutls_sec_param_to_pk_bits(), using %d bits.\n",
395 dh_bits);
396#endif
059ec3d9 397
17c76198 398if (!string_format(filename, sizeof(filename),
af3498d6 399 "%s/gnutls-params-%d", spool_directory, dh_bits))
17c76198 400 return tls_error(US"overlong filename", NULL, NULL);
059ec3d9 401
b5aea5e1 402/* Open the cache file for reading and if successful, read it and set up the
575643cd 403parameters. */
059ec3d9
PH
404
405fd = Uopen(filename, O_RDONLY, 0);
b5aea5e1 406if (fd >= 0)
059ec3d9 407 {
b5aea5e1 408 struct stat statbuf;
17c76198
PP
409 FILE *fp;
410 int saved_errno;
411
412 if (fstat(fd, &statbuf) < 0) /* EIO */
413 {
414 saved_errno = errno;
415 (void)close(fd);
416 return tls_error(US"TLS cache stat failed", strerror(saved_errno), NULL);
417 }
418 if (!S_ISREG(statbuf.st_mode))
b5aea5e1
PH
419 {
420 (void)close(fd);
17c76198
PP
421 return tls_error(US"TLS cache not a file", NULL, NULL);
422 }
423 fp = fdopen(fd, "rb");
424 if (!fp)
425 {
426 saved_errno = errno;
427 (void)close(fd);
428 return tls_error(US"fdopen(TLS cache stat fd) failed",
429 strerror(saved_errno), NULL);
b5aea5e1 430 }
059ec3d9 431
b5aea5e1
PH
432 m.size = statbuf.st_size;
433 m.data = malloc(m.size);
434 if (m.data == NULL)
17c76198
PP
435 {
436 fclose(fp);
437 return tls_error(US"malloc failed", strerror(errno), NULL);
438 }
439 sz = fread(m.data, m.size, 1, fp);
440 if (!sz)
441 {
442 saved_errno = errno;
443 fclose(fp);
444 free(m.data);
445 return tls_error(US"fread failed", strerror(saved_errno), NULL);
446 }
447 fclose(fp);
b5aea5e1 448
17c76198 449 rc = gnutls_dh_params_import_pkcs3(dh_server_params, &m, GNUTLS_X509_FMT_PEM);
b5aea5e1 450 free(m.data);
17c76198
PP
451 exim_gnutls_err_check(US"gnutls_dh_params_import_pkcs3");
452 DEBUG(D_tls) debug_printf("read D-H parameters from file \"%s\"\n", filename);
b5aea5e1
PH
453 }
454
455/* If the file does not exist, fall through to compute new data and cache it.
456If there was any other opening error, it is serious. */
457
182ad5cf
PH
458else if (errno == ENOENT)
459 {
17c76198 460 rc = -1;
182ad5cf 461 DEBUG(D_tls)
17c76198 462 debug_printf("D-H parameter cache file \"%s\" does not exist\n", filename);
182ad5cf
PH
463 }
464else
17c76198
PP
465 return tls_error(string_open_failed(errno, "\"%s\" for reading", filename),
466 NULL, NULL);
b5aea5e1
PH
467
468/* If ret < 0, either the cache file does not exist, or the data it contains
469is not useful. One particular case of this is when upgrading from an older
470release of Exim in which the data was stored in a different format. We don't
471try to be clever and support both formats; we just regenerate new data in this
472case. */
473
17c76198 474if (rc < 0)
b5aea5e1 475 {
17c76198 476 uschar *temp_fn;
059ec3d9 477
17c76198
PP
478 if ((PATH_MAX - Ustrlen(filename)) < 10)
479 return tls_error(US"Filename too long to generate replacement",
480 CS filename, NULL);
059ec3d9 481
17c76198
PP
482 temp_fn = string_copy(US "%s.XXXXXXX");
483 fd = mkstemp(CS temp_fn); /* modifies temp_fn */
059ec3d9 484 if (fd < 0)
17c76198 485 return tls_error(US"Unable to open temp file", strerror(errno), NULL);
059ec3d9
PH
486 (void)fchown(fd, exim_uid, exim_gid); /* Probably not necessary */
487
17c76198
PP
488 DEBUG(D_tls) debug_printf("generating %d bits Diffie-Hellman key ...\n", dh_bits);
489 rc = gnutls_dh_params_generate2(dh_server_params, dh_bits);
490 exim_gnutls_err_check(US"gnutls_dh_params_generate2");
491
492 /* gnutls_dh_params_export_pkcs3() will tell us the exact size, every time,
493 and I confirmed that a NULL call to get the size first is how the GnuTLS
494 sample apps handle this. */
495
496 sz = 0;
497 m.data = NULL;
498 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
499 m.data, &sz);
500 if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
501 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3(NULL) sizing");
502 m.size = sz;
b5aea5e1
PH
503 m.data = malloc(m.size);
504 if (m.data == NULL)
17c76198
PP
505 return tls_error(US"memory allocation failed", strerror(errno), NULL);
506 rc = gnutls_dh_params_export_pkcs3(dh_server_params, GNUTLS_X509_FMT_PEM,
507 m.data, &sz);
508 if (rc != GNUTLS_E_SUCCESS)
509 {
510 free(m.data);
511 exim_gnutls_err_check(US"gnutls_dh_params_export_pkcs3() real");
512 }
059ec3d9 513
17c76198
PP
514 sz = write_to_fd_buf(fd, m.data, (size_t) m.size);
515 if (sz != m.size)
516 {
517 free(m.data);
518 return tls_error(US"TLS cache write D-H params failed",
519 strerror(errno), NULL);
520 }
b5aea5e1 521 free(m.data);
17c76198
PP
522 sz = write_to_fd_buf(fd, US"\n", 1);
523 if (sz != 1)
524 return tls_error(US"TLS cache write D-H params final newline failed",
525 strerror(errno), NULL);
526
527 rc = close(fd);
528 if (rc)
529 return tls_error(US"TLS cache write close() failed",
530 strerror(errno), NULL);
059ec3d9 531
17c76198
PP
532 if (Urename(temp_fn, filename) < 0)
533 return tls_error(string_sprintf("failed to rename \"%s\" as \"%s\"",
534 temp_fn, filename), strerror(errno), NULL);
059ec3d9 535
17c76198 536 DEBUG(D_tls) debug_printf("wrote D-H parameters to file \"%s\"\n", filename);
059ec3d9
PH
537 }
538
17c76198 539DEBUG(D_tls) debug_printf("initialized server D-H parameters\n");
059ec3d9
PH
540return OK;
541}
542
543
544
545
546/*************************************************
17c76198 547* Variables re-expanded post-SNI *
059ec3d9
PH
548*************************************************/
549
17c76198
PP
550/* Called from both server and client code, via tls_init(), and also from
551the SNI callback after receiving an SNI, if tls_certificate includes "tls_sni".
552
553We can tell the two apart by state->received_sni being non-NULL in callback.
554
555The callback should not call us unless state->trigger_sni_changes is true,
556which we are responsible for setting on the first pass through.
059ec3d9
PH
557
558Arguments:
17c76198 559 state exim_gnutls_state_st *
059ec3d9
PH
560
561Returns: OK/DEFER/FAIL
562*/
563
564static int
17c76198 565tls_expand_session_files(exim_gnutls_state_st *state)
059ec3d9 566{
1365611d 567struct stat statbuf;
059ec3d9 568int rc;
17c76198
PP
569const host_item *host = state->host; /* macro should be reconsidered? */
570uschar *saved_tls_certificate = NULL;
571uschar *saved_tls_privatekey = NULL;
572uschar *saved_tls_verify_certificates = NULL;
573uschar *saved_tls_crl = NULL;
574int cert_count;
575
576/* We check for tls_sni *before* expansion. */
577if (!state->host)
578 {
579 if (!state->received_sni)
580 {
581 if (Ustrstr(state->tls_certificate, US"tls_sni"))
582 {
583 DEBUG(D_tls) debug_printf("We will re-expand TLS session files if we receive SNI.\n");
584 state->trigger_sni_changes = TRUE;
585 }
586 }
587 else
588 {
1365611d 589 /* useful for debugging */
17c76198
PP
590 saved_tls_certificate = state->exp_tls_certificate;
591 saved_tls_privatekey = state->exp_tls_privatekey;
592 saved_tls_verify_certificates = state->exp_tls_verify_certificates;
593 saved_tls_crl = state->exp_tls_crl;
594 }
595 }
059ec3d9 596
1365611d
PP
597rc = gnutls_certificate_allocate_credentials(&state->x509_cred);
598exim_gnutls_err_check(US"gnutls_certificate_allocate_credentials");
599
17c76198
PP
600/* remember: expand_check_tlsvar() is expand_check() but fiddling with
601state members, assuming consistent naming; and expand_check() returns
602false if expansion failed, unless expansion was forced to fail. */
059ec3d9 603
17c76198
PP
604/* check if we at least have a certificate, before doing expensive
605D-H generation. */
059ec3d9 606
17c76198
PP
607if (!expand_check_tlsvar(tls_certificate))
608 return DEFER;
059ec3d9 609
17c76198 610/* certificate is mandatory in server, optional in client */
059ec3d9 611
17c76198
PP
612if ((state->exp_tls_certificate == NULL) ||
613 (*state->exp_tls_certificate == '\0'))
614 {
615 if (state->host == NULL)
616 return tls_error(US"no TLS server certificate is specified", NULL, NULL);
617 else
618 DEBUG(D_tls) debug_printf("TLS: no client certificate specified; okay\n");
619 }
059ec3d9 620
17c76198 621if (state->tls_privatekey && !expand_check_tlsvar(tls_privatekey))
059ec3d9
PH
622 return DEFER;
623
17c76198
PP
624/* tls_privatekey is optional, defaulting to same file as certificate */
625
626if (state->tls_privatekey == NULL || *state->tls_privatekey == '\0')
059ec3d9 627 {
17c76198
PP
628 state->tls_privatekey = state->tls_certificate;
629 state->exp_tls_privatekey = state->exp_tls_certificate;
059ec3d9 630 }
c91535f3 631
059ec3d9 632
17c76198 633if (state->exp_tls_certificate && *state->exp_tls_certificate)
059ec3d9
PH
634 {
635 DEBUG(D_tls) debug_printf("certificate file = %s\nkey file = %s\n",
17c76198
PP
636 state->exp_tls_certificate, state->exp_tls_privatekey);
637
638 if (state->received_sni)
de365ded 639 {
17c76198
PP
640 if ((Ustrcmp(state->exp_tls_certificate, saved_tls_certificate) == 0) &&
641 (Ustrcmp(state->exp_tls_privatekey, saved_tls_privatekey) == 0))
642 {
b34fc30c 643 DEBUG(D_tls) debug_printf("TLS SNI: cert and key unchanged\n");
17c76198
PP
644 }
645 else
646 {
b34fc30c 647 DEBUG(D_tls) debug_printf("TLS SNI: have a changed cert/key pair.\n");
17c76198 648 }
8e669ac1 649 }
059ec3d9 650
1365611d
PP
651 rc = gnutls_certificate_set_x509_key_file(state->x509_cred,
652 CS state->exp_tls_certificate, CS state->exp_tls_privatekey,
653 GNUTLS_X509_FMT_PEM);
654 exim_gnutls_err_check(
655 string_sprintf("cert/key setup: cert=%s key=%s",
656 state->exp_tls_certificate, state->exp_tls_privatekey));
657 DEBUG(D_tls) debug_printf("TLS: cert/key registered\n");
b34fc30c 658 } /* tls_certificate */
059ec3d9
PH
659
660/* Set the trusted CAs file if one is provided, and then add the CRL if one is
661provided. Experiment shows that, if the certificate file is empty, an unhelpful
662error message is provided. However, if we just refrain from setting anything up
663in that case, certificate verification fails, which seems to be the correct
664behaviour. */
665
17c76198 666if (state->tls_verify_certificates && *state->tls_verify_certificates)
059ec3d9 667 {
17c76198 668 if (!expand_check_tlsvar(tls_verify_certificates))
059ec3d9 669 return DEFER;
17c76198
PP
670 if (state->tls_crl && *state->tls_crl)
671 if (!expand_check_tlsvar(tls_crl))
672 return DEFER;
059ec3d9 673
1365611d
PP
674 if (!(state->exp_tls_verify_certificates &&
675 *state->exp_tls_verify_certificates))
b34fc30c
PP
676 {
677 DEBUG(D_tls)
1365611d
PP
678 debug_printf("TLS: tls_verify_certificates expanded empty, ignoring\n");
679 /* With no tls_verify_certificates, we ignore tls_crl too */
17c76198 680 return OK;
b34fc30c 681 }
1365611d 682 }
83e2f8a2
PP
683else
684 {
685 DEBUG(D_tls)
686 debug_printf("TLS: tls_verify_certificates not set or empty, ignoring\n");
687 return OK;
688 }
17c76198 689
1365611d
PP
690if (Ustat(state->exp_tls_verify_certificates, &statbuf) < 0)
691 {
692 log_write(0, LOG_MAIN|LOG_PANIC, "could not stat %s "
693 "(tls_verify_certificates): %s", state->exp_tls_verify_certificates,
694 strerror(errno));
695 return DEFER;
696 }
17c76198 697
1365611d
PP
698if (!S_ISREG(statbuf.st_mode))
699 {
700 DEBUG(D_tls)
701 debug_printf("verify certificates path is not a file: \"%s\"\n%s\n",
702 state->exp_tls_verify_certificates,
703 S_ISDIR(statbuf.st_mode)
704 ? " it's a directory, that's OpenSSL, this is GnuTLS"
705 : " (not a directory either)");
706 log_write(0, LOG_MAIN|LOG_PANIC,
707 "tls_verify_certificates \"%s\" is not a file",
708 state->exp_tls_verify_certificates);
709 return DEFER;
710 }
059ec3d9 711
1365611d
PP
712DEBUG(D_tls) debug_printf("verify certificates = %s size=" OFF_T_FMT "\n",
713 state->exp_tls_verify_certificates, statbuf.st_size);
059ec3d9 714
1365611d
PP
715if (statbuf.st_size == 0)
716 {
717 DEBUG(D_tls)
718 debug_printf("cert file empty, no certs, no verification, ignoring any CRL\n");
719 return OK;
720 }
059ec3d9 721
1365611d
PP
722cert_count = gnutls_certificate_set_x509_trust_file(state->x509_cred,
723 CS state->exp_tls_verify_certificates, GNUTLS_X509_FMT_PEM);
724if (cert_count < 0)
725 {
726 rc = cert_count;
727 exim_gnutls_err_check(US"gnutls_certificate_set_x509_trust_file");
728 }
729DEBUG(D_tls) debug_printf("Added %d certificate authorities.\n", cert_count);
059ec3d9 730
1365611d
PP
731if (state->tls_crl && *state->tls_crl)
732 {
733 if (state->exp_tls_crl && *state->exp_tls_crl)
734 {
735 DEBUG(D_tls) debug_printf("loading CRL file = %s\n", state->exp_tls_crl);
736 rc = gnutls_certificate_set_x509_crl_file(state->x509_cred,
737 CS state->exp_tls_crl, GNUTLS_X509_FMT_PEM);
738 exim_gnutls_err_check(US"gnutls_certificate_set_x509_crl_file");
739 }
740 }
059ec3d9 741
059ec3d9
PH
742return OK;
743}
744
745
746
747
1365611d
PP
748/*************************************************
749* Set X.509 state variables *
750*************************************************/
751
752/* In GnuTLS, the registered cert/key are not replaced by a later
753set of a cert/key, so for SNI support we need a whole new x509_cred
754structure. Which means various other non-re-expanded pieces of state
755need to be re-set in the new struct, so the setting logic is pulled
756out to this.
757
758Arguments:
759 state exim_gnutls_state_st *
760
761Returns: OK/DEFER/FAIL
762*/
763
764static int
765tls_set_remaining_x509(exim_gnutls_state_st *state)
766{
767int rc;
768const host_item *host = state->host; /* macro should be reconsidered? */
769
770/* Create D-H parameters, or read them from the cache file. This function does
771its own SMTP error messaging. This only happens for the server, TLS D-H ignores
772client-side params. */
773
774if (!state->host)
775 {
776 if (!dh_server_params)
777 {
778 rc = init_server_dh();
779 if (rc != OK) return rc;
780 }
781 gnutls_certificate_set_dh_params(state->x509_cred, dh_server_params);
782 }
783
784/* Link the credentials to the session. */
785
786rc = gnutls_credentials_set(state->session, GNUTLS_CRD_CERTIFICATE, state->x509_cred);
787exim_gnutls_err_check(US"gnutls_credentials_set");
788
789return OK;
790}
791
059ec3d9 792/*************************************************
17c76198 793* Initialize for GnuTLS *
059ec3d9
PH
794*************************************************/
795
17c76198
PP
796/* Called from both server and client code. In the case of a server, errors
797before actual TLS negotiation return DEFER.
059ec3d9
PH
798
799Arguments:
17c76198
PP
800 host connected host, if client; NULL if server
801 certificate certificate file
802 privatekey private key file
803 sni TLS SNI to send, sometimes when client; else NULL
804 cas CA certs file
805 crl CRL file
806 require_ciphers tls_require_ciphers setting
059ec3d9 807
17c76198 808Returns: OK/DEFER/FAIL
059ec3d9
PH
809*/
810
17c76198
PP
811static int
812tls_init(
813 const host_item *host,
814 const uschar *certificate,
815 const uschar *privatekey,
816 const uschar *sni,
817 const uschar *cas,
818 const uschar *crl,
819 const uschar *require_ciphers,
820 exim_gnutls_state_st **caller_state)
059ec3d9 821{
17c76198
PP
822exim_gnutls_state_st *state;
823int rc;
824size_t sz;
825const char *errpos;
826uschar *p;
827BOOL want_default_priorities;
828
829if (!exim_gnutls_base_init_done)
059ec3d9 830 {
17c76198
PP
831 DEBUG(D_tls) debug_printf("GnuTLS global init required.\n");
832
833 rc = gnutls_global_init();
834 exim_gnutls_err_check(US"gnutls_global_init");
835
836#if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
837 DEBUG(D_tls)
059ec3d9 838 {
17c76198
PP
839 gnutls_global_set_log_function(exim_gnutls_logger_cb);
840 /* arbitrarily chosen level; bump upto 9 for more */
841 gnutls_global_set_log_level(EXIM_GNUTLS_LIBRARY_LOG_LEVEL);
059ec3d9 842 }
17c76198
PP
843#endif
844
845 exim_gnutls_base_init_done = TRUE;
059ec3d9 846 }
059ec3d9 847
17c76198
PP
848if (host)
849 {
850 state = &state_client;
851 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
852 DEBUG(D_tls) debug_printf("initialising GnuTLS client session\n");
853 rc = gnutls_init(&state->session, GNUTLS_CLIENT);
854 }
855else
856 {
857 state = &state_server;
858 memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
859 DEBUG(D_tls) debug_printf("initialising GnuTLS server session\n");
860 rc = gnutls_init(&state->session, GNUTLS_SERVER);
861 }
862exim_gnutls_err_check(US"gnutls_init");
059ec3d9 863
17c76198 864state->host = host;
059ec3d9 865
17c76198
PP
866state->tls_certificate = certificate;
867state->tls_privatekey = privatekey;
868state->tls_sni = sni;
869state->tls_verify_certificates = cas;
870state->tls_crl = crl;
059ec3d9 871
17c76198
PP
872/* This handles the variables that might get re-expanded after TLS SNI;
873that's tls_certificate, tls_privatekey, tls_verify_certificates, tls_crl */
059ec3d9 874
17c76198
PP
875DEBUG(D_tls)
876 debug_printf("Expanding various TLS configuration options for session credentials.\n");
877rc = tls_expand_session_files(state);
878if (rc != OK) return rc;
059ec3d9 879
1365611d
PP
880/* These are all other parts of the x509_cred handling, since SNI in GnuTLS
881requires a new structure afterwards. */
83da1223 882
1365611d
PP
883rc = tls_set_remaining_x509(state);
884if (rc != OK) return rc;
83da1223 885
17c76198
PP
886/* set SNI in client, only */
887if (host)
888 {
889 if (!expand_check_tlsvar(tls_sni))
890 return DEFER;
891 if (state->exp_tls_sni && *state->exp_tls_sni)
892 {
893 DEBUG(D_tls)
894 debug_printf("Setting TLS client SNI to \"%s\"\n", state->exp_tls_sni);
895 sz = Ustrlen(state->exp_tls_sni);
896 rc = gnutls_server_name_set(state->session,
897 GNUTLS_NAME_DNS, state->exp_tls_sni, sz);
898 exim_gnutls_err_check(US"gnutls_server_name_set");
899 }
900 }
901else if (state->tls_sni)
902 DEBUG(D_tls) debug_printf("*** PROBABLY A BUG *** " \
903 "have an SNI set for a client [%s]\n", state->tls_sni);
83da1223 904
17c76198
PP
905/* This is the priority string support,
906http://www.gnu.org/software/gnutls/manual/html_node/Priority-Strings.html
907and replaces gnutls_require_kx, gnutls_require_mac & gnutls_require_protocols.
908This was backwards incompatible, but means Exim no longer needs to track
909all algorithms and provide string forms for them. */
83da1223 910
17c76198 911want_default_priorities = TRUE;
83da1223 912
17c76198 913if (state->tls_require_ciphers && *state->tls_require_ciphers)
83da1223 914 {
17c76198
PP
915 if (!expand_check_tlsvar(tls_require_ciphers))
916 return DEFER;
917 if (state->exp_tls_require_ciphers && *state->exp_tls_require_ciphers)
83da1223 918 {
17c76198
PP
919 DEBUG(D_tls) debug_printf("GnuTLS session cipher/priority \"%s\"\n",
920 state->exp_tls_require_ciphers);
921
922 rc = gnutls_priority_init(&state->priority_cache,
923 CS state->exp_tls_require_ciphers, &errpos);
924 want_default_priorities = FALSE;
925 p = state->exp_tls_require_ciphers;
83da1223
PH
926 }
927 }
17c76198
PP
928if (want_default_priorities)
929 {
83e2f8a2
PP
930 DEBUG(D_tls)
931 debug_printf("GnuTLS using default session cipher/priority \"%s\"\n",
932 exim_default_gnutls_priority);
17c76198
PP
933 rc = gnutls_priority_init(&state->priority_cache,
934 exim_default_gnutls_priority, &errpos);
935 p = US exim_default_gnutls_priority;
936 }
83da1223 937
17c76198
PP
938exim_gnutls_err_check(string_sprintf(
939 "gnutls_priority_init(%s) failed at offset %ld, \"%.6s..\"",
940 p, errpos - CS p, errpos));
941
942rc = gnutls_priority_set(state->session, state->priority_cache);
943exim_gnutls_err_check(US"gnutls_priority_set");
944
945gnutls_db_set_cache_expiration(state->session, ssl_session_timeout);
946
947/* Reduce security in favour of increased compatibility, if the admin
948decides to make that trade-off. */
949if (gnutls_compat_mode)
83da1223 950 {
17c76198
PP
951#if LIBGNUTLS_VERSION_NUMBER >= 0x020104
952 DEBUG(D_tls) debug_printf("lowering GnuTLS security, compatibility mode\n");
953 gnutls_session_enable_compatibility_mode(state->session);
954#else
955 DEBUG(D_tls) debug_printf("Unable to set gnutls_compat_mode - GnuTLS version too old\n");
956#endif
83da1223
PH
957 }
958
17c76198
PP
959*caller_state = state;
960/* needs to happen before callbacks during handshake */
961current_global_tls_state = state;
962return OK;
83da1223
PH
963}
964
965
966
967
059ec3d9 968/*************************************************
17c76198 969* Extract peer information *
059ec3d9
PH
970*************************************************/
971
17c76198 972/* Called from both server and client code.
4fe99a6c
PP
973Only this is allowed to set state->peerdn and state->have_set_peerdn
974and we use that to detect double-calls.
059ec3d9 975
75fe387d
PP
976NOTE: the state blocks last while the TLS connection is up, which is fine
977for logging in the server side, but for the client side, we log after teardown
978in src/deliver.c. While the session is up, we can twist about states and
979repoint tls_* globals, but those variables used for logging or other variable
980expansion that happens _after_ delivery need to have a longer life-time.
981
982So for those, we get the data from POOL_PERM; the re-invoke guard keeps us from
983doing this more than once per generation of a state context. We set them in
984the state context, and repoint tls_* to them. After the state goes away, the
985tls_* copies of the pointers remain valid and client delivery logging is happy.
986
987tls_certificate_verified is a BOOL, so the tls_peerdn and tls_cipher issues
988don't apply.
989
059ec3d9 990Arguments:
17c76198 991 state exim_gnutls_state_st *
059ec3d9 992
17c76198 993Returns: OK/DEFER/FAIL
059ec3d9
PH
994*/
995
17c76198
PP
996static int
997peer_status(exim_gnutls_state_st *state)
059ec3d9 998{
75fe387d 999uschar cipherbuf[256];
17c76198 1000const gnutls_datum *cert_list;
75fe387d 1001int old_pool, rc;
17c76198 1002unsigned int cert_list_size = 0;
4fe99a6c
PP
1003gnutls_protocol_t protocol;
1004gnutls_cipher_algorithm_t cipher;
1005gnutls_kx_algorithm_t kx;
1006gnutls_mac_algorithm_t mac;
17c76198
PP
1007gnutls_certificate_type_t ct;
1008gnutls_x509_crt_t crt;
4fe99a6c 1009uschar *p, *dn_buf;
17c76198 1010size_t sz;
059ec3d9 1011
4fe99a6c 1012if (state->have_set_peerdn)
17c76198 1013 return OK;
4fe99a6c 1014state->have_set_peerdn = TRUE;
059ec3d9 1015
4fe99a6c 1016state->peerdn = NULL;
059ec3d9 1017
4fe99a6c
PP
1018/* tls_cipher */
1019cipher = gnutls_cipher_get(state->session);
1020protocol = gnutls_protocol_get_version(state->session);
1021mac = gnutls_mac_get(state->session);
1022kx = gnutls_kx_get(state->session);
1023
75fe387d 1024string_format(cipherbuf, sizeof(cipherbuf),
4fe99a6c
PP
1025 "%s:%s:%d",
1026 gnutls_protocol_get_name(protocol),
1027 gnutls_cipher_suite_get_name(kx, cipher, mac),
1028 (int) gnutls_cipher_get_key_size(cipher) * 8);
1029
1030/* I don't see a way that spaces could occur, in the current GnuTLS
1031code base, but it was a concern in the old code and perhaps older GnuTLS
1032releases did return "TLS 1.0"; play it safe, just in case. */
75fe387d 1033for (p = cipherbuf; *p != '\0'; ++p)
4fe99a6c
PP
1034 if (isspace(*p))
1035 *p = '-';
75fe387d
PP
1036old_pool = store_pool;
1037store_pool = POOL_PERM;
1038state->ciphersuite = string_copy(cipherbuf);
1039store_pool = old_pool;
1040tls_cipher = state->ciphersuite;
4fe99a6c
PP
1041
1042/* tls_peerdn */
17c76198 1043cert_list = gnutls_certificate_get_peers(state->session, &cert_list_size);
83da1223 1044
17c76198
PP
1045if (cert_list == NULL || cert_list_size == 0)
1046 {
17c76198
PP
1047 DEBUG(D_tls) debug_printf("TLS: no certificate from peer (%p & %d)\n",
1048 cert_list, cert_list_size);
1049 if (state->verify_requirement == VERIFY_REQUIRED)
1050 return tls_error(US"certificate verification failed",
1051 "no certificate received from peer", state->host);
1052 return OK;
1053 }
059ec3d9 1054
17c76198
PP
1055ct = gnutls_certificate_type_get(state->session);
1056if (ct != GNUTLS_CRT_X509)
059ec3d9 1057 {
17c76198 1058 const char *ctn = gnutls_certificate_type_get_name(ct);
17c76198
PP
1059 DEBUG(D_tls)
1060 debug_printf("TLS: peer cert not X.509 but instead \"%s\"\n", ctn);
1061 if (state->verify_requirement == VERIFY_REQUIRED)
1062 return tls_error(US"certificate verification not possible, unhandled type",
1063 ctn, state->host);
1064 return OK;
83da1223 1065 }
059ec3d9 1066
17c76198
PP
1067#define exim_gnutls_peer_err(Label) do { \
1068 if (rc != GNUTLS_E_SUCCESS) { \
1069 DEBUG(D_tls) debug_printf("TLS: peer cert problem: %s: %s\n", (Label), gnutls_strerror(rc)); \
1070 if (state->verify_requirement == VERIFY_REQUIRED) { return tls_error((Label), gnutls_strerror(rc), state->host); } \
1071 return OK; } } while (0)
1072
1073rc = gnutls_x509_crt_init(&crt);
1074exim_gnutls_peer_err(US"gnutls_x509_crt_init (crt)");
1075
1076rc = gnutls_x509_crt_import(crt, &cert_list[0], GNUTLS_X509_FMT_DER);
1077exim_gnutls_peer_err(US"failed to import certificate [gnutls_x509_crt_import(cert 0)]");
1078sz = 0;
1079rc = gnutls_x509_crt_get_dn(crt, NULL, &sz);
1080if (rc != GNUTLS_E_SHORT_MEMORY_BUFFER)
83da1223 1081 {
17c76198
PP
1082 exim_gnutls_peer_err(US"getting size for cert DN failed");
1083 return FAIL; /* should not happen */
059ec3d9 1084 }
17c76198
PP
1085dn_buf = store_get_perm(sz);
1086rc = gnutls_x509_crt_get_dn(crt, CS dn_buf, &sz);
1087exim_gnutls_peer_err(US"failed to extract certificate DN [gnutls_x509_crt_get_dn(cert 0)]");
1088state->peerdn = dn_buf;
1089
1090return OK;
1091#undef exim_gnutls_peer_err
1092}
059ec3d9 1093
059ec3d9 1094
059ec3d9 1095
059ec3d9 1096
17c76198
PP
1097/*************************************************
1098* Verify peer certificate *
1099*************************************************/
059ec3d9 1100
17c76198
PP
1101/* Called from both server and client code.
1102*Should* be using a callback registered with
1103gnutls_certificate_set_verify_function() to fail the handshake if we dislike
1104the peer information, but that's too new for some OSes.
059ec3d9 1105
17c76198
PP
1106Arguments:
1107 state exim_gnutls_state_st *
1108 error where to put an error message
059ec3d9 1109
17c76198
PP
1110Returns:
1111 FALSE if the session should be rejected
1112 TRUE if the cert is okay or we just don't care
1113*/
059ec3d9 1114
17c76198
PP
1115static BOOL
1116verify_certificate(exim_gnutls_state_st *state, const char **error)
1117{
1118int rc;
1119unsigned int verify;
1120
1121*error = NULL;
1122
1123rc = peer_status(state);
1124if (rc != OK)
e6060e2c 1125 {
17c76198
PP
1126 verify = GNUTLS_CERT_INVALID;
1127 *error = "not supplied";
1128 }
1129else
1130 {
1131 rc = gnutls_certificate_verify_peers2(state->session, &verify);
e6060e2c
NM
1132 }
1133
17c76198
PP
1134/* Handle the result of verification. INVALID seems to be set as well
1135as REVOKED, but leave the test for both. */
059ec3d9 1136
17c76198
PP
1137if ((rc < 0) || (verify & (GNUTLS_CERT_INVALID|GNUTLS_CERT_REVOKED)) != 0)
1138 {
1139 state->peer_cert_verified = FALSE;
1140 if (*error == NULL)
1141 *error = ((verify & GNUTLS_CERT_REVOKED) != 0) ? "revoked" : "invalid";
059ec3d9 1142
17c76198
PP
1143 DEBUG(D_tls)
1144 debug_printf("TLS certificate verification failed (%s): peerdn=%s\n",
4fe99a6c 1145 *error, state->peerdn ? state->peerdn : US"<unset>");
059ec3d9 1146
17c76198
PP
1147 if (state->verify_requirement == VERIFY_REQUIRED)
1148 {
1149 gnutls_alert_send(state->session, GNUTLS_AL_FATAL, GNUTLS_A_BAD_CERTIFICATE);
1150 return FALSE;
1151 }
1152 DEBUG(D_tls)
1153 debug_printf("TLS verify failure overriden (host in tls_try_verify_hosts)\n");
1154 }
1155else
1156 {
1157 state->peer_cert_verified = TRUE;
4fe99a6c
PP
1158 DEBUG(D_tls) debug_printf("TLS certificate verified: peerdn=%s\n",
1159 state->peerdn ? state->peerdn : US"<unset>");
17c76198 1160 }
059ec3d9 1161
17c76198 1162tls_peerdn = state->peerdn;
059ec3d9 1163
17c76198
PP
1164return TRUE;
1165}
059ec3d9 1166
17c76198
PP
1167
1168
1169
1170/* ------------------------------------------------------------------------ */
1171/* Callbacks */
1172
1173/* Logging function which can be registered with
1174 * gnutls_global_set_log_function()
1175 * gnutls_global_set_log_level() 0..9
1176 */
af3498d6 1177#if EXIM_GNUTLS_LIBRARY_LOG_LEVEL >= 0
059ec3d9 1178static void
17c76198 1179exim_gnutls_logger_cb(int level, const char *message)
059ec3d9 1180{
17c76198
PP
1181 DEBUG(D_tls) debug_printf("GnuTLS<%d>: %s\n", level, message);
1182}
af3498d6 1183#endif
059ec3d9 1184
059ec3d9 1185
17c76198
PP
1186/* Called after client hello, should handle SNI work.
1187This will always set tls_sni (state->received_sni) if available,
1188and may trigger presenting different certificates,
1189if state->trigger_sni_changes is TRUE.
059ec3d9 1190
17c76198
PP
1191Should be registered with
1192 gnutls_handshake_set_post_client_hello_function()
059ec3d9 1193
17c76198
PP
1194"This callback must return 0 on success or a gnutls error code to terminate the
1195handshake.".
059ec3d9 1196
17c76198
PP
1197For inability to get SNI information, we return 0.
1198We only return non-zero if re-setup failed.
1199*/
44bbabb5 1200
17c76198
PP
1201static int
1202exim_sni_handling_cb(gnutls_session_t session)
1203{
1204char sni_name[MAX_HOST_LEN];
1205size_t data_len = MAX_HOST_LEN;
1206exim_gnutls_state_st *state = current_global_tls_state;
1207unsigned int sni_type;
1208int rc, old_pool;
1209
1210rc = gnutls_server_name_get(session, sni_name, &data_len, &sni_type, 0);
b34fc30c
PP
1211if (rc != GNUTLS_E_SUCCESS)
1212 {
1213 DEBUG(D_tls) {
1214 if (rc == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
1215 debug_printf("TLS: no SNI presented in handshake.\n");
1216 else
1217 debug_printf("TLS failure: gnutls_server_name_get(): %s [%d]\n",
1218 gnutls_strerror(rc), rc);
1219 };
1220 return 0;
1221 }
1222
17c76198
PP
1223if (sni_type != GNUTLS_NAME_DNS)
1224 {
1225 DEBUG(D_tls) debug_printf("TLS: ignoring SNI of unhandled type %u\n", sni_type);
1226 return 0;
1227 }
44bbabb5 1228
17c76198
PP
1229/* We now have a UTF-8 string in sni_name */
1230old_pool = store_pool;
1231store_pool = POOL_PERM;
1232state->received_sni = string_copyn(US sni_name, data_len);
1233store_pool = old_pool;
1234
1235/* We set this one now so that variable expansions below will work */
1236tls_sni = state->received_sni;
1237
1238DEBUG(D_tls) debug_printf("Received TLS SNI \"%s\"%s\n", sni_name,
1239 state->trigger_sni_changes ? "" : " (unused for certificate selection)");
1240
1241if (!state->trigger_sni_changes)
1242 return 0;
1243
1244rc = tls_expand_session_files(state);
1245if (rc != OK)
1246 {
1247 /* If the setup of certs/etc failed before handshake, TLS would not have
1248 been offered. The best we can do now is abort. */
1249 return GNUTLS_E_APPLICATION_ERROR_MIN;
1250 }
1251
1365611d
PP
1252rc = tls_set_remaining_x509(state);
1253if (rc != OK) return GNUTLS_E_APPLICATION_ERROR_MIN;
1254
1255return 0;
059ec3d9
PH
1256}
1257
1258
1259
17c76198
PP
1260
1261/* ------------------------------------------------------------------------ */
1262/* Exported functions */
1263
1264
1265
1266
059ec3d9
PH
1267/*************************************************
1268* Start a TLS session in a server *
1269*************************************************/
1270
1271/* This is called when Exim is running as a server, after having received
1272the STARTTLS command. It must respond to that command, and then negotiate
1273a TLS session.
1274
1275Arguments:
83da1223 1276 require_ciphers list of allowed ciphers or NULL
059ec3d9
PH
1277
1278Returns: OK on success
1279 DEFER for errors before the start of the negotiation
1280 FAIL for errors during the negotation; the server can't
1281 continue running.
1282*/
1283
1284int
17c76198 1285tls_server_start(const uschar *require_ciphers)
059ec3d9
PH
1286{
1287int rc;
7199e1ee 1288const char *error;
17c76198 1289exim_gnutls_state_st *state = NULL;
059ec3d9
PH
1290
1291/* Check for previous activation */
17c76198 1292/* nb: this will not be TLS callout safe, needs reworking as part of that. */
059ec3d9
PH
1293
1294if (tls_active >= 0)
1295 {
17c76198 1296 tls_error(US"STARTTLS received after TLS started", "", NULL);
059ec3d9
PH
1297 smtp_printf("554 Already in TLS\r\n");
1298 return FAIL;
1299 }
1300
1301/* Initialize the library. If it fails, it will already have logged the error
1302and sent an SMTP response. */
1303
17c76198 1304DEBUG(D_tls) debug_printf("initialising GnuTLS as a server\n");
059ec3d9 1305
17c76198
PP
1306rc = tls_init(NULL, tls_certificate, tls_privatekey,
1307 NULL, tls_verify_certificates, tls_crl,
1308 require_ciphers, &state);
059ec3d9
PH
1309if (rc != OK) return rc;
1310
059ec3d9
PH
1311/* If this is a host for which certificate verification is mandatory or
1312optional, set up appropriately. */
1313
059ec3d9 1314if (verify_check_host(&tls_verify_hosts) == OK)
17c76198
PP
1315 {
1316 DEBUG(D_tls) debug_printf("TLS: a client certificate will be required.\n");
1317 state->verify_requirement = VERIFY_REQUIRED;
1318 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1319 }
059ec3d9 1320else if (verify_check_host(&tls_try_verify_hosts) == OK)
17c76198
PP
1321 {
1322 DEBUG(D_tls) debug_printf("TLS: a client certificate will be requested but not required.\n");
1323 state->verify_requirement = VERIFY_OPTIONAL;
1324 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1325 }
1326else
1327 {
1328 DEBUG(D_tls) debug_printf("TLS: a client certificate will not be requested.\n");
1329 state->verify_requirement = VERIFY_NONE;
1330 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_IGNORE);
1331 }
059ec3d9 1332
17c76198
PP
1333/* Register SNI handling; always, even if not in tls_certificate, so that the
1334expansion variable $tls_sni is always available. */
059ec3d9 1335
17c76198
PP
1336gnutls_handshake_set_post_client_hello_function(state->session,
1337 exim_sni_handling_cb);
059ec3d9
PH
1338
1339/* Set context and tell client to go ahead, except in the case of TLS startup
1340on connection, where outputting anything now upsets the clients and tends to
1341make them disconnect. We need to have an explicit fflush() here, to force out
1342the response. Other smtp_printf() calls do not need it, because in non-TLS
1343mode, the fflush() happens when smtp_getc() is called. */
1344
1345if (!tls_on_connect)
1346 {
1347 smtp_printf("220 TLS go ahead\r\n");
1348 fflush(smtp_out);
1349 }
1350
1351/* Now negotiate the TLS session. We put our own timer on it, since it seems
1352that the GnuTLS library doesn't. */
1353
17c76198
PP
1354gnutls_transport_set_ptr2(state->session,
1355 (gnutls_transport_ptr)fileno(smtp_in),
1356 (gnutls_transport_ptr)fileno(smtp_out));
1357state->fd_in = fileno(smtp_in);
1358state->fd_out = fileno(smtp_out);
059ec3d9
PH
1359
1360sigalrm_seen = FALSE;
1361if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
17c76198
PP
1362do
1363 {
1364 rc = gnutls_handshake(state->session);
1365 } while ((rc == GNUTLS_E_AGAIN) || (rc == GNUTLS_E_INTERRUPTED));
059ec3d9
PH
1366alarm(0);
1367
17c76198 1368if (rc != GNUTLS_E_SUCCESS)
059ec3d9 1369 {
17c76198
PP
1370 tls_error(US"gnutls_handshake",
1371 sigalrm_seen ? "timed out" : gnutls_strerror(rc), NULL);
059ec3d9
PH
1372 /* It seems that, except in the case of a timeout, we have to close the
1373 connection right here; otherwise if the other end is running OpenSSL it hangs
1374 until the server times out. */
1375
1376 if (!sigalrm_seen)
1377 {
f1e894f3
PH
1378 (void)fclose(smtp_out);
1379 (void)fclose(smtp_in);
059ec3d9
PH
1380 }
1381
1382 return FAIL;
1383 }
1384
1385DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
1386
17c76198
PP
1387/* Verify after the fact */
1388
1389if (state->verify_requirement != VERIFY_NONE)
059ec3d9 1390 {
17c76198
PP
1391 if (!verify_certificate(state, &error))
1392 {
1393 if (state->verify_requirement == VERIFY_OPTIONAL)
1394 {
1395 DEBUG(D_tls)
1396 debug_printf("TLS: continuing on only because verification was optional, after: %s\n",
1397 error);
1398 }
1399 else
1400 {
1401 tls_error(US"certificate verification failed", error, NULL);
1402 return FAIL;
1403 }
1404 }
059ec3d9
PH
1405 }
1406
17c76198
PP
1407/* Figure out peer DN, and if authenticated, etc. */
1408
1409rc = peer_status(state);
1410if (rc != OK) return rc;
1411
1412/* Sets various Exim expansion variables; always safe within server */
1413
1414extract_exim_vars_from_tls_state(state);
059ec3d9
PH
1415
1416/* TLS has been set up. Adjust the input functions to read via TLS,
1417and initialize appropriately. */
1418
17c76198 1419state->xfer_buffer = store_malloc(ssl_xfer_buffer_size);
059ec3d9
PH
1420
1421receive_getc = tls_getc;
1422receive_ungetc = tls_ungetc;
1423receive_feof = tls_feof;
1424receive_ferror = tls_ferror;
58eb016e 1425receive_smtp_buffered = tls_smtp_buffered;
059ec3d9 1426
059ec3d9
PH
1427return OK;
1428}
1429
1430
1431
1432
1433/*************************************************
1434* Start a TLS session in a client *
1435*************************************************/
1436
1437/* Called from the smtp transport after STARTTLS has been accepted.
1438
1439Arguments:
1440 fd the fd of the connection
1441 host connected host (for messages)
83da1223 1442 addr the first address (not used)
17c76198 1443 dhparam DH parameter file (ignored, we're a client)
059ec3d9
PH
1444 certificate certificate file
1445 privatekey private key file
3f0945ff 1446 sni TLS SNI to send to remote host
059ec3d9
PH
1447 verify_certs file for certificate verify
1448 verify_crl CRL for verify
83da1223 1449 require_ciphers list of allowed ciphers or NULL
059ec3d9
PH
1450 timeout startup timeout
1451
1452Returns: OK/DEFER/FAIL (because using common functions),
1453 but for a client, DEFER and FAIL have the same meaning
1454*/
1455
1456int
17c76198
PP
1457tls_client_start(int fd, host_item *host,
1458 address_item *addr ARG_UNUSED, uschar *dhparam ARG_UNUSED,
1459 uschar *certificate, uschar *privatekey, uschar *sni,
1460 uschar *verify_certs, uschar *verify_crl,
1461 uschar *require_ciphers, int timeout)
059ec3d9 1462{
059ec3d9 1463int rc;
17c76198
PP
1464const char *error;
1465exim_gnutls_state_st *state = NULL;
059ec3d9 1466
17c76198 1467DEBUG(D_tls) debug_printf("initialising GnuTLS as a client on fd %d\n", fd);
059ec3d9 1468
17c76198
PP
1469rc = tls_init(host, certificate, privatekey,
1470 sni, verify_certs, verify_crl, require_ciphers, &state);
059ec3d9
PH
1471if (rc != OK) return rc;
1472
17c76198 1473gnutls_dh_set_prime_bits(state->session, EXIM_CLIENT_DH_MIN_BITS);
83da1223 1474
17c76198
PP
1475if (verify_certs == NULL)
1476 {
1477 DEBUG(D_tls) debug_printf("TLS: server certificate verification not required\n");
1478 state->verify_requirement = VERIFY_NONE;
1479 /* we still ask for it, to log it, etc */
1480 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUEST);
1481 }
1482else
1483 {
1484 DEBUG(D_tls) debug_printf("TLS: server certificate verification required\n");
1485 state->verify_requirement = VERIFY_REQUIRED;
1486 gnutls_certificate_server_set_request(state->session, GNUTLS_CERT_REQUIRE);
1487 }
059ec3d9 1488
17c76198
PP
1489gnutls_transport_set_ptr(state->session, (gnutls_transport_ptr)fd);
1490state->fd_in = fd;
1491state->fd_out = fd;
059ec3d9
PH
1492
1493/* There doesn't seem to be a built-in timeout on connection. */
1494
1495sigalrm_seen = FALSE;
1496alarm(timeout);
17c76198
PP
1497do
1498 {
1499 rc = gnutls_handshake(state->session);
1500 } while ((rc == GNUTLS_E_AGAIN) || (rc == GNUTLS_E_INTERRUPTED));
059ec3d9
PH
1501alarm(0);
1502
4fe99a6c
PP
1503if (rc != GNUTLS_E_SUCCESS)
1504 return tls_error(US"gnutls_handshake",
1505 sigalrm_seen ? "timed out" : gnutls_strerror(rc), state->host);
1506
17c76198 1507DEBUG(D_tls) debug_printf("gnutls_handshake was successful\n");
059ec3d9 1508
17c76198 1509/* Verify late */
059ec3d9 1510
17c76198
PP
1511if (state->verify_requirement != VERIFY_NONE &&
1512 !verify_certificate(state, &error))
1513 return tls_error(US"certificate verification failed", error, state->host);
059ec3d9 1514
17c76198 1515/* Figure out peer DN, and if authenticated, etc. */
059ec3d9 1516
17c76198
PP
1517rc = peer_status(state);
1518if (rc != OK) return rc;
059ec3d9 1519
4fe99a6c 1520/* Sets various Exim expansion variables; may need to adjust for ACL callouts */
059ec3d9 1521
17c76198 1522extract_exim_vars_from_tls_state(state);
059ec3d9 1523
059ec3d9
PH
1524return OK;
1525}
1526
1527
1528
17c76198 1529
059ec3d9 1530/*************************************************
17c76198 1531* Close down a TLS session *
059ec3d9
PH
1532*************************************************/
1533
17c76198
PP
1534/* This is also called from within a delivery subprocess forked from the
1535daemon, to shut down the TLS library, without actually doing a shutdown (which
1536would tamper with the TLS session in the parent process).
059ec3d9 1537
17c76198
PP
1538Arguments: TRUE if gnutls_bye is to be called
1539Returns: nothing
059ec3d9
PH
1540*/
1541
17c76198
PP
1542void
1543tls_close(BOOL shutdown)
059ec3d9 1544{
17c76198 1545exim_gnutls_state_st *state = current_global_tls_state;
059ec3d9 1546
17c76198
PP
1547if (tls_active < 0) return; /* TLS was not active */
1548
1549if (shutdown)
1550 {
1551 DEBUG(D_tls) debug_printf("tls_close(): shutting down TLS\n");
1552 gnutls_bye(state->session, GNUTLS_SHUT_WR);
1553 }
1554
1555gnutls_deinit(state->session);
1556
1557memcpy(state, &exim_gnutls_state_init, sizeof(exim_gnutls_state_init));
1558
1559if ((state_server.session == NULL) && (state_client.session == NULL))
1560 {
1561 gnutls_global_deinit();
1562 exim_gnutls_base_init_done = FALSE;
1563 }
7199e1ee 1564
17c76198 1565tls_active = -1;
059ec3d9
PH
1566}
1567
1568
1569
17c76198 1570
059ec3d9
PH
1571/*************************************************
1572* TLS version of getc *
1573*************************************************/
1574
1575/* This gets the next byte from the TLS input buffer. If the buffer is empty,
1576it refills the buffer via the GnuTLS reading function.
1577
17c76198
PP
1578This feeds DKIM and should be used for all message-body reads.
1579
059ec3d9
PH
1580Arguments: none
1581Returns: the next character or EOF
1582*/
1583
1584int
1585tls_getc(void)
1586{
17c76198
PP
1587exim_gnutls_state_st *state = current_global_tls_state;
1588if (state->xfer_buffer_lwm >= state->xfer_buffer_hwm)
059ec3d9 1589 {
17c76198 1590 ssize_t inbytes;
059ec3d9 1591
17c76198
PP
1592 DEBUG(D_tls) debug_printf("Calling gnutls_record_recv(%p, %p, %u)\n",
1593 state->session, state->xfer_buffer, ssl_xfer_buffer_size);
059ec3d9
PH
1594
1595 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
17c76198 1596 inbytes = gnutls_record_recv(state->session, state->xfer_buffer,
059ec3d9
PH
1597 ssl_xfer_buffer_size);
1598 alarm(0);
1599
1600 /* A zero-byte return appears to mean that the TLS session has been
1601 closed down, not that the socket itself has been closed down. Revert to
1602 non-TLS handling. */
1603
1604 if (inbytes == 0)
1605 {
1606 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1607
1608 receive_getc = smtp_getc;
1609 receive_ungetc = smtp_ungetc;
1610 receive_feof = smtp_feof;
1611 receive_ferror = smtp_ferror;
58eb016e 1612 receive_smtp_buffered = smtp_buffered;
059ec3d9 1613
17c76198
PP
1614 gnutls_deinit(state->session);
1615 state->session = NULL;
059ec3d9 1616 tls_active = -1;
17c76198
PP
1617 tls_bits = 0;
1618 tls_certificate_verified = FALSE;
1619 tls_channelbinding_b64 = NULL;
059ec3d9
PH
1620 tls_cipher = NULL;
1621 tls_peerdn = NULL;
1622
1623 return smtp_getc();
1624 }
1625
1626 /* Handle genuine errors */
1627
1628 else if (inbytes < 0)
1629 {
17c76198
PP
1630 record_io_error(state, (int) inbytes, US"recv", NULL);
1631 state->xfer_error = 1;
059ec3d9
PH
1632 return EOF;
1633 }
80a47a2c 1634#ifndef DISABLE_DKIM
17c76198 1635 dkim_exim_verify_feed(state->xfer_buffer, inbytes);
80a47a2c 1636#endif
17c76198
PP
1637 state->xfer_buffer_hwm = (int) inbytes;
1638 state->xfer_buffer_lwm = 0;
059ec3d9
PH
1639 }
1640
059ec3d9
PH
1641/* Something in the buffer; return next uschar */
1642
17c76198 1643return state->xfer_buffer[state->xfer_buffer_lwm++];
059ec3d9
PH
1644}
1645
1646
1647
17c76198 1648
059ec3d9
PH
1649/*************************************************
1650* Read bytes from TLS channel *
1651*************************************************/
1652
17c76198
PP
1653/* This does not feed DKIM, so if the caller uses this for reading message body,
1654then the caller must feed DKIM.
059ec3d9
PH
1655Arguments:
1656 buff buffer of data
1657 len size of buffer
1658
1659Returns: the number of bytes read
1660 -1 after a failed read
1661*/
1662
1663int
1664tls_read(uschar *buff, size_t len)
1665{
17c76198
PP
1666exim_gnutls_state_st *state = current_global_tls_state;
1667ssize_t inbytes;
059ec3d9 1668
17c76198
PP
1669if (len > INT_MAX)
1670 len = INT_MAX;
059ec3d9 1671
17c76198
PP
1672if (state->xfer_buffer_lwm < state->xfer_buffer_hwm)
1673 DEBUG(D_tls)
1674 debug_printf("*** PROBABLY A BUG *** " \
1675 "tls_read() called with data in the tls_getc() buffer, %d ignored\n",
1676 state->xfer_buffer_hwm - state->xfer_buffer_lwm);
1677
1678DEBUG(D_tls)
1679 debug_printf("Calling gnutls_record_recv(%p, %p, " SIZE_T_FMT ")\n",
1680 state->session, buff, len);
1681
1682inbytes = gnutls_record_recv(state->session, buff, len);
059ec3d9
PH
1683if (inbytes > 0) return inbytes;
1684if (inbytes == 0)
1685 {
1686 DEBUG(D_tls) debug_printf("Got TLS_EOF\n");
1687 }
17c76198 1688else record_io_error(state, (int)inbytes, US"recv", NULL);
059ec3d9
PH
1689
1690return -1;
1691}
1692
1693
1694
17c76198 1695
059ec3d9
PH
1696/*************************************************
1697* Write bytes down TLS channel *
1698*************************************************/
1699
1700/*
1701Arguments:
1702 buff buffer of data
1703 len number of bytes
1704
1705Returns: the number of bytes after a successful write,
1706 -1 after a failed write
1707*/
1708
1709int
1710tls_write(const uschar *buff, size_t len)
1711{
17c76198
PP
1712ssize_t outbytes;
1713size_t left = len;
1714exim_gnutls_state_st *state = current_global_tls_state;
059ec3d9 1715
17c76198 1716DEBUG(D_tls) debug_printf("tls_do_write(%p, " SIZE_T_FMT ")\n", buff, left);
059ec3d9
PH
1717while (left > 0)
1718 {
17c76198
PP
1719 DEBUG(D_tls) debug_printf("gnutls_record_send(SSL, %p, " SIZE_T_FMT ")\n",
1720 buff, left);
1721 outbytes = gnutls_record_send(state->session, buff, left);
059ec3d9 1722
17c76198 1723 DEBUG(D_tls) debug_printf("outbytes=" SSIZE_T_FMT "\n", outbytes);
059ec3d9
PH
1724 if (outbytes < 0)
1725 {
17c76198 1726 record_io_error(state, outbytes, US"send", NULL);
059ec3d9
PH
1727 return -1;
1728 }
1729 if (outbytes == 0)
1730 {
17c76198 1731 record_io_error(state, 0, US"send", US"TLS channel closed on write");
059ec3d9
PH
1732 return -1;
1733 }
1734
1735 left -= outbytes;
1736 buff += outbytes;
1737 }
1738
17c76198
PP
1739if (len > INT_MAX)
1740 {
1741 DEBUG(D_tls)
1742 debug_printf("Whoops! Wrote more bytes (" SIZE_T_FMT ") than INT_MAX\n",
1743 len);
1744 len = INT_MAX;
1745 }
1746
1747return (int) len;
059ec3d9
PH
1748}
1749
1750
1751
17c76198 1752
059ec3d9 1753/*************************************************
17c76198 1754* Random number generation *
059ec3d9
PH
1755*************************************************/
1756
17c76198
PP
1757/* Pseudo-random number generation. The result is not expected to be
1758cryptographically strong but not so weak that someone will shoot themselves
1759in the foot using it as a nonce in input in some email header scheme or
1760whatever weirdness they'll twist this into. The result should handle fork()
1761and avoid repeating sequences. OpenSSL handles that for us.
059ec3d9 1762
17c76198
PP
1763Arguments:
1764 max range maximum
1765Returns a random number in range [0, max-1]
059ec3d9
PH
1766*/
1767
af3498d6 1768#ifdef HAVE_GNUTLS_RND
17c76198
PP
1769int
1770vaguely_random_number(int max)
059ec3d9 1771{
17c76198
PP
1772unsigned int r;
1773int i, needed_len;
1774uschar *p;
1775uschar smallbuf[sizeof(r)];
1776
1777if (max <= 1)
1778 return 0;
1779
1780needed_len = sizeof(r);
1781/* Don't take 8 times more entropy than needed if int is 8 octets and we were
1782 * asked for a number less than 10. */
1783for (r = max, i = 0; r; ++i)
1784 r >>= 1;
1785i = (i + 7) / 8;
1786if (i < needed_len)
1787 needed_len = i;
1788
1789i = gnutls_rnd(GNUTLS_RND_NONCE, smallbuf, needed_len);
1790if (i < 0)
059ec3d9 1791 {
17c76198
PP
1792 DEBUG(D_all) debug_printf("gnutls_rnd() failed, using fallback.\n");
1793 return vaguely_random_number_fallback(max);
1794 }
1795r = 0;
1796for (p = smallbuf; needed_len; --needed_len, ++p)
1797 {
1798 r *= 256;
1799 r += *p;
059ec3d9
PH
1800 }
1801
17c76198
PP
1802/* We don't particularly care about weighted results; if someone wants
1803 * smooth distribution and cares enough then they should submit a patch then. */
1804return r % max;
059ec3d9 1805}
af3498d6
PP
1806#else /* HAVE_GNUTLS_RND */
1807int
1808vaguely_random_number(int max)
1809{
1810 return vaguely_random_number_fallback(max);
1811}
1812#endif /* HAVE_GNUTLS_RND */
059ec3d9 1813
36f12725
NM
1814
1815
1816
1817/*************************************************
1818* Report the library versions. *
1819*************************************************/
1820
1821/* See a description in tls-openssl.c for an explanation of why this exists.
1822
1823Arguments: a FILE* to print the results to
1824Returns: nothing
1825*/
1826
1827void
1828tls_version_report(FILE *f)
1829{
754a0503
PP
1830fprintf(f, "Library version: GnuTLS: Compile: %s\n"
1831 " Runtime: %s\n",
1832 LIBGNUTLS_VERSION,
1833 gnutls_check_version(NULL));
36f12725
NM
1834}
1835
059ec3d9 1836/* End of tls-gnu.c */