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 */
79 /* This is a dummy to identify the non-sync commands when pipelining */
81 NON_SYNC_CMD_PIPELINING,
83 /* These commands need not be synchronized when pipelining */
85 MAIL_CMD, RCPT_CMD, RSET_CMD,
87 /* This is a dummy to identify the non-sync commands when not pipelining */
89 NON_SYNC_CMD_NON_PIPELINING,
91 /* RFC3030 section 2: "After all MAIL and RCPT responses are collected and
92 processed the message is sent using a series of BDAT commands"
93 implies that BDAT should be synchronized. However, we see Google, at least,
94 sending MAIL,RCPT,BDAT-LAST in a single packet, clearly not waiting for
95 processing of the RCPT response(s). We shall do the same, and not require
96 synch for BDAT. Worse, as the chunk may (very likely will) follow the
97 command-header in the same packet we cannot do the usual "is there any
98 follow-on data after the command line" even for non-pipeline mode.
99 So we'll need an explicit check after reading the expected chunk amount
100 when non-pipe, before sending the ACK. */
104 /* I have been unable to find a statement about the use of pipelining
105 with AUTH, so to be on the safe side it is here, though I kind of feel
106 it should be up there with the synchronized commands. */
110 /* I'm not sure about these, but I don't think they matter. */
115 PROXY_FAIL_IGNORE_CMD,
118 /* These are specials that don't correspond to actual commands */
120 EOF_CMD, OTHER_CMD, BADARG_CMD, BADCHAR_CMD, BADSYN_CMD,
121 TOO_MANY_NONMAIL_CMD };
124 /* This is a convenience macro for adding the identity of an SMTP command
125 to the circular buffer that holds a list of the last n received. */
128 smtp_connection_had[smtp_ch_index++] = n; \
129 if (smtp_ch_index >= SMTP_HBUFF_SIZE) smtp_ch_index = 0
132 /*************************************************
133 * Local static variables *
134 *************************************************/
137 BOOL auth_advertised :1;
139 BOOL tls_advertised :1;
141 BOOL dsn_advertised :1;
143 BOOL helo_verify_required :1;
146 BOOL helo_accept_junk :1;
147 #ifndef DISABLE_PIPE_CONNECT
148 BOOL pipe_connect_acceptable :1;
150 BOOL rcpt_smtp_response_same :1;
151 BOOL rcpt_in_progress :1;
152 BOOL smtp_exit_function_called :1;
154 BOOL smtputf8_advertised :1;
157 .helo_verify_required = FALSE,
158 .helo_verify = FALSE,
159 .smtp_exit_function_called = FALSE,
162 static auth_instance *authenticated_by;
163 static int count_nonmail;
164 static int nonmail_command_count;
165 static int synprot_error_count;
166 static int unknown_command_count;
167 static int sync_cmd_limit;
168 static int smtp_write_error = 0;
170 static uschar *rcpt_smtp_response;
171 static uschar *smtp_data_buffer;
172 static uschar *smtp_cmd_data;
174 /* We need to know the position of RSET, HELO, EHLO, AUTH, and STARTTLS. Their
175 final fields of all except AUTH are forced TRUE at the start of a new message
176 setup, to allow one of each between messages that is not counted as a nonmail
177 command. (In fact, only one of HELO/EHLO is not counted.) Also, we have to
178 allow a new EHLO after starting up TLS.
180 AUTH is "falsely" labelled as a mail command initially, so that it doesn't get
181 counted. However, the flag is changed when AUTH is received, so that multiple
182 failing AUTHs will eventually hit the limit. After a successful AUTH, another
183 AUTH is already forbidden. After a TLS session is started, AUTH's flag is again
184 forced TRUE, to allow for the re-authentication that can happen at that point.
186 QUIT is also "falsely" labelled as a mail command so that it doesn't up the
187 count of non-mail commands and possibly provoke an error.
189 tls_auth is a pseudo-command, never expected in input. It is activated
190 on TLS startup and looks for a tls authenticator. */
192 static smtp_cmd_list cmd_list[] = {
193 /* name len cmd has_arg is_mail_cmd */
195 { "rset", sizeof("rset")-1, RSET_CMD, FALSE, FALSE }, /* First */
196 { "helo", sizeof("helo")-1, HELO_CMD, TRUE, FALSE },
197 { "ehlo", sizeof("ehlo")-1, EHLO_CMD, TRUE, FALSE },
198 { "auth", sizeof("auth")-1, AUTH_CMD, TRUE, TRUE },
200 { "starttls", sizeof("starttls")-1, STARTTLS_CMD, FALSE, FALSE },
201 { "tls_auth", 0, TLS_AUTH_CMD, FALSE, FALSE },
204 /* If you change anything above here, also fix the definitions below. */
206 { "mail from:", sizeof("mail from:")-1, MAIL_CMD, TRUE, TRUE },
207 { "rcpt to:", sizeof("rcpt to:")-1, RCPT_CMD, TRUE, TRUE },
208 { "data", sizeof("data")-1, DATA_CMD, FALSE, TRUE },
209 { "bdat", sizeof("bdat")-1, BDAT_CMD, TRUE, TRUE },
210 { "quit", sizeof("quit")-1, QUIT_CMD, FALSE, TRUE },
211 { "noop", sizeof("noop")-1, NOOP_CMD, TRUE, FALSE },
212 { "etrn", sizeof("etrn")-1, ETRN_CMD, TRUE, FALSE },
213 { "vrfy", sizeof("vrfy")-1, VRFY_CMD, TRUE, FALSE },
214 { "expn", sizeof("expn")-1, EXPN_CMD, TRUE, FALSE },
215 { "help", sizeof("help")-1, HELP_CMD, TRUE, FALSE }
218 static smtp_cmd_list *cmd_list_end =
219 cmd_list + sizeof(cmd_list)/sizeof(smtp_cmd_list);
221 #define CMD_LIST_RSET 0
222 #define CMD_LIST_HELO 1
223 #define CMD_LIST_EHLO 2
224 #define CMD_LIST_AUTH 3
225 #define CMD_LIST_STARTTLS 4
226 #define CMD_LIST_TLS_AUTH 5
228 /* This list of names is used for performing the smtp_no_mail logging action.
229 It must be kept in step with the SCH_xxx enumerations. */
231 uschar * smtp_names[] =
233 US"NONE", US"AUTH", US"DATA", US"BDAT", US"EHLO", US"ETRN", US"EXPN",
234 US"HELO", US"HELP", US"MAIL", US"NOOP", US"QUIT", US"RCPT", US"RSET",
235 US"STARTTLS", US"VRFY" };
237 static uschar *protocols_local[] = {
238 US"local-smtp", /* HELO */
239 US"local-smtps", /* The rare case EHLO->STARTTLS->HELO */
240 US"local-esmtp", /* EHLO */
241 US"local-esmtps", /* EHLO->STARTTLS->EHLO */
242 US"local-esmtpa", /* EHLO->AUTH */
243 US"local-esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
245 static uschar *protocols[] = {
247 US"smtps", /* The rare case EHLO->STARTTLS->HELO */
248 US"esmtp", /* EHLO */
249 US"esmtps", /* EHLO->STARTTLS->EHLO */
250 US"esmtpa", /* EHLO->AUTH */
251 US"esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
256 #define pcrpted 1 /* added to pextend or pnormal */
257 #define pauthed 2 /* added to pextend */
259 /* Sanity check and validate optional args to MAIL FROM: envelope */
262 ENV_MAIL_OPT_SIZE, ENV_MAIL_OPT_BODY, ENV_MAIL_OPT_AUTH,
266 ENV_MAIL_OPT_RET, ENV_MAIL_OPT_ENVID,
272 uschar * name; /* option requested during MAIL cmd */
273 int value; /* enum type */
274 BOOL need_value; /* TRUE requires value (name=value pair format)
275 FALSE is a singleton */
277 static env_mail_type_t env_mail_type_list[] = {
278 { US"SIZE", ENV_MAIL_OPT_SIZE, TRUE },
279 { US"BODY", ENV_MAIL_OPT_BODY, TRUE },
280 { US"AUTH", ENV_MAIL_OPT_AUTH, TRUE },
282 { US"PRDR", ENV_MAIL_OPT_PRDR, FALSE },
284 { US"RET", ENV_MAIL_OPT_RET, TRUE },
285 { US"ENVID", ENV_MAIL_OPT_ENVID, TRUE },
287 { US"SMTPUTF8",ENV_MAIL_OPT_UTF8, FALSE }, /* rfc6531 */
289 /* keep this the last entry */
290 { US"NULL", ENV_MAIL_OPT_NULL, FALSE },
293 /* When reading SMTP from a remote host, we have to use our own versions of the
294 C input-reading functions, in order to be able to flush the SMTP output only
295 when about to read more data from the socket. This is the only way to get
296 optimal performance when the client is using pipelining. Flushing for every
297 command causes a separate packet and reply packet each time; saving all the
298 responses up (when pipelining) combines them into one packet and one response.
300 For simplicity, these functions are used for *all* SMTP input, not only when
301 receiving over a socket. However, after setting up a secure socket (SSL), input
302 is read via the OpenSSL library, and another set of functions is used instead
305 These functions are set in the receive_getc etc. variables and called with the
306 same interface as the C functions. However, since there can only ever be
307 one incoming SMTP call, we just use a single buffer and flags. There is no need
308 to implement a complicated private FILE-like structure.*/
310 static uschar *smtp_inbuffer;
311 static uschar *smtp_inptr;
312 static uschar *smtp_inend;
313 static int smtp_had_eof;
314 static int smtp_had_error;
317 /* forward declarations */
318 static int smtp_read_command(BOOL check_sync, unsigned buffer_lim);
319 static int synprot_error(int type, int code, uschar *data, uschar *errmess);
320 static void smtp_quit_handler(uschar **, uschar **);
321 static void smtp_rset_handler(void);
323 /*************************************************
324 * Log incomplete transactions *
325 *************************************************/
327 /* This function is called after a transaction has been aborted by RSET, QUIT,
328 connection drops or other errors. It logs the envelope information received
329 so far in order to preserve address verification attempts.
331 Argument: string to indicate what aborted the transaction
336 incomplete_transaction_log(uschar * what)
338 if (!sender_address /* No transaction in progress */
339 || !LOGGING(smtp_incomplete_transaction))
342 /* Build list of recipients for logging */
344 if (recipients_count > 0)
346 raw_recipients = store_get(recipients_count * sizeof(uschar *), GET_UNTAINTED);
347 for (int i = 0; i < recipients_count; i++)
348 raw_recipients[i] = recipients_list[i].address;
349 raw_recipients_count = recipients_count;
352 log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS,
353 "%s incomplete transaction (%s)", host_and_ident(TRUE), what);
359 log_close_event(const uschar * reason)
361 log_write(L_smtp_connection, LOG_MAIN, "%s D=%s closed %s",
362 smtp_get_connection_info(), string_timesince(&smtp_connection_start), reason);
367 smtp_command_timeout_exit(void)
369 log_write(L_lost_incoming_connection,
370 LOG_MAIN, "SMTP command timeout on%s connection from %s D=%s",
371 tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE),
372 string_timesince(&smtp_connection_start));
373 if (smtp_batched_input)
374 moan_smtp_batch(NULL, "421 SMTP command timeout"); /* Does not return */
375 smtp_notquit_exit(US"command-timeout", US"421",
376 US"%s: SMTP command timeout - closing connection",
377 smtp_active_hostname);
378 exim_exit(EXIT_FAILURE);
382 smtp_command_sigterm_exit(void)
384 log_close_event(US"after SIGTERM");
385 if (smtp_batched_input)
386 moan_smtp_batch(NULL, "421 SIGTERM received"); /* Does not return */
387 smtp_notquit_exit(US"signal-exit", US"421",
388 US"%s: Service not available - closing connection", smtp_active_hostname);
389 exim_exit(EXIT_FAILURE);
393 smtp_data_timeout_exit(void)
395 log_write(L_lost_incoming_connection, LOG_MAIN,
396 "SMTP data timeout (message abandoned) on connection from %s F=<%s> D=%s",
397 sender_fullhost ? sender_fullhost : US"local process", sender_address,
398 string_timesince(&smtp_connection_start));
399 receive_bomb_out(US"data-timeout", US"SMTP incoming data timeout");
400 /* Does not return */
404 smtp_data_sigint_exit(void)
406 log_close_event(had_data_sigint == SIGTERM ? US"SIGTERM":US"SIGINT");
407 receive_bomb_out(US"signal-exit",
408 US"Service not available - SIGTERM or SIGINT received");
409 /* Does not return */
413 /******************************************************************************/
414 /* SMTP input buffer handling. Most of these are similar to stdio routines. */
419 /* Set up the buffer for inputting using direct read() calls, and arrange to
420 call the local functions instead of the standard C ones. Place a NUL at the
421 end of the buffer to safety-stop C-string reads from it. */
423 if (!(smtp_inbuffer = US malloc(IN_BUFFER_SIZE)))
424 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malloc() failed for SMTP input buffer");
425 smtp_inbuffer[IN_BUFFER_SIZE-1] = '\0';
427 smtp_inptr = smtp_inend = smtp_inbuffer;
428 smtp_had_eof = smtp_had_error = 0;
433 /* Refill the buffer, and notify DKIM verification code.
434 Return false for error or EOF.
438 smtp_refill(unsigned lim)
442 if (!smtp_out) return FALSE;
444 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
446 /* Limit amount read, so non-message data is not fed to DKIM.
447 Take care to not touch the safety NUL at the end of the buffer. */
449 rc = read(fileno(smtp_in), smtp_inbuffer, MIN(IN_BUFFER_SIZE-1, lim));
451 if (smtp_receive_timeout > 0) ALARM_CLR(0);
454 /* Must put the error text in fixed store, because this might be during
455 header reading, where it releases unused store above the header. */
458 if (had_command_timeout) /* set by signal handler */
459 smtp_command_timeout_exit(); /* does not return */
460 if (had_command_sigterm)
461 smtp_command_sigterm_exit();
462 if (had_data_timeout)
463 smtp_data_timeout_exit();
465 smtp_data_sigint_exit();
467 smtp_had_error = save_errno;
468 smtp_read_error = string_copy_perm(
469 string_sprintf(" (error: %s)", strerror(save_errno)), FALSE);
476 dkim_exim_verify_feed(smtp_inbuffer, rc);
478 smtp_inend = smtp_inbuffer + rc;
479 smtp_inptr = smtp_inbuffer;
484 /* Check if there is buffered data */
489 return smtp_inptr < smtp_inend;
492 /* SMTP version of getc()
494 This gets the next byte from the SMTP input buffer. If the buffer is empty,
495 it flushes the output, and refills the buffer, with a timeout. The signal
496 handler is set appropriately by the calling function. This function is not used
497 after a connection has negotiated itself into an TLS/SSL state.
499 Arguments: lim Maximum amount to read/buffer
500 Returns: the next character or EOF
504 smtp_getc(unsigned lim)
506 if (!smtp_hasc() && !smtp_refill(lim)) return EOF;
507 return *smtp_inptr++;
510 /* Get many bytes, refilling buffer if needed */
513 smtp_getbuf(unsigned * len)
518 if (!smtp_hasc() && !smtp_refill(*len))
519 { *len = 0; return NULL; }
521 if ((size = smtp_inend - smtp_inptr) > *len) size = *len;
528 /* Copy buffered data to the dkim feed.
529 Called, unless TLS, just before starting to read message headers. */
532 smtp_get_cache(unsigned lim)
535 int n = smtp_inend - smtp_inptr;
539 dkim_exim_verify_feed(smtp_inptr, n);
544 /* SMTP version of ungetc()
545 Puts a character back in the input buffer. Only ever called once.
550 Returns: the character
556 if (smtp_inptr <= smtp_inbuffer) /* NB: NOT smtp_hasc() ! */
557 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "buffer underflow in smtp_ungetc");
564 /* SMTP version of feof()
565 Tests for a previous EOF
568 Returns: non-zero if the eof flag is set
578 /* SMTP version of ferror()
579 Tests for a previous read error, and returns with errno
580 restored to what it was when the error was detected.
583 Returns: non-zero if the error flag is set
589 errno = smtp_had_error;
590 return smtp_had_error;
594 /* Check if a getc will block or not */
597 smtp_could_getc(void)
601 struct timeval tzero = {.tv_sec = 0, .tv_usec = 0};
603 if (smtp_inptr < smtp_inend)
606 fd = fileno(smtp_in);
609 rc = select(fd + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL, &tzero);
611 if (rc <= 0) return FALSE; /* Not ready to read */
612 rc = smtp_getc(GETC_BUFFER_UNLIMITED);
613 if (rc < 0) return FALSE; /* End of file or error */
620 /******************************************************************************/
621 /*************************************************
622 * Recheck synchronization *
623 *************************************************/
625 /* Synchronization checks can never be perfect because a packet may be on its
626 way but not arrived when the check is done. Normally, the checks happen when
627 commands are read: Exim ensures that there is no more input in the input buffer.
628 In normal cases, the response to the command will be fast, and there is no
631 However, for some commands an ACL is run, and that can include delays. In those
632 cases, it is useful to do another check on the input just before sending the
633 response. This also applies at the start of a connection. This function does
634 that check by means of the select() function, as long as the facility is not
635 disabled or inappropriate. A failure of select() is ignored.
637 When there is unwanted input, we read it so that it appears in the log of the
641 Returns: TRUE if all is well; FALSE if there is input pending
645 wouldblock_reading(void)
648 if (tls_in.active.sock >= 0)
649 return !tls_could_getc();
652 return !smtp_could_getc();
658 if (!smtp_enforce_sync || !sender_host_address || f.sender_host_notsocket)
661 return wouldblock_reading();
665 /******************************************************************************/
666 /* Variants of the smtp_* input handling functions for use in CHUNKING mode */
668 /* Forward declarations */
669 static inline void bdat_push_receive_functions(void);
670 static inline void bdat_pop_receive_functions(void);
673 /* Get a byte from the smtp input, in CHUNKING mode. Handle ack of the
674 previous BDAT chunk and getting new ones when we run out. Uses the
675 underlying smtp_getc or tls_getc both for that and for getting the
676 (buffered) data byte. EOD signals (an expected) no further data.
677 ERR signals a protocol error, and EOF a closed input stream.
679 Called from read_bdat_smtp() in receive.c for the message body, but also
680 by the headers read loop in receive_msg(); manipulates chunking_state
681 to handle the BDAT command/response.
682 Placed here due to the correlation with the above smtp_getc(), which it wraps,
683 and also by the need to do smtp command/response handling.
685 Arguments: lim (ignored)
686 Returns: the next character or ERR, EOD or EOF
690 bdat_getc(unsigned lim)
692 uschar * user_msg = NULL;
701 if (chunking_data_left > 0)
702 return lwr_receive_getc(chunking_data_left--);
704 bdat_pop_receive_functions();
706 dkim_save = dkim_collect_input;
707 dkim_collect_input = 0;
710 /* Unless PIPELINING was offered, there should be no next command
711 until after we ack that chunk */
713 if (!f.smtp_in_pipelining_advertised && !check_sync())
715 unsigned n = smtp_inend - smtp_inptr;
718 incomplete_transaction_log(US"sync failure");
719 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
720 "(next input sent too soon: pipelining was not advertised): "
721 "rejected \"%s\" %s next input=\"%s\"%s",
722 smtp_cmd_buffer, host_and_ident(TRUE),
723 string_printing(string_copyn(smtp_inptr, n)),
724 smtp_inend - smtp_inptr > n ? "..." : "");
725 (void) synprot_error(L_smtp_protocol_error, 554, NULL,
726 US"SMTP synchronization error");
727 goto repeat_until_rset;
730 /* If not the last, ack the received chunk. The last response is delayed
731 until after the data ACL decides on it */
733 if (chunking_state == CHUNKING_LAST)
736 dkim_collect_input = dkim_save;
737 dkim_exim_verify_feed(NULL, 0); /* notify EOD */
738 dkim_collect_input = 0;
743 smtp_printf("250 %u byte chunk received\r\n", FALSE, chunking_datasize);
744 chunking_state = CHUNKING_OFFERED;
745 DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
747 /* Expect another BDAT cmd from input. RFC 3030 says nothing about
748 QUIT, RSET or NOOP but handling them seems obvious */
751 switch(smtp_read_command(TRUE, 1))
754 (void) synprot_error(L_smtp_protocol_error, 503, NULL,
755 US"only BDAT permissible after non-LAST BDAT");
758 switch(smtp_read_command(TRUE, 1))
760 case QUIT_CMD: smtp_quit_handler(&user_msg, &log_msg); /*FALLTHROUGH */
761 case EOF_CMD: return EOF;
762 case RSET_CMD: smtp_rset_handler(); return ERR;
763 default: if (synprot_error(L_smtp_protocol_error, 503, NULL,
764 US"only RSET accepted now") > 0)
766 goto repeat_until_rset;
770 smtp_quit_handler(&user_msg, &log_msg);
781 smtp_printf("250 OK\r\n", FALSE);
788 if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
790 (void) synprot_error(L_smtp_protocol_error, 501, NULL,
791 US"missing size for BDAT command");
794 chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
795 ? CHUNKING_LAST : CHUNKING_ACTIVE;
796 chunking_data_left = chunking_datasize;
797 DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
798 (int)chunking_state, chunking_data_left);
800 if (chunking_datasize == 0)
801 if (chunking_state == CHUNKING_LAST)
805 (void) synprot_error(L_smtp_protocol_error, 504, NULL,
806 US"zero size for BDAT command");
807 goto repeat_until_rset;
810 bdat_push_receive_functions();
812 dkim_collect_input = dkim_save;
814 break; /* to top of main loop */
823 if (chunking_data_left > 0)
824 return lwr_receive_hasc();
829 bdat_getbuf(unsigned * len)
833 if (chunking_data_left <= 0)
834 { *len = 0; return NULL; }
836 if (*len > chunking_data_left) *len = chunking_data_left;
837 buf = lwr_receive_getbuf(len); /* Either smtp_getbuf or tls_getbuf */
838 chunking_data_left -= *len;
843 bdat_flush_data(void)
845 while (chunking_data_left)
847 unsigned n = chunking_data_left;
848 if (!bdat_getbuf(&n)) break;
851 bdat_pop_receive_functions();
852 chunking_state = CHUNKING_OFFERED;
853 DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
858 bdat_push_receive_functions(void)
860 /* push the current receive_* function on the "stack", and
861 replace them by bdat_getc(), which in turn will use the lwr_receive_*
862 functions to do the dirty work. */
863 if (!lwr_receive_getc)
865 lwr_receive_getc = receive_getc;
866 lwr_receive_getbuf = receive_getbuf;
867 lwr_receive_hasc = receive_hasc;
868 lwr_receive_ungetc = receive_ungetc;
872 DEBUG(D_receive) debug_printf("chunking double-push receive functions\n");
875 receive_getc = bdat_getc;
876 receive_getbuf = bdat_getbuf;
877 receive_hasc = bdat_hasc;
878 receive_ungetc = bdat_ungetc;
882 bdat_pop_receive_functions(void)
884 if (!lwr_receive_getc)
886 DEBUG(D_receive) debug_printf("chunking double-pop receive functions\n");
889 receive_getc = lwr_receive_getc;
890 receive_getbuf = lwr_receive_getbuf;
891 receive_hasc = lwr_receive_hasc;
892 receive_ungetc = lwr_receive_ungetc;
894 lwr_receive_getc = NULL;
895 lwr_receive_getbuf = NULL;
896 lwr_receive_hasc = NULL;
897 lwr_receive_ungetc = NULL;
903 chunking_data_left++;
904 bdat_push_receive_functions(); /* we're not done yet, calling push is safe, because it checks the state before pushing anything */
905 return lwr_receive_ungetc(ch);
910 /******************************************************************************/
912 /*************************************************
913 * Write formatted string to SMTP channel *
914 *************************************************/
916 /* This is a separate function so that we don't have to repeat everything for
917 TLS support or debugging. It is global so that the daemon and the
918 authentication functions can use it. It does not return any error indication,
919 because major problems such as dropped connections won't show up till an output
920 flush for non-TLS connections. The smtp_fflush() function is available for
921 checking that: for convenience, TLS output errors are remembered here so that
922 they are also picked up later by smtp_fflush().
924 This function is exposed to the local_scan API; do not change the signature.
928 more further data expected
929 ... optional arguments
935 smtp_printf(const char *format, BOOL more, ...)
940 smtp_vprintf(format, more, ap);
944 /* This is split off so that verify.c:respond_printf() can, in effect, call
945 smtp_printf(), bearing in mind that in C a vararg function can't directly
946 call another vararg function, only a function which accepts a va_list.
948 This function is exposed to the local_scan API; do not change the signature.
950 /*XXX consider passing caller-info in, for string_vformat-onward */
953 smtp_vprintf(const char *format, BOOL more, va_list ap)
955 gstring gs = { .size = big_buffer_size, .ptr = 0, .s = big_buffer };
958 /* Use taint-unchecked routines for writing into big_buffer, trusting
959 that we'll never expand it. */
961 yield = !! string_vformat(&gs, SVFMT_TAINT_NOCHK, format, ap);
962 string_from_gstring(&gs);
964 DEBUG(D_receive) for (const uschar * t, * s = gs.s;
965 s && (t = Ustrchr(s, '\r'));
966 s = t + 2) /* \r\n */
967 debug_printf("%s %.*s\n",
968 s == gs.s ? "SMTP>>" : " ",
973 log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_printf()");
974 smtp_closedown(US"Unexpected error");
975 exim_exit(EXIT_FAILURE);
978 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
979 have had the same. Note: this code is also present in smtp_respond(). It would
980 be tidier to have it only in one place, but when it was added, it was easier to
981 do it that way, so as not to have to mess with the code for the RCPT command,
982 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
984 if (fl.rcpt_in_progress)
986 if (!rcpt_smtp_response)
987 rcpt_smtp_response = string_copy(big_buffer);
988 else if (fl.rcpt_smtp_response_same &&
989 Ustrcmp(rcpt_smtp_response, big_buffer) != 0)
990 fl.rcpt_smtp_response_same = FALSE;
991 fl.rcpt_in_progress = FALSE;
994 /* Now write the string */
998 tls_in.active.sock >= 0 ? (tls_write(NULL, gs.s, gs.ptr, more) < 0) :
1000 (fwrite(gs.s, gs.ptr, 1, smtp_out) == 0)
1002 smtp_write_error = -1;
1007 /*************************************************
1008 * Flush SMTP out and check for error *
1009 *************************************************/
1011 /* This function isn't currently used within Exim (it detects errors when it
1012 tries to read the next SMTP input), but is available for use in local_scan().
1013 It flushes the output and checks for errors.
1016 Returns: 0 for no error; -1 after an error
1022 if (tls_in.active.sock < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
1026 tls_in.active.sock >= 0 ? (tls_write(NULL, NULL, 0, FALSE) < 0) :
1028 (fflush(smtp_out) != 0)
1030 smtp_write_error = -1;
1032 return smtp_write_error;
1037 /* If there's input waiting (and we're doing pipelineing) then we can pipeline
1038 a reponse with the one following. */
1041 pipeline_response(void)
1043 if ( !smtp_enforce_sync || !sender_host_address
1044 || f.sender_host_notsocket || !f.smtp_in_pipelining_advertised)
1047 if (wouldblock_reading()) return FALSE;
1048 f.smtp_in_pipelining_used = TRUE;
1053 #ifndef DISABLE_PIPE_CONNECT
1055 pipeline_connect_sends(void)
1057 if (!sender_host_address || f.sender_host_notsocket || !fl.pipe_connect_acceptable)
1060 if (wouldblock_reading()) return FALSE;
1061 f.smtp_in_early_pipe_used = TRUE;
1066 /*************************************************
1067 * SMTP command read timeout *
1068 *************************************************/
1070 /* Signal handler for timing out incoming SMTP commands. This attempts to
1073 Argument: signal number (SIGALRM)
1078 command_timeout_handler(int sig)
1080 had_command_timeout = sig;
1085 /*************************************************
1086 * SIGTERM received *
1087 *************************************************/
1089 /* Signal handler for handling SIGTERM. Again, try to finish tidily.
1091 Argument: signal number (SIGTERM)
1096 command_sigterm_handler(int sig)
1098 had_command_sigterm = sig;
1104 #ifdef SUPPORT_PROXY
1105 /*************************************************
1106 * Check if host is required proxy host *
1107 *************************************************/
1108 /* The function determines if inbound host will be a regular smtp host
1109 or if it is configured that it must use Proxy Protocol. A local
1117 check_proxy_protocol_host()
1121 if ( sender_host_address
1122 && (rc = verify_check_this_host(CUSS &hosts_proxy, NULL, NULL,
1123 sender_host_address, NULL)) == OK)
1126 debug_printf("Detected proxy protocol configured host\n");
1127 proxy_session = TRUE;
1129 return proxy_session;
1133 /*************************************************
1134 * Read data until newline or end of buffer *
1135 *************************************************/
1136 /* While SMTP is server-speaks-first, TLS is client-speaks-first, so we can't
1137 read an entire buffer and assume there will be nothing past a proxy protocol
1138 header. Our approach normally is to use stdio, but again that relies upon
1139 "STARTTLS\r\n" and a server response before the client starts TLS handshake, or
1140 reading _nothing_ before client TLS handshake. So we don't want to use the
1141 usual buffering reads which may read enough to block TLS starting.
1143 So unfortunately we're down to "read one byte at a time, with a syscall each,
1144 and expect a little overhead", for all proxy-opened connections which are v1,
1145 just to handle the TLS-on-connect case. Since SSL functions wrap the
1146 underlying fd, we can't assume that we can feed them any already-read content.
1148 We need to know where to read to, the max capacity, and we'll read until we
1149 get a CR and one more character. Let the caller scream if it's CR+!LF.
1151 Return the amount read.
1155 swallow_until_crlf(int fd, uschar *base, int already, int capacity)
1157 uschar *to = base + already;
1163 /* For "PROXY UNKNOWN\r\n" we, at time of writing, expect to have read
1164 up through the \r; for the _normal_ case, we haven't yet seen the \r. */
1166 cr = memchr(base, '\r', already);
1169 if ((cr - base) < already - 1)
1171 /* \r and presumed \n already within what we have; probably not
1172 actually proxy protocol, but abort cleanly. */
1175 /* \r is last character read, just need one more. */
1179 while (capacity > 0)
1181 do { ret = read(fd, to, 1); } while (ret == -1 && errno == EINTR && !had_command_timeout);
1193 /* reached end without having room for a final newline, abort */
1200 proxy_debug(uschar * buf, unsigned start, unsigned end)
1202 debug_printf("PROXY<<");
1203 while (start < end) debug_printf(" %02x", buf[start++]);
1208 /*************************************************
1209 * Setup host for proxy protocol *
1210 *************************************************/
1211 /* The function configures the connection based on a header from the
1212 inbound host to use Proxy Protocol. The specification is very exact
1213 so exit with an error if do not find the exact required pieces. This
1214 includes an incorrect number of spaces separating args.
1217 Returns: Boolean success
1221 setup_proxy_protocol_host()
1233 struct { /* TCP/UDP over IPv4, len = 12 */
1239 struct { /* TCP/UDP over IPv6, len = 36 */
1240 uint8_t src_addr[16];
1241 uint8_t dst_addr[16];
1245 struct { /* AF_UNIX sockets, len = 216 */
1246 uschar src_addr[108];
1247 uschar dst_addr[108];
1253 /* Temp variables used in PPv2 address:port parsing */
1255 char tmpip[INET_ADDRSTRLEN];
1256 struct sockaddr_in tmpaddr;
1257 char tmpip6[INET6_ADDRSTRLEN];
1258 struct sockaddr_in6 tmpaddr6;
1260 /* We can't read "all data until end" because while SMTP is
1261 server-speaks-first, the TLS handshake is client-speaks-first, so for
1262 TLS-on-connect ports the proxy protocol header will usually be immediately
1263 followed by a TLS handshake, and with N TLS libraries, we can't reliably
1264 reinject data for reading by those. So instead we first read "enough to be
1265 safely read within the header, and figure out how much more to read".
1266 For v1 we will later read to the end-of-line, for v2 we will read based upon
1269 The v2 sig is 12 octets, and another 4 gets us the length, so we know how much
1270 data is needed total. For v1, where the line looks like:
1271 PROXY TCPn L3src L3dest SrcPort DestPort \r\n
1273 However, for v1 there's also `PROXY UNKNOWN\r\n` which is only 15 octets.
1274 We seem to support that. So, if we read 14 octets then we can tell if we're
1275 v2 or v1. If we're v1, we can continue reading as normal.
1277 If we're v2, we can't slurp up the entire header. We need the length in the
1278 15th & 16th octets, then to read everything after that.
1280 So to safely handle v1 and v2, with client-sent-first supported correctly,
1281 we have to do a minimum of 3 read calls, not 1. Eww.
1284 # define PROXY_INITIAL_READ 14
1285 # define PROXY_V2_HEADER_SIZE 16
1286 # if PROXY_INITIAL_READ > PROXY_V2_HEADER_SIZE
1287 # error Code bug in sizes of data to read for proxy usage
1292 int fd = fileno(smtp_in);
1293 const char v2sig[12] = "\x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A";
1294 uschar * iptype; /* To display debug info */
1295 socklen_t vslen = sizeof(struct timeval);
1298 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1299 ALARM(proxy_protocol_timeout);
1303 /* The inbound host was declared to be a Proxy Protocol host, so
1304 don't do a PEEK into the data, actually slurp up enough to be
1305 "safe". Can't take it all because TLS-on-connect clients follow
1306 immediately with TLS handshake. */
1307 ret = read(fd, &hdr, PROXY_INITIAL_READ);
1308 } while (ret == -1 && errno == EINTR && !had_command_timeout);
1312 DEBUG(D_receive) proxy_debug(US &hdr, 0, ret);
1314 /* For v2, handle reading the length, and then the rest. */
1315 if ((ret == PROXY_INITIAL_READ) && (memcmp(&hdr.v2, v2sig, sizeof(v2sig)) == 0))
1320 DEBUG(D_receive) debug_printf("v2\n");
1322 /* First get the length fields. */
1325 retmore = read(fd, (uschar*)&hdr + ret, PROXY_V2_HEADER_SIZE - PROXY_INITIAL_READ);
1326 } while (retmore == -1 && errno == EINTR && !had_command_timeout);
1329 DEBUG(D_receive) proxy_debug(US &hdr, ret, ret + retmore);
1333 ver = (hdr.v2.ver_cmd & 0xf0) >> 4;
1335 /* May 2014: haproxy combined the version and command into one byte to
1336 allow two full bytes for the length field in order to proxy SSL
1337 connections. SSL Proxy is not supported in this version of Exim, but
1338 must still separate values here. */
1342 DEBUG(D_receive) debug_printf("Invalid Proxy Protocol version: %d\n", ver);
1346 /* The v2 header will always be 16 bytes per the spec. */
1347 size = 16 + ntohs(hdr.v2.len);
1348 DEBUG(D_receive) debug_printf("Detected PROXYv2 header, size %d (limit %d)\n",
1349 size, (int)sizeof(hdr));
1351 /* We should now have 16 octets (PROXY_V2_HEADER_SIZE), and we know the total
1352 amount that we need. Double-check that the size is not unreasonable, then
1354 if (size > sizeof(hdr))
1356 DEBUG(D_receive) debug_printf("PROXYv2 header size unreasonably large; security attack?\n");
1364 retmore = read(fd, (uschar*)&hdr + ret, size-ret);
1365 } while (retmore == -1 && errno == EINTR && !had_command_timeout);
1368 DEBUG(D_receive) proxy_debug(US &hdr, ret, ret + retmore);
1370 DEBUG(D_receive) debug_printf("PROXYv2: have %d/%d required octets\n", ret, size);
1371 } while (ret < size);
1373 } /* end scope for getting rest of data for v2 */
1375 /* At this point: if PROXYv2, we've read the exact size required for all data;
1376 if PROXYv1 then we've read "less than required for any valid line" and should
1379 if (ret >= 16 && memcmp(&hdr.v2, v2sig, 12) == 0)
1381 uint8_t cmd = (hdr.v2.ver_cmd & 0x0f);
1385 case 0x01: /* PROXY command */
1388 case 0x11: /* TCPv4 address type */
1390 tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.src_addr;
1391 inet_ntop(AF_INET, &tmpaddr.sin_addr, CS &tmpip, sizeof(tmpip));
1392 if (!string_is_ip_address(US tmpip, NULL))
1394 DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
1397 proxy_local_address = sender_host_address;
1398 sender_host_address = string_copy(US tmpip);
1399 tmpport = ntohs(hdr.v2.addr.ip4.src_port);
1400 proxy_local_port = sender_host_port;
1401 sender_host_port = tmpport;
1402 /* Save dest ip/port */
1403 tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.dst_addr;
1404 inet_ntop(AF_INET, &tmpaddr.sin_addr, CS &tmpip, sizeof(tmpip));
1405 if (!string_is_ip_address(US tmpip, NULL))
1407 DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
1410 proxy_external_address = string_copy(US tmpip);
1411 tmpport = ntohs(hdr.v2.addr.ip4.dst_port);
1412 proxy_external_port = tmpport;
1414 case 0x21: /* TCPv6 address type */
1416 memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.src_addr, 16);
1417 inet_ntop(AF_INET6, &tmpaddr6.sin6_addr, CS &tmpip6, sizeof(tmpip6));
1418 if (!string_is_ip_address(US tmpip6, NULL))
1420 DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
1423 proxy_local_address = sender_host_address;
1424 sender_host_address = string_copy(US tmpip6);
1425 tmpport = ntohs(hdr.v2.addr.ip6.src_port);
1426 proxy_local_port = sender_host_port;
1427 sender_host_port = tmpport;
1428 /* Save dest ip/port */
1429 memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.dst_addr, 16);
1430 inet_ntop(AF_INET6, &tmpaddr6.sin6_addr, CS &tmpip6, sizeof(tmpip6));
1431 if (!string_is_ip_address(US tmpip6, NULL))
1433 DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
1436 proxy_external_address = string_copy(US tmpip6);
1437 tmpport = ntohs(hdr.v2.addr.ip6.dst_port);
1438 proxy_external_port = tmpport;
1442 debug_printf("Unsupported PROXYv2 connection type: 0x%02x\n",
1446 /* Unsupported protocol, keep local connection address */
1448 case 0x00: /* LOCAL command */
1449 /* Keep local connection address for LOCAL */
1454 debug_printf("Unsupported PROXYv2 command: 0x%x\n", cmd);
1458 else if (ret >= 8 && memcmp(hdr.v1.line, "PROXY", 5) == 0)
1462 uschar *sp; /* Utility variables follow */
1467 /* get the rest of the line */
1468 r2 = swallow_until_crlf(fd, (uschar*)&hdr, ret, sizeof(hdr)-ret);
1473 p = string_copy(hdr.v1.line);
1474 end = memchr(p, '\r', ret - 1);
1476 if (!end || (end == (uschar*)&hdr + ret) || end[1] != '\n')
1478 DEBUG(D_receive) debug_printf("Partial or invalid PROXY header\n");
1481 *end = '\0'; /* Terminate the string */
1482 size = end + 2 - p; /* Skip header + CRLF */
1483 DEBUG(D_receive) debug_printf("Detected PROXYv1 header\n");
1484 DEBUG(D_receive) debug_printf("Bytes read not within PROXY header: %d\n", ret - size);
1485 /* Step through the string looking for the required fields. Ensure
1486 strict adherence to required formatting, exit for any error. */
1488 if (!isspace(*(p++)))
1490 DEBUG(D_receive) debug_printf("Missing space after PROXY command\n");
1493 if (!Ustrncmp(p, CCS"TCP4", 4))
1495 else if (!Ustrncmp(p,CCS"TCP6", 4))
1497 else if (!Ustrncmp(p,CCS"UNKNOWN", 7))
1499 iptype = US"Unknown";
1504 DEBUG(D_receive) debug_printf("Invalid TCP type\n");
1508 p += Ustrlen(iptype);
1509 if (!isspace(*(p++)))
1511 DEBUG(D_receive) debug_printf("Missing space after TCP4/6 command\n");
1514 /* Find the end of the arg */
1515 if ((sp = Ustrchr(p, ' ')) == NULL)
1518 debug_printf("Did not find proxied src %s\n", iptype);
1522 if(!string_is_ip_address(p, NULL))
1525 debug_printf("Proxied src arg is not an %s address\n", iptype);
1528 proxy_local_address = sender_host_address;
1529 sender_host_address = p;
1531 if ((sp = Ustrchr(p, ' ')) == NULL)
1534 debug_printf("Did not find proxy dest %s\n", iptype);
1538 if(!string_is_ip_address(p, NULL))
1541 debug_printf("Proxy dest arg is not an %s address\n", iptype);
1544 proxy_external_address = p;
1546 if ((sp = Ustrchr(p, ' ')) == NULL)
1548 DEBUG(D_receive) debug_printf("Did not find proxied src port\n");
1552 tmp_port = strtol(CCS p, &endc, 10);
1553 if (*endc || tmp_port == 0)
1556 debug_printf("Proxied src port '%s' not an integer\n", p);
1559 proxy_local_port = sender_host_port;
1560 sender_host_port = tmp_port;
1562 if ((sp = Ustrchr(p, '\0')) == NULL)
1564 DEBUG(D_receive) debug_printf("Did not find proxy dest port\n");
1567 tmp_port = strtol(CCS p, &endc, 10);
1568 if (*endc || tmp_port == 0)
1571 debug_printf("Proxy dest port '%s' not an integer\n", p);
1574 proxy_external_port = tmp_port;
1575 /* Already checked for /r /n above. Good V1 header received. */
1579 /* Wrong protocol */
1580 DEBUG(D_receive) debug_printf("Invalid proxy protocol version negotiation\n");
1581 (void) swallow_until_crlf(fd, (uschar*)&hdr, ret, sizeof(hdr)-ret);
1587 debug_printf("Valid %s sender from Proxy Protocol header\n", iptype);
1588 yield = proxy_session;
1590 /* Don't flush any potential buffer contents. Any input on proxyfail
1591 should cause a synchronization failure */
1594 DEBUG(D_receive) if (had_command_timeout)
1595 debug_printf("Timeout while reading proxy header\n");
1600 sender_host_name = NULL;
1601 (void) host_name_lookup();
1602 host_build_sender_fullhost();
1606 f.proxy_session_failed = TRUE;
1608 debug_printf("Failure to extract proxied host, only QUIT allowed\n");
1614 #endif /*SUPPORT_PROXY*/
1616 /*************************************************
1617 * Read one command line *
1618 *************************************************/
1620 /* Strictly, SMTP commands coming over the net are supposed to end with CRLF.
1621 There are sites that don't do this, and in any case internal SMTP probably
1622 should check only for LF. Consequently, we check here for LF only. The line
1623 ends up with [CR]LF removed from its end. If we get an overlong line, treat as
1624 an unknown command. The command is read into the global smtp_cmd_buffer so that
1625 it is available via $smtp_command.
1627 The character reading routine sets up a timeout for each block actually read
1628 from the input (which may contain more than one command). We set up a special
1629 signal handler that closes down the session on a timeout. Control does not
1630 return when it runs.
1633 check_sync if TRUE, check synchronization rules if global option is TRUE
1634 buffer_lim maximum to buffer in lower layer
1636 Returns: a code identifying the command (enumerated above)
1640 smtp_read_command(BOOL check_sync, unsigned buffer_lim)
1644 BOOL hadnull = FALSE;
1646 had_command_timeout = 0;
1647 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1649 while ((c = (receive_getc)(buffer_lim)) != '\n' && c != EOF)
1651 if (ptr >= SMTP_CMD_BUFFER_SIZE)
1653 os_non_restarting_signal(SIGALRM, sigalrm_handler);
1661 smtp_cmd_buffer[ptr++] = c;
1664 receive_linecount++; /* For BSMTP errors */
1665 os_non_restarting_signal(SIGALRM, sigalrm_handler);
1667 /* If hit end of file, return pseudo EOF command. Whether we have a
1668 part-line already read doesn't matter, since this is an error state. */
1670 if (c == EOF) return EOF_CMD;
1672 /* Remove any CR and white space at the end of the line, and terminate the
1675 while (ptr > 0 && isspace(smtp_cmd_buffer[ptr-1])) ptr--;
1676 smtp_cmd_buffer[ptr] = 0;
1678 DEBUG(D_receive) debug_printf("SMTP<< %s\n", smtp_cmd_buffer);
1680 /* NULLs are not allowed in SMTP commands */
1682 if (hadnull) return BADCHAR_CMD;
1684 /* Scan command list and return identity, having set the data pointer
1685 to the start of the actual data characters. Check for SMTP synchronization
1688 for (smtp_cmd_list * p = cmd_list; p < cmd_list_end; p++)
1690 #ifdef SUPPORT_PROXY
1691 /* Only allow QUIT command if Proxy Protocol parsing failed */
1692 if (proxy_session && f.proxy_session_failed && p->cmd != QUIT_CMD)
1696 && strncmpic(smtp_cmd_buffer, US p->name, p->len) == 0
1697 && ( smtp_cmd_buffer[p->len-1] == ':' /* "mail from:" or "rcpt to:" */
1698 || smtp_cmd_buffer[p->len] == 0
1699 || smtp_cmd_buffer[p->len] == ' '
1702 if ( smtp_inptr < smtp_inend /* Outstanding input */
1703 && p->cmd < sync_cmd_limit /* Command should sync */
1704 && check_sync /* Local flag set */
1705 && smtp_enforce_sync /* Global flag set */
1706 && sender_host_address != NULL /* Not local input */
1707 && !f.sender_host_notsocket /* Really is a socket */
1711 /* The variables $smtp_command and $smtp_command_argument point into the
1712 unmodified input buffer. A copy of the latter is taken for actual
1713 processing, so that it can be chopped up into separate parts if necessary,
1714 for example, when processing a MAIL command options such as SIZE that can
1715 follow the sender address. */
1717 smtp_cmd_argument = smtp_cmd_buffer + p->len;
1718 while (isspace(*smtp_cmd_argument)) smtp_cmd_argument++;
1719 Ustrcpy(smtp_data_buffer, smtp_cmd_argument);
1720 smtp_cmd_data = smtp_data_buffer;
1722 /* Count non-mail commands from those hosts that are controlled in this
1723 way. The default is all hosts. We don't waste effort checking the list
1724 until we get a non-mail command, but then cache the result to save checking
1725 again. If there's a DEFER while checking the host, assume it's in the list.
1727 Note that one instance of RSET, EHLO/HELO, and STARTTLS is allowed at the
1728 start of each incoming message by fiddling with the value in the table. */
1730 if (!p->is_mail_cmd)
1732 if (count_nonmail == TRUE_UNSET) count_nonmail =
1733 verify_check_host(&smtp_accept_max_nonmail_hosts) != FAIL;
1734 if (count_nonmail && ++nonmail_command_count > smtp_accept_max_nonmail)
1735 return TOO_MANY_NONMAIL_CMD;
1738 /* If there is data for a command that does not expect it, generate the
1741 return (p->has_arg || *smtp_cmd_data == 0)? p->cmd : BADARG_CMD;
1745 #ifdef SUPPORT_PROXY
1746 /* Only allow QUIT command if Proxy Protocol parsing failed */
1747 if (proxy_session && f.proxy_session_failed)
1748 return PROXY_FAIL_IGNORE_CMD;
1751 /* Enforce synchronization for unknown commands */
1753 if ( smtp_inptr < smtp_inend /* Outstanding input */
1754 && check_sync /* Local flag set */
1755 && smtp_enforce_sync /* Global flag set */
1756 && sender_host_address /* Not local input */
1757 && !f.sender_host_notsocket /* Really is a socket */
1766 /*************************************************
1767 * Forced closedown of call *
1768 *************************************************/
1770 /* This function is called from log.c when Exim is dying because of a serious
1771 disaster, and also from some other places. If an incoming non-batched SMTP
1772 channel is open, it swallows the rest of the incoming message if in the DATA
1773 phase, sends the reply string, and gives an error to all subsequent commands
1774 except QUIT. The existence of an SMTP call is detected by the non-NULLness of
1778 message SMTP reply string to send, excluding the code
1784 smtp_closedown(uschar * message)
1786 if (!smtp_in || smtp_batched_input) return;
1787 receive_swallow_smtp();
1788 smtp_printf("421 %s\r\n", FALSE, message);
1790 for (;;) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
1796 f.smtp_in_quit = TRUE;
1797 smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
1802 smtp_printf("250 Reset OK\r\n", FALSE);
1806 smtp_printf("421 %s\r\n", FALSE, message);
1814 /*************************************************
1815 * Set up connection info for logging *
1816 *************************************************/
1818 /* This function is called when logging information about an SMTP connection.
1819 It sets up appropriate source information, depending on the type of connection.
1820 If sender_fullhost is NULL, we are at a very early stage of the connection;
1821 just use the IP address.
1824 Returns: a string describing the connection
1828 smtp_get_connection_info(void)
1830 const uschar * hostname = sender_fullhost
1831 ? sender_fullhost : sender_host_address;
1834 return string_sprintf("SMTP connection from %s", hostname);
1836 if (f.sender_host_unknown || f.sender_host_notsocket)
1837 return string_sprintf("SMTP connection from %s", sender_ident);
1840 return string_sprintf("SMTP connection from %s (via inetd)", hostname);
1842 if (LOGGING(incoming_interface) && interface_address)
1843 return string_sprintf("SMTP connection from %s I=[%s]:%d", hostname,
1844 interface_address, interface_port);
1846 return string_sprintf("SMTP connection from %s", hostname);
1852 /* Append TLS-related information to a log line
1855 g String under construction: allocated string to extend, or NULL
1857 Returns: Allocated string or NULL
1860 s_tlslog(gstring * g)
1862 if (LOGGING(tls_cipher) && tls_in.cipher)
1864 g = string_append(g, 2, US" X=", tls_in.cipher);
1865 #ifndef DISABLE_TLS_RESUME
1866 if (LOGGING(tls_resumption) && tls_in.resumption & RESUME_USED)
1867 g = string_catn(g, US"*", 1);
1870 if (LOGGING(tls_certificate_verified) && tls_in.cipher)
1871 g = string_append(g, 2, US" CV=", tls_in.certificate_verified? "yes":"no");
1872 if (LOGGING(tls_peerdn) && tls_in.peerdn)
1873 g = string_append(g, 3, US" DN=\"", string_printing(tls_in.peerdn), US"\"");
1874 if (LOGGING(tls_sni) && tls_in.sni)
1875 g = string_append(g, 2, US" SNI=", string_printing2(tls_in.sni, SP_TAB|SP_SPACE));
1883 s_connhad_log(gstring * g)
1885 const uschar * sep = smtp_connection_had[SMTP_HBUFF_SIZE-1] != SCH_NONE
1886 ? US" C=..." : US" C=";
1888 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1889 if (smtp_connection_had[i] != SCH_NONE)
1891 g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1894 for (int i = 0; i < smtp_ch_index; i++, sep = US",")
1895 g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1900 /*************************************************
1901 * Log lack of MAIL if so configured *
1902 *************************************************/
1904 /* This function is called when an SMTP session ends. If the log selector
1905 smtp_no_mail is set, write a log line giving some details of what has happened
1906 in the SMTP session.
1913 smtp_log_no_mail(void)
1918 if (smtp_mailcmd_count > 0 || !LOGGING(smtp_no_mail))
1921 if (sender_host_authenticated)
1923 g = string_append(g, 2, US" A=", sender_host_authenticated);
1924 if (authenticated_id) g = string_append(g, 2, US":", authenticated_id);
1931 g = s_connhad_log(g);
1933 if (!(s = string_from_gstring(g))) s = US"";
1935 log_write(0, LOG_MAIN, "no MAIL in %sSMTP connection from %s D=%s%s",
1936 f.tcp_in_fastopen ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO " : US"",
1937 host_and_ident(FALSE), string_timesince(&smtp_connection_start), s);
1941 /* Return list of recent smtp commands */
1946 gstring * list = NULL;
1949 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1950 if (smtp_connection_had[i] != SCH_NONE)
1951 list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1953 for (int i = 0; i < smtp_ch_index; i++)
1954 list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1956 s = string_from_gstring(list);
1957 return s ? s : US"";
1963 /*************************************************
1964 * Check HELO line and set sender_helo_name *
1965 *************************************************/
1967 /* Check the format of a HELO line. The data for HELO/EHLO is supposed to be
1968 the domain name of the sending host, or an ip literal in square brackets. The
1969 argument is placed in sender_helo_name, which is in malloc store, because it
1970 must persist over multiple incoming messages. If helo_accept_junk is set, this
1971 host is permitted to send any old junk (needed for some broken hosts).
1972 Otherwise, helo_allow_chars can be used for rogue characters in general
1973 (typically people want to let in underscores).
1976 s the data portion of the line (already past any white space)
1978 Returns: TRUE or FALSE
1982 check_helo(uschar *s)
1985 uschar *end = s + Ustrlen(s);
1986 BOOL yield = fl.helo_accept_junk;
1988 /* Discard any previous helo name */
1990 sender_helo_name = NULL;
1992 /* Skip tests if junk is permitted. */
1996 /* Allow the new standard form for IPv6 address literals, namely,
1997 [IPv6:....], and because someone is bound to use it, allow an equivalent
1998 IPv4 form. Allow plain addresses as well. */
2005 if (strncmpic(s, US"[IPv6:", 6) == 0)
2006 yield = (string_is_ip_address(s+6, NULL) == 6);
2007 else if (strncmpic(s, US"[IPv4:", 6) == 0)
2008 yield = (string_is_ip_address(s+6, NULL) == 4);
2010 yield = (string_is_ip_address(s+1, NULL) != 0);
2015 /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
2016 that have been configured (usually underscore - sigh). */
2019 for (yield = TRUE; *s; s++)
2020 if (!isalnum(*s) && *s != '.' && *s != '-' &&
2021 Ustrchr(helo_allow_chars, *s) == NULL)
2027 /* Save argument if OK */
2029 if (yield) sender_helo_name = string_copy_perm(start, TRUE);
2037 /*************************************************
2038 * Extract SMTP command option *
2039 *************************************************/
2041 /* This function picks the next option setting off the end of smtp_cmd_data. It
2042 is called for MAIL FROM and RCPT TO commands, to pick off the optional ESMTP
2043 things that can appear there.
2046 name point this at the name
2047 value point this at the data string
2049 Returns: TRUE if found an option
2053 extract_option(uschar **name, uschar **value)
2057 if (Ustrlen(smtp_cmd_data) <= 0) return FALSE;
2058 v = smtp_cmd_data + Ustrlen(smtp_cmd_data) - 1;
2059 while (v > smtp_cmd_data && isspace(*v)) v--;
2062 while (v > smtp_cmd_data && *v != '=' && !isspace(*v))
2064 /* Take care to not stop at a space embedded in a quoted local-part */
2067 do v--; while (v > smtp_cmd_data && *v != '"');
2068 if (v <= smtp_cmd_data) return FALSE;
2072 if (v <= smtp_cmd_data) return FALSE;
2077 while (n > smtp_cmd_data && isalpha(n[-1])) n--;
2078 /* RFC says SP, but TAB seen in wild and other major MTAs accept it */
2079 if (n <= smtp_cmd_data || !isspace(n[-1])) return FALSE;
2096 /*************************************************
2097 * Reset for new message *
2098 *************************************************/
2100 /* This function is called whenever the SMTP session is reset from
2101 within either of the setup functions; also from the daemon loop.
2103 Argument: the stacking pool storage reset point
2108 smtp_reset(void *reset_point)
2110 recipients_list = NULL;
2111 rcpt_count = rcpt_defer_count = rcpt_fail_count =
2112 raw_recipients_count = recipients_count = recipients_list_max = 0;
2113 message_linecount = 0;
2115 message_body = message_body_end = NULL;
2116 acl_added_headers = NULL;
2117 acl_removed_headers = NULL;
2118 f.queue_only_policy = FALSE;
2119 rcpt_smtp_response = NULL;
2120 fl.rcpt_smtp_response_same = TRUE;
2121 fl.rcpt_in_progress = FALSE;
2122 f.deliver_freeze = FALSE; /* Can be set by ACL */
2123 freeze_tell = freeze_tell_config; /* Can be set by ACL */
2124 fake_response = OK; /* Can be set by ACL */
2125 #ifdef WITH_CONTENT_SCAN
2126 f.no_mbox_unspool = FALSE; /* Can be set by ACL */
2128 f.submission_mode = FALSE; /* Can be set by ACL */
2129 f.suppress_local_fixups = f.suppress_local_fixups_default; /* Can be set by ACL */
2130 f.active_local_from_check = local_from_check; /* Can be set by ACL */
2131 f.active_local_sender_retain = local_sender_retain; /* Can be set by ACL */
2132 sending_ip_address = NULL;
2133 return_path = sender_address = NULL;
2134 deliver_localpart_data = deliver_domain_data =
2135 recipient_data = sender_data = NULL; /* Can be set by ACL */
2136 recipient_verify_failure = NULL;
2137 deliver_localpart_parent = deliver_localpart_orig = NULL;
2138 deliver_domain_parent = deliver_domain_orig = NULL;
2139 callout_address = NULL;
2140 submission_name = NULL; /* Can be set by ACL */
2141 raw_sender = NULL; /* After SMTP rewrite, before qualifying */
2142 sender_address_unrewritten = NULL; /* Set only after verify rewrite */
2143 sender_verified_list = NULL; /* No senders verified */
2144 memset(sender_address_cache, 0, sizeof(sender_address_cache));
2145 memset(sender_domain_cache, 0, sizeof(sender_domain_cache));
2147 authenticated_sender = NULL;
2148 #ifdef EXPERIMENTAL_BRIGHTMAIL
2150 bmi_verdicts = NULL;
2152 dnslist_domain = dnslist_matched = NULL;
2154 spf_header_comment = spf_received = spf_result = spf_smtp_comment = NULL;
2155 spf_result_guessed = FALSE;
2157 #ifndef DISABLE_DKIM
2158 dkim_cur_signer = dkim_signers =
2159 dkim_signing_domain = dkim_signing_selector = dkim_signatures = NULL;
2160 dkim_cur_signer = dkim_signers = dkim_signing_domain = dkim_signing_selector = NULL;
2161 f.dkim_disable_verify = FALSE;
2162 dkim_collect_input = 0;
2163 dkim_verify_overall = dkim_verify_status = dkim_verify_reason = NULL;
2164 dkim_key_length = 0;
2166 #ifdef SUPPORT_DMARC
2167 f.dmarc_has_been_checked = f.dmarc_disable_verify = f.dmarc_enable_forensic = FALSE;
2168 dmarc_domain_policy = dmarc_status = dmarc_status_text =
2169 dmarc_used_domain = NULL;
2171 #ifdef EXPERIMENTAL_ARC
2172 arc_state = arc_state_reason = NULL;
2173 arc_received_instance = 0;
2177 deliver_host = deliver_host_address = NULL; /* Can be set by ACL */
2178 #ifndef DISABLE_PRDR
2179 prdr_requested = FALSE;
2182 message_smtputf8 = FALSE;
2184 #ifdef WITH_CONTENT_SCAN
2187 body_linecount = body_zerocount = 0;
2189 lookup_value = NULL; /* Can be set by ACL */
2190 sender_rate = sender_rate_limit = sender_rate_period = NULL;
2191 ratelimiters_mail = NULL; /* Updated by ratelimit ACL condition */
2192 /* Note that ratelimiters_conn persists across resets. */
2194 /* Reset message ACL variables */
2198 /* Warning log messages are saved in malloc store. They are saved to avoid
2199 repetition in the same message, but it seems right to repeat them for different
2202 while (acl_warn_logged)
2204 string_item *this = acl_warn_logged;
2205 acl_warn_logged = acl_warn_logged->next;
2210 store_reset(reset_point);
2213 return store_mark();
2220 /*************************************************
2221 * Initialize for incoming batched SMTP message *
2222 *************************************************/
2224 /* This function is called from smtp_setup_msg() in the case when
2225 smtp_batched_input is true. This happens when -bS is used to pass a whole batch
2226 of messages in one file with SMTP commands between them. All errors must be
2227 reported by sending a message, and only MAIL FROM, RCPT TO, and DATA are
2228 relevant. After an error on a sender, or an invalid recipient, the remainder
2229 of the message is skipped. The value of received_protocol is already set.
2232 Returns: > 0 message successfully started (reached DATA)
2233 = 0 QUIT read or end of file reached
2234 < 0 should not occur
2238 smtp_setup_batch_msg(void)
2241 rmark reset_point = store_mark();
2243 /* Save the line count at the start of each transaction - single commands
2244 like HELO and RSET count as whole transactions. */
2246 bsmtp_transaction_linecount = receive_linecount;
2248 if ((receive_feof)()) return 0; /* Treat EOF as QUIT */
2250 cancel_cutthrough_connection(TRUE, US"smtp_setup_batch_msg");
2251 reset_point = smtp_reset(reset_point); /* Reset for start of message */
2253 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
2254 value. The values are 2 larger than the required yield of the function. */
2259 uschar *recipient = NULL;
2260 int start, end, sender_domain, recipient_domain;
2262 switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
2264 /* The HELO/EHLO commands set sender_address_helo if they have
2265 valid data; otherwise they are ignored, except that they do
2266 a reset of the state. */
2271 check_helo(smtp_cmd_data);
2275 cancel_cutthrough_connection(TRUE, US"RSET received");
2276 reset_point = smtp_reset(reset_point);
2277 bsmtp_transaction_linecount = receive_linecount;
2281 /* The MAIL FROM command requires an address as an operand. All we
2282 do here is to parse it for syntactic correctness. The form "<>" is
2283 a special case which converts into an empty string. The start/end
2284 pointers in the original are not used further for this address, as
2285 it is the canonical extracted address which is all that is kept. */
2288 smtp_mailcmd_count++; /* Count for no-mail log */
2290 /* The function moan_smtp_batch() does not return. */
2291 moan_smtp_batch(smtp_cmd_buffer, "503 Sender already given");
2293 if (smtp_cmd_data[0] == 0)
2294 /* The function moan_smtp_batch() does not return. */
2295 moan_smtp_batch(smtp_cmd_buffer, "501 MAIL FROM must have an address operand");
2297 /* Reset to start of message */
2299 cancel_cutthrough_connection(TRUE, US"MAIL received");
2300 reset_point = smtp_reset(reset_point);
2302 /* Apply SMTP rewrite */
2304 raw_sender = rewrite_existflags & rewrite_smtp
2305 /* deconst ok as smtp_cmd_data was not const */
2306 ? US rewrite_one(smtp_cmd_data, rewrite_smtp|rewrite_smtp_sender, NULL,
2307 FALSE, US"", global_rewrite_rules)
2310 /* Extract the address; the TRUE flag allows <> as valid */
2313 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
2317 /* The function moan_smtp_batch() does not return. */
2318 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
2320 sender_address = string_copy(raw_sender);
2322 /* Qualify unqualified sender addresses if permitted to do so. */
2325 && sender_address[0] != 0 && sender_address[0] != '@')
2326 if (f.allow_unqualified_sender)
2328 /* deconst ok as sender_address was not const */
2329 sender_address = US rewrite_address_qualify(sender_address, FALSE);
2330 DEBUG(D_receive) debug_printf("unqualified address %s accepted "
2331 "and rewritten\n", raw_sender);
2333 /* The function moan_smtp_batch() does not return. */
2335 moan_smtp_batch(smtp_cmd_buffer, "501 sender address must contain "
2340 /* The RCPT TO command requires an address as an operand. All we do
2341 here is to parse it for syntactic correctness. There may be any number
2342 of RCPT TO commands, specifying multiple senders. We build them all into
2343 a data structure that is in argc/argv format. The start/end values
2344 given by parse_extract_address are not used, as we keep only the
2345 extracted address. */
2348 if (!sender_address)
2349 /* The function moan_smtp_batch() does not return. */
2350 moan_smtp_batch(smtp_cmd_buffer, "503 No sender yet given");
2352 if (smtp_cmd_data[0] == 0)
2353 /* The function moan_smtp_batch() does not return. */
2354 moan_smtp_batch(smtp_cmd_buffer,
2355 "501 RCPT TO must have an address operand");
2357 /* Check maximum number allowed */
2359 if (recipients_max > 0 && recipients_count + 1 > recipients_max)
2360 /* The function moan_smtp_batch() does not return. */
2361 moan_smtp_batch(smtp_cmd_buffer, "%s too many recipients",
2362 recipients_max_reject? "552": "452");
2364 /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
2365 recipient address */
2367 recipient = rewrite_existflags & rewrite_smtp
2368 /* deconst ok as smtp_cmd_data was not const */
2369 ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
2370 global_rewrite_rules)
2373 recipient = parse_extract_address(recipient, &errmess, &start, &end,
2374 &recipient_domain, FALSE);
2377 /* The function moan_smtp_batch() does not return. */
2378 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
2380 /* If the recipient address is unqualified, qualify it if permitted. Then
2381 add it to the list of recipients. */
2383 if (!recipient_domain)
2384 if (f.allow_unqualified_recipient)
2386 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
2388 /* deconst ok as recipient was not const */
2389 recipient = US rewrite_address_qualify(recipient, TRUE);
2391 /* The function moan_smtp_batch() does not return. */
2393 moan_smtp_batch(smtp_cmd_buffer,
2394 "501 recipient address must contain a domain");
2396 receive_add_recipient(recipient, -1);
2400 /* The DATA command is legal only if it follows successful MAIL FROM
2401 and RCPT TO commands. This function is complete when a valid DATA
2402 command is encountered. */
2405 if (!sender_address || recipients_count <= 0)
2406 /* The function moan_smtp_batch() does not return. */
2407 if (!sender_address)
2408 moan_smtp_batch(smtp_cmd_buffer,
2409 "503 MAIL FROM:<sender> command must precede DATA");
2411 moan_smtp_batch(smtp_cmd_buffer,
2412 "503 RCPT TO:<recipient> must precede DATA");
2415 done = 3; /* DATA successfully achieved */
2416 message_ended = END_NOTENDED; /* Indicate in middle of message */
2421 /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
2428 bsmtp_transaction_linecount = receive_linecount;
2433 f.smtp_in_quit = TRUE;
2440 /* The function moan_smtp_batch() does not return. */
2441 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected argument data");
2446 /* The function moan_smtp_batch() does not return. */
2447 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected NULL in SMTP command");
2452 /* The function moan_smtp_batch() does not return. */
2453 moan_smtp_batch(smtp_cmd_buffer, "500 Command unrecognized");
2458 return done - 2; /* Convert yield values */
2466 smtp_log_tls_fail(const uschar * errstr)
2468 const uschar * conn_info = smtp_get_connection_info();
2470 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
2471 /* I'd like to get separated H= here, but too hard for now */
2473 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
2487 socklen_t len = sizeof(is_fastopen);
2489 /* The tinfo TCPOPT_FAST_OPEN bit seems unreliable, and we don't see state
2490 TCP_SYN_RCV (as of 12.1) so no idea about data-use. */
2492 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_FASTOPEN, &is_fastopen, &len) == 0)
2497 debug_printf("TFO mode connection (TCP_FASTOPEN getsockopt)\n");
2498 f.tcp_in_fastopen = TRUE;
2501 else DEBUG(D_receive)
2502 debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2504 # elif defined(TCP_INFO)
2505 struct tcp_info tinfo;
2506 socklen_t len = sizeof(tinfo);
2508 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_INFO, &tinfo, &len) == 0)
2509 # ifdef TCPI_OPT_SYN_DATA /* FreeBSD 11,12 do not seem to have this yet */
2510 if (tinfo.tcpi_options & TCPI_OPT_SYN_DATA)
2513 debug_printf("TFO mode connection (ACKd data-on-SYN)\n");
2514 f.tcp_in_fastopen_data = f.tcp_in_fastopen = TRUE;
2518 if (tinfo.tcpi_state == TCP_SYN_RECV) /* Not seen on FreeBSD 12.1 */
2521 debug_printf("TFO mode connection (state TCP_SYN_RECV)\n");
2522 f.tcp_in_fastopen = TRUE;
2524 else DEBUG(D_receive)
2525 debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2532 log_connect_tls_drop(const uschar * what, const uschar * log_msg)
2534 gstring * g = s_tlslog(NULL);
2535 uschar * tls = string_from_gstring(g);
2537 log_write(L_connection_reject,
2538 log_reject_target, "%s%s%s dropped by %s%s%s",
2539 LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
2540 host_and_ident(TRUE),
2543 log_msg ? US": " : US"", log_msg);
2547 /*************************************************
2548 * Start an SMTP session *
2549 *************************************************/
2551 /* This function is called at the start of an SMTP session. Thereafter,
2552 smtp_setup_msg() is called to initiate each separate message. This
2553 function does host-specific testing, and outputs the banner line.
2556 Returns: FALSE if the session can not continue; something has
2557 gone wrong, or the connection to the host is blocked
2561 smtp_start_session(void)
2564 uschar *user_msg, *log_msg;
2569 gettimeofday(&smtp_connection_start, NULL);
2570 for (smtp_ch_index = 0; smtp_ch_index < SMTP_HBUFF_SIZE; smtp_ch_index++)
2571 smtp_connection_had[smtp_ch_index] = SCH_NONE;
2574 /* Default values for certain variables */
2576 fl.helo_seen = fl.esmtp = fl.helo_accept_junk = FALSE;
2577 smtp_mailcmd_count = 0;
2578 count_nonmail = TRUE_UNSET;
2579 synprot_error_count = unknown_command_count = nonmail_command_count = 0;
2580 smtp_delay_mail = smtp_rlm_base;
2581 fl.auth_advertised = FALSE;
2582 f.smtp_in_pipelining_advertised = f.smtp_in_pipelining_used = FALSE;
2583 f.pipelining_enable = TRUE;
2584 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
2585 fl.smtp_exit_function_called = FALSE; /* For avoiding loop in not-quit exit */
2587 /* If receiving by -bs from a trusted user, or testing with -bh, we allow
2588 authentication settings from -oMaa to remain in force. */
2590 if (!host_checking && !f.sender_host_notsocket)
2591 sender_host_auth_pubname = sender_host_authenticated = NULL;
2592 authenticated_by = NULL;
2595 tls_in.ver = tls_in.cipher = tls_in.peerdn = NULL;
2596 tls_in.ourcert = tls_in.peercert = NULL;
2598 tls_in.ocsp = OCSP_NOT_REQ;
2599 fl.tls_advertised = FALSE;
2601 fl.dsn_advertised = FALSE;
2603 fl.smtputf8_advertised = FALSE;
2606 /* Reset ACL connection variables */
2610 /* Allow for trailing 0 in the command and data buffers. Tainted. */
2612 smtp_cmd_buffer = store_get_perm(2*SMTP_CMD_BUFFER_SIZE + 2, GET_TAINTED);
2614 smtp_cmd_buffer[0] = 0;
2615 smtp_data_buffer = smtp_cmd_buffer + SMTP_CMD_BUFFER_SIZE + 1;
2617 /* For batched input, the protocol setting can be overridden from the
2618 command line by a trusted caller. */
2620 if (smtp_batched_input)
2622 if (!received_protocol) received_protocol = US"local-bsmtp";
2625 /* For non-batched SMTP input, the protocol setting is forced here. It will be
2626 reset later if any of EHLO/AUTH/STARTTLS are received. */
2630 (sender_host_address ? protocols : protocols_local) [pnormal];
2632 /* Set up the buffer for inputting using direct read() calls, and arrange to
2633 call the local functions instead of the standard C ones. */
2637 receive_getc = smtp_getc;
2638 receive_getbuf = smtp_getbuf;
2639 receive_get_cache = smtp_get_cache;
2640 receive_hasc = smtp_hasc;
2641 receive_ungetc = smtp_ungetc;
2642 receive_feof = smtp_feof;
2643 receive_ferror = smtp_ferror;
2644 lwr_receive_getc = NULL;
2645 lwr_receive_getbuf = NULL;
2646 lwr_receive_hasc = NULL;
2647 lwr_receive_ungetc = NULL;
2649 /* Set up the message size limit; this may be host-specific */
2651 thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
2652 if (expand_string_message)
2654 if (thismessage_size_limit == -1)
2655 log_write(0, LOG_MAIN|LOG_PANIC, "unable to expand message_size_limit: "
2656 "%s", expand_string_message);
2658 log_write(0, LOG_MAIN|LOG_PANIC, "invalid message_size_limit: "
2659 "%s", expand_string_message);
2660 smtp_closedown(US"Temporary local problem - please try later");
2664 /* When a message is input locally via the -bs or -bS options, sender_host_
2665 unknown is set unless -oMa was used to force an IP address, in which case it
2666 is checked like a real remote connection. When -bs is used from inetd, this
2667 flag is not set, causing the sending host to be checked. The code that deals
2668 with IP source routing (if configured) is never required for -bs or -bS and
2669 the flag sender_host_notsocket is used to suppress it.
2671 If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
2672 reserve for certain hosts and/or networks. */
2674 if (!f.sender_host_unknown)
2677 BOOL reserved_host = FALSE;
2679 /* Look up IP options (source routing info) on the socket if this is not an
2680 -oMa "host", and if any are found, log them and drop the connection.
2682 Linux (and others now, see below) is different to everyone else, so there
2683 has to be some conditional compilation here. Versions of Linux before 2.1.15
2684 used a structure whose name was "options". Somebody finally realized that
2685 this name was silly, and it got changed to "ip_options". I use the
2686 newer name here, but there is a fudge in the script that sets up os.h
2687 to define a macro in older Linux systems.
2689 Sigh. Linux is a fast-moving target. Another generation of Linux uses
2690 glibc 2, which has chosen ip_opts for the structure name. This is now
2691 really a glibc thing rather than a Linux thing, so the condition name
2692 has been changed to reflect this. It is relevant also to GNU/Hurd.
2694 Mac OS 10.x (Darwin) is like the later glibc versions, but without the
2695 setting of the __GLIBC__ macro, so we can't detect it automatically. There's
2696 a special macro defined in the os.h file.
2698 Some DGUX versions on older hardware appear not to support IP options at
2699 all, so there is now a general macro which can be set to cut out this
2702 How to do this properly in IPv6 is not yet known. */
2704 #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
2706 # ifdef GLIBC_IP_OPTIONS
2707 # if (!defined __GLIBC__) || (__GLIBC__ < 2)
2712 # elif defined DARWIN_IP_OPTIONS
2718 if (!host_checking && !f.sender_host_notsocket)
2721 EXIM_SOCKLEN_T optlen = sizeof(struct ip_options) + MAX_IPOPTLEN;
2722 struct ip_options *ipopt = store_get(optlen, GET_UNTAINTED);
2723 # elif OPTSTYLE == 2
2724 struct ip_opts ipoptblock;
2725 struct ip_opts *ipopt = &ipoptblock;
2726 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2728 struct ipoption ipoptblock;
2729 struct ipoption *ipopt = &ipoptblock;
2730 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2733 /* Occasional genuine failures of getsockopt() have been seen - for
2734 example, "reset by peer". Therefore, just log and give up on this
2735 call, unless the error is ENOPROTOOPT. This error is given by systems
2736 that have the interfaces but not the mechanism - e.g. GNU/Hurd at the time
2737 of writing. So for that error, carry on - we just can't do an IP options
2740 DEBUG(D_receive) debug_printf("checking for IP options\n");
2742 if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, US (ipopt),
2745 if (errno != ENOPROTOOPT)
2747 log_write(0, LOG_MAIN, "getsockopt() failed from %s: %s",
2748 host_and_ident(FALSE), strerror(errno));
2749 smtp_printf("451 SMTP service not available\r\n", FALSE);
2754 /* Deal with any IP options that are set. On the systems I have looked at,
2755 the value of MAX_IPOPTLEN has been 40, meaning that there should never be
2756 more logging data than will fit in big_buffer. Nevertheless, after somebody
2757 questioned this code, I've added in some paranoid checking. */
2759 else if (optlen > 0)
2761 uschar * p = big_buffer;
2762 uschar * pend = big_buffer + big_buffer_size;
2765 struct in_addr addr;
2768 uschar * optstart = US (ipopt->__data);
2769 # elif OPTSTYLE == 2
2770 uschar * optstart = US (ipopt->ip_opts);
2772 uschar * optstart = US (ipopt->ipopt_list);
2775 DEBUG(D_receive) debug_printf("IP options exist\n");
2777 Ustrcpy(p, "IP options on incoming call:");
2780 for (uschar * opt = optstart; opt && opt < US (ipopt) + optlen; )
2795 string_format(p, pend-p, " %s [@%s",
2796 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2797 inet_ntoa(*((struct in_addr *)(&(ipopt->faddr)))))
2798 # elif OPTSTYLE == 2
2799 string_format(p, pend-p, " %s [@%s",
2800 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2801 inet_ntoa(ipopt->ip_dst))
2803 string_format(p, pend-p, " %s [@%s",
2804 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2805 inet_ntoa(ipopt->ipopt_dst))
2814 optcount = (opt[1] - 3) / sizeof(struct in_addr);
2816 while (optcount-- > 0)
2818 memcpy(&addr, adptr, sizeof(addr));
2819 if (!string_format(p, pend - p - 1, "%s%s",
2820 (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2826 adptr += sizeof(struct in_addr);
2834 if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2837 for (int i = 0; i < opt[1]; i++)
2838 p += sprintf(CS p, "%2.2x ", opt[i]);
2846 log_write(0, LOG_MAIN, "%s", big_buffer);
2848 /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2850 log_write(0, LOG_MAIN|LOG_REJECT,
2851 "connection from %s refused (IP options)", host_and_ident(FALSE));
2853 smtp_printf("554 SMTP service not available\r\n", FALSE);
2857 /* Length of options = 0 => there are no options */
2859 else DEBUG(D_receive) debug_printf("no IP options found\n");
2861 #endif /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2863 /* Set keep-alive in socket options. The option is on by default. This
2864 setting is an attempt to get rid of some hanging connections that stick in
2865 read() when the remote end (usually a dialup) goes away. */
2867 if (smtp_accept_keepalive && !f.sender_host_notsocket)
2868 ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2870 /* If the current host matches host_lookup, set the name by doing a
2871 reverse lookup. On failure, sender_host_name will be NULL and
2872 host_lookup_failed will be TRUE. This may or may not be serious - optional
2875 if (verify_check_host(&host_lookup) == OK)
2877 (void)host_name_lookup();
2878 host_build_sender_fullhost();
2881 /* Delay this until we have the full name, if it is looked up. */
2883 set_process_info("handling incoming connection from %s",
2884 host_and_ident(FALSE));
2886 /* Expand smtp_receive_timeout, if needed */
2888 if (smtp_receive_timeout_s)
2891 if ( !(exp = expand_string(smtp_receive_timeout_s))
2893 || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2895 log_write(0, LOG_MAIN|LOG_PANIC,
2896 "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2899 /* Test for explicit connection rejection */
2901 if (verify_check_host(&host_reject_connection) == OK)
2903 log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2904 "from %s (host_reject_connection)", host_and_ident(FALSE));
2906 if (!tls_in.on_connect)
2908 smtp_printf("554 SMTP service not available\r\n", FALSE);
2912 /* Test with TCP Wrappers if so configured. There is a problem in that
2913 hosts_ctl() returns 0 (deny) under a number of system failure circumstances,
2914 such as disks dying. In these cases, it is desirable to reject with a 4xx
2915 error instead of a 5xx error. There isn't a "right" way to detect such
2916 problems. The following kludge is used: errno is zeroed before calling
2917 hosts_ctl(). If the result is "reject", a 5xx error is given only if the
2918 value of errno is 0 or ENOENT (which happens if /etc/hosts.{allow,deny} does
2921 #ifdef USE_TCP_WRAPPERS
2923 if (!(tcp_wrappers_name = expand_string(tcp_wrappers_daemon_name)))
2924 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" "
2925 "(tcp_wrappers_name) failed: %s", string_printing(tcp_wrappers_name),
2926 expand_string_message);
2928 if (!hosts_ctl(tcp_wrappers_name,
2929 sender_host_name ? CS sender_host_name : STRING_UNKNOWN,
2930 sender_host_address ? CS sender_host_address : STRING_UNKNOWN,
2931 sender_ident ? CS sender_ident : STRING_UNKNOWN))
2933 if (errno == 0 || errno == ENOENT)
2935 HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
2936 log_write(L_connection_reject,
2937 LOG_MAIN|LOG_REJECT, "refused connection from %s "
2938 "(tcp wrappers)", host_and_ident(FALSE));
2939 smtp_printf("554 SMTP service not available\r\n", FALSE);
2943 int save_errno = errno;
2944 HDEBUG(D_receive) debug_printf("tcp wrappers rejected with unexpected "
2945 "errno value %d\n", save_errno);
2946 log_write(L_connection_reject,
2947 LOG_MAIN|LOG_REJECT, "temporarily refused connection from %s "
2948 "(tcp wrappers errno=%d)", host_and_ident(FALSE), save_errno);
2949 smtp_printf("451 Temporary local problem - please try later\r\n", FALSE);
2955 /* Check for reserved slots. The value of smtp_accept_count has already been
2956 incremented to include this process. */
2958 if (smtp_accept_max > 0 &&
2959 smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
2961 if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2963 log_write(L_connection_reject,
2964 LOG_MAIN, "temporarily refused connection from %s: not in "
2965 "reserve list: connected=%d max=%d reserve=%d%s",
2966 host_and_ident(FALSE), smtp_accept_count - 1, smtp_accept_max,
2967 smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
2968 smtp_printf("421 %s: Too many concurrent SMTP connections; "
2969 "please try again later\r\n", FALSE, smtp_active_hostname);
2972 reserved_host = TRUE;
2975 /* If a load level above which only messages from reserved hosts are
2976 accepted is set, check the load. For incoming calls via the daemon, the
2977 check is done in the superior process if there are no reserved hosts, to
2978 save a fork. In all cases, the load average will already be available
2979 in a global variable at this point. */
2981 if (smtp_load_reserve >= 0 &&
2982 load_average > smtp_load_reserve &&
2984 verify_check_host(&smtp_reserve_hosts) != OK)
2986 log_write(L_connection_reject,
2987 LOG_MAIN, "temporarily refused connection from %s: not in "
2988 "reserve list and load average = %.2f", host_and_ident(FALSE),
2989 (double)load_average/1000.0);
2990 smtp_printf("421 %s: Too much load; please try again later\r\n", FALSE,
2991 smtp_active_hostname);
2995 /* Determine whether unqualified senders or recipients are permitted
2996 for this host. Unfortunately, we have to do this every time, in order to
2997 set the flags so that they can be inspected when considering qualifying
2998 addresses in the headers. For a site that permits no qualification, this
2999 won't take long, however. */
3001 f.allow_unqualified_sender =
3002 verify_check_host(&sender_unqualified_hosts) == OK;
3004 f.allow_unqualified_recipient =
3005 verify_check_host(&recipient_unqualified_hosts) == OK;
3007 /* Determine whether HELO/EHLO is required for this host. The requirement
3008 can be hard or soft. */
3010 fl.helo_verify_required = verify_check_host(&helo_verify_hosts) == OK;
3011 if (!fl.helo_verify_required)
3012 fl.helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
3014 /* Determine whether this hosts is permitted to send syntactic junk
3015 after a HELO or EHLO command. */
3017 fl.helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
3020 /* For batch SMTP input we are now done. */
3022 if (smtp_batched_input) return TRUE;
3024 /* If valid Proxy Protocol source is connecting, set up session.
3025 Failure will not allow any SMTP function other than QUIT. */
3027 #ifdef SUPPORT_PROXY
3028 proxy_session = FALSE;
3029 f.proxy_session_failed = FALSE;
3030 if (check_proxy_protocol_host())
3031 setup_proxy_protocol_host();
3034 /* Run the connect ACL if it exists */
3037 if (acl_smtp_connect)
3040 if ((rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
3044 if (tls_in.on_connect)
3045 log_connect_tls_drop(US"'connect' ACL", log_msg);
3048 (void) smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
3053 /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
3054 smtps port for use with older style SSL MTAs. */
3057 if (tls_in.on_connect)
3059 if (tls_server_start(&user_msg) != OK)
3060 return smtp_log_tls_fail(user_msg);
3061 cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
3065 /* Output the initial message for a two-way SMTP connection. It may contain
3066 newlines, which then cause a multi-line response to be given. */
3068 code = US"220"; /* Default status code */
3069 esc = US""; /* Default extended status code */
3070 esclen = 0; /* Length of esc */
3076 smtp_message_code(&code, &codelen, &s, NULL, TRUE);
3080 esclen = codelen - 4;
3083 else if (!(s = expand_string(smtp_banner)))
3085 log_write(0, f.expand_string_forcedfail ? LOG_MAIN : LOG_MAIN|LOG_PANIC_DIE,
3086 "Expansion of \"%s\" (smtp_banner) failed: %s",
3087 smtp_banner, expand_string_message);
3088 /* for force-fail */
3090 if (tls_in.on_connect) tls_close(NULL, TLS_SHUTDOWN_WAIT);
3095 /* Remove any terminating newlines; might as well remove trailing space too */
3098 while (p > s && isspace(p[-1])) p--;
3099 s = string_copyn(s, p-s);
3101 /* It seems that CC:Mail is braindead, and assumes that the greeting message
3102 is all contained in a single IP packet. The original code wrote out the
3103 greeting using several calls to fprint/fputc, and on busy servers this could
3104 cause it to be split over more than one packet - which caused CC:Mail to fall
3105 over when it got the second part of the greeting after sending its first
3106 command. Sigh. To try to avoid this, build the complete greeting message
3107 first, and output it in one fell swoop. This gives a better chance of it
3108 ending up as a single packet. */
3110 ss = string_get(256);
3113 do /* At least once, in case we have an empty string */
3116 uschar *linebreak = Ustrchr(p, '\n');
3117 ss = string_catn(ss, code, 3);
3121 ss = string_catn(ss, US" ", 1);
3125 len = linebreak - p;
3126 ss = string_catn(ss, US"-", 1);
3128 ss = string_catn(ss, esc, esclen);
3129 ss = string_catn(ss, p, len);
3130 ss = string_catn(ss, US"\r\n", 2);
3136 /* Before we write the banner, check that there is no input pending, unless
3137 this synchronisation check is disabled. */
3139 #ifndef DISABLE_PIPE_CONNECT
3140 fl.pipe_connect_acceptable =
3141 sender_host_address && verify_check_host(&pipe_connect_advertise_hosts) == OK;
3144 if (fl.pipe_connect_acceptable)
3145 f.smtp_in_early_pipe_used = TRUE;
3151 unsigned n = smtp_inend - smtp_inptr;
3152 if (n > 128) n = 128;
3154 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol "
3155 "synchronization error (input sent without waiting for greeting): "
3156 "rejected connection from %s input=\"%s\"", host_and_ident(TRUE),
3157 string_printing(string_copyn(smtp_inptr, n)));
3158 smtp_printf("554 SMTP synchronization error\r\n", FALSE);
3162 /* Now output the banner */
3163 /*XXX the ehlo-resp code does its own tls/nontls bit. Maybe subroutine that? */
3166 #ifndef DISABLE_PIPE_CONNECT
3167 fl.pipe_connect_acceptable && pipeline_connect_sends(),
3171 string_from_gstring(ss));
3173 /* Attempt to see if we sent the banner before the last ACK of the 3-way
3174 handshake arrived. If so we must have managed a TFO. */
3177 if (sender_host_address && !f.sender_host_notsocket) tfo_in_check();
3187 /*************************************************
3188 * Handle SMTP syntax and protocol errors *
3189 *************************************************/
3191 /* Write to the log for SMTP syntax errors in incoming commands, if configured
3192 to do so. Then transmit the error response. The return value depends on the
3193 number of syntax and protocol errors in this SMTP session.
3196 type error type, given as a log flag bit
3197 code response code; <= 0 means don't send a response
3198 data data to reflect in the response (can be NULL)
3199 errmess the error message
3201 Returns: -1 limit of syntax/protocol errors NOT exceeded
3202 +1 limit of syntax/protocol errors IS exceeded
3204 These values fit in with the values of the "done" variable in the main
3205 processing loop in smtp_setup_msg(). */
3208 synprot_error(int type, int code, uschar *data, uschar *errmess)
3212 log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
3213 type == L_smtp_syntax_error ? "syntax" : "protocol",
3214 string_printing(smtp_cmd_buffer), host_and_ident(TRUE), errmess);
3216 if (++synprot_error_count > smtp_max_synprot_errors)
3219 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3220 "syntax or protocol errors (last command was \"%s\", %s)",
3221 host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
3222 string_from_gstring(s_connhad_log(NULL))
3228 smtp_printf("%d%c%s%s%s\r\n", FALSE, code, yield == 1 ? '-' : ' ',
3229 data ? data : US"", data ? US": " : US"", errmess);
3231 smtp_printf("%d Too many syntax or protocol errors\r\n", FALSE, code);
3240 /*************************************************
3241 * Send SMTP response, possibly multiline *
3242 *************************************************/
3244 /* There are, it seems, broken clients out there that cannot handle multiline
3245 responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
3246 output nothing for non-final calls, and only the first line for anything else.
3249 code SMTP code, may involve extended status codes
3250 codelen length of smtp code; if > 4 there's an ESC
3251 final FALSE if the last line isn't the final line
3252 msg message text, possibly containing newlines
3258 smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
3263 if (!final && f.no_multiline_responses) return;
3268 esclen = codelen - 4;
3271 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
3272 have had the same. Note: this code is also present in smtp_printf(). It would
3273 be tidier to have it only in one place, but when it was added, it was easier to
3274 do it that way, so as not to have to mess with the code for the RCPT command,
3275 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
3277 if (fl.rcpt_in_progress)
3279 if (!rcpt_smtp_response)
3280 rcpt_smtp_response = string_copy(msg);
3281 else if (fl.rcpt_smtp_response_same &&
3282 Ustrcmp(rcpt_smtp_response, msg) != 0)
3283 fl.rcpt_smtp_response_same = FALSE;
3284 fl.rcpt_in_progress = FALSE;
3287 /* Now output the message, splitting it up into multiple lines if necessary.
3288 We only handle pipelining these responses as far as nonfinal/final groups,
3289 not the whole MAIL/RCPT/DATA response set. */
3293 uschar *nl = Ustrchr(msg, '\n');
3296 smtp_printf("%.3s%c%.*s%s\r\n", !final, code, final ? ' ':'-', esclen, esc, msg);
3299 else if (nl[1] == 0 || f.no_multiline_responses)
3301 smtp_printf("%.3s%c%.*s%.*s\r\n", !final, code, final ? ' ':'-', esclen, esc,
3302 (int)(nl - msg), msg);
3307 smtp_printf("%.3s-%.*s%.*s\r\n", TRUE, code, esclen, esc, (int)(nl - msg), msg);
3309 Uskip_whitespace(&msg);
3317 /*************************************************
3318 * Parse user SMTP message *
3319 *************************************************/
3321 /* This function allows for user messages overriding the response code details
3322 by providing a suitable response code string at the start of the message
3323 user_msg. Check the message for starting with a response code and optionally an
3324 extended status code. If found, check that the first digit is valid, and if so,
3325 change the code pointer and length to use the replacement. An invalid code
3326 causes a panic log; in this case, if the log messages is the same as the user
3327 message, we must also adjust the value of the log message to show the code that
3328 is actually going to be used (the original one).
3330 This function is global because it is called from receive.c as well as within
3333 Note that the code length returned includes the terminating whitespace
3334 character, which is always included in the regex match.
3337 code SMTP code, may involve extended status codes
3338 codelen length of smtp code; if > 4 there's an ESC
3340 log_msg optional log message, to be adjusted with the new SMTP code
3341 check_valid if true, verify the response code
3347 smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg,
3353 if (!msg || !*msg || !regex_match(regex_smtp_code, *msg, -1, &match))
3356 len = Ustrlen(match);
3357 if (check_valid && (*msg)[0] != (*code)[0])
3359 log_write(0, LOG_MAIN|LOG_PANIC, "configured error code starts with "
3360 "incorrect digit (expected %c) in \"%s\"", (*code)[0], *msg);
3361 if (log_msg && *log_msg == *msg)
3362 *log_msg = string_sprintf("%s %s", *code, *log_msg + len);
3367 *codelen = len; /* Includes final space */
3369 *msg += len; /* Chop the code off the message */
3376 /*************************************************
3377 * Handle an ACL failure *
3378 *************************************************/
3380 /* This function is called when acl_check() fails. As well as calls from within
3381 this module, it is called from receive.c for an ACL after DATA. It sorts out
3382 logging the incident, and sends the error response. A message containing
3383 newlines is turned into a multiline SMTP response, but for logging, only the
3386 There's a table of default permanent failure response codes to use in
3387 globals.c, along with the table of names. VFRY is special. Despite RFC1123 it
3388 defaults disabled in Exim. However, discussion in connection with RFC 821bis
3389 (aka RFC 2821) has concluded that the response should be 252 in the disabled
3390 state, because there are broken clients that try VRFY before RCPT. A 5xx
3391 response should be given only when the address is positively known to be
3392 undeliverable. Sigh. We return 252 if there is no VRFY ACL or it provides
3393 no explicit code, but if there is one we let it know best.
3394 Also, for ETRN, 458 is given on refusal, and for AUTH, 503.
3396 From Exim 4.63, it is possible to override the response code details by
3397 providing a suitable response code string at the start of the message provided
3398 in user_msg. The code's first digit is checked for validity.
3401 where where the ACL was called from
3403 user_msg a message that can be included in an SMTP response
3404 log_msg a message for logging
3406 Returns: 0 in most cases
3407 2 if the failure code was FAIL_DROP, in which case the
3408 SMTP connection should be dropped (this value fits with the
3409 "done" variable in smtp_setup_msg() below)
3413 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
3415 BOOL drop = rc == FAIL_DROP;
3419 uschar *sender_info = US"";
3422 if (drop) rc = FAIL;
3424 /* Set the default SMTP code, and allow a user message to change it. */
3426 smtp_code = rc == FAIL ? acl_wherecodes[where] : US"451";
3427 smtp_message_code(&smtp_code, &codelen, &user_msg, &log_msg,
3428 where != ACL_WHERE_VRFY);
3430 /* We used to have sender_address here; however, there was a bug that was not
3431 updating sender_address after a rewrite during a verify. When this bug was
3432 fixed, sender_address at this point became the rewritten address. I'm not sure
3433 this is what should be logged, so I've changed to logging the unrewritten
3434 address to retain backward compatibility. */
3438 #ifdef WITH_CONTENT_SCAN
3439 case ACL_WHERE_MIME: what = US"during MIME ACL checks"; break;
3441 case ACL_WHERE_PREDATA: what = US"DATA"; break;
3442 case ACL_WHERE_DATA: what = US"after DATA"; break;
3443 #ifndef DISABLE_PRDR
3444 case ACL_WHERE_PRDR: what = US"after DATA PRDR"; break;
3448 uschar * place = smtp_cmd_data ? smtp_cmd_data : US"in \"connect\" ACL";
3451 if (where == ACL_WHERE_AUTH) /* avoid logging auth creds */
3454 for (s = smtp_cmd_data; *s && !isspace(*s); ) s++;
3455 lim = s - smtp_cmd_data; /* atop after method */
3457 what = string_sprintf("%s %.*s", acl_wherenames[where], lim, place);
3462 case ACL_WHERE_RCPT:
3463 case ACL_WHERE_DATA:
3464 #ifdef WITH_CONTENT_SCAN
3465 case ACL_WHERE_MIME:
3467 sender_info = string_sprintf("F=<%s>%s%s%s%s ",
3468 sender_address_unrewritten ? sender_address_unrewritten : sender_address,
3469 sender_host_authenticated ? US" A=" : US"",
3470 sender_host_authenticated ? sender_host_authenticated : US"",
3471 sender_host_authenticated && authenticated_id ? US":" : US"",
3472 sender_host_authenticated && authenticated_id ? authenticated_id : US""
3477 /* If there's been a sender verification failure with a specific message, and
3478 we have not sent a response about it yet, do so now, as a preliminary line for
3479 failures, but not defers. However, always log it for defer, and log it for fail
3480 unless the sender_verify_fail log selector has been turned off. */
3482 if (sender_verified_failed &&
3483 !testflag(sender_verified_failed, af_sverify_told))
3485 BOOL save_rcpt_in_progress = fl.rcpt_in_progress;
3486 fl.rcpt_in_progress = FALSE; /* So as not to treat these as the error */
3488 setflag(sender_verified_failed, af_sverify_told);
3490 if (rc != FAIL || LOGGING(sender_verify_fail))
3491 log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
3492 host_and_ident(TRUE),
3493 ((sender_verified_failed->special_action & 255) == DEFER)? "defer":"fail",
3494 sender_verified_failed->address,
3495 (sender_verified_failed->message == NULL)? US"" :
3496 string_sprintf(": %s", sender_verified_failed->message));
3498 if (rc == FAIL && sender_verified_failed->user_message)
3499 smtp_respond(smtp_code, codelen, FALSE, string_sprintf(
3500 testflag(sender_verified_failed, af_verify_pmfail)?
3501 "Postmaster verification failed while checking <%s>\n%s\n"
3502 "Several RFCs state that you are required to have a postmaster\n"
3503 "mailbox for each mail domain. This host does not accept mail\n"
3504 "from domains whose servers reject the postmaster address."
3506 testflag(sender_verified_failed, af_verify_nsfail)?
3507 "Callback setup failed while verifying <%s>\n%s\n"
3508 "The initial connection, or a HELO or MAIL FROM:<> command was\n"
3509 "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
3510 "RFC requirements, and stops you from receiving standard bounce\n"
3511 "messages. This host does not accept mail from domains whose servers\n"
3514 "Verification failed for <%s>\n%s",
3515 sender_verified_failed->address,
3516 sender_verified_failed->user_message));
3518 fl.rcpt_in_progress = save_rcpt_in_progress;
3521 /* Sort out text for logging */
3523 log_msg = log_msg ? string_sprintf(": %s", log_msg) : US"";
3524 if ((lognl = Ustrchr(log_msg, '\n'))) *lognl = 0;
3526 /* Send permanent failure response to the command, but the code used isn't
3527 always a 5xx one - see comments at the start of this function. If the original
3528 rc was FAIL_DROP we drop the connection and yield 2. */
3531 smtp_respond(smtp_code, codelen, TRUE,
3532 user_msg ? user_msg : US"Administrative prohibition");
3534 /* Send temporary failure response to the command. Don't give any details,
3535 unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
3536 verb, and for a header verify when smtp_return_error_details is set.
3538 This conditional logic is all somewhat of a mess because of the odd
3539 interactions between temp_details and return_error_details. One day it should
3540 be re-implemented in a tidier fashion. */
3543 if (f.acl_temp_details && user_msg)
3545 if ( smtp_return_error_details
3546 && sender_verified_failed
3547 && sender_verified_failed->message
3549 smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
3551 smtp_respond(smtp_code, codelen, TRUE, user_msg);
3554 smtp_respond(smtp_code, codelen, TRUE,
3555 US"Temporary local problem - please try later");
3557 /* Log the incident to the logs that are specified by log_reject_target
3558 (default main, reject). This can be empty to suppress logging of rejections. If
3559 the connection is not forcibly to be dropped, return 0. Otherwise, log why it
3560 is closing if required and return 2. */
3562 if (log_reject_target != 0)
3565 gstring * g = s_tlslog(NULL);
3566 uschar * tls = string_from_gstring(g);
3567 if (!tls) tls = US"";
3569 uschar * tls = US"";
3571 log_write(where == ACL_WHERE_CONNECT ? L_connection_reject : 0,
3572 log_reject_target, "%s%s%s %s%srejected %s%s",
3573 LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
3574 host_and_ident(TRUE),
3577 rc == FAIL ? US"" : US"temporarily ",
3581 if (!drop) return 0;
3583 log_close_event(US"by DROP in ACL");
3585 /* Run the not-quit ACL, but without any custom messages. This should not be a
3586 problem, because we get here only if some other ACL has issued "drop", and
3587 in that case, *its* custom messages will have been used above. */
3589 smtp_notquit_exit(US"acl-drop", NULL, NULL);
3591 /* An overenthusiastic fail2ban/iptables implimentation has been seen to result
3592 in the TCP conn staying open, and retrying, despite this process exiting. A
3593 malicious client could possibly do the same, tying up server netowrking
3594 resources. Close the socket explicitly to try to avoid that (there's a note in
3595 the Linux socket(7) manpage, SO_LINGER para, to the effect that exim() without
3596 close() results in the socket always lingering). */
3598 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
3599 DEBUG(D_any) debug_printf_indent("SMTP(close)>>\n");
3600 (void) fclose(smtp_in);
3601 (void) fclose(smtp_out);
3609 /*************************************************
3610 * Handle SMTP exit when QUIT is not given *
3611 *************************************************/
3613 /* This function provides a logging/statistics hook for when an SMTP connection
3614 is dropped on the floor or the other end goes away. It's a global function
3615 because it's called from receive.c as well as this module. As well as running
3616 the NOTQUIT ACL, if there is one, this function also outputs a final SMTP
3617 response, either with a custom message from the ACL, or using a default. There
3618 is one case, however, when no message is output - after "drop". In that case,
3619 the ACL that obeyed "drop" has already supplied the custom message, and NULL is
3620 passed to this function.
3622 In case things go wrong while processing this function, causing an error that
3623 may re-enter this function, there is a recursion check.
3626 reason What $smtp_notquit_reason will be set to in the ACL;
3627 if NULL, the ACL is not run
3628 code The error code to return as part of the response
3629 defaultrespond The default message if there's no user_msg
3635 smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
3638 uschar *user_msg = NULL;
3639 uschar *log_msg = NULL;
3641 /* Check for recursive call */
3643 if (fl.smtp_exit_function_called)
3645 log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
3649 fl.smtp_exit_function_called = TRUE;
3651 /* Call the not-QUIT ACL, if there is one, unless no reason is given. */
3653 if (acl_smtp_notquit && reason)
3655 smtp_notquit_reason = reason;
3656 if ((rc = acl_check(ACL_WHERE_NOTQUIT, NULL, acl_smtp_notquit, &user_msg,
3657 &log_msg)) == ERROR)
3658 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for not-QUIT returned ERROR: %s",
3662 /* If the connection was dropped, we certainly are no longer talking TLS */
3663 tls_in.active.sock = -1;
3665 /* Write an SMTP response if we are expected to give one. As the default
3666 responses are all internal, they should be reasonable size. */
3668 if (code && defaultrespond)
3671 smtp_respond(code, 3, TRUE, user_msg);
3677 va_start(ap, defaultrespond);
3678 g = string_vformat(NULL, SVFMT_EXTEND|SVFMT_REBUFFER, CS defaultrespond, ap);
3680 smtp_printf("%s %s\r\n", FALSE, code, string_from_gstring(g));
3689 /*************************************************
3690 * Verify HELO argument *
3691 *************************************************/
3693 /* This function is called if helo_verify_hosts or helo_try_verify_hosts is
3694 matched. It is also called from ACL processing if verify = helo is used and
3695 verification was not previously tried (i.e. helo_try_verify_hosts was not
3696 matched). The result of its processing is to set helo_verified and
3697 helo_verify_failed. These variables should both be FALSE for this function to
3700 Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
3701 for IPv6 ::ffff: literals.
3704 Returns: TRUE if testing was completed;
3705 FALSE on a temporary failure
3709 smtp_verify_helo(void)
3713 HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
3716 if (sender_helo_name == NULL)
3718 HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
3721 /* Deal with the case of -bs without an IP address */
3723 else if (sender_host_address == NULL)
3725 HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
3726 f.helo_verified = TRUE;
3729 /* Deal with the more common case when there is a sending IP address */
3731 else if (sender_helo_name[0] == '[')
3733 f.helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
3734 Ustrlen(sender_host_address)) == 0;
3737 if (!f.helo_verified)
3739 if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
3740 f.helo_verified = Ustrncmp(sender_helo_name + 1,
3741 sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
3746 { if (f.helo_verified) debug_printf("matched host address\n"); }
3749 /* Do a reverse lookup if one hasn't already given a positive or negative
3750 response. If that fails, or the name doesn't match, try checking with a forward
3755 if (sender_host_name == NULL && !host_lookup_failed)
3756 yield = host_name_lookup() != DEFER;
3758 /* If a host name is known, check it and all its aliases. */
3760 if (sender_host_name)
3761 if ((f.helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0))
3763 sender_helo_dnssec = sender_host_dnssec;
3764 HDEBUG(D_receive) debug_printf("matched host name\n");
3768 uschar **aliases = sender_host_aliases;
3770 if ((f.helo_verified = strcmpic(*aliases++, sender_helo_name) == 0))
3772 sender_helo_dnssec = sender_host_dnssec;
3776 HDEBUG(D_receive) if (f.helo_verified)
3777 debug_printf("matched alias %s\n", *(--aliases));
3780 /* Final attempt: try a forward lookup of the helo name */
3782 if (!f.helo_verified)
3786 {.name = sender_helo_name, .address = NULL, .mx = MX_NONE, .next = NULL};
3788 {.request = US"*", .require = US""};
3790 HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3792 rc = host_find_bydns(&h, NULL, HOST_FIND_BY_A | HOST_FIND_BY_AAAA,
3793 NULL, NULL, NULL, &d, NULL, NULL);
3794 if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3795 for (host_item * hh = &h; hh; hh = hh->next)
3796 if (Ustrcmp(hh->address, sender_host_address) == 0)
3798 f.helo_verified = TRUE;
3799 if (h.dnssec == DS_YES) sender_helo_dnssec = TRUE;
3801 debug_printf("IP address for %s matches calling address\n"
3802 "Forward DNS security status: %sverified\n",
3803 sender_helo_name, sender_helo_dnssec ? "" : "un");
3809 if (!f.helo_verified) f.helo_verify_failed = TRUE; /* We've tried ... */
3816 /*************************************************
3817 * Send user response message *
3818 *************************************************/
3820 /* This function is passed a default response code and a user message. It calls
3821 smtp_message_code() to check and possibly modify the response code, and then
3822 calls smtp_respond() to transmit the response. I put this into a function
3823 just to avoid a lot of repetition.
3826 code the response code
3827 user_msg the user message
3833 smtp_user_msg(uschar *code, uschar *user_msg)
3836 smtp_message_code(&code, &len, &user_msg, NULL, TRUE);
3837 smtp_respond(code, len, TRUE, user_msg);
3843 smtp_in_auth(auth_instance *au, uschar ** smtp_resp, uschar ** errmsg)
3845 const uschar *set_id = NULL;
3848 /* Set up globals for error messages */
3850 authenticator_name = au->name;
3851 driver_srcfile = au->srcfile;
3852 driver_srcline = au->srcline;
3854 /* Run the checking code, passing the remainder of the command line as
3855 data. Initials the $auth<n> variables as empty. Initialize $0 empty and set
3856 it as the only set numerical variable. The authenticator may set $auth<n>
3857 and also set other numeric variables. The $auth<n> variables are preferred
3858 nowadays; the numerical variables remain for backwards compatibility.
3860 Afterwards, have a go at expanding the set_id string, even if
3861 authentication failed - for bad passwords it can be useful to log the
3862 userid. On success, require set_id to expand and exist, and put it in
3863 authenticated_id. Save this in permanent store, as the working store gets
3864 reset at HELO, RSET, etc. */
3866 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
3868 expand_nlength[0] = 0; /* $0 contains nothing */
3870 rc = (au->info->servercode)(au, smtp_cmd_data);
3871 if (au->set_id) set_id = expand_string(au->set_id);
3872 expand_nmax = -1; /* Reset numeric variables */
3873 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL; /* Reset $auth<n> */
3874 driver_srcfile = authenticator_name = NULL; driver_srcline = 0;
3876 /* The value of authenticated_id is stored in the spool file and printed in
3877 log lines. It must not contain binary zeros or newline characters. In
3878 normal use, it never will, but when playing around or testing, this error
3879 can (did) happen. To guard against this, ensure that the id contains only
3880 printing characters. */
3882 if (set_id) set_id = string_printing(set_id);
3884 /* For the non-OK cases, set up additional logging data if set_id
3888 set_id = set_id && *set_id
3889 ? string_sprintf(" (set_id=%s)", set_id) : US"";
3891 /* Switch on the result */
3896 if (!au->set_id || set_id) /* Complete success */
3898 if (set_id) authenticated_id = string_copy_perm(set_id, TRUE);
3899 sender_host_authenticated = au->name;
3900 sender_host_auth_pubname = au->public_name;
3901 authentication_failed = FALSE;
3902 authenticated_fail_id = NULL; /* Impossible to already be set? */
3905 (sender_host_address ? protocols : protocols_local)
3906 [pextend + pauthed + (tls_in.active.sock >= 0 ? pcrpted:0)];
3907 *smtp_resp = *errmsg = US"235 Authentication succeeded";
3908 authenticated_by = au;
3912 /* Authentication succeeded, but we failed to expand the set_id string.
3913 Treat this as a temporary error. */
3915 auth_defer_msg = expand_string_message;
3919 if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3920 *smtp_resp = string_sprintf("435 Unable to authenticate at present%s",
3921 auth_defer_user_msg);
3922 *errmsg = string_sprintf("435 Unable to authenticate at present%s: %s",
3923 set_id, auth_defer_msg);
3927 *smtp_resp = *errmsg = US"501 Invalid base64 data";
3931 *smtp_resp = *errmsg = US"501 Authentication cancelled";
3935 *smtp_resp = *errmsg = US"553 Initial data not expected";
3939 if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3940 *smtp_resp = US"535 Incorrect authentication data";
3941 *errmsg = string_sprintf("535 Incorrect authentication data%s", set_id);
3945 if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3946 *smtp_resp = US"435 Internal error";
3947 *errmsg = string_sprintf("435 Internal error%s: return %d from authentication "
3948 "check", set_id, rc);
3960 qualify_recipient(uschar ** recipient, uschar * smtp_cmd_data, uschar * tag)
3963 if (f.allow_unqualified_recipient || strcmpic(*recipient, US"postmaster") == 0)
3965 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
3967 rd = Ustrlen(recipient) + 1;
3968 /* deconst ok as *recipient was not const */
3969 *recipient = US rewrite_address_qualify(*recipient, TRUE);
3972 smtp_printf("501 %s: recipient address must contain a domain\r\n", FALSE,
3974 log_write(L_smtp_syntax_error,
3975 LOG_MAIN|LOG_REJECT, "unqualified %s rejected: <%s> %s%s",
3976 tag, *recipient, host_and_ident(TRUE), host_lookup_msg);
3984 smtp_quit_handler(uschar ** user_msgp, uschar ** log_msgp)
3987 f.smtp_in_quit = TRUE;
3988 incomplete_transaction_log(US"QUIT");
3990 && acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, user_msgp, log_msgp)
3992 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
3995 #ifdef EXIM_TCP_CORK
3996 (void) setsockopt(fileno(smtp_out), IPPROTO_TCP, EXIM_TCP_CORK, US &on, sizeof(on));
4000 smtp_respond(US"221", 3, TRUE, *user_msgp);
4002 smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
4004 #ifdef SERVERSIDE_CLOSE_NOWAIT
4005 # ifndef DISABLE_TLS
4006 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
4009 log_close_event(US"by QUIT");
4012 # ifndef DISABLE_TLS
4013 tls_close(NULL, TLS_SHUTDOWN_WAIT);
4016 log_close_event(US"by QUIT");
4018 /* Pause, hoping client will FIN first so that they get the TIME_WAIT.
4019 The socket should become readble (though with no data) */
4021 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
4022 #endif /*!SERVERSIDE_CLOSE_NOWAIT*/
4027 smtp_rset_handler(void)
4030 incomplete_transaction_log(US"RSET");
4031 smtp_printf("250 Reset OK\r\n", FALSE);
4032 cmd_list[CMD_LIST_RSET].is_mail_cmd = FALSE;
4033 if (chunking_state > CHUNKING_OFFERED)
4034 chunking_state = CHUNKING_OFFERED;
4039 expand_mailmax(const uschar * s)
4041 if (!(s = expand_cstring(s)))
4042 log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand smtp_accept_max_per_connection");
4043 return *s ? Uatoi(s) : 0;
4046 /*************************************************
4047 * Initialize for SMTP incoming message *
4048 *************************************************/
4050 /* This function conducts the initial dialogue at the start of an incoming SMTP
4051 message, and builds a list of recipients. However, if the incoming message
4052 is part of a batch (-bS option) a separate function is called since it would
4053 be messy having tests splattered about all over this function. This function
4054 therefore handles the case where interaction is occurring. The input and output
4055 files are set up in smtp_in and smtp_out.
4057 The global recipients_list is set to point to a vector of recipient_item
4058 blocks, whose number is given by recipients_count. This is extended by the
4059 receive_add_recipient() function. The global variable sender_address is set to
4060 the sender's address. The yield is +1 if a message has been successfully
4061 started, 0 if a QUIT command was encountered or the connection was refused from
4062 the particular host, or -1 if the connection was lost.
4066 Returns: > 0 message successfully started (reached DATA)
4067 = 0 QUIT read or end of file reached or call refused
4072 smtp_setup_msg(void)
4075 BOOL toomany = FALSE;
4076 BOOL discarded = FALSE;
4077 BOOL last_was_rej_mail = FALSE;
4078 BOOL last_was_rcpt = FALSE;
4079 rmark reset_point = store_mark();
4081 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
4083 /* Reset for start of new message. We allow one RSET not to be counted as a
4084 nonmail command, for those MTAs that insist on sending it between every
4085 message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
4086 TLS between messages (an Exim client may do this if it has messages queued up
4087 for the host). Note: we do NOT reset AUTH at this point. */
4089 reset_point = smtp_reset(reset_point);
4090 message_ended = END_NOTSTARTED;
4092 chunking_state = f.chunking_offered ? CHUNKING_OFFERED : CHUNKING_NOT_OFFERED;
4094 cmd_list[CMD_LIST_RSET].is_mail_cmd = TRUE;
4095 cmd_list[CMD_LIST_HELO].is_mail_cmd = TRUE;
4096 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
4098 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
4101 if (lwr_receive_getc != NULL)
4103 /* This should have already happened, but if we've gotten confused,
4104 force a reset here. */
4105 DEBUG(D_receive) debug_printf("WARNING: smtp_setup_msg had to restore receive functions to lowers\n");
4106 bdat_pop_receive_functions();
4109 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
4111 had_command_sigterm = 0;
4112 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
4114 /* Batched SMTP is handled in a different function. */
4116 if (smtp_batched_input) return smtp_setup_batch_msg();
4119 if (smtp_in) /* Avoid pure-ACKs while in cmd pingpong phase */
4120 (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
4121 US &off, sizeof(off));
4124 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
4125 value. The values are 2 larger than the required yield of the function. */
4129 const uschar **argv;
4130 uschar *etrn_command;
4131 uschar *etrn_serialize_key;
4133 uschar *log_msg, *smtp_code;
4134 uschar *user_msg = NULL;
4135 uschar *recipient = NULL;
4136 uschar *hello = NULL;
4138 BOOL was_rej_mail = FALSE;
4139 BOOL was_rcpt = FALSE;
4140 void (*oldsignal)(int);
4142 int start, end, sender_domain, recipient_domain;
4145 uschar *orcpt = NULL;
4150 /* Check once per STARTTLS or SSL-on-connect for a TLS AUTH */
4151 if ( tls_in.active.sock >= 0
4153 && tls_in.certificate_verified
4154 && cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd
4157 cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = FALSE;
4159 for (auth_instance * au = auths; au; au = au->next)
4160 if (strcmpic(US"tls", au->driver_name) == 0)
4163 && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4164 &user_msg, &log_msg)) != OK
4166 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4169 smtp_cmd_data = NULL;
4171 if (smtp_in_auth(au, &s, &ss) == OK)
4172 { DEBUG(D_auth) debug_printf("tls auth succeeded\n"); }
4175 DEBUG(D_auth) debug_printf("tls auth not succeeded\n");
4176 #ifndef DISABLE_EVENT
4178 uschar * save_name = sender_host_authenticated, * logmsg;
4179 sender_host_authenticated = au->name;
4180 if ((logmsg = event_raise(event_action, US"auth:fail", s, NULL)))
4181 log_write(0, LOG_MAIN, "%s", logmsg);
4182 sender_host_authenticated = save_name;
4192 switch(smtp_read_command(
4193 #ifndef DISABLE_PIPE_CONNECT
4194 !fl.pipe_connect_acceptable,
4198 GETC_BUFFER_UNLIMITED))
4200 /* The AUTH command is not permitted to occur inside a transaction, and may
4201 occur successfully only once per connection. Actually, that isn't quite
4202 true. When TLS is started, all previous information about a connection must
4203 be discarded, so a new AUTH is permitted at that time.
4205 AUTH may only be used when it has been advertised. However, it seems that
4206 there are clients that send AUTH when it hasn't been advertised, some of
4207 them even doing this after HELO. And there are MTAs that accept this. Sigh.
4208 So there's a get-out that allows this to happen.
4210 AUTH is initially labelled as a "nonmail command" so that one occurrence
4211 doesn't get counted. We change the label here so that multiple failing
4212 AUTHS will eventually hit the nonmail threshold. */
4216 authentication_failed = TRUE;
4217 cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
4219 if (!fl.auth_advertised && !f.allow_auth_unadvertised)
4221 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4222 US"AUTH command used when not advertised");
4225 if (sender_host_authenticated)
4227 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4228 US"already authenticated");
4233 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4234 US"not permitted in mail transaction");
4241 && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4242 &user_msg, &log_msg)) != OK
4245 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4249 /* Find the name of the requested authentication mechanism. */
4252 for (; (c = *smtp_cmd_data) && !isspace(c); smtp_cmd_data++)
4253 if (!isalnum(c) && c != '-' && c != '_')
4255 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4256 US"invalid character in authentication mechanism name");
4260 /* If not at the end of the line, we must be at white space. Terminate the
4261 name and move the pointer on to any data that may be present. */
4265 *smtp_cmd_data++ = 0;
4266 while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
4269 /* Search for an authentication mechanism which is configured for use
4270 as a server and which has been advertised (unless, sigh, allow_auth_
4271 unadvertised is set). */
4275 uschar * smtp_resp, * errmsg;
4277 for (au = auths; au; au = au->next)
4278 if (strcmpic(s, au->public_name) == 0 && au->server &&
4279 (au->advertised || f.allow_auth_unadvertised))
4284 int rc = smtp_in_auth(au, &smtp_resp, &errmsg);
4286 smtp_printf("%s\r\n", FALSE, smtp_resp);
4289 uschar * logmsg = NULL;
4290 #ifndef DISABLE_EVENT
4291 {uschar * save_name = sender_host_authenticated;
4292 sender_host_authenticated = au->name;
4293 logmsg = event_raise(event_action, US"auth:fail", smtp_resp, NULL);
4294 sender_host_authenticated = save_name;
4298 log_write(0, LOG_MAIN|LOG_REJECT, "%s", logmsg);
4300 log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
4301 au->name, host_and_ident(FALSE), errmsg);
4305 done = synprot_error(L_smtp_protocol_error, 504, NULL,
4306 string_sprintf("%s authentication mechanism not supported", s));
4309 break; /* AUTH_CMD */
4311 /* The HELO/EHLO commands are permitted to appear in the middle of a
4312 session as well as at the beginning. They have the effect of a reset in
4313 addition to their other functions. Their absence at the start cannot be
4314 taken to be an error.
4318 If the EHLO command is not acceptable to the SMTP server, 501, 500,
4319 or 502 failure replies MUST be returned as appropriate. The SMTP
4320 server MUST stay in the same state after transmitting these replies
4321 that it was in before the EHLO was received.
4323 Therefore, we do not do the reset until after checking the command for
4324 acceptability. This change was made for Exim release 4.11. Previously
4325 it did the reset first. */
4338 HELO_EHLO: /* Common code for HELO and EHLO */
4339 cmd_list[CMD_LIST_HELO].is_mail_cmd = FALSE;
4340 cmd_list[CMD_LIST_EHLO].is_mail_cmd = FALSE;
4342 /* Reject the HELO if its argument was invalid or non-existent. A
4343 successful check causes the argument to be saved in malloc store. */
4345 if (!check_helo(smtp_cmd_data))
4347 smtp_printf("501 Syntactically invalid %s argument(s)\r\n", FALSE, hello);
4349 log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
4350 "invalid argument(s): %s", hello, host_and_ident(FALSE),
4351 *smtp_cmd_argument == 0 ? US"(no argument given)" :
4352 string_printing(smtp_cmd_argument));
4354 if (++synprot_error_count > smtp_max_synprot_errors)
4356 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
4357 "syntax or protocol errors (last command was \"%s\", %s)",
4358 host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
4359 string_from_gstring(s_connhad_log(NULL))
4367 /* If sender_host_unknown is true, we have got here via the -bs interface,
4368 not called from inetd. Otherwise, we are running an IP connection and the
4369 host address will be set. If the helo name is the primary name of this
4370 host and we haven't done a reverse lookup, force one now. If helo_verify_required
4371 is set, ensure that the HELO name matches the actual host. If helo_verify
4372 is set, do the same check, but softly. */
4374 if (!f.sender_host_unknown)
4376 BOOL old_helo_verified = f.helo_verified;
4377 uschar *p = smtp_cmd_data;
4379 while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
4382 /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
4383 because otherwise the log can be confusing. */
4385 if ( !sender_host_name
4386 && match_isinlist(sender_helo_name, CUSS &helo_lookup_domains, 0,
4387 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL) == OK)
4388 (void)host_name_lookup();
4390 /* Rebuild the fullhost info to include the HELO name (and the real name
4391 if it was looked up.) */
4393 host_build_sender_fullhost(); /* Rebuild */
4394 set_process_info("handling%s incoming connection from %s",
4395 tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE));
4397 /* Verify if configured. This doesn't give much security, but it does
4398 make some people happy to be able to do it. If helo_verify_required is set,
4399 (host matches helo_verify_hosts) failure forces rejection. If helo_verify
4400 is set (host matches helo_try_verify_hosts), it does not. This is perhaps
4401 now obsolescent, since the verification can now be requested selectively
4404 f.helo_verified = f.helo_verify_failed = sender_helo_dnssec = FALSE;
4405 if (fl.helo_verify_required || fl.helo_verify)
4407 BOOL tempfail = !smtp_verify_helo();
4408 if (!f.helo_verified)
4410 if (fl.helo_verify_required)
4412 smtp_printf("%d %s argument does not match calling host\r\n", FALSE,
4413 tempfail? 451 : 550, hello);
4414 log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
4415 tempfail? "temporarily " : "",
4416 hello, sender_helo_name, host_and_ident(FALSE));
4417 f.helo_verified = old_helo_verified;
4418 break; /* End of HELO/EHLO processing */
4420 HDEBUG(D_all) debug_printf("%s verification failed but host is in "
4421 "helo_try_verify_hosts\n", hello);
4427 /* set up SPF context */
4428 spf_conn_init(sender_helo_name, sender_host_address);
4431 /* Apply an ACL check if one is defined; afterwards, recheck
4432 synchronization in case the client started sending in a delay. */
4435 if ((rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo,
4436 &user_msg, &log_msg)) != OK)
4438 done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
4439 sender_helo_name = NULL;
4440 host_build_sender_fullhost(); /* Rebuild */
4443 #ifndef DISABLE_PIPE_CONNECT
4444 else if (!fl.pipe_connect_acceptable && !check_sync())
4446 else if (!check_sync())
4450 /* Generate an OK reply. The default string includes the ident if present,
4451 and also the IP address if present. Reflecting back the ident is intended
4452 as a deterrent to mail forgers. For maximum efficiency, and also because
4453 some broken systems expect each response to be in a single packet, arrange
4454 that the entire reply is sent in one write(). */
4456 fl.auth_advertised = FALSE;
4457 f.smtp_in_pipelining_advertised = FALSE;
4459 fl.tls_advertised = FALSE;
4461 fl.dsn_advertised = FALSE;
4463 fl.smtputf8_advertised = FALSE;
4466 /* Expand the per-connection message count limit option */
4467 smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4469 smtp_code = US"250 "; /* Default response code plus space*/
4472 /* sender_host_name below will be tainted, so save on copy when we hit it */
4473 g = string_get_tainted(24, GET_TAINTED);
4474 g = string_fmt_append(g, "%.3s %s Hello %s%s%s",
4476 smtp_active_hostname,
4477 sender_ident ? sender_ident : US"",
4478 sender_ident ? US" at " : US"",
4479 sender_host_name ? sender_host_name : sender_helo_name);
4481 if (sender_host_address)
4482 g = string_fmt_append(g, " [%s]", sender_host_address);
4485 /* A user-supplied EHLO greeting may not contain more than one line. Note
4486 that the code returned by smtp_message_code() includes the terminating
4487 whitespace character. */
4493 smtp_message_code(&smtp_code, &codelen, &user_msg, NULL, TRUE);
4494 s = string_sprintf("%.*s%s", codelen, smtp_code, user_msg);
4495 if ((ss = strpbrk(CS s, "\r\n")) != NULL)
4497 log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
4498 "newlines: message truncated: %s", string_printing(s));
4501 g = string_cat(NULL, s);
4504 g = string_catn(g, US"\r\n", 2);
4506 /* If we received EHLO, we must create a multiline response which includes
4507 the functions supported. */
4511 g->s[3] = '-'; /* overwrite the space after the SMTP response code */
4513 /* I'm not entirely happy with this, as an MTA is supposed to check
4514 that it has enough room to accept a message of maximum size before
4515 it sends this. However, there seems little point in not sending it.
4516 The actual size check happens later at MAIL FROM time. By postponing it
4517 till then, VRFY and EXPN can be used after EHLO when space is short. */
4519 if (thismessage_size_limit > 0)
4520 g = string_fmt_append(g, "%.3s-SIZE %d\r\n", smtp_code,
4521 thismessage_size_limit);
4524 g = string_catn(g, smtp_code, 3);
4525 g = string_catn(g, US"-SIZE\r\n", 7);
4528 #ifdef EXPERIMENTAL_ESMTP_LIMITS
4529 if ( (smtp_mailcmd_max > 0 || recipients_max)
4530 && verify_check_host(&limits_advertise_hosts) == OK)
4532 g = string_fmt_append(g, "%.3s-LIMITS", smtp_code);
4533 if (smtp_mailcmd_max > 0)
4534 g = string_fmt_append(g, " MAILMAX=%d", smtp_mailcmd_max);
4536 g = string_fmt_append(g, " RCPTMAX=%d", recipients_max);
4537 g = string_catn(g, US"\r\n", 2);
4541 /* Exim does not do protocol conversion or data conversion. It is 8-bit
4542 clean; if it has an 8-bit character in its hand, it just sends it. It
4543 cannot therefore specify 8BITMIME and remain consistent with the RFCs.
4544 However, some users want this option simply in order to stop MUAs
4545 mangling messages that contain top-bit-set characters. It is therefore
4546 provided as an option. */
4548 if (accept_8bitmime)
4550 g = string_catn(g, smtp_code, 3);
4551 g = string_catn(g, US"-8BITMIME\r\n", 11);
4554 /* Advertise DSN support if configured to do so. */
4555 if (verify_check_host(&dsn_advertise_hosts) != FAIL)
4557 g = string_catn(g, smtp_code, 3);
4558 g = string_catn(g, US"-DSN\r\n", 6);
4559 fl.dsn_advertised = TRUE;
4562 /* Advertise ETRN/VRFY/EXPN if there's are ACL checking whether a host is
4563 permitted to issue them; a check is made when any host actually tries. */
4567 g = string_catn(g, smtp_code, 3);
4568 g = string_catn(g, US"-ETRN\r\n", 7);
4572 g = string_catn(g, smtp_code, 3);
4573 g = string_catn(g, US"-VRFY\r\n", 7);
4577 g = string_catn(g, smtp_code, 3);
4578 g = string_catn(g, US"-EXPN\r\n", 7);
4581 /* Exim is quite happy with pipelining, so let the other end know that
4582 it is safe to use it, unless advertising is disabled. */
4584 if ( f.pipelining_enable
4585 && verify_check_host(&pipelining_advertise_hosts) == OK)
4587 g = string_catn(g, smtp_code, 3);
4588 g = string_catn(g, US"-PIPELINING\r\n", 13);
4589 sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
4590 f.smtp_in_pipelining_advertised = TRUE;
4592 #ifndef DISABLE_PIPE_CONNECT
4593 if (fl.pipe_connect_acceptable)
4595 f.smtp_in_early_pipe_advertised = TRUE;
4596 g = string_catn(g, smtp_code, 3);
4597 g = string_catn(g, US"-" EARLY_PIPE_FEATURE_NAME "\r\n", EARLY_PIPE_FEATURE_LEN+3);
4603 /* If any server authentication mechanisms are configured, advertise
4604 them if the current host is in auth_advertise_hosts. The problem with
4605 advertising always is that some clients then require users to
4606 authenticate (and aren't configurable otherwise) even though it may not
4607 be necessary (e.g. if the host is in host_accept_relay).
4609 RFC 2222 states that SASL mechanism names contain only upper case
4610 letters, so output the names in upper case, though we actually recognize
4611 them in either case in the AUTH command. */
4615 && !sender_host_authenticated
4617 && verify_check_host(&auth_advertise_hosts) == OK
4621 for (auth_instance * au = auths; au; au = au->next)
4623 au->advertised = FALSE;
4626 DEBUG(D_auth+D_expand) debug_printf_indent(
4627 "Evaluating advertise_condition for %s %s athenticator\n",
4628 au->name, au->public_name);
4629 if ( !au->advertise_condition
4630 || expand_check_condition(au->advertise_condition, au->name,
4637 g = string_catn(g, smtp_code, 3);
4638 g = string_catn(g, US"-AUTH", 5);
4640 fl.auth_advertised = TRUE;
4642 saveptr = gstring_length(g);
4643 g = string_catn(g, US" ", 1);
4644 g = string_cat(g, au->public_name);
4645 while (++saveptr < g->ptr) g->s[saveptr] = toupper(g->s[saveptr]);
4646 au->advertised = TRUE;
4651 if (!first) g = string_catn(g, US"\r\n", 2);
4654 /* RFC 3030 CHUNKING */
4656 if (verify_check_host(&chunking_advertise_hosts) != FAIL)
4658 g = string_catn(g, smtp_code, 3);
4659 g = string_catn(g, US"-CHUNKING\r\n", 11);
4660 f.chunking_offered = TRUE;
4661 chunking_state = CHUNKING_OFFERED;
4664 /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
4665 if it has been included in the binary, and the host matches
4666 tls_advertise_hosts. We must *not* advertise if we are already in a
4667 secure connection. */
4670 if (tls_in.active.sock < 0 &&
4671 verify_check_host(&tls_advertise_hosts) != FAIL)
4673 g = string_catn(g, smtp_code, 3);
4674 g = string_catn(g, US"-STARTTLS\r\n", 11);
4675 fl.tls_advertised = TRUE;
4679 #ifndef DISABLE_PRDR
4680 /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
4683 g = string_catn(g, smtp_code, 3);
4684 g = string_catn(g, US"-PRDR\r\n", 7);
4689 if ( accept_8bitmime
4690 && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
4692 g = string_catn(g, smtp_code, 3);
4693 g = string_catn(g, US"-SMTPUTF8\r\n", 11);
4694 fl.smtputf8_advertised = TRUE;
4698 /* Finish off the multiline reply with one that is always available. */
4700 g = string_catn(g, smtp_code, 3);
4701 g = string_catn(g, US" HELP\r\n", 7);
4704 /* Terminate the string (for debug), write it, and note that HELO/EHLO
4709 int len = len_string_from_gstring(g, &ehlo_resp);
4711 if (tls_in.active.sock >= 0)
4712 (void) tls_write(NULL, ehlo_resp, len,
4713 # ifndef DISABLE_PIPE_CONNECT
4714 fl.pipe_connect_acceptable && pipeline_connect_sends());
4720 (void) fwrite(ehlo_resp, 1, len, smtp_out);
4722 DEBUG(D_receive) for (const uschar * t, * s = ehlo_resp;
4723 s && (t = Ustrchr(s, '\r'));
4724 s = t + 2) /* \r\n */
4725 debug_printf("%s %.*s\n",
4726 s == g->s ? "SMTP>>" : " ",
4728 fl.helo_seen = TRUE;
4731 /* Reset the protocol and the state, abandoning any previous message. */
4733 (sender_host_address ? protocols : protocols_local)
4735 ? pextend + (sender_host_authenticated ? pauthed : 0)
4737 + (tls_in.active.sock >= 0 ? pcrpted : 0)
4739 cancel_cutthrough_connection(TRUE, US"sent EHLO response");
4740 reset_point = smtp_reset(reset_point);
4742 break; /* HELO/EHLO */
4745 /* The MAIL command requires an address as an operand. All we do
4746 here is to parse it for syntactic correctness. The form "<>" is
4747 a special case which converts into an empty string. The start/end
4748 pointers in the original are not used further for this address, as
4749 it is the canonical extracted address which is all that is kept. */
4753 smtp_mailcmd_count++; /* Count for limit and ratelimit */
4755 was_rej_mail = TRUE; /* Reset if accepted */
4756 env_mail_type_t * mail_args; /* Sanity check & validate args */
4759 if ( fl.helo_verify_required
4760 || verify_check_host(&hosts_require_helo) == OK)
4762 smtp_printf("503 HELO or EHLO required\r\n", FALSE);
4763 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
4764 "HELO/EHLO given", host_and_ident(FALSE));
4767 else if (smtp_mailcmd_max < 0)
4768 smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4772 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4773 US"sender already given");
4777 if (!*smtp_cmd_data)
4779 done = synprot_error(L_smtp_protocol_error, 501, NULL,
4780 US"MAIL must have an address operand");
4784 /* Check to see if the limit for messages per connection would be
4785 exceeded by accepting further messages. */
4787 if (smtp_mailcmd_max > 0 && smtp_mailcmd_count > smtp_mailcmd_max)
4789 smtp_printf("421 too many messages in this connection\r\n", FALSE);
4790 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
4791 "messages in one connection", host_and_ident(TRUE));
4795 /* Reset for start of message - even if this is going to fail, we
4796 obviously need to throw away any previous data. */
4798 cancel_cutthrough_connection(TRUE, US"MAIL received");
4799 reset_point = smtp_reset(reset_point);
4801 sender_data = recipient_data = NULL;
4803 /* Loop, checking for ESMTP additions to the MAIL FROM command. */
4805 if (fl.esmtp) for(;;)
4807 uschar *name, *value, *end;
4808 unsigned long int size;
4809 BOOL arg_error = FALSE;
4811 if (!extract_option(&name, &value)) break;
4813 for (mail_args = env_mail_type_list;
4814 mail_args->value != ENV_MAIL_OPT_NULL;
4817 if (strcmpic(name, mail_args->name) == 0)
4819 if (mail_args->need_value && strcmpic(value, US"") == 0)
4822 switch(mail_args->value)
4824 /* Handle SIZE= by reading the value. We don't do the check till later,
4825 in order to be able to log the sender address on failure. */
4826 case ENV_MAIL_OPT_SIZE:
4827 if (((size = Ustrtoul(value, &end, 10)), *end == 0))
4829 if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
4831 message_size = (int)size;
4837 /* If this session was initiated with EHLO and accept_8bitmime is set,
4838 Exim will have indicated that it supports the BODY=8BITMIME option. In
4839 fact, it does not support this according to the RFCs, in that it does not
4840 take any special action for forwarding messages containing 8-bit
4841 characters. That is why accept_8bitmime is not the default setting, but
4842 some sites want the action that is provided. We recognize both "8BITMIME"
4843 and "7BIT" as body types, but take no action. */
4844 case ENV_MAIL_OPT_BODY:
4845 if (accept_8bitmime) {
4846 if (strcmpic(value, US"8BITMIME") == 0)
4848 else if (strcmpic(value, US"7BIT") == 0)
4853 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4854 US"invalid data for BODY");
4857 DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
4863 /* Handle the two DSN options, but only if configured to do so (which
4864 will have caused "DSN" to be given in the EHLO response). The code itself
4865 is included only if configured in at build time. */
4867 case ENV_MAIL_OPT_RET:
4868 if (fl.dsn_advertised)
4870 /* Check if RET has already been set */
4873 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4874 US"RET can be specified once only");
4877 dsn_ret = strcmpic(value, US"HDRS") == 0
4879 : strcmpic(value, US"FULL") == 0
4882 DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
4883 /* Check for invalid invalid value, and exit with error */
4886 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4887 US"Value for RET is invalid");
4892 case ENV_MAIL_OPT_ENVID:
4893 if (fl.dsn_advertised)
4895 /* Check if the dsn envid has been already set */
4898 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4899 US"ENVID can be specified once only");
4902 dsn_envid = string_copy(value);
4903 DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
4907 /* Handle the AUTH extension. If the value given is not "<>" and either
4908 the ACL says "yes" or there is no ACL but the sending host is
4909 authenticated, we set it up as the authenticated sender. However, if the
4910 authenticator set a condition to be tested, we ignore AUTH on MAIL unless
4911 the condition is met. The value of AUTH is an xtext, which means that +,
4912 = and cntrl chars are coded in hex; however "<>" is unaffected by this
4914 case ENV_MAIL_OPT_AUTH:
4915 if (Ustrcmp(value, "<>") != 0)
4920 if (auth_xtextdecode(value, &authenticated_sender) < 0)
4922 /* Put back terminator overrides for error message */
4925 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4926 US"invalid data for AUTH");
4929 if (!acl_smtp_mailauth)
4931 ignore_msg = US"client not authenticated";
4932 rc = sender_host_authenticated ? OK : FAIL;
4936 ignore_msg = US"rejected by ACL";
4937 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
4938 &user_msg, &log_msg);
4944 if (authenticated_by == NULL ||
4945 authenticated_by->mail_auth_condition == NULL ||
4946 expand_check_condition(authenticated_by->mail_auth_condition,
4947 authenticated_by->name, US"authenticator"))
4948 break; /* Accept the AUTH */
4950 ignore_msg = US"server_mail_auth_condition failed";
4951 if (authenticated_id != NULL)
4952 ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
4953 ignore_msg, authenticated_id);
4958 authenticated_sender = NULL;
4959 log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
4960 value, host_and_ident(TRUE), ignore_msg);
4963 /* Should only get DEFER or ERROR here. Put back terminator
4964 overrides for error message */
4969 (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
4976 #ifndef DISABLE_PRDR
4977 case ENV_MAIL_OPT_PRDR:
4979 prdr_requested = TRUE;
4984 case ENV_MAIL_OPT_UTF8:
4985 if (!fl.smtputf8_advertised)
4987 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4988 US"SMTPUTF8 used when not advertised");
4992 DEBUG(D_receive) debug_printf("smtputf8 requested\n");
4993 message_smtputf8 = allow_utf8_domains = TRUE;
4994 if (Ustrncmp(received_protocol, US"utf8", 4) != 0)
4996 int old_pool = store_pool;
4997 store_pool = POOL_PERM;
4998 received_protocol = string_sprintf("utf8%s", received_protocol);
4999 store_pool = old_pool;
5004 /* No valid option. Stick back the terminator characters and break
5005 the loop. Do the name-terminator second as extract_option sets
5006 value==name when it found no equal-sign.
5007 An error for a malformed address will occur. */
5008 case ENV_MAIL_OPT_NULL:
5016 /* Break out of for loop if switch() had bad argument or
5017 when start of the email address is reached */
5018 if (arg_error) break;
5021 /* If we have passed the threshold for rate limiting, apply the current
5022 delay, and update it for next time, provided this is a limited host. */
5024 if (smtp_mailcmd_count > smtp_rlm_threshold &&
5025 verify_check_host(&smtp_ratelimit_hosts) == OK)
5027 DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
5028 smtp_delay_mail/1000.0);
5029 millisleep((int)smtp_delay_mail);
5030 smtp_delay_mail *= smtp_rlm_factor;
5031 if (smtp_delay_mail > (double)smtp_rlm_limit)
5032 smtp_delay_mail = (double)smtp_rlm_limit;
5035 /* Now extract the address, first applying any SMTP-time rewriting. The
5036 TRUE flag allows "<>" as a sender address. */
5038 raw_sender = rewrite_existflags & rewrite_smtp
5039 /* deconst ok as smtp_cmd_data was not const */
5040 ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
5041 global_rewrite_rules)
5045 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
5050 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5054 sender_address = raw_sender;
5056 /* If there is a configured size limit for mail, check that this message
5057 doesn't exceed it. The check is postponed to this point so that the sender
5060 if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
5062 smtp_printf("552 Message size exceeds maximum permitted\r\n", FALSE);
5063 log_write(L_size_reject,
5064 LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
5065 "message too big: size%s=%d max=%d",
5067 host_and_ident(TRUE),
5068 (message_size == INT_MAX)? ">" : "",
5070 thismessage_size_limit);
5071 sender_address = NULL;
5075 /* Check there is enough space on the disk unless configured not to.
5076 When smtp_check_spool_space is set, the check is for thismessage_size_limit
5077 plus the current message - i.e. we accept the message only if it won't
5078 reduce the space below the threshold. Add 5000 to the size to allow for
5079 overheads such as the Received: line and storing of recipients, etc.
5080 By putting the check here, even when SIZE is not given, it allow VRFY
5081 and EXPN etc. to be used when space is short. */
5083 if (!receive_check_fs(
5084 smtp_check_spool_space && message_size >= 0
5085 ? message_size + 5000 : 0))
5087 smtp_printf("452 Space shortage, please try later\r\n", FALSE);
5088 sender_address = NULL;
5092 /* If sender_address is unqualified, reject it, unless this is a locally
5093 generated message, or the sending host or net is permitted to send
5094 unqualified addresses - typically local machines behaving as MUAs -
5095 in which case just qualify the address. The flag is set above at the start
5096 of the SMTP connection. */
5098 if (!sender_domain && *sender_address)
5099 if (f.allow_unqualified_sender)
5101 sender_domain = Ustrlen(sender_address) + 1;
5102 /* deconst ok as sender_address was not const */
5103 sender_address = US rewrite_address_qualify(sender_address, FALSE);
5104 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
5109 smtp_printf("501 %s: sender address must contain a domain\r\n", FALSE,
5111 log_write(L_smtp_syntax_error,
5112 LOG_MAIN|LOG_REJECT,
5113 "unqualified sender rejected: <%s> %s%s",
5115 host_and_ident(TRUE),
5117 sender_address = NULL;
5121 /* Apply an ACL check if one is defined, before responding. Afterwards,
5122 when pipelining is not advertised, do another sync check in case the ACL
5123 delayed and the client started sending in the meantime. */
5127 rc = acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
5128 if (rc == OK && !f.smtp_in_pipelining_advertised && !check_sync())
5134 if (rc == OK || rc == DISCARD)
5136 BOOL more = pipeline_response();
5139 smtp_printf("%s%s%s", more, US"250 OK",
5140 #ifndef DISABLE_PRDR
5141 prdr_requested ? US", PRDR Requested" : US"",
5148 #ifndef DISABLE_PRDR
5150 user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
5152 smtp_user_msg(US"250", user_msg);
5154 smtp_delay_rcpt = smtp_rlr_base;
5155 f.recipients_discarded = (rc == DISCARD);
5156 was_rej_mail = FALSE;
5160 done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
5161 sender_address = NULL;
5166 /* The RCPT command requires an address as an operand. There may be any
5167 number of RCPT commands, specifying multiple recipients. We build them all
5168 into a data structure. The start/end values given by parse_extract_address
5169 are not used, as we keep only the extracted address. */
5173 /* We got really to many recipients. A check against configured
5174 limits is done later */
5175 if (rcpt_count < 0 || rcpt_count >= INT_MAX/2)
5176 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Too many recipients: %d", rcpt_count);
5178 was_rcpt = fl.rcpt_in_progress = TRUE;
5180 /* There must be a sender address; if the sender was rejected and
5181 pipelining was advertised, we assume the client was pipelining, and do not
5182 count this as a protocol error. Reset was_rej_mail so that further RCPTs
5183 get the same treatment. */
5185 if (!sender_address)
5187 if (f.smtp_in_pipelining_advertised && last_was_rej_mail)
5189 smtp_printf("503 sender not yet given\r\n", FALSE);
5190 was_rej_mail = TRUE;
5194 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5195 US"sender not yet given");
5196 was_rcpt = FALSE; /* Not a valid RCPT */
5202 /* Check for an operand */
5204 if (!smtp_cmd_data[0])
5206 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5207 US"RCPT must have an address operand");
5212 /* Set the DSN flags orcpt and dsn_flags from the session*/
5216 if (fl.esmtp) for(;;)
5218 uschar *name, *value;
5220 if (!extract_option(&name, &value))
5223 if (fl.dsn_advertised && strcmpic(name, US"ORCPT") == 0)
5225 /* Check whether orcpt has been already set */
5228 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5229 US"ORCPT can be specified once only");
5232 orcpt = string_copy(value);
5233 DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
5236 else if (fl.dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
5238 /* Check if the notify flags have been already set */
5241 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5242 US"NOTIFY can be specified once only");
5245 if (strcmpic(value, US"NEVER") == 0)
5246 dsn_flags |= rf_notify_never;
5253 while (*pp != 0 && *pp != ',') pp++;
5254 if (*pp == ',') *pp++ = 0;
5255 if (strcmpic(p, US"SUCCESS") == 0)
5257 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
5258 dsn_flags |= rf_notify_success;
5260 else if (strcmpic(p, US"FAILURE") == 0)
5262 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
5263 dsn_flags |= rf_notify_failure;
5265 else if (strcmpic(p, US"DELAY") == 0)
5267 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
5268 dsn_flags |= rf_notify_delay;
5272 /* Catch any strange values */
5273 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5274 US"Invalid value for NOTIFY parameter");
5279 DEBUG(D_receive) debug_printf("DSN Flags: %x\n", dsn_flags);
5283 /* Unknown option. Stick back the terminator characters and break
5284 the loop. An error for a malformed address will occur. */
5288 DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
5295 /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
5296 as a recipient address */
5298 recipient = rewrite_existflags & rewrite_smtp
5299 /* deconst ok as smtp_cmd_data was not const */
5300 ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
5301 global_rewrite_rules)
5304 if (!(recipient = parse_extract_address(recipient, &errmess, &start, &end,
5305 &recipient_domain, FALSE)))
5307 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5312 /* If the recipient address is unqualified, reject it, unless this is a
5313 locally generated message. However, unqualified addresses are permitted
5314 from a configured list of hosts and nets - typically when behaving as
5315 MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
5316 really. The flag is set at the start of the SMTP connection.
5318 RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
5319 assumed this meant "reserved local part", but the revision of RFC 821 and
5320 friends now makes it absolutely clear that it means *mailbox*. Consequently
5321 we must always qualify this address, regardless. */
5323 if (!recipient_domain)
5324 if (!(recipient_domain = qualify_recipient(&recipient, smtp_cmd_data,
5331 /* Check maximum allowed */
5333 if (rcpt_count+1 < 0 || rcpt_count > recipients_max && recipients_max > 0)
5335 if (recipients_max_reject)
5338 smtp_printf("552 too many recipients\r\n", FALSE);
5340 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
5341 "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
5346 smtp_printf("452 too many recipients\r\n", FALSE);
5348 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
5349 "temporarily rejected: sender=<%s> %s", sender_address,
5350 host_and_ident(TRUE));
5357 /* If we have passed the threshold for rate limiting, apply the current
5358 delay, and update it for next time, provided this is a limited host. */
5360 if (rcpt_count > smtp_rlr_threshold &&
5361 verify_check_host(&smtp_ratelimit_hosts) == OK)
5363 DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
5364 smtp_delay_rcpt/1000.0);
5365 millisleep((int)smtp_delay_rcpt);
5366 smtp_delay_rcpt *= smtp_rlr_factor;
5367 if (smtp_delay_rcpt > (double)smtp_rlr_limit)
5368 smtp_delay_rcpt = (double)smtp_rlr_limit;
5371 /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
5372 for them. Otherwise, check the access control list for this recipient. As
5373 there may be a delay in this, re-check for a synchronization error
5374 afterwards, unless pipelining was advertised. */
5376 if (f.recipients_discarded)
5379 if ( (rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
5381 && !f.smtp_in_pipelining_advertised && !check_sync())
5384 /* The ACL was happy */
5388 BOOL more = pipeline_response();
5391 smtp_user_msg(US"250", user_msg);
5393 smtp_printf("250 Accepted\r\n", more);
5394 receive_add_recipient(recipient, -1);
5396 /* Set the dsn flags in the recipients_list */
5397 recipients_list[recipients_count-1].orcpt = orcpt;
5398 recipients_list[recipients_count-1].dsn_flags = dsn_flags;
5400 /* DEBUG(D_receive) debug_printf("DSN: orcpt: %s flags: %d\n",
5401 recipients_list[recipients_count-1].orcpt,
5402 recipients_list[recipients_count-1].dsn_flags); */
5405 /* The recipient was discarded */
5407 else if (rc == DISCARD)
5410 smtp_user_msg(US"250", user_msg);
5412 smtp_printf("250 Accepted\r\n", FALSE);
5415 log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> RCPT %s: "
5416 "discarded by %s ACL%s%s", host_and_ident(TRUE),
5417 sender_address_unrewritten ? sender_address_unrewritten : sender_address,
5418 smtp_cmd_argument, f.recipients_discarded ? "MAIL" : "RCPT",
5419 log_msg ? US": " : US"", log_msg ? log_msg : US"");
5422 /* Either the ACL failed the address, or it was deferred. */
5426 if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
5427 done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
5432 /* The DATA command is legal only if it follows successful MAIL FROM
5433 and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
5434 not counted as a protocol error if it follows RCPT (which must have been
5435 rejected if there are no recipients.) This function is complete when a
5436 valid DATA command is encountered.
5438 Note concerning the code used: RFC 2821 says this:
5440 - If there was no MAIL, or no RCPT, command, or all such commands
5441 were rejected, the server MAY return a "command out of sequence"
5442 (503) or "no valid recipients" (554) reply in response to the
5445 The example in the pipelining RFC 2920 uses 554, but I use 503 here
5446 because it is the same whether pipelining is in use or not.
5448 If all the RCPT commands that precede DATA provoked the same error message
5449 (often indicating some kind of system error), it is helpful to include it
5450 with the DATA rejection (an idea suggested by Tony Finch). */
5457 if (chunking_state != CHUNKING_OFFERED)
5459 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5460 US"BDAT command used when CHUNKING not advertised");
5464 /* grab size, endmarker */
5466 if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
5468 done = synprot_error(L_smtp_protocol_error, 501, NULL,
5469 US"missing size for BDAT command");
5472 chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
5473 ? CHUNKING_LAST : CHUNKING_ACTIVE;
5474 chunking_data_left = chunking_datasize;
5475 DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
5476 (int)chunking_state, chunking_data_left);
5478 f.bdat_readers_wanted = TRUE; /* FIXME: redundant vs chunking_state? */
5487 f.bdat_readers_wanted = FALSE;
5489 DATA_BDAT: /* Common code for DATA and BDAT */
5490 #ifndef DISABLE_PIPE_CONNECT
5491 fl.pipe_connect_acceptable = FALSE;
5493 if (!discarded && recipients_count <= 0)
5495 if (fl.rcpt_smtp_response_same && rcpt_smtp_response)
5497 uschar *code = US"503";
5498 int len = Ustrlen(rcpt_smtp_response);
5499 smtp_respond(code, 3, FALSE, US"All RCPT commands were rejected with "
5501 /* Responses from smtp_printf() will have \r\n on the end */
5502 if (len > 2 && rcpt_smtp_response[len-2] == '\r')
5503 rcpt_smtp_response[len-2] = 0;
5504 smtp_respond(code, 3, FALSE, rcpt_smtp_response);
5506 if (f.smtp_in_pipelining_advertised && last_was_rcpt)
5507 smtp_printf("503 Valid RCPT command must precede %s\r\n", FALSE,
5508 smtp_names[smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)]]);
5510 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5511 smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)] == SCH_DATA
5512 ? US"valid RCPT command must precede DATA"
5513 : US"valid RCPT command must precede BDAT");
5515 if (chunking_state > CHUNKING_OFFERED)
5517 bdat_push_receive_functions();
5523 if (toomany && recipients_max_reject)
5525 sender_address = NULL; /* This will allow a new MAIL without RSET */
5526 sender_address_unrewritten = NULL;
5527 smtp_printf("554 Too many recipients\r\n", FALSE);
5529 if (chunking_state > CHUNKING_OFFERED)
5531 bdat_push_receive_functions();
5537 if (chunking_state > CHUNKING_OFFERED)
5538 rc = OK; /* No predata ACL or go-ahead output for BDAT */
5541 /* If there is an ACL, re-check the synchronization afterwards, since the
5542 ACL may have delayed. To handle cutthrough delivery enforce a dummy call
5543 to get the DATA command sent. */
5545 if (!acl_smtp_predata && cutthrough.cctx.sock < 0)
5549 uschar * acl = acl_smtp_predata ? acl_smtp_predata : US"accept";
5550 f.enable_dollar_recipients = TRUE;
5551 rc = acl_check(ACL_WHERE_PREDATA, NULL, acl, &user_msg,
5553 f.enable_dollar_recipients = FALSE;
5554 if (rc == OK && !check_sync())
5558 { /* Either the ACL failed the address, or it was deferred. */
5559 done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
5565 smtp_user_msg(US"354", user_msg);
5568 "354 Enter message, ending with \".\" on a line by itself\r\n", FALSE);
5571 if (f.bdat_readers_wanted)
5572 bdat_push_receive_functions();
5575 if (smtp_in) /* all ACKs needed to ramp window up for bulk data */
5576 (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
5577 US &on, sizeof(on));
5580 message_ended = END_NOTENDED; /* Indicate in middle of data */
5591 if (!(address = parse_extract_address(smtp_cmd_data, &errmess,
5592 &start, &end, &recipient_domain, FALSE)))
5594 smtp_printf("501 %s\r\n", FALSE, errmess);
5598 if (!recipient_domain)
5599 if (!(recipient_domain = qualify_recipient(&address, smtp_cmd_data,
5603 if ((rc = acl_check(ACL_WHERE_VRFY, address, acl_smtp_vrfy,
5604 &user_msg, &log_msg)) != OK)
5605 done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
5609 address_item * addr = deliver_make_addr(address, FALSE);
5611 switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
5612 -1, -1, NULL, NULL, NULL))
5615 s = string_sprintf("250 <%s> is deliverable", address);
5619 s = (addr->user_message != NULL)?
5620 string_sprintf("451 <%s> %s", address, addr->user_message) :
5621 string_sprintf("451 Cannot resolve <%s> at this time", address);
5625 s = (addr->user_message != NULL)?
5626 string_sprintf("550 <%s> %s", address, addr->user_message) :
5627 string_sprintf("550 <%s> is not deliverable", address);
5628 log_write(0, LOG_MAIN, "VRFY failed for %s %s",
5629 smtp_cmd_argument, host_and_ident(TRUE));
5633 smtp_printf("%s\r\n", FALSE, s);
5641 rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
5643 done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
5646 BOOL save_log_testing_mode = f.log_testing_mode;
5647 f.address_test_mode = f.log_testing_mode = TRUE;
5648 (void) verify_address(deliver_make_addr(smtp_cmd_data, FALSE),
5649 smtp_out, vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1,
5651 f.address_test_mode = FALSE;
5652 f.log_testing_mode = save_log_testing_mode; /* true for -bh */
5661 if (!fl.tls_advertised)
5663 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5664 US"STARTTLS command used when not advertised");
5668 /* Apply an ACL check if one is defined */
5670 if ( acl_smtp_starttls
5671 && (rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls,
5672 &user_msg, &log_msg)) != OK
5675 done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
5679 /* RFC 2487 is not clear on when this command may be sent, though it
5680 does state that all information previously obtained from the client
5681 must be discarded if a TLS session is started. It seems reasonable to
5682 do an implied RSET when STARTTLS is received. */
5684 incomplete_transaction_log(US"STARTTLS");
5685 cancel_cutthrough_connection(TRUE, US"STARTTLS received");
5686 reset_point = smtp_reset(reset_point);
5688 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
5690 /* There's an attack where more data is read in past the STARTTLS command
5691 before TLS is negotiated, then assumed to be part of the secure session
5692 when used afterwards; we use segregated input buffers, so are not
5693 vulnerable, but we want to note when it happens and, for sheer paranoia,
5694 ensure that the buffer is "wiped".
5695 Pipelining sync checks will normally have protected us too, unless disabled
5696 by configuration. */
5701 debug_printf("Non-empty input buffer after STARTTLS; naive attack?\n");
5702 if (tls_in.active.sock < 0)
5703 smtp_inend = smtp_inptr = smtp_inbuffer;
5704 /* and if TLS is already active, tls_server_start() should fail */
5707 /* There is nothing we value in the input buffer and if TLS is successfully
5708 negotiated, we won't use this buffer again; if TLS fails, we'll just read
5709 fresh content into it. The buffer contains arbitrary content from an
5710 untrusted remote source; eg: NOOP <shellcode>\r\nSTARTTLS\r\n
5711 It seems safest to just wipe away the content rather than leave it as a
5712 target to jump to. */
5714 memset(smtp_inbuffer, 0, IN_BUFFER_SIZE);
5716 /* Attempt to start up a TLS session, and if successful, discard all
5717 knowledge that was obtained previously. At least, that's what the RFC says,
5718 and that's what happens by default. However, in order to work round YAEB,
5719 there is an option to remember the esmtp state. Sigh.
5721 We must allow for an extra EHLO command and an extra AUTH command after
5722 STARTTLS that don't add to the nonmail command count. */
5725 if ((rc = tls_server_start(&s)) == OK)
5727 if (!tls_remember_esmtp)
5728 fl.helo_seen = fl.esmtp = fl.auth_advertised = f.smtp_in_pipelining_advertised = FALSE;
5729 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
5730 cmd_list[CMD_LIST_AUTH].is_mail_cmd = TRUE;
5731 cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
5732 if (sender_helo_name)
5734 sender_helo_name = NULL;
5735 host_build_sender_fullhost(); /* Rebuild */
5736 set_process_info("handling incoming TLS connection from %s",
5737 host_and_ident(FALSE));
5740 (sender_host_address ? protocols : protocols_local)
5742 ? pextend + (sender_host_authenticated ? pauthed : 0)
5744 + (tls_in.active.sock >= 0 ? pcrpted : 0)
5747 sender_host_auth_pubname = sender_host_authenticated = NULL;
5748 authenticated_id = NULL;
5749 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
5750 DEBUG(D_tls) debug_printf("TLS active\n");
5751 break; /* Successful STARTTLS */
5754 (void) smtp_log_tls_fail(s);
5756 /* Some local configuration problem was discovered before actually trying
5757 to do a TLS handshake; give a temporary error. */
5761 smtp_printf("454 TLS currently unavailable\r\n", FALSE);
5765 /* Hard failure. Reject everything except QUIT or closed connection. One
5766 cause for failure is a nested STARTTLS, in which case tls_in.active remains
5767 set, but we must still reject all incoming commands. Another is a handshake
5768 failure - and there may some encrypted data still in the pipe to us, which we
5769 see as garbage commands. */
5771 DEBUG(D_tls) debug_printf("TLS failed to start\n");
5772 while (done <= 0) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
5775 log_close_event(US"by EOF");
5776 smtp_notquit_exit(US"tls-failed", NULL, NULL);
5780 /* It is perhaps arguable as to which exit ACL should be called here,
5781 but as it is probably a situation that almost never arises, it
5782 probably doesn't matter. We choose to call the real QUIT ACL, which in
5783 some sense is perhaps "right". */
5786 f.smtp_in_quit = TRUE;
5789 && ((rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg,
5790 &log_msg)) == ERROR))
5791 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
5794 smtp_respond(US"221", 3, TRUE, user_msg);
5796 smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
5797 log_close_event(US"by QUIT");
5802 smtp_printf("554 Security failure\r\n", FALSE);
5805 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
5810 /* The ACL for QUIT is provided for gathering statistical information or
5811 similar; it does not affect the response code, but it can supply a custom
5815 smtp_quit_handler(&user_msg, &log_msg);
5821 smtp_rset_handler();
5822 cancel_cutthrough_connection(TRUE, US"RSET received");
5823 reset_point = smtp_reset(reset_point);
5830 smtp_printf("250 OK\r\n", FALSE);
5834 /* Show ETRN/EXPN/VRFY if there's an ACL for checking hosts; if actually
5835 used, a check will be done for permitted hosts. Show STARTTLS only if not
5836 already in a TLS session and if it would be advertised in the EHLO
5841 smtp_printf("214-Commands supported:\r\n", TRUE);
5845 Ustrcat(buffer, US" AUTH");
5847 if (tls_in.active.sock < 0 &&
5848 verify_check_host(&tls_advertise_hosts) != FAIL)
5849 Ustrcat(buffer, US" STARTTLS");
5851 Ustrcat(buffer, US" HELO EHLO MAIL RCPT DATA BDAT");
5852 Ustrcat(buffer, US" NOOP QUIT RSET HELP");
5853 if (acl_smtp_etrn) Ustrcat(buffer, US" ETRN");
5854 if (acl_smtp_expn) Ustrcat(buffer, US" EXPN");
5855 if (acl_smtp_vrfy) Ustrcat(buffer, US" VRFY");
5856 smtp_printf("214%s\r\n", FALSE, buffer);
5862 incomplete_transaction_log(US"connection lost");
5863 smtp_notquit_exit(US"connection-lost", US"421",
5864 US"%s lost input connection", smtp_active_hostname);
5866 /* Don't log by default unless in the middle of a message, as some mailers
5867 just drop the call rather than sending QUIT, and it clutters up the logs.
5870 if (sender_address || recipients_count > 0)
5871 log_write(L_lost_incoming_connection, LOG_MAIN,
5872 "unexpected %s while reading SMTP command from %s%s%s D=%s",
5873 f.sender_host_unknown ? "EOF" : "disconnection",
5874 f.tcp_in_fastopen_logged
5877 ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO "
5879 host_and_ident(FALSE), smtp_read_error,
5880 string_timesince(&smtp_connection_start)
5884 log_write(L_smtp_connection, LOG_MAIN, "%s %slost%s D=%s",
5885 smtp_get_connection_info(),
5886 f.tcp_in_fastopen && !f.tcp_in_fastopen_logged ? US"TFO " : US"",
5888 string_timesince(&smtp_connection_start)
5899 done = synprot_error(L_smtp_protocol_error, 503, NULL,
5900 US"ETRN is not permitted inside a transaction");
5904 log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
5905 host_and_ident(FALSE));
5907 if ((rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn,
5908 &user_msg, &log_msg)) != OK)
5910 done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
5914 /* Compute the serialization key for this command. */
5916 etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
5918 /* If a command has been specified for running as a result of ETRN, we
5919 permit any argument to ETRN. If not, only the # standard form is permitted,
5920 since that is strictly the only kind of ETRN that can be implemented
5921 according to the RFC. */
5923 if (smtp_etrn_command)
5927 etrn_command = smtp_etrn_command;
5928 deliver_domain = smtp_cmd_data;
5929 rc = transport_set_up_command(&argv, smtp_etrn_command, TRUE, 0, NULL,
5930 FALSE, US"ETRN processing", &error);
5931 deliver_domain = NULL;
5934 log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
5936 smtp_printf("458 Internal failure\r\n", FALSE);
5941 /* Else set up to call Exim with the -R option. */
5945 if (*smtp_cmd_data++ != '#')
5947 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5948 US"argument must begin with #");
5951 etrn_command = US"exim -R";
5952 argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE,
5953 *queue_name ? 4 : 2,
5954 US"-R", smtp_cmd_data,
5955 US"-MCG", queue_name);
5958 /* If we are host-testing, don't actually do anything. */
5964 debug_printf("ETRN command is: %s\n", etrn_command);
5965 debug_printf("ETRN command execution skipped\n");
5967 if (user_msg == NULL) smtp_printf("250 OK\r\n", FALSE);
5968 else smtp_user_msg(US"250", user_msg);
5973 /* If ETRN queue runs are to be serialized, check the database to
5974 ensure one isn't already running. */
5976 if (smtp_etrn_serialize && !enq_start(etrn_serialize_key, 1))
5978 smtp_printf("458 Already processing %s\r\n", FALSE, smtp_cmd_data);
5982 /* Fork a child process and run the command. We don't want to have to
5983 wait for the process at any point, so set SIGCHLD to SIG_IGN before
5984 forking. It should be set that way anyway for external incoming SMTP,
5985 but we save and restore to be tidy. If serialization is required, we
5986 actually run the command in yet another process, so we can wait for it
5987 to complete and then remove the serialization lock. */
5989 oldsignal = signal(SIGCHLD, SIG_IGN);
5991 if ((pid = exim_fork(US"etrn-command")) == 0)
5993 smtp_input = FALSE; /* This process is not associated with the */
5994 (void)fclose(smtp_in); /* SMTP call any more. */
5995 (void)fclose(smtp_out);
5997 signal(SIGCHLD, SIG_DFL); /* Want to catch child */
5999 /* If not serializing, do the exec right away. Otherwise, fork down
6000 into another process. */
6002 if ( !smtp_etrn_serialize
6003 || (pid = exim_fork(US"etrn-serialised-command")) == 0)
6005 DEBUG(D_exec) debug_print_argv(argv);
6006 exim_nullstd(); /* Ensure std{in,out,err} exist */
6007 /* argv[0] should be untainted, from child_exec_exim() */
6008 execv(CS argv[0], (char *const *)argv);
6009 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
6010 etrn_command, strerror(errno));
6011 _exit(EXIT_FAILURE); /* paranoia */
6014 /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
6015 is, we are in the first subprocess, after forking again. All we can do
6016 for a failing fork is to log it. Otherwise, wait for the 2nd process to
6017 complete, before removing the serialization. */
6020 log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
6021 "failed: %s", strerror(errno));
6025 DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
6027 (void)wait(&status);
6028 DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
6032 enq_end(etrn_serialize_key);
6033 exim_underbar_exit(EXIT_SUCCESS);
6036 /* Back in the top level SMTP process. Check that we started a subprocess
6037 and restore the signal state. */
6041 log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
6043 smtp_printf("458 Unable to fork process\r\n", FALSE);
6044 if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
6048 smtp_printf("250 OK\r\n", FALSE);
6050 smtp_user_msg(US"250", user_msg);
6052 signal(SIGCHLD, oldsignal);
6057 done = synprot_error(L_smtp_syntax_error, 501, NULL,
6058 US"unexpected argument data");
6062 /* This currently happens only for NULLs, but could be extended. */
6065 done = synprot_error(L_smtp_syntax_error, 0, NULL, /* Just logs */
6066 US"NUL character(s) present (shown as '?')");
6067 smtp_printf("501 NUL characters are not allowed in SMTP commands\r\n",
6074 if (smtp_inend >= smtp_inbuffer + IN_BUFFER_SIZE)
6075 smtp_inend = smtp_inbuffer + IN_BUFFER_SIZE - 1;
6076 c = smtp_inend - smtp_inptr;
6077 if (c > 150) c = 150; /* limit logged amount */
6079 incomplete_transaction_log(US"sync failure");
6080 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
6081 "(next input sent too soon: pipelining was%s advertised): "
6082 "rejected \"%s\" %s next input=\"%s\"",
6083 f.smtp_in_pipelining_advertised ? "" : " not",
6084 smtp_cmd_buffer, host_and_ident(TRUE),
6085 string_printing(smtp_inptr));
6086 smtp_notquit_exit(US"synchronization-error", US"554",
6087 US"SMTP synchronization error");
6088 done = 1; /* Pretend eof - drops connection */
6092 case TOO_MANY_NONMAIL_CMD:
6093 s = smtp_cmd_buffer;
6094 while (*s != 0 && !isspace(*s)) s++;
6095 incomplete_transaction_log(US"too many non-mail commands");
6096 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
6097 "nonmail commands (last was \"%.*s\")", host_and_ident(FALSE),
6098 (int)(s - smtp_cmd_buffer), smtp_cmd_buffer);
6099 smtp_notquit_exit(US"bad-commands", US"554", US"Too many nonmail commands");
6100 done = 1; /* Pretend eof - drops connection */
6103 #ifdef SUPPORT_PROXY
6104 case PROXY_FAIL_IGNORE_CMD:
6105 smtp_printf("503 Command refused, required Proxy negotiation failed\r\n", FALSE);
6110 if (unknown_command_count++ >= smtp_max_unknown_commands)
6112 log_write(L_smtp_syntax_error, LOG_MAIN,
6113 "SMTP syntax error in \"%s\" %s %s",
6114 string_printing(smtp_cmd_buffer), host_and_ident(TRUE),
6115 US"unrecognized command");
6116 incomplete_transaction_log(US"unrecognized command");
6117 smtp_notquit_exit(US"bad-commands", US"500",
6118 US"Too many unrecognized commands");
6120 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
6121 "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
6122 string_printing(smtp_cmd_buffer));
6125 done = synprot_error(L_smtp_syntax_error, 500, NULL,
6126 US"unrecognized command");
6130 /* This label is used by goto's inside loops that want to break out to
6131 the end of the command-processing loop. */
6134 last_was_rej_mail = was_rej_mail; /* Remember some last commands for */
6135 last_was_rcpt = was_rcpt; /* protocol error handling */
6138 return done - 2; /* Convert yield values */
6144 authres_smtpauth(gstring * g)
6146 if (!sender_host_authenticated)
6149 g = string_append(g, 2, US";\n\tauth=pass (", sender_host_auth_pubname);
6151 if (Ustrcmp(sender_host_auth_pubname, "tls") == 0)
6152 g = authenticated_id
6153 ? string_append(g, 2, US") x509.auth=", authenticated_id)
6154 : string_cat(g, US") reason=x509.auth");
6156 g = authenticated_id
6157 ? string_append(g, 2, US") smtp.auth=", authenticated_id)
6158 : string_cat(g, US", no id saved)");
6160 if (authenticated_sender)
6161 g = string_append(g, 2, US" smtp.mailfrom=", authenticated_sender);
6169 /* End of smtp_in.c */