Source: Remove trailing whitespaces from src/*.{h,c}
[exim.git] / src / src / tls.c
CommitLineData
059ec3d9
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
3386088d 5/* Copyright (c) University of Cambridge 1995 - 2015 */
059ec3d9
PH
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
11based on a patch contributed by Nikos Mavroyanopoulos. Because these packages
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"
65867078 20#include "transports/smtp.h"
059ec3d9
PH
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
4fe99a6c 34functions and the common functions below.
059ec3d9 35
4fe99a6c
PP
36We're moving away from this; GnuTLS is already using a state, which
37can switch, so we can do TLS callouts during ACLs. */
059ec3d9 38
17c76198 39static const int ssl_xfer_buffer_size = 4096;
4fe99a6c
PP
40#ifndef USE_GNUTLS
41static uschar *ssl_xfer_buffer = NULL;
059ec3d9
PH
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;
4fe99a6c 46#endif
059ec3d9 47
44bbabb5 48uschar *tls_channelbinding_b64 = NULL;
059ec3d9
PH
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
17c76198 67expand_check(const uschar *s, const uschar *name, uschar **result)
059ec3d9
PH
68{
69if (s == NULL) *result = NULL; else
70 {
17c76198 71 *result = expand_string(US s); /* need to clean up const some more */
059ec3d9
PH
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
e9477a08
JH
83/*************************************************
84* Timezone environment flipping *
85*************************************************/
86
87static uschar *
88to_tz(uschar * tz)
89{
90 uschar * old = US getenv("TZ");
91 setenv("TZ", CS tz, 1);
94431adb 92 tzset();
e9477a08
JH
93 return old;
94}
95static void
96restore_tz(uschar * tz)
97{
98 if (tz)
99 setenv("TZ", CS tz, 1);
100 else
101 unsetenv("TZ");
94431adb 102 tzset();
e9477a08
JH
103}
104
059ec3d9
PH
105/*************************************************
106* Many functions are package-specific *
107*************************************************/
108
109#ifdef USE_GNUTLS
110#include "tls-gnu.c"
9d1c15ef 111#include "tlscert-gnu.c"
4fe99a6c 112
389ca47a
JH
113#define ssl_xfer_buffer (state_server.xfer_buffer)
114#define ssl_xfer_buffer_lwm (state_server.xfer_buffer_lwm)
115#define ssl_xfer_buffer_hwm (state_server.xfer_buffer_hwm)
116#define ssl_xfer_eof (state_server.xfer_eof)
117#define ssl_xfer_error (state_server.xfer_error)
4fe99a6c 118
059ec3d9
PH
119#else
120#include "tls-openssl.c"
9d1c15ef 121#include "tlscert-openssl.c"
059ec3d9
PH
122#endif
123
124
125
126/*************************************************
127* TLS version of ungetc *
128*************************************************/
129
130/* Puts a character back in the input buffer. Only ever
131called once.
389ca47a 132Only used by the server-side TLS.
059ec3d9
PH
133
134Arguments:
135 ch the character
136
137Returns: the character
138*/
139
140int
141tls_ungetc(int ch)
142{
143ssl_xfer_buffer[--ssl_xfer_buffer_lwm] = ch;
144return ch;
145}
146
147
148
149/*************************************************
150* TLS version of feof *
151*************************************************/
152
153/* Tests for a previous EOF
389ca47a 154Only used by the server-side TLS.
059ec3d9
PH
155
156Arguments: none
157Returns: non-zero if the eof flag is set
158*/
159
160int
161tls_feof(void)
162{
163return ssl_xfer_eof;
164}
165
166
167
168/*************************************************
169* TLS version of ferror *
170*************************************************/
171
172/* Tests for a previous read error, and returns with errno
173restored to what it was when the error was detected.
389ca47a 174Only used by the server-side TLS.
059ec3d9
PH
175
176>>>>> Hmm. Errno not handled yet. Where do we get it from? >>>>>
177
178Arguments: none
179Returns: non-zero if the error flag is set
180*/
181
182int
183tls_ferror(void)
184{
185return ssl_xfer_error;
186}
187
58eb016e
PH
188
189/*************************************************
190* TLS version of smtp_buffered *
191*************************************************/
192
193/* Tests for unused chars in the TLS input buffer.
389ca47a 194Only used by the server-side TLS.
58eb016e
PH
195
196Arguments: none
197Returns: TRUE/FALSE
198*/
199
200BOOL
201tls_smtp_buffered(void)
202{
203return ssl_xfer_buffer_lwm < ssl_xfer_buffer_hwm;
204}
205
206
059ec3d9
PH
207#endif /* SUPPORT_TLS */
208
35aba663
JH
209void
210tls_modify_variables(tls_support * dest_tsp)
211{
212modify_variable(US"tls_bits", &dest_tsp->bits);
213modify_variable(US"tls_certificate_verified", &dest_tsp->certificate_verified);
214modify_variable(US"tls_cipher", &dest_tsp->cipher);
215modify_variable(US"tls_peerdn", &dest_tsp->peerdn);
216#if defined(SUPPORT_TLS) && !defined(USE_GNUTLS)
217modify_variable(US"tls_sni", &dest_tsp->sni);
218#endif
219}
220
417bfce4
JH
221
222#ifdef SUPPORT_TLS
812a6045
JH
223/************************************************
224* TLS certificate name operations *
225************************************************/
226
227/* Convert an rfc4514 DN to an exim comma-sep list.
228Backslashed commas need to be replaced by doublecomma
229for Exim's list quoting. We modify the given string
230inplace.
231*/
232
233static void
234dn_to_list(uschar * dn)
235{
236uschar * cp;
237for (cp = dn; *cp; cp++)
238 if (cp[0] == '\\' && cp[1] == ',')
239 *cp++ = ',';
240}
241
242
243/* Extract fields of a given type from an RFC4514-
244format Distinguished Name. Return an Exim list.
245NOTE: We modify the supplied dn string during operation.
246
247Arguments:
248 dn Distinguished Name string
bfbad1dd 249 mod list containing optional output list-sep and
812a6045
JH
250 field selector match, comma-separated
251Return:
252 allocated string with list of matching fields,
253 field type stripped
254*/
255
256uschar *
55414b25 257tls_field_from_dn(uschar * dn, const uschar * mod)
812a6045
JH
258{
259int insep = ',';
260uschar outsep = '\n';
261uschar * ele;
262uschar * match = NULL;
263int len;
264uschar * list = NULL;
265
7437665e 266while ((ele = string_nextinlist(&mod, &insep, NULL, 0)))
812a6045
JH
267 if (ele[0] != '>')
268 match = ele; /* field tag to match */
269 else if (ele[1])
bfbad1dd 270 outsep = ele[1]; /* nondefault output separator */
812a6045
JH
271
272dn_to_list(dn);
273insep = ',';
bfbad1dd 274len = match ? Ustrlen(match) : -1;
55414b25 275while ((ele = string_nextinlist(CUSS &dn, &insep, NULL, 0)))
bfbad1dd
JH
276 if ( !match
277 || Ustrncmp(ele, match, len) == 0 && ele[len] == '='
278 )
812a6045
JH
279 list = string_append_listele(list, outsep, ele+len+1);
280return list;
281}
282
283
e51c7be2
JH
284/* Compare a domain name with a possibly-wildcarded name. Wildcards
285are restricted to a single one, as the first element of patterns
286having at least three dot-separated elements. Case-independent.
287Return TRUE for a match
288*/
289static BOOL
290is_name_match(const uschar * name, const uschar * pat)
291{
292uschar * cp;
293return *pat == '*' /* possible wildcard match */
294 ? *++pat == '.' /* starts star, dot */
295 && !Ustrchr(++pat, '*') /* has no more stars */
296 && Ustrchr(pat, '.') /* and has another dot. */
297 && (cp = Ustrchr(name, '.'))/* The name has at least one dot */
298 && strcmpic(++cp, pat) == 0 /* and we only compare after it. */
299 : !Ustrchr(pat+1, '*')
300 && strcmpic(name, pat) == 0;
301}
302
303/* Compare a list of names with the dnsname elements
304of the Subject Alternate Name, if any, and the
305Subject otherwise.
306
307Arguments:
308 namelist names to compare
309 cert certificate
310
311Returns:
312 TRUE/FALSE
313*/
314
315BOOL
55414b25 316tls_is_name_for_cert(const uschar * namelist, void * cert)
e51c7be2
JH
317{
318uschar * altnames = tls_cert_subject_altname(cert, US"dns");
319uschar * subjdn;
320uschar * certname;
321int cmp_sep = 0;
322uschar * cmpname;
323
324if ((altnames = tls_cert_subject_altname(cert, US"dns")))
325 {
326 int alt_sep = '\n';
7437665e 327 while ((cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0)))
e51c7be2 328 {
55414b25 329 const uschar * an = altnames;
7437665e 330 while ((certname = string_nextinlist(&an, &alt_sep, NULL, 0)))
e51c7be2
JH
331 if (is_name_match(cmpname, certname))
332 return TRUE;
333 }
334 }
335
336else if ((subjdn = tls_cert_subject(cert, NULL)))
337 {
338 int sn_sep = ',';
e51c7be2
JH
339
340 dn_to_list(subjdn);
67791ce4 341 while ((cmpname = string_nextinlist(&namelist, &cmp_sep, NULL, 0)))
e51c7be2 342 {
55414b25 343 const uschar * sn = subjdn;
7437665e 344 while ((certname = string_nextinlist(&sn, &sn_sep, NULL, 0)))
e51c7be2
JH
345 if ( *certname++ == 'C'
346 && *certname++ == 'N'
347 && *certname++ == '='
348 && is_name_match(cmpname, certname)
349 )
350 return TRUE;
351 }
352 }
353return FALSE;
354}
6c1c3d1d 355#endif /*SUPPORT_TLS*/
812a6045
JH
356
357/* vi: aw ai sw=2
358*/
059ec3d9 359/* End of tls.c */