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