Import Upstream version 4.89
[hcoop/debian/exim4.git] / src / tls.c
CommitLineData
420a0d19
CE
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
2813c06e 5/* Copyright (c) University of Cambridge 1995 - 2016 */
420a0d19
CE
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* This module provides TLS (aka SSL) support for Exim. The code for OpenSSL is
9based on a patch that was originally contributed by Steve Haslam. It was
10adapted from stunnel, a GPL program by Michal Trojnara. The code for GNU TLS is
2813c06e 11based on a patch contributed by Nikos Mavrogiannopoulos. Because these packages
420a0d19
CE
12are so very different, the functions for each are kept in separate files. The
13relevant file is #included as required, after any any common functions.
14
15No cryptographic code is included in Exim. All this module does is to call
16functions from the OpenSSL or GNU TLS libraries. */
17
18
19#include "exim.h"
20#include "transports/smtp.h"
21
22/* This module is compiled only when it is specifically requested in the
23build-time configuration. However, some compilers don't like compiling empty
24modules, so keep them happy with a dummy when skipping the rest. Make it
25reference itself to stop picky compilers complaining that it is unused, and put
26in a dummy argument to stop even pickier compilers complaining about infinite
27loops. */
28
29#ifndef SUPPORT_TLS
30static void dummy(int x) { dummy(x-1); }
31#else
32
33/* Static variables that are used for buffering data by both sets of
34functions and the common functions below.
35
36We're moving away from this; GnuTLS is already using a state, which
37can switch, so we can do TLS callouts during ACLs. */
38
39static const int ssl_xfer_buffer_size = 4096;
40#ifndef USE_GNUTLS
41static uschar *ssl_xfer_buffer = NULL;
42static int ssl_xfer_buffer_lwm = 0;
43static int ssl_xfer_buffer_hwm = 0;
44static int ssl_xfer_eof = 0;
45static int ssl_xfer_error = 0;
46#endif
47
48uschar *tls_channelbinding_b64 = NULL;
49
50
51/*************************************************
52* Expand string; give error on failure *
53*************************************************/
54
55/* If expansion is forced to fail, set the result NULL and return TRUE.
56Other failures return FALSE. For a server, an SMTP response is given.
57
58Arguments:
59 s the string to expand; if NULL just return TRUE
60 name name of string being expanded (for error)
61 result where to put the result
62
63Returns: TRUE if OK; result may still be NULL after forced failure
64*/
65
66static BOOL
67expand_check(const uschar *s, const uschar *name, uschar **result)
68{
69if (s == NULL) *result = NULL; else
70 {
71 *result = expand_string(US s); /* need to clean up const some more */
72 if (*result == NULL && !expand_string_forcedfail)
73 {
74 log_write(0, LOG_MAIN|LOG_PANIC, "expansion of %s failed: %s", name,
75 expand_string_message);
76 return FALSE;
77 }
78 }
79return TRUE;
80}
81
82
2813c06e
CE
83/*************************************************
84* Timezone environment flipping *
85*************************************************/
86
87static uschar *
88to_tz(uschar * tz)
89{
90uschar * old = US getenv("TZ");
91(void) setenv("TZ", CCS tz, 1);
92tzset();
93return old;
94}
95
96static void
97restore_tz(uschar * tz)
98{
99if (tz)
100 (void) setenv("TZ", CCS tz, 1);
101else
102 (void) os_unsetenv(US"TZ");
103tzset();
104}
105
420a0d19
CE
106/*************************************************
107* Many functions are package-specific *
108*************************************************/
109
110#ifdef USE_GNUTLS
2813c06e
CE
111# include "tls-gnu.c"
112# include "tlscert-gnu.c"
420a0d19 113
2813c06e
CE
114# define ssl_xfer_buffer (state_server.xfer_buffer)
115# define ssl_xfer_buffer_lwm (state_server.xfer_buffer_lwm)
116# define ssl_xfer_buffer_hwm (state_server.xfer_buffer_hwm)
117# define ssl_xfer_eof (state_server.xfer_eof)
118# define ssl_xfer_error (state_server.xfer_error)
420a0d19
CE
119
120#else
2813c06e
CE
121# include "tls-openssl.c"
122# include "tlscert-openssl.c"
420a0d19
CE
123#endif
124
125
126
127/*************************************************
128* TLS version of ungetc *
129*************************************************/
130
131/* Puts a character back in the input buffer. Only ever
132called once.
133Only used by the server-side TLS.
134
135Arguments:
136 ch the character
137
138Returns: the character
139*/
140
141int
142tls_ungetc(int ch)
143{
144ssl_xfer_buffer[--ssl_xfer_buffer_lwm] = ch;
145return ch;
146}
147
148
149
150/*************************************************
151* TLS version of feof *
152*************************************************/
153
154/* Tests for a previous EOF
155Only used by the server-side TLS.
156
157Arguments: none
158Returns: non-zero if the eof flag is set
159*/
160
161int
162tls_feof(void)
163{
164return ssl_xfer_eof;
165}
166
167
168
169/*************************************************
170* TLS version of ferror *
171*************************************************/
172
173/* Tests for a previous read error, and returns with errno
174restored to what it was when the error was detected.
175Only used by the server-side TLS.
176
177>>>>> Hmm. Errno not handled yet. Where do we get it from? >>>>>
178
179Arguments: none
180Returns: non-zero if the error flag is set
181*/
182
183int
184tls_ferror(void)
185{
186return ssl_xfer_error;
187}
188
189
190/*************************************************
191* TLS version of smtp_buffered *
192*************************************************/
193
194/* Tests for unused chars in the TLS input buffer.
195Only used by the server-side TLS.
196
197Arguments: none
198Returns: TRUE/FALSE
199*/
200
201BOOL
202tls_smtp_buffered(void)
203{
204return ssl_xfer_buffer_lwm < ssl_xfer_buffer_hwm;
205}
206
207
208#endif /* SUPPORT_TLS */
209
210void
211tls_modify_variables(tls_support * dest_tsp)
212{
213modify_variable(US"tls_bits", &dest_tsp->bits);
214modify_variable(US"tls_certificate_verified", &dest_tsp->certificate_verified);
215modify_variable(US"tls_cipher", &dest_tsp->cipher);
216modify_variable(US"tls_peerdn", &dest_tsp->peerdn);
217#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
218modify_variable(US"tls_sni", &dest_tsp->sni);
219#endif
220}
221
222
223#ifdef SUPPORT_TLS
224/************************************************
225* TLS certificate name operations *
226************************************************/
227
228/* Convert an rfc4514 DN to an exim comma-sep list.
229Backslashed commas need to be replaced by doublecomma
230for Exim's list quoting. We modify the given string
231inplace.
232*/
233
234static void
235dn_to_list(uschar * dn)
236{
237uschar * cp;
238for (cp = dn; *cp; cp++)
239 if (cp[0] == '\\' && cp[1] == ',')
240 *cp++ = ',';
241}
242
243
244/* Extract fields of a given type from an RFC4514-
245format Distinguished Name. Return an Exim list.
246NOTE: We modify the supplied dn string during operation.
247
248Arguments:
249 dn Distinguished Name string
2813c06e 250 mod list containing optional output list-sep and
420a0d19
CE
251 field selector match, comma-separated
252Return:
253 allocated string with list of matching fields,
254 field type stripped
255*/
256
257uschar *
2813c06e 258tls_field_from_dn(uschar * dn, const uschar * mod)
420a0d19
CE
259{
260int insep = ',';
261uschar outsep = '\n';
262uschar * ele;
263uschar * match = NULL;
264int len;
265uschar * list = NULL;
266
267while ((ele = string_nextinlist(&mod, &insep, NULL, 0)))
268 if (ele[0] != '>')
269 match = ele; /* field tag to match */
270 else if (ele[1])
2813c06e 271 outsep = ele[1]; /* nondefault output separator */
420a0d19
CE
272
273dn_to_list(dn);
274insep = ',';
2813c06e
CE
275len = match ? Ustrlen(match) : -1;
276while ((ele = string_nextinlist(CUSS &dn, &insep, NULL, 0)))
277 if ( !match
278 || Ustrncmp(ele, match, len) == 0 && ele[len] == '='
279 )
420a0d19
CE
280 list = string_append_listele(list, outsep, ele+len+1);
281return list;
282}
283
284
420a0d19
CE
285/* Compare a domain name with a possibly-wildcarded name. Wildcards
286are restricted to a single one, as the first element of patterns
287having at least three dot-separated elements. Case-independent.
288Return TRUE for a match
289*/
290static BOOL
291is_name_match(const uschar * name, const uschar * pat)
292{
293uschar * cp;
294return *pat == '*' /* possible wildcard match */
295 ? *++pat == '.' /* starts star, dot */
296 && !Ustrchr(++pat, '*') /* has no more stars */
297 && Ustrchr(pat, '.') /* and has another dot. */
298 && (cp = Ustrchr(name, '.'))/* The name has at least one dot */
299 && strcmpic(++cp, pat) == 0 /* and we only compare after it. */
300 : !Ustrchr(pat+1, '*')
301 && strcmpic(name, pat) == 0;
302}
303
304/* Compare a list of names with the dnsname elements
305of the Subject Alternate Name, if any, and the
306Subject otherwise.
307
308Arguments:
309 namelist names to compare
310 cert certificate
311
312Returns:
313 TRUE/FALSE
314*/
315
316BOOL
2813c06e 317tls_is_name_for_cert(const uschar * namelist, void * cert)
420a0d19
CE
318{
319uschar * altnames = tls_cert_subject_altname(cert, US"dns");
320uschar * subjdn;
321uschar * certname;
322int cmp_sep = 0;
323uschar * cmpname;
324
325if ((altnames = tls_cert_subject_altname(cert, US"dns")))
326 {
327 int alt_sep = '\n';
328 while ((cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0)))
329 {
2813c06e 330 const uschar * an = altnames;
420a0d19
CE
331 while ((certname = string_nextinlist(&an, &alt_sep, NULL, 0)))
332 if (is_name_match(cmpname, certname))
333 return TRUE;
334 }
335 }
336
337else if ((subjdn = tls_cert_subject(cert, NULL)))
338 {
339 int sn_sep = ',';
340
341 dn_to_list(subjdn);
342 while ((cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0)))
343 {
2813c06e 344 const uschar * sn = subjdn;
420a0d19
CE
345 while ((certname = string_nextinlist(&sn, &sn_sep, NULL, 0)))
346 if ( *certname++ == 'C'
347 && *certname++ == 'N'
348 && *certname++ == '='
349 && is_name_match(cmpname, certname)
350 )
351 return TRUE;
352 }
353 }
354return FALSE;
355}
420a0d19
CE
356#endif /*SUPPORT_TLS*/
357
358/* vi: aw ai sw=2
359*/
360/* End of tls.c */