1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) The Exim Maintainers 2020 - 2022 */
6 /* Copyright (c) University of Cambridge 1995 - 2018 */
7 /* See the file NOTICE for conditions of use and distribution. */
8 /* SPDX-License-Identifier: GPL-2.0-or-later */
10 /* Functions for handling an incoming SMTP call. */
17 /* Initialize for TCP wrappers if so configured. It appears that the macro
18 HAVE_IPV6 is used in some versions of the tcpd.h header, so we unset it before
19 including that header, and restore its value afterwards. */
21 #ifdef USE_TCP_WRAPPERS
24 #define EXIM_HAVE_IPV6
30 #define HAVE_IPV6 TRUE
33 int allow_severity = LOG_INFO;
34 int deny_severity = LOG_NOTICE;
35 uschar *tcp_wrappers_name;
39 /* Size of buffer for reading SMTP commands. We used to use 512, as defined
40 by RFC 821. However, RFC 1869 specifies that this must be increased for SMTP
41 commands that accept arguments, and this in particular applies to AUTH, where
42 the data can be quite long. More recently this value was 2048 in Exim;
43 however, RFC 4954 (circa 2007) recommends 12288 bytes to handle AUTH. Clients
44 such as Thunderbird will send an AUTH with an initial-response for GSSAPI.
45 The maximum size of a Kerberos ticket under Windows 2003 is 12000 bytes, and
46 we need room to handle large base64-encoded AUTHs for GSSAPI.
49 #define SMTP_CMD_BUFFER_SIZE 16384
51 /* Size of buffer for reading SMTP incoming packets */
53 #define IN_BUFFER_SIZE 8192
55 /* Structure for SMTP command list */
62 short int is_mail_cmd;
65 /* Codes for identifying commands. We order them so that those that come first
66 are those for which synchronization is always required. Checking this can help
70 /* These commands are required to be synchronized, i.e. to be the last in a
71 block of commands when pipelining. */
73 HELO_CMD, EHLO_CMD, DATA_CMD, /* These are listed in the pipelining */
74 VRFY_CMD, EXPN_CMD, NOOP_CMD, /* RFC as requiring synchronization */
75 ETRN_CMD, /* This by analogy with TURN from the RFC */
76 STARTTLS_CMD, /* Required by the STARTTLS RFC */
77 TLS_AUTH_CMD, /* auto-command at start of SSL */
78 #ifdef EXPERIMENTAL_XCLIENT
79 XCLIENT_CMD, /* per xlexkiro implementation */
82 /* This is a dummy to identify the non-sync commands when pipelining */
84 NON_SYNC_CMD_PIPELINING,
86 /* These commands need not be synchronized when pipelining */
88 MAIL_CMD, RCPT_CMD, RSET_CMD,
90 /* This is a dummy to identify the non-sync commands when not pipelining */
92 NON_SYNC_CMD_NON_PIPELINING,
94 /* RFC3030 section 2: "After all MAIL and RCPT responses are collected and
95 processed the message is sent using a series of BDAT commands"
96 implies that BDAT should be synchronized. However, we see Google, at least,
97 sending MAIL,RCPT,BDAT-LAST in a single packet, clearly not waiting for
98 processing of the RCPT response(s). We shall do the same, and not require
99 synch for BDAT. Worse, as the chunk may (very likely will) follow the
100 command-header in the same packet we cannot do the usual "is there any
101 follow-on data after the command line" even for non-pipeline mode.
102 So we'll need an explicit check after reading the expected chunk amount
103 when non-pipe, before sending the ACK. */
107 /* I have been unable to find a statement about the use of pipelining
108 with AUTH, so to be on the safe side it is here, though I kind of feel
109 it should be up there with the synchronized commands. */
113 /* I'm not sure about these, but I don't think they matter. */
118 PROXY_FAIL_IGNORE_CMD,
121 /* These are specials that don't correspond to actual commands */
123 EOF_CMD, OTHER_CMD, BADARG_CMD, BADCHAR_CMD, BADSYN_CMD,
124 TOO_MANY_NONMAIL_CMD };
127 /* This is a convenience macro for adding the identity of an SMTP command
128 to the circular buffer that holds a list of the last n received. */
131 smtp_connection_had[smtp_ch_index++] = n; \
132 if (smtp_ch_index >= SMTP_HBUFF_SIZE) smtp_ch_index = 0
135 /*************************************************
136 * Local static variables *
137 *************************************************/
140 BOOL auth_advertised :1;
142 BOOL tls_advertised :1;
144 BOOL dsn_advertised :1;
146 BOOL helo_verify_required :1;
149 BOOL helo_accept_junk :1;
150 #ifndef DISABLE_PIPE_CONNECT
151 BOOL pipe_connect_acceptable :1;
153 BOOL rcpt_smtp_response_same :1;
154 BOOL rcpt_in_progress :1;
155 BOOL smtp_exit_function_called :1;
157 BOOL smtputf8_advertised :1;
160 .helo_verify_required = FALSE,
161 .helo_verify = FALSE,
162 .smtp_exit_function_called = FALSE,
165 static auth_instance *authenticated_by;
166 static int count_nonmail;
167 static int nonmail_command_count;
168 static int synprot_error_count;
169 static int unknown_command_count;
170 static int sync_cmd_limit;
171 static int smtp_write_error = 0;
173 static uschar *rcpt_smtp_response;
174 static uschar *smtp_data_buffer;
175 static uschar *smtp_cmd_data;
177 /* We need to know the position of RSET, HELO, EHLO, AUTH, and STARTTLS. Their
178 final fields of all except AUTH are forced TRUE at the start of a new message
179 setup, to allow one of each between messages that is not counted as a nonmail
180 command. (In fact, only one of HELO/EHLO is not counted.) Also, we have to
181 allow a new EHLO after starting up TLS.
183 AUTH is "falsely" labelled as a mail command initially, so that it doesn't get
184 counted. However, the flag is changed when AUTH is received, so that multiple
185 failing AUTHs will eventually hit the limit. After a successful AUTH, another
186 AUTH is already forbidden. After a TLS session is started, AUTH's flag is again
187 forced TRUE, to allow for the re-authentication that can happen at that point.
189 QUIT is also "falsely" labelled as a mail command so that it doesn't up the
190 count of non-mail commands and possibly provoke an error.
192 tls_auth is a pseudo-command, never expected in input. It is activated
193 on TLS startup and looks for a tls authenticator. */
204 #ifdef EXPERIMENTAL_XCLIENT
209 static smtp_cmd_list cmd_list[] = {
210 /* name len cmd has_arg is_mail_cmd */
212 [CL_RSET] = { "rset", sizeof("rset")-1, RSET_CMD, FALSE, FALSE }, /* First */
213 [CL_HELO] = { "helo", sizeof("helo")-1, HELO_CMD, TRUE, FALSE },
214 [CL_EHLO] = { "ehlo", sizeof("ehlo")-1, EHLO_CMD, TRUE, FALSE },
215 [CL_AUTH] = { "auth", sizeof("auth")-1, AUTH_CMD, TRUE, TRUE },
217 [CL_STLS] = { "starttls", sizeof("starttls")-1, STARTTLS_CMD, FALSE, FALSE },
218 [CL_TLAU] = { "tls_auth", 0, TLS_AUTH_CMD, FALSE, FALSE },
220 #ifdef EXPERIMENTAL_XCLIENT
221 [CL_XCLI] = { "xclient", sizeof("xclient")-1, XCLIENT_CMD, TRUE, FALSE },
224 { "mail from:", sizeof("mail from:")-1, MAIL_CMD, TRUE, TRUE },
225 { "rcpt to:", sizeof("rcpt to:")-1, RCPT_CMD, TRUE, TRUE },
226 { "data", sizeof("data")-1, DATA_CMD, FALSE, TRUE },
227 { "bdat", sizeof("bdat")-1, BDAT_CMD, TRUE, TRUE },
228 { "quit", sizeof("quit")-1, QUIT_CMD, FALSE, TRUE },
229 { "noop", sizeof("noop")-1, NOOP_CMD, TRUE, FALSE },
230 { "etrn", sizeof("etrn")-1, ETRN_CMD, TRUE, FALSE },
231 { "vrfy", sizeof("vrfy")-1, VRFY_CMD, TRUE, FALSE },
232 { "expn", sizeof("expn")-1, EXPN_CMD, TRUE, FALSE },
233 { "help", sizeof("help")-1, HELP_CMD, TRUE, FALSE }
236 /* This list of names is used for performing the smtp_no_mail logging action. */
238 uschar * smtp_names[] =
240 [SCH_NONE] = US"NONE",
241 [SCH_AUTH] = US"AUTH",
242 [SCH_DATA] = US"DATA",
243 [SCH_BDAT] = US"BDAT",
244 [SCH_EHLO] = US"EHLO",
245 [SCH_ETRN] = US"ETRN",
246 [SCH_EXPN] = US"EXPN",
247 [SCH_HELO] = US"HELO",
248 [SCH_HELP] = US"HELP",
249 [SCH_MAIL] = US"MAIL",
250 [SCH_NOOP] = US"NOOP",
251 [SCH_QUIT] = US"QUIT",
252 [SCH_RCPT] = US"RCPT",
253 [SCH_RSET] = US"RSET",
254 [SCH_STARTTLS] = US"STARTTLS",
255 [SCH_VRFY] = US"VRFY",
256 #ifdef EXPERIMENTAL_XCLIENT
257 [SCH_XCLIENT] = US"XCLIENT",
261 static uschar *protocols_local[] = {
262 US"local-smtp", /* HELO */
263 US"local-smtps", /* The rare case EHLO->STARTTLS->HELO */
264 US"local-esmtp", /* EHLO */
265 US"local-esmtps", /* EHLO->STARTTLS->EHLO */
266 US"local-esmtpa", /* EHLO->AUTH */
267 US"local-esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
269 static uschar *protocols[] = {
271 US"smtps", /* The rare case EHLO->STARTTLS->HELO */
272 US"esmtp", /* EHLO */
273 US"esmtps", /* EHLO->STARTTLS->EHLO */
274 US"esmtpa", /* EHLO->AUTH */
275 US"esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
280 #define pcrpted 1 /* added to pextend or pnormal */
281 #define pauthed 2 /* added to pextend */
283 /* Sanity check and validate optional args to MAIL FROM: envelope */
286 ENV_MAIL_OPT_SIZE, ENV_MAIL_OPT_BODY, ENV_MAIL_OPT_AUTH,
290 ENV_MAIL_OPT_RET, ENV_MAIL_OPT_ENVID,
296 uschar * name; /* option requested during MAIL cmd */
297 int value; /* enum type */
298 BOOL need_value; /* TRUE requires value (name=value pair format)
299 FALSE is a singleton */
301 static env_mail_type_t env_mail_type_list[] = {
302 { US"SIZE", ENV_MAIL_OPT_SIZE, TRUE },
303 { US"BODY", ENV_MAIL_OPT_BODY, TRUE },
304 { US"AUTH", ENV_MAIL_OPT_AUTH, TRUE },
306 { US"PRDR", ENV_MAIL_OPT_PRDR, FALSE },
308 { US"RET", ENV_MAIL_OPT_RET, TRUE },
309 { US"ENVID", ENV_MAIL_OPT_ENVID, TRUE },
311 { US"SMTPUTF8",ENV_MAIL_OPT_UTF8, FALSE }, /* rfc6531 */
313 /* keep this the last entry */
314 { US"NULL", ENV_MAIL_OPT_NULL, FALSE },
317 /* When reading SMTP from a remote host, we have to use our own versions of the
318 C input-reading functions, in order to be able to flush the SMTP output only
319 when about to read more data from the socket. This is the only way to get
320 optimal performance when the client is using pipelining. Flushing for every
321 command causes a separate packet and reply packet each time; saving all the
322 responses up (when pipelining) combines them into one packet and one response.
324 For simplicity, these functions are used for *all* SMTP input, not only when
325 receiving over a socket. However, after setting up a secure socket (SSL), input
326 is read via the OpenSSL library, and another set of functions is used instead
329 These functions are set in the receive_getc etc. variables and called with the
330 same interface as the C functions. However, since there can only ever be
331 one incoming SMTP call, we just use a single buffer and flags. There is no need
332 to implement a complicated private FILE-like structure.*/
334 static uschar *smtp_inbuffer;
335 static uschar *smtp_inptr;
336 static uschar *smtp_inend;
337 static int smtp_had_eof;
338 static int smtp_had_error;
341 /* forward declarations */
342 static int smtp_read_command(BOOL check_sync, unsigned buffer_lim);
343 static int synprot_error(int type, int code, uschar *data, uschar *errmess);
344 static void smtp_quit_handler(uschar **, uschar **);
345 static void smtp_rset_handler(void);
347 /*************************************************
348 * Log incomplete transactions *
349 *************************************************/
351 /* This function is called after a transaction has been aborted by RSET, QUIT,
352 connection drops or other errors. It logs the envelope information received
353 so far in order to preserve address verification attempts.
355 Argument: string to indicate what aborted the transaction
360 incomplete_transaction_log(uschar * what)
362 if (!sender_address /* No transaction in progress */
363 || !LOGGING(smtp_incomplete_transaction))
366 /* Build list of recipients for logging */
368 if (recipients_count > 0)
370 raw_recipients = store_get(recipients_count * sizeof(uschar *), GET_UNTAINTED);
371 for (int i = 0; i < recipients_count; i++)
372 raw_recipients[i] = recipients_list[i].address;
373 raw_recipients_count = recipients_count;
376 log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS,
377 "%s incomplete transaction (%s)", host_and_ident(TRUE), what);
383 log_close_event(const uschar * reason)
385 log_write(L_smtp_connection, LOG_MAIN, "%s D=%s closed %s",
386 smtp_get_connection_info(), string_timesince(&smtp_connection_start), reason);
391 smtp_command_timeout_exit(void)
393 log_write(L_lost_incoming_connection,
394 LOG_MAIN, "SMTP command timeout on%s connection from %s D=%s",
395 tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE),
396 string_timesince(&smtp_connection_start));
397 if (smtp_batched_input)
398 moan_smtp_batch(NULL, "421 SMTP command timeout"); /* Does not return */
399 smtp_notquit_exit(US"command-timeout", US"421",
400 US"%s: SMTP command timeout - closing connection",
401 smtp_active_hostname);
402 exim_exit(EXIT_FAILURE);
406 smtp_command_sigterm_exit(void)
408 log_close_event(US"after SIGTERM");
409 if (smtp_batched_input)
410 moan_smtp_batch(NULL, "421 SIGTERM received"); /* Does not return */
411 smtp_notquit_exit(US"signal-exit", US"421",
412 US"%s: Service not available - closing connection", smtp_active_hostname);
413 exim_exit(EXIT_FAILURE);
417 smtp_data_timeout_exit(void)
419 log_write(L_lost_incoming_connection, LOG_MAIN,
420 "SMTP data timeout (message abandoned) on connection from %s F=<%s> D=%s",
421 sender_fullhost ? sender_fullhost : US"local process", sender_address,
422 string_timesince(&smtp_connection_start));
423 receive_bomb_out(US"data-timeout", US"SMTP incoming data timeout");
424 /* Does not return */
428 smtp_data_sigint_exit(void)
430 log_close_event(had_data_sigint == SIGTERM ? US"SIGTERM":US"SIGINT");
431 receive_bomb_out(US"signal-exit",
432 US"Service not available - SIGTERM or SIGINT received");
433 /* Does not return */
437 /******************************************************************************/
438 /* SMTP input buffer handling. Most of these are similar to stdio routines. */
443 /* Set up the buffer for inputting using direct read() calls, and arrange to
444 call the local functions instead of the standard C ones. Place a NUL at the
445 end of the buffer to safety-stop C-string reads from it. */
447 if (!(smtp_inbuffer = US malloc(IN_BUFFER_SIZE)))
448 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malloc() failed for SMTP input buffer");
449 smtp_inbuffer[IN_BUFFER_SIZE-1] = '\0';
451 smtp_inptr = smtp_inend = smtp_inbuffer;
452 smtp_had_eof = smtp_had_error = 0;
457 /* Refill the buffer, and notify DKIM verification code.
458 Return false for error or EOF.
462 smtp_refill(unsigned lim)
466 if (!smtp_out) return FALSE;
468 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
470 /* Limit amount read, so non-message data is not fed to DKIM.
471 Take care to not touch the safety NUL at the end of the buffer. */
473 rc = read(fileno(smtp_in), smtp_inbuffer, MIN(IN_BUFFER_SIZE-1, lim));
475 if (smtp_receive_timeout > 0) ALARM_CLR(0);
478 /* Must put the error text in fixed store, because this might be during
479 header reading, where it releases unused store above the header. */
482 if (had_command_timeout) /* set by signal handler */
483 smtp_command_timeout_exit(); /* does not return */
484 if (had_command_sigterm)
485 smtp_command_sigterm_exit();
486 if (had_data_timeout)
487 smtp_data_timeout_exit();
489 smtp_data_sigint_exit();
491 smtp_had_error = save_errno;
492 smtp_read_error = string_copy_perm(
493 string_sprintf(" (error: %s)", strerror(save_errno)), FALSE);
500 dkim_exim_verify_feed(smtp_inbuffer, rc);
502 smtp_inend = smtp_inbuffer + rc;
503 smtp_inptr = smtp_inbuffer;
508 /* Check if there is buffered data */
513 return smtp_inptr < smtp_inend;
516 /* SMTP version of getc()
518 This gets the next byte from the SMTP input buffer. If the buffer is empty,
519 it flushes the output, and refills the buffer, with a timeout. The signal
520 handler is set appropriately by the calling function. This function is not used
521 after a connection has negotiated itself into an TLS/SSL state.
523 Arguments: lim Maximum amount to read/buffer
524 Returns: the next character or EOF
528 smtp_getc(unsigned lim)
530 if (!smtp_hasc() && !smtp_refill(lim)) return EOF;
531 return *smtp_inptr++;
534 /* Get many bytes, refilling buffer if needed */
537 smtp_getbuf(unsigned * len)
542 if (!smtp_hasc() && !smtp_refill(*len))
543 { *len = 0; return NULL; }
545 if ((size = smtp_inend - smtp_inptr) > *len) size = *len;
552 /* Copy buffered data to the dkim feed.
553 Called, unless TLS, just before starting to read message headers. */
556 smtp_get_cache(unsigned lim)
559 int n = smtp_inend - smtp_inptr;
563 dkim_exim_verify_feed(smtp_inptr, n);
568 /* SMTP version of ungetc()
569 Puts a character back in the input buffer. Only ever called once.
574 Returns: the character
580 if (smtp_inptr <= smtp_inbuffer) /* NB: NOT smtp_hasc() ! */
581 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "buffer underflow in smtp_ungetc");
588 /* SMTP version of feof()
589 Tests for a previous EOF
592 Returns: non-zero if the eof flag is set
602 /* SMTP version of ferror()
603 Tests for a previous read error, and returns with errno
604 restored to what it was when the error was detected.
607 Returns: non-zero if the error flag is set
613 errno = smtp_had_error;
614 return smtp_had_error;
618 /* Check if a getc will block or not */
621 smtp_could_getc(void)
625 struct timeval tzero = {.tv_sec = 0, .tv_usec = 0};
627 if (smtp_inptr < smtp_inend)
630 fd = fileno(smtp_in);
633 rc = select(fd + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL, &tzero);
635 if (rc <= 0) return FALSE; /* Not ready to read */
636 rc = smtp_getc(GETC_BUFFER_UNLIMITED);
637 if (rc < 0) return FALSE; /* End of file or error */
644 /******************************************************************************/
645 /*************************************************
646 * Recheck synchronization *
647 *************************************************/
649 /* Synchronization checks can never be perfect because a packet may be on its
650 way but not arrived when the check is done. Normally, the checks happen when
651 commands are read: Exim ensures that there is no more input in the input buffer.
652 In normal cases, the response to the command will be fast, and there is no
655 However, for some commands an ACL is run, and that can include delays. In those
656 cases, it is useful to do another check on the input just before sending the
657 response. This also applies at the start of a connection. This function does
658 that check by means of the select() function, as long as the facility is not
659 disabled or inappropriate. A failure of select() is ignored.
661 When there is unwanted input, we read it so that it appears in the log of the
665 Returns: TRUE if all is well; FALSE if there is input pending
669 wouldblock_reading(void)
672 if (tls_in.active.sock >= 0)
673 return !tls_could_getc();
676 return !smtp_could_getc();
682 if (!smtp_enforce_sync || !sender_host_address || f.sender_host_notsocket)
685 return wouldblock_reading();
689 /******************************************************************************/
690 /* Variants of the smtp_* input handling functions for use in CHUNKING mode */
692 /* Forward declarations */
693 static inline void bdat_push_receive_functions(void);
694 static inline void bdat_pop_receive_functions(void);
697 /* Get a byte from the smtp input, in CHUNKING mode. Handle ack of the
698 previous BDAT chunk and getting new ones when we run out. Uses the
699 underlying smtp_getc or tls_getc both for that and for getting the
700 (buffered) data byte. EOD signals (an expected) no further data.
701 ERR signals a protocol error, and EOF a closed input stream.
703 Called from read_bdat_smtp() in receive.c for the message body, but also
704 by the headers read loop in receive_msg(); manipulates chunking_state
705 to handle the BDAT command/response.
706 Placed here due to the correlation with the above smtp_getc(), which it wraps,
707 and also by the need to do smtp command/response handling.
709 Arguments: lim (ignored)
710 Returns: the next character or ERR, EOD or EOF
714 bdat_getc(unsigned lim)
716 uschar * user_msg = NULL;
725 if (chunking_data_left > 0)
726 return lwr_receive_getc(chunking_data_left--);
728 bdat_pop_receive_functions();
730 dkim_save = dkim_collect_input;
731 dkim_collect_input = 0;
734 /* Unless PIPELINING was offered, there should be no next command
735 until after we ack that chunk */
737 if (!f.smtp_in_pipelining_advertised && !check_sync())
739 unsigned n = smtp_inend - smtp_inptr;
742 incomplete_transaction_log(US"sync failure");
743 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
744 "(next input sent too soon: pipelining was not advertised): "
745 "rejected \"%s\" %s next input=\"%s\"%s",
746 smtp_cmd_buffer, host_and_ident(TRUE),
747 string_printing(string_copyn(smtp_inptr, n)),
748 smtp_inend - smtp_inptr > n ? "..." : "");
749 (void) synprot_error(L_smtp_protocol_error, 554, NULL,
750 US"SMTP synchronization error");
751 goto repeat_until_rset;
754 /* If not the last, ack the received chunk. The last response is delayed
755 until after the data ACL decides on it */
757 if (chunking_state == CHUNKING_LAST)
760 dkim_collect_input = dkim_save;
761 dkim_exim_verify_feed(NULL, 0); /* notify EOD */
762 dkim_collect_input = 0;
767 smtp_printf("250 %u byte chunk received\r\n", FALSE, chunking_datasize);
768 chunking_state = CHUNKING_OFFERED;
769 DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
771 /* Expect another BDAT cmd from input. RFC 3030 says nothing about
772 QUIT, RSET or NOOP but handling them seems obvious */
775 switch(smtp_read_command(TRUE, 1))
778 (void) synprot_error(L_smtp_protocol_error, 503, NULL,
779 US"only BDAT permissible after non-LAST BDAT");
782 switch(smtp_read_command(TRUE, 1))
784 case QUIT_CMD: smtp_quit_handler(&user_msg, &log_msg); /*FALLTHROUGH */
785 case EOF_CMD: return EOF;
786 case RSET_CMD: smtp_rset_handler(); return ERR;
787 default: if (synprot_error(L_smtp_protocol_error, 503, NULL,
788 US"only RSET accepted now") > 0)
790 goto repeat_until_rset;
794 smtp_quit_handler(&user_msg, &log_msg);
805 smtp_printf("250 OK\r\n", FALSE);
812 if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
814 (void) synprot_error(L_smtp_protocol_error, 501, NULL,
815 US"missing size for BDAT command");
818 chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
819 ? CHUNKING_LAST : CHUNKING_ACTIVE;
820 chunking_data_left = chunking_datasize;
821 DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
822 (int)chunking_state, chunking_data_left);
824 if (chunking_datasize == 0)
825 if (chunking_state == CHUNKING_LAST)
829 (void) synprot_error(L_smtp_protocol_error, 504, NULL,
830 US"zero size for BDAT command");
831 goto repeat_until_rset;
834 bdat_push_receive_functions();
836 dkim_collect_input = dkim_save;
838 break; /* to top of main loop */
847 if (chunking_data_left > 0)
848 return lwr_receive_hasc();
853 bdat_getbuf(unsigned * len)
857 if (chunking_data_left <= 0)
858 { *len = 0; return NULL; }
860 if (*len > chunking_data_left) *len = chunking_data_left;
861 buf = lwr_receive_getbuf(len); /* Either smtp_getbuf or tls_getbuf */
862 chunking_data_left -= *len;
867 bdat_flush_data(void)
869 while (chunking_data_left)
871 unsigned n = chunking_data_left;
872 if (!bdat_getbuf(&n)) break;
875 bdat_pop_receive_functions();
876 chunking_state = CHUNKING_OFFERED;
877 DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
882 bdat_push_receive_functions(void)
884 /* push the current receive_* function on the "stack", and
885 replace them by bdat_getc(), which in turn will use the lwr_receive_*
886 functions to do the dirty work. */
887 if (!lwr_receive_getc)
889 lwr_receive_getc = receive_getc;
890 lwr_receive_getbuf = receive_getbuf;
891 lwr_receive_hasc = receive_hasc;
892 lwr_receive_ungetc = receive_ungetc;
896 DEBUG(D_receive) debug_printf("chunking double-push receive functions\n");
899 receive_getc = bdat_getc;
900 receive_getbuf = bdat_getbuf;
901 receive_hasc = bdat_hasc;
902 receive_ungetc = bdat_ungetc;
906 bdat_pop_receive_functions(void)
908 if (!lwr_receive_getc)
910 DEBUG(D_receive) debug_printf("chunking double-pop receive functions\n");
913 receive_getc = lwr_receive_getc;
914 receive_getbuf = lwr_receive_getbuf;
915 receive_hasc = lwr_receive_hasc;
916 receive_ungetc = lwr_receive_ungetc;
918 lwr_receive_getc = NULL;
919 lwr_receive_getbuf = NULL;
920 lwr_receive_hasc = NULL;
921 lwr_receive_ungetc = NULL;
927 chunking_data_left++;
928 bdat_push_receive_functions(); /* we're not done yet, calling push is safe, because it checks the state before pushing anything */
929 return lwr_receive_ungetc(ch);
934 /******************************************************************************/
936 /*************************************************
937 * Write formatted string to SMTP channel *
938 *************************************************/
940 /* This is a separate function so that we don't have to repeat everything for
941 TLS support or debugging. It is global so that the daemon and the
942 authentication functions can use it. It does not return any error indication,
943 because major problems such as dropped connections won't show up till an output
944 flush for non-TLS connections. The smtp_fflush() function is available for
945 checking that: for convenience, TLS output errors are remembered here so that
946 they are also picked up later by smtp_fflush().
948 This function is exposed to the local_scan API; do not change the signature.
952 more further data expected
953 ... optional arguments
959 smtp_printf(const char *format, BOOL more, ...)
964 smtp_vprintf(format, more, ap);
968 /* This is split off so that verify.c:respond_printf() can, in effect, call
969 smtp_printf(), bearing in mind that in C a vararg function can't directly
970 call another vararg function, only a function which accepts a va_list.
972 This function is exposed to the local_scan API; do not change the signature.
974 /*XXX consider passing caller-info in, for string_vformat-onward */
977 smtp_vprintf(const char *format, BOOL more, va_list ap)
979 gstring gs = { .size = big_buffer_size, .ptr = 0, .s = big_buffer };
982 /* Use taint-unchecked routines for writing into big_buffer, trusting
983 that we'll never expand it. */
985 yield = !! string_vformat(&gs, SVFMT_TAINT_NOCHK, format, ap);
986 string_from_gstring(&gs);
988 DEBUG(D_receive) for (const uschar * t, * s = gs.s;
989 s && (t = Ustrchr(s, '\r'));
990 s = t + 2) /* \r\n */
991 debug_printf("%s %.*s\n",
992 s == gs.s ? "SMTP>>" : " ",
997 log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_printf()");
998 smtp_closedown(US"Unexpected error");
999 exim_exit(EXIT_FAILURE);
1002 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
1003 have had the same. Note: this code is also present in smtp_respond(). It would
1004 be tidier to have it only in one place, but when it was added, it was easier to
1005 do it that way, so as not to have to mess with the code for the RCPT command,
1006 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
1008 if (fl.rcpt_in_progress)
1010 if (!rcpt_smtp_response)
1011 rcpt_smtp_response = string_copy(big_buffer);
1012 else if (fl.rcpt_smtp_response_same &&
1013 Ustrcmp(rcpt_smtp_response, big_buffer) != 0)
1014 fl.rcpt_smtp_response_same = FALSE;
1015 fl.rcpt_in_progress = FALSE;
1018 /* Now write the string */
1022 tls_in.active.sock >= 0 ? (tls_write(NULL, gs.s, gs.ptr, more) < 0) :
1024 (fwrite(gs.s, gs.ptr, 1, smtp_out) == 0)
1026 smtp_write_error = -1;
1031 /*************************************************
1032 * Flush SMTP out and check for error *
1033 *************************************************/
1035 /* This function isn't currently used within Exim (it detects errors when it
1036 tries to read the next SMTP input), but is available for use in local_scan().
1037 It flushes the output and checks for errors.
1040 Returns: 0 for no error; -1 after an error
1046 if (tls_in.active.sock < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
1050 tls_in.active.sock >= 0 ? (tls_write(NULL, NULL, 0, FALSE) < 0) :
1052 (fflush(smtp_out) != 0)
1054 smtp_write_error = -1;
1056 return smtp_write_error;
1061 /* If there's input waiting (and we're doing pipelineing) then we can pipeline
1062 a reponse with the one following. */
1065 pipeline_response(void)
1067 if ( !smtp_enforce_sync || !sender_host_address
1068 || f.sender_host_notsocket || !f.smtp_in_pipelining_advertised)
1071 if (wouldblock_reading()) return FALSE;
1072 f.smtp_in_pipelining_used = TRUE;
1077 #ifndef DISABLE_PIPE_CONNECT
1079 pipeline_connect_sends(void)
1081 if (!sender_host_address || f.sender_host_notsocket || !fl.pipe_connect_acceptable)
1084 if (wouldblock_reading()) return FALSE;
1085 f.smtp_in_early_pipe_used = TRUE;
1090 /*************************************************
1091 * SMTP command read timeout *
1092 *************************************************/
1094 /* Signal handler for timing out incoming SMTP commands. This attempts to
1097 Argument: signal number (SIGALRM)
1102 command_timeout_handler(int sig)
1104 had_command_timeout = sig;
1109 /*************************************************
1110 * SIGTERM received *
1111 *************************************************/
1113 /* Signal handler for handling SIGTERM. Again, try to finish tidily.
1115 Argument: signal number (SIGTERM)
1120 command_sigterm_handler(int sig)
1122 had_command_sigterm = sig;
1128 /*************************************************
1129 * Read one command line *
1130 *************************************************/
1132 /* Strictly, SMTP commands coming over the net are supposed to end with CRLF.
1133 There are sites that don't do this, and in any case internal SMTP probably
1134 should check only for LF. Consequently, we check here for LF only. The line
1135 ends up with [CR]LF removed from its end. If we get an overlong line, treat as
1136 an unknown command. The command is read into the global smtp_cmd_buffer so that
1137 it is available via $smtp_command.
1139 The character reading routine sets up a timeout for each block actually read
1140 from the input (which may contain more than one command). We set up a special
1141 signal handler that closes down the session on a timeout. Control does not
1142 return when it runs.
1145 check_sync if TRUE, check synchronization rules if global option is TRUE
1146 buffer_lim maximum to buffer in lower layer
1148 Returns: a code identifying the command (enumerated above)
1152 smtp_read_command(BOOL check_sync, unsigned buffer_lim)
1156 BOOL hadnull = FALSE;
1158 had_command_timeout = 0;
1159 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1161 while ((c = (receive_getc)(buffer_lim)) != '\n' && c != EOF)
1163 if (ptr >= SMTP_CMD_BUFFER_SIZE)
1165 os_non_restarting_signal(SIGALRM, sigalrm_handler);
1173 smtp_cmd_buffer[ptr++] = c;
1176 receive_linecount++; /* For BSMTP errors */
1177 os_non_restarting_signal(SIGALRM, sigalrm_handler);
1179 /* If hit end of file, return pseudo EOF command. Whether we have a
1180 part-line already read doesn't matter, since this is an error state. */
1182 if (c == EOF) return EOF_CMD;
1184 /* Remove any CR and white space at the end of the line, and terminate the
1187 while (ptr > 0 && isspace(smtp_cmd_buffer[ptr-1])) ptr--;
1188 smtp_cmd_buffer[ptr] = 0;
1190 DEBUG(D_receive) debug_printf("SMTP<< %s\n", smtp_cmd_buffer);
1192 /* NULLs are not allowed in SMTP commands */
1194 if (hadnull) return BADCHAR_CMD;
1196 /* Scan command list and return identity, having set the data pointer
1197 to the start of the actual data characters. Check for SMTP synchronization
1200 for (smtp_cmd_list * p = cmd_list; p < cmd_list + nelem(cmd_list); p++)
1202 #ifdef SUPPORT_PROXY
1203 /* Only allow QUIT command if Proxy Protocol parsing failed */
1204 if (proxy_session && f.proxy_session_failed && p->cmd != QUIT_CMD)
1208 && strncmpic(smtp_cmd_buffer, US p->name, p->len) == 0
1209 && ( smtp_cmd_buffer[p->len-1] == ':' /* "mail from:" or "rcpt to:" */
1210 || smtp_cmd_buffer[p->len] == 0
1211 || smtp_cmd_buffer[p->len] == ' '
1214 if ( smtp_inptr < smtp_inend /* Outstanding input */
1215 && p->cmd < sync_cmd_limit /* Command should sync */
1216 && check_sync /* Local flag set */
1217 && smtp_enforce_sync /* Global flag set */
1218 && sender_host_address != NULL /* Not local input */
1219 && !f.sender_host_notsocket /* Really is a socket */
1223 /* The variables $smtp_command and $smtp_command_argument point into the
1224 unmodified input buffer. A copy of the latter is taken for actual
1225 processing, so that it can be chopped up into separate parts if necessary,
1226 for example, when processing a MAIL command options such as SIZE that can
1227 follow the sender address. */
1229 smtp_cmd_argument = smtp_cmd_buffer + p->len;
1230 while (isspace(*smtp_cmd_argument)) smtp_cmd_argument++;
1231 Ustrcpy(smtp_data_buffer, smtp_cmd_argument);
1232 smtp_cmd_data = smtp_data_buffer;
1234 /* Count non-mail commands from those hosts that are controlled in this
1235 way. The default is all hosts. We don't waste effort checking the list
1236 until we get a non-mail command, but then cache the result to save checking
1237 again. If there's a DEFER while checking the host, assume it's in the list.
1239 Note that one instance of RSET, EHLO/HELO, and STARTTLS is allowed at the
1240 start of each incoming message by fiddling with the value in the table. */
1242 if (!p->is_mail_cmd)
1244 if (count_nonmail == TRUE_UNSET) count_nonmail =
1245 verify_check_host(&smtp_accept_max_nonmail_hosts) != FAIL;
1246 if (count_nonmail && ++nonmail_command_count > smtp_accept_max_nonmail)
1247 return TOO_MANY_NONMAIL_CMD;
1250 /* If there is data for a command that does not expect it, generate the
1253 return (p->has_arg || *smtp_cmd_data == 0)? p->cmd : BADARG_CMD;
1257 #ifdef SUPPORT_PROXY
1258 /* Only allow QUIT command if Proxy Protocol parsing failed */
1259 if (proxy_session && f.proxy_session_failed)
1260 return PROXY_FAIL_IGNORE_CMD;
1263 /* Enforce synchronization for unknown commands */
1265 if ( smtp_inptr < smtp_inend /* Outstanding input */
1266 && check_sync /* Local flag set */
1267 && smtp_enforce_sync /* Global flag set */
1268 && sender_host_address /* Not local input */
1269 && !f.sender_host_notsocket /* Really is a socket */
1279 /*************************************************
1280 * Forced closedown of call *
1281 *************************************************/
1283 /* This function is called from log.c when Exim is dying because of a serious
1284 disaster, and also from some other places. If an incoming non-batched SMTP
1285 channel is open, it swallows the rest of the incoming message if in the DATA
1286 phase, sends the reply string, and gives an error to all subsequent commands
1287 except QUIT. The existence of an SMTP call is detected by the non-NULLness of
1291 message SMTP reply string to send, excluding the code
1297 smtp_closedown(uschar * message)
1299 if (!smtp_in || smtp_batched_input) return;
1300 receive_swallow_smtp();
1301 smtp_printf("421 %s\r\n", FALSE, message);
1303 for (;;) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
1309 f.smtp_in_quit = TRUE;
1310 smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
1315 smtp_printf("250 Reset OK\r\n", FALSE);
1319 smtp_printf("421 %s\r\n", FALSE, message);
1327 /*************************************************
1328 * Set up connection info for logging *
1329 *************************************************/
1331 /* This function is called when logging information about an SMTP connection.
1332 It sets up appropriate source information, depending on the type of connection.
1333 If sender_fullhost is NULL, we are at a very early stage of the connection;
1334 just use the IP address.
1337 Returns: a string describing the connection
1341 smtp_get_connection_info(void)
1343 const uschar * hostname = sender_fullhost
1344 ? sender_fullhost : sender_host_address;
1347 return string_sprintf("SMTP connection from %s", hostname);
1349 if (f.sender_host_unknown || f.sender_host_notsocket)
1350 return string_sprintf("SMTP connection from %s", sender_ident);
1353 return string_sprintf("SMTP connection from %s (via inetd)", hostname);
1355 if (LOGGING(incoming_interface) && interface_address)
1356 return string_sprintf("SMTP connection from %s I=[%s]:%d", hostname,
1357 interface_address, interface_port);
1359 return string_sprintf("SMTP connection from %s", hostname);
1365 /* Append TLS-related information to a log line
1368 g String under construction: allocated string to extend, or NULL
1370 Returns: Allocated string or NULL
1373 s_tlslog(gstring * g)
1375 if (LOGGING(tls_cipher) && tls_in.cipher)
1377 g = string_append(g, 2, US" X=", tls_in.cipher);
1378 #ifndef DISABLE_TLS_RESUME
1379 if (LOGGING(tls_resumption) && tls_in.resumption & RESUME_USED)
1380 g = string_catn(g, US"*", 1);
1383 if (LOGGING(tls_certificate_verified) && tls_in.cipher)
1384 g = string_append(g, 2, US" CV=", tls_in.certificate_verified? "yes":"no");
1385 if (LOGGING(tls_peerdn) && tls_in.peerdn)
1386 g = string_append(g, 3, US" DN=\"", string_printing(tls_in.peerdn), US"\"");
1387 if (LOGGING(tls_sni) && tls_in.sni)
1388 g = string_append(g, 2, US" SNI=", string_printing2(tls_in.sni, SP_TAB|SP_SPACE));
1396 s_connhad_log(gstring * g)
1398 const uschar * sep = smtp_connection_had[SMTP_HBUFF_SIZE-1] != SCH_NONE
1399 ? US" C=..." : US" C=";
1401 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1402 if (smtp_connection_had[i] != SCH_NONE)
1404 g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1407 for (int i = 0; i < smtp_ch_index; i++, sep = US",")
1408 g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1413 /*************************************************
1414 * Log lack of MAIL if so configured *
1415 *************************************************/
1417 /* This function is called when an SMTP session ends. If the log selector
1418 smtp_no_mail is set, write a log line giving some details of what has happened
1419 in the SMTP session.
1426 smtp_log_no_mail(void)
1431 if (smtp_mailcmd_count > 0 || !LOGGING(smtp_no_mail))
1434 if (sender_host_authenticated)
1436 g = string_append(g, 2, US" A=", sender_host_authenticated);
1437 if (authenticated_id) g = string_append(g, 2, US":", authenticated_id);
1444 g = s_connhad_log(g);
1446 if (!(s = string_from_gstring(g))) s = US"";
1448 log_write(0, LOG_MAIN, "no MAIL in %sSMTP connection from %s D=%s%s",
1449 f.tcp_in_fastopen ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO " : US"",
1450 host_and_ident(FALSE), string_timesince(&smtp_connection_start), s);
1454 /* Return list of recent smtp commands */
1459 gstring * list = NULL;
1462 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1463 if (smtp_connection_had[i] != SCH_NONE)
1464 list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1466 for (int i = 0; i < smtp_ch_index; i++)
1467 list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1469 s = string_from_gstring(list);
1470 return s ? s : US"";
1476 /*************************************************
1477 * Check HELO line and set sender_helo_name *
1478 *************************************************/
1480 /* Check the format of a HELO line. The data for HELO/EHLO is supposed to be
1481 the domain name of the sending host, or an ip literal in square brackets. The
1482 argument is placed in sender_helo_name, which is in malloc store, because it
1483 must persist over multiple incoming messages. If helo_accept_junk is set, this
1484 host is permitted to send any old junk (needed for some broken hosts).
1485 Otherwise, helo_allow_chars can be used for rogue characters in general
1486 (typically people want to let in underscores).
1489 s the data portion of the line (already past any white space)
1491 Returns: TRUE or FALSE
1495 check_helo(uschar *s)
1498 uschar *end = s + Ustrlen(s);
1499 BOOL yield = fl.helo_accept_junk;
1501 /* Discard any previous helo name */
1503 sender_helo_name = NULL;
1505 /* Skip tests if junk is permitted. */
1509 /* Allow the new standard form for IPv6 address literals, namely,
1510 [IPv6:....], and because someone is bound to use it, allow an equivalent
1511 IPv4 form. Allow plain addresses as well. */
1518 if (strncmpic(s, US"[IPv6:", 6) == 0)
1519 yield = (string_is_ip_address(s+6, NULL) == 6);
1520 else if (strncmpic(s, US"[IPv4:", 6) == 0)
1521 yield = (string_is_ip_address(s+6, NULL) == 4);
1523 yield = (string_is_ip_address(s+1, NULL) != 0);
1528 /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
1529 that have been configured (usually underscore - sigh). */
1532 for (yield = TRUE; *s; s++)
1533 if (!isalnum(*s) && *s != '.' && *s != '-' &&
1534 Ustrchr(helo_allow_chars, *s) == NULL)
1540 /* Save argument if OK */
1542 if (yield) sender_helo_name = string_copy_perm(start, TRUE);
1550 /*************************************************
1551 * Extract SMTP command option *
1552 *************************************************/
1554 /* This function picks the next option setting off the end of smtp_cmd_data. It
1555 is called for MAIL FROM and RCPT TO commands, to pick off the optional ESMTP
1556 things that can appear there.
1559 name point this at the name
1560 value point this at the data string
1562 Returns: TRUE if found an option
1566 extract_option(uschar **name, uschar **value)
1570 if (Ustrlen(smtp_cmd_data) <= 0) return FALSE;
1571 v = smtp_cmd_data + Ustrlen(smtp_cmd_data) - 1;
1572 while (v > smtp_cmd_data && isspace(*v)) v--;
1575 while (v > smtp_cmd_data && *v != '=' && !isspace(*v))
1577 /* Take care to not stop at a space embedded in a quoted local-part */
1580 do v--; while (v > smtp_cmd_data && *v != '"');
1581 if (v <= smtp_cmd_data) return FALSE;
1585 if (v <= smtp_cmd_data) return FALSE;
1590 while (n > smtp_cmd_data && isalpha(n[-1])) n--;
1591 /* RFC says SP, but TAB seen in wild and other major MTAs accept it */
1592 if (n <= smtp_cmd_data || !isspace(n[-1])) return FALSE;
1609 /*************************************************
1610 * Reset for new message *
1611 *************************************************/
1613 /* This function is called whenever the SMTP session is reset from
1614 within either of the setup functions; also from the daemon loop.
1616 Argument: the stacking pool storage reset point
1621 smtp_reset(void *reset_point)
1623 recipients_list = NULL;
1624 rcpt_count = rcpt_defer_count = rcpt_fail_count =
1625 raw_recipients_count = recipients_count = recipients_list_max = 0;
1626 message_linecount = 0;
1628 message_body = message_body_end = NULL;
1629 acl_added_headers = NULL;
1630 acl_removed_headers = NULL;
1631 f.queue_only_policy = FALSE;
1632 rcpt_smtp_response = NULL;
1633 fl.rcpt_smtp_response_same = TRUE;
1634 fl.rcpt_in_progress = FALSE;
1635 f.deliver_freeze = FALSE; /* Can be set by ACL */
1636 freeze_tell = freeze_tell_config; /* Can be set by ACL */
1637 fake_response = OK; /* Can be set by ACL */
1638 #ifdef WITH_CONTENT_SCAN
1639 f.no_mbox_unspool = FALSE; /* Can be set by ACL */
1641 f.submission_mode = FALSE; /* Can be set by ACL */
1642 f.suppress_local_fixups = f.suppress_local_fixups_default; /* Can be set by ACL */
1643 f.active_local_from_check = local_from_check; /* Can be set by ACL */
1644 f.active_local_sender_retain = local_sender_retain; /* Can be set by ACL */
1645 sending_ip_address = NULL;
1646 return_path = sender_address = NULL;
1647 deliver_localpart_data = deliver_domain_data =
1648 recipient_data = sender_data = NULL; /* Can be set by ACL */
1649 recipient_verify_failure = NULL;
1650 deliver_localpart_parent = deliver_localpart_orig = NULL;
1651 deliver_domain_parent = deliver_domain_orig = NULL;
1652 callout_address = NULL;
1653 submission_name = NULL; /* Can be set by ACL */
1654 raw_sender = NULL; /* After SMTP rewrite, before qualifying */
1655 sender_address_unrewritten = NULL; /* Set only after verify rewrite */
1656 sender_verified_list = NULL; /* No senders verified */
1657 memset(sender_address_cache, 0, sizeof(sender_address_cache));
1658 memset(sender_domain_cache, 0, sizeof(sender_domain_cache));
1660 authenticated_sender = NULL;
1661 #ifdef EXPERIMENTAL_BRIGHTMAIL
1663 bmi_verdicts = NULL;
1665 dnslist_domain = dnslist_matched = NULL;
1667 spf_header_comment = spf_received = spf_result = spf_smtp_comment = NULL;
1668 spf_result_guessed = FALSE;
1670 #ifndef DISABLE_DKIM
1671 dkim_cur_signer = dkim_signers =
1672 dkim_signing_domain = dkim_signing_selector = dkim_signatures = NULL;
1673 dkim_cur_signer = dkim_signers = dkim_signing_domain = dkim_signing_selector = NULL;
1674 f.dkim_disable_verify = FALSE;
1675 dkim_collect_input = 0;
1676 dkim_verify_overall = dkim_verify_status = dkim_verify_reason = NULL;
1677 dkim_key_length = 0;
1679 #ifdef SUPPORT_DMARC
1680 f.dmarc_has_been_checked = f.dmarc_disable_verify = f.dmarc_enable_forensic = FALSE;
1681 dmarc_domain_policy = dmarc_status = dmarc_status_text =
1682 dmarc_used_domain = NULL;
1684 #ifdef EXPERIMENTAL_ARC
1685 arc_state = arc_state_reason = NULL;
1686 arc_received_instance = 0;
1690 deliver_host = deliver_host_address = NULL; /* Can be set by ACL */
1691 #ifndef DISABLE_PRDR
1692 prdr_requested = FALSE;
1695 message_smtputf8 = FALSE;
1697 #ifdef WITH_CONTENT_SCAN
1700 body_linecount = body_zerocount = 0;
1702 lookup_value = NULL; /* Can be set by ACL */
1703 sender_rate = sender_rate_limit = sender_rate_period = NULL;
1704 ratelimiters_mail = NULL; /* Updated by ratelimit ACL condition */
1705 /* Note that ratelimiters_conn persists across resets. */
1707 /* Reset message ACL variables */
1711 /* Warning log messages are saved in malloc store. They are saved to avoid
1712 repetition in the same message, but it seems right to repeat them for different
1715 while (acl_warn_logged)
1717 string_item *this = acl_warn_logged;
1718 acl_warn_logged = acl_warn_logged->next;
1723 store_reset(reset_point);
1726 return store_mark();
1733 /*************************************************
1734 * Initialize for incoming batched SMTP message *
1735 *************************************************/
1737 /* This function is called from smtp_setup_msg() in the case when
1738 smtp_batched_input is true. This happens when -bS is used to pass a whole batch
1739 of messages in one file with SMTP commands between them. All errors must be
1740 reported by sending a message, and only MAIL FROM, RCPT TO, and DATA are
1741 relevant. After an error on a sender, or an invalid recipient, the remainder
1742 of the message is skipped. The value of received_protocol is already set.
1745 Returns: > 0 message successfully started (reached DATA)
1746 = 0 QUIT read or end of file reached
1747 < 0 should not occur
1751 smtp_setup_batch_msg(void)
1754 rmark reset_point = store_mark();
1756 /* Save the line count at the start of each transaction - single commands
1757 like HELO and RSET count as whole transactions. */
1759 bsmtp_transaction_linecount = receive_linecount;
1761 if ((receive_feof)()) return 0; /* Treat EOF as QUIT */
1763 cancel_cutthrough_connection(TRUE, US"smtp_setup_batch_msg");
1764 reset_point = smtp_reset(reset_point); /* Reset for start of message */
1766 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
1767 value. The values are 2 larger than the required yield of the function. */
1772 uschar *recipient = NULL;
1773 int start, end, sender_domain, recipient_domain;
1775 switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
1777 /* The HELO/EHLO commands set sender_address_helo if they have
1778 valid data; otherwise they are ignored, except that they do
1779 a reset of the state. */
1784 check_helo(smtp_cmd_data);
1788 cancel_cutthrough_connection(TRUE, US"RSET received");
1789 reset_point = smtp_reset(reset_point);
1790 bsmtp_transaction_linecount = receive_linecount;
1793 /* The MAIL FROM command requires an address as an operand. All we
1794 do here is to parse it for syntactic correctness. The form "<>" is
1795 a special case which converts into an empty string. The start/end
1796 pointers in the original are not used further for this address, as
1797 it is the canonical extracted address which is all that is kept. */
1800 smtp_mailcmd_count++; /* Count for no-mail log */
1802 /* The function moan_smtp_batch() does not return. */
1803 moan_smtp_batch(smtp_cmd_buffer, "503 Sender already given");
1805 if (smtp_cmd_data[0] == 0)
1806 /* The function moan_smtp_batch() does not return. */
1807 moan_smtp_batch(smtp_cmd_buffer, "501 MAIL FROM must have an address operand");
1809 /* Reset to start of message */
1811 cancel_cutthrough_connection(TRUE, US"MAIL received");
1812 reset_point = smtp_reset(reset_point);
1814 /* Apply SMTP rewrite */
1816 raw_sender = rewrite_existflags & rewrite_smtp
1817 /* deconst ok as smtp_cmd_data was not const */
1818 ? US rewrite_one(smtp_cmd_data, rewrite_smtp|rewrite_smtp_sender, NULL,
1819 FALSE, US"", global_rewrite_rules)
1822 /* Extract the address; the TRUE flag allows <> as valid */
1825 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
1829 /* The function moan_smtp_batch() does not return. */
1830 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
1832 sender_address = string_copy(raw_sender);
1834 /* Qualify unqualified sender addresses if permitted to do so. */
1837 && sender_address[0] != 0 && sender_address[0] != '@')
1838 if (f.allow_unqualified_sender)
1840 /* deconst ok as sender_address was not const */
1841 sender_address = US rewrite_address_qualify(sender_address, FALSE);
1842 DEBUG(D_receive) debug_printf("unqualified address %s accepted "
1843 "and rewritten\n", raw_sender);
1845 /* The function moan_smtp_batch() does not return. */
1847 moan_smtp_batch(smtp_cmd_buffer, "501 sender address must contain "
1852 /* The RCPT TO command requires an address as an operand. All we do
1853 here is to parse it for syntactic correctness. There may be any number
1854 of RCPT TO commands, specifying multiple senders. We build them all into
1855 a data structure that is in argc/argv format. The start/end values
1856 given by parse_extract_address are not used, as we keep only the
1857 extracted address. */
1860 if (!sender_address)
1861 /* The function moan_smtp_batch() does not return. */
1862 moan_smtp_batch(smtp_cmd_buffer, "503 No sender yet given");
1864 if (smtp_cmd_data[0] == 0)
1865 /* The function moan_smtp_batch() does not return. */
1866 moan_smtp_batch(smtp_cmd_buffer,
1867 "501 RCPT TO must have an address operand");
1869 /* Check maximum number allowed */
1871 if (recipients_max > 0 && recipients_count + 1 > recipients_max)
1872 /* The function moan_smtp_batch() does not return. */
1873 moan_smtp_batch(smtp_cmd_buffer, "%s too many recipients",
1874 recipients_max_reject? "552": "452");
1876 /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
1877 recipient address */
1879 recipient = rewrite_existflags & rewrite_smtp
1880 /* deconst ok as smtp_cmd_data was not const */
1881 ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
1882 global_rewrite_rules)
1885 recipient = parse_extract_address(recipient, &errmess, &start, &end,
1886 &recipient_domain, FALSE);
1889 /* The function moan_smtp_batch() does not return. */
1890 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
1892 /* If the recipient address is unqualified, qualify it if permitted. Then
1893 add it to the list of recipients. */
1895 if (!recipient_domain)
1896 if (f.allow_unqualified_recipient)
1898 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
1900 /* deconst ok as recipient was not const */
1901 recipient = US rewrite_address_qualify(recipient, TRUE);
1903 /* The function moan_smtp_batch() does not return. */
1905 moan_smtp_batch(smtp_cmd_buffer,
1906 "501 recipient address must contain a domain");
1908 receive_add_recipient(recipient, -1);
1912 /* The DATA command is legal only if it follows successful MAIL FROM
1913 and RCPT TO commands. This function is complete when a valid DATA
1914 command is encountered. */
1917 if (!sender_address || recipients_count <= 0)
1918 /* The function moan_smtp_batch() does not return. */
1919 if (!sender_address)
1920 moan_smtp_batch(smtp_cmd_buffer,
1921 "503 MAIL FROM:<sender> command must precede DATA");
1923 moan_smtp_batch(smtp_cmd_buffer,
1924 "503 RCPT TO:<recipient> must precede DATA");
1927 done = 3; /* DATA successfully achieved */
1928 message_ended = END_NOTENDED; /* Indicate in middle of message */
1933 /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
1940 bsmtp_transaction_linecount = receive_linecount;
1945 f.smtp_in_quit = TRUE;
1952 /* The function moan_smtp_batch() does not return. */
1953 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected argument data");
1958 /* The function moan_smtp_batch() does not return. */
1959 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected NULL in SMTP command");
1964 /* The function moan_smtp_batch() does not return. */
1965 moan_smtp_batch(smtp_cmd_buffer, "500 Command unrecognized");
1970 return done - 2; /* Convert yield values */
1978 smtp_log_tls_fail(const uschar * errstr)
1980 const uschar * conn_info = smtp_get_connection_info();
1982 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
1983 /* I'd like to get separated H= here, but too hard for now */
1985 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
1999 socklen_t len = sizeof(is_fastopen);
2001 /* The tinfo TCPOPT_FAST_OPEN bit seems unreliable, and we don't see state
2002 TCP_SYN_RCV (as of 12.1) so no idea about data-use. */
2004 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_FASTOPEN, &is_fastopen, &len) == 0)
2009 debug_printf("TFO mode connection (TCP_FASTOPEN getsockopt)\n");
2010 f.tcp_in_fastopen = TRUE;
2013 else DEBUG(D_receive)
2014 debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2016 # elif defined(TCP_INFO)
2017 struct tcp_info tinfo;
2018 socklen_t len = sizeof(tinfo);
2020 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_INFO, &tinfo, &len) == 0)
2021 # ifdef TCPI_OPT_SYN_DATA /* FreeBSD 11,12 do not seem to have this yet */
2022 if (tinfo.tcpi_options & TCPI_OPT_SYN_DATA)
2025 debug_printf("TFO mode connection (ACKd data-on-SYN)\n");
2026 f.tcp_in_fastopen_data = f.tcp_in_fastopen = TRUE;
2030 if (tinfo.tcpi_state == TCP_SYN_RECV) /* Not seen on FreeBSD 12.1 */
2033 debug_printf("TFO mode connection (state TCP_SYN_RECV)\n");
2034 f.tcp_in_fastopen = TRUE;
2036 else DEBUG(D_receive)
2037 debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2044 log_connect_tls_drop(const uschar * what, const uschar * log_msg)
2046 gstring * g = s_tlslog(NULL);
2047 uschar * tls = string_from_gstring(g);
2049 log_write(L_connection_reject,
2050 log_reject_target, "%s%s%s dropped by %s%s%s",
2051 LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
2052 host_and_ident(TRUE),
2055 log_msg ? US": " : US"", log_msg);
2059 /*************************************************
2060 * Start an SMTP session *
2061 *************************************************/
2063 /* This function is called at the start of an SMTP session. Thereafter,
2064 smtp_setup_msg() is called to initiate each separate message. This
2065 function does host-specific testing, and outputs the banner line.
2068 Returns: FALSE if the session can not continue; something has
2069 gone wrong, or the connection to the host is blocked
2073 smtp_start_session(void)
2076 uschar *user_msg, *log_msg;
2081 gettimeofday(&smtp_connection_start, NULL);
2082 for (smtp_ch_index = 0; smtp_ch_index < SMTP_HBUFF_SIZE; smtp_ch_index++)
2083 smtp_connection_had[smtp_ch_index] = SCH_NONE;
2086 /* Default values for certain variables */
2088 fl.helo_seen = fl.esmtp = fl.helo_accept_junk = FALSE;
2089 smtp_mailcmd_count = 0;
2090 count_nonmail = TRUE_UNSET;
2091 synprot_error_count = unknown_command_count = nonmail_command_count = 0;
2092 smtp_delay_mail = smtp_rlm_base;
2093 fl.auth_advertised = FALSE;
2094 f.smtp_in_pipelining_advertised = f.smtp_in_pipelining_used = FALSE;
2095 f.pipelining_enable = TRUE;
2096 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
2097 fl.smtp_exit_function_called = FALSE; /* For avoiding loop in not-quit exit */
2099 /* If receiving by -bs from a trusted user, or testing with -bh, we allow
2100 authentication settings from -oMaa to remain in force. */
2102 if (!host_checking && !f.sender_host_notsocket)
2103 sender_host_auth_pubname = sender_host_authenticated = NULL;
2104 authenticated_by = NULL;
2107 tls_in.ver = tls_in.cipher = tls_in.peerdn = NULL;
2108 tls_in.ourcert = tls_in.peercert = NULL;
2110 tls_in.ocsp = OCSP_NOT_REQ;
2111 fl.tls_advertised = FALSE;
2113 fl.dsn_advertised = FALSE;
2115 fl.smtputf8_advertised = FALSE;
2118 /* Reset ACL connection variables */
2122 /* Allow for trailing 0 in the command and data buffers. Tainted. */
2124 smtp_cmd_buffer = store_get_perm(2*SMTP_CMD_BUFFER_SIZE + 2, GET_TAINTED);
2126 smtp_cmd_buffer[0] = 0;
2127 smtp_data_buffer = smtp_cmd_buffer + SMTP_CMD_BUFFER_SIZE + 1;
2129 /* For batched input, the protocol setting can be overridden from the
2130 command line by a trusted caller. */
2132 if (smtp_batched_input)
2134 if (!received_protocol) received_protocol = US"local-bsmtp";
2137 /* For non-batched SMTP input, the protocol setting is forced here. It will be
2138 reset later if any of EHLO/AUTH/STARTTLS are received. */
2142 (sender_host_address ? protocols : protocols_local) [pnormal];
2144 /* Set up the buffer for inputting using direct read() calls, and arrange to
2145 call the local functions instead of the standard C ones. */
2149 receive_getc = smtp_getc;
2150 receive_getbuf = smtp_getbuf;
2151 receive_get_cache = smtp_get_cache;
2152 receive_hasc = smtp_hasc;
2153 receive_ungetc = smtp_ungetc;
2154 receive_feof = smtp_feof;
2155 receive_ferror = smtp_ferror;
2156 lwr_receive_getc = NULL;
2157 lwr_receive_getbuf = NULL;
2158 lwr_receive_hasc = NULL;
2159 lwr_receive_ungetc = NULL;
2161 /* Set up the message size limit; this may be host-specific */
2163 thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
2164 if (expand_string_message)
2166 if (thismessage_size_limit == -1)
2167 log_write(0, LOG_MAIN|LOG_PANIC, "unable to expand message_size_limit: "
2168 "%s", expand_string_message);
2170 log_write(0, LOG_MAIN|LOG_PANIC, "invalid message_size_limit: "
2171 "%s", expand_string_message);
2172 smtp_closedown(US"Temporary local problem - please try later");
2176 /* When a message is input locally via the -bs or -bS options, sender_host_
2177 unknown is set unless -oMa was used to force an IP address, in which case it
2178 is checked like a real remote connection. When -bs is used from inetd, this
2179 flag is not set, causing the sending host to be checked. The code that deals
2180 with IP source routing (if configured) is never required for -bs or -bS and
2181 the flag sender_host_notsocket is used to suppress it.
2183 If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
2184 reserve for certain hosts and/or networks. */
2186 if (!f.sender_host_unknown)
2189 BOOL reserved_host = FALSE;
2191 /* Look up IP options (source routing info) on the socket if this is not an
2192 -oMa "host", and if any are found, log them and drop the connection.
2194 Linux (and others now, see below) is different to everyone else, so there
2195 has to be some conditional compilation here. Versions of Linux before 2.1.15
2196 used a structure whose name was "options". Somebody finally realized that
2197 this name was silly, and it got changed to "ip_options". I use the
2198 newer name here, but there is a fudge in the script that sets up os.h
2199 to define a macro in older Linux systems.
2201 Sigh. Linux is a fast-moving target. Another generation of Linux uses
2202 glibc 2, which has chosen ip_opts for the structure name. This is now
2203 really a glibc thing rather than a Linux thing, so the condition name
2204 has been changed to reflect this. It is relevant also to GNU/Hurd.
2206 Mac OS 10.x (Darwin) is like the later glibc versions, but without the
2207 setting of the __GLIBC__ macro, so we can't detect it automatically. There's
2208 a special macro defined in the os.h file.
2210 Some DGUX versions on older hardware appear not to support IP options at
2211 all, so there is now a general macro which can be set to cut out this
2214 How to do this properly in IPv6 is not yet known. */
2216 #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
2218 # ifdef GLIBC_IP_OPTIONS
2219 # if (!defined __GLIBC__) || (__GLIBC__ < 2)
2224 # elif defined DARWIN_IP_OPTIONS
2230 if (!host_checking && !f.sender_host_notsocket)
2233 EXIM_SOCKLEN_T optlen = sizeof(struct ip_options) + MAX_IPOPTLEN;
2234 struct ip_options *ipopt = store_get(optlen, GET_UNTAINTED);
2235 # elif OPTSTYLE == 2
2236 struct ip_opts ipoptblock;
2237 struct ip_opts *ipopt = &ipoptblock;
2238 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2240 struct ipoption ipoptblock;
2241 struct ipoption *ipopt = &ipoptblock;
2242 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2245 /* Occasional genuine failures of getsockopt() have been seen - for
2246 example, "reset by peer". Therefore, just log and give up on this
2247 call, unless the error is ENOPROTOOPT. This error is given by systems
2248 that have the interfaces but not the mechanism - e.g. GNU/Hurd at the time
2249 of writing. So for that error, carry on - we just can't do an IP options
2252 DEBUG(D_receive) debug_printf("checking for IP options\n");
2254 if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, US (ipopt),
2257 if (errno != ENOPROTOOPT)
2259 log_write(0, LOG_MAIN, "getsockopt() failed from %s: %s",
2260 host_and_ident(FALSE), strerror(errno));
2261 smtp_printf("451 SMTP service not available\r\n", FALSE);
2266 /* Deal with any IP options that are set. On the systems I have looked at,
2267 the value of MAX_IPOPTLEN has been 40, meaning that there should never be
2268 more logging data than will fit in big_buffer. Nevertheless, after somebody
2269 questioned this code, I've added in some paranoid checking. */
2271 else if (optlen > 0)
2273 uschar * p = big_buffer;
2274 uschar * pend = big_buffer + big_buffer_size;
2277 struct in_addr addr;
2280 uschar * optstart = US (ipopt->__data);
2281 # elif OPTSTYLE == 2
2282 uschar * optstart = US (ipopt->ip_opts);
2284 uschar * optstart = US (ipopt->ipopt_list);
2287 DEBUG(D_receive) debug_printf("IP options exist\n");
2289 Ustrcpy(p, "IP options on incoming call:");
2292 for (uschar * opt = optstart; opt && opt < US (ipopt) + optlen; )
2307 string_format(p, pend-p, " %s [@%s",
2308 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2309 inet_ntoa(*((struct in_addr *)(&(ipopt->faddr)))))
2310 # elif OPTSTYLE == 2
2311 string_format(p, pend-p, " %s [@%s",
2312 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2313 inet_ntoa(ipopt->ip_dst))
2315 string_format(p, pend-p, " %s [@%s",
2316 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2317 inet_ntoa(ipopt->ipopt_dst))
2326 optcount = (opt[1] - 3) / sizeof(struct in_addr);
2328 while (optcount-- > 0)
2330 memcpy(&addr, adptr, sizeof(addr));
2331 if (!string_format(p, pend - p - 1, "%s%s",
2332 (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2338 adptr += sizeof(struct in_addr);
2346 if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2349 for (int i = 0; i < opt[1]; i++)
2350 p += sprintf(CS p, "%2.2x ", opt[i]);
2358 log_write(0, LOG_MAIN, "%s", big_buffer);
2360 /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2362 log_write(0, LOG_MAIN|LOG_REJECT,
2363 "connection from %s refused (IP options)", host_and_ident(FALSE));
2365 smtp_printf("554 SMTP service not available\r\n", FALSE);
2369 /* Length of options = 0 => there are no options */
2371 else DEBUG(D_receive) debug_printf("no IP options found\n");
2373 #endif /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2375 /* Set keep-alive in socket options. The option is on by default. This
2376 setting is an attempt to get rid of some hanging connections that stick in
2377 read() when the remote end (usually a dialup) goes away. */
2379 if (smtp_accept_keepalive && !f.sender_host_notsocket)
2380 ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2382 /* If the current host matches host_lookup, set the name by doing a
2383 reverse lookup. On failure, sender_host_name will be NULL and
2384 host_lookup_failed will be TRUE. This may or may not be serious - optional
2387 if (verify_check_host(&host_lookup) == OK)
2389 (void)host_name_lookup();
2390 host_build_sender_fullhost();
2393 /* Delay this until we have the full name, if it is looked up. */
2395 set_process_info("handling incoming connection from %s",
2396 host_and_ident(FALSE));
2398 /* Expand smtp_receive_timeout, if needed */
2400 if (smtp_receive_timeout_s)
2403 if ( !(exp = expand_string(smtp_receive_timeout_s))
2405 || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2407 log_write(0, LOG_MAIN|LOG_PANIC,
2408 "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2411 /* Test for explicit connection rejection */
2413 if (verify_check_host(&host_reject_connection) == OK)
2415 log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2416 "from %s (host_reject_connection)", host_and_ident(FALSE));
2418 if (!tls_in.on_connect)
2420 smtp_printf("554 SMTP service not available\r\n", FALSE);
2424 /* Test with TCP Wrappers if so configured. There is a problem in that
2425 hosts_ctl() returns 0 (deny) under a number of system failure circumstances,
2426 such as disks dying. In these cases, it is desirable to reject with a 4xx
2427 error instead of a 5xx error. There isn't a "right" way to detect such
2428 problems. The following kludge is used: errno is zeroed before calling
2429 hosts_ctl(). If the result is "reject", a 5xx error is given only if the
2430 value of errno is 0 or ENOENT (which happens if /etc/hosts.{allow,deny} does
2433 #ifdef USE_TCP_WRAPPERS
2435 if (!(tcp_wrappers_name = expand_string(tcp_wrappers_daemon_name)))
2436 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" "
2437 "(tcp_wrappers_name) failed: %s", string_printing(tcp_wrappers_name),
2438 expand_string_message);
2440 if (!hosts_ctl(tcp_wrappers_name,
2441 sender_host_name ? CS sender_host_name : STRING_UNKNOWN,
2442 sender_host_address ? CS sender_host_address : STRING_UNKNOWN,
2443 sender_ident ? CS sender_ident : STRING_UNKNOWN))
2445 if (errno == 0 || errno == ENOENT)
2447 HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
2448 log_write(L_connection_reject,
2449 LOG_MAIN|LOG_REJECT, "refused connection from %s "
2450 "(tcp wrappers)", host_and_ident(FALSE));
2451 smtp_printf("554 SMTP service not available\r\n", FALSE);
2455 int save_errno = errno;
2456 HDEBUG(D_receive) debug_printf("tcp wrappers rejected with unexpected "
2457 "errno value %d\n", save_errno);
2458 log_write(L_connection_reject,
2459 LOG_MAIN|LOG_REJECT, "temporarily refused connection from %s "
2460 "(tcp wrappers errno=%d)", host_and_ident(FALSE), save_errno);
2461 smtp_printf("451 Temporary local problem - please try later\r\n", FALSE);
2467 /* Check for reserved slots. The value of smtp_accept_count has already been
2468 incremented to include this process. */
2470 if (smtp_accept_max > 0 &&
2471 smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
2473 if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2475 log_write(L_connection_reject,
2476 LOG_MAIN, "temporarily refused connection from %s: not in "
2477 "reserve list: connected=%d max=%d reserve=%d%s",
2478 host_and_ident(FALSE), smtp_accept_count - 1, smtp_accept_max,
2479 smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
2480 smtp_printf("421 %s: Too many concurrent SMTP connections; "
2481 "please try again later\r\n", FALSE, smtp_active_hostname);
2484 reserved_host = TRUE;
2487 /* If a load level above which only messages from reserved hosts are
2488 accepted is set, check the load. For incoming calls via the daemon, the
2489 check is done in the superior process if there are no reserved hosts, to
2490 save a fork. In all cases, the load average will already be available
2491 in a global variable at this point. */
2493 if (smtp_load_reserve >= 0 &&
2494 load_average > smtp_load_reserve &&
2496 verify_check_host(&smtp_reserve_hosts) != OK)
2498 log_write(L_connection_reject,
2499 LOG_MAIN, "temporarily refused connection from %s: not in "
2500 "reserve list and load average = %.2f", host_and_ident(FALSE),
2501 (double)load_average/1000.0);
2502 smtp_printf("421 %s: Too much load; please try again later\r\n", FALSE,
2503 smtp_active_hostname);
2507 /* Determine whether unqualified senders or recipients are permitted
2508 for this host. Unfortunately, we have to do this every time, in order to
2509 set the flags so that they can be inspected when considering qualifying
2510 addresses in the headers. For a site that permits no qualification, this
2511 won't take long, however. */
2513 f.allow_unqualified_sender =
2514 verify_check_host(&sender_unqualified_hosts) == OK;
2516 f.allow_unqualified_recipient =
2517 verify_check_host(&recipient_unqualified_hosts) == OK;
2519 /* Determine whether HELO/EHLO is required for this host. The requirement
2520 can be hard or soft. */
2522 fl.helo_verify_required = verify_check_host(&helo_verify_hosts) == OK;
2523 if (!fl.helo_verify_required)
2524 fl.helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
2526 /* Determine whether this hosts is permitted to send syntactic junk
2527 after a HELO or EHLO command. */
2529 fl.helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
2532 /* For batch SMTP input we are now done. */
2534 if (smtp_batched_input) return TRUE;
2536 #if defined(SUPPORT_PROXY) || defined(SUPPORT_SOCKS) || defined(EXPERIMETAL_XCLIENT)
2537 proxy_session = FALSE;
2540 #ifdef SUPPORT_PROXY
2541 /* If valid Proxy Protocol source is connecting, set up session.
2542 Failure will not allow any SMTP function other than QUIT. */
2544 f.proxy_session_failed = FALSE;
2545 if (proxy_protocol_host())
2547 os_non_restarting_signal(SIGALRM, command_timeout_handler);
2548 proxy_protocol_setup();
2552 /* Run the connect ACL if it exists */
2555 if (acl_smtp_connect)
2558 if ((rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
2562 if (tls_in.on_connect)
2563 log_connect_tls_drop(US"'connect' ACL", log_msg);
2566 (void) smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
2571 /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
2572 smtps port for use with older style SSL MTAs. */
2575 if (tls_in.on_connect)
2577 if (tls_server_start(&user_msg) != OK)
2578 return smtp_log_tls_fail(user_msg);
2579 cmd_list[CL_TLAU].is_mail_cmd = TRUE;
2583 /* Output the initial message for a two-way SMTP connection. It may contain
2584 newlines, which then cause a multi-line response to be given. */
2586 code = US"220"; /* Default status code */
2587 esc = US""; /* Default extended status code */
2588 esclen = 0; /* Length of esc */
2594 smtp_message_code(&code, &codelen, &s, NULL, TRUE);
2598 esclen = codelen - 4;
2601 else if (!(s = expand_string(smtp_banner)))
2603 log_write(0, f.expand_string_forcedfail ? LOG_MAIN : LOG_MAIN|LOG_PANIC_DIE,
2604 "Expansion of \"%s\" (smtp_banner) failed: %s",
2605 smtp_banner, expand_string_message);
2606 /* for force-fail */
2608 if (tls_in.on_connect) tls_close(NULL, TLS_SHUTDOWN_WAIT);
2613 /* Remove any terminating newlines; might as well remove trailing space too */
2616 while (p > s && isspace(p[-1])) p--;
2617 s = string_copyn(s, p-s);
2619 /* It seems that CC:Mail is braindead, and assumes that the greeting message
2620 is all contained in a single IP packet. The original code wrote out the
2621 greeting using several calls to fprint/fputc, and on busy servers this could
2622 cause it to be split over more than one packet - which caused CC:Mail to fall
2623 over when it got the second part of the greeting after sending its first
2624 command. Sigh. To try to avoid this, build the complete greeting message
2625 first, and output it in one fell swoop. This gives a better chance of it
2626 ending up as a single packet. */
2628 ss = string_get(256);
2631 do /* At least once, in case we have an empty string */
2634 uschar *linebreak = Ustrchr(p, '\n');
2635 ss = string_catn(ss, code, 3);
2639 ss = string_catn(ss, US" ", 1);
2643 len = linebreak - p;
2644 ss = string_catn(ss, US"-", 1);
2646 ss = string_catn(ss, esc, esclen);
2647 ss = string_catn(ss, p, len);
2648 ss = string_catn(ss, US"\r\n", 2);
2654 /* Before we write the banner, check that there is no input pending, unless
2655 this synchronisation check is disabled. */
2657 #ifndef DISABLE_PIPE_CONNECT
2658 fl.pipe_connect_acceptable =
2659 sender_host_address && verify_check_host(&pipe_connect_advertise_hosts) == OK;
2662 if (fl.pipe_connect_acceptable)
2663 f.smtp_in_early_pipe_used = TRUE;
2669 unsigned n = smtp_inend - smtp_inptr;
2670 if (n > 128) n = 128;
2672 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol "
2673 "synchronization error (input sent without waiting for greeting): "
2674 "rejected connection from %s input=\"%s\"", host_and_ident(TRUE),
2675 string_printing(string_copyn(smtp_inptr, n)));
2676 smtp_printf("554 SMTP synchronization error\r\n", FALSE);
2680 /* Now output the banner */
2681 /*XXX the ehlo-resp code does its own tls/nontls bit. Maybe subroutine that? */
2684 #ifndef DISABLE_PIPE_CONNECT
2685 fl.pipe_connect_acceptable && pipeline_connect_sends(),
2691 /* Attempt to see if we sent the banner before the last ACK of the 3-way
2692 handshake arrived. If so we must have managed a TFO. */
2695 if (sender_host_address && !f.sender_host_notsocket) tfo_in_check();
2705 /*************************************************
2706 * Handle SMTP syntax and protocol errors *
2707 *************************************************/
2709 /* Write to the log for SMTP syntax errors in incoming commands, if configured
2710 to do so. Then transmit the error response. The return value depends on the
2711 number of syntax and protocol errors in this SMTP session.
2714 type error type, given as a log flag bit
2715 code response code; <= 0 means don't send a response
2716 data data to reflect in the response (can be NULL)
2717 errmess the error message
2719 Returns: -1 limit of syntax/protocol errors NOT exceeded
2720 +1 limit of syntax/protocol errors IS exceeded
2722 These values fit in with the values of the "done" variable in the main
2723 processing loop in smtp_setup_msg(). */
2726 synprot_error(int type, int code, uschar *data, uschar *errmess)
2730 log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
2731 type == L_smtp_syntax_error ? "syntax" : "protocol",
2732 string_printing(smtp_cmd_buffer), host_and_ident(TRUE), errmess);
2734 if (++synprot_error_count > smtp_max_synprot_errors)
2737 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
2738 "syntax or protocol errors (last command was \"%s\", %Y)",
2739 host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
2746 smtp_printf("%d%c%s%s%s\r\n", FALSE, code, yield == 1 ? '-' : ' ',
2747 data ? data : US"", data ? US": " : US"", errmess);
2749 smtp_printf("%d Too many syntax or protocol errors\r\n", FALSE, code);
2758 /*************************************************
2759 * Send SMTP response, possibly multiline *
2760 *************************************************/
2762 /* There are, it seems, broken clients out there that cannot handle multiline
2763 responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
2764 output nothing for non-final calls, and only the first line for anything else.
2767 code SMTP code, may involve extended status codes
2768 codelen length of smtp code; if > 4 there's an ESC
2769 final FALSE if the last line isn't the final line
2770 msg message text, possibly containing newlines
2776 smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
2781 if (!final && f.no_multiline_responses) return;
2786 esclen = codelen - 4;
2789 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
2790 have had the same. Note: this code is also present in smtp_printf(). It would
2791 be tidier to have it only in one place, but when it was added, it was easier to
2792 do it that way, so as not to have to mess with the code for the RCPT command,
2793 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
2795 if (fl.rcpt_in_progress)
2797 if (!rcpt_smtp_response)
2798 rcpt_smtp_response = string_copy(msg);
2799 else if (fl.rcpt_smtp_response_same &&
2800 Ustrcmp(rcpt_smtp_response, msg) != 0)
2801 fl.rcpt_smtp_response_same = FALSE;
2802 fl.rcpt_in_progress = FALSE;
2805 /* Now output the message, splitting it up into multiple lines if necessary.
2806 We only handle pipelining these responses as far as nonfinal/final groups,
2807 not the whole MAIL/RCPT/DATA response set. */
2811 uschar *nl = Ustrchr(msg, '\n');
2814 smtp_printf("%.3s%c%.*s%s\r\n", !final, code, final ? ' ':'-', esclen, esc, msg);
2817 else if (nl[1] == 0 || f.no_multiline_responses)
2819 smtp_printf("%.3s%c%.*s%.*s\r\n", !final, code, final ? ' ':'-', esclen, esc,
2820 (int)(nl - msg), msg);
2825 smtp_printf("%.3s-%.*s%.*s\r\n", TRUE, code, esclen, esc, (int)(nl - msg), msg);
2827 Uskip_whitespace(&msg);
2835 /*************************************************
2836 * Parse user SMTP message *
2837 *************************************************/
2839 /* This function allows for user messages overriding the response code details
2840 by providing a suitable response code string at the start of the message
2841 user_msg. Check the message for starting with a response code and optionally an
2842 extended status code. If found, check that the first digit is valid, and if so,
2843 change the code pointer and length to use the replacement. An invalid code
2844 causes a panic log; in this case, if the log messages is the same as the user
2845 message, we must also adjust the value of the log message to show the code that
2846 is actually going to be used (the original one).
2848 This function is global because it is called from receive.c as well as within
2851 Note that the code length returned includes the terminating whitespace
2852 character, which is always included in the regex match.
2855 code SMTP code, may involve extended status codes
2856 codelen length of smtp code; if > 4 there's an ESC
2858 log_msg optional log message, to be adjusted with the new SMTP code
2859 check_valid if true, verify the response code
2865 smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg,
2871 if (!msg || !*msg || !regex_match(regex_smtp_code, *msg, -1, &match))
2874 len = Ustrlen(match);
2875 if (check_valid && (*msg)[0] != (*code)[0])
2877 log_write(0, LOG_MAIN|LOG_PANIC, "configured error code starts with "
2878 "incorrect digit (expected %c) in \"%s\"", (*code)[0], *msg);
2879 if (log_msg && *log_msg == *msg)
2880 *log_msg = string_sprintf("%s %s", *code, *log_msg + len);
2885 *codelen = len; /* Includes final space */
2887 *msg += len; /* Chop the code off the message */
2894 /*************************************************
2895 * Handle an ACL failure *
2896 *************************************************/
2898 /* This function is called when acl_check() fails. As well as calls from within
2899 this module, it is called from receive.c for an ACL after DATA. It sorts out
2900 logging the incident, and sends the error response. A message containing
2901 newlines is turned into a multiline SMTP response, but for logging, only the
2904 There's a table of default permanent failure response codes to use in
2905 globals.c, along with the table of names. VFRY is special. Despite RFC1123 it
2906 defaults disabled in Exim. However, discussion in connection with RFC 821bis
2907 (aka RFC 2821) has concluded that the response should be 252 in the disabled
2908 state, because there are broken clients that try VRFY before RCPT. A 5xx
2909 response should be given only when the address is positively known to be
2910 undeliverable. Sigh. We return 252 if there is no VRFY ACL or it provides
2911 no explicit code, but if there is one we let it know best.
2912 Also, for ETRN, 458 is given on refusal, and for AUTH, 503.
2914 From Exim 4.63, it is possible to override the response code details by
2915 providing a suitable response code string at the start of the message provided
2916 in user_msg. The code's first digit is checked for validity.
2919 where where the ACL was called from
2921 user_msg a message that can be included in an SMTP response
2922 log_msg a message for logging
2924 Returns: 0 in most cases
2925 2 if the failure code was FAIL_DROP, in which case the
2926 SMTP connection should be dropped (this value fits with the
2927 "done" variable in smtp_setup_msg() below)
2931 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
2933 BOOL drop = rc == FAIL_DROP;
2937 uschar *sender_info = US"";
2940 if (drop) rc = FAIL;
2942 /* Set the default SMTP code, and allow a user message to change it. */
2944 smtp_code = rc == FAIL ? acl_wherecodes[where] : US"451";
2945 smtp_message_code(&smtp_code, &codelen, &user_msg, &log_msg,
2946 where != ACL_WHERE_VRFY);
2948 /* We used to have sender_address here; however, there was a bug that was not
2949 updating sender_address after a rewrite during a verify. When this bug was
2950 fixed, sender_address at this point became the rewritten address. I'm not sure
2951 this is what should be logged, so I've changed to logging the unrewritten
2952 address to retain backward compatibility. */
2956 #ifdef WITH_CONTENT_SCAN
2957 case ACL_WHERE_MIME: what = US"during MIME ACL checks"; break;
2959 case ACL_WHERE_PREDATA: what = US"DATA"; break;
2960 case ACL_WHERE_DATA: what = US"after DATA"; break;
2961 #ifndef DISABLE_PRDR
2962 case ACL_WHERE_PRDR: what = US"after DATA PRDR"; break;
2966 uschar * place = smtp_cmd_data ? smtp_cmd_data : US"in \"connect\" ACL";
2969 if (where == ACL_WHERE_AUTH) /* avoid logging auth creds */
2972 for (s = smtp_cmd_data; *s && !isspace(*s); ) s++;
2973 lim = s - smtp_cmd_data; /* atop after method */
2975 what = string_sprintf("%s %.*s", acl_wherenames[where], lim, place);
2980 case ACL_WHERE_RCPT:
2981 case ACL_WHERE_DATA:
2982 #ifdef WITH_CONTENT_SCAN
2983 case ACL_WHERE_MIME:
2985 sender_info = string_sprintf("F=<%s>%s%s%s%s ",
2986 sender_address_unrewritten ? sender_address_unrewritten : sender_address,
2987 sender_host_authenticated ? US" A=" : US"",
2988 sender_host_authenticated ? sender_host_authenticated : US"",
2989 sender_host_authenticated && authenticated_id ? US":" : US"",
2990 sender_host_authenticated && authenticated_id ? authenticated_id : US""
2995 /* If there's been a sender verification failure with a specific message, and
2996 we have not sent a response about it yet, do so now, as a preliminary line for
2997 failures, but not defers. However, always log it for defer, and log it for fail
2998 unless the sender_verify_fail log selector has been turned off. */
3000 if (sender_verified_failed &&
3001 !testflag(sender_verified_failed, af_sverify_told))
3003 BOOL save_rcpt_in_progress = fl.rcpt_in_progress;
3004 fl.rcpt_in_progress = FALSE; /* So as not to treat these as the error */
3006 setflag(sender_verified_failed, af_sverify_told);
3008 if (rc != FAIL || LOGGING(sender_verify_fail))
3009 log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
3010 host_and_ident(TRUE),
3011 ((sender_verified_failed->special_action & 255) == DEFER)? "defer":"fail",
3012 sender_verified_failed->address,
3013 (sender_verified_failed->message == NULL)? US"" :
3014 string_sprintf(": %s", sender_verified_failed->message));
3016 if (rc == FAIL && sender_verified_failed->user_message)
3017 smtp_respond(smtp_code, codelen, FALSE, string_sprintf(
3018 testflag(sender_verified_failed, af_verify_pmfail)?
3019 "Postmaster verification failed while checking <%s>\n%s\n"
3020 "Several RFCs state that you are required to have a postmaster\n"
3021 "mailbox for each mail domain. This host does not accept mail\n"
3022 "from domains whose servers reject the postmaster address."
3024 testflag(sender_verified_failed, af_verify_nsfail)?
3025 "Callback setup failed while verifying <%s>\n%s\n"
3026 "The initial connection, or a HELO or MAIL FROM:<> command was\n"
3027 "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
3028 "RFC requirements, and stops you from receiving standard bounce\n"
3029 "messages. This host does not accept mail from domains whose servers\n"
3032 "Verification failed for <%s>\n%s",
3033 sender_verified_failed->address,
3034 sender_verified_failed->user_message));
3036 fl.rcpt_in_progress = save_rcpt_in_progress;
3039 /* Sort out text for logging */
3041 log_msg = log_msg ? string_sprintf(": %s", log_msg) : US"";
3042 if ((lognl = Ustrchr(log_msg, '\n'))) *lognl = 0;
3044 /* Send permanent failure response to the command, but the code used isn't
3045 always a 5xx one - see comments at the start of this function. If the original
3046 rc was FAIL_DROP we drop the connection and yield 2. */
3049 smtp_respond(smtp_code, codelen, TRUE,
3050 user_msg ? user_msg : US"Administrative prohibition");
3052 /* Send temporary failure response to the command. Don't give any details,
3053 unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
3054 verb, and for a header verify when smtp_return_error_details is set.
3056 This conditional logic is all somewhat of a mess because of the odd
3057 interactions between temp_details and return_error_details. One day it should
3058 be re-implemented in a tidier fashion. */
3061 if (f.acl_temp_details && user_msg)
3063 if ( smtp_return_error_details
3064 && sender_verified_failed
3065 && sender_verified_failed->message
3067 smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
3069 smtp_respond(smtp_code, codelen, TRUE, user_msg);
3072 smtp_respond(smtp_code, codelen, TRUE,
3073 US"Temporary local problem - please try later");
3075 /* Log the incident to the logs that are specified by log_reject_target
3076 (default main, reject). This can be empty to suppress logging of rejections. If
3077 the connection is not forcibly to be dropped, return 0. Otherwise, log why it
3078 is closing if required and return 2. */
3080 if (log_reject_target != 0)
3083 gstring * g = s_tlslog(NULL);
3084 uschar * tls = string_from_gstring(g);
3085 if (!tls) tls = US"";
3087 uschar * tls = US"";
3089 log_write(where == ACL_WHERE_CONNECT ? L_connection_reject : 0,
3090 log_reject_target, "%s%s%s %s%srejected %s%s",
3091 LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
3092 host_and_ident(TRUE),
3095 rc == FAIL ? US"" : US"temporarily ",
3099 if (!drop) return 0;
3101 log_close_event(US"by DROP in ACL");
3103 /* Run the not-quit ACL, but without any custom messages. This should not be a
3104 problem, because we get here only if some other ACL has issued "drop", and
3105 in that case, *its* custom messages will have been used above. */
3107 smtp_notquit_exit(US"acl-drop", NULL, NULL);
3109 /* An overenthusiastic fail2ban/iptables implimentation has been seen to result
3110 in the TCP conn staying open, and retrying, despite this process exiting. A
3111 malicious client could possibly do the same, tying up server netowrking
3112 resources. Close the socket explicitly to try to avoid that (there's a note in
3113 the Linux socket(7) manpage, SO_LINGER para, to the effect that exim() without
3114 close() results in the socket always lingering). */
3116 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
3117 DEBUG(D_any) debug_printf_indent("SMTP(close)>>\n");
3118 (void) fclose(smtp_in);
3119 (void) fclose(smtp_out);
3127 /*************************************************
3128 * Handle SMTP exit when QUIT is not given *
3129 *************************************************/
3131 /* This function provides a logging/statistics hook for when an SMTP connection
3132 is dropped on the floor or the other end goes away. It's a global function
3133 because it's called from receive.c as well as this module. As well as running
3134 the NOTQUIT ACL, if there is one, this function also outputs a final SMTP
3135 response, either with a custom message from the ACL, or using a default. There
3136 is one case, however, when no message is output - after "drop". In that case,
3137 the ACL that obeyed "drop" has already supplied the custom message, and NULL is
3138 passed to this function.
3140 In case things go wrong while processing this function, causing an error that
3141 may re-enter this function, there is a recursion check.
3144 reason What $smtp_notquit_reason will be set to in the ACL;
3145 if NULL, the ACL is not run
3146 code The error code to return as part of the response
3147 defaultrespond The default message if there's no user_msg
3153 smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
3156 uschar *user_msg = NULL;
3157 uschar *log_msg = NULL;
3159 /* Check for recursive call */
3161 if (fl.smtp_exit_function_called)
3163 log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
3167 fl.smtp_exit_function_called = TRUE;
3169 /* Call the not-QUIT ACL, if there is one, unless no reason is given. */
3171 if (acl_smtp_notquit && reason)
3173 smtp_notquit_reason = reason;
3174 if ((rc = acl_check(ACL_WHERE_NOTQUIT, NULL, acl_smtp_notquit, &user_msg,
3175 &log_msg)) == ERROR)
3176 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for not-QUIT returned ERROR: %s",
3180 /* If the connection was dropped, we certainly are no longer talking TLS */
3181 tls_in.active.sock = -1;
3183 /* Write an SMTP response if we are expected to give one. As the default
3184 responses are all internal, they should be reasonable size. */
3186 if (code && defaultrespond)
3189 smtp_respond(code, 3, TRUE, user_msg);
3195 va_start(ap, defaultrespond);
3196 g = string_vformat(NULL, SVFMT_EXTEND|SVFMT_REBUFFER, CS defaultrespond, ap);
3198 smtp_printf("%s %Y\r\n", FALSE, code, g);
3207 /*************************************************
3208 * Verify HELO argument *
3209 *************************************************/
3211 /* This function is called if helo_verify_hosts or helo_try_verify_hosts is
3212 matched. It is also called from ACL processing if verify = helo is used and
3213 verification was not previously tried (i.e. helo_try_verify_hosts was not
3214 matched). The result of its processing is to set helo_verified and
3215 helo_verify_failed. These variables should both be FALSE for this function to
3218 Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
3219 for IPv6 ::ffff: literals.
3222 Returns: TRUE if testing was completed;
3223 FALSE on a temporary failure
3227 smtp_verify_helo(void)
3231 HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
3234 if (sender_helo_name == NULL)
3236 HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
3239 /* Deal with the case of -bs without an IP address */
3241 else if (sender_host_address == NULL)
3243 HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
3244 f.helo_verified = TRUE;
3247 /* Deal with the more common case when there is a sending IP address */
3249 else if (sender_helo_name[0] == '[')
3251 f.helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
3252 Ustrlen(sender_host_address)) == 0;
3255 if (!f.helo_verified)
3257 if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
3258 f.helo_verified = Ustrncmp(sender_helo_name + 1,
3259 sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
3264 { if (f.helo_verified) debug_printf("matched host address\n"); }
3267 /* Do a reverse lookup if one hasn't already given a positive or negative
3268 response. If that fails, or the name doesn't match, try checking with a forward
3273 if (sender_host_name == NULL && !host_lookup_failed)
3274 yield = host_name_lookup() != DEFER;
3276 /* If a host name is known, check it and all its aliases. */
3278 if (sender_host_name)
3279 if ((f.helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0))
3281 sender_helo_dnssec = sender_host_dnssec;
3282 HDEBUG(D_receive) debug_printf("matched host name\n");
3286 uschar **aliases = sender_host_aliases;
3288 if ((f.helo_verified = strcmpic(*aliases++, sender_helo_name) == 0))
3290 sender_helo_dnssec = sender_host_dnssec;
3294 HDEBUG(D_receive) if (f.helo_verified)
3295 debug_printf("matched alias %s\n", *(--aliases));
3298 /* Final attempt: try a forward lookup of the helo name */
3300 if (!f.helo_verified)
3304 {.name = sender_helo_name, .address = NULL, .mx = MX_NONE, .next = NULL};
3306 {.request = US"*", .require = US""};
3308 HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3310 rc = host_find_bydns(&h, NULL, HOST_FIND_BY_A | HOST_FIND_BY_AAAA,
3311 NULL, NULL, NULL, &d, NULL, NULL);
3312 if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3313 for (host_item * hh = &h; hh; hh = hh->next)
3314 if (Ustrcmp(hh->address, sender_host_address) == 0)
3316 f.helo_verified = TRUE;
3317 if (h.dnssec == DS_YES) sender_helo_dnssec = TRUE;
3319 debug_printf("IP address for %s matches calling address\n"
3320 "Forward DNS security status: %sverified\n",
3321 sender_helo_name, sender_helo_dnssec ? "" : "un");
3327 if (!f.helo_verified) f.helo_verify_failed = TRUE; /* We've tried ... */
3334 /*************************************************
3335 * Send user response message *
3336 *************************************************/
3338 /* This function is passed a default response code and a user message. It calls
3339 smtp_message_code() to check and possibly modify the response code, and then
3340 calls smtp_respond() to transmit the response. I put this into a function
3341 just to avoid a lot of repetition.
3344 code the response code
3345 user_msg the user message
3351 smtp_user_msg(uschar *code, uschar *user_msg)
3354 smtp_message_code(&code, &len, &user_msg, NULL, TRUE);
3355 smtp_respond(code, len, TRUE, user_msg);
3361 smtp_in_auth(auth_instance *au, uschar ** smtp_resp, uschar ** errmsg)
3363 const uschar *set_id = NULL;
3366 /* Set up globals for error messages */
3368 authenticator_name = au->name;
3369 driver_srcfile = au->srcfile;
3370 driver_srcline = au->srcline;
3372 /* Run the checking code, passing the remainder of the command line as
3373 data. Initials the $auth<n> variables as empty. Initialize $0 empty and set
3374 it as the only set numerical variable. The authenticator may set $auth<n>
3375 and also set other numeric variables. The $auth<n> variables are preferred
3376 nowadays; the numerical variables remain for backwards compatibility.
3378 Afterwards, have a go at expanding the set_id string, even if
3379 authentication failed - for bad passwords it can be useful to log the
3380 userid. On success, require set_id to expand and exist, and put it in
3381 authenticated_id. Save this in permanent store, as the working store gets
3382 reset at HELO, RSET, etc. */
3384 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
3386 expand_nlength[0] = 0; /* $0 contains nothing */
3388 rc = (au->info->servercode)(au, smtp_cmd_data);
3389 if (au->set_id) set_id = expand_string(au->set_id);
3390 expand_nmax = -1; /* Reset numeric variables */
3391 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL; /* Reset $auth<n> */
3392 driver_srcfile = authenticator_name = NULL; driver_srcline = 0;
3394 /* The value of authenticated_id is stored in the spool file and printed in
3395 log lines. It must not contain binary zeros or newline characters. In
3396 normal use, it never will, but when playing around or testing, this error
3397 can (did) happen. To guard against this, ensure that the id contains only
3398 printing characters. */
3400 if (set_id) set_id = string_printing(set_id);
3402 /* For the non-OK cases, set up additional logging data if set_id
3406 set_id = set_id && *set_id
3407 ? string_sprintf(" (set_id=%s)", set_id) : US"";
3409 /* Switch on the result */
3414 if (!au->set_id || set_id) /* Complete success */
3416 if (set_id) authenticated_id = string_copy_perm(set_id, TRUE);
3417 sender_host_authenticated = au->name;
3418 sender_host_auth_pubname = au->public_name;
3419 authentication_failed = FALSE;
3420 authenticated_fail_id = NULL; /* Impossible to already be set? */
3423 (sender_host_address ? protocols : protocols_local)
3424 [pextend + pauthed + (tls_in.active.sock >= 0 ? pcrpted:0)];
3425 *smtp_resp = *errmsg = US"235 Authentication succeeded";
3426 authenticated_by = au;
3430 /* Authentication succeeded, but we failed to expand the set_id string.
3431 Treat this as a temporary error. */
3433 auth_defer_msg = expand_string_message;
3437 if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3438 *smtp_resp = string_sprintf("435 Unable to authenticate at present%s",
3439 auth_defer_user_msg);
3440 *errmsg = string_sprintf("435 Unable to authenticate at present%s: %s",
3441 set_id, auth_defer_msg);
3445 *smtp_resp = *errmsg = US"501 Invalid base64 data";
3449 *smtp_resp = *errmsg = US"501 Authentication cancelled";
3453 *smtp_resp = *errmsg = US"553 Initial data not expected";
3457 if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3458 *smtp_resp = US"535 Incorrect authentication data";
3459 *errmsg = string_sprintf("535 Incorrect authentication data%s", set_id);
3463 if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3464 *smtp_resp = US"435 Internal error";
3465 *errmsg = string_sprintf("435 Internal error%s: return %d from authentication "
3466 "check", set_id, rc);
3478 qualify_recipient(uschar ** recipient, uschar * smtp_cmd_data, uschar * tag)
3481 if (f.allow_unqualified_recipient || strcmpic(*recipient, US"postmaster") == 0)
3483 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
3485 rd = Ustrlen(recipient) + 1;
3486 /* deconst ok as *recipient was not const */
3487 *recipient = US rewrite_address_qualify(*recipient, TRUE);
3490 smtp_printf("501 %s: recipient address must contain a domain\r\n", FALSE,
3492 log_write(L_smtp_syntax_error,
3493 LOG_MAIN|LOG_REJECT, "unqualified %s rejected: <%s> %s%s",
3494 tag, *recipient, host_and_ident(TRUE), host_lookup_msg);
3502 smtp_quit_handler(uschar ** user_msgp, uschar ** log_msgp)
3505 f.smtp_in_quit = TRUE;
3506 incomplete_transaction_log(US"QUIT");
3508 && acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, user_msgp, log_msgp)
3510 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
3513 #ifdef EXIM_TCP_CORK
3514 (void) setsockopt(fileno(smtp_out), IPPROTO_TCP, EXIM_TCP_CORK, US &on, sizeof(on));
3518 smtp_respond(US"221", 3, TRUE, *user_msgp);
3520 smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
3522 #ifdef SERVERSIDE_CLOSE_NOWAIT
3523 # ifndef DISABLE_TLS
3524 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
3527 log_close_event(US"by QUIT");
3530 # ifndef DISABLE_TLS
3531 tls_close(NULL, TLS_SHUTDOWN_WAIT);
3534 log_close_event(US"by QUIT");
3536 /* Pause, hoping client will FIN first so that they get the TIME_WAIT.
3537 The socket should become readble (though with no data) */
3539 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
3540 #endif /*!SERVERSIDE_CLOSE_NOWAIT*/
3545 smtp_rset_handler(void)
3548 incomplete_transaction_log(US"RSET");
3549 smtp_printf("250 Reset OK\r\n", FALSE);
3550 cmd_list[CL_RSET].is_mail_cmd = FALSE;
3551 if (chunking_state > CHUNKING_OFFERED)
3552 chunking_state = CHUNKING_OFFERED;
3557 expand_mailmax(const uschar * s)
3559 if (!(s = expand_cstring(s)))
3560 log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand smtp_accept_max_per_connection");
3561 return *s ? Uatoi(s) : 0;
3564 /*************************************************
3565 * Initialize for SMTP incoming message *
3566 *************************************************/
3568 /* This function conducts the initial dialogue at the start of an incoming SMTP
3569 message, and builds a list of recipients. However, if the incoming message
3570 is part of a batch (-bS option) a separate function is called since it would
3571 be messy having tests splattered about all over this function. This function
3572 therefore handles the case where interaction is occurring. The input and output
3573 files are set up in smtp_in and smtp_out.
3575 The global recipients_list is set to point to a vector of recipient_item
3576 blocks, whose number is given by recipients_count. This is extended by the
3577 receive_add_recipient() function. The global variable sender_address is set to
3578 the sender's address. The yield is +1 if a message has been successfully
3579 started, 0 if a QUIT command was encountered or the connection was refused from
3580 the particular host, or -1 if the connection was lost.
3584 Returns: > 0 message successfully started (reached DATA)
3585 = 0 QUIT read or end of file reached or call refused
3590 smtp_setup_msg(void)
3593 BOOL toomany = FALSE;
3594 BOOL discarded = FALSE;
3595 BOOL last_was_rej_mail = FALSE;
3596 BOOL last_was_rcpt = FALSE;
3597 rmark reset_point = store_mark();
3599 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
3601 /* Reset for start of new message. We allow one RSET not to be counted as a
3602 nonmail command, for those MTAs that insist on sending it between every
3603 message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
3604 TLS between messages (an Exim client may do this if it has messages queued up
3605 for the host). Note: we do NOT reset AUTH at this point. */
3607 reset_point = smtp_reset(reset_point);
3608 message_ended = END_NOTSTARTED;
3610 chunking_state = f.chunking_offered ? CHUNKING_OFFERED : CHUNKING_NOT_OFFERED;
3612 cmd_list[CL_RSET].is_mail_cmd = TRUE;
3613 cmd_list[CL_HELO].is_mail_cmd = TRUE;
3614 cmd_list[CL_EHLO].is_mail_cmd = TRUE;
3616 cmd_list[CL_STLS].is_mail_cmd = TRUE;
3619 if (lwr_receive_getc != NULL)
3621 /* This should have already happened, but if we've gotten confused,
3622 force a reset here. */
3623 DEBUG(D_receive) debug_printf("WARNING: smtp_setup_msg had to restore receive functions to lowers\n");
3624 bdat_pop_receive_functions();
3627 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
3629 had_command_sigterm = 0;
3630 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
3632 /* Batched SMTP is handled in a different function. */
3634 if (smtp_batched_input) return smtp_setup_batch_msg();
3637 if (smtp_in) /* Avoid pure-ACKs while in cmd pingpong phase */
3638 (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
3639 US &off, sizeof(off));
3642 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
3643 value. The values are 2 larger than the required yield of the function. */
3647 const uschar **argv;
3648 uschar *etrn_command;
3649 uschar *etrn_serialize_key;
3651 uschar *log_msg, *smtp_code;
3652 uschar *user_msg = NULL;
3653 uschar *recipient = NULL;
3654 uschar *hello = NULL;
3656 BOOL was_rej_mail = FALSE;
3657 BOOL was_rcpt = FALSE;
3658 void (*oldsignal)(int);
3660 int start, end, sender_domain, recipient_domain;
3663 uschar *orcpt = NULL;
3668 /* Check once per STARTTLS or SSL-on-connect for a TLS AUTH */
3669 if ( tls_in.active.sock >= 0
3671 && tls_in.certificate_verified
3672 && cmd_list[CL_TLAU].is_mail_cmd
3675 cmd_list[CL_TLAU].is_mail_cmd = FALSE;
3677 for (auth_instance * au = auths; au; au = au->next)
3678 if (strcmpic(US"tls", au->driver_name) == 0)
3681 && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
3682 &user_msg, &log_msg)) != OK
3684 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
3687 smtp_cmd_data = NULL;
3689 if (smtp_in_auth(au, &s, &ss) == OK)
3690 { DEBUG(D_auth) debug_printf("tls auth succeeded\n"); }
3693 DEBUG(D_auth) debug_printf("tls auth not succeeded\n");
3694 #ifndef DISABLE_EVENT
3696 uschar * save_name = sender_host_authenticated, * logmsg;
3697 sender_host_authenticated = au->name;
3698 if ((logmsg = event_raise(event_action, US"auth:fail", s, NULL)))
3699 log_write(0, LOG_MAIN, "%s", logmsg);
3700 sender_host_authenticated = save_name;
3710 switch(smtp_read_command(
3711 #ifndef DISABLE_PIPE_CONNECT
3712 !fl.pipe_connect_acceptable,
3716 GETC_BUFFER_UNLIMITED))
3718 /* The AUTH command is not permitted to occur inside a transaction, and may
3719 occur successfully only once per connection. Actually, that isn't quite
3720 true. When TLS is started, all previous information about a connection must
3721 be discarded, so a new AUTH is permitted at that time.
3723 AUTH may only be used when it has been advertised. However, it seems that
3724 there are clients that send AUTH when it hasn't been advertised, some of
3725 them even doing this after HELO. And there are MTAs that accept this. Sigh.
3726 So there's a get-out that allows this to happen.
3728 AUTH is initially labelled as a "nonmail command" so that one occurrence
3729 doesn't get counted. We change the label here so that multiple failing
3730 AUTHS will eventually hit the nonmail threshold. */
3734 authentication_failed = TRUE;
3735 cmd_list[CL_AUTH].is_mail_cmd = FALSE;
3737 if (!fl.auth_advertised && !f.allow_auth_unadvertised)
3739 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3740 US"AUTH command used when not advertised");
3743 if (sender_host_authenticated)
3745 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3746 US"already authenticated");
3751 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3752 US"not permitted in mail transaction");
3759 && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
3760 &user_msg, &log_msg)) != OK
3763 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
3767 /* Find the name of the requested authentication mechanism. */
3770 for (; (c = *smtp_cmd_data) && !isspace(c); smtp_cmd_data++)
3771 if (!isalnum(c) && c != '-' && c != '_')
3773 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3774 US"invalid character in authentication mechanism name");
3778 /* If not at the end of the line, we must be at white space. Terminate the
3779 name and move the pointer on to any data that may be present. */
3783 *smtp_cmd_data++ = 0;
3784 while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
3787 /* Search for an authentication mechanism which is configured for use
3788 as a server and which has been advertised (unless, sigh, allow_auth_
3789 unadvertised is set). */
3793 uschar * smtp_resp, * errmsg;
3795 for (au = auths; au; au = au->next)
3796 if (strcmpic(s, au->public_name) == 0 && au->server &&
3797 (au->advertised || f.allow_auth_unadvertised))
3802 int rc = smtp_in_auth(au, &smtp_resp, &errmsg);
3804 smtp_printf("%s\r\n", FALSE, smtp_resp);
3807 uschar * logmsg = NULL;
3808 #ifndef DISABLE_EVENT
3809 {uschar * save_name = sender_host_authenticated;
3810 sender_host_authenticated = au->name;
3811 logmsg = event_raise(event_action, US"auth:fail", smtp_resp, NULL);
3812 sender_host_authenticated = save_name;
3816 log_write(0, LOG_MAIN|LOG_REJECT, "%s", logmsg);
3818 log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
3819 au->name, host_and_ident(FALSE), errmsg);
3823 done = synprot_error(L_smtp_protocol_error, 504, NULL,
3824 string_sprintf("%s authentication mechanism not supported", s));
3827 break; /* AUTH_CMD */
3829 /* The HELO/EHLO commands are permitted to appear in the middle of a
3830 session as well as at the beginning. They have the effect of a reset in
3831 addition to their other functions. Their absence at the start cannot be
3832 taken to be an error.
3836 If the EHLO command is not acceptable to the SMTP server, 501, 500,
3837 or 502 failure replies MUST be returned as appropriate. The SMTP
3838 server MUST stay in the same state after transmitting these replies
3839 that it was in before the EHLO was received.
3841 Therefore, we do not do the reset until after checking the command for
3842 acceptability. This change was made for Exim release 4.11. Previously
3843 it did the reset first. */
3856 HELO_EHLO: /* Common code for HELO and EHLO */
3857 cmd_list[CL_HELO].is_mail_cmd = FALSE;
3858 cmd_list[CL_EHLO].is_mail_cmd = FALSE;
3860 /* Reject the HELO if its argument was invalid or non-existent. A
3861 successful check causes the argument to be saved in malloc store. */
3863 if (!check_helo(smtp_cmd_data))
3865 smtp_printf("501 Syntactically invalid %s argument(s)\r\n", FALSE, hello);
3867 log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
3868 "invalid argument(s): %s", hello, host_and_ident(FALSE),
3869 *smtp_cmd_argument == 0 ? US"(no argument given)" :
3870 string_printing(smtp_cmd_argument));
3872 if (++synprot_error_count > smtp_max_synprot_errors)
3874 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3875 "syntax or protocol errors (last command was \"%s\", %Y)",
3876 host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
3885 /* If sender_host_unknown is true, we have got here via the -bs interface,
3886 not called from inetd. Otherwise, we are running an IP connection and the
3887 host address will be set. If the helo name is the primary name of this
3888 host and we haven't done a reverse lookup, force one now. If helo_verify_required
3889 is set, ensure that the HELO name matches the actual host. If helo_verify
3890 is set, do the same check, but softly. */
3892 if (!f.sender_host_unknown)
3894 BOOL old_helo_verified = f.helo_verified;
3895 uschar *p = smtp_cmd_data;
3897 while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
3900 /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
3901 because otherwise the log can be confusing. */
3903 if ( !sender_host_name
3904 && match_isinlist(sender_helo_name, CUSS &helo_lookup_domains, 0,
3905 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL) == OK)
3906 (void)host_name_lookup();
3908 /* Rebuild the fullhost info to include the HELO name (and the real name
3909 if it was looked up.) */
3911 host_build_sender_fullhost(); /* Rebuild */
3912 set_process_info("handling%s incoming connection from %s",
3913 tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE));
3915 /* Verify if configured. This doesn't give much security, but it does
3916 make some people happy to be able to do it. If helo_verify_required is set,
3917 (host matches helo_verify_hosts) failure forces rejection. If helo_verify
3918 is set (host matches helo_try_verify_hosts), it does not. This is perhaps
3919 now obsolescent, since the verification can now be requested selectively
3922 f.helo_verified = f.helo_verify_failed = sender_helo_dnssec = FALSE;
3923 if (fl.helo_verify_required || fl.helo_verify)
3925 BOOL tempfail = !smtp_verify_helo();
3926 if (!f.helo_verified)
3928 if (fl.helo_verify_required)
3930 smtp_printf("%d %s argument does not match calling host\r\n", FALSE,
3931 tempfail? 451 : 550, hello);
3932 log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
3933 tempfail? "temporarily " : "",
3934 hello, sender_helo_name, host_and_ident(FALSE));
3935 f.helo_verified = old_helo_verified;
3936 break; /* End of HELO/EHLO processing */
3938 HDEBUG(D_all) debug_printf("%s verification failed but host is in "
3939 "helo_try_verify_hosts\n", hello);
3945 /* set up SPF context */
3946 spf_conn_init(sender_helo_name, sender_host_address);
3949 /* Apply an ACL check if one is defined; afterwards, recheck
3950 synchronization in case the client started sending in a delay. */
3953 if ((rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo,
3954 &user_msg, &log_msg)) != OK)
3956 done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
3957 sender_helo_name = NULL;
3958 host_build_sender_fullhost(); /* Rebuild */
3961 #ifndef DISABLE_PIPE_CONNECT
3962 else if (!fl.pipe_connect_acceptable && !check_sync())
3964 else if (!check_sync())
3968 /* Generate an OK reply. The default string includes the ident if present,
3969 and also the IP address if present. Reflecting back the ident is intended
3970 as a deterrent to mail forgers. For maximum efficiency, and also because
3971 some broken systems expect each response to be in a single packet, arrange
3972 that the entire reply is sent in one write(). */
3974 fl.auth_advertised = FALSE;
3975 f.smtp_in_pipelining_advertised = FALSE;
3977 fl.tls_advertised = FALSE;
3979 fl.dsn_advertised = FALSE;
3981 fl.smtputf8_advertised = FALSE;
3984 /* Expand the per-connection message count limit option */
3985 smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
3987 smtp_code = US"250 "; /* Default response code plus space*/
3990 /* sender_host_name below will be tainted, so save on copy when we hit it */
3991 g = string_get_tainted(24, GET_TAINTED);
3992 g = string_fmt_append(g, "%.3s %s Hello %s%s%s",
3994 smtp_active_hostname,
3995 sender_ident ? sender_ident : US"",
3996 sender_ident ? US" at " : US"",
3997 sender_host_name ? sender_host_name : sender_helo_name);
3999 if (sender_host_address)
4000 g = string_fmt_append(g, " [%s]", sender_host_address);
4003 /* A user-supplied EHLO greeting may not contain more than one line. Note
4004 that the code returned by smtp_message_code() includes the terminating
4005 whitespace character. */
4011 smtp_message_code(&smtp_code, &codelen, &user_msg, NULL, TRUE);
4012 s = string_sprintf("%.*s%s", codelen, smtp_code, user_msg);
4013 if ((ss = strpbrk(CS s, "\r\n")) != NULL)
4015 log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
4016 "newlines: message truncated: %s", string_printing(s));
4019 g = string_cat(NULL, s);
4022 g = string_catn(g, US"\r\n", 2);
4024 /* If we received EHLO, we must create a multiline response which includes
4025 the functions supported. */
4029 g->s[3] = '-'; /* overwrite the space after the SMTP response code */
4031 /* I'm not entirely happy with this, as an MTA is supposed to check
4032 that it has enough room to accept a message of maximum size before
4033 it sends this. However, there seems little point in not sending it.
4034 The actual size check happens later at MAIL FROM time. By postponing it
4035 till then, VRFY and EXPN can be used after EHLO when space is short. */
4037 if (thismessage_size_limit > 0)
4038 g = string_fmt_append(g, "%.3s-SIZE %d\r\n", smtp_code,
4039 thismessage_size_limit);
4042 g = string_catn(g, smtp_code, 3);
4043 g = string_catn(g, US"-SIZE\r\n", 7);
4046 #ifdef EXPERIMENTAL_ESMTP_LIMITS
4047 if ( (smtp_mailcmd_max > 0 || recipients_max)
4048 && verify_check_host(&limits_advertise_hosts) == OK)
4050 g = string_fmt_append(g, "%.3s-LIMITS", smtp_code);
4051 if (smtp_mailcmd_max > 0)
4052 g = string_fmt_append(g, " MAILMAX=%d", smtp_mailcmd_max);
4054 g = string_fmt_append(g, " RCPTMAX=%d", recipients_max);
4055 g = string_catn(g, US"\r\n", 2);
4059 /* Exim does not do protocol conversion or data conversion. It is 8-bit
4060 clean; if it has an 8-bit character in its hand, it just sends it. It
4061 cannot therefore specify 8BITMIME and remain consistent with the RFCs.
4062 However, some users want this option simply in order to stop MUAs
4063 mangling messages that contain top-bit-set characters. It is therefore
4064 provided as an option. */
4066 if (accept_8bitmime)
4068 g = string_catn(g, smtp_code, 3);
4069 g = string_catn(g, US"-8BITMIME\r\n", 11);
4072 /* Advertise DSN support if configured to do so. */
4073 if (verify_check_host(&dsn_advertise_hosts) != FAIL)
4075 g = string_catn(g, smtp_code, 3);
4076 g = string_catn(g, US"-DSN\r\n", 6);
4077 fl.dsn_advertised = TRUE;
4080 /* Advertise ETRN/VRFY/EXPN if there's are ACL checking whether a host is
4081 permitted to issue them; a check is made when any host actually tries. */
4085 g = string_catn(g, smtp_code, 3);
4086 g = string_catn(g, US"-ETRN\r\n", 7);
4090 g = string_catn(g, smtp_code, 3);
4091 g = string_catn(g, US"-VRFY\r\n", 7);
4095 g = string_catn(g, smtp_code, 3);
4096 g = string_catn(g, US"-EXPN\r\n", 7);
4099 /* Exim is quite happy with pipelining, so let the other end know that
4100 it is safe to use it, unless advertising is disabled. */
4102 if ( f.pipelining_enable
4103 && verify_check_host(&pipelining_advertise_hosts) == OK)
4105 g = string_catn(g, smtp_code, 3);
4106 g = string_catn(g, US"-PIPELINING\r\n", 13);
4107 sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
4108 f.smtp_in_pipelining_advertised = TRUE;
4110 #ifndef DISABLE_PIPE_CONNECT
4111 if (fl.pipe_connect_acceptable)
4113 f.smtp_in_early_pipe_advertised = TRUE;
4114 g = string_catn(g, smtp_code, 3);
4115 g = string_catn(g, US"-" EARLY_PIPE_FEATURE_NAME "\r\n", EARLY_PIPE_FEATURE_LEN+3);
4121 /* If any server authentication mechanisms are configured, advertise
4122 them if the current host is in auth_advertise_hosts. The problem with
4123 advertising always is that some clients then require users to
4124 authenticate (and aren't configurable otherwise) even though it may not
4125 be necessary (e.g. if the host is in host_accept_relay).
4127 RFC 2222 states that SASL mechanism names contain only upper case
4128 letters, so output the names in upper case, though we actually recognize
4129 them in either case in the AUTH command. */
4133 && !sender_host_authenticated
4135 && verify_check_host(&auth_advertise_hosts) == OK
4139 for (auth_instance * au = auths; au; au = au->next)
4141 au->advertised = FALSE;
4144 DEBUG(D_auth+D_expand) debug_printf_indent(
4145 "Evaluating advertise_condition for %s %s athenticator\n",
4146 au->name, au->public_name);
4147 if ( !au->advertise_condition
4148 || expand_check_condition(au->advertise_condition, au->name,
4155 g = string_catn(g, smtp_code, 3);
4156 g = string_catn(g, US"-AUTH", 5);
4158 fl.auth_advertised = TRUE;
4160 saveptr = gstring_length(g);
4161 g = string_catn(g, US" ", 1);
4162 g = string_cat(g, au->public_name);
4163 while (++saveptr < g->ptr) g->s[saveptr] = toupper(g->s[saveptr]);
4164 au->advertised = TRUE;
4169 if (!first) g = string_catn(g, US"\r\n", 2);
4172 /* RFC 3030 CHUNKING */
4174 if (verify_check_host(&chunking_advertise_hosts) != FAIL)
4176 g = string_catn(g, smtp_code, 3);
4177 g = string_catn(g, US"-CHUNKING\r\n", 11);
4178 f.chunking_offered = TRUE;
4179 chunking_state = CHUNKING_OFFERED;
4182 /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
4183 if it has been included in the binary, and the host matches
4184 tls_advertise_hosts. We must *not* advertise if we are already in a
4185 secure connection. */
4188 if (tls_in.active.sock < 0 &&
4189 verify_check_host(&tls_advertise_hosts) != FAIL)
4191 g = string_catn(g, smtp_code, 3);
4192 g = string_catn(g, US"-STARTTLS\r\n", 11);
4193 fl.tls_advertised = TRUE;
4196 #ifdef EXPERIMENTAL_XCLIENT
4197 if (proxy_session || verify_check_host(&hosts_xclient) != FAIL)
4199 g = string_catn(g, smtp_code, 3);
4200 g = xclient_smtp_advertise_str(g);
4203 #ifndef DISABLE_PRDR
4204 /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
4207 g = string_catn(g, smtp_code, 3);
4208 g = string_catn(g, US"-PRDR\r\n", 7);
4213 if ( accept_8bitmime
4214 && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
4216 g = string_catn(g, smtp_code, 3);
4217 g = string_catn(g, US"-SMTPUTF8\r\n", 11);
4218 fl.smtputf8_advertised = TRUE;
4222 /* Finish off the multiline reply with one that is always available. */
4224 g = string_catn(g, smtp_code, 3);
4225 g = string_catn(g, US" HELP\r\n", 7);
4228 /* Terminate the string (for debug), write it, and note that HELO/EHLO
4233 int len = len_string_from_gstring(g, &ehlo_resp);
4235 if (tls_in.active.sock >= 0)
4236 (void) tls_write(NULL, ehlo_resp, len,
4237 # ifndef DISABLE_PIPE_CONNECT
4238 fl.pipe_connect_acceptable && pipeline_connect_sends());
4244 (void) fwrite(ehlo_resp, 1, len, smtp_out);
4246 DEBUG(D_receive) for (const uschar * t, * s = ehlo_resp;
4247 s && (t = Ustrchr(s, '\r'));
4248 s = t + 2) /* \r\n */
4249 debug_printf("%s %.*s\n",
4250 s == g->s ? "SMTP>>" : " ",
4252 fl.helo_seen = TRUE;
4255 /* Reset the protocol and the state, abandoning any previous message. */
4257 (sender_host_address ? protocols : protocols_local)
4259 ? pextend + (sender_host_authenticated ? pauthed : 0)
4261 + (tls_in.active.sock >= 0 ? pcrpted : 0)
4263 cancel_cutthrough_connection(TRUE, US"sent EHLO response");
4264 reset_point = smtp_reset(reset_point);
4266 break; /* HELO/EHLO */
4268 #ifdef EXPERIMENTAL_XCLIENT
4271 BOOL fatal = fl.helo_seen;
4276 smtp_mailcmd_count++;
4278 if ((errmsg = xclient_smtp_command(smtp_cmd_data, &resp, &fatal)))
4280 done = synprot_error(L_smtp_syntax_error, resp, NULL, errmsg);
4283 smtp_printf("%d %s\r\n", FALSE, resp, errmsg);
4284 log_write(0, LOG_MAIN|LOG_REJECT, "rejected XCLIENT from %s: %s",
4285 host_and_ident(FALSE), errmsg);
4289 fl.helo_seen = FALSE; /* Require another EHLO */
4290 smtp_code = string_sprintf("%d", resp);
4292 /*XXX unclear in spec. if this needs to be an ESMTP banner,
4293 nor whether we get the original client's HELO after (or a proxy fake).
4294 We require that we do; the following HELO/EHLO handling will set
4295 sender_helo_name as normal. */
4297 smtp_printf("%s XCLIENT success\r\n", FALSE, smtp_code);
4299 break; /* XCLIENT */
4304 /* The MAIL command requires an address as an operand. All we do
4305 here is to parse it for syntactic correctness. The form "<>" is
4306 a special case which converts into an empty string. The start/end
4307 pointers in the original are not used further for this address, as
4308 it is the canonical extracted address which is all that is kept. */
4312 smtp_mailcmd_count++; /* Count for limit and ratelimit */
4314 was_rej_mail = TRUE; /* Reset if accepted */
4315 env_mail_type_t * mail_args; /* Sanity check & validate args */
4318 if ( fl.helo_verify_required
4319 || verify_check_host(&hosts_require_helo) == OK)
4321 smtp_printf("503 HELO or EHLO required\r\n", FALSE);
4322 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
4323 "HELO/EHLO given", host_and_ident(FALSE));
4326 else if (smtp_mailcmd_max < 0)
4327 smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4331 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4332 US"sender already given");
4336 if (!*smtp_cmd_data)
4338 done = synprot_error(L_smtp_protocol_error, 501, NULL,
4339 US"MAIL must have an address operand");
4343 /* Check to see if the limit for messages per connection would be
4344 exceeded by accepting further messages. */
4346 if (smtp_mailcmd_max > 0 && smtp_mailcmd_count > smtp_mailcmd_max)
4348 smtp_printf("421 too many messages in this connection\r\n", FALSE);
4349 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
4350 "messages in one connection", host_and_ident(TRUE));
4354 /* Reset for start of message - even if this is going to fail, we
4355 obviously need to throw away any previous data. */
4357 cancel_cutthrough_connection(TRUE, US"MAIL received");
4358 reset_point = smtp_reset(reset_point);
4360 sender_data = recipient_data = NULL;
4362 /* Loop, checking for ESMTP additions to the MAIL FROM command. */
4364 if (fl.esmtp) for(;;)
4366 uschar *name, *value, *end;
4367 unsigned long int size;
4368 BOOL arg_error = FALSE;
4370 if (!extract_option(&name, &value)) break;
4372 for (mail_args = env_mail_type_list;
4373 mail_args->value != ENV_MAIL_OPT_NULL;
4376 if (strcmpic(name, mail_args->name) == 0)
4378 if (mail_args->need_value && strcmpic(value, US"") == 0)
4381 switch(mail_args->value)
4383 /* Handle SIZE= by reading the value. We don't do the check till later,
4384 in order to be able to log the sender address on failure. */
4385 case ENV_MAIL_OPT_SIZE:
4386 if (((size = Ustrtoul(value, &end, 10)), *end == 0))
4388 if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
4390 message_size = (int)size;
4396 /* If this session was initiated with EHLO and accept_8bitmime is set,
4397 Exim will have indicated that it supports the BODY=8BITMIME option. In
4398 fact, it does not support this according to the RFCs, in that it does not
4399 take any special action for forwarding messages containing 8-bit
4400 characters. That is why accept_8bitmime is not the default setting, but
4401 some sites want the action that is provided. We recognize both "8BITMIME"
4402 and "7BIT" as body types, but take no action. */
4403 case ENV_MAIL_OPT_BODY:
4404 if (accept_8bitmime) {
4405 if (strcmpic(value, US"8BITMIME") == 0)
4407 else if (strcmpic(value, US"7BIT") == 0)
4412 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4413 US"invalid data for BODY");
4416 DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
4422 /* Handle the two DSN options, but only if configured to do so (which
4423 will have caused "DSN" to be given in the EHLO response). The code itself
4424 is included only if configured in at build time. */
4426 case ENV_MAIL_OPT_RET:
4427 if (fl.dsn_advertised)
4429 /* Check if RET has already been set */
4432 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4433 US"RET can be specified once only");
4436 dsn_ret = strcmpic(value, US"HDRS") == 0
4438 : strcmpic(value, US"FULL") == 0
4441 DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
4442 /* Check for invalid invalid value, and exit with error */
4445 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4446 US"Value for RET is invalid");
4451 case ENV_MAIL_OPT_ENVID:
4452 if (fl.dsn_advertised)
4454 /* Check if the dsn envid has been already set */
4457 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4458 US"ENVID can be specified once only");
4461 dsn_envid = string_copy(value);
4462 DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
4466 /* Handle the AUTH extension. If the value given is not "<>" and either
4467 the ACL says "yes" or there is no ACL but the sending host is
4468 authenticated, we set it up as the authenticated sender. However, if the
4469 authenticator set a condition to be tested, we ignore AUTH on MAIL unless
4470 the condition is met. The value of AUTH is an xtext, which means that +,
4471 = and cntrl chars are coded in hex; however "<>" is unaffected by this
4473 case ENV_MAIL_OPT_AUTH:
4474 if (Ustrcmp(value, "<>") != 0)
4479 if (auth_xtextdecode(value, &authenticated_sender) < 0)
4481 /* Put back terminator overrides for error message */
4484 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4485 US"invalid data for AUTH");
4488 if (!acl_smtp_mailauth)
4490 ignore_msg = US"client not authenticated";
4491 rc = sender_host_authenticated ? OK : FAIL;
4495 ignore_msg = US"rejected by ACL";
4496 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
4497 &user_msg, &log_msg);
4503 if (authenticated_by == NULL ||
4504 authenticated_by->mail_auth_condition == NULL ||
4505 expand_check_condition(authenticated_by->mail_auth_condition,
4506 authenticated_by->name, US"authenticator"))
4507 break; /* Accept the AUTH */
4509 ignore_msg = US"server_mail_auth_condition failed";
4510 if (authenticated_id != NULL)
4511 ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
4512 ignore_msg, authenticated_id);
4517 authenticated_sender = NULL;
4518 log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
4519 value, host_and_ident(TRUE), ignore_msg);
4522 /* Should only get DEFER or ERROR here. Put back terminator
4523 overrides for error message */
4528 (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
4535 #ifndef DISABLE_PRDR
4536 case ENV_MAIL_OPT_PRDR:
4538 prdr_requested = TRUE;
4543 case ENV_MAIL_OPT_UTF8:
4544 if (!fl.smtputf8_advertised)
4546 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4547 US"SMTPUTF8 used when not advertised");
4551 DEBUG(D_receive) debug_printf("smtputf8 requested\n");
4552 message_smtputf8 = allow_utf8_domains = TRUE;
4553 if (Ustrncmp(received_protocol, US"utf8", 4) != 0)
4555 int old_pool = store_pool;
4556 store_pool = POOL_PERM;
4557 received_protocol = string_sprintf("utf8%s", received_protocol);
4558 store_pool = old_pool;
4563 /* No valid option. Stick back the terminator characters and break
4564 the loop. Do the name-terminator second as extract_option sets
4565 value==name when it found no equal-sign.
4566 An error for a malformed address will occur. */
4567 case ENV_MAIL_OPT_NULL:
4575 /* Break out of for loop if switch() had bad argument or
4576 when start of the email address is reached */
4577 if (arg_error) break;
4580 /* If we have passed the threshold for rate limiting, apply the current
4581 delay, and update it for next time, provided this is a limited host. */
4583 if (smtp_mailcmd_count > smtp_rlm_threshold &&
4584 verify_check_host(&smtp_ratelimit_hosts) == OK)
4586 DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
4587 smtp_delay_mail/1000.0);
4588 millisleep((int)smtp_delay_mail);
4589 smtp_delay_mail *= smtp_rlm_factor;
4590 if (smtp_delay_mail > (double)smtp_rlm_limit)
4591 smtp_delay_mail = (double)smtp_rlm_limit;
4594 /* Now extract the address, first applying any SMTP-time rewriting. The
4595 TRUE flag allows "<>" as a sender address. */
4597 raw_sender = rewrite_existflags & rewrite_smtp
4598 /* deconst ok as smtp_cmd_data was not const */
4599 ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4600 global_rewrite_rules)
4604 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
4609 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
4613 sender_address = raw_sender;
4615 /* If there is a configured size limit for mail, check that this message
4616 doesn't exceed it. The check is postponed to this point so that the sender
4619 if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
4621 smtp_printf("552 Message size exceeds maximum permitted\r\n", FALSE);
4622 log_write(L_size_reject,
4623 LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
4624 "message too big: size%s=%d max=%d",
4626 host_and_ident(TRUE),
4627 (message_size == INT_MAX)? ">" : "",
4629 thismessage_size_limit);
4630 sender_address = NULL;
4634 /* Check there is enough space on the disk unless configured not to.
4635 When smtp_check_spool_space is set, the check is for thismessage_size_limit
4636 plus the current message - i.e. we accept the message only if it won't
4637 reduce the space below the threshold. Add 5000 to the size to allow for
4638 overheads such as the Received: line and storing of recipients, etc.
4639 By putting the check here, even when SIZE is not given, it allow VRFY
4640 and EXPN etc. to be used when space is short. */
4642 if (!receive_check_fs(
4643 smtp_check_spool_space && message_size >= 0
4644 ? message_size + 5000 : 0))
4646 smtp_printf("452 Space shortage, please try later\r\n", FALSE);
4647 sender_address = NULL;
4651 /* If sender_address is unqualified, reject it, unless this is a locally
4652 generated message, or the sending host or net is permitted to send
4653 unqualified addresses - typically local machines behaving as MUAs -
4654 in which case just qualify the address. The flag is set above at the start
4655 of the SMTP connection. */
4657 if (!sender_domain && *sender_address)
4658 if (f.allow_unqualified_sender)
4660 sender_domain = Ustrlen(sender_address) + 1;
4661 /* deconst ok as sender_address was not const */
4662 sender_address = US rewrite_address_qualify(sender_address, FALSE);
4663 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
4668 smtp_printf("501 %s: sender address must contain a domain\r\n", FALSE,
4670 log_write(L_smtp_syntax_error,
4671 LOG_MAIN|LOG_REJECT,
4672 "unqualified sender rejected: <%s> %s%s",
4674 host_and_ident(TRUE),
4676 sender_address = NULL;
4680 /* Apply an ACL check if one is defined, before responding. Afterwards,
4681 when pipelining is not advertised, do another sync check in case the ACL
4682 delayed and the client started sending in the meantime. */
4686 rc = acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
4687 if (rc == OK && !f.smtp_in_pipelining_advertised && !check_sync())
4693 if (rc == OK || rc == DISCARD)
4695 BOOL more = pipeline_response();
4698 smtp_printf("%s%s%s", more, US"250 OK",
4699 #ifndef DISABLE_PRDR
4700 prdr_requested ? US", PRDR Requested" : US"",
4707 #ifndef DISABLE_PRDR
4709 user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
4711 smtp_user_msg(US"250", user_msg);
4713 smtp_delay_rcpt = smtp_rlr_base;
4714 f.recipients_discarded = (rc == DISCARD);
4715 was_rej_mail = FALSE;
4719 done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
4720 sender_address = NULL;
4725 /* The RCPT command requires an address as an operand. There may be any
4726 number of RCPT commands, specifying multiple recipients. We build them all
4727 into a data structure. The start/end values given by parse_extract_address
4728 are not used, as we keep only the extracted address. */
4732 /* We got really to many recipients. A check against configured
4733 limits is done later */
4734 if (rcpt_count < 0 || rcpt_count >= INT_MAX/2)
4735 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Too many recipients: %d", rcpt_count);
4737 was_rcpt = fl.rcpt_in_progress = TRUE;
4739 /* There must be a sender address; if the sender was rejected and
4740 pipelining was advertised, we assume the client was pipelining, and do not
4741 count this as a protocol error. Reset was_rej_mail so that further RCPTs
4742 get the same treatment. */
4744 if (!sender_address)
4746 if (f.smtp_in_pipelining_advertised && last_was_rej_mail)
4748 smtp_printf("503 sender not yet given\r\n", FALSE);
4749 was_rej_mail = TRUE;
4753 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4754 US"sender not yet given");
4755 was_rcpt = FALSE; /* Not a valid RCPT */
4761 /* Check for an operand */
4763 if (!smtp_cmd_data[0])
4765 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4766 US"RCPT must have an address operand");
4771 /* Set the DSN flags orcpt and dsn_flags from the session*/
4775 if (fl.esmtp) for(;;)
4777 uschar *name, *value;
4779 if (!extract_option(&name, &value))
4782 if (fl.dsn_advertised && strcmpic(name, US"ORCPT") == 0)
4784 /* Check whether orcpt has been already set */
4787 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4788 US"ORCPT can be specified once only");
4791 orcpt = string_copy(value);
4792 DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
4795 else if (fl.dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
4797 /* Check if the notify flags have been already set */
4800 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4801 US"NOTIFY can be specified once only");
4804 if (strcmpic(value, US"NEVER") == 0)
4805 dsn_flags |= rf_notify_never;
4812 while (*pp != 0 && *pp != ',') pp++;
4813 if (*pp == ',') *pp++ = 0;
4814 if (strcmpic(p, US"SUCCESS") == 0)
4816 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
4817 dsn_flags |= rf_notify_success;
4819 else if (strcmpic(p, US"FAILURE") == 0)
4821 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
4822 dsn_flags |= rf_notify_failure;
4824 else if (strcmpic(p, US"DELAY") == 0)
4826 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
4827 dsn_flags |= rf_notify_delay;
4831 /* Catch any strange values */
4832 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4833 US"Invalid value for NOTIFY parameter");
4838 DEBUG(D_receive) debug_printf("DSN Flags: %x\n", dsn_flags);
4842 /* Unknown option. Stick back the terminator characters and break
4843 the loop. An error for a malformed address will occur. */
4847 DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
4854 /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
4855 as a recipient address */
4857 recipient = rewrite_existflags & rewrite_smtp
4858 /* deconst ok as smtp_cmd_data was not const */
4859 ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4860 global_rewrite_rules)
4863 if (!(recipient = parse_extract_address(recipient, &errmess, &start, &end,
4864 &recipient_domain, FALSE)))
4866 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
4871 /* If the recipient address is unqualified, reject it, unless this is a
4872 locally generated message. However, unqualified addresses are permitted
4873 from a configured list of hosts and nets - typically when behaving as
4874 MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
4875 really. The flag is set at the start of the SMTP connection.
4877 RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
4878 assumed this meant "reserved local part", but the revision of RFC 821 and
4879 friends now makes it absolutely clear that it means *mailbox*. Consequently
4880 we must always qualify this address, regardless. */
4882 if (!recipient_domain)
4883 if (!(recipient_domain = qualify_recipient(&recipient, smtp_cmd_data,
4890 /* Check maximum allowed */
4892 if (rcpt_count+1 < 0 || rcpt_count > recipients_max && recipients_max > 0)
4894 if (recipients_max_reject)
4897 smtp_printf("552 too many recipients\r\n", FALSE);
4899 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
4900 "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
4905 smtp_printf("452 too many recipients\r\n", FALSE);
4907 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
4908 "temporarily rejected: sender=<%s> %s", sender_address,
4909 host_and_ident(TRUE));
4916 /* If we have passed the threshold for rate limiting, apply the current
4917 delay, and update it for next time, provided this is a limited host. */
4919 if (rcpt_count > smtp_rlr_threshold &&
4920 verify_check_host(&smtp_ratelimit_hosts) == OK)
4922 DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
4923 smtp_delay_rcpt/1000.0);
4924 millisleep((int)smtp_delay_rcpt);
4925 smtp_delay_rcpt *= smtp_rlr_factor;
4926 if (smtp_delay_rcpt > (double)smtp_rlr_limit)
4927 smtp_delay_rcpt = (double)smtp_rlr_limit;
4930 /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
4931 for them. Otherwise, check the access control list for this recipient. As
4932 there may be a delay in this, re-check for a synchronization error
4933 afterwards, unless pipelining was advertised. */
4935 if (f.recipients_discarded)
4938 if ( (rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
4940 && !f.smtp_in_pipelining_advertised && !check_sync())
4943 /* The ACL was happy */
4947 BOOL more = pipeline_response();
4950 smtp_user_msg(US"250", user_msg);
4952 smtp_printf("250 Accepted\r\n", more);
4953 receive_add_recipient(recipient, -1);
4955 /* Set the dsn flags in the recipients_list */
4956 recipients_list[recipients_count-1].orcpt = orcpt;
4957 recipients_list[recipients_count-1].dsn_flags = dsn_flags;
4959 /* DEBUG(D_receive) debug_printf("DSN: orcpt: %s flags: %d\n",
4960 recipients_list[recipients_count-1].orcpt,
4961 recipients_list[recipients_count-1].dsn_flags); */
4964 /* The recipient was discarded */
4966 else if (rc == DISCARD)
4969 smtp_user_msg(US"250", user_msg);
4971 smtp_printf("250 Accepted\r\n", FALSE);
4974 log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> RCPT %s: "
4975 "discarded by %s ACL%s%s", host_and_ident(TRUE),
4976 sender_address_unrewritten ? sender_address_unrewritten : sender_address,
4977 smtp_cmd_argument, f.recipients_discarded ? "MAIL" : "RCPT",
4978 log_msg ? US": " : US"", log_msg ? log_msg : US"");
4981 /* Either the ACL failed the address, or it was deferred. */
4985 if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
4986 done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
4991 /* The DATA command is legal only if it follows successful MAIL FROM
4992 and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
4993 not counted as a protocol error if it follows RCPT (which must have been
4994 rejected if there are no recipients.) This function is complete when a
4995 valid DATA command is encountered.
4997 Note concerning the code used: RFC 2821 says this:
4999 - If there was no MAIL, or no RCPT, command, or all such commands
5000 were rejected, the server MAY return a "command out of sequence"
5001 (503) or "no valid recipients" (554) reply in response to the
5004 The example in the pipelining RFC 2920 uses 554, but I use 503 here
5005 because it is the same whether pipelining is in use or not.
5007 If all the RCPT commands that precede DATA provoked the same error message
5008 (often indicating some kind of system error), it is helpful to include it
5009 with the DATA rejection (an idea suggested by Tony Finch). */
5016 if (chunking_state != CHUNKING_OFFERED)
5018 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5019 US"BDAT command used when CHUNKING not advertised");
5023 /* grab size, endmarker */
5025 if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
5027 done = synprot_error(L_smtp_protocol_error, 501, NULL,
5028 US"missing size for BDAT command");
5031 chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
5032 ? CHUNKING_LAST : CHUNKING_ACTIVE;
5033 chunking_data_left = chunking_datasize;
5034 DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
5035 (int)chunking_state, chunking_data_left);
5037 f.bdat_readers_wanted = TRUE; /* FIXME: redundant vs chunking_state? */
5046 f.bdat_readers_wanted = FALSE;
5048 DATA_BDAT: /* Common code for DATA and BDAT */
5049 #ifndef DISABLE_PIPE_CONNECT
5050 fl.pipe_connect_acceptable = FALSE;
5052 if (!discarded && recipients_count <= 0)
5054 if (fl.rcpt_smtp_response_same && rcpt_smtp_response)
5056 uschar *code = US"503";
5057 int len = Ustrlen(rcpt_smtp_response);
5058 smtp_respond(code, 3, FALSE, US"All RCPT commands were rejected with "
5060 /* Responses from smtp_printf() will have \r\n on the end */
5061 if (len > 2 && rcpt_smtp_response[len-2] == '\r')
5062 rcpt_smtp_response[len-2] = 0;
5063 smtp_respond(code, 3, FALSE, rcpt_smtp_response);
5065 if (f.smtp_in_pipelining_advertised && last_was_rcpt)
5066 smtp_printf("503 Valid RCPT command must precede %s\r\n", FALSE,
5067 smtp_names[smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)]]);
5069 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5070 smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)] == SCH_DATA
5071 ? US"valid RCPT command must precede DATA"
5072 : US"valid RCPT command must precede BDAT");
5074 if (chunking_state > CHUNKING_OFFERED)
5076 bdat_push_receive_functions();
5082 if (toomany && recipients_max_reject)
5084 sender_address = NULL; /* This will allow a new MAIL without RSET */
5085 sender_address_unrewritten = NULL;
5086 smtp_printf("554 Too many recipients\r\n", FALSE);
5088 if (chunking_state > CHUNKING_OFFERED)
5090 bdat_push_receive_functions();
5096 if (chunking_state > CHUNKING_OFFERED)
5097 rc = OK; /* No predata ACL or go-ahead output for BDAT */
5100 /* If there is an ACL, re-check the synchronization afterwards, since the
5101 ACL may have delayed. To handle cutthrough delivery enforce a dummy call
5102 to get the DATA command sent. */
5104 if (!acl_smtp_predata && cutthrough.cctx.sock < 0)
5108 uschar * acl = acl_smtp_predata ? acl_smtp_predata : US"accept";
5109 f.enable_dollar_recipients = TRUE;
5110 rc = acl_check(ACL_WHERE_PREDATA, NULL, acl, &user_msg,
5112 f.enable_dollar_recipients = FALSE;
5113 if (rc == OK && !check_sync())
5117 { /* Either the ACL failed the address, or it was deferred. */
5118 done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
5124 smtp_user_msg(US"354", user_msg);
5127 "354 Enter message, ending with \".\" on a line by itself\r\n", FALSE);
5130 if (f.bdat_readers_wanted)
5131 bdat_push_receive_functions();
5134 if (smtp_in) /* all ACKs needed to ramp window up for bulk data */
5135 (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
5136 US &on, sizeof(on));
5139 message_ended = END_NOTENDED; /* Indicate in middle of data */
5150 if (!(address = parse_extract_address(smtp_cmd_data, &errmess,
5151 &start, &end, &recipient_domain, FALSE)))
5153 smtp_printf("501 %s\r\n", FALSE, errmess);
5157 if (!recipient_domain)
5158 if (!(recipient_domain = qualify_recipient(&address, smtp_cmd_data,
5162 if ((rc = acl_check(ACL_WHERE_VRFY, address, acl_smtp_vrfy,
5163 &user_msg, &log_msg)) != OK)
5164 done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
5168 address_item * addr = deliver_make_addr(address, FALSE);
5170 switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
5171 -1, -1, NULL, NULL, NULL))
5174 s = string_sprintf("250 <%s> is deliverable", address);
5178 s = (addr->user_message != NULL)?
5179 string_sprintf("451 <%s> %s", address, addr->user_message) :
5180 string_sprintf("451 Cannot resolve <%s> at this time", address);
5184 s = (addr->user_message != NULL)?
5185 string_sprintf("550 <%s> %s", address, addr->user_message) :
5186 string_sprintf("550 <%s> is not deliverable", address);
5187 log_write(0, LOG_MAIN, "VRFY failed for %s %s",
5188 smtp_cmd_argument, host_and_ident(TRUE));
5192 smtp_printf("%s\r\n", FALSE, s);
5200 rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
5202 done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
5205 BOOL save_log_testing_mode = f.log_testing_mode;
5206 f.address_test_mode = f.log_testing_mode = TRUE;
5207 (void) verify_address(deliver_make_addr(smtp_cmd_data, FALSE),
5208 smtp_out, vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1,
5210 f.address_test_mode = FALSE;
5211 f.log_testing_mode = save_log_testing_mode; /* true for -bh */
5220 if (!fl.tls_advertised)
5222 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5223 US"STARTTLS command used when not advertised");
5227 /* Apply an ACL check if one is defined */
5229 if ( acl_smtp_starttls
5230 && (rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls,
5231 &user_msg, &log_msg)) != OK
5234 done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
5238 /* RFC 2487 is not clear on when this command may be sent, though it
5239 does state that all information previously obtained from the client
5240 must be discarded if a TLS session is started. It seems reasonable to
5241 do an implied RSET when STARTTLS is received. */
5243 incomplete_transaction_log(US"STARTTLS");
5244 cancel_cutthrough_connection(TRUE, US"STARTTLS received");
5245 reset_point = smtp_reset(reset_point);
5247 cmd_list[CL_STLS].is_mail_cmd = FALSE;
5249 /* There's an attack where more data is read in past the STARTTLS command
5250 before TLS is negotiated, then assumed to be part of the secure session
5251 when used afterwards; we use segregated input buffers, so are not
5252 vulnerable, but we want to note when it happens and, for sheer paranoia,
5253 ensure that the buffer is "wiped".
5254 Pipelining sync checks will normally have protected us too, unless disabled
5255 by configuration. */
5260 debug_printf("Non-empty input buffer after STARTTLS; naive attack?\n");
5261 if (tls_in.active.sock < 0)
5262 smtp_inend = smtp_inptr = smtp_inbuffer;
5263 /* and if TLS is already active, tls_server_start() should fail */
5266 /* There is nothing we value in the input buffer and if TLS is successfully
5267 negotiated, we won't use this buffer again; if TLS fails, we'll just read
5268 fresh content into it. The buffer contains arbitrary content from an
5269 untrusted remote source; eg: NOOP <shellcode>\r\nSTARTTLS\r\n
5270 It seems safest to just wipe away the content rather than leave it as a
5271 target to jump to. */
5273 memset(smtp_inbuffer, 0, IN_BUFFER_SIZE);
5275 /* Attempt to start up a TLS session, and if successful, discard all
5276 knowledge that was obtained previously. At least, that's what the RFC says,
5277 and that's what happens by default. However, in order to work round YAEB,
5278 there is an option to remember the esmtp state. Sigh.
5280 We must allow for an extra EHLO command and an extra AUTH command after
5281 STARTTLS that don't add to the nonmail command count. */
5284 if ((rc = tls_server_start(&s)) == OK)
5286 if (!tls_remember_esmtp)
5287 fl.helo_seen = fl.esmtp = fl.auth_advertised = f.smtp_in_pipelining_advertised = FALSE;
5288 cmd_list[CL_EHLO].is_mail_cmd = TRUE;
5289 cmd_list[CL_AUTH].is_mail_cmd = TRUE;
5290 cmd_list[CL_TLAU].is_mail_cmd = TRUE;
5291 if (sender_helo_name)
5293 sender_helo_name = NULL;
5294 host_build_sender_fullhost(); /* Rebuild */
5295 set_process_info("handling incoming TLS connection from %s",
5296 host_and_ident(FALSE));
5299 (sender_host_address ? protocols : protocols_local)
5301 ? pextend + (sender_host_authenticated ? pauthed : 0)
5303 + (tls_in.active.sock >= 0 ? pcrpted : 0)
5306 sender_host_auth_pubname = sender_host_authenticated = NULL;
5307 authenticated_id = NULL;
5308 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
5309 DEBUG(D_tls) debug_printf("TLS active\n");
5310 break; /* Successful STARTTLS */
5313 (void) smtp_log_tls_fail(s);
5315 /* Some local configuration problem was discovered before actually trying
5316 to do a TLS handshake; give a temporary error. */
5320 smtp_printf("454 TLS currently unavailable\r\n", FALSE);
5324 /* Hard failure. Reject everything except QUIT or closed connection. One
5325 cause for failure is a nested STARTTLS, in which case tls_in.active remains
5326 set, but we must still reject all incoming commands. Another is a handshake
5327 failure - and there may some encrypted data still in the pipe to us, which we
5328 see as garbage commands. */
5330 DEBUG(D_tls) debug_printf("TLS failed to start\n");
5331 while (done <= 0) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
5334 log_close_event(US"by EOF");
5335 smtp_notquit_exit(US"tls-failed", NULL, NULL);
5339 /* It is perhaps arguable as to which exit ACL should be called here,
5340 but as it is probably a situation that almost never arises, it
5341 probably doesn't matter. We choose to call the real QUIT ACL, which in
5342 some sense is perhaps "right". */
5345 f.smtp_in_quit = TRUE;
5348 && ((rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg,
5349 &log_msg)) == ERROR))
5350 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
5353 smtp_respond(US"221", 3, TRUE, user_msg);
5355 smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
5356 log_close_event(US"by QUIT");
5361 smtp_printf("554 Security failure\r\n", FALSE);
5364 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
5369 /* The ACL for QUIT is provided for gathering statistical information or
5370 similar; it does not affect the response code, but it can supply a custom
5374 smtp_quit_handler(&user_msg, &log_msg);
5380 smtp_rset_handler();
5381 cancel_cutthrough_connection(TRUE, US"RSET received");
5382 reset_point = smtp_reset(reset_point);
5389 smtp_printf("250 OK\r\n", FALSE);
5393 /* Show ETRN/EXPN/VRFY if there's an ACL for checking hosts; if actually
5394 used, a check will be done for permitted hosts. Show STARTTLS only if not
5395 already in a TLS session and if it would be advertised in the EHLO
5400 smtp_printf("214-Commands supported:\r\n214", TRUE);
5401 smtp_printf(" AUTH", TRUE);
5403 if (tls_in.active.sock < 0 &&
5404 verify_check_host(&tls_advertise_hosts) != FAIL)
5405 smtp_printf(" STARTTLS", TRUE);
5407 smtp_printf(" HELO EHLO MAIL RCPT DATA BDAT", TRUE);
5408 smtp_printf(" NOOP QUIT RSET HELP", TRUE);
5409 if (acl_smtp_etrn) smtp_printf(" ETRN", TRUE);
5410 if (acl_smtp_expn) smtp_printf(" EXPN", TRUE);
5411 if (acl_smtp_vrfy) smtp_printf(" VRFY", TRUE);
5412 #ifdef EXPERIMENTAL_XCLIENT
5413 if (proxy_session || verify_check_host(&hosts_xclient) != FAIL)
5414 smtp_printf(" XCLIENT", TRUE);
5416 smtp_printf("\r\n", FALSE);
5421 incomplete_transaction_log(US"connection lost");
5422 smtp_notquit_exit(US"connection-lost", US"421",
5423 US"%s lost input connection", smtp_active_hostname);
5425 /* Don't log by default unless in the middle of a message, as some mailers
5426 just drop the call rather than sending QUIT, and it clutters up the logs.
5429 if (sender_address || recipients_count > 0)
5430 log_write(L_lost_incoming_connection, LOG_MAIN,
5431 "unexpected %s while reading SMTP command from %s%s%s D=%s",
5432 f.sender_host_unknown ? "EOF" : "disconnection",
5433 f.tcp_in_fastopen_logged
5436 ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO "
5438 host_and_ident(FALSE), smtp_read_error,
5439 string_timesince(&smtp_connection_start)
5443 log_write(L_smtp_connection, LOG_MAIN, "%s %slost%s D=%s",
5444 smtp_get_connection_info(),
5445 f.tcp_in_fastopen && !f.tcp_in_fastopen_logged ? US"TFO " : US"",
5447 string_timesince(&smtp_connection_start)
5458 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5459 US"ETRN is not permitted inside a transaction");
5463 log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
5464 host_and_ident(FALSE));
5466 if ((rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn,
5467 &user_msg, &log_msg)) != OK)
5469 done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
5473 /* Compute the serialization key for this command. */
5475 etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
5477 /* If a command has been specified for running as a result of ETRN, we
5478 permit any argument to ETRN. If not, only the # standard form is permitted,
5479 since that is strictly the only kind of ETRN that can be implemented
5480 according to the RFC. */
5482 if (smtp_etrn_command)
5486 etrn_command = smtp_etrn_command;
5487 deliver_domain = smtp_cmd_data;
5488 rc = transport_set_up_command(&argv, smtp_etrn_command, TSUC_EXPAND_ARGS, 0, NULL,
5489 US"ETRN processing", &error);
5490 deliver_domain = NULL;
5493 log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
5495 smtp_printf("458 Internal failure\r\n", FALSE);
5500 /* Else set up to call Exim with the -R option. */
5504 if (*smtp_cmd_data++ != '#')
5506 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5507 US"argument must begin with #");
5510 etrn_command = US"exim -R";
5511 argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE,
5512 *queue_name ? 4 : 2,
5513 US"-R", smtp_cmd_data,
5514 US"-MCG", queue_name);
5517 /* If we are host-testing, don't actually do anything. */
5523 debug_printf("ETRN command is: %s\n", etrn_command);
5524 debug_printf("ETRN command execution skipped\n");
5526 if (user_msg == NULL) smtp_printf("250 OK\r\n", FALSE);
5527 else smtp_user_msg(US"250", user_msg);
5532 /* If ETRN queue runs are to be serialized, check the database to
5533 ensure one isn't already running. */
5535 if (smtp_etrn_serialize && !enq_start(etrn_serialize_key, 1))
5537 smtp_printf("458 Already processing %s\r\n", FALSE, smtp_cmd_data);
5541 /* Fork a child process and run the command. We don't want to have to
5542 wait for the process at any point, so set SIGCHLD to SIG_IGN before
5543 forking. It should be set that way anyway for external incoming SMTP,
5544 but we save and restore to be tidy. If serialization is required, we
5545 actually run the command in yet another process, so we can wait for it
5546 to complete and then remove the serialization lock. */
5548 oldsignal = signal(SIGCHLD, SIG_IGN);
5550 if ((pid = exim_fork(US"etrn-command")) == 0)
5552 smtp_input = FALSE; /* This process is not associated with the */
5553 (void)fclose(smtp_in); /* SMTP call any more. */
5554 (void)fclose(smtp_out);
5556 signal(SIGCHLD, SIG_DFL); /* Want to catch child */
5558 /* If not serializing, do the exec right away. Otherwise, fork down
5559 into another process. */
5561 if ( !smtp_etrn_serialize
5562 || (pid = exim_fork(US"etrn-serialised-command")) == 0)
5564 DEBUG(D_exec) debug_print_argv(argv);
5565 exim_nullstd(); /* Ensure std{in,out,err} exist */
5566 /* argv[0] should be untainted, from child_exec_exim() */
5567 execv(CS argv[0], (char *const *)argv);
5568 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
5569 etrn_command, strerror(errno));
5570 _exit(EXIT_FAILURE); /* paranoia */
5573 /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
5574 is, we are in the first subprocess, after forking again. All we can do
5575 for a failing fork is to log it. Otherwise, wait for the 2nd process to
5576 complete, before removing the serialization. */
5579 log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
5580 "failed: %s", strerror(errno));
5584 DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
5586 (void)wait(&status);
5587 DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
5591 enq_end(etrn_serialize_key);
5592 exim_underbar_exit(EXIT_SUCCESS);
5595 /* Back in the top level SMTP process. Check that we started a subprocess
5596 and restore the signal state. */
5600 log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
5602 smtp_printf("458 Unable to fork process\r\n", FALSE);
5603 if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
5607 smtp_printf("250 OK\r\n", FALSE);
5609 smtp_user_msg(US"250", user_msg);
5611 signal(SIGCHLD, oldsignal);
5616 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5617 US"unexpected argument data");
5621 /* This currently happens only for NULLs, but could be extended. */
5624 done = synprot_error(L_smtp_syntax_error, 0, NULL, /* Just logs */
5625 US"NUL character(s) present (shown as '?')");
5626 smtp_printf("501 NUL characters are not allowed in SMTP commands\r\n",
5634 unsigned nchars = 150;
5635 uschar * buf = receive_getbuf(&nchars); /* destructive read */
5637 incomplete_transaction_log(US"sync failure");
5638 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
5639 "(next input sent too soon: pipelining was%s advertised): "
5640 "rejected \"%s\" %s next input=\"%s\" (%u bytes)",
5641 f.smtp_in_pipelining_advertised ? "" : " not",
5642 smtp_cmd_buffer, host_and_ident(TRUE),
5643 string_printing(buf), nchars);
5644 smtp_notquit_exit(US"synchronization-error", US"554",
5645 US"SMTP synchronization error");
5646 done = 1; /* Pretend eof - drops connection */
5651 case TOO_MANY_NONMAIL_CMD:
5652 s = smtp_cmd_buffer;
5653 while (*s && !isspace(*s)) s++;
5654 incomplete_transaction_log(US"too many non-mail commands");
5655 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
5656 "nonmail commands (last was \"%.*s\")", host_and_ident(FALSE),
5657 (int)(s - smtp_cmd_buffer), smtp_cmd_buffer);
5658 smtp_notquit_exit(US"bad-commands", US"554", US"Too many nonmail commands");
5659 done = 1; /* Pretend eof - drops connection */
5662 #ifdef SUPPORT_PROXY
5663 case PROXY_FAIL_IGNORE_CMD:
5664 smtp_printf("503 Command refused, required Proxy negotiation failed\r\n", FALSE);
5669 if (unknown_command_count++ >= smtp_max_unknown_commands)
5671 log_write(L_smtp_syntax_error, LOG_MAIN,
5672 "SMTP syntax error in \"%s\" %s %s",
5673 string_printing(smtp_cmd_buffer), host_and_ident(TRUE),
5674 US"unrecognized command");
5675 incomplete_transaction_log(US"unrecognized command");
5676 smtp_notquit_exit(US"bad-commands", US"500",
5677 US"Too many unrecognized commands");
5679 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
5680 "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
5681 string_printing(smtp_cmd_buffer));
5684 done = synprot_error(L_smtp_syntax_error, 500, NULL,
5685 US"unrecognized command");
5689 /* This label is used by goto's inside loops that want to break out to
5690 the end of the command-processing loop. */
5693 last_was_rej_mail = was_rej_mail; /* Remember some last commands for */
5694 last_was_rcpt = was_rcpt; /* protocol error handling */
5697 return done - 2; /* Convert yield values */
5703 authres_smtpauth(gstring * g)
5705 if (!sender_host_authenticated)
5708 g = string_append(g, 2, US";\n\tauth=pass (", sender_host_auth_pubname);
5710 if (Ustrcmp(sender_host_auth_pubname, "tls") == 0)
5711 g = authenticated_id
5712 ? string_append(g, 2, US") x509.auth=", authenticated_id)
5713 : string_cat(g, US") reason=x509.auth");
5715 g = authenticated_id
5716 ? string_append(g, 2, US") smtp.auth=", authenticated_id)
5717 : string_cat(g, US", no id saved)");
5719 if (authenticated_sender)
5720 g = string_append(g, 2, US" smtp.mailfrom=", authenticated_sender);
5728 /* End of smtp_in.c */