smtp input
[exim.git] / src / src / smtp_in.c
CommitLineData
059ec3d9
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
5a66c31b 5/* Copyright (c) University of Cambridge 1995 - 2014 */
059ec3d9
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* Functions for handling an incoming SMTP call. */
9
10
11#include "exim.h"
12
13
14/* Initialize for TCP wrappers if so configured. It appears that the macro
15HAVE_IPV6 is used in some versions of the tcpd.h header, so we unset it before
16including that header, and restore its value afterwards. */
17
18#ifdef USE_TCP_WRAPPERS
19
20 #if HAVE_IPV6
21 #define EXIM_HAVE_IPV6
22 #endif
23 #undef HAVE_IPV6
24 #include <tcpd.h>
25 #undef HAVE_IPV6
26 #ifdef EXIM_HAVE_IPV6
27 #define HAVE_IPV6 TRUE
28 #endif
29
30int allow_severity = LOG_INFO;
31int deny_severity = LOG_NOTICE;
5dc43717 32uschar *tcp_wrappers_name;
059ec3d9
PH
33#endif
34
35
8d67ada3
PH
36/* Size of buffer for reading SMTP commands. We used to use 512, as defined
37by RFC 821. However, RFC 1869 specifies that this must be increased for SMTP
38commands that accept arguments, and this in particular applies to AUTH, where
e2ca7082
PP
39the data can be quite long. More recently this value was 2048 in Exim;
40however, RFC 4954 (circa 2007) recommends 12288 bytes to handle AUTH. Clients
41such as Thunderbird will send an AUTH with an initial-response for GSSAPI.
42The maximum size of a Kerberos ticket under Windows 2003 is 12000 bytes, and
43we need room to handle large base64-encoded AUTHs for GSSAPI.
44*/
45
46#define smtp_cmd_buffer_size 16384
059ec3d9
PH
47
48/* Size of buffer for reading SMTP incoming packets */
49
50#define in_buffer_size 8192
51
52/* Structure for SMTP command list */
53
54typedef struct {
1ba28e2b 55 const char *name;
059ec3d9
PH
56 int len;
57 short int cmd;
58 short int has_arg;
59 short int is_mail_cmd;
60} smtp_cmd_list;
61
62/* Codes for identifying commands. We order them so that those that come first
63are those for which synchronization is always required. Checking this can help
64block some spam. */
65
66enum {
67 /* These commands are required to be synchronized, i.e. to be the last in a
68 block of commands when pipelining. */
69
70 HELO_CMD, EHLO_CMD, DATA_CMD, /* These are listed in the pipelining */
71 VRFY_CMD, EXPN_CMD, NOOP_CMD, /* RFC as requiring synchronization */
72 ETRN_CMD, /* This by analogy with TURN from the RFC */
73 STARTTLS_CMD, /* Required by the STARTTLS RFC */
74
75 /* This is a dummy to identify the non-sync commands when pipelining */
76
77 NON_SYNC_CMD_PIPELINING,
78
79 /* These commands need not be synchronized when pipelining */
80
81 MAIL_CMD, RCPT_CMD, RSET_CMD,
82
83 /* This is a dummy to identify the non-sync commands when not pipelining */
84
85 NON_SYNC_CMD_NON_PIPELINING,
86
87 /* I have been unable to find a statement about the use of pipelining
88 with AUTH, so to be on the safe side it is here, though I kind of feel
89 it should be up there with the synchronized commands. */
90
91 AUTH_CMD,
92
93 /* I'm not sure about these, but I don't think they matter. */
94
95 QUIT_CMD, HELP_CMD,
96
a3c86431
TL
97#ifdef EXPERIMENTAL_PROXY
98 PROXY_FAIL_IGNORE_CMD,
99#endif
100
059ec3d9
PH
101 /* These are specials that don't correspond to actual commands */
102
103 EOF_CMD, OTHER_CMD, BADARG_CMD, BADCHAR_CMD, BADSYN_CMD,
104 TOO_MANY_NONMAIL_CMD };
105
106
b4ed4da0
PH
107/* This is a convenience macro for adding the identity of an SMTP command
108to the circular buffer that holds a list of the last n received. */
109
110#define HAD(n) \
111 smtp_connection_had[smtp_ch_index++] = n; \
112 if (smtp_ch_index >= SMTP_HBUFF_SIZE) smtp_ch_index = 0
113
059ec3d9
PH
114
115/*************************************************
116* Local static variables *
117*************************************************/
118
119static auth_instance *authenticated_by;
120static BOOL auth_advertised;
121#ifdef SUPPORT_TLS
122static BOOL tls_advertised;
123#endif
6c1c3d1d 124static BOOL dsn_advertised;
059ec3d9
PH
125static BOOL esmtp;
126static BOOL helo_required = FALSE;
127static BOOL helo_verify = FALSE;
128static BOOL helo_seen;
129static BOOL helo_accept_junk;
130static BOOL count_nonmail;
131static BOOL pipelining_advertised;
2679d413
PH
132static BOOL rcpt_smtp_response_same;
133static BOOL rcpt_in_progress;
059ec3d9 134static int nonmail_command_count;
8f128379 135static BOOL smtp_exit_function_called = 0;
d1a13eea
JH
136#ifdef EXPERIMENTAL_INTERNATIONAL
137static BOOL smtputf8_advertised;
138#endif
059ec3d9
PH
139static int synprot_error_count;
140static int unknown_command_count;
141static int sync_cmd_limit;
142static int smtp_write_error = 0;
143
2679d413 144static uschar *rcpt_smtp_response;
ca86f471
PH
145static uschar *smtp_data_buffer;
146static uschar *smtp_cmd_data;
147
059ec3d9
PH
148/* We need to know the position of RSET, HELO, EHLO, AUTH, and STARTTLS. Their
149final fields of all except AUTH are forced TRUE at the start of a new message
150setup, to allow one of each between messages that is not counted as a nonmail
151command. (In fact, only one of HELO/EHLO is not counted.) Also, we have to
152allow a new EHLO after starting up TLS.
153
154AUTH is "falsely" labelled as a mail command initially, so that it doesn't get
155counted. However, the flag is changed when AUTH is received, so that multiple
156failing AUTHs will eventually hit the limit. After a successful AUTH, another
157AUTH is already forbidden. After a TLS session is started, AUTH's flag is again
158forced TRUE, to allow for the re-authentication that can happen at that point.
159
160QUIT is also "falsely" labelled as a mail command so that it doesn't up the
161count of non-mail commands and possibly provoke an error. */
162
163static smtp_cmd_list cmd_list[] = {
d1a13eea
JH
164 /* name len cmd has_arg is_mail_cmd */
165
059ec3d9
PH
166 { "rset", sizeof("rset")-1, RSET_CMD, FALSE, FALSE }, /* First */
167 { "helo", sizeof("helo")-1, HELO_CMD, TRUE, FALSE },
168 { "ehlo", sizeof("ehlo")-1, EHLO_CMD, TRUE, FALSE },
169 { "auth", sizeof("auth")-1, AUTH_CMD, TRUE, TRUE },
170 #ifdef SUPPORT_TLS
171 { "starttls", sizeof("starttls")-1, STARTTLS_CMD, FALSE, FALSE },
172 #endif
173
174/* If you change anything above here, also fix the definitions below. */
175
176 { "mail from:", sizeof("mail from:")-1, MAIL_CMD, TRUE, TRUE },
177 { "rcpt to:", sizeof("rcpt to:")-1, RCPT_CMD, TRUE, TRUE },
178 { "data", sizeof("data")-1, DATA_CMD, FALSE, TRUE },
179 { "quit", sizeof("quit")-1, QUIT_CMD, FALSE, TRUE },
180 { "noop", sizeof("noop")-1, NOOP_CMD, TRUE, FALSE },
181 { "etrn", sizeof("etrn")-1, ETRN_CMD, TRUE, FALSE },
182 { "vrfy", sizeof("vrfy")-1, VRFY_CMD, TRUE, FALSE },
183 { "expn", sizeof("expn")-1, EXPN_CMD, TRUE, FALSE },
184 { "help", sizeof("help")-1, HELP_CMD, TRUE, FALSE }
185};
186
187static smtp_cmd_list *cmd_list_end =
188 cmd_list + sizeof(cmd_list)/sizeof(smtp_cmd_list);
189
190#define CMD_LIST_RSET 0
191#define CMD_LIST_HELO 1
192#define CMD_LIST_EHLO 2
193#define CMD_LIST_AUTH 3
194#define CMD_LIST_STARTTLS 4
195
b4ed4da0
PH
196/* This list of names is used for performing the smtp_no_mail logging action.
197It must be kept in step with the SCH_xxx enumerations. */
198
199static uschar *smtp_names[] =
200 {
201 US"NONE", US"AUTH", US"DATA", US"EHLO", US"ETRN", US"EXPN", US"HELO",
202 US"HELP", US"MAIL", US"NOOP", US"QUIT", US"RCPT", US"RSET", US"STARTTLS",
203 US"VRFY" };
204
059ec3d9 205static uschar *protocols[] = {
981756db
PH
206 US"local-smtp", /* HELO */
207 US"local-smtps", /* The rare case EHLO->STARTTLS->HELO */
208 US"local-esmtp", /* EHLO */
209 US"local-esmtps", /* EHLO->STARTTLS->EHLO */
210 US"local-esmtpa", /* EHLO->AUTH */
211 US"local-esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
059ec3d9
PH
212 };
213
214#define pnormal 0
981756db
PH
215#define pextend 2
216#define pcrpted 1 /* added to pextend or pnormal */
217#define pauthed 2 /* added to pextend */
059ec3d9
PH
218#define pnlocal 6 /* offset to remove "local" */
219
d27f98fe
TL
220/* Sanity check and validate optional args to MAIL FROM: envelope */
221enum {
222 ENV_MAIL_OPT_SIZE, ENV_MAIL_OPT_BODY, ENV_MAIL_OPT_AUTH,
8ccd00b1 223#ifndef DISABLE_PRDR
fd98a5c6 224 ENV_MAIL_OPT_PRDR,
6c1c3d1d 225#endif
6c1c3d1d 226 ENV_MAIL_OPT_RET, ENV_MAIL_OPT_ENVID,
d1a13eea
JH
227#ifdef EXPERIMENTAL_INTERNATIONAL
228 ENV_MAIL_OPT_UTF8,
229#endif
fd98a5c6 230 ENV_MAIL_OPT_NULL
d27f98fe
TL
231 };
232typedef struct {
233 uschar * name; /* option requested during MAIL cmd */
234 int value; /* enum type */
235 BOOL need_value; /* TRUE requires value (name=value pair format)
236 FALSE is a singleton */
237 } env_mail_type_t;
238static env_mail_type_t env_mail_type_list[] = {
239 { US"SIZE", ENV_MAIL_OPT_SIZE, TRUE },
240 { US"BODY", ENV_MAIL_OPT_BODY, TRUE },
241 { US"AUTH", ENV_MAIL_OPT_AUTH, TRUE },
8ccd00b1 242#ifndef DISABLE_PRDR
fd98a5c6 243 { US"PRDR", ENV_MAIL_OPT_PRDR, FALSE },
6c1c3d1d 244#endif
6c1c3d1d
WB
245 { US"RET", ENV_MAIL_OPT_RET, TRUE },
246 { US"ENVID", ENV_MAIL_OPT_ENVID, TRUE },
d1a13eea
JH
247#ifdef EXPERIMENTAL_INTERNATIONAL
248 { US"SMTPUTF8",ENV_MAIL_OPT_UTF8, FALSE }, /* rfc6531 */
249#endif
fd98a5c6 250 { US"NULL", ENV_MAIL_OPT_NULL, FALSE }
d27f98fe
TL
251 };
252
059ec3d9
PH
253/* When reading SMTP from a remote host, we have to use our own versions of the
254C input-reading functions, in order to be able to flush the SMTP output only
255when about to read more data from the socket. This is the only way to get
256optimal performance when the client is using pipelining. Flushing for every
257command causes a separate packet and reply packet each time; saving all the
258responses up (when pipelining) combines them into one packet and one response.
259
260For simplicity, these functions are used for *all* SMTP input, not only when
261receiving over a socket. However, after setting up a secure socket (SSL), input
262is read via the OpenSSL library, and another set of functions is used instead
263(see tls.c).
264
265These functions are set in the receive_getc etc. variables and called with the
266same interface as the C functions. However, since there can only ever be
267one incoming SMTP call, we just use a single buffer and flags. There is no need
268to implement a complicated private FILE-like structure.*/
269
270static uschar *smtp_inbuffer;
271static uschar *smtp_inptr;
272static uschar *smtp_inend;
273static int smtp_had_eof;
274static int smtp_had_error;
275
276
277/*************************************************
278* SMTP version of getc() *
279*************************************************/
280
281/* This gets the next byte from the SMTP input buffer. If the buffer is empty,
282it flushes the output, and refills the buffer, with a timeout. The signal
283handler is set appropriately by the calling function. This function is not used
284after a connection has negotated itself into an TLS/SSL state.
285
286Arguments: none
287Returns: the next character or EOF
288*/
289
290int
291smtp_getc(void)
292{
293if (smtp_inptr >= smtp_inend)
294 {
295 int rc, save_errno;
296 fflush(smtp_out);
297 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
298 rc = read(fileno(smtp_in), smtp_inbuffer, in_buffer_size);
299 save_errno = errno;
300 alarm(0);
301 if (rc <= 0)
302 {
303 /* Must put the error text in fixed store, because this might be during
304 header reading, where it releases unused store above the header. */
305 if (rc < 0)
306 {
307 smtp_had_error = save_errno;
308 smtp_read_error = string_copy_malloc(
309 string_sprintf(" (error: %s)", strerror(save_errno)));
310 }
311 else smtp_had_eof = 1;
312 return EOF;
313 }
80a47a2c
TK
314#ifndef DISABLE_DKIM
315 dkim_exim_verify_feed(smtp_inbuffer, rc);
316#endif
059ec3d9
PH
317 smtp_inend = smtp_inbuffer + rc;
318 smtp_inptr = smtp_inbuffer;
319 }
320return *smtp_inptr++;
321}
322
323
324
325/*************************************************
326* SMTP version of ungetc() *
327*************************************************/
328
329/* Puts a character back in the input buffer. Only ever
330called once.
331
332Arguments:
333 ch the character
334
335Returns: the character
336*/
337
338int
339smtp_ungetc(int ch)
340{
341*(--smtp_inptr) = ch;
342return ch;
343}
344
345
346
347
348/*************************************************
349* SMTP version of feof() *
350*************************************************/
351
352/* Tests for a previous EOF
353
354Arguments: none
355Returns: non-zero if the eof flag is set
356*/
357
358int
359smtp_feof(void)
360{
361return smtp_had_eof;
362}
363
364
365
366
367/*************************************************
368* SMTP version of ferror() *
369*************************************************/
370
371/* Tests for a previous read error, and returns with errno
372restored to what it was when the error was detected.
373
374Arguments: none
375Returns: non-zero if the error flag is set
376*/
377
378int
379smtp_ferror(void)
380{
381errno = smtp_had_error;
382return smtp_had_error;
383}
384
385
386
58eb016e
PH
387/*************************************************
388* Test for characters in the SMTP buffer *
389*************************************************/
390
391/* Used at the end of a message
392
393Arguments: none
394Returns: TRUE/FALSE
395*/
396
397BOOL
398smtp_buffered(void)
399{
400return smtp_inptr < smtp_inend;
401}
402
403
059ec3d9
PH
404
405/*************************************************
406* Write formatted string to SMTP channel *
407*************************************************/
408
409/* This is a separate function so that we don't have to repeat everything for
410TLS support or debugging. It is global so that the daemon and the
411authentication functions can use it. It does not return any error indication,
412because major problems such as dropped connections won't show up till an output
413flush for non-TLS connections. The smtp_fflush() function is available for
414checking that: for convenience, TLS output errors are remembered here so that
415they are also picked up later by smtp_fflush().
416
417Arguments:
418 format format string
419 ... optional arguments
420
421Returns: nothing
422*/
423
424void
1ba28e2b 425smtp_printf(const char *format, ...)
059ec3d9
PH
426{
427va_list ap;
428
ce552449
NM
429va_start(ap, format);
430smtp_vprintf(format, ap);
431va_end(ap);
432}
433
434/* This is split off so that verify.c:respond_printf() can, in effect, call
435smtp_printf(), bearing in mind that in C a vararg function can't directly
fb08281f 436call another vararg function, only a function which accepts a va_list. */
ce552449
NM
437
438void
1ba28e2b 439smtp_vprintf(const char *format, va_list ap)
ce552449 440{
fb08281f
DW
441BOOL yield;
442
443yield = string_vformat(big_buffer, big_buffer_size, format, ap);
ce552449 444
059ec3d9
PH
445DEBUG(D_receive)
446 {
fb08281f
DW
447 void *reset_point = store_get(0);
448 uschar *msg_copy, *cr, *end;
449 msg_copy = string_copy(big_buffer);
450 end = msg_copy + Ustrlen(msg_copy);
451 while ((cr = Ustrchr(msg_copy, '\r')) != NULL) /* lose CRs */
452 memmove(cr, cr + 1, (end--) - cr);
453 debug_printf("SMTP>> %s", msg_copy);
454 store_reset(reset_point);
059ec3d9
PH
455 }
456
fb08281f 457if (!yield)
2679d413
PH
458 {
459 log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_printf()");
460 smtp_closedown(US"Unexpected error");
461 exim_exit(EXIT_FAILURE);
462 }
2679d413
PH
463
464/* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
465have had the same. Note: this code is also present in smtp_respond(). It would
466be tidier to have it only in one place, but when it was added, it was easier to
467do it that way, so as not to have to mess with the code for the RCPT command,
468which sometimes uses smtp_printf() and sometimes smtp_respond(). */
469
470if (rcpt_in_progress)
471 {
472 if (rcpt_smtp_response == NULL)
473 rcpt_smtp_response = string_copy(big_buffer);
474 else if (rcpt_smtp_response_same &&
475 Ustrcmp(rcpt_smtp_response, big_buffer) != 0)
476 rcpt_smtp_response_same = FALSE;
477 rcpt_in_progress = FALSE;
478 }
059ec3d9 479
2679d413 480/* Now write the string */
059ec3d9
PH
481
482#ifdef SUPPORT_TLS
817d9f57 483if (tls_in.active >= 0)
059ec3d9 484 {
817d9f57
JH
485 if (tls_write(TRUE, big_buffer, Ustrlen(big_buffer)) < 0)
486 smtp_write_error = -1;
059ec3d9
PH
487 }
488else
489#endif
490
2679d413 491if (fprintf(smtp_out, "%s", big_buffer) < 0) smtp_write_error = -1;
059ec3d9
PH
492}
493
494
495
496/*************************************************
497* Flush SMTP out and check for error *
498*************************************************/
499
500/* This function isn't currently used within Exim (it detects errors when it
501tries to read the next SMTP input), but is available for use in local_scan().
502For non-TLS connections, it flushes the output and checks for errors. For
503TLS-connections, it checks for a previously-detected TLS write error.
504
505Arguments: none
506Returns: 0 for no error; -1 after an error
507*/
508
509int
510smtp_fflush(void)
511{
817d9f57 512if (tls_in.active < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
059ec3d9
PH
513return smtp_write_error;
514}
515
516
517
518/*************************************************
519* SMTP command read timeout *
520*************************************************/
521
522/* Signal handler for timing out incoming SMTP commands. This attempts to
523finish off tidily.
524
525Argument: signal number (SIGALRM)
526Returns: nothing
527*/
528
529static void
530command_timeout_handler(int sig)
531{
532sig = sig; /* Keep picky compilers happy */
533log_write(L_lost_incoming_connection,
534 LOG_MAIN, "SMTP command timeout on%s connection from %s",
817d9f57 535 (tls_in.active >= 0)? " TLS" : "",
059ec3d9
PH
536 host_and_ident(FALSE));
537if (smtp_batched_input)
538 moan_smtp_batch(NULL, "421 SMTP command timeout"); /* Does not return */
8f128379
PH
539smtp_notquit_exit(US"command-timeout", US"421",
540 US"%s: SMTP command timeout - closing connection", smtp_active_hostname);
059ec3d9
PH
541exim_exit(EXIT_FAILURE);
542}
543
544
545
546/*************************************************
547* SIGTERM received *
548*************************************************/
549
550/* Signal handler for handling SIGTERM. Again, try to finish tidily.
551
552Argument: signal number (SIGTERM)
553Returns: nothing
554*/
555
556static void
557command_sigterm_handler(int sig)
558{
559sig = sig; /* Keep picky compilers happy */
560log_write(0, LOG_MAIN, "%s closed after SIGTERM", smtp_get_connection_info());
561if (smtp_batched_input)
562 moan_smtp_batch(NULL, "421 SIGTERM received"); /* Does not return */
8f128379
PH
563smtp_notquit_exit(US"signal-exit", US"421",
564 US"%s: Service not available - closing connection", smtp_active_hostname);
059ec3d9
PH
565exim_exit(EXIT_FAILURE);
566}
567
568
569
a14e5636 570
a3c86431 571#ifdef EXPERIMENTAL_PROXY
a3bddaa8
TL
572/*************************************************
573* Restore socket timeout to previous value *
574*************************************************/
575/* If the previous value was successfully retrieved, restore
576it before returning control to the non-proxy routines
577
578Arguments: fd - File descriptor for input
579 get_ok - Successfully retrieved previous values
580 tvtmp - Time struct with previous values
581 vslen - Length of time struct
582Returns: none
583*/
584static void
585restore_socket_timeout(int fd, int get_ok, struct timeval tvtmp, socklen_t vslen)
586{
587if (get_ok == 0)
588 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tvtmp, vslen);
589}
590
a3c86431
TL
591/*************************************************
592* Check if host is required proxy host *
593*************************************************/
594/* The function determines if inbound host will be a regular smtp host
595or if it is configured that it must use Proxy Protocol.
596
597Arguments: none
598Returns: bool
599*/
600
601static BOOL
602check_proxy_protocol_host()
603{
604int rc;
605/* Cannot configure local connection as a proxy inbound */
606if (sender_host_address == NULL) return proxy_session;
607
608rc = verify_check_this_host(&proxy_required_hosts, NULL, NULL,
609 sender_host_address, NULL);
610if (rc == OK)
611 {
612 DEBUG(D_receive)
613 debug_printf("Detected proxy protocol configured host\n");
614 proxy_session = TRUE;
615 }
616return proxy_session;
617}
618
619
a3c86431
TL
620/*************************************************
621* Setup host for proxy protocol *
622*************************************************/
623/* The function configures the connection based on a header from the
624inbound host to use Proxy Protocol. The specification is very exact
625so exit with an error if do not find the exact required pieces. This
626includes an incorrect number of spaces separating args.
627
628Arguments: none
629Returns: int
630*/
631
632static BOOL
633setup_proxy_protocol_host()
634{
635union {
636 struct {
637 uschar line[108];
638 } v1;
639 struct {
640 uschar sig[12];
36719342
TL
641 uint8_t ver_cmd;
642 uint8_t fam;
643 uint16_t len;
a3c86431
TL
644 union {
645 struct { /* TCP/UDP over IPv4, len = 12 */
646 uint32_t src_addr;
647 uint32_t dst_addr;
648 uint16_t src_port;
649 uint16_t dst_port;
650 } ip4;
651 struct { /* TCP/UDP over IPv6, len = 36 */
652 uint8_t src_addr[16];
653 uint8_t dst_addr[16];
654 uint16_t src_port;
655 uint16_t dst_port;
656 } ip6;
657 struct { /* AF_UNIX sockets, len = 216 */
658 uschar src_addr[108];
659 uschar dst_addr[108];
660 } unx;
661 } addr;
662 } v2;
663} hdr;
664
eb57651e
TL
665/* Temp variables used in PPv2 address:port parsing */
666uint16_t tmpport;
667char tmpip[INET_ADDRSTRLEN];
668struct sockaddr_in tmpaddr;
669char tmpip6[INET6_ADDRSTRLEN];
670struct sockaddr_in6 tmpaddr6;
671
672int get_ok = 0;
a3c86431 673int size, ret, fd;
36719342 674const char v2sig[12] = "\x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A";
a3c86431
TL
675uschar *iptype; /* To display debug info */
676struct timeval tv;
a3bddaa8
TL
677socklen_t vslen = 0;
678struct timeval tvtmp;
679
680vslen = sizeof(struct timeval);
a3c86431
TL
681
682fd = fileno(smtp_in);
683
a3bddaa8
TL
684/* Save current socket timeout values */
685get_ok = getsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tvtmp,
686 &vslen);
687
a3c86431
TL
688/* Proxy Protocol host must send header within a short time
689(default 3 seconds) or it's considered invalid */
690tv.tv_sec = PROXY_NEGOTIATION_TIMEOUT_SEC;
691tv.tv_usec = PROXY_NEGOTIATION_TIMEOUT_USEC;
692setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv,
693 sizeof(struct timeval));
a3bddaa8 694
a3c86431
TL
695do
696 {
eb57651e
TL
697 /* The inbound host was declared to be a Proxy Protocol host, so
698 don't do a PEEK into the data, actually slurp it up. */
699 ret = recv(fd, &hdr, sizeof(hdr), 0);
a3c86431
TL
700 }
701 while (ret == -1 && errno == EINTR);
702
703if (ret == -1)
a3bddaa8
TL
704 {
705 restore_socket_timeout(fd, get_ok, tvtmp, vslen);
a3c86431 706 return (errno == EAGAIN) ? 0 : ERRNO_PROXYFAIL;
a3bddaa8 707 }
a3c86431
TL
708
709if (ret >= 16 &&
36719342 710 memcmp(&hdr.v2, v2sig, 12) == 0)
a3c86431 711 {
36719342
TL
712 uint8_t ver, cmd;
713
714 /* May 2014: haproxy combined the version and command into one byte to
715 allow two full bytes for the length field in order to proxy SSL
716 connections. SSL Proxy is not supported in this version of Exim, but
717 must still seperate values here. */
718 ver = (hdr.v2.ver_cmd & 0xf0) >> 4;
719 cmd = (hdr.v2.ver_cmd & 0x0f);
720
721 if (ver != 0x02)
722 {
723 DEBUG(D_receive) debug_printf("Invalid Proxy Protocol version: %d\n", ver);
724 goto proxyfail;
725 }
a3c86431 726 DEBUG(D_receive) debug_printf("Detected PROXYv2 header\n");
36719342 727 /* The v2 header will always be 16 bytes per the spec. */
a3c86431
TL
728 size = 16 + hdr.v2.len;
729 if (ret < size)
730 {
36719342
TL
731 DEBUG(D_receive) debug_printf("Truncated or too large PROXYv2 header (%d/%d)\n",
732 ret, size);
a3c86431
TL
733 goto proxyfail;
734 }
36719342 735 switch (cmd)
a3c86431
TL
736 {
737 case 0x01: /* PROXY command */
738 switch (hdr.v2.fam)
739 {
eb57651e
TL
740 case 0x11: /* TCPv4 address type */
741 iptype = US"IPv4";
742 tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.src_addr;
743 inet_ntop(AF_INET, &(tmpaddr.sin_addr), (char *)&tmpip, sizeof(tmpip));
744 if (!string_is_ip_address(US tmpip,NULL))
745 {
746 DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
a3c86431 747 return ERRNO_PROXYFAIL;
eb57651e
TL
748 }
749 proxy_host_address = sender_host_address;
750 sender_host_address = string_copy(US tmpip);
751 tmpport = ntohs(hdr.v2.addr.ip4.src_port);
752 proxy_host_port = sender_host_port;
753 sender_host_port = tmpport;
754 /* Save dest ip/port */
755 tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.dst_addr;
756 inet_ntop(AF_INET, &(tmpaddr.sin_addr), (char *)&tmpip, sizeof(tmpip));
757 if (!string_is_ip_address(US tmpip,NULL))
758 {
759 DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
760 return ERRNO_PROXYFAIL;
761 }
762 proxy_target_address = string_copy(US tmpip);
763 tmpport = ntohs(hdr.v2.addr.ip4.dst_port);
764 proxy_target_port = tmpport;
a3c86431 765 goto done;
eb57651e
TL
766 case 0x21: /* TCPv6 address type */
767 iptype = US"IPv6";
768 memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.src_addr, 16);
769 inet_ntop(AF_INET6, &(tmpaddr6.sin6_addr), (char *)&tmpip6, sizeof(tmpip6));
770 if (!string_is_ip_address(US tmpip6,NULL))
771 {
772 DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
773 return ERRNO_PROXYFAIL;
774 }
775 proxy_host_address = sender_host_address;
776 sender_host_address = string_copy(US tmpip6);
777 tmpport = ntohs(hdr.v2.addr.ip6.src_port);
778 proxy_host_port = sender_host_port;
779 sender_host_port = tmpport;
780 /* Save dest ip/port */
781 memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.dst_addr, 16);
782 inet_ntop(AF_INET6, &(tmpaddr6.sin6_addr), (char *)&tmpip6, sizeof(tmpip6));
783 if (!string_is_ip_address(US tmpip6,NULL))
784 {
785 DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
a3c86431 786 return ERRNO_PROXYFAIL;
eb57651e
TL
787 }
788 proxy_target_address = string_copy(US tmpip6);
789 tmpport = ntohs(hdr.v2.addr.ip6.dst_port);
790 proxy_target_port = tmpport;
a3c86431 791 goto done;
eb57651e
TL
792 default:
793 DEBUG(D_receive)
794 debug_printf("Unsupported PROXYv2 connection type: 0x%02x\n",
795 hdr.v2.fam);
796 goto proxyfail;
a3c86431
TL
797 }
798 /* Unsupported protocol, keep local connection address */
799 break;
800 case 0x00: /* LOCAL command */
801 /* Keep local connection address for LOCAL */
802 break;
803 default:
eb57651e 804 DEBUG(D_receive)
36719342 805 debug_printf("Unsupported PROXYv2 command: 0x%x\n", cmd);
a3c86431
TL
806 goto proxyfail;
807 }
808 }
809else if (ret >= 8 &&
810 memcmp(hdr.v1.line, "PROXY", 5) == 0)
811 {
812 uschar *p = string_copy(hdr.v1.line);
813 uschar *end = memchr(p, '\r', ret - 1);
814 uschar *sp; /* Utility variables follow */
815 int tmp_port;
816 char *endc;
817
818 if (!end || end[1] != '\n')
819 {
820 DEBUG(D_receive) debug_printf("Partial or invalid PROXY header\n");
821 goto proxyfail;
822 }
823 *end = '\0'; /* Terminate the string */
824 size = end + 2 - hdr.v1.line; /* Skip header + CRLF */
825 DEBUG(D_receive) debug_printf("Detected PROXYv1 header\n");
826 /* Step through the string looking for the required fields. Ensure
827 strict adherance to required formatting, exit for any error. */
828 p += 5;
829 if (!isspace(*(p++)))
830 {
831 DEBUG(D_receive) debug_printf("Missing space after PROXY command\n");
832 goto proxyfail;
833 }
834 if (!Ustrncmp(p, CCS"TCP4", 4))
835 iptype = US"IPv4";
836 else if (!Ustrncmp(p,CCS"TCP6", 4))
837 iptype = US"IPv6";
838 else if (!Ustrncmp(p,CCS"UNKNOWN", 7))
839 {
840 iptype = US"Unknown";
841 goto done;
842 }
843 else
844 {
845 DEBUG(D_receive) debug_printf("Invalid TCP type\n");
846 goto proxyfail;
847 }
848
849 p += Ustrlen(iptype);
850 if (!isspace(*(p++)))
851 {
852 DEBUG(D_receive) debug_printf("Missing space after TCP4/6 command\n");
853 goto proxyfail;
854 }
855 /* Find the end of the arg */
856 if ((sp = Ustrchr(p, ' ')) == NULL)
857 {
858 DEBUG(D_receive)
859 debug_printf("Did not find proxied src %s\n", iptype);
860 goto proxyfail;
861 }
862 *sp = '\0';
863 if(!string_is_ip_address(p,NULL))
864 {
865 DEBUG(D_receive)
866 debug_printf("Proxied src arg is not an %s address\n", iptype);
867 goto proxyfail;
868 }
a3bddaa8 869 proxy_host_address = sender_host_address;
a3c86431
TL
870 sender_host_address = p;
871 p = sp + 1;
872 if ((sp = Ustrchr(p, ' ')) == NULL)
873 {
874 DEBUG(D_receive)
875 debug_printf("Did not find proxy dest %s\n", iptype);
876 goto proxyfail;
877 }
878 *sp = '\0';
879 if(!string_is_ip_address(p,NULL))
880 {
881 DEBUG(D_receive)
882 debug_printf("Proxy dest arg is not an %s address\n", iptype);
883 goto proxyfail;
884 }
eb57651e 885 proxy_target_address = p;
a3c86431
TL
886 p = sp + 1;
887 if ((sp = Ustrchr(p, ' ')) == NULL)
888 {
889 DEBUG(D_receive) debug_printf("Did not find proxied src port\n");
890 goto proxyfail;
891 }
892 *sp = '\0';
893 tmp_port = strtol(CCS p,&endc,10);
894 if (*endc || tmp_port == 0)
895 {
896 DEBUG(D_receive)
897 debug_printf("Proxied src port '%s' not an integer\n", p);
898 goto proxyfail;
899 }
a3bddaa8 900 proxy_host_port = sender_host_port;
a3c86431
TL
901 sender_host_port = tmp_port;
902 p = sp + 1;
903 if ((sp = Ustrchr(p, '\0')) == NULL)
904 {
905 DEBUG(D_receive) debug_printf("Did not find proxy dest port\n");
906 goto proxyfail;
907 }
908 tmp_port = strtol(CCS p,&endc,10);
909 if (*endc || tmp_port == 0)
910 {
911 DEBUG(D_receive)
912 debug_printf("Proxy dest port '%s' not an integer\n", p);
913 goto proxyfail;
914 }
eb57651e 915 proxy_target_port = tmp_port;
a3c86431
TL
916 /* Already checked for /r /n above. Good V1 header received. */
917 goto done;
918 }
919else
920 {
921 /* Wrong protocol */
eb57651e 922 DEBUG(D_receive) debug_printf("Invalid proxy protocol version negotiation\n");
a3c86431
TL
923 goto proxyfail;
924 }
925
926proxyfail:
a3bddaa8 927restore_socket_timeout(fd, get_ok, tvtmp, vslen);
a3c86431 928/* Don't flush any potential buffer contents. Any input should cause a
eb57651e 929 synchronization failure */
a3c86431
TL
930return FALSE;
931
932done:
a3bddaa8 933restore_socket_timeout(fd, get_ok, tvtmp, vslen);
a3c86431 934DEBUG(D_receive)
eb57651e 935 debug_printf("Valid %s sender from Proxy Protocol header\n", iptype);
a3c86431
TL
936return proxy_session;
937}
938#endif
939
059ec3d9
PH
940/*************************************************
941* Read one command line *
942*************************************************/
943
944/* Strictly, SMTP commands coming over the net are supposed to end with CRLF.
945There are sites that don't do this, and in any case internal SMTP probably
946should check only for LF. Consequently, we check here for LF only. The line
947ends up with [CR]LF removed from its end. If we get an overlong line, treat as
3ee512ff
PH
948an unknown command. The command is read into the global smtp_cmd_buffer so that
949it is available via $smtp_command.
059ec3d9
PH
950
951The character reading routine sets up a timeout for each block actually read
952from the input (which may contain more than one command). We set up a special
953signal handler that closes down the session on a timeout. Control does not
954return when it runs.
955
956Arguments:
957 check_sync if TRUE, check synchronization rules if global option is TRUE
958
959Returns: a code identifying the command (enumerated above)
960*/
961
962static int
963smtp_read_command(BOOL check_sync)
964{
965int c;
966int ptr = 0;
967smtp_cmd_list *p;
968BOOL hadnull = FALSE;
969
970os_non_restarting_signal(SIGALRM, command_timeout_handler);
971
972while ((c = (receive_getc)()) != '\n' && c != EOF)
973 {
3ee512ff 974 if (ptr >= smtp_cmd_buffer_size)
059ec3d9
PH
975 {
976 os_non_restarting_signal(SIGALRM, sigalrm_handler);
977 return OTHER_CMD;
978 }
979 if (c == 0)
980 {
981 hadnull = TRUE;
982 c = '?';
983 }
3ee512ff 984 smtp_cmd_buffer[ptr++] = c;
059ec3d9
PH
985 }
986
987receive_linecount++; /* For BSMTP errors */
988os_non_restarting_signal(SIGALRM, sigalrm_handler);
989
990/* If hit end of file, return pseudo EOF command. Whether we have a
991part-line already read doesn't matter, since this is an error state. */
992
993if (c == EOF) return EOF_CMD;
994
995/* Remove any CR and white space at the end of the line, and terminate the
996string. */
997
3ee512ff
PH
998while (ptr > 0 && isspace(smtp_cmd_buffer[ptr-1])) ptr--;
999smtp_cmd_buffer[ptr] = 0;
059ec3d9 1000
3ee512ff 1001DEBUG(D_receive) debug_printf("SMTP<< %s\n", smtp_cmd_buffer);
059ec3d9
PH
1002
1003/* NULLs are not allowed in SMTP commands */
1004
1005if (hadnull) return BADCHAR_CMD;
1006
1007/* Scan command list and return identity, having set the data pointer
1008to the start of the actual data characters. Check for SMTP synchronization
1009if required. */
1010
1011for (p = cmd_list; p < cmd_list_end; p++)
1012 {
a3c86431
TL
1013 #ifdef EXPERIMENTAL_PROXY
1014 /* Only allow QUIT command if Proxy Protocol parsing failed */
1015 if (proxy_session && proxy_session_failed)
1016 {
1017 if (p->cmd != QUIT_CMD)
1018 continue;
1019 }
1020 #endif
084efe8d
PH
1021 if (strncmpic(smtp_cmd_buffer, US p->name, p->len) == 0 &&
1022 (smtp_cmd_buffer[p->len-1] == ':' || /* "mail from:" or "rcpt to:" */
1023 smtp_cmd_buffer[p->len] == 0 ||
1024 smtp_cmd_buffer[p->len] == ' '))
059ec3d9
PH
1025 {
1026 if (smtp_inptr < smtp_inend && /* Outstanding input */
1027 p->cmd < sync_cmd_limit && /* Command should sync */
1028 check_sync && /* Local flag set */
1029 smtp_enforce_sync && /* Global flag set */
1030 sender_host_address != NULL && /* Not local input */
1031 !sender_host_notsocket) /* Really is a socket */
1032 return BADSYN_CMD;
1033
ca86f471
PH
1034 /* The variables $smtp_command and $smtp_command_argument point into the
1035 unmodified input buffer. A copy of the latter is taken for actual
1036 processing, so that it can be chopped up into separate parts if necessary,
1037 for example, when processing a MAIL command options such as SIZE that can
1038 follow the sender address. */
059ec3d9 1039
3ee512ff 1040 smtp_cmd_argument = smtp_cmd_buffer + p->len;
ca86f471
PH
1041 while (isspace(*smtp_cmd_argument)) smtp_cmd_argument++;
1042 Ustrcpy(smtp_data_buffer, smtp_cmd_argument);
1043 smtp_cmd_data = smtp_data_buffer;
059ec3d9
PH
1044
1045 /* Count non-mail commands from those hosts that are controlled in this
1046 way. The default is all hosts. We don't waste effort checking the list
1047 until we get a non-mail command, but then cache the result to save checking
1048 again. If there's a DEFER while checking the host, assume it's in the list.
1049
1050 Note that one instance of RSET, EHLO/HELO, and STARTTLS is allowed at the
1051 start of each incoming message by fiddling with the value in the table. */
1052
1053 if (!p->is_mail_cmd)
1054 {
1055 if (count_nonmail == TRUE_UNSET) count_nonmail =
1056 verify_check_host(&smtp_accept_max_nonmail_hosts) != FAIL;
1057 if (count_nonmail && ++nonmail_command_count > smtp_accept_max_nonmail)
1058 return TOO_MANY_NONMAIL_CMD;
1059 }
1060
ca86f471
PH
1061 /* If there is data for a command that does not expect it, generate the
1062 error here. */
059ec3d9 1063
ca86f471 1064 return (p->has_arg || *smtp_cmd_data == 0)? p->cmd : BADARG_CMD;
059ec3d9
PH
1065 }
1066 }
1067
a3c86431
TL
1068#ifdef EXPERIMENTAL_PROXY
1069/* Only allow QUIT command if Proxy Protocol parsing failed */
1070if (proxy_session && proxy_session_failed)
1071 return PROXY_FAIL_IGNORE_CMD;
1072#endif
1073
059ec3d9
PH
1074/* Enforce synchronization for unknown commands */
1075
1076if (smtp_inptr < smtp_inend && /* Outstanding input */
1077 check_sync && /* Local flag set */
1078 smtp_enforce_sync && /* Global flag set */
1079 sender_host_address != NULL && /* Not local input */
1080 !sender_host_notsocket) /* Really is a socket */
1081 return BADSYN_CMD;
1082
1083return OTHER_CMD;
1084}
1085
1086
1087
a14e5636
PH
1088/*************************************************
1089* Recheck synchronization *
1090*************************************************/
1091
1092/* Synchronization checks can never be perfect because a packet may be on its
1093way but not arrived when the check is done. Such checks can in any case only be
1094done when TLS is not in use. Normally, the checks happen when commands are
1095read: Exim ensures that there is no more input in the input buffer. In normal
1096cases, the response to the command will be fast, and there is no further check.
1097
1098However, for some commands an ACL is run, and that can include delays. In those
1099cases, it is useful to do another check on the input just before sending the
1100response. This also applies at the start of a connection. This function does
1101that check by means of the select() function, as long as the facility is not
1102disabled or inappropriate. A failure of select() is ignored.
1103
1104When there is unwanted input, we read it so that it appears in the log of the
1105error.
1106
1107Arguments: none
1108Returns: TRUE if all is well; FALSE if there is input pending
1109*/
1110
1111static BOOL
1112check_sync(void)
1113{
1114int fd, rc;
1115fd_set fds;
1116struct timeval tzero;
1117
1118if (!smtp_enforce_sync || sender_host_address == NULL ||
817d9f57 1119 sender_host_notsocket || tls_in.active >= 0)
a14e5636
PH
1120 return TRUE;
1121
1122fd = fileno(smtp_in);
1123FD_ZERO(&fds);
1124FD_SET(fd, &fds);
1125tzero.tv_sec = 0;
1126tzero.tv_usec = 0;
1127rc = select(fd + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL, &tzero);
1128
1129if (rc <= 0) return TRUE; /* Not ready to read */
1130rc = smtp_getc();
1131if (rc < 0) return TRUE; /* End of file or error */
1132
1133smtp_ungetc(rc);
1134rc = smtp_inend - smtp_inptr;
1135if (rc > 150) rc = 150;
1136smtp_inptr[rc] = 0;
1137return FALSE;
1138}
1139
1140
1141
059ec3d9
PH
1142/*************************************************
1143* Forced closedown of call *
1144*************************************************/
1145
1146/* This function is called from log.c when Exim is dying because of a serious
1147disaster, and also from some other places. If an incoming non-batched SMTP
1148channel is open, it swallows the rest of the incoming message if in the DATA
1149phase, sends the reply string, and gives an error to all subsequent commands
1150except QUIT. The existence of an SMTP call is detected by the non-NULLness of
1151smtp_in.
1152
8f128379
PH
1153Arguments:
1154 message SMTP reply string to send, excluding the code
1155
059ec3d9
PH
1156Returns: nothing
1157*/
1158
1159void
1160smtp_closedown(uschar *message)
1161{
1162if (smtp_in == NULL || smtp_batched_input) return;
1163receive_swallow_smtp();
1164smtp_printf("421 %s\r\n", message);
1165
1166for (;;)
1167 {
1168 switch(smtp_read_command(FALSE))
1169 {
1170 case EOF_CMD:
1171 return;
1172
1173 case QUIT_CMD:
1174 smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
1175 mac_smtp_fflush();
1176 return;
1177
1178 case RSET_CMD:
1179 smtp_printf("250 Reset OK\r\n");
1180 break;
1181
1182 default:
1183 smtp_printf("421 %s\r\n", message);
1184 break;
1185 }
1186 }
1187}
1188
1189
1190
1191
1192/*************************************************
1193* Set up connection info for logging *
1194*************************************************/
1195
1196/* This function is called when logging information about an SMTP connection.
1197It sets up appropriate source information, depending on the type of connection.
dac79d3e
PH
1198If sender_fullhost is NULL, we are at a very early stage of the connection;
1199just use the IP address.
059ec3d9
PH
1200
1201Argument: none
1202Returns: a string describing the connection
1203*/
1204
1205uschar *
1206smtp_get_connection_info(void)
1207{
dac79d3e
PH
1208uschar *hostname = (sender_fullhost == NULL)?
1209 sender_host_address : sender_fullhost;
1210
059ec3d9 1211if (host_checking)
dac79d3e 1212 return string_sprintf("SMTP connection from %s", hostname);
059ec3d9
PH
1213
1214if (sender_host_unknown || sender_host_notsocket)
1215 return string_sprintf("SMTP connection from %s", sender_ident);
1216
1217if (is_inetd)
dac79d3e 1218 return string_sprintf("SMTP connection from %s (via inetd)", hostname);
059ec3d9
PH
1219
1220if ((log_extra_selector & LX_incoming_interface) != 0 &&
1221 interface_address != NULL)
dac79d3e 1222 return string_sprintf("SMTP connection from %s I=[%s]:%d", hostname,
059ec3d9
PH
1223 interface_address, interface_port);
1224
dac79d3e 1225return string_sprintf("SMTP connection from %s", hostname);
059ec3d9
PH
1226}
1227
1228
1229
e45a1c37 1230#ifdef SUPPORT_TLS
887291d2
JH
1231/* Append TLS-related information to a log line
1232
1233Arguments:
1234 s String under construction: allocated string to extend, or NULL
1235 sizep Pointer to current allocation size (update on return), or NULL
1236 ptrp Pointer to index for new entries in string (update on return), or NULL
1237
1238Returns: Allocated string or NULL
1239*/
e45a1c37
JH
1240static uschar *
1241s_tlslog(uschar * s, int * sizep, int * ptrp)
1242{
1243 int size = sizep ? *sizep : 0;
1244 int ptr = ptrp ? *ptrp : 0;
1245
1246 if ((log_extra_selector & LX_tls_cipher) != 0 && tls_in.cipher != NULL)
1247 s = string_append(s, &size, &ptr, 2, US" X=", tls_in.cipher);
1248 if ((log_extra_selector & LX_tls_certificate_verified) != 0 &&
1249 tls_in.cipher != NULL)
1250 s = string_append(s, &size, &ptr, 2, US" CV=",
1251 tls_in.certificate_verified? "yes":"no");
1252 if ((log_extra_selector & LX_tls_peerdn) != 0 && tls_in.peerdn != NULL)
1253 s = string_append(s, &size, &ptr, 3, US" DN=\"",
1254 string_printing(tls_in.peerdn), US"\"");
1255 if ((log_extra_selector & LX_tls_sni) != 0 && tls_in.sni != NULL)
1256 s = string_append(s, &size, &ptr, 3, US" SNI=\"",
1257 string_printing(tls_in.sni), US"\"");
1258
67d81c10
JH
1259 if (s)
1260 {
1261 s[ptr] = '\0';
1262 if (sizep) *sizep = size;
1263 if (ptrp) *ptrp = ptr;
1264 }
e45a1c37
JH
1265 return s;
1266}
1267#endif
1268
b4ed4da0
PH
1269/*************************************************
1270* Log lack of MAIL if so configured *
1271*************************************************/
1272
1273/* This function is called when an SMTP session ends. If the log selector
1274smtp_no_mail is set, write a log line giving some details of what has happened
1275in the SMTP session.
1276
1277Arguments: none
1278Returns: nothing
1279*/
1280
1281void
1282smtp_log_no_mail(void)
1283{
1284int size, ptr, i;
1285uschar *s, *sep;
1286
1287if (smtp_mailcmd_count > 0 || (log_extra_selector & LX_smtp_no_mail) == 0)
1288 return;
1289
1290s = NULL;
1291size = ptr = 0;
1292
1293if (sender_host_authenticated != NULL)
1294 {
1295 s = string_append(s, &size, &ptr, 2, US" A=", sender_host_authenticated);
1296 if (authenticated_id != NULL)
1297 s = string_append(s, &size, &ptr, 2, US":", authenticated_id);
1298 }
1299
1300#ifdef SUPPORT_TLS
e45a1c37 1301s = s_tlslog(s, &size, &ptr);
3f0945ff 1302#endif
b4ed4da0
PH
1303
1304sep = (smtp_connection_had[SMTP_HBUFF_SIZE-1] != SCH_NONE)?
1305 US" C=..." : US" C=";
1306for (i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1307 {
1308 if (smtp_connection_had[i] != SCH_NONE)
1309 {
1310 s = string_append(s, &size, &ptr, 2, sep,
1311 smtp_names[smtp_connection_had[i]]);
1312 sep = US",";
1313 }
1314 }
1315
1316for (i = 0; i < smtp_ch_index; i++)
1317 {
1318 s = string_append(s, &size, &ptr, 2, sep, smtp_names[smtp_connection_had[i]]);
1319 sep = US",";
1320 }
1321
1322if (s != NULL) s[ptr] = 0; else s = US"";
1323log_write(0, LOG_MAIN, "no MAIL in SMTP connection from %s D=%s%s",
1324 host_and_ident(FALSE),
19050083
JH
1325 readconf_printtime( (int) ((long)time(NULL) - (long)smtp_connection_start)),
1326 s);
b4ed4da0
PH
1327}
1328
1329
1330
059ec3d9
PH
1331/*************************************************
1332* Check HELO line and set sender_helo_name *
1333*************************************************/
1334
1335/* Check the format of a HELO line. The data for HELO/EHLO is supposed to be
1336the domain name of the sending host, or an ip literal in square brackets. The
1337arrgument is placed in sender_helo_name, which is in malloc store, because it
1338must persist over multiple incoming messages. If helo_accept_junk is set, this
1339host is permitted to send any old junk (needed for some broken hosts).
1340Otherwise, helo_allow_chars can be used for rogue characters in general
1341(typically people want to let in underscores).
1342
1343Argument:
1344 s the data portion of the line (already past any white space)
1345
1346Returns: TRUE or FALSE
1347*/
1348
1349static BOOL
1350check_helo(uschar *s)
1351{
1352uschar *start = s;
1353uschar *end = s + Ustrlen(s);
1354BOOL yield = helo_accept_junk;
1355
1356/* Discard any previous helo name */
1357
1358if (sender_helo_name != NULL)
1359 {
1360 store_free(sender_helo_name);
1361 sender_helo_name = NULL;
1362 }
1363
1364/* Skip tests if junk is permitted. */
1365
1366if (!yield)
1367 {
1368 /* Allow the new standard form for IPv6 address literals, namely,
1369 [IPv6:....], and because someone is bound to use it, allow an equivalent
1370 IPv4 form. Allow plain addresses as well. */
1371
1372 if (*s == '[')
1373 {
1374 if (end[-1] == ']')
1375 {
1376 end[-1] = 0;
1377 if (strncmpic(s, US"[IPv6:", 6) == 0)
1378 yield = (string_is_ip_address(s+6, NULL) == 6);
1379 else if (strncmpic(s, US"[IPv4:", 6) == 0)
1380 yield = (string_is_ip_address(s+6, NULL) == 4);
1381 else
1382 yield = (string_is_ip_address(s+1, NULL) != 0);
1383 end[-1] = ']';
1384 }
1385 }
1386
1387 /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
1388 that have been configured (usually underscore - sigh). */
1389
1390 else if (*s != 0)
1391 {
1392 yield = TRUE;
1393 while (*s != 0)
1394 {
1395 if (!isalnum(*s) && *s != '.' && *s != '-' &&
1396 Ustrchr(helo_allow_chars, *s) == NULL)
1397 {
1398 yield = FALSE;
1399 break;
1400 }
1401 s++;
1402 }
1403 }
1404 }
1405
1406/* Save argument if OK */
1407
1408if (yield) sender_helo_name = string_copy_malloc(start);
1409return yield;
1410}
1411
1412
1413
1414
1415
1416/*************************************************
1417* Extract SMTP command option *
1418*************************************************/
1419
ca86f471 1420/* This function picks the next option setting off the end of smtp_cmd_data. It
059ec3d9
PH
1421is called for MAIL FROM and RCPT TO commands, to pick off the optional ESMTP
1422things that can appear there.
1423
1424Arguments:
1425 name point this at the name
1426 value point this at the data string
1427
1428Returns: TRUE if found an option
1429*/
1430
1431static BOOL
1432extract_option(uschar **name, uschar **value)
1433{
1434uschar *n;
ca86f471 1435uschar *v = smtp_cmd_data + Ustrlen(smtp_cmd_data) - 1;
059ec3d9
PH
1436while (isspace(*v)) v--;
1437v[1] = 0;
ca86f471 1438while (v > smtp_cmd_data && *v != '=' && !isspace(*v)) v--;
059ec3d9
PH
1439
1440n = v;
fd98a5c6
JH
1441if (*v == '=')
1442{
1443 while(isalpha(n[-1])) n--;
1444 /* RFC says SP, but TAB seen in wild and other major MTAs accept it */
1445 if (!isspace(n[-1])) return FALSE;
1446 n[-1] = 0;
1447}
1448else
1449{
1450 n++;
1451 if (v == smtp_cmd_data) return FALSE;
1452}
059ec3d9 1453*v++ = 0;
fd98a5c6 1454*name = n;
059ec3d9
PH
1455*value = v;
1456return TRUE;
1457}
1458
1459
1460
1461
1462
059ec3d9
PH
1463/*************************************************
1464* Reset for new message *
1465*************************************************/
1466
1467/* This function is called whenever the SMTP session is reset from
1468within either of the setup functions.
1469
1470Argument: the stacking pool storage reset point
1471Returns: nothing
1472*/
1473
1474static void
1475smtp_reset(void *reset_point)
1476{
059ec3d9
PH
1477store_reset(reset_point);
1478recipients_list = NULL;
1479rcpt_count = rcpt_defer_count = rcpt_fail_count =
1480 raw_recipients_count = recipients_count = recipients_list_max = 0;
2e5b33cd 1481cancel_cutthrough_connection("smtp reset");
2e0c1448 1482message_linecount = 0;
059ec3d9 1483message_size = -1;
71fafd95 1484acl_added_headers = NULL;
e7568d51 1485acl_removed_headers = NULL;
059ec3d9 1486queue_only_policy = FALSE;
2679d413
PH
1487rcpt_smtp_response = NULL;
1488rcpt_smtp_response_same = TRUE;
1489rcpt_in_progress = FALSE;
69358f02 1490deliver_freeze = FALSE; /* Can be set by ACL */
6a3f1455 1491freeze_tell = freeze_tell_config; /* Can be set by ACL */
29aba418 1492fake_response = OK; /* Can be set by ACL */
6951ac6c 1493#ifdef WITH_CONTENT_SCAN
8523533c
TK
1494no_mbox_unspool = FALSE; /* Can be set by ACL */
1495#endif
69358f02 1496submission_mode = FALSE; /* Can be set by ACL */
f4ee74ac 1497suppress_local_fixups = suppress_local_fixups_default; /* Can be set by ACL */
69358f02
PH
1498active_local_from_check = local_from_check; /* Can be set by ACL */
1499active_local_sender_retain = local_sender_retain; /* Can be set by ACL */
059ec3d9 1500sender_address = NULL;
2fe1a124 1501submission_name = NULL; /* Can be set by ACL */
059ec3d9
PH
1502raw_sender = NULL; /* After SMTP rewrite, before qualifying */
1503sender_address_unrewritten = NULL; /* Set only after verify rewrite */
1504sender_verified_list = NULL; /* No senders verified */
1505memset(sender_address_cache, 0, sizeof(sender_address_cache));
1506memset(sender_domain_cache, 0, sizeof(sender_domain_cache));
6c1c3d1d 1507
d1a13eea
JH
1508prdr_requested = FALSE;
1509
6c1c3d1d
WB
1510/* Reset the DSN flags */
1511dsn_ret = 0;
1512dsn_envid = NULL;
6c1c3d1d 1513
059ec3d9 1514authenticated_sender = NULL;
8523533c
TK
1515#ifdef EXPERIMENTAL_BRIGHTMAIL
1516bmi_run = 0;
1517bmi_verdicts = NULL;
1518#endif
80a47a2c 1519#ifndef DISABLE_DKIM
9e5d6b55 1520dkim_signers = NULL;
80a47a2c
TK
1521dkim_disable_verify = FALSE;
1522dkim_collect_input = FALSE;
f7572e5a 1523#endif
8523533c
TK
1524#ifdef EXPERIMENTAL_SPF
1525spf_header_comment = NULL;
1526spf_received = NULL;
8e669ac1 1527spf_result = NULL;
8523533c
TK
1528spf_smtp_comment = NULL;
1529#endif
d1a13eea
JH
1530#ifdef EXPERIMENTAL_INTERNATIONAL
1531message_smtputf8 = FALSE;
1532#endif
059ec3d9
PH
1533body_linecount = body_zerocount = 0;
1534
870f6ba8
TF
1535sender_rate = sender_rate_limit = sender_rate_period = NULL;
1536ratelimiters_mail = NULL; /* Updated by ratelimit ACL condition */
1537 /* Note that ratelimiters_conn persists across resets. */
1538
38a0a95f 1539/* Reset message ACL variables */
47ca6d6c 1540
38a0a95f 1541acl_var_m = NULL;
059ec3d9
PH
1542
1543/* The message body variables use malloc store. They may be set if this is
1544not the first message in an SMTP session and the previous message caused them
1545to be referenced in an ACL. */
1546
1547if (message_body != NULL)
1548 {
1549 store_free(message_body);
1550 message_body = NULL;
1551 }
1552
1553if (message_body_end != NULL)
1554 {
1555 store_free(message_body_end);
1556 message_body_end = NULL;
1557 }
1558
1559/* Warning log messages are also saved in malloc store. They are saved to avoid
1560repetition in the same message, but it seems right to repeat them for different
4e88a19f 1561messages. */
059ec3d9
PH
1562
1563while (acl_warn_logged != NULL)
1564 {
1565 string_item *this = acl_warn_logged;
1566 acl_warn_logged = acl_warn_logged->next;
1567 store_free(this);
1568 }
1569}
1570
1571
1572
1573
1574
1575/*************************************************
1576* Initialize for incoming batched SMTP message *
1577*************************************************/
1578
1579/* This function is called from smtp_setup_msg() in the case when
1580smtp_batched_input is true. This happens when -bS is used to pass a whole batch
1581of messages in one file with SMTP commands between them. All errors must be
1582reported by sending a message, and only MAIL FROM, RCPT TO, and DATA are
1583relevant. After an error on a sender, or an invalid recipient, the remainder
1584of the message is skipped. The value of received_protocol is already set.
1585
1586Argument: none
1587Returns: > 0 message successfully started (reached DATA)
1588 = 0 QUIT read or end of file reached
1589 < 0 should not occur
1590*/
1591
1592static int
1593smtp_setup_batch_msg(void)
1594{
1595int done = 0;
1596void *reset_point = store_get(0);
1597
1598/* Save the line count at the start of each transaction - single commands
1599like HELO and RSET count as whole transactions. */
1600
1601bsmtp_transaction_linecount = receive_linecount;
1602
1603if ((receive_feof)()) return 0; /* Treat EOF as QUIT */
1604
1605smtp_reset(reset_point); /* Reset for start of message */
1606
1607/* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
1608value. The values are 2 larger than the required yield of the function. */
1609
1610while (done <= 0)
1611 {
1612 uschar *errmess;
1613 uschar *recipient = NULL;
1614 int start, end, sender_domain, recipient_domain;
1615
1616 switch(smtp_read_command(FALSE))
1617 {
1618 /* The HELO/EHLO commands set sender_address_helo if they have
1619 valid data; otherwise they are ignored, except that they do
1620 a reset of the state. */
1621
1622 case HELO_CMD:
1623 case EHLO_CMD:
1624
ca86f471 1625 check_helo(smtp_cmd_data);
059ec3d9
PH
1626 /* Fall through */
1627
1628 case RSET_CMD:
1629 smtp_reset(reset_point);
1630 bsmtp_transaction_linecount = receive_linecount;
1631 break;
1632
1633
1634 /* The MAIL FROM command requires an address as an operand. All we
1635 do here is to parse it for syntactic correctness. The form "<>" is
1636 a special case which converts into an empty string. The start/end
1637 pointers in the original are not used further for this address, as
1638 it is the canonical extracted address which is all that is kept. */
1639
1640 case MAIL_CMD:
1641 if (sender_address != NULL)
1642 /* The function moan_smtp_batch() does not return. */
3ee512ff 1643 moan_smtp_batch(smtp_cmd_buffer, "503 Sender already given");
059ec3d9 1644
ca86f471 1645 if (smtp_cmd_data[0] == 0)
059ec3d9 1646 /* The function moan_smtp_batch() does not return. */
3ee512ff 1647 moan_smtp_batch(smtp_cmd_buffer, "501 MAIL FROM must have an address operand");
059ec3d9
PH
1648
1649 /* Reset to start of message */
1650
1651 smtp_reset(reset_point);
1652
1653 /* Apply SMTP rewrite */
1654
1655 raw_sender = ((rewrite_existflags & rewrite_smtp) != 0)?
ca86f471
PH
1656 rewrite_one(smtp_cmd_data, rewrite_smtp|rewrite_smtp_sender, NULL, FALSE,
1657 US"", global_rewrite_rules) : smtp_cmd_data;
059ec3d9
PH
1658
1659 /* Extract the address; the TRUE flag allows <> as valid */
1660
1661 raw_sender =
1662 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
1663 TRUE);
1664
1665 if (raw_sender == NULL)
1666 /* The function moan_smtp_batch() does not return. */
3ee512ff 1667 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
059ec3d9
PH
1668
1669 sender_address = string_copy(raw_sender);
1670
1671 /* Qualify unqualified sender addresses if permitted to do so. */
1672
1673 if (sender_domain == 0 && sender_address[0] != 0 && sender_address[0] != '@')
1674 {
1675 if (allow_unqualified_sender)
1676 {
1677 sender_address = rewrite_address_qualify(sender_address, FALSE);
1678 DEBUG(D_receive) debug_printf("unqualified address %s accepted "
1679 "and rewritten\n", raw_sender);
1680 }
1681 /* The function moan_smtp_batch() does not return. */
3ee512ff 1682 else moan_smtp_batch(smtp_cmd_buffer, "501 sender address must contain "
059ec3d9
PH
1683 "a domain");
1684 }
1685 break;
1686
1687
1688 /* The RCPT TO command requires an address as an operand. All we do
1689 here is to parse it for syntactic correctness. There may be any number
1690 of RCPT TO commands, specifying multiple senders. We build them all into
1691 a data structure that is in argc/argv format. The start/end values
1692 given by parse_extract_address are not used, as we keep only the
1693 extracted address. */
1694
1695 case RCPT_CMD:
1696 if (sender_address == NULL)
1697 /* The function moan_smtp_batch() does not return. */
3ee512ff 1698 moan_smtp_batch(smtp_cmd_buffer, "503 No sender yet given");
059ec3d9 1699
ca86f471 1700 if (smtp_cmd_data[0] == 0)
059ec3d9 1701 /* The function moan_smtp_batch() does not return. */
3ee512ff 1702 moan_smtp_batch(smtp_cmd_buffer, "501 RCPT TO must have an address operand");
059ec3d9
PH
1703
1704 /* Check maximum number allowed */
1705
1706 if (recipients_max > 0 && recipients_count + 1 > recipients_max)
1707 /* The function moan_smtp_batch() does not return. */
3ee512ff 1708 moan_smtp_batch(smtp_cmd_buffer, "%s too many recipients",
059ec3d9
PH
1709 recipients_max_reject? "552": "452");
1710
1711 /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
1712 recipient address */
1713
1714 recipient = ((rewrite_existflags & rewrite_smtp) != 0)?
ca86f471
PH
1715 rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
1716 global_rewrite_rules) : smtp_cmd_data;
059ec3d9
PH
1717
1718 /* rfc821_domains = TRUE; << no longer needed */
1719 recipient = parse_extract_address(recipient, &errmess, &start, &end,
1720 &recipient_domain, FALSE);
1721 /* rfc821_domains = FALSE; << no longer needed */
1722
1723 if (recipient == NULL)
1724 /* The function moan_smtp_batch() does not return. */
3ee512ff 1725 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
059ec3d9
PH
1726
1727 /* If the recipient address is unqualified, qualify it if permitted. Then
1728 add it to the list of recipients. */
1729
1730 if (recipient_domain == 0)
1731 {
1732 if (allow_unqualified_recipient)
1733 {
1734 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
1735 recipient);
1736 recipient = rewrite_address_qualify(recipient, TRUE);
1737 }
1738 /* The function moan_smtp_batch() does not return. */
3ee512ff 1739 else moan_smtp_batch(smtp_cmd_buffer, "501 recipient address must contain "
059ec3d9
PH
1740 "a domain");
1741 }
1742 receive_add_recipient(recipient, -1);
1743 break;
1744
1745
1746 /* The DATA command is legal only if it follows successful MAIL FROM
1747 and RCPT TO commands. This function is complete when a valid DATA
1748 command is encountered. */
1749
1750 case DATA_CMD:
1751 if (sender_address == NULL || recipients_count <= 0)
1752 {
1753 /* The function moan_smtp_batch() does not return. */
1754 if (sender_address == NULL)
3ee512ff 1755 moan_smtp_batch(smtp_cmd_buffer,
059ec3d9
PH
1756 "503 MAIL FROM:<sender> command must precede DATA");
1757 else
3ee512ff 1758 moan_smtp_batch(smtp_cmd_buffer,
059ec3d9
PH
1759 "503 RCPT TO:<recipient> must precede DATA");
1760 }
1761 else
1762 {
1763 done = 3; /* DATA successfully achieved */
1764 message_ended = END_NOTENDED; /* Indicate in middle of message */
1765 }
1766 break;
1767
1768
1769 /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
1770
1771 case VRFY_CMD:
1772 case EXPN_CMD:
1773 case HELP_CMD:
1774 case NOOP_CMD:
1775 case ETRN_CMD:
1776 bsmtp_transaction_linecount = receive_linecount;
1777 break;
1778
1779
1780 case EOF_CMD:
1781 case QUIT_CMD:
1782 done = 2;
1783 break;
1784
1785
1786 case BADARG_CMD:
1787 /* The function moan_smtp_batch() does not return. */
3ee512ff 1788 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected argument data");
059ec3d9
PH
1789 break;
1790
1791
1792 case BADCHAR_CMD:
1793 /* The function moan_smtp_batch() does not return. */
3ee512ff 1794 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected NULL in SMTP command");
059ec3d9
PH
1795 break;
1796
1797
1798 default:
1799 /* The function moan_smtp_batch() does not return. */
3ee512ff 1800 moan_smtp_batch(smtp_cmd_buffer, "500 Command unrecognized");
059ec3d9
PH
1801 break;
1802 }
1803 }
1804
1805return done - 2; /* Convert yield values */
1806}
1807
1808
1809
1810
1811/*************************************************
1812* Start an SMTP session *
1813*************************************************/
1814
1815/* This function is called at the start of an SMTP session. Thereafter,
1816smtp_setup_msg() is called to initiate each separate message. This
1817function does host-specific testing, and outputs the banner line.
1818
1819Arguments: none
1820Returns: FALSE if the session can not continue; something has
1821 gone wrong, or the connection to the host is blocked
1822*/
1823
1824BOOL
1825smtp_start_session(void)
1826{
1827int size = 256;
4e88a19f
PH
1828int ptr, esclen;
1829uschar *user_msg, *log_msg;
1830uschar *code, *esc;
059ec3d9
PH
1831uschar *p, *s, *ss;
1832
b4ed4da0
PH
1833smtp_connection_start = time(NULL);
1834for (smtp_ch_index = 0; smtp_ch_index < SMTP_HBUFF_SIZE; smtp_ch_index++)
1835 smtp_connection_had[smtp_ch_index] = SCH_NONE;
1836smtp_ch_index = 0;
1837
00f00ca5
PH
1838/* Default values for certain variables */
1839
059ec3d9 1840helo_seen = esmtp = helo_accept_junk = FALSE;
b4ed4da0 1841smtp_mailcmd_count = 0;
059ec3d9
PH
1842count_nonmail = TRUE_UNSET;
1843synprot_error_count = unknown_command_count = nonmail_command_count = 0;
1844smtp_delay_mail = smtp_rlm_base;
1845auth_advertised = FALSE;
1846pipelining_advertised = FALSE;
cf8b11a5 1847pipelining_enable = TRUE;
059ec3d9 1848sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
8f128379 1849smtp_exit_function_called = FALSE; /* For avoiding loop in not-quit exit */
059ec3d9
PH
1850
1851memset(sender_host_cache, 0, sizeof(sender_host_cache));
1852
33d73e3b
PH
1853/* If receiving by -bs from a trusted user, or testing with -bh, we allow
1854authentication settings from -oMaa to remain in force. */
1855
1856if (!host_checking && !sender_host_notsocket) sender_host_authenticated = NULL;
059ec3d9
PH
1857authenticated_by = NULL;
1858
1859#ifdef SUPPORT_TLS
817d9f57 1860tls_in.cipher = tls_in.peerdn = NULL;
9d1c15ef
JH
1861tls_in.ourcert = tls_in.peercert = NULL;
1862tls_in.sni = NULL;
44662487 1863tls_in.ocsp = OCSP_NOT_REQ;
059ec3d9
PH
1864tls_advertised = FALSE;
1865#endif
6c1c3d1d 1866dsn_advertised = FALSE;
d1a13eea
JH
1867#ifdef EXPERIMENTAL_INTERNATIONAL
1868smtputf8_advertised = FALSE;
1869#endif
059ec3d9
PH
1870
1871/* Reset ACL connection variables */
1872
38a0a95f 1873acl_var_c = NULL;
059ec3d9 1874
ca86f471 1875/* Allow for trailing 0 in the command and data buffers. */
3ee512ff 1876
ca86f471 1877smtp_cmd_buffer = (uschar *)malloc(2*smtp_cmd_buffer_size + 2);
3ee512ff 1878if (smtp_cmd_buffer == NULL)
059ec3d9
PH
1879 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1880 "malloc() failed for SMTP command buffer");
2416c261 1881smtp_cmd_buffer[0] = 0;
ca86f471 1882smtp_data_buffer = smtp_cmd_buffer + smtp_cmd_buffer_size + 1;
059ec3d9
PH
1883
1884/* For batched input, the protocol setting can be overridden from the
1885command line by a trusted caller. */
1886
1887if (smtp_batched_input)
1888 {
1889 if (received_protocol == NULL) received_protocol = US"local-bsmtp";
1890 }
1891
1892/* For non-batched SMTP input, the protocol setting is forced here. It will be
1893reset later if any of EHLO/AUTH/STARTTLS are received. */
1894
1895else
1896 received_protocol =
1897 protocols[pnormal] + ((sender_host_address != NULL)? pnlocal : 0);
1898
1899/* Set up the buffer for inputting using direct read() calls, and arrange to
1900call the local functions instead of the standard C ones. */
1901
1902smtp_inbuffer = (uschar *)malloc(in_buffer_size);
1903if (smtp_inbuffer == NULL)
1904 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malloc() failed for SMTP input buffer");
1905receive_getc = smtp_getc;
1906receive_ungetc = smtp_ungetc;
1907receive_feof = smtp_feof;
1908receive_ferror = smtp_ferror;
58eb016e 1909receive_smtp_buffered = smtp_buffered;
059ec3d9
PH
1910smtp_inptr = smtp_inend = smtp_inbuffer;
1911smtp_had_eof = smtp_had_error = 0;
1912
1913/* Set up the message size limit; this may be host-specific */
1914
d45b1de8
PH
1915thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
1916if (expand_string_message != NULL)
059ec3d9
PH
1917 {
1918 if (thismessage_size_limit == -1)
1919 log_write(0, LOG_MAIN|LOG_PANIC, "unable to expand message_size_limit: "
1920 "%s", expand_string_message);
1921 else
1922 log_write(0, LOG_MAIN|LOG_PANIC, "invalid message_size_limit: "
1923 "%s", expand_string_message);
1924 smtp_closedown(US"Temporary local problem - please try later");
1925 return FALSE;
1926 }
1927
1928/* When a message is input locally via the -bs or -bS options, sender_host_
1929unknown is set unless -oMa was used to force an IP address, in which case it
1930is checked like a real remote connection. When -bs is used from inetd, this
1931flag is not set, causing the sending host to be checked. The code that deals
1932with IP source routing (if configured) is never required for -bs or -bS and
1933the flag sender_host_notsocket is used to suppress it.
1934
1935If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
1936reserve for certain hosts and/or networks. */
1937
1938if (!sender_host_unknown)
1939 {
1940 int rc;
1941 BOOL reserved_host = FALSE;
1942
1943 /* Look up IP options (source routing info) on the socket if this is not an
1944 -oMa "host", and if any are found, log them and drop the connection.
1945
1946 Linux (and others now, see below) is different to everyone else, so there
1947 has to be some conditional compilation here. Versions of Linux before 2.1.15
1948 used a structure whose name was "options". Somebody finally realized that
1949 this name was silly, and it got changed to "ip_options". I use the
1950 newer name here, but there is a fudge in the script that sets up os.h
1951 to define a macro in older Linux systems.
1952
1953 Sigh. Linux is a fast-moving target. Another generation of Linux uses
1954 glibc 2, which has chosen ip_opts for the structure name. This is now
1955 really a glibc thing rather than a Linux thing, so the condition name
1956 has been changed to reflect this. It is relevant also to GNU/Hurd.
1957
1958 Mac OS 10.x (Darwin) is like the later glibc versions, but without the
1959 setting of the __GLIBC__ macro, so we can't detect it automatically. There's
1960 a special macro defined in the os.h file.
1961
1962 Some DGUX versions on older hardware appear not to support IP options at
1963 all, so there is now a general macro which can be set to cut out this
1964 support altogether.
1965
1966 How to do this properly in IPv6 is not yet known. */
1967
1968 #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
1969
1970 #ifdef GLIBC_IP_OPTIONS
1971 #if (!defined __GLIBC__) || (__GLIBC__ < 2)
1972 #define OPTSTYLE 1
1973 #else
1974 #define OPTSTYLE 2
1975 #endif
1976 #elif defined DARWIN_IP_OPTIONS
1977 #define OPTSTYLE 2
1978 #else
1979 #define OPTSTYLE 3
1980 #endif
1981
1982 if (!host_checking && !sender_host_notsocket)
1983 {
1984 #if OPTSTYLE == 1
36a3b041 1985 EXIM_SOCKLEN_T optlen = sizeof(struct ip_options) + MAX_IPOPTLEN;
059ec3d9
PH
1986 struct ip_options *ipopt = store_get(optlen);
1987 #elif OPTSTYLE == 2
1988 struct ip_opts ipoptblock;
1989 struct ip_opts *ipopt = &ipoptblock;
36a3b041 1990 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
059ec3d9
PH
1991 #else
1992 struct ipoption ipoptblock;
1993 struct ipoption *ipopt = &ipoptblock;
36a3b041 1994 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
059ec3d9
PH
1995 #endif
1996
1997 /* Occasional genuine failures of getsockopt() have been seen - for
1998 example, "reset by peer". Therefore, just log and give up on this
1999 call, unless the error is ENOPROTOOPT. This error is given by systems
2000 that have the interfaces but not the mechanism - e.g. GNU/Hurd at the time
2001 of writing. So for that error, carry on - we just can't do an IP options
2002 check. */
2003
2004 DEBUG(D_receive) debug_printf("checking for IP options\n");
2005
2006 if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, (uschar *)(ipopt),
2007 &optlen) < 0)
2008 {
2009 if (errno != ENOPROTOOPT)
2010 {
2011 log_write(0, LOG_MAIN, "getsockopt() failed from %s: %s",
2012 host_and_ident(FALSE), strerror(errno));
2013 smtp_printf("451 SMTP service not available\r\n");
2014 return FALSE;
2015 }
2016 }
2017
2018 /* Deal with any IP options that are set. On the systems I have looked at,
2019 the value of MAX_IPOPTLEN has been 40, meaning that there should never be
2020 more logging data than will fit in big_buffer. Nevertheless, after somebody
2021 questioned this code, I've added in some paranoid checking. */
2022
2023 else if (optlen > 0)
2024 {
2025 uschar *p = big_buffer;
2026 uschar *pend = big_buffer + big_buffer_size;
2027 uschar *opt, *adptr;
2028 int optcount;
2029 struct in_addr addr;
2030
2031 #if OPTSTYLE == 1
2032 uschar *optstart = (uschar *)(ipopt->__data);
2033 #elif OPTSTYLE == 2
2034 uschar *optstart = (uschar *)(ipopt->ip_opts);
2035 #else
2036 uschar *optstart = (uschar *)(ipopt->ipopt_list);
2037 #endif
2038
2039 DEBUG(D_receive) debug_printf("IP options exist\n");
2040
2041 Ustrcpy(p, "IP options on incoming call:");
2042 p += Ustrlen(p);
2043
2044 for (opt = optstart; opt != NULL &&
2045 opt < (uschar *)(ipopt) + optlen;)
2046 {
2047 switch (*opt)
2048 {
2049 case IPOPT_EOL:
2050 opt = NULL;
2051 break;
2052
2053 case IPOPT_NOP:
2054 opt++;
2055 break;
2056
2057 case IPOPT_SSRR:
2058 case IPOPT_LSRR:
2059 if (!string_format(p, pend-p, " %s [@%s",
2060 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2061 #if OPTSTYLE == 1
2062 inet_ntoa(*((struct in_addr *)(&(ipopt->faddr))))))
2063 #elif OPTSTYLE == 2
2064 inet_ntoa(ipopt->ip_dst)))
2065 #else
2066 inet_ntoa(ipopt->ipopt_dst)))
2067 #endif
2068 {
2069 opt = NULL;
2070 break;
2071 }
2072
2073 p += Ustrlen(p);
2074 optcount = (opt[1] - 3) / sizeof(struct in_addr);
2075 adptr = opt + 3;
2076 while (optcount-- > 0)
2077 {
2078 memcpy(&addr, adptr, sizeof(addr));
2079 if (!string_format(p, pend - p - 1, "%s%s",
2080 (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2081 {
2082 opt = NULL;
2083 break;
2084 }
2085 p += Ustrlen(p);
2086 adptr += sizeof(struct in_addr);
2087 }
2088 *p++ = ']';
2089 opt += opt[1];
2090 break;
2091
2092 default:
2093 {
2094 int i;
2095 if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2096 Ustrcat(p, "[ ");
2097 p += 2;
2098 for (i = 0; i < opt[1]; i++)
2099 {
2100 sprintf(CS p, "%2.2x ", opt[i]);
2101 p += 3;
2102 }
2103 *p++ = ']';
2104 }
2105 opt += opt[1];
2106 break;
2107 }
2108 }
2109
2110 *p = 0;
2111 log_write(0, LOG_MAIN, "%s", big_buffer);
2112
2113 /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2114
2115 log_write(0, LOG_MAIN|LOG_REJECT,
2116 "connection from %s refused (IP options)", host_and_ident(FALSE));
2117
2118 smtp_printf("554 SMTP service not available\r\n");
2119 return FALSE;
2120 }
2121
2122 /* Length of options = 0 => there are no options */
2123
2124 else DEBUG(D_receive) debug_printf("no IP options found\n");
2125 }
2126 #endif /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2127
2128 /* Set keep-alive in socket options. The option is on by default. This
2129 setting is an attempt to get rid of some hanging connections that stick in
2130 read() when the remote end (usually a dialup) goes away. */
2131
2132 if (smtp_accept_keepalive && !sender_host_notsocket)
2133 ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2134
2135 /* If the current host matches host_lookup, set the name by doing a
2136 reverse lookup. On failure, sender_host_name will be NULL and
2137 host_lookup_failed will be TRUE. This may or may not be serious - optional
2138 checks later. */
2139
2140 if (verify_check_host(&host_lookup) == OK)
2141 {
2142 (void)host_name_lookup();
2143 host_build_sender_fullhost();
2144 }
2145
2146 /* Delay this until we have the full name, if it is looked up. */
2147
2148 set_process_info("handling incoming connection from %s",
2149 host_and_ident(FALSE));
2150
1ad6489e
JH
2151 /* Expand smtp_receive_timeout, if needed */
2152
2153 if (smtp_receive_timeout_s)
2154 {
2155 uschar * exp;
2156 if ( !(exp = expand_string(smtp_receive_timeout_s))
2157 || !(*exp)
2158 || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2159 )
2160 log_write(0, LOG_MAIN|LOG_PANIC,
2161 "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2162 }
2163
059ec3d9
PH
2164 /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
2165 smtps port for use with older style SSL MTAs. */
2166
2167 #ifdef SUPPORT_TLS
817d9f57 2168 if (tls_in.on_connect && tls_server_start(tls_require_ciphers) != OK)
059ec3d9
PH
2169 return FALSE;
2170 #endif
2171
2172 /* Test for explicit connection rejection */
2173
2174 if (verify_check_host(&host_reject_connection) == OK)
2175 {
2176 log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2177 "from %s (host_reject_connection)", host_and_ident(FALSE));
2178 smtp_printf("554 SMTP service not available\r\n");
2179 return FALSE;
2180 }
2181
afb3eaaf
PH
2182 /* Test with TCP Wrappers if so configured. There is a problem in that
2183 hosts_ctl() returns 0 (deny) under a number of system failure circumstances,
2184 such as disks dying. In these cases, it is desirable to reject with a 4xx
2185 error instead of a 5xx error. There isn't a "right" way to detect such
2186 problems. The following kludge is used: errno is zeroed before calling
2187 hosts_ctl(). If the result is "reject", a 5xx error is given only if the
2188 value of errno is 0 or ENOENT (which happens if /etc/hosts.{allow,deny} does
2189 not exist). */
059ec3d9
PH
2190
2191 #ifdef USE_TCP_WRAPPERS
afb3eaaf 2192 errno = 0;
5dc43717
JJ
2193 tcp_wrappers_name = expand_string(tcp_wrappers_daemon_name);
2194 if (tcp_wrappers_name == NULL)
2195 {
2196 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" "
2197 "(tcp_wrappers_name) failed: %s", string_printing(tcp_wrappers_name),
2198 expand_string_message);
2199 }
2200 if (!hosts_ctl(tcp_wrappers_name,
059ec3d9
PH
2201 (sender_host_name == NULL)? STRING_UNKNOWN : CS sender_host_name,
2202 (sender_host_address == NULL)? STRING_UNKNOWN : CS sender_host_address,
2203 (sender_ident == NULL)? STRING_UNKNOWN : CS sender_ident))
2204 {
afb3eaaf
PH
2205 if (errno == 0 || errno == ENOENT)
2206 {
2207 HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
2208 log_write(L_connection_reject,
2209 LOG_MAIN|LOG_REJECT, "refused connection from %s "
2210 "(tcp wrappers)", host_and_ident(FALSE));
2211 smtp_printf("554 SMTP service not available\r\n");
2212 }
2213 else
2214 {
2215 int save_errno = errno;
2216 HDEBUG(D_receive) debug_printf("tcp wrappers rejected with unexpected "
2217 "errno value %d\n", save_errno);
2218 log_write(L_connection_reject,
2219 LOG_MAIN|LOG_REJECT, "temporarily refused connection from %s "
2220 "(tcp wrappers errno=%d)", host_and_ident(FALSE), save_errno);
2221 smtp_printf("451 Temporary local problem - please try later\r\n");
2222 }
059ec3d9
PH
2223 return FALSE;
2224 }
2225 #endif
2226
b01dd148
PH
2227 /* Check for reserved slots. The value of smtp_accept_count has already been
2228 incremented to include this process. */
059ec3d9
PH
2229
2230 if (smtp_accept_max > 0 &&
b01dd148 2231 smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
059ec3d9
PH
2232 {
2233 if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2234 {
2235 log_write(L_connection_reject,
2236 LOG_MAIN, "temporarily refused connection from %s: not in "
2237 "reserve list: connected=%d max=%d reserve=%d%s",
b01dd148 2238 host_and_ident(FALSE), smtp_accept_count - 1, smtp_accept_max,
059ec3d9
PH
2239 smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
2240 smtp_printf("421 %s: Too many concurrent SMTP connections; "
2241 "please try again later\r\n", smtp_active_hostname);
2242 return FALSE;
2243 }
2244 reserved_host = TRUE;
2245 }
2246
2247 /* If a load level above which only messages from reserved hosts are
2248 accepted is set, check the load. For incoming calls via the daemon, the
2249 check is done in the superior process if there are no reserved hosts, to
2250 save a fork. In all cases, the load average will already be available
2251 in a global variable at this point. */
2252
2253 if (smtp_load_reserve >= 0 &&
2254 load_average > smtp_load_reserve &&
2255 !reserved_host &&
2256 verify_check_host(&smtp_reserve_hosts) != OK)
2257 {
2258 log_write(L_connection_reject,
2259 LOG_MAIN, "temporarily refused connection from %s: not in "
2260 "reserve list and load average = %.2f", host_and_ident(FALSE),
2261 (double)load_average/1000.0);
2262 smtp_printf("421 %s: Too much load; please try again later\r\n",
2263 smtp_active_hostname);
2264 return FALSE;
2265 }
2266
2267 /* Determine whether unqualified senders or recipients are permitted
2268 for this host. Unfortunately, we have to do this every time, in order to
2269 set the flags so that they can be inspected when considering qualifying
2270 addresses in the headers. For a site that permits no qualification, this
2271 won't take long, however. */
2272
2273 allow_unqualified_sender =
2274 verify_check_host(&sender_unqualified_hosts) == OK;
2275
2276 allow_unqualified_recipient =
2277 verify_check_host(&recipient_unqualified_hosts) == OK;
2278
2279 /* Determine whether HELO/EHLO is required for this host. The requirement
2280 can be hard or soft. */
2281
2282 helo_required = verify_check_host(&helo_verify_hosts) == OK;
2283 if (!helo_required)
2284 helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
2285
2286 /* Determine whether this hosts is permitted to send syntactic junk
2287 after a HELO or EHLO command. */
2288
2289 helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
2290 }
2291
2292/* For batch SMTP input we are now done. */
2293
2294if (smtp_batched_input) return TRUE;
2295
a3c86431
TL
2296#ifdef EXPERIMENTAL_PROXY
2297/* If valid Proxy Protocol source is connecting, set up session.
2298 * Failure will not allow any SMTP function other than QUIT. */
2299proxy_session = FALSE;
2300proxy_session_failed = FALSE;
2301if (check_proxy_protocol_host())
2302 {
2303 if (setup_proxy_protocol_host() == FALSE)
2304 {
2305 proxy_session_failed = TRUE;
2306 DEBUG(D_receive)
2307 debug_printf("Failure to extract proxied host, only QUIT allowed\n");
2308 }
2309 else
2310 {
2311 sender_host_name = NULL;
2312 (void)host_name_lookup();
2313 host_build_sender_fullhost();
2314 }
2315 }
2316#endif
2317
059ec3d9
PH
2318/* Run the ACL if it exists */
2319
4e88a19f 2320user_msg = NULL;
059ec3d9
PH
2321if (acl_smtp_connect != NULL)
2322 {
2323 int rc;
64ffc24f 2324 rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
059ec3d9
PH
2325 &log_msg);
2326 if (rc != OK)
2327 {
2328 (void)smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
2329 return FALSE;
2330 }
2331 }
2332
2333/* Output the initial message for a two-way SMTP connection. It may contain
2334newlines, which then cause a multi-line response to be given. */
2335
4e88a19f
PH
2336code = US"220"; /* Default status code */
2337esc = US""; /* Default extended status code */
2338esclen = 0; /* Length of esc */
2339
2340if (user_msg == NULL)
2341 {
2342 s = expand_string(smtp_banner);
2343 if (s == NULL)
2344 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" (smtp_banner) "
2345 "failed: %s", smtp_banner, expand_string_message);
2346 }
2347else
2348 {
2349 int codelen = 3;
2350 s = user_msg;
2351 smtp_message_code(&code, &codelen, &s, NULL);
d6a96edc 2352 if (codelen > 4)
4e88a19f
PH
2353 {
2354 esc = code + 4;
2355 esclen = codelen - 4;
2356 }
2357 }
059ec3d9
PH
2358
2359/* Remove any terminating newlines; might as well remove trailing space too */
2360
2361p = s + Ustrlen(s);
2362while (p > s && isspace(p[-1])) p--;
2363*p = 0;
2364
2365/* It seems that CC:Mail is braindead, and assumes that the greeting message
2366is all contained in a single IP packet. The original code wrote out the
2367greeting using several calls to fprint/fputc, and on busy servers this could
2368cause it to be split over more than one packet - which caused CC:Mail to fall
2369over when it got the second part of the greeting after sending its first
2370command. Sigh. To try to avoid this, build the complete greeting message
2371first, and output it in one fell swoop. This gives a better chance of it
2372ending up as a single packet. */
2373
2374ss = store_get(size);
2375ptr = 0;
2376
2377p = s;
2378do /* At least once, in case we have an empty string */
2379 {
2380 int len;
2381 uschar *linebreak = Ustrchr(p, '\n');
4e88a19f 2382 ss = string_cat(ss, &size, &ptr, code, 3);
059ec3d9
PH
2383 if (linebreak == NULL)
2384 {
2385 len = Ustrlen(p);
4e88a19f 2386 ss = string_cat(ss, &size, &ptr, US" ", 1);
059ec3d9
PH
2387 }
2388 else
2389 {
2390 len = linebreak - p;
4e88a19f 2391 ss = string_cat(ss, &size, &ptr, US"-", 1);
059ec3d9 2392 }
4e88a19f 2393 ss = string_cat(ss, &size, &ptr, esc, esclen);
059ec3d9
PH
2394 ss = string_cat(ss, &size, &ptr, p, len);
2395 ss = string_cat(ss, &size, &ptr, US"\r\n", 2);
2396 p += len;
2397 if (linebreak != NULL) p++;
2398 }
2399while (*p != 0);
2400
2401ss[ptr] = 0; /* string_cat leaves room for this */
2402
2403/* Before we write the banner, check that there is no input pending, unless
2404this synchronisation check is disabled. */
2405
a14e5636 2406if (!check_sync())
059ec3d9 2407 {
a14e5636
PH
2408 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol "
2409 "synchronization error (input sent without waiting for greeting): "
2410 "rejected connection from %s input=\"%s\"", host_and_ident(TRUE),
2411 string_printing(smtp_inptr));
2412 smtp_printf("554 SMTP synchronization error\r\n");
2413 return FALSE;
059ec3d9
PH
2414 }
2415
2416/* Now output the banner */
2417
2418smtp_printf("%s", ss);
2419return TRUE;
2420}
2421
2422
2423
2424
2425
2426/*************************************************
2427* Handle SMTP syntax and protocol errors *
2428*************************************************/
2429
2430/* Write to the log for SMTP syntax errors in incoming commands, if configured
2431to do so. Then transmit the error response. The return value depends on the
2432number of syntax and protocol errors in this SMTP session.
2433
2434Arguments:
2435 type error type, given as a log flag bit
2436 code response code; <= 0 means don't send a response
2437 data data to reflect in the response (can be NULL)
2438 errmess the error message
2439
2440Returns: -1 limit of syntax/protocol errors NOT exceeded
2441 +1 limit of syntax/protocol errors IS exceeded
2442
2443These values fit in with the values of the "done" variable in the main
2444processing loop in smtp_setup_msg(). */
2445
2446static int
2447synprot_error(int type, int code, uschar *data, uschar *errmess)
2448{
2449int yield = -1;
2450
2451log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
2452 (type == L_smtp_syntax_error)? "syntax" : "protocol",
3ee512ff 2453 string_printing(smtp_cmd_buffer), host_and_ident(TRUE), errmess);
059ec3d9
PH
2454
2455if (++synprot_error_count > smtp_max_synprot_errors)
2456 {
2457 yield = 1;
2458 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
2459 "syntax or protocol errors (last command was \"%s\")",
3ee512ff 2460 host_and_ident(FALSE), smtp_cmd_buffer);
059ec3d9
PH
2461 }
2462
2463if (code > 0)
2464 {
2465 smtp_printf("%d%c%s%s%s\r\n", code, (yield == 1)? '-' : ' ',
2466 (data == NULL)? US"" : data, (data == NULL)? US"" : US": ", errmess);
2467 if (yield == 1)
2468 smtp_printf("%d Too many syntax or protocol errors\r\n", code);
2469 }
2470
2471return yield;
2472}
2473
2474
2475
2476
2477/*************************************************
2478* Log incomplete transactions *
2479*************************************************/
2480
2481/* This function is called after a transaction has been aborted by RSET, QUIT,
2482connection drops or other errors. It logs the envelope information received
2483so far in order to preserve address verification attempts.
2484
2485Argument: string to indicate what aborted the transaction
2486Returns: nothing
2487*/
2488
2489static void
2490incomplete_transaction_log(uschar *what)
2491{
2492if (sender_address == NULL || /* No transaction in progress */
2493 (log_write_selector & L_smtp_incomplete_transaction) == 0 /* Not logging */
2494 ) return;
2495
2496/* Build list of recipients for logging */
2497
2498if (recipients_count > 0)
2499 {
2500 int i;
2501 raw_recipients = store_get(recipients_count * sizeof(uschar *));
2502 for (i = 0; i < recipients_count; i++)
2503 raw_recipients[i] = recipients_list[i].address;
2504 raw_recipients_count = recipients_count;
2505 }
2506
2507log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS,
2508 "%s incomplete transaction (%s)", host_and_ident(TRUE), what);
2509}
2510
2511
2512
2513
2514/*************************************************
2515* Send SMTP response, possibly multiline *
2516*************************************************/
2517
2518/* There are, it seems, broken clients out there that cannot handle multiline
2519responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
2520output nothing for non-final calls, and only the first line for anything else.
2521
2522Arguments:
a5bd321b 2523 code SMTP code, may involve extended status codes
d6a96edc 2524 codelen length of smtp code; if > 4 there's an ESC
059ec3d9
PH
2525 final FALSE if the last line isn't the final line
2526 msg message text, possibly containing newlines
2527
2528Returns: nothing
2529*/
2530
2531void
a5bd321b 2532smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
059ec3d9 2533{
a5bd321b
PH
2534int esclen = 0;
2535uschar *esc = US"";
2536
059ec3d9
PH
2537if (!final && no_multiline_responses) return;
2538
d6a96edc 2539if (codelen > 4)
a5bd321b
PH
2540 {
2541 esc = code + 4;
2542 esclen = codelen - 4;
2543 }
2544
2679d413
PH
2545/* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
2546have had the same. Note: this code is also present in smtp_printf(). It would
2547be tidier to have it only in one place, but when it was added, it was easier to
2548do it that way, so as not to have to mess with the code for the RCPT command,
2549which sometimes uses smtp_printf() and sometimes smtp_respond(). */
2550
2551if (rcpt_in_progress)
2552 {
2553 if (rcpt_smtp_response == NULL)
2554 rcpt_smtp_response = string_copy(msg);
2555 else if (rcpt_smtp_response_same &&
2556 Ustrcmp(rcpt_smtp_response, msg) != 0)
2557 rcpt_smtp_response_same = FALSE;
2558 rcpt_in_progress = FALSE;
2559 }
2560
2561/* Not output the message, splitting it up into multiple lines if necessary. */
2562
059ec3d9
PH
2563for (;;)
2564 {
2565 uschar *nl = Ustrchr(msg, '\n');
2566 if (nl == NULL)
2567 {
a5bd321b 2568 smtp_printf("%.3s%c%.*s%s\r\n", code, final? ' ':'-', esclen, esc, msg);
059ec3d9
PH
2569 return;
2570 }
2571 else if (nl[1] == 0 || no_multiline_responses)
2572 {
a5bd321b
PH
2573 smtp_printf("%.3s%c%.*s%.*s\r\n", code, final? ' ':'-', esclen, esc,
2574 (int)(nl - msg), msg);
059ec3d9
PH
2575 return;
2576 }
2577 else
2578 {
a5bd321b 2579 smtp_printf("%.3s-%.*s%.*s\r\n", code, esclen, esc, (int)(nl - msg), msg);
059ec3d9
PH
2580 msg = nl + 1;
2581 while (isspace(*msg)) msg++;
2582 }
2583 }
2584}
2585
2586
2587
2588
4e88a19f
PH
2589/*************************************************
2590* Parse user SMTP message *
2591*************************************************/
2592
2593/* This function allows for user messages overriding the response code details
2594by providing a suitable response code string at the start of the message
2595user_msg. Check the message for starting with a response code and optionally an
2596extended status code. If found, check that the first digit is valid, and if so,
2597change the code pointer and length to use the replacement. An invalid code
2598causes a panic log; in this case, if the log messages is the same as the user
2599message, we must also adjust the value of the log message to show the code that
2600is actually going to be used (the original one).
2601
2602This function is global because it is called from receive.c as well as within
2603this module.
2604
d6a96edc
PH
2605Note that the code length returned includes the terminating whitespace
2606character, which is always included in the regex match.
2607
4e88a19f
PH
2608Arguments:
2609 code SMTP code, may involve extended status codes
d6a96edc 2610 codelen length of smtp code; if > 4 there's an ESC
4e88a19f
PH
2611 msg message text
2612 log_msg optional log message, to be adjusted with the new SMTP code
2613
2614Returns: nothing
2615*/
2616
2617void
2618smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg)
2619{
2620int n;
2621int ovector[3];
2622
2623if (msg == NULL || *msg == NULL) return;
2624
2625n = pcre_exec(regex_smtp_code, NULL, CS *msg, Ustrlen(*msg), 0,
2626 PCRE_EOPT, ovector, sizeof(ovector)/sizeof(int));
2627if (n < 0) return;
2628
2629if ((*msg)[0] != (*code)[0])
2630 {
2631 log_write(0, LOG_MAIN|LOG_PANIC, "configured error code starts with "
2632 "incorrect digit (expected %c) in \"%s\"", (*code)[0], *msg);
2633 if (log_msg != NULL && *log_msg == *msg)
2634 *log_msg = string_sprintf("%s %s", *code, *log_msg + ovector[1]);
2635 }
2636else
2637 {
2638 *code = *msg;
2639 *codelen = ovector[1]; /* Includes final space */
2640 }
2641*msg += ovector[1]; /* Chop the code off the message */
2642return;
2643}
2644
2645
2646
2647
059ec3d9
PH
2648/*************************************************
2649* Handle an ACL failure *
2650*************************************************/
2651
2652/* This function is called when acl_check() fails. As well as calls from within
2653this module, it is called from receive.c for an ACL after DATA. It sorts out
2654logging the incident, and sets up the error response. A message containing
2655newlines is turned into a multiline SMTP response, but for logging, only the
2656first line is used.
2657
a5bd321b
PH
2658There's a table of default permanent failure response codes to use in
2659globals.c, along with the table of names. VFRY is special. Despite RFC1123 it
2660defaults disabled in Exim. However, discussion in connection with RFC 821bis
2661(aka RFC 2821) has concluded that the response should be 252 in the disabled
2662state, because there are broken clients that try VRFY before RCPT. A 5xx
2663response should be given only when the address is positively known to be
2664undeliverable. Sigh. Also, for ETRN, 458 is given on refusal, and for AUTH,
2665503.
2666
2667From Exim 4.63, it is possible to override the response code details by
2668providing a suitable response code string at the start of the message provided
2669in user_msg. The code's first digit is checked for validity.
059ec3d9
PH
2670
2671Arguments:
2672 where where the ACL was called from
2673 rc the failure code
2674 user_msg a message that can be included in an SMTP response
2675 log_msg a message for logging
2676
2677Returns: 0 in most cases
2678 2 if the failure code was FAIL_DROP, in which case the
2679 SMTP connection should be dropped (this value fits with the
2680 "done" variable in smtp_setup_msg() below)
2681*/
2682
2683int
2684smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
2685{
059ec3d9 2686BOOL drop = rc == FAIL_DROP;
a5bd321b 2687int codelen = 3;
a5bd321b 2688uschar *smtp_code;
059ec3d9
PH
2689uschar *lognl;
2690uschar *sender_info = US"";
64ffc24f 2691uschar *what =
8523533c 2692#ifdef WITH_CONTENT_SCAN
64ffc24f 2693 (where == ACL_WHERE_MIME)? US"during MIME ACL checks" :
8e669ac1 2694#endif
64ffc24f
PH
2695 (where == ACL_WHERE_PREDATA)? US"DATA" :
2696 (where == ACL_WHERE_DATA)? US"after DATA" :
8ccd00b1 2697#ifndef DISABLE_PRDR
fd98a5c6
JH
2698 (where == ACL_WHERE_PRDR)? US"after DATA PRDR" :
2699#endif
ca86f471 2700 (smtp_cmd_data == NULL)?
64ffc24f 2701 string_sprintf("%s in \"connect\" ACL", acl_wherenames[where]) :
ca86f471 2702 string_sprintf("%s %s", acl_wherenames[where], smtp_cmd_data);
059ec3d9
PH
2703
2704if (drop) rc = FAIL;
2705
4e88a19f 2706/* Set the default SMTP code, and allow a user message to change it. */
a5bd321b
PH
2707
2708smtp_code = (rc != FAIL)? US"451" : acl_wherecodes[where];
4e88a19f 2709smtp_message_code(&smtp_code, &codelen, &user_msg, &log_msg);
a5bd321b 2710
059ec3d9
PH
2711/* We used to have sender_address here; however, there was a bug that was not
2712updating sender_address after a rewrite during a verify. When this bug was
2713fixed, sender_address at this point became the rewritten address. I'm not sure
2714this is what should be logged, so I've changed to logging the unrewritten
2715address to retain backward compatibility. */
2716
8523533c 2717#ifndef WITH_CONTENT_SCAN
059ec3d9 2718if (where == ACL_WHERE_RCPT || where == ACL_WHERE_DATA)
8523533c
TK
2719#else
2720if (where == ACL_WHERE_RCPT || where == ACL_WHERE_DATA || where == ACL_WHERE_MIME)
2721#endif
059ec3d9 2722 {
b98bb9ac
PP
2723 sender_info = string_sprintf("F=<%s>%s%s%s%s ",
2724 sender_address_unrewritten ? sender_address_unrewritten : sender_address,
2725 sender_host_authenticated ? US" A=" : US"",
2726 sender_host_authenticated ? sender_host_authenticated : US"",
2727 sender_host_authenticated && authenticated_id ? US":" : US"",
2728 sender_host_authenticated && authenticated_id ? authenticated_id : US""
2729 );
059ec3d9
PH
2730 }
2731
2732/* If there's been a sender verification failure with a specific message, and
2733we have not sent a response about it yet, do so now, as a preliminary line for
278c6e6c
PH
2734failures, but not defers. However, always log it for defer, and log it for fail
2735unless the sender_verify_fail log selector has been turned off. */
059ec3d9
PH
2736
2737if (sender_verified_failed != NULL &&
2738 !testflag(sender_verified_failed, af_sverify_told))
2739 {
2679d413
PH
2740 BOOL save_rcpt_in_progress = rcpt_in_progress;
2741 rcpt_in_progress = FALSE; /* So as not to treat these as the error */
2742
059ec3d9
PH
2743 setflag(sender_verified_failed, af_sverify_told);
2744
278c6e6c
PH
2745 if (rc != FAIL || (log_extra_selector & LX_sender_verify_fail) != 0)
2746 log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
2747 host_and_ident(TRUE),
2748 ((sender_verified_failed->special_action & 255) == DEFER)? "defer":"fail",
2749 sender_verified_failed->address,
2750 (sender_verified_failed->message == NULL)? US"" :
2751 string_sprintf(": %s", sender_verified_failed->message));
059ec3d9
PH
2752
2753 if (rc == FAIL && sender_verified_failed->user_message != NULL)
a5bd321b 2754 smtp_respond(smtp_code, codelen, FALSE, string_sprintf(
059ec3d9
PH
2755 testflag(sender_verified_failed, af_verify_pmfail)?
2756 "Postmaster verification failed while checking <%s>\n%s\n"
2757 "Several RFCs state that you are required to have a postmaster\n"
2758 "mailbox for each mail domain. This host does not accept mail\n"
2759 "from domains whose servers reject the postmaster address."
2760 :
2761 testflag(sender_verified_failed, af_verify_nsfail)?
2762 "Callback setup failed while verifying <%s>\n%s\n"
2763 "The initial connection, or a HELO or MAIL FROM:<> command was\n"
2764 "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
2765 "RFC requirements, and stops you from receiving standard bounce\n"
2766 "messages. This host does not accept mail from domains whose servers\n"
2767 "refuse bounces."
2768 :
2769 "Verification failed for <%s>\n%s",
2770 sender_verified_failed->address,
2771 sender_verified_failed->user_message));
2679d413
PH
2772
2773 rcpt_in_progress = save_rcpt_in_progress;
059ec3d9
PH
2774 }
2775
2776/* Sort out text for logging */
2777
2778log_msg = (log_msg == NULL)? US"" : string_sprintf(": %s", log_msg);
2779lognl = Ustrchr(log_msg, '\n');
2780if (lognl != NULL) *lognl = 0;
2781
2782/* Send permanent failure response to the command, but the code used isn't
2783always a 5xx one - see comments at the start of this function. If the original
2784rc was FAIL_DROP we drop the connection and yield 2. */
2785
a5bd321b 2786if (rc == FAIL) smtp_respond(smtp_code, codelen, TRUE, (user_msg == NULL)?
059ec3d9
PH
2787 US"Administrative prohibition" : user_msg);
2788
2789/* Send temporary failure response to the command. Don't give any details,
2790unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
2791verb, and for a header verify when smtp_return_error_details is set.
2792
2793This conditional logic is all somewhat of a mess because of the odd
2794interactions between temp_details and return_error_details. One day it should
2795be re-implemented in a tidier fashion. */
2796
2797else
2798 {
2799 if (acl_temp_details && user_msg != NULL)
2800 {
2801 if (smtp_return_error_details &&
2802 sender_verified_failed != NULL &&
2803 sender_verified_failed->message != NULL)
2804 {
a5bd321b 2805 smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
059ec3d9 2806 }
a5bd321b 2807 smtp_respond(smtp_code, codelen, TRUE, user_msg);
059ec3d9
PH
2808 }
2809 else
a5bd321b
PH
2810 smtp_respond(smtp_code, codelen, TRUE,
2811 US"Temporary local problem - please try later");
059ec3d9
PH
2812 }
2813
6ea85e9a
PH
2814/* Log the incident to the logs that are specified by log_reject_target
2815(default main, reject). This can be empty to suppress logging of rejections. If
2816the connection is not forcibly to be dropped, return 0. Otherwise, log why it
2817is closing if required and return 2. */
059ec3d9 2818
6ea85e9a 2819if (log_reject_target != 0)
887291d2 2820 {
e45a1c37 2821#ifdef SUPPORT_TLS
887291d2
JH
2822 uschar * s = s_tlslog(NULL, NULL, NULL);
2823 if (!s) s = US"";
e45a1c37 2824#else
887291d2 2825 uschar * s = US"";
e45a1c37 2826#endif
887291d2
JH
2827 log_write(0, log_reject_target, "%s%s %s%srejected %s%s",
2828 host_and_ident(TRUE), s,
6ea85e9a 2829 sender_info, (rc == FAIL)? US"" : US"temporarily ", what, log_msg);
887291d2 2830 }
059ec3d9
PH
2831
2832if (!drop) return 0;
2833
2834log_write(L_smtp_connection, LOG_MAIN, "%s closed by DROP in ACL",
2835 smtp_get_connection_info());
8f128379
PH
2836
2837/* Run the not-quit ACL, but without any custom messages. This should not be a
2838problem, because we get here only if some other ACL has issued "drop", and
2839in that case, *its* custom messages will have been used above. */
2840
2841smtp_notquit_exit(US"acl-drop", NULL, NULL);
059ec3d9
PH
2842return 2;
2843}
2844
2845
2846
2847
8f128379
PH
2848/*************************************************
2849* Handle SMTP exit when QUIT is not given *
2850*************************************************/
2851
2852/* This function provides a logging/statistics hook for when an SMTP connection
2853is dropped on the floor or the other end goes away. It's a global function
2854because it's called from receive.c as well as this module. As well as running
2855the NOTQUIT ACL, if there is one, this function also outputs a final SMTP
2856response, either with a custom message from the ACL, or using a default. There
2857is one case, however, when no message is output - after "drop". In that case,
2858the ACL that obeyed "drop" has already supplied the custom message, and NULL is
2859passed to this function.
2860
2861In case things go wrong while processing this function, causing an error that
2862may re-enter this funtion, there is a recursion check.
2863
2864Arguments:
2865 reason What $smtp_notquit_reason will be set to in the ACL;
2866 if NULL, the ACL is not run
2867 code The error code to return as part of the response
2868 defaultrespond The default message if there's no user_msg
2869
2870Returns: Nothing
2871*/
2872
2873void
2874smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
2875{
2876int rc;
2877uschar *user_msg = NULL;
2878uschar *log_msg = NULL;
2879
2880/* Check for recursive acll */
2881
2882if (smtp_exit_function_called)
2883 {
2884 log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
2885 reason);
2886 return;
2887 }
2888smtp_exit_function_called = TRUE;
2889
2890/* Call the not-QUIT ACL, if there is one, unless no reason is given. */
2891
2892if (acl_smtp_notquit != NULL && reason != NULL)
2893 {
2894 smtp_notquit_reason = reason;
2895 rc = acl_check(ACL_WHERE_NOTQUIT, NULL, acl_smtp_notquit, &user_msg,
2896 &log_msg);
2897 if (rc == ERROR)
2898 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for not-QUIT returned ERROR: %s",
2899 log_msg);
2900 }
2901
2902/* Write an SMTP response if we are expected to give one. As the default
2903responses are all internal, they should always fit in the buffer, but code a
2904warning, just in case. Note that string_vformat() still leaves a complete
2905string, even if it is incomplete. */
2906
2907if (code != NULL && defaultrespond != NULL)
2908 {
2909 if (user_msg == NULL)
2910 {
2911 uschar buffer[128];
2912 va_list ap;
2913 va_start(ap, defaultrespond);
2914 if (!string_vformat(buffer, sizeof(buffer), CS defaultrespond, ap))
2915 log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_notquit_exit()");
2916 smtp_printf("%s %s\r\n", code, buffer);
2917 va_end(ap);
2918 }
2919 else
2920 smtp_respond(code, 3, TRUE, user_msg);
2921 mac_smtp_fflush();
2922 }
2923}
2924
2925
2926
2927
d7b47fd0
PH
2928/*************************************************
2929* Verify HELO argument *
2930*************************************************/
2931
2932/* This function is called if helo_verify_hosts or helo_try_verify_hosts is
2933matched. It is also called from ACL processing if verify = helo is used and
2934verification was not previously tried (i.e. helo_try_verify_hosts was not
2935matched). The result of its processing is to set helo_verified and
2936helo_verify_failed. These variables should both be FALSE for this function to
2937be called.
2938
2939Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
2940for IPv6 ::ffff: literals.
2941
2942Argument: none
2943Returns: TRUE if testing was completed;
2944 FALSE on a temporary failure
2945*/
2946
2947BOOL
2948smtp_verify_helo(void)
2949{
2950BOOL yield = TRUE;
2951
2952HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
2953 sender_helo_name);
2954
2955if (sender_helo_name == NULL)
2956 {
2957 HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
2958 }
2959
d1d5595c
PH
2960/* Deal with the case of -bs without an IP address */
2961
2962else if (sender_host_address == NULL)
2963 {
2964 HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
2965 helo_verified = TRUE;
2966 }
2967
2968/* Deal with the more common case when there is a sending IP address */
2969
d7b47fd0
PH
2970else if (sender_helo_name[0] == '[')
2971 {
2972 helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
2973 Ustrlen(sender_host_address)) == 0;
2974
2975 #if HAVE_IPV6
2976 if (!helo_verified)
2977 {
2978 if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
2979 helo_verified = Ustrncmp(sender_helo_name + 1,
2980 sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
2981 }
2982 #endif
2983
2984 HDEBUG(D_receive)
2985 { if (helo_verified) debug_printf("matched host address\n"); }
2986 }
2987
2988/* Do a reverse lookup if one hasn't already given a positive or negative
2989response. If that fails, or the name doesn't match, try checking with a forward
2990lookup. */
2991
2992else
2993 {
2994 if (sender_host_name == NULL && !host_lookup_failed)
2995 yield = host_name_lookup() != DEFER;
2996
2997 /* If a host name is known, check it and all its aliases. */
2998
2999 if (sender_host_name != NULL)
3000 {
3001 helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0;
3002
3003 if (helo_verified)
3004 {
3005 HDEBUG(D_receive) debug_printf("matched host name\n");
3006 }
3007 else
3008 {
3009 uschar **aliases = sender_host_aliases;
3010 while (*aliases != NULL)
3011 {
3012 helo_verified = strcmpic(*aliases++, sender_helo_name) == 0;
3013 if (helo_verified) break;
3014 }
3015 HDEBUG(D_receive)
3016 {
3017 if (helo_verified)
3018 debug_printf("matched alias %s\n", *(--aliases));
3019 }
3020 }
3021 }
3022
3023 /* Final attempt: try a forward lookup of the helo name */
3024
3025 if (!helo_verified)
3026 {
3027 int rc;
3028 host_item h;
3029 h.name = sender_helo_name;
3030 h.address = NULL;
3031 h.mx = MX_NONE;
3032 h.next = NULL;
3033 HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3034 sender_helo_name);
322050c2 3035 rc = host_find_byname(&h, NULL, 0, NULL, TRUE);
d7b47fd0
PH
3036 if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3037 {
3038 host_item *hh = &h;
3039 while (hh != NULL)
3040 {
3041 if (Ustrcmp(hh->address, sender_host_address) == 0)
3042 {
3043 helo_verified = TRUE;
3044 HDEBUG(D_receive)
3045 debug_printf("IP address for %s matches calling address\n",
3046 sender_helo_name);
3047 break;
3048 }
3049 hh = hh->next;
3050 }
3051 }
3052 }
3053 }
3054
d1d5595c 3055if (!helo_verified) helo_verify_failed = TRUE; /* We've tried ... */
d7b47fd0
PH
3056return yield;
3057}
3058
3059
3060
3061
4e88a19f
PH
3062/*************************************************
3063* Send user response message *
3064*************************************************/
3065
3066/* This function is passed a default response code and a user message. It calls
3067smtp_message_code() to check and possibly modify the response code, and then
3068calls smtp_respond() to transmit the response. I put this into a function
3069just to avoid a lot of repetition.
3070
3071Arguments:
3072 code the response code
3073 user_msg the user message
3074
3075Returns: nothing
3076*/
3077
3078static void
3079smtp_user_msg(uschar *code, uschar *user_msg)
3080{
3081int len = 3;
3082smtp_message_code(&code, &len, &user_msg, NULL);
3083smtp_respond(code, len, TRUE, user_msg);
3084}
3085
3086
3087
059ec3d9
PH
3088/*************************************************
3089* Initialize for SMTP incoming message *
3090*************************************************/
3091
3092/* This function conducts the initial dialogue at the start of an incoming SMTP
3093message, and builds a list of recipients. However, if the incoming message
3094is part of a batch (-bS option) a separate function is called since it would
3095be messy having tests splattered about all over this function. This function
3096therefore handles the case where interaction is occurring. The input and output
3097files are set up in smtp_in and smtp_out.
3098
3099The global recipients_list is set to point to a vector of recipient_item
3100blocks, whose number is given by recipients_count. This is extended by the
3101receive_add_recipient() function. The global variable sender_address is set to
3102the sender's address. The yield is +1 if a message has been successfully
3103started, 0 if a QUIT command was encountered or the connection was refused from
3104the particular host, or -1 if the connection was lost.
3105
3106Argument: none
3107
3108Returns: > 0 message successfully started (reached DATA)
3109 = 0 QUIT read or end of file reached or call refused
3110 < 0 lost connection
3111*/
3112
3113int
3114smtp_setup_msg(void)
3115{
3116int done = 0;
3117BOOL toomany = FALSE;
3118BOOL discarded = FALSE;
3119BOOL last_was_rej_mail = FALSE;
3120BOOL last_was_rcpt = FALSE;
3121void *reset_point = store_get(0);
3122
3123DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
3124
3125/* Reset for start of new message. We allow one RSET not to be counted as a
3126nonmail command, for those MTAs that insist on sending it between every
3127message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
3128TLS between messages (an Exim client may do this if it has messages queued up
3129for the host). Note: we do NOT reset AUTH at this point. */
3130
3131smtp_reset(reset_point);
3132message_ended = END_NOTSTARTED;
3133
3134cmd_list[CMD_LIST_RSET].is_mail_cmd = TRUE;
3135cmd_list[CMD_LIST_HELO].is_mail_cmd = TRUE;
3136cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
3137#ifdef SUPPORT_TLS
3138cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
3139#endif
3140
3141/* Set the local signal handler for SIGTERM - it tries to end off tidily */
3142
3143os_non_restarting_signal(SIGTERM, command_sigterm_handler);
3144
3145/* Batched SMTP is handled in a different function. */
3146
3147if (smtp_batched_input) return smtp_setup_batch_msg();
3148
3149/* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
3150value. The values are 2 larger than the required yield of the function. */
3151
3152while (done <= 0)
3153 {
55414b25 3154 const uschar **argv;
059ec3d9
PH
3155 uschar *etrn_command;
3156 uschar *etrn_serialize_key;
3157 uschar *errmess;
4e88a19f
PH
3158 uschar *log_msg, *smtp_code;
3159 uschar *user_msg = NULL;
059ec3d9
PH
3160 uschar *recipient = NULL;
3161 uschar *hello = NULL;
55414b25 3162 const uschar *set_id = NULL;
059ec3d9
PH
3163 uschar *s, *ss;
3164 BOOL was_rej_mail = FALSE;
3165 BOOL was_rcpt = FALSE;
3166 void (*oldsignal)(int);
3167 pid_t pid;
3168 int start, end, sender_domain, recipient_domain;
3169 int ptr, size, rc;
f78eb7c6 3170 int c, i;
059ec3d9 3171 auth_instance *au;
6c1c3d1d
WB
3172 uschar *orcpt = NULL;
3173 int flags;
059ec3d9
PH
3174
3175 switch(smtp_read_command(TRUE))
3176 {
3177 /* The AUTH command is not permitted to occur inside a transaction, and may
c46782ef
PH
3178 occur successfully only once per connection. Actually, that isn't quite
3179 true. When TLS is started, all previous information about a connection must
3180 be discarded, so a new AUTH is permitted at that time.
3181
3182 AUTH may only be used when it has been advertised. However, it seems that
3183 there are clients that send AUTH when it hasn't been advertised, some of
3184 them even doing this after HELO. And there are MTAs that accept this. Sigh.
3185 So there's a get-out that allows this to happen.
059ec3d9
PH
3186
3187 AUTH is initially labelled as a "nonmail command" so that one occurrence
3188 doesn't get counted. We change the label here so that multiple failing
3189 AUTHS will eventually hit the nonmail threshold. */
3190
3191 case AUTH_CMD:
b4ed4da0 3192 HAD(SCH_AUTH);
059ec3d9
PH
3193 authentication_failed = TRUE;
3194 cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
3195
c46782ef 3196 if (!auth_advertised && !allow_auth_unadvertised)
059ec3d9
PH
3197 {
3198 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3199 US"AUTH command used when not advertised");
3200 break;
3201 }
3202 if (sender_host_authenticated != NULL)
3203 {
3204 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3205 US"already authenticated");
3206 break;
3207 }
3208 if (sender_address != NULL)
3209 {
3210 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3211 US"not permitted in mail transaction");
3212 break;
3213 }
3214
3215 /* Check the ACL */
3216
3217 if (acl_smtp_auth != NULL)
3218 {
64ffc24f 3219 rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth, &user_msg, &log_msg);
059ec3d9
PH
3220 if (rc != OK)
3221 {
3222 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
3223 break;
3224 }
3225 }
3226
3227 /* Find the name of the requested authentication mechanism. */
3228
ca86f471
PH
3229 s = smtp_cmd_data;
3230 while ((c = *smtp_cmd_data) != 0 && !isspace(c))
059ec3d9
PH
3231 {
3232 if (!isalnum(c) && c != '-' && c != '_')
3233 {
3234 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3235 US"invalid character in authentication mechanism name");
3236 goto COMMAND_LOOP;
3237 }
ca86f471 3238 smtp_cmd_data++;
059ec3d9
PH
3239 }
3240
3241 /* If not at the end of the line, we must be at white space. Terminate the
3242 name and move the pointer on to any data that may be present. */
3243
ca86f471 3244 if (*smtp_cmd_data != 0)
059ec3d9 3245 {
ca86f471
PH
3246 *smtp_cmd_data++ = 0;
3247 while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
059ec3d9
PH
3248 }
3249
3250 /* Search for an authentication mechanism which is configured for use
c46782ef
PH
3251 as a server and which has been advertised (unless, sigh, allow_auth_
3252 unadvertised is set). */
059ec3d9
PH
3253
3254 for (au = auths; au != NULL; au = au->next)
3255 {
3256 if (strcmpic(s, au->public_name) == 0 && au->server &&
c46782ef 3257 (au->advertised || allow_auth_unadvertised)) break;
059ec3d9
PH
3258 }
3259
3260 if (au == NULL)
3261 {
3262 done = synprot_error(L_smtp_protocol_error, 504, NULL,
3263 string_sprintf("%s authentication mechanism not supported", s));
3264 break;
3265 }
3266
f78eb7c6
PH
3267 /* Run the checking code, passing the remainder of the command line as
3268 data. Initials the $auth<n> variables as empty. Initialize $0 empty and set
3269 it as the only set numerical variable. The authenticator may set $auth<n>
3270 and also set other numeric variables. The $auth<n> variables are preferred
3271 nowadays; the numerical variables remain for backwards compatibility.
059ec3d9 3272
f78eb7c6
PH
3273 Afterwards, have a go at expanding the set_id string, even if
3274 authentication failed - for bad passwords it can be useful to log the
3275 userid. On success, require set_id to expand and exist, and put it in
3276 authenticated_id. Save this in permanent store, as the working store gets
3277 reset at HELO, RSET, etc. */
3278
3279 for (i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
059ec3d9
PH
3280 expand_nmax = 0;
3281 expand_nlength[0] = 0; /* $0 contains nothing */
3282
ca86f471 3283 c = (au->info->servercode)(au, smtp_cmd_data);
059ec3d9
PH
3284 if (au->set_id != NULL) set_id = expand_string(au->set_id);
3285 expand_nmax = -1; /* Reset numeric variables */
f78eb7c6 3286 for (i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL; /* Reset $auth<n> */
059ec3d9 3287
0612b098
PH
3288 /* The value of authenticated_id is stored in the spool file and printed in
3289 log lines. It must not contain binary zeros or newline characters. In
3290 normal use, it never will, but when playing around or testing, this error
3291 can (did) happen. To guard against this, ensure that the id contains only
3292 printing characters. */
3293
3294 if (set_id != NULL) set_id = string_printing(set_id);
3295
059ec3d9
PH
3296 /* For the non-OK cases, set up additional logging data if set_id
3297 is not empty. */
3298
3299 if (c != OK)
3300 {
3301 if (set_id != NULL && *set_id != 0)
3302 set_id = string_sprintf(" (set_id=%s)", set_id);
3303 else set_id = US"";
3304 }
3305
3306 /* Switch on the result */
3307
3308 switch(c)
3309 {
3310 case OK:
3311 if (au->set_id == NULL || set_id != NULL) /* Complete success */
3312 {
3313 if (set_id != NULL) authenticated_id = string_copy_malloc(set_id);
3314 sender_host_authenticated = au->name;
3315 authentication_failed = FALSE;
2d07a215 3316 authenticated_fail_id = NULL; /* Impossible to already be set? */
059ec3d9 3317 received_protocol =
817d9f57 3318 protocols[pextend + pauthed + ((tls_in.active >= 0)? pcrpted:0)] +
059ec3d9
PH
3319 ((sender_host_address != NULL)? pnlocal : 0);
3320 s = ss = US"235 Authentication succeeded";
3321 authenticated_by = au;
3322 break;
3323 }
3324
3325 /* Authentication succeeded, but we failed to expand the set_id string.
3326 Treat this as a temporary error. */
3327
3328 auth_defer_msg = expand_string_message;
3329 /* Fall through */
3330
3331 case DEFER:
2d07a215 3332 if (set_id != NULL) authenticated_fail_id = string_copy_malloc(set_id);
059ec3d9
PH
3333 s = string_sprintf("435 Unable to authenticate at present%s",
3334 auth_defer_user_msg);
3335 ss = string_sprintf("435 Unable to authenticate at present%s: %s",
3336 set_id, auth_defer_msg);
3337 break;
3338
3339 case BAD64:
3340 s = ss = US"501 Invalid base64 data";
3341 break;
3342
3343 case CANCELLED:
3344 s = ss = US"501 Authentication cancelled";
3345 break;
3346
3347 case UNEXPECTED:
3348 s = ss = US"553 Initial data not expected";
3349 break;
3350
3351 case FAIL:
2d07a215 3352 if (set_id != NULL) authenticated_fail_id = string_copy_malloc(set_id);
059ec3d9
PH
3353 s = US"535 Incorrect authentication data";
3354 ss = string_sprintf("535 Incorrect authentication data%s", set_id);
3355 break;
3356
3357 default:
2d07a215 3358 if (set_id != NULL) authenticated_fail_id = string_copy_malloc(set_id);
059ec3d9
PH
3359 s = US"435 Internal error";
3360 ss = string_sprintf("435 Internal error%s: return %d from authentication "
3361 "check", set_id, c);
3362 break;
3363 }
3364
3365 smtp_printf("%s\r\n", s);
3366 if (c != OK)
3367 log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
3368 au->name, host_and_ident(FALSE), ss);
3369
3370 break; /* AUTH_CMD */
3371
3372 /* The HELO/EHLO commands are permitted to appear in the middle of a
3373 session as well as at the beginning. They have the effect of a reset in
3374 addition to their other functions. Their absence at the start cannot be
3375 taken to be an error.
3376
3377 RFC 2821 says:
3378
3379 If the EHLO command is not acceptable to the SMTP server, 501, 500,
3380 or 502 failure replies MUST be returned as appropriate. The SMTP
3381 server MUST stay in the same state after transmitting these replies
3382 that it was in before the EHLO was received.
3383
3384 Therefore, we do not do the reset until after checking the command for
3385 acceptability. This change was made for Exim release 4.11. Previously
3386 it did the reset first. */
3387
3388 case HELO_CMD:
b4ed4da0 3389 HAD(SCH_HELO);
059ec3d9
PH
3390 hello = US"HELO";
3391 esmtp = FALSE;
3392 goto HELO_EHLO;
3393
3394 case EHLO_CMD:
b4ed4da0 3395 HAD(SCH_EHLO);
059ec3d9
PH
3396 hello = US"EHLO";
3397 esmtp = TRUE;
3398
3399 HELO_EHLO: /* Common code for HELO and EHLO */
3400 cmd_list[CMD_LIST_HELO].is_mail_cmd = FALSE;
3401 cmd_list[CMD_LIST_EHLO].is_mail_cmd = FALSE;
3402
3403 /* Reject the HELO if its argument was invalid or non-existent. A
3404 successful check causes the argument to be saved in malloc store. */
3405
ca86f471 3406 if (!check_helo(smtp_cmd_data))
059ec3d9
PH
3407 {
3408 smtp_printf("501 Syntactically invalid %s argument(s)\r\n", hello);
3409
3410 log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
3411 "invalid argument(s): %s", hello, host_and_ident(FALSE),
3ee512ff
PH
3412 (*smtp_cmd_argument == 0)? US"(no argument given)" :
3413 string_printing(smtp_cmd_argument));
059ec3d9
PH
3414
3415 if (++synprot_error_count > smtp_max_synprot_errors)
3416 {
3417 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3418 "syntax or protocol errors (last command was \"%s\")",
3ee512ff 3419 host_and_ident(FALSE), smtp_cmd_buffer);
059ec3d9
PH
3420 done = 1;
3421 }
3422
3423 break;
3424 }
3425
3426 /* If sender_host_unknown is true, we have got here via the -bs interface,
3427 not called from inetd. Otherwise, we are running an IP connection and the
3428 host address will be set. If the helo name is the primary name of this
3429 host and we haven't done a reverse lookup, force one now. If helo_required
3430 is set, ensure that the HELO name matches the actual host. If helo_verify
3431 is set, do the same check, but softly. */
3432
3433 if (!sender_host_unknown)
3434 {
3435 BOOL old_helo_verified = helo_verified;
ca86f471 3436 uschar *p = smtp_cmd_data;
059ec3d9
PH
3437
3438 while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
3439 *p = 0;
3440
3441 /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
3442 because otherwise the log can be confusing. */
3443
3444 if (sender_host_name == NULL &&
3445 (deliver_domain = sender_helo_name, /* set $domain */
55414b25 3446 match_isinlist(sender_helo_name, CUSS &helo_lookup_domains, 0,
059ec3d9
PH
3447 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL)) == OK)
3448 (void)host_name_lookup();
3449
3450 /* Rebuild the fullhost info to include the HELO name (and the real name
3451 if it was looked up.) */
3452
3453 host_build_sender_fullhost(); /* Rebuild */
3454 set_process_info("handling%s incoming connection from %s",
817d9f57 3455 (tls_in.active >= 0)? " TLS" : "", host_and_ident(FALSE));
059ec3d9
PH
3456
3457 /* Verify if configured. This doesn't give much security, but it does
d7b47fd0
PH
3458 make some people happy to be able to do it. If helo_required is set,
3459 (host matches helo_verify_hosts) failure forces rejection. If helo_verify
3460 is set (host matches helo_try_verify_hosts), it does not. This is perhaps
3461 now obsolescent, since the verification can now be requested selectively
3462 at ACL time. */
059ec3d9 3463
d7b47fd0 3464 helo_verified = helo_verify_failed = FALSE;
059ec3d9
PH
3465 if (helo_required || helo_verify)
3466 {
d7b47fd0 3467 BOOL tempfail = !smtp_verify_helo();
059ec3d9
PH
3468 if (!helo_verified)
3469 {
3470 if (helo_required)
3471 {
3472 smtp_printf("%d %s argument does not match calling host\r\n",
3473 tempfail? 451 : 550, hello);
3474 log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
3475 tempfail? "temporarily " : "",
3476 hello, sender_helo_name, host_and_ident(FALSE));
3477 helo_verified = old_helo_verified;
3478 break; /* End of HELO/EHLO processing */
3479 }
3480 HDEBUG(D_all) debug_printf("%s verification failed but host is in "
3481 "helo_try_verify_hosts\n", hello);
3482 }
3483 }
3484 }
3485
8523533c
TK
3486#ifdef EXPERIMENTAL_SPF
3487 /* set up SPF context */
3488 spf_init(sender_helo_name, sender_host_address);
3489#endif
3490
a14e5636
PH
3491 /* Apply an ACL check if one is defined; afterwards, recheck
3492 synchronization in case the client started sending in a delay. */
059ec3d9
PH
3493
3494 if (acl_smtp_helo != NULL)
3495 {
64ffc24f 3496 rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo, &user_msg, &log_msg);
059ec3d9
PH
3497 if (rc != OK)
3498 {
3499 done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
3500 sender_helo_name = NULL;
3501 host_build_sender_fullhost(); /* Rebuild */
3502 break;
3503 }
a14e5636 3504 else if (!check_sync()) goto SYNC_FAILURE;
059ec3d9
PH
3505 }
3506
4e88a19f
PH
3507 /* Generate an OK reply. The default string includes the ident if present,
3508 and also the IP address if present. Reflecting back the ident is intended
3509 as a deterrent to mail forgers. For maximum efficiency, and also because
3510 some broken systems expect each response to be in a single packet, arrange
3511 that the entire reply is sent in one write(). */
059ec3d9
PH
3512
3513 auth_advertised = FALSE;
3514 pipelining_advertised = FALSE;
d1a13eea 3515#ifdef SUPPORT_TLS
059ec3d9 3516 tls_advertised = FALSE;
d1a13eea 3517#endif
6c1c3d1d 3518 dsn_advertised = FALSE;
d1a13eea
JH
3519#ifdef EXPERIMENTAL_INTERNATIONAL
3520 smtputf8_advertised = FALSE;
3521#endif
059ec3d9 3522
d6a96edc 3523 smtp_code = US"250 "; /* Default response code plus space*/
4e88a19f
PH
3524 if (user_msg == NULL)
3525 {
3526 s = string_sprintf("%.3s %s Hello %s%s%s",
3527 smtp_code,
3528 smtp_active_hostname,
3529 (sender_ident == NULL)? US"" : sender_ident,
3530 (sender_ident == NULL)? US"" : US" at ",
3531 (sender_host_name == NULL)? sender_helo_name : sender_host_name);
3532
3533 ptr = Ustrlen(s);
3534 size = ptr + 1;
059ec3d9 3535
4e88a19f
PH
3536 if (sender_host_address != NULL)
3537 {
3538 s = string_cat(s, &size, &ptr, US" [", 2);
3539 s = string_cat(s, &size, &ptr, sender_host_address,
3540 Ustrlen(sender_host_address));
3541 s = string_cat(s, &size, &ptr, US"]", 1);
3542 }
3543 }
3544
d6a96edc
PH
3545 /* A user-supplied EHLO greeting may not contain more than one line. Note
3546 that the code returned by smtp_message_code() includes the terminating
3547 whitespace character. */
059ec3d9 3548
4e88a19f 3549 else
059ec3d9 3550 {
4e88a19f 3551 char *ss;
d6a96edc 3552 int codelen = 4;
4e88a19f 3553 smtp_message_code(&smtp_code, &codelen, &user_msg, NULL);
d6a96edc 3554 s = string_sprintf("%.*s%s", codelen, smtp_code, user_msg);
4e88a19f
PH
3555 if ((ss = strpbrk(CS s, "\r\n")) != NULL)
3556 {
3557 log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
3558 "newlines: message truncated: %s", string_printing(s));
3559 *ss = 0;
3560 }
3561 ptr = Ustrlen(s);
3562 size = ptr + 1;
059ec3d9
PH
3563 }
3564
3565 s = string_cat(s, &size, &ptr, US"\r\n", 2);
3566
3567 /* If we received EHLO, we must create a multiline response which includes
3568 the functions supported. */
3569
3570 if (esmtp)
3571 {
3572 s[3] = '-';
3573
3574 /* I'm not entirely happy with this, as an MTA is supposed to check
3575 that it has enough room to accept a message of maximum size before
3576 it sends this. However, there seems little point in not sending it.
3577 The actual size check happens later at MAIL FROM time. By postponing it
3578 till then, VRFY and EXPN can be used after EHLO when space is short. */
3579
3580 if (thismessage_size_limit > 0)
3581 {
4e88a19f
PH
3582 sprintf(CS big_buffer, "%.3s-SIZE %d\r\n", smtp_code,
3583 thismessage_size_limit);
059ec3d9
PH
3584 s = string_cat(s, &size, &ptr, big_buffer, Ustrlen(big_buffer));
3585 }
3586 else
3587 {
4e88a19f
PH
3588 s = string_cat(s, &size, &ptr, smtp_code, 3);
3589 s = string_cat(s, &size, &ptr, US"-SIZE\r\n", 7);
059ec3d9
PH
3590 }
3591
3592 /* Exim does not do protocol conversion or data conversion. It is 8-bit
3593 clean; if it has an 8-bit character in its hand, it just sends it. It
3594 cannot therefore specify 8BITMIME and remain consistent with the RFCs.
3595 However, some users want this option simply in order to stop MUAs
3596 mangling messages that contain top-bit-set characters. It is therefore
3597 provided as an option. */
3598
3599 if (accept_8bitmime)
4e88a19f
PH
3600 {
3601 s = string_cat(s, &size, &ptr, smtp_code, 3);
3602 s = string_cat(s, &size, &ptr, US"-8BITMIME\r\n", 11);
3603 }
059ec3d9 3604
6c1c3d1d
WB
3605 /* Advertise DSN support if configured to do so. */
3606 if (verify_check_host(&dsn_advertise_hosts) != FAIL)
3607 {
3608 s = string_cat(s, &size, &ptr, smtp_code, 3);
3609 s = string_cat(s, &size, &ptr, US"-DSN\r\n", 6);
3610 dsn_advertised = TRUE;
3611 }
6c1c3d1d 3612
059ec3d9
PH
3613 /* Advertise ETRN if there's an ACL checking whether a host is
3614 permitted to issue it; a check is made when any host actually tries. */
3615
3616 if (acl_smtp_etrn != NULL)
3617 {
4e88a19f
PH
3618 s = string_cat(s, &size, &ptr, smtp_code, 3);
3619 s = string_cat(s, &size, &ptr, US"-ETRN\r\n", 7);
059ec3d9
PH
3620 }
3621
3622 /* Advertise EXPN if there's an ACL checking whether a host is
3623 permitted to issue it; a check is made when any host actually tries. */
3624
3625 if (acl_smtp_expn != NULL)
3626 {
4e88a19f
PH
3627 s = string_cat(s, &size, &ptr, smtp_code, 3);
3628 s = string_cat(s, &size, &ptr, US"-EXPN\r\n", 7);
059ec3d9
PH
3629 }
3630
3631 /* Exim is quite happy with pipelining, so let the other end know that
3632 it is safe to use it, unless advertising is disabled. */
3633
cf8b11a5
PH
3634 if (pipelining_enable &&
3635 verify_check_host(&pipelining_advertise_hosts) == OK)
059ec3d9 3636 {
4e88a19f
PH
3637 s = string_cat(s, &size, &ptr, smtp_code, 3);
3638 s = string_cat(s, &size, &ptr, US"-PIPELINING\r\n", 13);
059ec3d9
PH
3639 sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
3640 pipelining_advertised = TRUE;
3641 }
3642
fd98a5c6 3643
059ec3d9
PH
3644 /* If any server authentication mechanisms are configured, advertise
3645 them if the current host is in auth_advertise_hosts. The problem with
3646 advertising always is that some clients then require users to
3647 authenticate (and aren't configurable otherwise) even though it may not
3648 be necessary (e.g. if the host is in host_accept_relay).
3649
3650 RFC 2222 states that SASL mechanism names contain only upper case
3651 letters, so output the names in upper case, though we actually recognize
3652 them in either case in the AUTH command. */
3653
3654 if (auths != NULL)
3655 {
3656 if (verify_check_host(&auth_advertise_hosts) == OK)
3657 {
3658 auth_instance *au;
3659 BOOL first = TRUE;
3660 for (au = auths; au != NULL; au = au->next)
3661 {
3662 if (au->server && (au->advertise_condition == NULL ||
3663 expand_check_condition(au->advertise_condition, au->name,
3664 US"authenticator")))
3665 {
3666 int saveptr;
3667 if (first)
3668 {
4e88a19f
PH
3669 s = string_cat(s, &size, &ptr, smtp_code, 3);
3670 s = string_cat(s, &size, &ptr, US"-AUTH", 5);
059ec3d9
PH
3671 first = FALSE;
3672 auth_advertised = TRUE;
3673 }
3674 saveptr = ptr;
3675 s = string_cat(s, &size, &ptr, US" ", 1);
3676 s = string_cat(s, &size, &ptr, au->public_name,
3677 Ustrlen(au->public_name));
3678 while (++saveptr < ptr) s[saveptr] = toupper(s[saveptr]);
3679 au->advertised = TRUE;
3680 }
3681 else au->advertised = FALSE;
3682 }
3683 if (!first) s = string_cat(s, &size, &ptr, US"\r\n", 2);
3684 }
3685 }
3686
3687 /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
3688 if it has been included in the binary, and the host matches
3689 tls_advertise_hosts. We must *not* advertise if we are already in a
3690 secure connection. */
3691
d1a13eea 3692#ifdef SUPPORT_TLS
817d9f57 3693 if (tls_in.active < 0 &&
059ec3d9
PH
3694 verify_check_host(&tls_advertise_hosts) != FAIL)
3695 {
4e88a19f
PH
3696 s = string_cat(s, &size, &ptr, smtp_code, 3);
3697 s = string_cat(s, &size, &ptr, US"-STARTTLS\r\n", 11);
059ec3d9
PH
3698 tls_advertised = TRUE;
3699 }
d1a13eea 3700#endif
059ec3d9 3701
d1a13eea 3702#ifndef DISABLE_PRDR
fd98a5c6 3703 /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
8ccd00b1
JH
3704 if (prdr_enable)
3705 {
fd98a5c6
JH
3706 s = string_cat(s, &size, &ptr, smtp_code, 3);
3707 s = string_cat(s, &size, &ptr, US"-PRDR\r\n", 7);
8ccd00b1 3708 }
d1a13eea
JH
3709#endif
3710
3711#ifdef EXPERIMENTAL_INTERNATIONAL
3712 if ( accept_8bitmime
3713 && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
3714 {
3715 s = string_cat(s, &size, &ptr, smtp_code, 3);
3716 s = string_cat(s, &size, &ptr, US"-SMTPUTF8\r\n", 11);
3717 smtputf8_advertised = TRUE;
3718 }
3719#endif
fd98a5c6 3720
059ec3d9
PH
3721 /* Finish off the multiline reply with one that is always available. */
3722
4e88a19f
PH
3723 s = string_cat(s, &size, &ptr, smtp_code, 3);
3724 s = string_cat(s, &size, &ptr, US" HELP\r\n", 7);
059ec3d9
PH
3725 }
3726
3727 /* Terminate the string (for debug), write it, and note that HELO/EHLO
3728 has been seen. */
3729
3730 s[ptr] = 0;
3731
d1a13eea 3732#ifdef SUPPORT_TLS
817d9f57 3733 if (tls_in.active >= 0) (void)tls_write(TRUE, s, ptr); else
d1a13eea 3734#endif
059ec3d9 3735
1ac6b2e7
JH
3736 {
3737 int i = fwrite(s, 1, ptr, smtp_out); i = i; /* compiler quietening */
3738 }
898d150f
PH
3739 DEBUG(D_receive)
3740 {
3741 uschar *cr;
3742 while ((cr = Ustrchr(s, '\r')) != NULL) /* lose CRs */
3743 memmove(cr, cr + 1, (ptr--) - (cr - s));
3744 debug_printf("SMTP>> %s", s);
3745 }
059ec3d9 3746 helo_seen = TRUE;
4e88a19f
PH
3747
3748 /* Reset the protocol and the state, abandoning any previous message. */
3749
3750 received_protocol = (esmtp?
3751 protocols[pextend +
3752 ((sender_host_authenticated != NULL)? pauthed : 0) +
817d9f57 3753 ((tls_in.active >= 0)? pcrpted : 0)]
4e88a19f 3754 :
817d9f57 3755 protocols[pnormal + ((tls_in.active >= 0)? pcrpted : 0)])
4e88a19f
PH
3756 +
3757 ((sender_host_address != NULL)? pnlocal : 0);
3758
3759 smtp_reset(reset_point);
3760 toomany = FALSE;
059ec3d9
PH
3761 break; /* HELO/EHLO */
3762
3763
3764 /* The MAIL command requires an address as an operand. All we do
3765 here is to parse it for syntactic correctness. The form "<>" is
3766 a special case which converts into an empty string. The start/end
3767 pointers in the original are not used further for this address, as
3768 it is the canonical extracted address which is all that is kept. */
3769
3770 case MAIL_CMD:
b4ed4da0 3771 HAD(SCH_MAIL);
059ec3d9
PH
3772 smtp_mailcmd_count++; /* Count for limit and ratelimit */
3773 was_rej_mail = TRUE; /* Reset if accepted */
d27f98fe 3774 env_mail_type_t * mail_args; /* Sanity check & validate args */
059ec3d9
PH
3775
3776 if (helo_required && !helo_seen)
3777 {
3778 smtp_printf("503 HELO or EHLO required\r\n");
3779 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
3780 "HELO/EHLO given", host_and_ident(FALSE));
3781 break;
3782 }
3783
3784 if (sender_address != NULL)
3785 {
3786 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3787 US"sender already given");
3788 break;
3789 }
3790
ca86f471 3791 if (smtp_cmd_data[0] == 0)
059ec3d9
PH
3792 {
3793 done = synprot_error(L_smtp_protocol_error, 501, NULL,
3794 US"MAIL must have an address operand");
3795 break;
3796 }
3797
3798 /* Check to see if the limit for messages per connection would be
3799 exceeded by accepting further messages. */
3800
3801 if (smtp_accept_max_per_connection > 0 &&
3802 smtp_mailcmd_count > smtp_accept_max_per_connection)
3803 {
3804 smtp_printf("421 too many messages in this connection\r\n");
3805 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
3806 "messages in one connection", host_and_ident(TRUE));
3807 break;
3808 }
3809
3810 /* Reset for start of message - even if this is going to fail, we
3811 obviously need to throw away any previous data. */
3812
3813 smtp_reset(reset_point);
3814 toomany = FALSE;
3815 sender_data = recipient_data = NULL;
3816
3817 /* Loop, checking for ESMTP additions to the MAIL FROM command. */
3818
3819 if (esmtp) for(;;)
3820 {
3821 uschar *name, *value, *end;
3822 unsigned long int size;
d27f98fe 3823 BOOL arg_error = FALSE;
059ec3d9
PH
3824
3825 if (!extract_option(&name, &value)) break;
3826
d27f98fe
TL
3827 for (mail_args = env_mail_type_list;
3828 (char *)mail_args < (char *)env_mail_type_list + sizeof(env_mail_type_list);
3829 mail_args++
3830 )
d27f98fe
TL
3831 if (strcmpic(name, mail_args->name) == 0)
3832 break;
d27f98fe
TL
3833 if (mail_args->need_value && strcmpic(value, US"") == 0)
3834 break;
059ec3d9 3835
d27f98fe 3836 switch(mail_args->value)
059ec3d9 3837 {
d27f98fe
TL
3838 /* Handle SIZE= by reading the value. We don't do the check till later,
3839 in order to be able to log the sender address on failure. */
3840 case ENV_MAIL_OPT_SIZE:
d27f98fe 3841 if (((size = Ustrtoul(value, &end, 10)), *end == 0))
059ec3d9 3842 {
d27f98fe
TL
3843 if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
3844 size = INT_MAX;
3845 message_size = (int)size;
059ec3d9
PH
3846 }
3847 else
d27f98fe
TL
3848 arg_error = TRUE;
3849 break;
059ec3d9 3850
d27f98fe
TL
3851 /* If this session was initiated with EHLO and accept_8bitmime is set,
3852 Exim will have indicated that it supports the BODY=8BITMIME option. In
3853 fact, it does not support this according to the RFCs, in that it does not
3854 take any special action for forwarding messages containing 8-bit
3855 characters. That is why accept_8bitmime is not the default setting, but
3856 some sites want the action that is provided. We recognize both "8BITMIME"
3857 and "7BIT" as body types, but take no action. */
3858 case ENV_MAIL_OPT_BODY:
3c0a92dc 3859 if (accept_8bitmime) {
9d4319df 3860 if (strcmpic(value, US"8BITMIME") == 0)
3c0a92dc 3861 body_8bitmime = 8;
9d4319df 3862 else if (strcmpic(value, US"7BIT") == 0)
3c0a92dc 3863 body_8bitmime = 7;
9d4319df
JH
3864 else
3865 {
3c0a92dc
JH
3866 body_8bitmime = 0;
3867 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3868 US"invalid data for BODY");
3869 goto COMMAND_LOOP;
9d4319df 3870 }
3c0a92dc
JH
3871 DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
3872 break;
3873 }
d27f98fe
TL
3874 arg_error = TRUE;
3875 break;
059ec3d9 3876
6c1c3d1d
WB
3877 /* Handle the two DSN options, but only if configured to do so (which
3878 will have caused "DSN" to be given in the EHLO response). The code itself
3879 is included only if configured in at build time. */
3880
3881 case ENV_MAIL_OPT_RET:
9d4319df
JH
3882 if (dsn_advertised)
3883 {
6c1c3d1d 3884 /* Check if RET has already been set */
9d4319df
JH
3885 if (dsn_ret > 0)
3886 {
6c1c3d1d
WB
3887 synprot_error(L_smtp_syntax_error, 501, NULL,
3888 US"RET can be specified once only");
3889 goto COMMAND_LOOP;
9d4319df
JH
3890 }
3891 dsn_ret = strcmpic(value, US"HDRS") == 0
3892 ? dsn_ret_hdrs
3893 : strcmpic(value, US"FULL") == 0
3894 ? dsn_ret_full
3895 : 0;
6c1c3d1d
WB
3896 DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
3897 /* Check for invalid invalid value, and exit with error */
9d4319df
JH
3898 if (dsn_ret == 0)
3899 {
6c1c3d1d
WB
3900 synprot_error(L_smtp_syntax_error, 501, NULL,
3901 US"Value for RET is invalid");
3902 goto COMMAND_LOOP;
9d4319df
JH
3903 }
3904 }
6c1c3d1d
WB
3905 break;
3906 case ENV_MAIL_OPT_ENVID:
9d4319df
JH
3907 if (dsn_advertised)
3908 {
6c1c3d1d 3909 /* Check if the dsn envid has been already set */
9d4319df
JH
3910 if (dsn_envid != NULL)
3911 {
6c1c3d1d
WB
3912 synprot_error(L_smtp_syntax_error, 501, NULL,
3913 US"ENVID can be specified once only");
3914 goto COMMAND_LOOP;
9d4319df 3915 }
6c1c3d1d
WB
3916 dsn_envid = string_copy(value);
3917 DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
9d4319df 3918 }
6c1c3d1d 3919 break;
6c1c3d1d 3920
d27f98fe
TL
3921 /* Handle the AUTH extension. If the value given is not "<>" and either
3922 the ACL says "yes" or there is no ACL but the sending host is
3923 authenticated, we set it up as the authenticated sender. However, if the
3924 authenticator set a condition to be tested, we ignore AUTH on MAIL unless
3925 the condition is met. The value of AUTH is an xtext, which means that +,
3926 = and cntrl chars are coded in hex; however "<>" is unaffected by this
3927 coding. */
3928 case ENV_MAIL_OPT_AUTH:
3929 if (Ustrcmp(value, "<>") != 0)
3930 {
3931 int rc;
3932 uschar *ignore_msg;
059ec3d9 3933
d27f98fe
TL
3934 if (auth_xtextdecode(value, &authenticated_sender) < 0)
3935 {
3936 /* Put back terminator overrides for error message */
d27f98fe 3937 value[-1] = '=';
fd98a5c6 3938 name[-1] = ' ';
d27f98fe
TL
3939 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3940 US"invalid data for AUTH");
3941 goto COMMAND_LOOP;
3942 }
3943 if (acl_smtp_mailauth == NULL)
3944 {
3945 ignore_msg = US"client not authenticated";
3946 rc = (sender_host_authenticated != NULL)? OK : FAIL;
3947 }
3948 else
3949 {
3950 ignore_msg = US"rejected by ACL";
3951 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
3952 &user_msg, &log_msg);
3953 }
3954
3955 switch (rc)
3956 {
3957 case OK:
9d4319df
JH
3958 if (authenticated_by == NULL ||
3959 authenticated_by->mail_auth_condition == NULL ||
3960 expand_check_condition(authenticated_by->mail_auth_condition,
3961 authenticated_by->name, US"authenticator"))
3962 break; /* Accept the AUTH */
3963
3964 ignore_msg = US"server_mail_auth_condition failed";
3965 if (authenticated_id != NULL)
3966 ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
3967 ignore_msg, authenticated_id);
d27f98fe
TL
3968
3969 /* Fall through */
3970
3971 case FAIL:
9d4319df
JH
3972 authenticated_sender = NULL;
3973 log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
3974 value, host_and_ident(TRUE), ignore_msg);
3975 break;
d27f98fe
TL
3976
3977 /* Should only get DEFER or ERROR here. Put back terminator
3978 overrides for error message */
3979
3980 default:
9d4319df
JH
3981 value[-1] = '=';
3982 name[-1] = ' ';
3983 (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
3984 log_msg);
3985 goto COMMAND_LOOP;
d27f98fe 3986 }
059ec3d9 3987 }
d27f98fe 3988 break;
fd98a5c6 3989
8ccd00b1 3990#ifndef DISABLE_PRDR
fd98a5c6 3991 case ENV_MAIL_OPT_PRDR:
8ccd00b1 3992 if (prdr_enable)
fd98a5c6
JH
3993 prdr_requested = TRUE;
3994 break;
3995#endif
3996
d1a13eea
JH
3997#ifdef EXPERIMENTAL_INTERNATIONAL
3998 case ENV_MAIL_OPT_UTF8:
3999 if (smtputf8_advertised)
9d4319df 4000 message_smtputf8 = allow_utf8_domains = TRUE;
d1a13eea
JH
4001 break;
4002#endif
d27f98fe 4003 /* Unknown option. Stick back the terminator characters and break
fd98a5c6
JH
4004 the loop. Do the name-terminator second as extract_option sets
4005 value==name when it found no equal-sign.
4006 An error for a malformed address will occur. */
d27f98fe 4007 default:
d27f98fe 4008 value[-1] = '=';
fd98a5c6
JH
4009 name[-1] = ' ';
4010 arg_error = TRUE;
d27f98fe 4011 break;
059ec3d9 4012 }
d27f98fe
TL
4013 /* Break out of for loop if switch() had bad argument or
4014 when start of the email address is reached */
4015 if (arg_error) break;
059ec3d9
PH
4016 }
4017
4018 /* If we have passed the threshold for rate limiting, apply the current
4019 delay, and update it for next time, provided this is a limited host. */
4020
4021 if (smtp_mailcmd_count > smtp_rlm_threshold &&
4022 verify_check_host(&smtp_ratelimit_hosts) == OK)
4023 {
4024 DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
4025 smtp_delay_mail/1000.0);
4026 millisleep((int)smtp_delay_mail);
4027 smtp_delay_mail *= smtp_rlm_factor;
4028 if (smtp_delay_mail > (double)smtp_rlm_limit)
4029 smtp_delay_mail = (double)smtp_rlm_limit;
4030 }
4031
4032 /* Now extract the address, first applying any SMTP-time rewriting. The
4033 TRUE flag allows "<>" as a sender address. */
4034
9d4319df
JH
4035 raw_sender = rewrite_existflags & rewrite_smtp
4036 ? rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4037 global_rewrite_rules)
4038 : smtp_cmd_data;
059ec3d9
PH
4039
4040 /* rfc821_domains = TRUE; << no longer needed */
4041 raw_sender =
4042 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
4043 TRUE);
4044 /* rfc821_domains = FALSE; << no longer needed */
4045
4046 if (raw_sender == NULL)
4047 {
ca86f471 4048 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
059ec3d9
PH
4049 break;
4050 }
4051
4052 sender_address = raw_sender;
4053
4054 /* If there is a configured size limit for mail, check that this message
4055 doesn't exceed it. The check is postponed to this point so that the sender
4056 can be logged. */
4057
4058 if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
4059 {
4060 smtp_printf("552 Message size exceeds maximum permitted\r\n");
4061 log_write(L_size_reject,
4062 LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
4063 "message too big: size%s=%d max=%d",
4064 sender_address,
4065 host_and_ident(TRUE),
4066 (message_size == INT_MAX)? ">" : "",
4067 message_size,
4068 thismessage_size_limit);
4069 sender_address = NULL;
4070 break;
4071 }
4072
4073 /* Check there is enough space on the disk unless configured not to.
4074 When smtp_check_spool_space is set, the check is for thismessage_size_limit
4075 plus the current message - i.e. we accept the message only if it won't
4076 reduce the space below the threshold. Add 5000 to the size to allow for
4077 overheads such as the Received: line and storing of recipients, etc.
4078 By putting the check here, even when SIZE is not given, it allow VRFY
4079 and EXPN etc. to be used when space is short. */
4080
4081 if (!receive_check_fs(
4082 (smtp_check_spool_space && message_size >= 0)?
4083 message_size + 5000 : 0))
4084 {
4085 smtp_printf("452 Space shortage, please try later\r\n");
4086 sender_address = NULL;
4087 break;
4088 }
4089
4090 /* If sender_address is unqualified, reject it, unless this is a locally
4091 generated message, or the sending host or net is permitted to send
4092 unqualified addresses - typically local machines behaving as MUAs -
4093 in which case just qualify the address. The flag is set above at the start
4094 of the SMTP connection. */
4095
4096 if (sender_domain == 0 && sender_address[0] != 0)
4097 {
4098 if (allow_unqualified_sender)
4099 {
4100 sender_domain = Ustrlen(sender_address) + 1;
4101 sender_address = rewrite_address_qualify(sender_address, FALSE);
4102 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
4103 raw_sender);
4104 }
4105 else
4106 {
4107 smtp_printf("501 %s: sender address must contain a domain\r\n",
ca86f471 4108 smtp_cmd_data);
059ec3d9
PH
4109 log_write(L_smtp_syntax_error,
4110 LOG_MAIN|LOG_REJECT,
4111 "unqualified sender rejected: <%s> %s%s",
4112 raw_sender,
4113 host_and_ident(TRUE),
4114 host_lookup_msg);
4115 sender_address = NULL;
4116 break;
4117 }
4118 }
4119
a14e5636
PH
4120 /* Apply an ACL check if one is defined, before responding. Afterwards,
4121 when pipelining is not advertised, do another sync check in case the ACL
4122 delayed and the client started sending in the meantime. */
059ec3d9 4123
8ccd00b1 4124 if (acl_smtp_mail)
a14e5636
PH
4125 {
4126 rc = acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
4127 if (rc == OK && !pipelining_advertised && !check_sync())
4128 goto SYNC_FAILURE;
4129 }
8ccd00b1
JH
4130 else
4131 rc = OK;
059ec3d9
PH
4132
4133 if (rc == OK || rc == DISCARD)
4134 {
8ccd00b1 4135 if (!user_msg)
fd98a5c6 4136 smtp_printf("%s%s%s", US"250 OK",
8ccd00b1
JH
4137 #ifndef DISABLE_PRDR
4138 prdr_requested ? US", PRDR Requested" : US"",
4139 #else
fd98a5c6 4140 US"",
8ccd00b1 4141 #endif
fd98a5c6
JH
4142 US"\r\n");
4143 else
4144 {
8ccd00b1
JH
4145 #ifndef DISABLE_PRDR
4146 if (prdr_requested)
fd98a5c6
JH
4147 user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
4148 #endif
8ccd00b1 4149 smtp_user_msg(US"250", user_msg);
fd98a5c6 4150 }
059ec3d9
PH
4151 smtp_delay_rcpt = smtp_rlr_base;
4152 recipients_discarded = (rc == DISCARD);
4153 was_rej_mail = FALSE;
4154 }
059ec3d9
PH
4155 else
4156 {
4157 done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
4158 sender_address = NULL;
4159 }
4160 break;
4161
4162
2679d413
PH
4163 /* The RCPT command requires an address as an operand. There may be any
4164 number of RCPT commands, specifying multiple recipients. We build them all
4165 into a data structure. The start/end values given by parse_extract_address
4166 are not used, as we keep only the extracted address. */
059ec3d9
PH
4167
4168 case RCPT_CMD:
b4ed4da0 4169 HAD(SCH_RCPT);
059ec3d9 4170 rcpt_count++;
2679d413 4171 was_rcpt = rcpt_in_progress = TRUE;
059ec3d9
PH
4172
4173 /* There must be a sender address; if the sender was rejected and
4174 pipelining was advertised, we assume the client was pipelining, and do not
4175 count this as a protocol error. Reset was_rej_mail so that further RCPTs
4176 get the same treatment. */
4177
4178 if (sender_address == NULL)
4179 {
4180 if (pipelining_advertised && last_was_rej_mail)
4181 {
4182 smtp_printf("503 sender not yet given\r\n");
4183 was_rej_mail = TRUE;
4184 }
4185 else
4186 {
4187 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4188 US"sender not yet given");
4189 was_rcpt = FALSE; /* Not a valid RCPT */
4190 }
4191 rcpt_fail_count++;
4192 break;
4193 }
4194
4195 /* Check for an operand */
4196
ca86f471 4197 if (smtp_cmd_data[0] == 0)
059ec3d9
PH
4198 {
4199 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4200 US"RCPT must have an address operand");
4201 rcpt_fail_count++;
4202 break;
4203 }
50dc7409 4204
6c1c3d1d
WB
4205 /* Set the DSN flags orcpt and dsn_flags from the session*/
4206 orcpt = NULL;
4207 flags = 0;
4208
4209 if (esmtp) for(;;)
4210 {
45500060 4211 uschar *name, *value;
6c1c3d1d
WB
4212
4213 if (!extract_option(&name, &value))
6c1c3d1d 4214 break;
6c1c3d1d
WB
4215
4216 if (dsn_advertised && strcmpic(name, US"ORCPT") == 0)
4217 {
4218 /* Check whether orcpt has been already set */
45500060
JH
4219 if (orcpt)
4220 {
6c1c3d1d
WB
4221 synprot_error(L_smtp_syntax_error, 501, NULL,
4222 US"ORCPT can be specified once only");
4223 goto COMMAND_LOOP;
4224 }
4225 orcpt = string_copy(value);
4226 DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
4227 }
4228
4229 else if (dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
4230 {
4231 /* Check if the notify flags have been already set */
45500060
JH
4232 if (flags > 0)
4233 {
6c1c3d1d
WB
4234 synprot_error(L_smtp_syntax_error, 501, NULL,
4235 US"NOTIFY can be specified once only");
4236 goto COMMAND_LOOP;
4237 }
45500060
JH
4238 if (strcmpic(value, US"NEVER") == 0)
4239 flags |= rf_notify_never;
4240 else
6c1c3d1d
WB
4241 {
4242 uschar *p = value;
4243 while (*p != 0)
4244 {
4245 uschar *pp = p;
4246 while (*pp != 0 && *pp != ',') pp++;
45500060
JH
4247 if (*pp == ',') *pp++ = 0;
4248 if (strcmpic(p, US"SUCCESS") == 0)
4249 {
4250 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
4251 flags |= rf_notify_success;
6c1c3d1d 4252 }
45500060
JH
4253 else if (strcmpic(p, US"FAILURE") == 0)
4254 {
4255 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
4256 flags |= rf_notify_failure;
6c1c3d1d 4257 }
45500060
JH
4258 else if (strcmpic(p, US"DELAY") == 0)
4259 {
4260 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
4261 flags |= rf_notify_delay;
6c1c3d1d 4262 }
45500060
JH
4263 else
4264 {
6c1c3d1d
WB
4265 /* Catch any strange values */
4266 synprot_error(L_smtp_syntax_error, 501, NULL,
4267 US"Invalid value for NOTIFY parameter");
4268 goto COMMAND_LOOP;
4269 }
4270 p = pp;
4271 }
4272 DEBUG(D_receive) debug_printf("DSN Flags: %x\n", flags);
4273 }
4274 }
4275
4276 /* Unknown option. Stick back the terminator characters and break
4277 the loop. An error for a malformed address will occur. */
4278
4279 else
4280 {
4281 DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
4282 name[-1] = ' ';
4283 value[-1] = '=';
4284 break;
4285 }
4286 }
059ec3d9
PH
4287
4288 /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
4289 as a recipient address */
4290
4291 recipient = ((rewrite_existflags & rewrite_smtp) != 0)?
ca86f471
PH
4292 rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4293 global_rewrite_rules) : smtp_cmd_data;
059ec3d9
PH
4294
4295 /* rfc821_domains = TRUE; << no longer needed */
4296 recipient = parse_extract_address(recipient, &errmess, &start, &end,
4297 &recipient_domain, FALSE);
4298 /* rfc821_domains = FALSE; << no longer needed */
4299
4300 if (recipient == NULL)
4301 {
ca86f471 4302 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
059ec3d9
PH
4303 rcpt_fail_count++;
4304 break;
4305 }
4306
4307 /* If the recipient address is unqualified, reject it, unless this is a
4308 locally generated message. However, unqualified addresses are permitted
4309 from a configured list of hosts and nets - typically when behaving as
4310 MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
4311 really. The flag is set at the start of the SMTP connection.
4312
4313 RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
4314 assumed this meant "reserved local part", but the revision of RFC 821 and
4315 friends now makes it absolutely clear that it means *mailbox*. Consequently
4316 we must always qualify this address, regardless. */
4317
4318 if (recipient_domain == 0)
4319 {
4320 if (allow_unqualified_recipient ||
4321 strcmpic(recipient, US"postmaster") == 0)
4322 {
4323 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
4324 recipient);
4325 recipient_domain = Ustrlen(recipient) + 1;
4326 recipient = rewrite_address_qualify(recipient, TRUE);
4327 }
4328 else
4329 {
4330 rcpt_fail_count++;
4331 smtp_printf("501 %s: recipient address must contain a domain\r\n",
ca86f471 4332 smtp_cmd_data);
059ec3d9
PH
4333 log_write(L_smtp_syntax_error,
4334 LOG_MAIN|LOG_REJECT, "unqualified recipient rejected: "
4335 "<%s> %s%s", recipient, host_and_ident(TRUE),
4336 host_lookup_msg);
4337 break;
4338 }
4339 }
4340
4341 /* Check maximum allowed */
4342
4343 if (rcpt_count > recipients_max && recipients_max > 0)
4344 {
4345 if (recipients_max_reject)
4346 {
4347 rcpt_fail_count++;
4348 smtp_printf("552 too many recipients\r\n");
4349 if (!toomany)
4350 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
4351 "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
4352 }
4353 else
4354 {
4355 rcpt_defer_count++;
4356 smtp_printf("452 too many recipients\r\n");
4357 if (!toomany)
4358 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
4359 "temporarily rejected: sender=<%s> %s", sender_address,
4360 host_and_ident(TRUE));
4361 }
4362
4363 toomany = TRUE;
4364 break;
4365 }
4366
4367 /* If we have passed the threshold for rate limiting, apply the current
4368 delay, and update it for next time, provided this is a limited host. */
4369
4370 if (rcpt_count > smtp_rlr_threshold &&
4371 verify_check_host(&smtp_ratelimit_hosts) == OK)
4372 {
4373 DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
4374 smtp_delay_rcpt/1000.0);
4375 millisleep((int)smtp_delay_rcpt);
4376 smtp_delay_rcpt *= smtp_rlr_factor;
4377 if (smtp_delay_rcpt > (double)smtp_rlr_limit)
4378 smtp_delay_rcpt = (double)smtp_rlr_limit;
4379 }
4380
4381 /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
a14e5636
PH
4382 for them. Otherwise, check the access control list for this recipient. As
4383 there may be a delay in this, re-check for a synchronization error
4384 afterwards, unless pipelining was advertised. */
059ec3d9 4385
a14e5636
PH
4386 if (recipients_discarded) rc = DISCARD; else
4387 {
4388 rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
4389 &log_msg);
4390 if (rc == OK && !pipelining_advertised && !check_sync())
4391 goto SYNC_FAILURE;
4392 }
059ec3d9
PH
4393
4394 /* The ACL was happy */
4395
4396 if (rc == OK)
4397 {
4e88a19f
PH
4398 if (user_msg == NULL) smtp_printf("250 Accepted\r\n");
4399 else smtp_user_msg(US"250", user_msg);
059ec3d9 4400 receive_add_recipient(recipient, -1);
50dc7409 4401
6c1c3d1d
WB
4402 /* Set the dsn flags in the recipients_list */
4403 if (orcpt != NULL)
4404 recipients_list[recipients_count-1].orcpt = orcpt;
4405 else
4406 recipients_list[recipients_count-1].orcpt = NULL;
4407
4408 if (flags != 0)
4409 recipients_list[recipients_count-1].dsn_flags = flags;
4410 else
4411 recipients_list[recipients_count-1].dsn_flags = 0;
4412 DEBUG(D_receive) debug_printf("DSN: orcpt: %s flags: %d\n", recipients_list[recipients_count-1].orcpt, recipients_list[recipients_count-1].dsn_flags);
059ec3d9
PH
4413 }
4414
4415 /* The recipient was discarded */
4416
4417 else if (rc == DISCARD)
4418 {
4e88a19f
PH
4419 if (user_msg == NULL) smtp_printf("250 Accepted\r\n");
4420 else smtp_user_msg(US"250", user_msg);
059ec3d9
PH
4421 rcpt_fail_count++;
4422 discarded = TRUE;
4423 log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> rejected RCPT %s: "
4424 "discarded by %s ACL%s%s", host_and_ident(TRUE),
4425 (sender_address_unrewritten != NULL)?
4426 sender_address_unrewritten : sender_address,
3ee512ff 4427 smtp_cmd_argument, recipients_discarded? "MAIL" : "RCPT",
059ec3d9
PH
4428 (log_msg == NULL)? US"" : US": ",
4429 (log_msg == NULL)? US"" : log_msg);
4430 }
4431
4432 /* Either the ACL failed the address, or it was deferred. */
4433
4434 else
4435 {
4436 if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
4437 done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
4438 }
4439 break;
4440
4441
4442 /* The DATA command is legal only if it follows successful MAIL FROM
4443 and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
4444 not counted as a protocol error if it follows RCPT (which must have been
4445 rejected if there are no recipients.) This function is complete when a
4446 valid DATA command is encountered.
4447
4448 Note concerning the code used: RFC 2821 says this:
4449
4450 - If there was no MAIL, or no RCPT, command, or all such commands
4451 were rejected, the server MAY return a "command out of sequence"
4452 (503) or "no valid recipients" (554) reply in response to the
4453 DATA command.
4454
4455 The example in the pipelining RFC 2920 uses 554, but I use 503 here
2679d413
PH
4456 because it is the same whether pipelining is in use or not.
4457
4458 If all the RCPT commands that precede DATA provoked the same error message
4459 (often indicating some kind of system error), it is helpful to include it
4460 with the DATA rejection (an idea suggested by Tony Finch). */
059ec3d9
PH
4461
4462 case DATA_CMD:
b4ed4da0 4463 HAD(SCH_DATA);
059ec3d9
PH
4464 if (!discarded && recipients_count <= 0)
4465 {
2679d413
PH
4466 if (rcpt_smtp_response_same && rcpt_smtp_response != NULL)
4467 {
4468 uschar *code = US"503";
4469 int len = Ustrlen(rcpt_smtp_response);
4470 smtp_respond(code, 3, FALSE, US"All RCPT commands were rejected with "
4471 "this error:");
4472 /* Responses from smtp_printf() will have \r\n on the end */
4473 if (len > 2 && rcpt_smtp_response[len-2] == '\r')
4474 rcpt_smtp_response[len-2] = 0;
4475 smtp_respond(code, 3, FALSE, rcpt_smtp_response);
4476 }
059ec3d9 4477 if (pipelining_advertised && last_was_rcpt)
2679d413 4478 smtp_printf("503 Valid RCPT command must precede DATA\r\n");
059ec3d9
PH
4479 else
4480 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4481 US"valid RCPT command must precede DATA");
4482 break;
4483 }
4484
4485 if (toomany && recipients_max_reject)
4486 {
4487 sender_address = NULL; /* This will allow a new MAIL without RSET */
4488 sender_address_unrewritten = NULL;
4489 smtp_printf("554 Too many recipients\r\n");
4490 break;
4491 }
8e669ac1 4492
a14e5636 4493 /* If there is an ACL, re-check the synchronization afterwards, since the
528fde2a
JH
4494 ACL may have delayed. To handle cutthrough delivery enforce a dummy call
4495 to get the DATA command sent. */
a14e5636 4496
5032d1cf 4497 if (acl_smtp_predata == NULL && cutthrough.fd < 0) rc = OK; else
8e669ac1 4498 {
528fde2a 4499 uschar * acl= acl_smtp_predata ? acl_smtp_predata : US"accept";
5be20824 4500 enable_dollar_recipients = TRUE;
528fde2a 4501 rc = acl_check(ACL_WHERE_PREDATA, NULL, acl, &user_msg,
5be20824
PH
4502 &log_msg);
4503 enable_dollar_recipients = FALSE;
a14e5636 4504 if (rc == OK && !check_sync()) goto SYNC_FAILURE;
5be20824 4505 }
059ec3d9
PH
4506
4507 if (rc == OK)
4508 {
fd98a5c6
JH
4509 uschar * code;
4510 code = US"354";
4e88a19f 4511 if (user_msg == NULL)
fd98a5c6
JH
4512 smtp_printf("%s Enter message, ending with \".\" on a line by itself\r\n", code);
4513 else smtp_user_msg(code, user_msg);
059ec3d9
PH
4514 done = 3;
4515 message_ended = END_NOTENDED; /* Indicate in middle of data */
4516 }
4517
4518 /* Either the ACL failed the address, or it was deferred. */
4519
4520 else
4521 done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
059ec3d9
PH
4522 break;
4523
4524
4525 case VRFY_CMD:
b4ed4da0 4526 HAD(SCH_VRFY);
64ffc24f 4527 rc = acl_check(ACL_WHERE_VRFY, NULL, acl_smtp_vrfy, &user_msg, &log_msg);
059ec3d9
PH
4528 if (rc != OK)
4529 done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
4530 else
4531 {
4532 uschar *address;
4533 uschar *s = NULL;
4534
4535 /* rfc821_domains = TRUE; << no longer needed */
ca86f471 4536 address = parse_extract_address(smtp_cmd_data, &errmess, &start, &end,
059ec3d9
PH
4537 &recipient_domain, FALSE);
4538 /* rfc821_domains = FALSE; << no longer needed */
4539
4540 if (address == NULL)
4541 s = string_sprintf("501 %s", errmess);
4542 else
4543 {
4544 address_item *addr = deliver_make_addr(address, FALSE);
4545 switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
4deaf07d 4546 -1, -1, NULL, NULL, NULL))
059ec3d9
PH
4547 {
4548 case OK:
4549 s = string_sprintf("250 <%s> is deliverable", address);
4550 break;
4551
4552 case DEFER:
81e509d7
PH
4553 s = (addr->user_message != NULL)?
4554 string_sprintf("451 <%s> %s", address, addr->user_message) :
059ec3d9
PH
4555 string_sprintf("451 Cannot resolve <%s> at this time", address);
4556 break;
4557
4558 case FAIL:
81e509d7
PH
4559 s = (addr->user_message != NULL)?
4560 string_sprintf("550 <%s> %s", address, addr->user_message) :
059ec3d9
PH
4561 string_sprintf("550 <%s> is not deliverable", address);
4562 log_write(0, LOG_MAIN, "VRFY failed for %s %s",
3ee512ff 4563 smtp_cmd_argument, host_and_ident(TRUE));
059ec3d9
PH
4564 break;
4565 }
4566 }
4567
4568 smtp_printf("%s\r\n", s);
4569 }
4570 break;
4571
4572
4573 case EXPN_CMD:
b4ed4da0 4574 HAD(SCH_EXPN);
64ffc24f 4575 rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
059ec3d9
PH
4576 if (rc != OK)
4577 done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
4578 else
4579 {
4580 BOOL save_log_testing_mode = log_testing_mode;
4581 address_test_mode = log_testing_mode = TRUE;
ca86f471 4582 (void) verify_address(deliver_make_addr(smtp_cmd_data, FALSE),
64ffc24f
PH
4583 smtp_out, vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1,
4584 NULL, NULL, NULL);
059ec3d9
PH
4585 address_test_mode = FALSE;
4586 log_testing_mode = save_log_testing_mode; /* true for -bh */
4587 }
4588 break;
4589
4590
4591 #ifdef SUPPORT_TLS
4592
4593 case STARTTLS_CMD:
b4ed4da0 4594 HAD(SCH_STARTTLS);
059ec3d9
PH
4595 if (!tls_advertised)
4596 {
4597 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4598 US"STARTTLS command used when not advertised");
4599 break;
4600 }
4601
4602 /* Apply an ACL check if one is defined */
4603
4604 if (acl_smtp_starttls != NULL)
4605 {
4606 rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls, &user_msg,
4607 &log_msg);
4608 if (rc != OK)
4609 {
4610 done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
4611 break;
4612 }
4613 }
4614
4615 /* RFC 2487 is not clear on when this command may be sent, though it
4616 does state that all information previously obtained from the client
4617 must be discarded if a TLS session is started. It seems reasonble to
4618 do an implied RSET when STARTTLS is received. */
4619
4620 incomplete_transaction_log(US"STARTTLS");
4621 smtp_reset(reset_point);
4622 toomany = FALSE;
4623 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
4624
da80c2a8
PP
4625 /* There's an attack where more data is read in past the STARTTLS command
4626 before TLS is negotiated, then assumed to be part of the secure session
4627 when used afterwards; we use segregated input buffers, so are not
4628 vulnerable, but we want to note when it happens and, for sheer paranoia,
4629 ensure that the buffer is "wiped".
4630 Pipelining sync checks will normally have protected us too, unless disabled
4631 by configuration. */
4632
4633 if (receive_smtp_buffered())
4634 {
4635 DEBUG(D_any)
4636 debug_printf("Non-empty input buffer after STARTTLS; naive attack?");
817d9f57 4637 if (tls_in.active < 0)
da80c2a8
PP
4638 smtp_inend = smtp_inptr = smtp_inbuffer;
4639 /* and if TLS is already active, tls_server_start() should fail */
4640 }
4641
4e7ee012
PP
4642 /* There is nothing we value in the input buffer and if TLS is succesfully
4643 negotiated, we won't use this buffer again; if TLS fails, we'll just read
4644 fresh content into it. The buffer contains arbitrary content from an
4645 untrusted remote source; eg: NOOP <shellcode>\r\nSTARTTLS\r\n
4646 It seems safest to just wipe away the content rather than leave it as a
4647 target to jump to. */
4648
4649 memset(smtp_inbuffer, 0, in_buffer_size);
4650
059ec3d9
PH
4651 /* Attempt to start up a TLS session, and if successful, discard all
4652 knowledge that was obtained previously. At least, that's what the RFC says,
4653 and that's what happens by default. However, in order to work round YAEB,
4654 there is an option to remember the esmtp state. Sigh.
4655
4656 We must allow for an extra EHLO command and an extra AUTH command after
4657 STARTTLS that don't add to the nonmail command count. */
4658
17c76198 4659 if ((rc = tls_server_start(tls_require_ciphers)) == OK)
059ec3d9
PH
4660 {
4661 if (!tls_remember_esmtp)
4662 helo_seen = esmtp = auth_advertised = pipelining_advertised = FALSE;
4663 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
4664 cmd_list[CMD_LIST_AUTH].is_mail_cmd = TRUE;
4665 if (sender_helo_name != NULL)
4666 {
4667 store_free(sender_helo_name);
4668 sender_helo_name = NULL;
4669 host_build_sender_fullhost(); /* Rebuild */
4670 set_process_info("handling incoming TLS connection from %s",
4671 host_and_ident(FALSE));
4672 }
4673 received_protocol = (esmtp?
4674 protocols[pextend + pcrpted +
4675 ((sender_host_authenticated != NULL)? pauthed : 0)]
4676 :
981756db 4677 protocols[pnormal + pcrpted])
059ec3d9
PH
4678 +
4679 ((sender_host_address != NULL)? pnlocal : 0);
4680
4681 sender_host_authenticated = NULL;
4682 authenticated_id = NULL;
4683 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
4684 DEBUG(D_tls) debug_printf("TLS active\n");
4685 break; /* Successful STARTTLS */
4686 }
4687
4688 /* Some local configuration problem was discovered before actually trying
4689 to do a TLS handshake; give a temporary error. */
4690
4691 else if (rc == DEFER)
4692 {
4693 smtp_printf("454 TLS currently unavailable\r\n");
4694 break;
4695 }
4696
4697 /* Hard failure. Reject everything except QUIT or closed connection. One
817d9f57 4698 cause for failure is a nested STARTTLS, in which case tls_in.active remains
059ec3d9
PH
4699 set, but we must still reject all incoming commands. */
4700
4701 DEBUG(D_tls) debug_printf("TLS failed to start\n");
4702 while (done <= 0)
4703 {
4704 switch(smtp_read_command(FALSE))
4705 {
4706 case EOF_CMD:
4707 log_write(L_smtp_connection, LOG_MAIN, "%s closed by EOF",
4708 smtp_get_connection_info());
8f128379 4709 smtp_notquit_exit(US"tls-failed", NULL, NULL);
059ec3d9
PH
4710 done = 2;
4711 break;
4712
8f128379 4713 /* It is perhaps arguable as to which exit ACL should be called here,
24f66b4d 4714 but as it is probably a situation that almost never arises, it
8f128379
PH
4715 probably doesn't matter. We choose to call the real QUIT ACL, which in
4716 some sense is perhaps "right". */
4717
059ec3d9 4718 case QUIT_CMD:
8f128379
PH
4719 user_msg = NULL;
4720 if (acl_smtp_quit != NULL)
4721 {
4722 rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg,
4723 &log_msg);
4724 if (rc == ERROR)
4725 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
4726 log_msg);
4727 }
4728 if (user_msg == NULL)
4729 smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
4730 else
4731 smtp_respond(US"221", 3, TRUE, user_msg);
059ec3d9
PH
4732 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
4733 smtp_get_connection_info());
4734 done = 2;
4735 break;
4736
4737 default:
4738 smtp_printf("554 Security failure\r\n");
4739 break;
4740 }
4741 }
817d9f57 4742 tls_close(TRUE, TRUE);
059ec3d9
PH
4743 break;
4744 #endif
4745
4746
4747 /* The ACL for QUIT is provided for gathering statistical information or
4748 similar; it does not affect the response code, but it can supply a custom
4749 message. */
4750
4751 case QUIT_CMD:
b4ed4da0 4752 HAD(SCH_QUIT);
059ec3d9 4753 incomplete_transaction_log(US"QUIT");
059ec3d9
PH
4754 if (acl_smtp_quit != NULL)
4755 {
8f128379 4756 rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg, &log_msg);
059ec3d9
PH
4757 if (rc == ERROR)
4758 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
4759 log_msg);
4760 }
059ec3d9
PH
4761 if (user_msg == NULL)
4762 smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
4763 else
4e88a19f 4764 smtp_respond(US"221", 3, TRUE, user_msg);
059ec3d9
PH
4765
4766 #ifdef SUPPORT_TLS
817d9f57 4767 tls_close(TRUE, TRUE);
059ec3d9
PH
4768 #endif
4769
4770 done = 2;
4771 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
4772 smtp_get_connection_info());
4773 break;
4774
4775
4776 case RSET_CMD:
b4ed4da0 4777 HAD(SCH_RSET);
059ec3d9
PH
4778 incomplete_transaction_log(US"RSET");
4779 smtp_reset(reset_point);
4780 toomany = FALSE;
4781 smtp_printf("250 Reset OK\r\n");
4782 cmd_list[CMD_LIST_RSET].is_mail_cmd = FALSE;
4783 break;
4784
4785
4786 case NOOP_CMD:
b4ed4da0 4787 HAD(SCH_NOOP);
059ec3d9
PH
4788 smtp_printf("250 OK\r\n");
4789 break;
4790
4791
b43a74ea
PH
4792 /* Show ETRN/EXPN/VRFY if there's an ACL for checking hosts; if actually
4793 used, a check will be done for permitted hosts. Show STARTTLS only if not
4794 already in a TLS session and if it would be advertised in the EHLO
4795 response. */
059ec3d9
PH
4796
4797 case HELP_CMD:
b4ed4da0 4798 HAD(SCH_HELP);
059ec3d9
PH
4799 smtp_printf("214-Commands supported:\r\n");
4800 {
4801 uschar buffer[256];
4802 buffer[0] = 0;
4803 Ustrcat(buffer, " AUTH");
4804 #ifdef SUPPORT_TLS
817d9f57 4805 if (tls_in.active < 0 &&
b43a74ea
PH
4806 verify_check_host(&tls_advertise_hosts) != FAIL)
4807 Ustrcat(buffer, " STARTTLS");
059ec3d9
PH
4808 #endif
4809 Ustrcat(buffer, " HELO EHLO MAIL RCPT DATA");
4810 Ustrcat(buffer, " NOOP QUIT RSET HELP");
4811 if (acl_smtp_etrn != NULL) Ustrcat(buffer, " ETRN");
4812 if (acl_smtp_expn != NULL) Ustrcat(buffer, " EXPN");
4813 if (acl_smtp_vrfy != NULL) Ustrcat(buffer, " VRFY");
4814 smtp_printf("214%s\r\n", buffer);
4815 }
4816 break;
4817
4818
4819 case EOF_CMD:
4820 incomplete_transaction_log(US"connection lost");
8f128379
PH
4821 smtp_notquit_exit(US"connection-lost", US"421",
4822 US"%s lost input connection", smtp_active_hostname);
059ec3d9
PH
4823
4824 /* Don't log by default unless in the middle of a message, as some mailers
4825 just drop the call rather than sending QUIT, and it clutters up the logs.
4826 */
4827
4828 if (sender_address != NULL || recipients_count > 0)
4829 log_write(L_lost_incoming_connection,
4830 LOG_MAIN,
4831 "unexpected %s while reading SMTP command from %s%s",
4832 sender_host_unknown? "EOF" : "disconnection",
4833 host_and_ident(FALSE), smtp_read_error);
4834
4835 else log_write(L_smtp_connection, LOG_MAIN, "%s lost%s",
4836 smtp_get_connection_info(), smtp_read_error);
4837
4838 done = 1;
4839 break;
4840
4841
4842 case ETRN_CMD:
b4ed4da0 4843 HAD(SCH_ETRN);
059ec3d9
PH
4844 if (sender_address != NULL)
4845 {
4846 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4847 US"ETRN is not permitted inside a transaction");
4848 break;
4849 }
4850
3ee512ff 4851 log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
059ec3d9
PH
4852 host_and_ident(FALSE));
4853
64ffc24f 4854 rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn, &user_msg, &log_msg);
059ec3d9
PH
4855 if (rc != OK)
4856 {
4857 done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
4858 break;
4859 }
4860
4861 /* Compute the serialization key for this command. */
4862
ca86f471 4863 etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
059ec3d9
PH
4864
4865 /* If a command has been specified for running as a result of ETRN, we
4866 permit any argument to ETRN. If not, only the # standard form is permitted,
4867 since that is strictly the only kind of ETRN that can be implemented
4868 according to the RFC. */
4869
4870 if (smtp_etrn_command != NULL)
4871 {
4872 uschar *error;
4873 BOOL rc;
4874 etrn_command = smtp_etrn_command;
ca86f471 4875 deliver_domain = smtp_cmd_data;
059ec3d9
PH
4876 rc = transport_set_up_command(&argv, smtp_etrn_command, TRUE, 0, NULL,
4877 US"ETRN processing", &error);
4878 deliver_domain = NULL;
4879 if (!rc)
4880 {
4881 log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
4882 error);
4883 smtp_printf("458 Internal failure\r\n");
4884 break;
4885 }
4886 }
4887
4888 /* Else set up to call Exim with the -R option. */
4889
4890 else
4891 {
ca86f471 4892 if (*smtp_cmd_data++ != '#')
059ec3d9
PH
4893 {
4894 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4895 US"argument must begin with #");
4896 break;
4897 }
4898 etrn_command = US"exim -R";
55414b25 4899 argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE, 2, US"-R",
ca86f471 4900 smtp_cmd_data);
059ec3d9
PH
4901 }
4902
4903 /* If we are host-testing, don't actually do anything. */
4904
4905 if (host_checking)
4906 {
4907 HDEBUG(D_any)
4908 {
4909 debug_printf("ETRN command is: %s\n", etrn_command);
4910 debug_printf("ETRN command execution skipped\n");
4911 }
4e88a19f
PH
4912 if (user_msg == NULL) smtp_printf("250 OK\r\n");
4913 else smtp_user_msg(US"250", user_msg);
059ec3d9
PH
4914 break;
4915 }
4916
4917
4918 /* If ETRN queue runs are to be serialized, check the database to
4919 ensure one isn't already running. */
4920
4921 if (smtp_etrn_serialize && !enq_start(etrn_serialize_key))
4922 {
ca86f471 4923 smtp_printf("458 Already processing %s\r\n", smtp_cmd_data);
059ec3d9
PH
4924 break;
4925 }
4926
4927 /* Fork a child process and run the command. We don't want to have to
4928 wait for the process at any point, so set SIGCHLD to SIG_IGN before
4929 forking. It should be set that way anyway for external incoming SMTP,
4930 but we save and restore to be tidy. If serialization is required, we
4931 actually run the command in yet another process, so we can wait for it
4932 to complete and then remove the serialization lock. */
4933
4934 oldsignal = signal(SIGCHLD, SIG_IGN);
4935
4936 if ((pid = fork()) == 0)
4937 {
f1e894f3
PH
4938 smtp_input = FALSE; /* This process is not associated with the */
4939 (void)fclose(smtp_in); /* SMTP call any more. */
4940 (void)fclose(smtp_out);
059ec3d9
PH
4941
4942 signal(SIGCHLD, SIG_DFL); /* Want to catch child */
4943
4944 /* If not serializing, do the exec right away. Otherwise, fork down
4945 into another process. */
4946
4947 if (!smtp_etrn_serialize || (pid = fork()) == 0)
4948 {
4949 DEBUG(D_exec) debug_print_argv(argv);
4950 exim_nullstd(); /* Ensure std{in,out,err} exist */
4951 execv(CS argv[0], (char *const *)argv);
4952 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
4953 etrn_command, strerror(errno));
4954 _exit(EXIT_FAILURE); /* paranoia */
4955 }
4956
4957 /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
4958 is, we are in the first subprocess, after forking again. All we can do
4959 for a failing fork is to log it. Otherwise, wait for the 2nd process to
4960 complete, before removing the serialization. */
4961
4962 if (pid < 0)
4963 log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
4964 "failed: %s", strerror(errno));
4965 else
4966 {
4967 int status;
4968 DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
4969 (int)pid);
4970 (void)wait(&status);
4971 DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
4972 (int)pid);
4973 }
4974
4975 enq_end(etrn_serialize_key);
4976 _exit(EXIT_SUCCESS);
4977 }
4978
4979 /* Back in the top level SMTP process. Check that we started a subprocess
4980 and restore the signal state. */
4981
4982 if (pid < 0)
4983 {
4984 log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
4985 strerror(errno));
4986 smtp_printf("458 Unable to fork process\r\n");
4987 if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
4988 }
4e88a19f
PH
4989 else
4990 {
4991 if (user_msg == NULL) smtp_printf("250 OK\r\n");
4992 else smtp_user_msg(US"250", user_msg);
4993 }
059ec3d9
PH
4994
4995 signal(SIGCHLD, oldsignal);
4996 break;
4997
4998
4999 case BADARG_CMD:
5000 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5001 US"unexpected argument data");
5002 break;
5003
5004
5005 /* This currently happens only for NULLs, but could be extended. */
5006
5007 case BADCHAR_CMD:
5008 done = synprot_error(L_smtp_syntax_error, 0, NULL, /* Just logs */
5009 US"NULL character(s) present (shown as '?')");
5010 smtp_printf("501 NULL characters are not allowed in SMTP commands\r\n");
5011 break;
5012
5013
5014 case BADSYN_CMD:
a14e5636 5015 SYNC_FAILURE:
059ec3d9
PH
5016 if (smtp_inend >= smtp_inbuffer + in_buffer_size)
5017 smtp_inend = smtp_inbuffer + in_buffer_size - 1;
5018 c = smtp_inend - smtp_inptr;
5019 if (c > 150) c = 150;
5020 smtp_inptr[c] = 0;
5021 incomplete_transaction_log(US"sync failure");
3af76a81 5022 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
059ec3d9
PH
5023 "(next input sent too soon: pipelining was%s advertised): "
5024 "rejected \"%s\" %s next input=\"%s\"",
5025 pipelining_advertised? "" : " not",
3ee512ff 5026 smtp_cmd_buffer, host_and_ident(TRUE),
059ec3d9 5027 string_printing(smtp_inptr));
8f128379
PH
5028 smtp_notquit_exit(US"synchronization-error", US"554",
5029 US"SMTP synchronization error");
059ec3d9
PH
5030 done = 1; /* Pretend eof - drops connection */
5031 break;
5032
5033
5034 case TOO_MANY_NONMAIL_CMD:
ca86f471
PH
5035 s = smtp_cmd_buffer;
5036 while (*s != 0 && !isspace(*s)) s++;
059ec3d9
PH
5037 incomplete_transaction_log(US"too many non-mail commands");
5038 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
5039 "nonmail commands (last was \"%.*s\")", host_and_ident(FALSE),
6d9cfc47 5040 (int)(s - smtp_cmd_buffer), smtp_cmd_buffer);
8f128379 5041 smtp_notquit_exit(US"bad-commands", US"554", US"Too many nonmail commands");
059ec3d9
PH
5042 done = 1; /* Pretend eof - drops connection */
5043 break;
5044
a3c86431
TL
5045 #ifdef EXPERIMENTAL_PROXY
5046 case PROXY_FAIL_IGNORE_CMD:
5047 smtp_printf("503 Command refused, required Proxy negotiation failed\r\n");
5048 break;
5049 #endif
059ec3d9
PH
5050
5051 default:
5052 if (unknown_command_count++ >= smtp_max_unknown_commands)
5053 {
5054 log_write(L_smtp_syntax_error, LOG_MAIN,
5055 "SMTP syntax error in \"%s\" %s %s",
3ee512ff 5056 string_printing(smtp_cmd_buffer), host_and_ident(TRUE),
059ec3d9
PH
5057 US"unrecognized command");
5058 incomplete_transaction_log(US"unrecognized command");
8f128379
PH
5059 smtp_notquit_exit(US"bad-commands", US"500",
5060 US"Too many unrecognized commands");
059ec3d9
PH
5061 done = 2;
5062 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
5063 "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
3ee512ff 5064 smtp_cmd_buffer);
059ec3d9
PH
5065 }
5066 else
5067 done = synprot_error(L_smtp_syntax_error, 500, NULL,
5068 US"unrecognized command");
5069 break;
5070 }
5071
5072 /* This label is used by goto's inside loops that want to break out to
5073 the end of the command-processing loop. */
5074
5075 COMMAND_LOOP:
5076 last_was_rej_mail = was_rej_mail; /* Remember some last commands for */
5077 last_was_rcpt = was_rcpt; /* protocol error handling */
5078 continue;
5079 }
5080
5081return done - 2; /* Convert yield values */
5082}
5083
e45a1c37
JH
5084/* vi: aw ai sw=2
5085*/
059ec3d9 5086/* End of smtp_in.c */