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