a13af867aaa2c010b80c0a04e3eb81dc588c7f2d
[exim.git] / src / src / smtp_in.c
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
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 */
9
10 /* Functions for handling an incoming SMTP call. */
11
12
13 #include "exim.h"
14 #include <assert.h>
15
16
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. */
20
21 #ifdef USE_TCP_WRAPPERS
22
23   #if HAVE_IPV6
24   #define EXIM_HAVE_IPV6
25   #endif
26   #undef HAVE_IPV6
27   #include <tcpd.h>
28   #undef HAVE_IPV6
29   #ifdef EXIM_HAVE_IPV6
30   #define HAVE_IPV6 TRUE
31   #endif
32
33 int allow_severity = LOG_INFO;
34 int deny_severity  = LOG_NOTICE;
35 uschar *tcp_wrappers_name;
36 #endif
37
38
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.
47 */
48
49 #define SMTP_CMD_BUFFER_SIZE  16384
50
51 /* Size of buffer for reading SMTP incoming packets */
52
53 #define IN_BUFFER_SIZE  8192
54
55 /* Structure for SMTP command list */
56
57 typedef struct {
58   const char *name;
59   int len;
60   short int cmd;
61   short int has_arg;
62   short int is_mail_cmd;
63 } smtp_cmd_list;
64
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
67 block some spam.  */
68
69 enum {
70   /* These commands are required to be synchronized, i.e. to be the last in a
71   block of commands when pipelining. */
72
73   HELO_CMD, EHLO_CMD, DATA_CMD, /* These are listed in the pipelining */
74   VRFY_CMD, EXPN_CMD, NOOP_CMD, /* RFC as requiring synchronization */
75   ETRN_CMD,                     /* This by analogy with TURN from the RFC */
76   STARTTLS_CMD,                 /* Required by the STARTTLS RFC */
77   TLS_AUTH_CMD,                 /* auto-command at start of SSL */
78
79   /* This is a dummy to identify the non-sync commands when pipelining */
80
81   NON_SYNC_CMD_PIPELINING,
82
83   /* These commands need not be synchronized when pipelining */
84
85   MAIL_CMD, RCPT_CMD, RSET_CMD,
86
87   /* This is a dummy to identify the non-sync commands when not pipelining */
88
89   NON_SYNC_CMD_NON_PIPELINING,
90
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. */
101
102   BDAT_CMD,
103
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. */
107
108   AUTH_CMD,
109
110   /* I'm not sure about these, but I don't think they matter. */
111
112   QUIT_CMD, HELP_CMD,
113
114 #ifdef SUPPORT_PROXY
115   PROXY_FAIL_IGNORE_CMD,
116 #endif
117
118   /* These are specials that don't correspond to actual commands */
119
120   EOF_CMD, OTHER_CMD, BADARG_CMD, BADCHAR_CMD, BADSYN_CMD,
121   TOO_MANY_NONMAIL_CMD };
122
123
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. */
126
127 #define HAD(n) \
128     smtp_connection_had[smtp_ch_index++] = n; \
129     if (smtp_ch_index >= SMTP_HBUFF_SIZE) smtp_ch_index = 0
130
131
132 /*************************************************
133 *                Local static variables          *
134 *************************************************/
135
136 static struct {
137   BOOL auth_advertised                  :1;
138 #ifndef DISABLE_TLS
139   BOOL tls_advertised                   :1;
140 #endif
141   BOOL dsn_advertised                   :1;
142   BOOL esmtp                            :1;
143   BOOL helo_verify_required             :1;
144   BOOL helo_verify                      :1;
145   BOOL helo_seen                        :1;
146   BOOL helo_accept_junk                 :1;
147 #ifndef DISABLE_PIPE_CONNECT
148   BOOL pipe_connect_acceptable          :1;
149 #endif
150   BOOL rcpt_smtp_response_same          :1;
151   BOOL rcpt_in_progress                 :1;
152   BOOL smtp_exit_function_called        :1;
153 #ifdef SUPPORT_I18N
154   BOOL smtputf8_advertised              :1;
155 #endif
156 } fl = {
157   .helo_verify_required = FALSE,
158   .helo_verify = FALSE,
159   .smtp_exit_function_called = FALSE,
160 };
161
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;
169
170 static uschar *rcpt_smtp_response;
171 static uschar *smtp_data_buffer;
172 static uschar *smtp_cmd_data;
173
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.
179
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.
185
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.
188
189 tls_auth is a pseudo-command, never expected in input.  It is activated
190 on TLS startup and looks for a tls authenticator. */
191
192 static smtp_cmd_list cmd_list[] = {
193   /* name         len                     cmd     has_arg is_mail_cmd */
194
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  },
199 #ifndef DISABLE_TLS
200   { "starttls",   sizeof("starttls")-1,   STARTTLS_CMD, FALSE, FALSE },
201   { "tls_auth",   0,                      TLS_AUTH_CMD, FALSE, FALSE },
202 #endif
203
204 /* If you change anything above here, also fix the definitions below. */
205
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 }
216 };
217
218 static smtp_cmd_list *cmd_list_end =
219   cmd_list + sizeof(cmd_list)/sizeof(smtp_cmd_list);
220
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
227
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. */
230
231 uschar * smtp_names[] =
232   {
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" };
236
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 */
244   };
245 static uschar *protocols[] = {
246   US"smtp",              /* HELO */
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 */
252   };
253
254 #define pnormal  0
255 #define pextend  2
256 #define pcrpted  1  /* added to pextend or pnormal */
257 #define pauthed  2  /* added to pextend */
258
259 /* Sanity check and validate optional args to MAIL FROM: envelope */
260 enum {
261   ENV_MAIL_OPT_NULL,
262   ENV_MAIL_OPT_SIZE, ENV_MAIL_OPT_BODY, ENV_MAIL_OPT_AUTH,
263 #ifndef DISABLE_PRDR
264   ENV_MAIL_OPT_PRDR,
265 #endif
266   ENV_MAIL_OPT_RET, ENV_MAIL_OPT_ENVID,
267 #ifdef SUPPORT_I18N
268   ENV_MAIL_OPT_UTF8,
269 #endif
270   };
271 typedef struct {
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 */
276   } env_mail_type_t;
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  },
281 #ifndef DISABLE_PRDR
282     { US"PRDR",   ENV_MAIL_OPT_PRDR,   FALSE },
283 #endif
284     { US"RET",    ENV_MAIL_OPT_RET,    TRUE },
285     { US"ENVID",  ENV_MAIL_OPT_ENVID,  TRUE },
286 #ifdef SUPPORT_I18N
287     { US"SMTPUTF8",ENV_MAIL_OPT_UTF8,  FALSE },         /* rfc6531 */
288 #endif
289     /* keep this the last entry */
290     { US"NULL",   ENV_MAIL_OPT_NULL,   FALSE },
291   };
292
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.
299
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
303 (see tls.c).
304
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.*/
309
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;
315
316
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);
322
323 /*************************************************
324 *          Log incomplete transactions           *
325 *************************************************/
326
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.
330
331 Argument:   string to indicate what aborted the transaction
332 Returns:    nothing
333 */
334
335 static void
336 incomplete_transaction_log(uschar * what)
337 {
338 if (!sender_address                             /* No transaction in progress */
339    || !LOGGING(smtp_incomplete_transaction))
340   return;
341
342 /* Build list of recipients for logging */
343
344 if (recipients_count > 0)
345   {
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;
350   }
351
352 log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS,
353   "%s incomplete transaction (%s)", host_and_ident(TRUE), what);
354 }
355
356
357
358 static void
359 log_close_event(const uschar * reason)
360 {
361 log_write(L_smtp_connection, LOG_MAIN, "%s D=%s closed %s",
362   smtp_get_connection_info(), string_timesince(&smtp_connection_start), reason);
363 }
364
365
366 void
367 smtp_command_timeout_exit(void)
368 {
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);
379 }
380
381 void
382 smtp_command_sigterm_exit(void)
383 {
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);
390 }
391
392 void
393 smtp_data_timeout_exit(void)
394 {
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 */
401 }
402
403 void
404 smtp_data_sigint_exit(void)
405 {
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 */
410 }
411
412
413 /******************************************************************************/
414 /* SMTP input buffer handling.  Most of these are similar to stdio routines.  */
415
416 static void
417 smtp_buf_init(void)
418 {
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. */
422
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';
426
427 smtp_inptr = smtp_inend = smtp_inbuffer;
428 smtp_had_eof = smtp_had_error = 0;
429 }
430
431
432
433 /* Refill the buffer, and notify DKIM verification code.
434 Return false for error or EOF.
435 */
436
437 static BOOL
438 smtp_refill(unsigned lim)
439 {
440 int rc, save_errno;
441
442 if (!smtp_out) return FALSE;
443 fflush(smtp_out);
444 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
445
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. */
448
449 rc = read(fileno(smtp_in), smtp_inbuffer, MIN(IN_BUFFER_SIZE-1, lim));
450 save_errno = errno;
451 if (smtp_receive_timeout > 0) ALARM_CLR(0);
452 if (rc <= 0)
453   {
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. */
456   if (rc < 0)
457     {
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();
464     if (had_data_sigint)
465       smtp_data_sigint_exit();
466
467     smtp_had_error = save_errno;
468     smtp_read_error = string_copy_perm(
469       string_sprintf(" (error: %s)", strerror(save_errno)), FALSE);
470     }
471   else
472     smtp_had_eof = 1;
473   return FALSE;
474   }
475 #ifndef DISABLE_DKIM
476 dkim_exim_verify_feed(smtp_inbuffer, rc);
477 #endif
478 smtp_inend = smtp_inbuffer + rc;
479 smtp_inptr = smtp_inbuffer;
480 return TRUE;
481 }
482
483
484 /* Check if there is buffered data */
485
486 BOOL
487 smtp_hasc(void)
488 {
489 return smtp_inptr < smtp_inend;
490 }
491
492 /* SMTP version of getc()
493
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.
498
499 Arguments:  lim         Maximum amount to read/buffer
500 Returns:    the next character or EOF
501 */
502
503 int
504 smtp_getc(unsigned lim)
505 {
506 if (!smtp_hasc() && !smtp_refill(lim)) return EOF;
507 return *smtp_inptr++;
508 }
509
510 /* Get many bytes, refilling buffer if needed */
511
512 uschar *
513 smtp_getbuf(unsigned * len)
514 {
515 unsigned size;
516 uschar * buf;
517
518 if (!smtp_hasc() && !smtp_refill(*len))
519   { *len = 0; return NULL; }
520
521 if ((size = smtp_inend - smtp_inptr) > *len) size = *len;
522 buf = smtp_inptr;
523 smtp_inptr += size;
524 *len = size;
525 return buf;
526 }
527
528 /* Copy buffered data to the dkim feed.
529 Called, unless TLS, just before starting to read message headers. */
530
531 void
532 smtp_get_cache(unsigned lim)
533 {
534 #ifndef DISABLE_DKIM
535 int n = smtp_inend - smtp_inptr;
536 if (n > lim)
537   n = lim;
538 if (n > 0)
539   dkim_exim_verify_feed(smtp_inptr, n);
540 #endif
541 }
542
543
544 /* SMTP version of ungetc()
545 Puts a character back in the input buffer. Only ever called once.
546
547 Arguments:
548   ch           the character
549
550 Returns:       the character
551 */
552
553 int
554 smtp_ungetc(int ch)
555 {
556 if (smtp_inptr <= smtp_inbuffer)        /* NB: NOT smtp_hasc() ! */
557   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "buffer underflow in smtp_ungetc");
558
559 *--smtp_inptr = ch;
560 return ch;
561 }
562
563
564 /* SMTP version of feof()
565 Tests for a previous EOF
566
567 Arguments:     none
568 Returns:       non-zero if the eof flag is set
569 */
570
571 int
572 smtp_feof(void)
573 {
574 return smtp_had_eof;
575 }
576
577
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.
581
582 Arguments:     none
583 Returns:       non-zero if the error flag is set
584 */
585
586 int
587 smtp_ferror(void)
588 {
589 errno = smtp_had_error;
590 return smtp_had_error;
591 }
592
593
594 /* Check if a getc will block or not */
595
596 static BOOL
597 smtp_could_getc(void)
598 {
599 int fd, rc;
600 fd_set fds;
601 struct timeval tzero = {.tv_sec = 0, .tv_usec = 0};
602
603 if (smtp_inptr < smtp_inend)
604   return TRUE;
605
606 fd = fileno(smtp_in);
607 FD_ZERO(&fds);
608 FD_SET(fd, &fds);
609 rc = select(fd + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL, &tzero);
610
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 */
614
615 smtp_ungetc(rc);
616 return TRUE;
617 }
618
619
620 /******************************************************************************/
621 /*************************************************
622 *          Recheck synchronization               *
623 *************************************************/
624
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
629 further check.
630
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.
636
637 When there is unwanted input, we read it so that it appears in the log of the
638 error.
639
640 Arguments: none
641 Returns:   TRUE if all is well; FALSE if there is input pending
642 */
643
644 static BOOL
645 wouldblock_reading(void)
646 {
647 #ifndef DISABLE_TLS
648 if (tls_in.active.sock >= 0)
649  return !tls_could_getc();
650 #endif
651
652 return !smtp_could_getc();
653 }
654
655 static BOOL
656 check_sync(void)
657 {
658 if (!smtp_enforce_sync || !sender_host_address || f.sender_host_notsocket)
659   return TRUE;
660
661 return wouldblock_reading();
662 }
663
664
665 /******************************************************************************/
666 /* Variants of the smtp_* input handling functions for use in CHUNKING mode */
667
668 /* Forward declarations */
669 static inline void bdat_push_receive_functions(void);
670 static inline void bdat_pop_receive_functions(void);
671
672
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.
678
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.
684
685 Arguments:  lim         (ignored)
686 Returns:    the next character or ERR, EOD or EOF
687 */
688
689 int
690 bdat_getc(unsigned lim)
691 {
692 uschar * user_msg = NULL;
693 uschar * log_msg;
694
695 for(;;)
696   {
697 #ifndef DISABLE_DKIM
698   unsigned dkim_save;
699 #endif
700
701   if (chunking_data_left > 0)
702     return lwr_receive_getc(chunking_data_left--);
703
704   bdat_pop_receive_functions();
705 #ifndef DISABLE_DKIM
706   dkim_save = dkim_collect_input;
707   dkim_collect_input = 0;
708 #endif
709
710   /* Unless PIPELINING was offered, there should be no next command
711   until after we ack that chunk */
712
713   if (!f.smtp_in_pipelining_advertised && !check_sync())
714     {
715     unsigned n = smtp_inend - smtp_inptr;
716     if (n > 32) n = 32;
717
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;
728     }
729
730   /* If not the last, ack the received chunk.  The last response is delayed
731   until after the data ACL decides on it */
732
733   if (chunking_state == CHUNKING_LAST)
734     {
735 #ifndef DISABLE_DKIM
736     dkim_collect_input = dkim_save;
737     dkim_exim_verify_feed(NULL, 0);     /* notify EOD */
738     dkim_collect_input = 0;
739 #endif
740     return EOD;
741     }
742
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);
746
747   /* Expect another BDAT cmd from input. RFC 3030 says nothing about
748   QUIT, RSET or NOOP but handling them seems obvious */
749
750 next_cmd:
751   switch(smtp_read_command(TRUE, 1))
752     {
753     default:
754       (void) synprot_error(L_smtp_protocol_error, 503, NULL,
755         US"only BDAT permissible after non-LAST BDAT");
756
757   repeat_until_rset:
758       switch(smtp_read_command(TRUE, 1))
759         {
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)
765                           return EOF;
766                         goto repeat_until_rset;
767         }
768
769     case QUIT_CMD:
770       smtp_quit_handler(&user_msg, &log_msg);
771       /*FALLTHROUGH*/
772     case EOF_CMD:
773       return EOF;
774
775     case RSET_CMD:
776       smtp_rset_handler();
777       return ERR;
778
779     case NOOP_CMD:
780       HAD(SCH_NOOP);
781       smtp_printf("250 OK\r\n", FALSE);
782       goto next_cmd;
783
784     case BDAT_CMD:
785       {
786       int n;
787
788       if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
789         {
790         (void) synprot_error(L_smtp_protocol_error, 501, NULL,
791           US"missing size for BDAT command");
792         return ERR;
793         }
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);
799
800       if (chunking_datasize == 0)
801         if (chunking_state == CHUNKING_LAST)
802           return EOD;
803         else
804           {
805           (void) synprot_error(L_smtp_protocol_error, 504, NULL,
806             US"zero size for BDAT command");
807           goto repeat_until_rset;
808           }
809
810       bdat_push_receive_functions();
811 #ifndef DISABLE_DKIM
812       dkim_collect_input = dkim_save;
813 #endif
814       break;    /* to top of main loop */
815       }
816     }
817   }
818 }
819
820 BOOL
821 bdat_hasc(void)
822 {
823 if (chunking_data_left > 0)
824   return lwr_receive_hasc();
825 return TRUE;
826 }
827
828 uschar *
829 bdat_getbuf(unsigned * len)
830 {
831 uschar * buf;
832
833 if (chunking_data_left <= 0)
834   { *len = 0; return NULL; }
835
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;
839 return buf;
840 }
841
842 void
843 bdat_flush_data(void)
844 {
845 while (chunking_data_left)
846   {
847   unsigned n = chunking_data_left;
848   if (!bdat_getbuf(&n)) break;
849   }
850
851 bdat_pop_receive_functions();
852 chunking_state = CHUNKING_OFFERED;
853 DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
854 }
855
856
857 static inline void
858 bdat_push_receive_functions(void)
859 {
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)
864   {
865   lwr_receive_getc = receive_getc;
866   lwr_receive_getbuf = receive_getbuf;
867   lwr_receive_hasc = receive_hasc;
868   lwr_receive_ungetc = receive_ungetc;
869   }
870 else
871   {
872   DEBUG(D_receive) debug_printf("chunking double-push receive functions\n");
873   }
874
875 receive_getc = bdat_getc;
876 receive_getbuf = bdat_getbuf;
877 receive_hasc = bdat_hasc;
878 receive_ungetc = bdat_ungetc;
879 }
880
881 static inline void
882 bdat_pop_receive_functions(void)
883 {
884 if (!lwr_receive_getc)
885   {
886   DEBUG(D_receive) debug_printf("chunking double-pop receive functions\n");
887   return;
888   }
889 receive_getc = lwr_receive_getc;
890 receive_getbuf = lwr_receive_getbuf;
891 receive_hasc = lwr_receive_hasc;
892 receive_ungetc = lwr_receive_ungetc;
893
894 lwr_receive_getc = NULL;
895 lwr_receive_getbuf = NULL;
896 lwr_receive_hasc = NULL;
897 lwr_receive_ungetc = NULL;
898 }
899
900 int
901 bdat_ungetc(int ch)
902 {
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);
906 }
907
908
909
910 /******************************************************************************/
911
912 /*************************************************
913 *     Write formatted string to SMTP channel     *
914 *************************************************/
915
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().
923
924 This function is exposed to the local_scan API; do not change the signature.
925
926 Arguments:
927   format      format string
928   more        further data expected
929   ...         optional arguments
930
931 Returns:      nothing
932 */
933
934 void
935 smtp_printf(const char *format, BOOL more, ...)
936 {
937 va_list ap;
938
939 va_start(ap, more);
940 smtp_vprintf(format, more, ap);
941 va_end(ap);
942 }
943
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.
947
948 This function is exposed to the local_scan API; do not change the signature.
949 */
950 /*XXX consider passing caller-info in, for string_vformat-onward */
951
952 void
953 smtp_vprintf(const char *format, BOOL more, va_list ap)
954 {
955 gstring gs = { .size = big_buffer_size, .ptr = 0, .s = big_buffer };
956 BOOL yield;
957
958 /* Use taint-unchecked routines for writing into big_buffer, trusting
959 that we'll never expand it. */
960
961 yield = !! string_vformat(&gs, SVFMT_TAINT_NOCHK, format, ap);
962 string_from_gstring(&gs);
963
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>>" : "      ",
969                   (int)(t - s), s);
970
971 if (!yield)
972   {
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);
976   }
977
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(). */
983
984 if (fl.rcpt_in_progress)
985   {
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;
992   }
993
994 /* Now write the string */
995
996 if (
997 #ifndef DISABLE_TLS
998     tls_in.active.sock >= 0 ? (tls_write(NULL, gs.s, gs.ptr, more) < 0) :
999 #endif
1000     (fwrite(gs.s, gs.ptr, 1, smtp_out) == 0)
1001    )
1002     smtp_write_error = -1;
1003 }
1004
1005
1006
1007 /*************************************************
1008 *        Flush SMTP out and check for error      *
1009 *************************************************/
1010
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.
1014
1015 Arguments:  none
1016 Returns:    0 for no error; -1 after an error
1017 */
1018
1019 int
1020 smtp_fflush(void)
1021 {
1022 if (tls_in.active.sock < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
1023
1024 if (
1025 #ifndef DISABLE_TLS
1026     tls_in.active.sock >= 0 ? (tls_write(NULL, NULL, 0, FALSE) < 0) :
1027 #endif
1028     (fflush(smtp_out) != 0)
1029    )
1030     smtp_write_error = -1;
1031
1032 return smtp_write_error;
1033 }
1034
1035
1036
1037 /* If there's input waiting (and we're doing pipelineing) then we can pipeline
1038 a reponse with the one following. */
1039
1040 static BOOL
1041 pipeline_response(void)
1042 {
1043 if (  !smtp_enforce_sync || !sender_host_address
1044    || f.sender_host_notsocket || !f.smtp_in_pipelining_advertised)
1045   return FALSE;
1046
1047 if (wouldblock_reading()) return FALSE;
1048 f.smtp_in_pipelining_used = TRUE;
1049 return TRUE;
1050 }
1051
1052
1053 #ifndef DISABLE_PIPE_CONNECT
1054 static BOOL
1055 pipeline_connect_sends(void)
1056 {
1057 if (!sender_host_address || f.sender_host_notsocket || !fl.pipe_connect_acceptable)
1058   return FALSE;
1059
1060 if (wouldblock_reading()) return FALSE;
1061 f.smtp_in_early_pipe_used = TRUE;
1062 return TRUE;
1063 }
1064 #endif
1065
1066 /*************************************************
1067 *          SMTP command read timeout             *
1068 *************************************************/
1069
1070 /* Signal handler for timing out incoming SMTP commands. This attempts to
1071 finish off tidily.
1072
1073 Argument: signal number (SIGALRM)
1074 Returns:  nothing
1075 */
1076
1077 static void
1078 command_timeout_handler(int sig)
1079 {
1080 had_command_timeout = sig;
1081 }
1082
1083
1084
1085 /*************************************************
1086 *               SIGTERM received                 *
1087 *************************************************/
1088
1089 /* Signal handler for handling SIGTERM. Again, try to finish tidily.
1090
1091 Argument: signal number (SIGTERM)
1092 Returns:  nothing
1093 */
1094
1095 static void
1096 command_sigterm_handler(int sig)
1097 {
1098 had_command_sigterm = sig;
1099 }
1100
1101
1102
1103
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
1110 connection cannot.
1111
1112 Arguments: none
1113 Returns:   bool
1114 */
1115
1116 static BOOL
1117 check_proxy_protocol_host()
1118 {
1119 int rc;
1120
1121 if (  sender_host_address
1122    && (rc = verify_check_this_host(CUSS &hosts_proxy, NULL, NULL,
1123                            sender_host_address, NULL)) == OK)
1124   {
1125   DEBUG(D_receive)
1126     debug_printf("Detected proxy protocol configured host\n");
1127   proxy_session = TRUE;
1128   }
1129 return proxy_session;
1130 }
1131
1132
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.
1142
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.
1147
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.
1150
1151 Return the amount read.
1152 */
1153
1154 static int
1155 swallow_until_crlf(int fd, uschar *base, int already, int capacity)
1156 {
1157 uschar *to = base + already;
1158 uschar *cr;
1159 int have = 0;
1160 int ret;
1161 int last = 0;
1162
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. */
1165
1166 cr = memchr(base, '\r', already);
1167 if (cr != NULL)
1168   {
1169   if ((cr - base) < already - 1)
1170     {
1171     /* \r and presumed \n already within what we have; probably not
1172     actually proxy protocol, but abort cleanly. */
1173     return 0;
1174     }
1175   /* \r is last character read, just need one more. */
1176   last = 1;
1177   }
1178
1179 while (capacity > 0)
1180   {
1181   do { ret = read(fd, to, 1); } while (ret == -1 && errno == EINTR && !had_command_timeout);
1182   if (ret == -1)
1183     return -1;
1184   have++;
1185   if (last)
1186     return have;
1187   if (*to == '\r')
1188     last = 1;
1189   capacity--;
1190   to++;
1191   }
1192
1193 /* reached end without having room for a final newline, abort */
1194 errno = EOVERFLOW;
1195 return -1;
1196 }
1197
1198
1199 static void
1200 proxy_debug(uschar * buf, unsigned start, unsigned end)
1201 {
1202 debug_printf("PROXY<<");
1203 while (start < end) debug_printf(" %02x", buf[start++]);
1204 debug_printf("\n");
1205 }
1206
1207
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.
1215
1216 Arguments: none
1217 Returns:   Boolean success
1218 */
1219
1220 static void
1221 setup_proxy_protocol_host()
1222 {
1223 union {
1224   struct {
1225     uschar line[108];
1226   } v1;
1227   struct {
1228     uschar sig[12];
1229     uint8_t ver_cmd;
1230     uint8_t fam;
1231     uint16_t len;
1232     union {
1233       struct { /* TCP/UDP over IPv4, len = 12 */
1234         uint32_t src_addr;
1235         uint32_t dst_addr;
1236         uint16_t src_port;
1237         uint16_t dst_port;
1238       } ip4;
1239       struct { /* TCP/UDP over IPv6, len = 36 */
1240         uint8_t  src_addr[16];
1241         uint8_t  dst_addr[16];
1242         uint16_t src_port;
1243         uint16_t dst_port;
1244       } ip6;
1245       struct { /* AF_UNIX sockets, len = 216 */
1246         uschar   src_addr[108];
1247         uschar   dst_addr[108];
1248       } unx;
1249     } addr;
1250   } v2;
1251 } hdr;
1252
1253 /* Temp variables used in PPv2 address:port parsing */
1254 uint16_t tmpport;
1255 char tmpip[INET_ADDRSTRLEN];
1256 struct sockaddr_in tmpaddr;
1257 char tmpip6[INET6_ADDRSTRLEN];
1258 struct sockaddr_in6 tmpaddr6;
1259
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
1267 the stated length.
1268
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
1272
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.
1276
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.
1279
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.
1282 */
1283
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
1288 # endif
1289
1290 int get_ok = 0;
1291 int size, ret;
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);
1296 BOOL yield = FALSE;
1297
1298 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1299 ALARM(proxy_protocol_timeout);
1300
1301 do
1302   {
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);
1309
1310 if (ret == -1)
1311   goto proxyfail;
1312 DEBUG(D_receive) proxy_debug(US &hdr, 0, ret);
1313
1314 /* For v2, handle reading the length, and then the rest. */
1315 if ((ret == PROXY_INITIAL_READ) && (memcmp(&hdr.v2, v2sig, sizeof(v2sig)) == 0))
1316   {
1317   int retmore;
1318   uint8_t ver;
1319
1320   DEBUG(D_receive) debug_printf("v2\n");
1321
1322   /* First get the length fields. */
1323   do
1324     {
1325     retmore = read(fd, (uschar*)&hdr + ret, PROXY_V2_HEADER_SIZE - PROXY_INITIAL_READ);
1326     } while (retmore == -1 && errno == EINTR && !had_command_timeout);
1327   if (retmore == -1)
1328     goto proxyfail;
1329   DEBUG(D_receive) proxy_debug(US &hdr, ret, ret + retmore);
1330
1331   ret += retmore;
1332
1333   ver = (hdr.v2.ver_cmd & 0xf0) >> 4;
1334
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. */
1339
1340   if (ver != 0x02)
1341     {
1342     DEBUG(D_receive) debug_printf("Invalid Proxy Protocol version: %d\n", ver);
1343     goto proxyfail;
1344     }
1345
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));
1350
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
1353   get the rest. */
1354   if (size > sizeof(hdr))
1355     {
1356     DEBUG(D_receive) debug_printf("PROXYv2 header size unreasonably large; security attack?\n");
1357     goto proxyfail;
1358     }
1359
1360   do
1361     {
1362     do
1363       {
1364       retmore = read(fd, (uschar*)&hdr + ret, size-ret);
1365       } while (retmore == -1 && errno == EINTR && !had_command_timeout);
1366     if (retmore == -1)
1367       goto proxyfail;
1368     DEBUG(D_receive) proxy_debug(US &hdr, ret, ret + retmore);
1369     ret += retmore;
1370     DEBUG(D_receive) debug_printf("PROXYv2: have %d/%d required octets\n", ret, size);
1371     } while (ret < size);
1372
1373   } /* end scope for getting rest of data for v2 */
1374
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
1377 read the rest". */
1378
1379 if (ret >= 16 && memcmp(&hdr.v2, v2sig, 12) == 0)
1380   {
1381   uint8_t cmd = (hdr.v2.ver_cmd & 0x0f);
1382
1383   switch (cmd)
1384     {
1385     case 0x01: /* PROXY command */
1386       switch (hdr.v2.fam)
1387         {
1388         case 0x11:  /* TCPv4 address type */
1389           iptype = US"IPv4";
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))
1393             {
1394             DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
1395             goto proxyfail;
1396             }
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))
1406             {
1407             DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
1408             goto proxyfail;
1409             }
1410           proxy_external_address = string_copy(US tmpip);
1411           tmpport              = ntohs(hdr.v2.addr.ip4.dst_port);
1412           proxy_external_port  = tmpport;
1413           goto done;
1414         case 0x21:  /* TCPv6 address type */
1415           iptype = US"IPv6";
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))
1419             {
1420             DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
1421             goto proxyfail;
1422             }
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))
1432             {
1433             DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
1434             goto proxyfail;
1435             }
1436           proxy_external_address = string_copy(US tmpip6);
1437           tmpport              = ntohs(hdr.v2.addr.ip6.dst_port);
1438           proxy_external_port  = tmpport;
1439           goto done;
1440         default:
1441           DEBUG(D_receive)
1442             debug_printf("Unsupported PROXYv2 connection type: 0x%02x\n",
1443                          hdr.v2.fam);
1444           goto proxyfail;
1445         }
1446       /* Unsupported protocol, keep local connection address */
1447       break;
1448     case 0x00: /* LOCAL command */
1449       /* Keep local connection address for LOCAL */
1450       iptype = US"local";
1451       break;
1452     default:
1453       DEBUG(D_receive)
1454         debug_printf("Unsupported PROXYv2 command: 0x%x\n", cmd);
1455       goto proxyfail;
1456     }
1457   }
1458 else if (ret >= 8 && memcmp(hdr.v1.line, "PROXY", 5) == 0)
1459   {
1460   uschar *p;
1461   uschar *end;
1462   uschar *sp;     /* Utility variables follow */
1463   int     tmp_port;
1464   int     r2;
1465   char   *endc;
1466
1467   /* get the rest of the line */
1468   r2 = swallow_until_crlf(fd, (uschar*)&hdr, ret, sizeof(hdr)-ret);
1469   if (r2 == -1)
1470     goto proxyfail;
1471   ret += r2;
1472
1473   p = string_copy(hdr.v1.line);
1474   end = memchr(p, '\r', ret - 1);
1475
1476   if (!end || (end == (uschar*)&hdr + ret) || end[1] != '\n')
1477     {
1478     DEBUG(D_receive) debug_printf("Partial or invalid PROXY header\n");
1479     goto proxyfail;
1480     }
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. */
1487   p += 5;
1488   if (!isspace(*(p++)))
1489     {
1490     DEBUG(D_receive) debug_printf("Missing space after PROXY command\n");
1491     goto proxyfail;
1492     }
1493   if (!Ustrncmp(p, CCS"TCP4", 4))
1494     iptype = US"IPv4";
1495   else if (!Ustrncmp(p,CCS"TCP6", 4))
1496     iptype = US"IPv6";
1497   else if (!Ustrncmp(p,CCS"UNKNOWN", 7))
1498     {
1499     iptype = US"Unknown";
1500     goto done;
1501     }
1502   else
1503     {
1504     DEBUG(D_receive) debug_printf("Invalid TCP type\n");
1505     goto proxyfail;
1506     }
1507
1508   p += Ustrlen(iptype);
1509   if (!isspace(*(p++)))
1510     {
1511     DEBUG(D_receive) debug_printf("Missing space after TCP4/6 command\n");
1512     goto proxyfail;
1513     }
1514   /* Find the end of the arg */
1515   if ((sp = Ustrchr(p, ' ')) == NULL)
1516     {
1517     DEBUG(D_receive)
1518       debug_printf("Did not find proxied src %s\n", iptype);
1519     goto proxyfail;
1520     }
1521   *sp = '\0';
1522   if(!string_is_ip_address(p, NULL))
1523     {
1524     DEBUG(D_receive)
1525       debug_printf("Proxied src arg is not an %s address\n", iptype);
1526     goto proxyfail;
1527     }
1528   proxy_local_address = sender_host_address;
1529   sender_host_address = p;
1530   p = sp + 1;
1531   if ((sp = Ustrchr(p, ' ')) == NULL)
1532     {
1533     DEBUG(D_receive)
1534       debug_printf("Did not find proxy dest %s\n", iptype);
1535     goto proxyfail;
1536     }
1537   *sp = '\0';
1538   if(!string_is_ip_address(p, NULL))
1539     {
1540     DEBUG(D_receive)
1541       debug_printf("Proxy dest arg is not an %s address\n", iptype);
1542     goto proxyfail;
1543     }
1544   proxy_external_address = p;
1545   p = sp + 1;
1546   if ((sp = Ustrchr(p, ' ')) == NULL)
1547     {
1548     DEBUG(D_receive) debug_printf("Did not find proxied src port\n");
1549     goto proxyfail;
1550     }
1551   *sp = '\0';
1552   tmp_port = strtol(CCS p, &endc, 10);
1553   if (*endc || tmp_port == 0)
1554     {
1555     DEBUG(D_receive)
1556       debug_printf("Proxied src port '%s' not an integer\n", p);
1557     goto proxyfail;
1558     }
1559   proxy_local_port = sender_host_port;
1560   sender_host_port = tmp_port;
1561   p = sp + 1;
1562   if ((sp = Ustrchr(p, '\0')) == NULL)
1563     {
1564     DEBUG(D_receive) debug_printf("Did not find proxy dest port\n");
1565     goto proxyfail;
1566     }
1567   tmp_port = strtol(CCS p, &endc, 10);
1568   if (*endc || tmp_port == 0)
1569     {
1570     DEBUG(D_receive)
1571       debug_printf("Proxy dest port '%s' not an integer\n", p);
1572     goto proxyfail;
1573     }
1574   proxy_external_port = tmp_port;
1575   /* Already checked for /r /n above. Good V1 header received. */
1576   }
1577 else
1578   {
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);
1582   goto proxyfail;
1583   }
1584
1585 done:
1586   DEBUG(D_receive)
1587     debug_printf("Valid %s sender from Proxy Protocol header\n", iptype);
1588   yield = proxy_session;
1589
1590 /* Don't flush any potential buffer contents. Any input on proxyfail
1591 should cause a synchronization failure */
1592
1593 proxyfail:
1594   DEBUG(D_receive) if (had_command_timeout)
1595     debug_printf("Timeout while reading proxy header\n");
1596
1597 bad:
1598   if (yield)
1599     {
1600     sender_host_name = NULL;
1601     (void) host_name_lookup();
1602     host_build_sender_fullhost();
1603     }
1604   else
1605     {
1606     f.proxy_session_failed = TRUE;
1607     DEBUG(D_receive)
1608       debug_printf("Failure to extract proxied host, only QUIT allowed\n");
1609     }
1610
1611 ALARM(0);
1612 return;
1613 }
1614 #endif  /*SUPPORT_PROXY*/
1615
1616 /*************************************************
1617 *           Read one command line                *
1618 *************************************************/
1619
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.
1626
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.
1631
1632 Arguments:
1633   check_sync    if TRUE, check synchronization rules if global option is TRUE
1634   buffer_lim    maximum to buffer in lower layer
1635
1636 Returns:       a code identifying the command (enumerated above)
1637 */
1638
1639 static int
1640 smtp_read_command(BOOL check_sync, unsigned buffer_lim)
1641 {
1642 int c;
1643 int ptr = 0;
1644 BOOL hadnull = FALSE;
1645
1646 had_command_timeout = 0;
1647 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1648
1649 while ((c = (receive_getc)(buffer_lim)) != '\n' && c != EOF)
1650   {
1651   if (ptr >= SMTP_CMD_BUFFER_SIZE)
1652     {
1653     os_non_restarting_signal(SIGALRM, sigalrm_handler);
1654     return OTHER_CMD;
1655     }
1656   if (c == 0)
1657     {
1658     hadnull = TRUE;
1659     c = '?';
1660     }
1661   smtp_cmd_buffer[ptr++] = c;
1662   }
1663
1664 receive_linecount++;    /* For BSMTP errors */
1665 os_non_restarting_signal(SIGALRM, sigalrm_handler);
1666
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. */
1669
1670 if (c == EOF) return EOF_CMD;
1671
1672 /* Remove any CR and white space at the end of the line, and terminate the
1673 string. */
1674
1675 while (ptr > 0 && isspace(smtp_cmd_buffer[ptr-1])) ptr--;
1676 smtp_cmd_buffer[ptr] = 0;
1677
1678 DEBUG(D_receive) debug_printf("SMTP<< %s\n", smtp_cmd_buffer);
1679
1680 /* NULLs are not allowed in SMTP commands */
1681
1682 if (hadnull) return BADCHAR_CMD;
1683
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
1686 if required. */
1687
1688 for (smtp_cmd_list * p = cmd_list; p < cmd_list_end; p++)
1689   {
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)
1693     continue;
1694 #endif
1695   if (  p->len
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] == ' '
1700      )  )
1701     {
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 */
1708        )
1709       return BADSYN_CMD;
1710
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. */
1716
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;
1721
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.
1726
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. */
1729
1730     if (!p->is_mail_cmd)
1731       {
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;
1736       }
1737
1738     /* If there is data for a command that does not expect it, generate the
1739     error here. */
1740
1741     return (p->has_arg || *smtp_cmd_data == 0)? p->cmd : BADARG_CMD;
1742     }
1743   }
1744
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;
1749 #endif
1750
1751 /* Enforce synchronization for unknown commands */
1752
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 */
1758    )
1759   return BADSYN_CMD;
1760
1761 return OTHER_CMD;
1762 }
1763
1764
1765
1766 /*************************************************
1767 *          Forced closedown of call              *
1768 *************************************************/
1769
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
1775 smtp_in.
1776
1777 Arguments:
1778   message   SMTP reply string to send, excluding the code
1779
1780 Returns:    nothing
1781 */
1782
1783 void
1784 smtp_closedown(uschar * message)
1785 {
1786 if (!smtp_in || smtp_batched_input) return;
1787 receive_swallow_smtp();
1788 smtp_printf("421 %s\r\n", FALSE, message);
1789
1790 for (;;) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
1791   {
1792   case EOF_CMD:
1793     return;
1794
1795   case QUIT_CMD:
1796     f.smtp_in_quit = TRUE;
1797     smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
1798     mac_smtp_fflush();
1799     return;
1800
1801   case RSET_CMD:
1802     smtp_printf("250 Reset OK\r\n", FALSE);
1803     break;
1804
1805   default:
1806     smtp_printf("421 %s\r\n", FALSE, message);
1807     break;
1808   }
1809 }
1810
1811
1812
1813
1814 /*************************************************
1815 *        Set up connection info for logging      *
1816 *************************************************/
1817
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.
1822
1823 Argument:    none
1824 Returns:     a string describing the connection
1825 */
1826
1827 uschar *
1828 smtp_get_connection_info(void)
1829 {
1830 const uschar * hostname = sender_fullhost
1831   ? sender_fullhost : sender_host_address;
1832
1833 if (host_checking)
1834   return string_sprintf("SMTP connection from %s", hostname);
1835
1836 if (f.sender_host_unknown || f.sender_host_notsocket)
1837   return string_sprintf("SMTP connection from %s", sender_ident);
1838
1839 if (f.is_inetd)
1840   return string_sprintf("SMTP connection from %s (via inetd)", hostname);
1841
1842 if (LOGGING(incoming_interface) && interface_address)
1843   return string_sprintf("SMTP connection from %s I=[%s]:%d", hostname,
1844     interface_address, interface_port);
1845
1846 return string_sprintf("SMTP connection from %s", hostname);
1847 }
1848
1849
1850
1851 #ifndef DISABLE_TLS
1852 /* Append TLS-related information to a log line
1853
1854 Arguments:
1855   g             String under construction: allocated string to extend, or NULL
1856
1857 Returns:        Allocated string or NULL
1858 */
1859 static gstring *
1860 s_tlslog(gstring * g)
1861 {
1862 if (LOGGING(tls_cipher) && tls_in.cipher)
1863   {
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);
1868 #endif
1869   }
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));
1876 return g;
1877 }
1878 #endif
1879
1880
1881
1882 static gstring *
1883 s_connhad_log(gstring * g)
1884 {
1885 const uschar * sep = smtp_connection_had[SMTP_HBUFF_SIZE-1] != SCH_NONE
1886   ? US" C=..." : US" C=";
1887
1888 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1889   if (smtp_connection_had[i] != SCH_NONE)
1890     {
1891     g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1892     sep = US",";
1893     }
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]]);
1896 return g;
1897 }
1898
1899
1900 /*************************************************
1901 *      Log lack of MAIL if so configured         *
1902 *************************************************/
1903
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.
1907
1908 Arguments:   none
1909 Returns:     nothing
1910 */
1911
1912 void
1913 smtp_log_no_mail(void)
1914 {
1915 uschar * s;
1916 gstring * g = NULL;
1917
1918 if (smtp_mailcmd_count > 0 || !LOGGING(smtp_no_mail))
1919   return;
1920
1921 if (sender_host_authenticated)
1922   {
1923   g = string_append(g, 2, US" A=", sender_host_authenticated);
1924   if (authenticated_id) g = string_append(g, 2, US":", authenticated_id);
1925   }
1926
1927 #ifndef DISABLE_TLS
1928 g = s_tlslog(g);
1929 #endif
1930
1931 g = s_connhad_log(g);
1932
1933 if (!(s = string_from_gstring(g))) s = US"";
1934
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);
1938 }
1939
1940
1941 /* Return list of recent smtp commands */
1942
1943 uschar *
1944 smtp_cmd_hist(void)
1945 {
1946 gstring * list = NULL;
1947 uschar * s;
1948
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]]);
1952
1953 for (int i = 0; i < smtp_ch_index; i++)
1954   list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1955
1956 s = string_from_gstring(list);
1957 return s ? s : US"";
1958 }
1959
1960
1961
1962
1963 /*************************************************
1964 *   Check HELO line and set sender_helo_name     *
1965 *************************************************/
1966
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).
1974
1975 Argument:
1976   s       the data portion of the line (already past any white space)
1977
1978 Returns:  TRUE or FALSE
1979 */
1980
1981 static BOOL
1982 check_helo(uschar *s)
1983 {
1984 uschar *start = s;
1985 uschar *end = s + Ustrlen(s);
1986 BOOL yield = fl.helo_accept_junk;
1987
1988 /* Discard any previous helo name */
1989
1990 sender_helo_name = NULL;
1991
1992 /* Skip tests if junk is permitted. */
1993
1994 if (!yield)
1995
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. */
1999
2000   if (*s == '[')
2001     {
2002     if (end[-1] == ']')
2003       {
2004       end[-1] = 0;
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);
2009       else
2010         yield = (string_is_ip_address(s+1, NULL) != 0);
2011       end[-1] = ']';
2012       }
2013     }
2014
2015   /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
2016   that have been configured (usually underscore - sigh). */
2017
2018   else if (*s)
2019     for (yield = TRUE; *s; s++)
2020       if (!isalnum(*s) && *s != '.' && *s != '-' &&
2021           Ustrchr(helo_allow_chars, *s) == NULL)
2022         {
2023         yield = FALSE;
2024         break;
2025         }
2026
2027 /* Save argument if OK */
2028
2029 if (yield) sender_helo_name = string_copy_perm(start, TRUE);
2030 return yield;
2031 }
2032
2033
2034
2035
2036
2037 /*************************************************
2038 *         Extract SMTP command option            *
2039 *************************************************/
2040
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.
2044
2045 Arguments:
2046    name           point this at the name
2047    value          point this at the data string
2048
2049 Returns:          TRUE if found an option
2050 */
2051
2052 static BOOL
2053 extract_option(uschar **name, uschar **value)
2054 {
2055 uschar *n;
2056 uschar *v;
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--;
2060 v[1] = 0;
2061
2062 while (v > smtp_cmd_data && *v != '=' && !isspace(*v))
2063   {
2064   /* Take care to not stop at a space embedded in a quoted local-part */
2065   if (*v == '"')
2066     {
2067     do v--; while (v > smtp_cmd_data && *v != '"');
2068     if (v <= smtp_cmd_data) return FALSE;
2069     }
2070   v--;
2071   }
2072 if (v <= smtp_cmd_data) return FALSE;
2073
2074 n = v;
2075 if (*v == '=')
2076   {
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;
2080   n[-1] = 0;
2081   }
2082 else
2083   {
2084   n++;
2085   }
2086 *v++ = 0;
2087 *name = n;
2088 *value = v;
2089 return TRUE;
2090 }
2091
2092
2093
2094
2095
2096 /*************************************************
2097 *         Reset for new message                  *
2098 *************************************************/
2099
2100 /* This function is called whenever the SMTP session is reset from
2101 within either of the setup functions; also from the daemon loop.
2102
2103 Argument:   the stacking pool storage reset point
2104 Returns:    nothing
2105 */
2106
2107 void *
2108 smtp_reset(void *reset_point)
2109 {
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;
2114 message_size = -1;
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 */
2127 #endif
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));
2146
2147 authenticated_sender = NULL;
2148 #ifdef EXPERIMENTAL_BRIGHTMAIL
2149 bmi_run = 0;
2150 bmi_verdicts = NULL;
2151 #endif
2152 dnslist_domain = dnslist_matched = NULL;
2153 #ifdef SUPPORT_SPF
2154 spf_header_comment = spf_received = spf_result = spf_smtp_comment = NULL;
2155 spf_result_guessed = FALSE;
2156 #endif
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;
2165 #endif
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;
2170 #endif
2171 #ifdef EXPERIMENTAL_ARC
2172 arc_state = arc_state_reason = NULL;
2173 arc_received_instance = 0;
2174 #endif
2175 dsn_ret = 0;
2176 dsn_envid = NULL;
2177 deliver_host = deliver_host_address = NULL;     /* Can be set by ACL */
2178 #ifndef DISABLE_PRDR
2179 prdr_requested = FALSE;
2180 #endif
2181 #ifdef SUPPORT_I18N
2182 message_smtputf8 = FALSE;
2183 #endif
2184 #ifdef WITH_CONTENT_SCAN
2185 regex_vars_clear();
2186 #endif
2187 body_linecount = body_zerocount = 0;
2188
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. */
2193
2194 /* Reset message ACL variables */
2195
2196 acl_var_m = NULL;
2197
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
2200 messages. */
2201
2202 while (acl_warn_logged)
2203   {
2204   string_item *this = acl_warn_logged;
2205   acl_warn_logged = acl_warn_logged->next;
2206   store_free(this);
2207   }
2208
2209 message_tidyup();
2210 store_reset(reset_point);
2211
2212 message_start();
2213 return store_mark();
2214 }
2215
2216
2217
2218
2219
2220 /*************************************************
2221 *  Initialize for incoming batched SMTP message  *
2222 *************************************************/
2223
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.
2230
2231 Argument: none
2232 Returns:  > 0 message successfully started (reached DATA)
2233           = 0 QUIT read or end of file reached
2234           < 0 should not occur
2235 */
2236
2237 static int
2238 smtp_setup_batch_msg(void)
2239 {
2240 int done = 0;
2241 rmark reset_point = store_mark();
2242
2243 /* Save the line count at the start of each transaction - single commands
2244 like HELO and RSET count as whole transactions. */
2245
2246 bsmtp_transaction_linecount = receive_linecount;
2247
2248 if ((receive_feof)()) return 0;   /* Treat EOF as QUIT */
2249
2250 cancel_cutthrough_connection(TRUE, US"smtp_setup_batch_msg");
2251 reset_point = smtp_reset(reset_point);                /* Reset for start of message */
2252
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. */
2255
2256 while (done <= 0)
2257   {
2258   uschar *errmess;
2259   uschar *recipient = NULL;
2260   int start, end, sender_domain, recipient_domain;
2261
2262   switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
2263     {
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. */
2267
2268     case HELO_CMD:
2269     case EHLO_CMD:
2270
2271       check_helo(smtp_cmd_data);
2272       /* Fall through */
2273
2274     case RSET_CMD:
2275       cancel_cutthrough_connection(TRUE, US"RSET received");
2276       reset_point = smtp_reset(reset_point);
2277       bsmtp_transaction_linecount = receive_linecount;
2278       break;
2279
2280
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. */
2286
2287     case MAIL_CMD:
2288       smtp_mailcmd_count++;              /* Count for no-mail log */
2289       if (sender_address)
2290         /* The function moan_smtp_batch() does not return. */
2291         moan_smtp_batch(smtp_cmd_buffer, "503 Sender already given");
2292
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");
2296
2297       /* Reset to start of message */
2298
2299       cancel_cutthrough_connection(TRUE, US"MAIL received");
2300       reset_point = smtp_reset(reset_point);
2301
2302       /* Apply SMTP rewrite */
2303
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)
2308         : smtp_cmd_data;
2309
2310       /* Extract the address; the TRUE flag allows <> as valid */
2311
2312       raw_sender =
2313         parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
2314           TRUE);
2315
2316       if (!raw_sender)
2317         /* The function moan_smtp_batch() does not return. */
2318         moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
2319
2320       sender_address = string_copy(raw_sender);
2321
2322       /* Qualify unqualified sender addresses if permitted to do so. */
2323
2324       if (  !sender_domain
2325          && sender_address[0] != 0 && sender_address[0] != '@')
2326         if (f.allow_unqualified_sender)
2327           {
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);
2332           }
2333         /* The function moan_smtp_batch() does not return. */
2334         else
2335           moan_smtp_batch(smtp_cmd_buffer, "501 sender address must contain "
2336             "a domain");
2337       break;
2338
2339
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. */
2346
2347     case RCPT_CMD:
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");
2351
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");
2356
2357       /* Check maximum number allowed */
2358
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");
2363
2364       /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
2365       recipient address */
2366
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)
2371         : smtp_cmd_data;
2372
2373       recipient = parse_extract_address(recipient, &errmess, &start, &end,
2374         &recipient_domain, FALSE);
2375
2376       if (!recipient)
2377         /* The function moan_smtp_batch() does not return. */
2378         moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
2379
2380       /* If the recipient address is unqualified, qualify it if permitted. Then
2381       add it to the list of recipients. */
2382
2383       if (!recipient_domain)
2384         if (f.allow_unqualified_recipient)
2385           {
2386           DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
2387             recipient);
2388           /* deconst ok as recipient was not const */
2389           recipient = US rewrite_address_qualify(recipient, TRUE);
2390           }
2391         /* The function moan_smtp_batch() does not return. */
2392         else
2393           moan_smtp_batch(smtp_cmd_buffer,
2394             "501 recipient address must contain a domain");
2395
2396       receive_add_recipient(recipient, -1);
2397       break;
2398
2399
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. */
2403
2404     case DATA_CMD:
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");
2410         else
2411           moan_smtp_batch(smtp_cmd_buffer,
2412             "503 RCPT TO:<recipient> must precede DATA");
2413       else
2414         {
2415         done = 3;                      /* DATA successfully achieved */
2416         message_ended = END_NOTENDED;  /* Indicate in middle of message */
2417         }
2418       break;
2419
2420
2421     /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
2422
2423     case VRFY_CMD:
2424     case EXPN_CMD:
2425     case HELP_CMD:
2426     case NOOP_CMD:
2427     case ETRN_CMD:
2428       bsmtp_transaction_linecount = receive_linecount;
2429       break;
2430
2431
2432     case QUIT_CMD:
2433       f.smtp_in_quit = TRUE;
2434     case EOF_CMD:
2435       done = 2;
2436       break;
2437
2438
2439     case BADARG_CMD:
2440       /* The function moan_smtp_batch() does not return. */
2441       moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected argument data");
2442       break;
2443
2444
2445     case BADCHAR_CMD:
2446       /* The function moan_smtp_batch() does not return. */
2447       moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected NULL in SMTP command");
2448       break;
2449
2450
2451     default:
2452       /* The function moan_smtp_batch() does not return. */
2453       moan_smtp_batch(smtp_cmd_buffer, "500 Command unrecognized");
2454       break;
2455     }
2456   }
2457
2458 return done - 2;  /* Convert yield values */
2459 }
2460
2461
2462
2463
2464 #ifndef DISABLE_TLS
2465 static BOOL
2466 smtp_log_tls_fail(const uschar * errstr)
2467 {
2468 const uschar * conn_info = smtp_get_connection_info();
2469
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 */
2472
2473 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
2474 return FALSE;
2475 }
2476 #endif
2477
2478
2479
2480
2481 #ifdef TCP_FASTOPEN
2482 static void
2483 tfo_in_check(void)
2484 {
2485 # ifdef __FreeBSD__
2486 int is_fastopen;
2487 socklen_t len = sizeof(is_fastopen);
2488
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. */
2491
2492 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_FASTOPEN, &is_fastopen, &len) == 0)
2493   {
2494   if (is_fastopen)
2495     {
2496     DEBUG(D_receive)
2497       debug_printf("TFO mode connection (TCP_FASTOPEN getsockopt)\n");
2498     f.tcp_in_fastopen = TRUE;
2499     }
2500   }
2501 else DEBUG(D_receive)
2502   debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2503
2504 # elif defined(TCP_INFO)
2505 struct tcp_info tinfo;
2506 socklen_t len = sizeof(tinfo);
2507
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)
2511     {
2512     DEBUG(D_receive)
2513       debug_printf("TFO mode connection (ACKd data-on-SYN)\n");
2514     f.tcp_in_fastopen_data = f.tcp_in_fastopen = TRUE;
2515     }
2516   else
2517 #  endif
2518     if (tinfo.tcpi_state == TCP_SYN_RECV)       /* Not seen on FreeBSD 12.1 */
2519     {
2520     DEBUG(D_receive)
2521       debug_printf("TFO mode connection (state TCP_SYN_RECV)\n");
2522     f.tcp_in_fastopen = TRUE;
2523     }
2524 else DEBUG(D_receive)
2525   debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2526 # endif
2527 }
2528 #endif
2529
2530
2531 static void
2532 log_connect_tls_drop(const uschar * what, const uschar * log_msg)
2533 {
2534 gstring * g = s_tlslog(NULL);
2535 uschar * tls = string_from_gstring(g);
2536
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),
2541   tls ? tls : US"",
2542   what,
2543   log_msg ? US": " : US"", log_msg);
2544 }
2545
2546
2547 /*************************************************
2548 *          Start an SMTP session                 *
2549 *************************************************/
2550
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.
2554
2555 Arguments:     none
2556 Returns:       FALSE if the session can not continue; something has
2557                gone wrong, or the connection to the host is blocked
2558 */
2559
2560 BOOL
2561 smtp_start_session(void)
2562 {
2563 int esclen;
2564 uschar *user_msg, *log_msg;
2565 uschar *code, *esc;
2566 uschar *p, *s;
2567 gstring * ss;
2568
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;
2572 smtp_ch_index = 0;
2573
2574 /* Default values for certain variables */
2575
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 */
2586
2587 /* If receiving by -bs from a trusted user, or testing with -bh, we allow
2588 authentication settings from -oMaa to remain in force. */
2589
2590 if (!host_checking && !f.sender_host_notsocket)
2591   sender_host_auth_pubname = sender_host_authenticated = NULL;
2592 authenticated_by = NULL;
2593
2594 #ifndef DISABLE_TLS
2595 tls_in.ver = tls_in.cipher = tls_in.peerdn = NULL;
2596 tls_in.ourcert = tls_in.peercert = NULL;
2597 tls_in.sni = NULL;
2598 tls_in.ocsp = OCSP_NOT_REQ;
2599 fl.tls_advertised = FALSE;
2600 #endif
2601 fl.dsn_advertised = FALSE;
2602 #ifdef SUPPORT_I18N
2603 fl.smtputf8_advertised = FALSE;
2604 #endif
2605
2606 /* Reset ACL connection variables */
2607
2608 acl_var_c = NULL;
2609
2610 /* Allow for trailing 0 in the command and data buffers.  Tainted. */
2611
2612 smtp_cmd_buffer = store_get_perm(2*SMTP_CMD_BUFFER_SIZE + 2, GET_TAINTED);
2613
2614 smtp_cmd_buffer[0] = 0;
2615 smtp_data_buffer = smtp_cmd_buffer + SMTP_CMD_BUFFER_SIZE + 1;
2616
2617 /* For batched input, the protocol setting can be overridden from the
2618 command line by a trusted caller. */
2619
2620 if (smtp_batched_input)
2621   {
2622   if (!received_protocol) received_protocol = US"local-bsmtp";
2623   }
2624
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. */
2627
2628 else
2629   received_protocol =
2630     (sender_host_address ? protocols : protocols_local) [pnormal];
2631
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. */
2634
2635 smtp_buf_init();
2636
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;
2648
2649 /* Set up the message size limit; this may be host-specific */
2650
2651 thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
2652 if (expand_string_message)
2653   {
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);
2657   else
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");
2661   return FALSE;
2662   }
2663
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.
2670
2671 If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
2672 reserve for certain hosts and/or networks. */
2673
2674 if (!f.sender_host_unknown)
2675   {
2676   int rc;
2677   BOOL reserved_host = FALSE;
2678
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.
2681
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.
2688
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.
2693
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.
2697
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
2700   support altogether.
2701
2702   How to do this properly in IPv6 is not yet known. */
2703
2704 #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
2705
2706 # ifdef GLIBC_IP_OPTIONS
2707 #  if (!defined __GLIBC__) || (__GLIBC__ < 2)
2708 #   define OPTSTYLE 1
2709 #  else
2710 #   define OPTSTYLE 2
2711 #  endif
2712 # elif defined DARWIN_IP_OPTIONS
2713 # define OPTSTYLE 2
2714 # else
2715 # define OPTSTYLE 3
2716 # endif
2717
2718   if (!host_checking && !f.sender_host_notsocket)
2719     {
2720 # if OPTSTYLE == 1
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);
2727 # else
2728     struct ipoption ipoptblock;
2729     struct ipoption *ipopt = &ipoptblock;
2730     EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2731 # endif
2732
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
2738     check. */
2739
2740     DEBUG(D_receive) debug_printf("checking for IP options\n");
2741
2742     if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, US (ipopt),
2743           &optlen) < 0)
2744       {
2745       if (errno != ENOPROTOOPT)
2746         {
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);
2750         return FALSE;
2751         }
2752       }
2753
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. */
2758
2759     else if (optlen > 0)
2760       {
2761       uschar * p = big_buffer;
2762       uschar * pend = big_buffer + big_buffer_size;
2763       uschar * adptr;
2764       int optcount;
2765       struct in_addr addr;
2766
2767 # if OPTSTYLE == 1
2768       uschar * optstart = US (ipopt->__data);
2769 # elif OPTSTYLE == 2
2770       uschar * optstart = US (ipopt->ip_opts);
2771 # else
2772       uschar * optstart = US (ipopt->ipopt_list);
2773 # endif
2774
2775       DEBUG(D_receive) debug_printf("IP options exist\n");
2776
2777       Ustrcpy(p, "IP options on incoming call:");
2778       p += Ustrlen(p);
2779
2780       for (uschar * opt = optstart; opt && opt < US (ipopt) + optlen; )
2781         switch (*opt)
2782           {
2783           case IPOPT_EOL:
2784             opt = NULL;
2785             break;
2786
2787           case IPOPT_NOP:
2788             opt++;
2789             break;
2790
2791           case IPOPT_SSRR:
2792           case IPOPT_LSRR:
2793             if (!
2794 # if OPTSTYLE == 1
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))
2802 # else
2803                  string_format(p, pend-p, " %s [@%s",
2804                  (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2805                  inet_ntoa(ipopt->ipopt_dst))
2806 # endif
2807               )
2808               {
2809               opt = NULL;
2810               break;
2811               }
2812
2813             p += Ustrlen(p);
2814             optcount = (opt[1] - 3) / sizeof(struct in_addr);
2815             adptr = opt + 3;
2816             while (optcount-- > 0)
2817               {
2818               memcpy(&addr, adptr, sizeof(addr));
2819               if (!string_format(p, pend - p - 1, "%s%s",
2820                     (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2821                 {
2822                 opt = NULL;
2823                 break;
2824                 }
2825               p += Ustrlen(p);
2826               adptr += sizeof(struct in_addr);
2827               }
2828             *p++ = ']';
2829             opt += opt[1];
2830             break;
2831
2832           default:
2833               {
2834               if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2835               Ustrcat(p, "[ ");
2836               p += 2;
2837               for (int i = 0; i < opt[1]; i++)
2838                 p += sprintf(CS p, "%2.2x ", opt[i]);
2839               *p++ = ']';
2840               }
2841             opt += opt[1];
2842             break;
2843           }
2844
2845       *p = 0;
2846       log_write(0, LOG_MAIN, "%s", big_buffer);
2847
2848       /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2849
2850       log_write(0, LOG_MAIN|LOG_REJECT,
2851         "connection from %s refused (IP options)", host_and_ident(FALSE));
2852
2853       smtp_printf("554 SMTP service not available\r\n", FALSE);
2854       return FALSE;
2855       }
2856
2857     /* Length of options = 0 => there are no options */
2858
2859     else DEBUG(D_receive) debug_printf("no IP options found\n");
2860     }
2861 #endif  /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2862
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. */
2866
2867   if (smtp_accept_keepalive && !f.sender_host_notsocket)
2868     ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2869
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
2873   checks later. */
2874
2875   if (verify_check_host(&host_lookup) == OK)
2876     {
2877     (void)host_name_lookup();
2878     host_build_sender_fullhost();
2879     }
2880
2881   /* Delay this until we have the full name, if it is looked up. */
2882
2883   set_process_info("handling incoming connection from %s",
2884     host_and_ident(FALSE));
2885
2886   /* Expand smtp_receive_timeout, if needed */
2887
2888   if (smtp_receive_timeout_s)
2889     {
2890     uschar * exp;
2891     if (  !(exp = expand_string(smtp_receive_timeout_s))
2892        || !(*exp)
2893        || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2894        )
2895       log_write(0, LOG_MAIN|LOG_PANIC,
2896         "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2897     }
2898
2899   /* Test for explicit connection rejection */
2900
2901   if (verify_check_host(&host_reject_connection) == OK)
2902     {
2903     log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2904       "from %s (host_reject_connection)", host_and_ident(FALSE));
2905 #ifndef DISABLE_TLS
2906     if (!tls_in.on_connect)
2907 #endif
2908       smtp_printf("554 SMTP service not available\r\n", FALSE);
2909     return FALSE;
2910     }
2911
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
2919   not exist). */
2920
2921 #ifdef USE_TCP_WRAPPERS
2922   errno = 0;
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);
2927
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))
2932     {
2933     if (errno == 0 || errno == ENOENT)
2934       {
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);
2940       }
2941     else
2942       {
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);
2950       }
2951     return FALSE;
2952     }
2953 #endif
2954
2955   /* Check for reserved slots. The value of smtp_accept_count has already been
2956   incremented to include this process. */
2957
2958   if (smtp_accept_max > 0 &&
2959       smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
2960     {
2961     if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2962       {
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);
2970       return FALSE;
2971       }
2972     reserved_host = TRUE;
2973     }
2974
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. */
2980
2981   if (smtp_load_reserve >= 0 &&
2982        load_average > smtp_load_reserve &&
2983        !reserved_host &&
2984        verify_check_host(&smtp_reserve_hosts) != OK)
2985     {
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);
2992     return FALSE;
2993     }
2994
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. */
3000
3001   f.allow_unqualified_sender =
3002     verify_check_host(&sender_unqualified_hosts) == OK;
3003
3004   f.allow_unqualified_recipient =
3005     verify_check_host(&recipient_unqualified_hosts) == OK;
3006
3007   /* Determine whether HELO/EHLO is required for this host. The requirement
3008   can be hard or soft. */
3009
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;
3013
3014   /* Determine whether this hosts is permitted to send syntactic junk
3015   after a HELO or EHLO command. */
3016
3017   fl.helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
3018   }
3019
3020 /* For batch SMTP input we are now done. */
3021
3022 if (smtp_batched_input) return TRUE;
3023
3024 /* If valid Proxy Protocol source is connecting, set up session.
3025 Failure will not allow any SMTP function other than QUIT. */
3026
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();
3032 #endif
3033
3034 /* Run the connect ACL if it exists */
3035
3036 user_msg = NULL;
3037 if (acl_smtp_connect)
3038   {
3039   int rc;
3040   if ((rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
3041                       &log_msg)) != OK)
3042     {
3043 #ifndef DISABLE_TLS
3044     if (tls_in.on_connect)
3045       log_connect_tls_drop(US"'connect' ACL", log_msg);
3046     else
3047 #endif
3048       (void) smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
3049     return FALSE;
3050     }
3051   }
3052
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. */
3055
3056 #ifndef DISABLE_TLS
3057 if (tls_in.on_connect)
3058   {
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;
3062   }
3063 #endif
3064
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. */
3067
3068 code = US"220";   /* Default status code */
3069 esc = US"";       /* Default extended status code */
3070 esclen = 0;       /* Length of esc */
3071
3072 if (user_msg)
3073   {
3074   int codelen = 3;
3075   s = user_msg;
3076   smtp_message_code(&code, &codelen, &s, NULL, TRUE);
3077   if (codelen > 4)
3078     {
3079     esc = code + 4;
3080     esclen = codelen - 4;
3081     }
3082   }
3083 else if (!(s = expand_string(smtp_banner)))
3084   {
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 */
3089 #ifndef DISABLE_TLS
3090   if (tls_in.on_connect) tls_close(NULL, TLS_SHUTDOWN_WAIT);
3091 #endif
3092   return FALSE;
3093   }
3094
3095 /* Remove any terminating newlines; might as well remove trailing space too */
3096
3097 p = s + Ustrlen(s);
3098 while (p > s && isspace(p[-1])) p--;
3099 s = string_copyn(s, p-s);
3100
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. */
3109
3110 ss = string_get(256);
3111
3112 p = s;
3113 do       /* At least once, in case we have an empty string */
3114   {
3115   int len;
3116   uschar *linebreak = Ustrchr(p, '\n');
3117   ss = string_catn(ss, code, 3);
3118   if (!linebreak)
3119     {
3120     len = Ustrlen(p);
3121     ss = string_catn(ss, US" ", 1);
3122     }
3123   else
3124     {
3125     len = linebreak - p;
3126     ss = string_catn(ss, US"-", 1);
3127     }
3128   ss = string_catn(ss, esc, esclen);
3129   ss = string_catn(ss, p, len);
3130   ss = string_catn(ss, US"\r\n", 2);
3131   p += len;
3132   if (linebreak) p++;
3133   }
3134 while (*p);
3135
3136 /* Before we write the banner, check that there is no input pending, unless
3137 this synchronisation check is disabled. */
3138
3139 #ifndef DISABLE_PIPE_CONNECT
3140 fl.pipe_connect_acceptable =
3141   sender_host_address && verify_check_host(&pipe_connect_advertise_hosts) == OK;
3142
3143 if (!check_sync())
3144   if (fl.pipe_connect_acceptable)
3145     f.smtp_in_early_pipe_used = TRUE;
3146   else
3147 #else
3148 if (!check_sync())
3149 #endif
3150     {
3151     unsigned n = smtp_inend - smtp_inptr;
3152     if (n > 128) n = 128;
3153
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);
3159     return FALSE;
3160     }
3161
3162 /* Now output the banner */
3163 /*XXX the ehlo-resp code does its own tls/nontls bit.  Maybe subroutine that? */
3164
3165 smtp_printf("%s",
3166 #ifndef DISABLE_PIPE_CONNECT
3167   fl.pipe_connect_acceptable && pipeline_connect_sends(),
3168 #else
3169   FALSE,
3170 #endif
3171   string_from_gstring(ss));
3172
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. */
3175
3176 #ifdef TCP_FASTOPEN
3177 if (sender_host_address && !f.sender_host_notsocket) tfo_in_check();
3178 #endif
3179
3180 return TRUE;
3181 }
3182
3183
3184
3185
3186
3187 /*************************************************
3188 *     Handle SMTP syntax and protocol errors     *
3189 *************************************************/
3190
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.
3194
3195 Arguments:
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
3200
3201 Returns:    -1   limit of syntax/protocol errors NOT exceeded
3202             +1   limit of syntax/protocol errors IS exceeded
3203
3204 These values fit in with the values of the "done" variable in the main
3205 processing loop in smtp_setup_msg(). */
3206
3207 static int
3208 synprot_error(int type, int code, uschar *data, uschar *errmess)
3209 {
3210 int yield = -1;
3211
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);
3215
3216 if (++synprot_error_count > smtp_max_synprot_errors)
3217   {
3218   yield = 1;
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))
3223     );
3224   }
3225
3226 if (code > 0)
3227   {
3228   smtp_printf("%d%c%s%s%s\r\n", FALSE, code, yield == 1 ? '-' : ' ',
3229     data ? data : US"", data ? US": " : US"", errmess);
3230   if (yield == 1)
3231     smtp_printf("%d Too many syntax or protocol errors\r\n", FALSE, code);
3232   }
3233
3234 return yield;
3235 }
3236
3237
3238
3239
3240 /*************************************************
3241 *    Send SMTP response, possibly multiline      *
3242 *************************************************/
3243
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.
3247
3248 Arguments:
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
3253
3254 Returns:        nothing
3255 */
3256
3257 void
3258 smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
3259 {
3260 int esclen = 0;
3261 uschar *esc = US"";
3262
3263 if (!final && f.no_multiline_responses) return;
3264
3265 if (codelen > 4)
3266   {
3267   esc = code + 4;
3268   esclen = codelen - 4;
3269   }
3270
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(). */
3276
3277 if (fl.rcpt_in_progress)
3278   {
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;
3285   }
3286
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. */
3290
3291 for (;;)
3292   {
3293   uschar *nl = Ustrchr(msg, '\n');
3294   if (!nl)
3295     {
3296     smtp_printf("%.3s%c%.*s%s\r\n", !final, code, final ? ' ':'-', esclen, esc, msg);
3297     return;
3298     }
3299   else if (nl[1] == 0 || f.no_multiline_responses)
3300     {
3301     smtp_printf("%.3s%c%.*s%.*s\r\n", !final, code, final ? ' ':'-', esclen, esc,
3302       (int)(nl - msg), msg);
3303     return;
3304     }
3305   else
3306     {
3307     smtp_printf("%.3s-%.*s%.*s\r\n", TRUE, code, esclen, esc, (int)(nl - msg), msg);
3308     msg = nl + 1;
3309     Uskip_whitespace(&msg);
3310     }
3311   }
3312 }
3313
3314
3315
3316
3317 /*************************************************
3318 *            Parse user SMTP message             *
3319 *************************************************/
3320
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).
3329
3330 This function is global because it is called from receive.c as well as within
3331 this module.
3332
3333 Note that the code length returned includes the terminating whitespace
3334 character, which is always included in the regex match.
3335
3336 Arguments:
3337   code          SMTP code, may involve extended status codes
3338   codelen       length of smtp code; if > 4 there's an ESC
3339   msg           message text
3340   log_msg       optional log message, to be adjusted with the new SMTP code
3341   check_valid   if true, verify the response code
3342
3343 Returns:        nothing
3344 */
3345
3346 void
3347 smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg,
3348   BOOL check_valid)
3349 {
3350 uschar * match;
3351 int len;
3352
3353 if (!msg || !*msg || !regex_match(regex_smtp_code, *msg, -1, &match))
3354   return;
3355
3356 len = Ustrlen(match);
3357 if (check_valid && (*msg)[0] != (*code)[0])
3358   {
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);
3363   }
3364 else
3365   {
3366   *code = *msg;
3367   *codelen = len;    /* Includes final space */
3368   }
3369 *msg += len;         /* Chop the code off the message */
3370 return;
3371 }
3372
3373
3374
3375
3376 /*************************************************
3377 *           Handle an ACL failure                *
3378 *************************************************/
3379
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
3384 first line is used.
3385
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.
3395
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.
3399
3400 Arguments:
3401   where        where the ACL was called from
3402   rc           the failure code
3403   user_msg     a message that can be included in an SMTP response
3404   log_msg      a message for logging
3405
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)
3410 */
3411
3412 int
3413 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
3414 {
3415 BOOL drop = rc == FAIL_DROP;
3416 int codelen = 3;
3417 uschar *smtp_code;
3418 uschar *lognl;
3419 uschar *sender_info = US"";
3420 uschar *what;
3421
3422 if (drop) rc = FAIL;
3423
3424 /* Set the default SMTP code, and allow a user message to change it. */
3425
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);
3429
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. */
3435
3436 switch (where)
3437   {
3438 #ifdef WITH_CONTENT_SCAN
3439   case ACL_WHERE_MIME:          what = US"during MIME ACL checks";      break;
3440 #endif
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;
3445 #endif
3446   default:
3447     {
3448     uschar * place = smtp_cmd_data ? smtp_cmd_data : US"in \"connect\" ACL";
3449     int lim = 100;
3450
3451     if (where == ACL_WHERE_AUTH)        /* avoid logging auth creds */
3452       {
3453       uschar * s;
3454       for (s = smtp_cmd_data; *s && !isspace(*s); ) s++;
3455       lim = s - smtp_cmd_data;  /* atop after method */
3456       }
3457     what = string_sprintf("%s %.*s", acl_wherenames[where], lim, place);
3458     }
3459   }
3460 switch (where)
3461   {
3462   case ACL_WHERE_RCPT:
3463   case ACL_WHERE_DATA:
3464 #ifdef WITH_CONTENT_SCAN
3465   case ACL_WHERE_MIME:
3466 #endif
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""
3473       );
3474   break;
3475   }
3476
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. */
3481
3482 if (sender_verified_failed &&
3483     !testflag(sender_verified_failed, af_sverify_told))
3484   {
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 */
3487
3488   setflag(sender_verified_failed, af_sverify_told);
3489
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));
3497
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."
3505           :
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"
3512           "refuse bounces."
3513           :
3514           "Verification failed for <%s>\n%s",
3515         sender_verified_failed->address,
3516         sender_verified_failed->user_message));
3517
3518   fl.rcpt_in_progress = save_rcpt_in_progress;
3519   }
3520
3521 /* Sort out text for logging */
3522
3523 log_msg = log_msg ? string_sprintf(": %s", log_msg) : US"";
3524 if ((lognl = Ustrchr(log_msg, '\n'))) *lognl = 0;
3525
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. */
3529
3530 if (rc == FAIL)
3531   smtp_respond(smtp_code, codelen, TRUE,
3532     user_msg ? user_msg : US"Administrative prohibition");
3533
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.
3537
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. */
3541
3542 else
3543   if (f.acl_temp_details && user_msg)
3544     {
3545     if (  smtp_return_error_details
3546        && sender_verified_failed
3547        && sender_verified_failed->message
3548        )
3549       smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
3550
3551     smtp_respond(smtp_code, codelen, TRUE, user_msg);
3552     }
3553   else
3554     smtp_respond(smtp_code, codelen, TRUE,
3555       US"Temporary local problem - please try later");
3556
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.  */
3561
3562 if (log_reject_target != 0)
3563   {
3564 #ifndef DISABLE_TLS
3565   gstring * g = s_tlslog(NULL);
3566   uschar * tls = string_from_gstring(g);
3567   if (!tls) tls = US"";
3568 #else
3569   uschar * tls = US"";
3570 #endif
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),
3575     tls,
3576     sender_info,
3577     rc == FAIL ? US"" : US"temporarily ",
3578     what, log_msg);
3579   }
3580
3581 if (!drop) return 0;
3582
3583 log_close_event(US"by DROP in ACL");
3584
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. */
3588
3589 smtp_notquit_exit(US"acl-drop", NULL, NULL);
3590
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). */
3597
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);
3602
3603 return 2;
3604 }
3605
3606
3607
3608
3609 /*************************************************
3610 *     Handle SMTP exit when QUIT is not given    *
3611 *************************************************/
3612
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.
3621
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.
3624
3625 Arguments:
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
3630
3631 Returns:          Nothing
3632 */
3633
3634 void
3635 smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
3636 {
3637 int rc;
3638 uschar *user_msg = NULL;
3639 uschar *log_msg = NULL;
3640
3641 /* Check for recursive call */
3642
3643 if (fl.smtp_exit_function_called)
3644   {
3645   log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
3646     reason);
3647   return;
3648   }
3649 fl.smtp_exit_function_called = TRUE;
3650
3651 /* Call the not-QUIT ACL, if there is one, unless no reason is given. */
3652
3653 if (acl_smtp_notquit && reason)
3654   {
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",
3659       log_msg);
3660   }
3661
3662 /* If the connection was dropped, we certainly are no longer talking TLS */
3663 tls_in.active.sock = -1;
3664
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. */
3667
3668 if (code && defaultrespond)
3669   {
3670   if (user_msg)
3671     smtp_respond(code, 3, TRUE, user_msg);
3672   else
3673     {
3674     gstring * g;
3675     va_list ap;
3676
3677     va_start(ap, defaultrespond);
3678     g = string_vformat(NULL, SVFMT_EXTEND|SVFMT_REBUFFER, CS defaultrespond, ap);
3679     va_end(ap);
3680     smtp_printf("%s %s\r\n", FALSE, code, string_from_gstring(g));
3681     }
3682   mac_smtp_fflush();
3683   }
3684 }
3685
3686
3687
3688
3689 /*************************************************
3690 *             Verify HELO argument               *
3691 *************************************************/
3692
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
3698 be called.
3699
3700 Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
3701 for IPv6 ::ffff: literals.
3702
3703 Argument:   none
3704 Returns:    TRUE if testing was completed;
3705             FALSE on a temporary failure
3706 */
3707
3708 BOOL
3709 smtp_verify_helo(void)
3710 {
3711 BOOL yield = TRUE;
3712
3713 HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
3714   sender_helo_name);
3715
3716 if (sender_helo_name == NULL)
3717   {
3718   HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
3719   }
3720
3721 /* Deal with the case of -bs without an IP address */
3722
3723 else if (sender_host_address == NULL)
3724   {
3725   HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
3726   f.helo_verified = TRUE;
3727   }
3728
3729 /* Deal with the more common case when there is a sending IP address */
3730
3731 else if (sender_helo_name[0] == '[')
3732   {
3733   f.helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
3734     Ustrlen(sender_host_address)) == 0;
3735
3736 #if HAVE_IPV6
3737   if (!f.helo_verified)
3738     {
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;
3742     }
3743 #endif
3744
3745   HDEBUG(D_receive)
3746     { if (f.helo_verified) debug_printf("matched host address\n"); }
3747   }
3748
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
3751 lookup. */
3752
3753 else
3754   {
3755   if (sender_host_name == NULL && !host_lookup_failed)
3756     yield = host_name_lookup() != DEFER;
3757
3758   /* If a host name is known, check it and all its aliases. */
3759
3760   if (sender_host_name)
3761     if ((f.helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0))
3762       {
3763       sender_helo_dnssec = sender_host_dnssec;
3764       HDEBUG(D_receive) debug_printf("matched host name\n");
3765       }
3766     else
3767       {
3768       uschar **aliases = sender_host_aliases;
3769       while (*aliases)
3770         if ((f.helo_verified = strcmpic(*aliases++, sender_helo_name) == 0))
3771           {
3772           sender_helo_dnssec = sender_host_dnssec;
3773           break;
3774           }
3775
3776       HDEBUG(D_receive) if (f.helo_verified)
3777           debug_printf("matched alias %s\n", *(--aliases));
3778       }
3779
3780   /* Final attempt: try a forward lookup of the helo name */
3781
3782   if (!f.helo_verified)
3783     {
3784     int rc;
3785     host_item h =
3786       {.name = sender_helo_name, .address = NULL, .mx = MX_NONE, .next = NULL};
3787     dnssec_domains d =
3788       {.request = US"*", .require = US""};
3789
3790     HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3791       sender_helo_name);
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)
3797           {
3798           f.helo_verified = TRUE;
3799           if (h.dnssec == DS_YES) sender_helo_dnssec = TRUE;
3800           HDEBUG(D_receive)
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");
3804           break;
3805           }
3806     }
3807   }
3808
3809 if (!f.helo_verified) f.helo_verify_failed = TRUE;  /* We've tried ... */
3810 return yield;
3811 }
3812
3813
3814
3815
3816 /*************************************************
3817 *        Send user response message              *
3818 *************************************************/
3819
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.
3824
3825 Arguments:
3826   code         the response code
3827   user_msg     the user message
3828
3829 Returns:       nothing
3830 */
3831
3832 static void
3833 smtp_user_msg(uschar *code, uschar *user_msg)
3834 {
3835 int len = 3;
3836 smtp_message_code(&code, &len, &user_msg, NULL, TRUE);
3837 smtp_respond(code, len, TRUE, user_msg);
3838 }
3839
3840
3841
3842 static int
3843 smtp_in_auth(auth_instance *au, uschar ** smtp_resp, uschar ** errmsg)
3844 {
3845 const uschar *set_id = NULL;
3846 int rc;
3847
3848 /* Set up globals for error messages */
3849
3850 authenticator_name = au->name;
3851 driver_srcfile = au->srcfile;
3852 driver_srcline = au->srcline;
3853
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.
3859
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. */
3865
3866 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
3867 expand_nmax = 0;
3868 expand_nlength[0] = 0;   /* $0 contains nothing */
3869
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;
3875
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. */
3881
3882 if (set_id) set_id = string_printing(set_id);
3883
3884 /* For the non-OK cases, set up additional logging data if set_id
3885 is not empty. */
3886
3887 if (rc != OK)
3888   set_id = set_id && *set_id
3889     ? string_sprintf(" (set_id=%s)", set_id) : US"";
3890
3891 /* Switch on the result */
3892
3893 switch(rc)
3894   {
3895   case OK:
3896     if (!au->set_id || set_id)    /* Complete success */
3897       {
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? */
3903
3904       received_protocol =
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;
3909       break;
3910       }
3911
3912     /* Authentication succeeded, but we failed to expand the set_id string.
3913     Treat this as a temporary error. */
3914
3915     auth_defer_msg = expand_string_message;
3916     /* Fall through */
3917
3918   case DEFER:
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);
3924     break;
3925
3926   case BAD64:
3927     *smtp_resp = *errmsg = US"501 Invalid base64 data";
3928     break;
3929
3930   case CANCELLED:
3931     *smtp_resp = *errmsg = US"501 Authentication cancelled";
3932     break;
3933
3934   case UNEXPECTED:
3935     *smtp_resp = *errmsg = US"553 Initial data not expected";
3936     break;
3937
3938   case FAIL:
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);
3942     break;
3943
3944   default:
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);
3949     break;
3950   }
3951
3952 return rc;
3953 }
3954
3955
3956
3957
3958
3959 static int
3960 qualify_recipient(uschar ** recipient, uschar * smtp_cmd_data, uschar * tag)
3961 {
3962 int rd;
3963 if (f.allow_unqualified_recipient || strcmpic(*recipient, US"postmaster") == 0)
3964   {
3965   DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
3966     *recipient);
3967   rd = Ustrlen(recipient) + 1;
3968   /* deconst ok as *recipient was not const */
3969   *recipient = US rewrite_address_qualify(*recipient, TRUE);
3970   return rd;
3971   }
3972 smtp_printf("501 %s: recipient address must contain a domain\r\n", FALSE,
3973   smtp_cmd_data);
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);
3977 return 0;
3978 }
3979
3980
3981
3982
3983 static void
3984 smtp_quit_handler(uschar ** user_msgp, uschar ** log_msgp)
3985 {
3986 HAD(SCH_QUIT);
3987 f.smtp_in_quit = TRUE;
3988 incomplete_transaction_log(US"QUIT");
3989 if (  acl_smtp_quit
3990    && acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, user_msgp, log_msgp)
3991         == ERROR)
3992     log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
3993       *log_msgp);
3994
3995 #ifdef EXIM_TCP_CORK
3996 (void) setsockopt(fileno(smtp_out), IPPROTO_TCP, EXIM_TCP_CORK, US &on, sizeof(on));
3997 #endif
3998
3999 if (*user_msgp)
4000   smtp_respond(US"221", 3, TRUE, *user_msgp);
4001 else
4002   smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
4003
4004 #ifdef SERVERSIDE_CLOSE_NOWAIT
4005 # ifndef DISABLE_TLS
4006 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
4007 # endif
4008
4009 log_close_event(US"by QUIT");
4010 #else
4011
4012 # ifndef DISABLE_TLS
4013 tls_close(NULL, TLS_SHUTDOWN_WAIT);
4014 # endif
4015
4016 log_close_event(US"by QUIT");
4017
4018 /* Pause, hoping client will FIN first so that they get the TIME_WAIT.
4019 The socket should become readble (though with no data) */
4020
4021 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
4022 #endif  /*!SERVERSIDE_CLOSE_NOWAIT*/
4023 }
4024
4025
4026 static void
4027 smtp_rset_handler(void)
4028 {
4029 HAD(SCH_RSET);
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;
4035 }
4036
4037
4038 static int
4039 expand_mailmax(const uschar * s)
4040 {
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;
4044 }
4045
4046 /*************************************************
4047 *       Initialize for SMTP incoming message     *
4048 *************************************************/
4049
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.
4056
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.
4063
4064 Argument: none
4065
4066 Returns:  > 0 message successfully started (reached DATA)
4067           = 0 QUIT read or end of file reached or call refused
4068           < 0 lost connection
4069 */
4070
4071 int
4072 smtp_setup_msg(void)
4073 {
4074 int done = 0;
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();
4080
4081 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
4082
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. */
4088
4089 reset_point = smtp_reset(reset_point);
4090 message_ended = END_NOTSTARTED;
4091
4092 chunking_state = f.chunking_offered ? CHUNKING_OFFERED : CHUNKING_NOT_OFFERED;
4093
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;
4097 #ifndef DISABLE_TLS
4098 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
4099 #endif
4100
4101 if (lwr_receive_getc != NULL)
4102   {
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();
4107   }
4108
4109 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
4110
4111 had_command_sigterm = 0;
4112 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
4113
4114 /* Batched SMTP is handled in a different function. */
4115
4116 if (smtp_batched_input) return smtp_setup_batch_msg();
4117
4118 #ifdef TCP_QUICKACK
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));
4122 #endif
4123
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. */
4126
4127 while (done <= 0)
4128   {
4129   const uschar **argv;
4130   uschar *etrn_command;
4131   uschar *etrn_serialize_key;
4132   uschar *errmess;
4133   uschar *log_msg, *smtp_code;
4134   uschar *user_msg = NULL;
4135   uschar *recipient = NULL;
4136   uschar *hello = NULL;
4137   uschar *s, *ss;
4138   BOOL was_rej_mail = FALSE;
4139   BOOL was_rcpt = FALSE;
4140   void (*oldsignal)(int);
4141   pid_t pid;
4142   int start, end, sender_domain, recipient_domain;
4143   int rc;
4144   int c;
4145   uschar *orcpt = NULL;
4146   int dsn_flags;
4147   gstring * g;
4148
4149 #ifdef AUTH_TLS
4150   /* Check once per STARTTLS or SSL-on-connect for a TLS AUTH */
4151   if (  tls_in.active.sock >= 0
4152      && tls_in.peercert
4153      && tls_in.certificate_verified
4154      && cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd
4155      )
4156     {
4157     cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = FALSE;
4158
4159     for (auth_instance * au = auths; au; au = au->next)
4160       if (strcmpic(US"tls", au->driver_name) == 0)
4161         {
4162         if (  acl_smtp_auth
4163            && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4164                       &user_msg, &log_msg)) != OK
4165            )
4166           done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4167         else
4168           {
4169           smtp_cmd_data = NULL;
4170
4171           if (smtp_in_auth(au, &s, &ss) == OK)
4172             { DEBUG(D_auth) debug_printf("tls auth succeeded\n"); }
4173           else
4174             {
4175             DEBUG(D_auth) debug_printf("tls auth not succeeded\n");
4176 #ifndef DISABLE_EVENT
4177              {
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;
4183              }
4184 #endif
4185             }
4186           }
4187         break;
4188         }
4189     }
4190 #endif
4191
4192   switch(smtp_read_command(
4193 #ifndef DISABLE_PIPE_CONNECT
4194           !fl.pipe_connect_acceptable,
4195 #else
4196           TRUE,
4197 #endif
4198           GETC_BUFFER_UNLIMITED))
4199     {
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.
4204
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.
4209
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. */
4213
4214     case AUTH_CMD:
4215       HAD(SCH_AUTH);
4216       authentication_failed = TRUE;
4217       cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
4218
4219       if (!fl.auth_advertised && !f.allow_auth_unadvertised)
4220         {
4221         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4222           US"AUTH command used when not advertised");
4223         break;
4224         }
4225       if (sender_host_authenticated)
4226         {
4227         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4228           US"already authenticated");
4229         break;
4230         }
4231       if (sender_address)
4232         {
4233         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4234           US"not permitted in mail transaction");
4235         break;
4236         }
4237
4238       /* Check the ACL */
4239
4240       if (  acl_smtp_auth
4241          && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4242                     &user_msg, &log_msg)) != OK
4243          )
4244         {
4245         done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4246         break;
4247         }
4248
4249       /* Find the name of the requested authentication mechanism. */
4250
4251       s = smtp_cmd_data;
4252       for (; (c = *smtp_cmd_data) && !isspace(c); smtp_cmd_data++)
4253         if (!isalnum(c) && c != '-' && c != '_')
4254           {
4255           done = synprot_error(L_smtp_syntax_error, 501, NULL,
4256             US"invalid character in authentication mechanism name");
4257           goto COMMAND_LOOP;
4258           }
4259
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. */
4262
4263       if (*smtp_cmd_data)
4264         {
4265         *smtp_cmd_data++ = 0;
4266         while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
4267         }
4268
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). */
4272
4273         {
4274         auth_instance * au;
4275         uschar * smtp_resp, * errmsg;
4276
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))
4280             break;
4281
4282         if (au)
4283           {
4284           int rc = smtp_in_auth(au, &smtp_resp, &errmsg);
4285
4286           smtp_printf("%s\r\n", FALSE, smtp_resp);
4287           if (rc != OK)
4288             {
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;
4295              }
4296 #endif
4297             if (logmsg)
4298               log_write(0, LOG_MAIN|LOG_REJECT, "%s", logmsg);
4299             else
4300               log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
4301                 au->name, host_and_ident(FALSE), errmsg);
4302             }
4303           }
4304         else
4305           done = synprot_error(L_smtp_protocol_error, 504, NULL,
4306             string_sprintf("%s authentication mechanism not supported", s));
4307         }
4308
4309       break;  /* AUTH_CMD */
4310
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.
4315
4316     RFC 2821 says:
4317
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.
4322
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. */
4326
4327     case HELO_CMD:
4328       HAD(SCH_HELO);
4329       hello = US"HELO";
4330       fl.esmtp = FALSE;
4331       goto HELO_EHLO;
4332
4333     case EHLO_CMD:
4334       HAD(SCH_EHLO);
4335       hello = US"EHLO";
4336       fl.esmtp = TRUE;
4337
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;
4341
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. */
4344
4345       if (!check_helo(smtp_cmd_data))
4346         {
4347         smtp_printf("501 Syntactically invalid %s argument(s)\r\n", FALSE, hello);
4348
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));
4353
4354         if (++synprot_error_count > smtp_max_synprot_errors)
4355           {
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))
4360             );
4361           done = 1;
4362           }
4363
4364         break;
4365         }
4366
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. */
4373
4374       if (!f.sender_host_unknown)
4375         {
4376         BOOL old_helo_verified = f.helo_verified;
4377         uschar *p = smtp_cmd_data;
4378
4379         while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
4380         *p = 0;
4381
4382         /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
4383         because otherwise the log can be confusing. */
4384
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();
4389
4390         /* Rebuild the fullhost info to include the HELO name (and the real name
4391         if it was looked up.) */
4392
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));
4396
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
4402         at ACL time. */
4403
4404         f.helo_verified = f.helo_verify_failed = sender_helo_dnssec = FALSE;
4405         if (fl.helo_verify_required || fl.helo_verify)
4406           {
4407           BOOL tempfail = !smtp_verify_helo();
4408           if (!f.helo_verified)
4409             {
4410             if (fl.helo_verify_required)
4411               {
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 */
4419               }
4420             HDEBUG(D_all) debug_printf("%s verification failed but host is in "
4421               "helo_try_verify_hosts\n", hello);
4422             }
4423           }
4424         }
4425
4426 #ifdef SUPPORT_SPF
4427       /* set up SPF context */
4428       spf_conn_init(sender_helo_name, sender_host_address);
4429 #endif
4430
4431       /* Apply an ACL check if one is defined; afterwards, recheck
4432       synchronization in case the client started sending in a delay. */
4433
4434       if (acl_smtp_helo)
4435         if ((rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo,
4436                   &user_msg, &log_msg)) != OK)
4437           {
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 */
4441           break;
4442           }
4443 #ifndef DISABLE_PIPE_CONNECT
4444         else if (!fl.pipe_connect_acceptable && !check_sync())
4445 #else
4446         else if (!check_sync())
4447 #endif
4448           goto SYNC_FAILURE;
4449
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(). */
4455
4456       fl.auth_advertised = FALSE;
4457       f.smtp_in_pipelining_advertised = FALSE;
4458 #ifndef DISABLE_TLS
4459       fl.tls_advertised = FALSE;
4460 #endif
4461       fl.dsn_advertised = FALSE;
4462 #ifdef SUPPORT_I18N
4463       fl.smtputf8_advertised = FALSE;
4464 #endif
4465
4466       /* Expand the per-connection message count limit option */
4467       smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4468
4469       smtp_code = US"250 ";        /* Default response code plus space*/
4470       if (!user_msg)
4471         {
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",
4475           smtp_code,
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);
4480
4481         if (sender_host_address)
4482           g = string_fmt_append(g, " [%s]", sender_host_address);
4483         }
4484
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. */
4488
4489       else
4490         {
4491         char * ss;
4492         int codelen = 4;
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)
4496           {
4497           log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
4498             "newlines: message truncated: %s", string_printing(s));
4499           *ss = 0;
4500           }
4501         g = string_cat(NULL, s);
4502         }
4503
4504       g = string_catn(g, US"\r\n", 2);
4505
4506       /* If we received EHLO, we must create a multiline response which includes
4507       the functions supported. */
4508
4509       if (fl.esmtp)
4510         {
4511         g->s[3] = '-';  /* overwrite the space after the SMTP response code */
4512
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. */
4518
4519         if (thismessage_size_limit > 0)
4520           g = string_fmt_append(g, "%.3s-SIZE %d\r\n", smtp_code,
4521             thismessage_size_limit);
4522         else
4523           {
4524           g = string_catn(g, smtp_code, 3);
4525           g = string_catn(g, US"-SIZE\r\n", 7);
4526           }
4527
4528 #ifdef EXPERIMENTAL_ESMTP_LIMITS
4529         if (  (smtp_mailcmd_max > 0 || recipients_max)
4530            && verify_check_host(&limits_advertise_hosts) == OK)
4531           {
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);
4535           if (recipients_max)
4536             g = string_fmt_append(g, " RCPTMAX=%d", recipients_max);
4537           g = string_catn(g, US"\r\n", 2);
4538           }
4539 #endif
4540
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. */
4547
4548         if (accept_8bitmime)
4549           {
4550           g = string_catn(g, smtp_code, 3);
4551           g = string_catn(g, US"-8BITMIME\r\n", 11);
4552           }
4553
4554         /* Advertise DSN support if configured to do so. */
4555         if (verify_check_host(&dsn_advertise_hosts) != FAIL)
4556           {
4557           g = string_catn(g, smtp_code, 3);
4558           g = string_catn(g, US"-DSN\r\n", 6);
4559           fl.dsn_advertised = TRUE;
4560           }
4561
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. */
4564
4565         if (acl_smtp_etrn)
4566           {
4567           g = string_catn(g, smtp_code, 3);
4568           g = string_catn(g, US"-ETRN\r\n", 7);
4569           }
4570         if (acl_smtp_vrfy)
4571           {
4572           g = string_catn(g, smtp_code, 3);
4573           g = string_catn(g, US"-VRFY\r\n", 7);
4574           }
4575         if (acl_smtp_expn)
4576           {
4577           g = string_catn(g, smtp_code, 3);
4578           g = string_catn(g, US"-EXPN\r\n", 7);
4579           }
4580
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. */
4583
4584         if (  f.pipelining_enable
4585            && verify_check_host(&pipelining_advertise_hosts) == OK)
4586           {
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;
4591
4592 #ifndef DISABLE_PIPE_CONNECT
4593           if (fl.pipe_connect_acceptable)
4594             {
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);
4598             }
4599 #endif
4600           }
4601
4602
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).
4608
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. */
4612
4613         if (  auths
4614 #ifdef AUTH_TLS
4615            && !sender_host_authenticated
4616 #endif
4617            && verify_check_host(&auth_advertise_hosts) == OK
4618            )
4619           {
4620           BOOL first = TRUE;
4621           for (auth_instance * au = auths; au; au = au->next)
4622             {
4623             au->advertised = FALSE;
4624             if (au->server)
4625               {
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,
4631                         US"authenticator")
4632                  )
4633                 {
4634                 int saveptr;
4635                 if (first)
4636                   {
4637                   g = string_catn(g, smtp_code, 3);
4638                   g = string_catn(g, US"-AUTH", 5);
4639                   first = FALSE;
4640                   fl.auth_advertised = TRUE;
4641                   }
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;
4647                 }
4648               }
4649             }
4650
4651           if (!first) g = string_catn(g, US"\r\n", 2);
4652           }
4653
4654         /* RFC 3030 CHUNKING */
4655
4656         if (verify_check_host(&chunking_advertise_hosts) != FAIL)
4657           {
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;
4662           }
4663
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. */
4668
4669 #ifndef DISABLE_TLS
4670         if (tls_in.active.sock < 0 &&
4671             verify_check_host(&tls_advertise_hosts) != FAIL)
4672           {
4673           g = string_catn(g, smtp_code, 3);
4674           g = string_catn(g, US"-STARTTLS\r\n", 11);
4675           fl.tls_advertised = TRUE;
4676           }
4677 #endif
4678
4679 #ifndef DISABLE_PRDR
4680         /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
4681         if (prdr_enable)
4682           {
4683           g = string_catn(g, smtp_code, 3);
4684           g = string_catn(g, US"-PRDR\r\n", 7);
4685           }
4686 #endif
4687
4688 #ifdef SUPPORT_I18N
4689         if (  accept_8bitmime
4690            && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
4691           {
4692           g = string_catn(g, smtp_code, 3);
4693           g = string_catn(g, US"-SMTPUTF8\r\n", 11);
4694           fl.smtputf8_advertised = TRUE;
4695           }
4696 #endif
4697
4698         /* Finish off the multiline reply with one that is always available. */
4699
4700         g = string_catn(g, smtp_code, 3);
4701         g = string_catn(g, US" HELP\r\n", 7);
4702         }
4703
4704       /* Terminate the string (for debug), write it, and note that HELO/EHLO
4705       has been seen. */
4706
4707        {
4708         uschar * ehlo_resp;
4709         int len = len_string_from_gstring(g, &ehlo_resp);
4710 #ifndef DISABLE_TLS
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());
4715 # else
4716                           FALSE);
4717 # endif
4718         else
4719 #endif
4720           (void) fwrite(ehlo_resp, 1, len, smtp_out);
4721
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>>" : "      ",
4727                           (int)(t - s), s);
4728         fl.helo_seen = TRUE;
4729        }
4730
4731       /* Reset the protocol and the state, abandoning any previous message. */
4732       received_protocol =
4733         (sender_host_address ? protocols : protocols_local)
4734           [ (fl.esmtp
4735             ? pextend + (sender_host_authenticated ? pauthed : 0)
4736             : pnormal)
4737           + (tls_in.active.sock >= 0 ? pcrpted : 0)
4738           ];
4739       cancel_cutthrough_connection(TRUE, US"sent EHLO response");
4740       reset_point = smtp_reset(reset_point);
4741       toomany = FALSE;
4742       break;   /* HELO/EHLO */
4743
4744
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. */
4750
4751     case MAIL_CMD:
4752       HAD(SCH_MAIL);
4753       smtp_mailcmd_count++;              /* Count for limit and ratelimit */
4754       message_start();
4755       was_rej_mail = TRUE;               /* Reset if accepted */
4756       env_mail_type_t * mail_args;       /* Sanity check & validate args */
4757
4758       if (!fl.helo_seen)
4759         if (  fl.helo_verify_required
4760            || verify_check_host(&hosts_require_helo) == OK)
4761           {
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));
4765           break;
4766           }
4767         else if (smtp_mailcmd_max < 0)
4768           smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4769
4770       if (sender_address)
4771         {
4772         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4773           US"sender already given");
4774         break;
4775         }
4776
4777       if (!*smtp_cmd_data)
4778         {
4779         done = synprot_error(L_smtp_protocol_error, 501, NULL,
4780           US"MAIL must have an address operand");
4781         break;
4782         }
4783
4784       /* Check to see if the limit for messages per connection would be
4785       exceeded by accepting further messages. */
4786
4787       if (smtp_mailcmd_max > 0 && smtp_mailcmd_count > smtp_mailcmd_max)
4788         {
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));
4792         break;
4793         }
4794
4795       /* Reset for start of message - even if this is going to fail, we
4796       obviously need to throw away any previous data. */
4797
4798       cancel_cutthrough_connection(TRUE, US"MAIL received");
4799       reset_point = smtp_reset(reset_point);
4800       toomany = FALSE;
4801       sender_data = recipient_data = NULL;
4802
4803       /* Loop, checking for ESMTP additions to the MAIL FROM command. */
4804
4805       if (fl.esmtp) for(;;)
4806         {
4807         uschar *name, *value, *end;
4808         unsigned long int size;
4809         BOOL arg_error = FALSE;
4810
4811         if (!extract_option(&name, &value)) break;
4812
4813         for (mail_args = env_mail_type_list;
4814              mail_args->value != ENV_MAIL_OPT_NULL;
4815              mail_args++
4816             )
4817           if (strcmpic(name, mail_args->name) == 0)
4818             break;
4819         if (mail_args->need_value && strcmpic(value, US"") == 0)
4820           break;
4821
4822         switch(mail_args->value)
4823           {
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))
4828               {
4829               if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
4830                 size = INT_MAX;
4831               message_size = (int)size;
4832               }
4833             else
4834               arg_error = TRUE;
4835             break;
4836
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)
4847                 body_8bitmime = 8;
4848               else if (strcmpic(value, US"7BIT") == 0)
4849                 body_8bitmime = 7;
4850               else
4851                 {
4852                 body_8bitmime = 0;
4853                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4854                   US"invalid data for BODY");
4855                 goto COMMAND_LOOP;
4856                 }
4857               DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
4858               break;
4859             }
4860             arg_error = TRUE;
4861             break;
4862
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. */
4866
4867           case ENV_MAIL_OPT_RET:
4868             if (fl.dsn_advertised)
4869               {
4870               /* Check if RET has already been set */
4871               if (dsn_ret > 0)
4872                 {
4873                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4874                   US"RET can be specified once only");
4875                 goto COMMAND_LOOP;
4876                 }
4877               dsn_ret = strcmpic(value, US"HDRS") == 0
4878                 ? dsn_ret_hdrs
4879                 : strcmpic(value, US"FULL") == 0
4880                 ? dsn_ret_full
4881                 : 0;
4882               DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
4883               /* Check for invalid invalid value, and exit with error */
4884               if (dsn_ret == 0)
4885                 {
4886                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4887                   US"Value for RET is invalid");
4888                 goto COMMAND_LOOP;
4889                 }
4890               }
4891             break;
4892           case ENV_MAIL_OPT_ENVID:
4893             if (fl.dsn_advertised)
4894               {
4895               /* Check if the dsn envid has been already set */
4896               if (dsn_envid)
4897                 {
4898                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4899                   US"ENVID can be specified once only");
4900                 goto COMMAND_LOOP;
4901                 }
4902               dsn_envid = string_copy(value);
4903               DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
4904               }
4905             break;
4906
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
4913           coding. */
4914           case ENV_MAIL_OPT_AUTH:
4915             if (Ustrcmp(value, "<>") != 0)
4916               {
4917               int rc;
4918               uschar *ignore_msg;
4919
4920               if (auth_xtextdecode(value, &authenticated_sender) < 0)
4921                 {
4922                 /* Put back terminator overrides for error message */
4923                 value[-1] = '=';
4924                 name[-1] = ' ';
4925                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4926                   US"invalid data for AUTH");
4927                 goto COMMAND_LOOP;
4928                 }
4929               if (!acl_smtp_mailauth)
4930                 {
4931                 ignore_msg = US"client not authenticated";
4932                 rc = sender_host_authenticated ? OK : FAIL;
4933                 }
4934               else
4935                 {
4936                 ignore_msg = US"rejected by ACL";
4937                 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
4938                   &user_msg, &log_msg);
4939                 }
4940
4941               switch (rc)
4942                 {
4943                 case OK:
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 */
4949
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);
4954
4955                 /* Fall through */
4956
4957                 case FAIL:
4958                   authenticated_sender = NULL;
4959                   log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
4960                     value, host_and_ident(TRUE), ignore_msg);
4961                   break;
4962
4963                 /* Should only get DEFER or ERROR here. Put back terminator
4964                 overrides for error message */
4965
4966                 default:
4967                   value[-1] = '=';
4968                   name[-1] = ' ';
4969                   (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
4970                     log_msg);
4971                   goto COMMAND_LOOP;
4972                 }
4973               }
4974               break;
4975
4976 #ifndef DISABLE_PRDR
4977           case ENV_MAIL_OPT_PRDR:
4978             if (prdr_enable)
4979               prdr_requested = TRUE;
4980             break;
4981 #endif
4982
4983 #ifdef SUPPORT_I18N
4984           case ENV_MAIL_OPT_UTF8:
4985             if (!fl.smtputf8_advertised)
4986               {
4987               done = synprot_error(L_smtp_syntax_error, 501, NULL,
4988                 US"SMTPUTF8 used when not advertised");
4989               goto COMMAND_LOOP;
4990               }
4991
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)
4995               {
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;
5000               }
5001             break;
5002 #endif
5003
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:
5009             value[-1] = '=';
5010             name[-1] = ' ';
5011             arg_error = TRUE;
5012             break;
5013
5014           default:  assert(0);
5015           }
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;
5019         }
5020
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. */
5023
5024       if (smtp_mailcmd_count > smtp_rlm_threshold &&
5025           verify_check_host(&smtp_ratelimit_hosts) == OK)
5026         {
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;
5033         }
5034
5035       /* Now extract the address, first applying any SMTP-time rewriting. The
5036       TRUE flag allows "<>" as a sender address. */
5037
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)
5042         : smtp_cmd_data;
5043
5044       raw_sender =
5045         parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
5046           TRUE);
5047
5048       if (!raw_sender)
5049         {
5050         done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5051         break;
5052         }
5053
5054       sender_address = raw_sender;
5055
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
5058       can be logged. */
5059
5060       if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
5061         {
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",
5066             sender_address,
5067             host_and_ident(TRUE),
5068             (message_size == INT_MAX)? ">" : "",
5069             message_size,
5070             thismessage_size_limit);
5071         sender_address = NULL;
5072         break;
5073         }
5074
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. */
5082
5083       if (!receive_check_fs(
5084            smtp_check_spool_space && message_size >= 0
5085               ? message_size + 5000 : 0))
5086         {
5087         smtp_printf("452 Space shortage, please try later\r\n", FALSE);
5088         sender_address = NULL;
5089         break;
5090         }
5091
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. */
5097
5098       if (!sender_domain && *sender_address)
5099         if (f.allow_unqualified_sender)
5100           {
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",
5105             raw_sender);
5106           }
5107         else
5108           {
5109           smtp_printf("501 %s: sender address must contain a domain\r\n", FALSE,
5110             smtp_cmd_data);
5111           log_write(L_smtp_syntax_error,
5112             LOG_MAIN|LOG_REJECT,
5113             "unqualified sender rejected: <%s> %s%s",
5114             raw_sender,
5115             host_and_ident(TRUE),
5116             host_lookup_msg);
5117           sender_address = NULL;
5118           break;
5119           }
5120
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. */
5124
5125       if (acl_smtp_mail)
5126         {
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())
5129           goto SYNC_FAILURE;
5130         }
5131       else
5132         rc = OK;
5133
5134       if (rc == OK || rc == DISCARD)
5135         {
5136         BOOL more = pipeline_response();
5137
5138         if (!user_msg)
5139           smtp_printf("%s%s%s", more, US"250 OK",
5140                     #ifndef DISABLE_PRDR
5141                       prdr_requested ? US", PRDR Requested" : US"",
5142                     #else
5143                       US"",
5144                     #endif
5145                       US"\r\n");
5146         else
5147           {
5148         #ifndef DISABLE_PRDR
5149           if (prdr_requested)
5150              user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
5151         #endif
5152           smtp_user_msg(US"250", user_msg);
5153           }
5154         smtp_delay_rcpt = smtp_rlr_base;
5155         f.recipients_discarded = (rc == DISCARD);
5156         was_rej_mail = FALSE;
5157         }
5158       else
5159         {
5160         done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
5161         sender_address = NULL;
5162         }
5163       break;
5164
5165
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. */
5170
5171     case RCPT_CMD:
5172       HAD(SCH_RCPT);
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);
5177       rcpt_count++;
5178       was_rcpt = fl.rcpt_in_progress = TRUE;
5179
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. */
5184
5185       if (!sender_address)
5186         {
5187         if (f.smtp_in_pipelining_advertised && last_was_rej_mail)
5188           {
5189           smtp_printf("503 sender not yet given\r\n", FALSE);
5190           was_rej_mail = TRUE;
5191           }
5192         else
5193           {
5194           done = synprot_error(L_smtp_protocol_error, 503, NULL,
5195             US"sender not yet given");
5196           was_rcpt = FALSE;             /* Not a valid RCPT */
5197           }
5198         rcpt_fail_count++;
5199         break;
5200         }
5201
5202       /* Check for an operand */
5203
5204       if (!smtp_cmd_data[0])
5205         {
5206         done = synprot_error(L_smtp_syntax_error, 501, NULL,
5207           US"RCPT must have an address operand");
5208         rcpt_fail_count++;
5209         break;
5210         }
5211
5212       /* Set the DSN flags orcpt and dsn_flags from the session*/
5213       orcpt = NULL;
5214       dsn_flags = 0;
5215
5216       if (fl.esmtp) for(;;)
5217         {
5218         uschar *name, *value;
5219
5220         if (!extract_option(&name, &value))
5221           break;
5222
5223         if (fl.dsn_advertised && strcmpic(name, US"ORCPT") == 0)
5224           {
5225           /* Check whether orcpt has been already set */
5226           if (orcpt)
5227             {
5228             done = synprot_error(L_smtp_syntax_error, 501, NULL,
5229               US"ORCPT can be specified once only");
5230             goto COMMAND_LOOP;
5231             }
5232           orcpt = string_copy(value);
5233           DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
5234           }
5235
5236         else if (fl.dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
5237           {
5238           /* Check if the notify flags have been already set */
5239           if (dsn_flags > 0)
5240             {
5241             done = synprot_error(L_smtp_syntax_error, 501, NULL,
5242                 US"NOTIFY can be specified once only");
5243             goto COMMAND_LOOP;
5244             }
5245           if (strcmpic(value, US"NEVER") == 0)
5246             dsn_flags |= rf_notify_never;
5247           else
5248             {
5249             uschar *p = value;
5250             while (*p != 0)
5251               {
5252               uschar *pp = p;
5253               while (*pp != 0 && *pp != ',') pp++;
5254               if (*pp == ',') *pp++ = 0;
5255               if (strcmpic(p, US"SUCCESS") == 0)
5256                 {
5257                 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
5258                 dsn_flags |= rf_notify_success;
5259                 }
5260               else if (strcmpic(p, US"FAILURE") == 0)
5261                 {
5262                 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
5263                 dsn_flags |= rf_notify_failure;
5264                 }
5265               else if (strcmpic(p, US"DELAY") == 0)
5266                 {
5267                 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
5268                 dsn_flags |= rf_notify_delay;
5269                 }
5270               else
5271                 {
5272                 /* Catch any strange values */
5273                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5274                   US"Invalid value for NOTIFY parameter");
5275                 goto COMMAND_LOOP;
5276                 }
5277               p = pp;
5278               }
5279               DEBUG(D_receive) debug_printf("DSN Flags: %x\n", dsn_flags);
5280             }
5281           }
5282
5283         /* Unknown option. Stick back the terminator characters and break
5284         the loop. An error for a malformed address will occur. */
5285
5286         else
5287           {
5288           DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
5289           name[-1] = ' ';
5290           value[-1] = '=';
5291           break;
5292           }
5293         }
5294
5295       /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
5296       as a recipient address */
5297
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)
5302         : smtp_cmd_data;
5303
5304       if (!(recipient = parse_extract_address(recipient, &errmess, &start, &end,
5305         &recipient_domain, FALSE)))
5306         {
5307         done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5308         rcpt_fail_count++;
5309         break;
5310         }
5311
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.
5317
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. */
5322
5323       if (!recipient_domain)
5324         if (!(recipient_domain = qualify_recipient(&recipient, smtp_cmd_data,
5325                                     US"recipient")))
5326           {
5327           rcpt_fail_count++;
5328           break;
5329           }
5330
5331       /* Check maximum allowed */
5332
5333       if (rcpt_count+1 < 0 || rcpt_count > recipients_max && recipients_max > 0)
5334         {
5335         if (recipients_max_reject)
5336           {
5337           rcpt_fail_count++;
5338           smtp_printf("552 too many recipients\r\n", FALSE);
5339           if (!toomany)
5340             log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
5341               "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
5342           }
5343         else
5344           {
5345           rcpt_defer_count++;
5346           smtp_printf("452 too many recipients\r\n", FALSE);
5347           if (!toomany)
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));
5351           }
5352
5353         toomany = TRUE;
5354         break;
5355         }
5356
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. */
5359
5360       if (rcpt_count > smtp_rlr_threshold &&
5361           verify_check_host(&smtp_ratelimit_hosts) == OK)
5362         {
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;
5369         }
5370
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. */
5375
5376       if (f.recipients_discarded)
5377         rc = DISCARD;
5378       else
5379         if (  (rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
5380                       &log_msg)) == OK
5381            && !f.smtp_in_pipelining_advertised && !check_sync())
5382           goto SYNC_FAILURE;
5383
5384       /* The ACL was happy */
5385
5386       if (rc == OK)
5387         {
5388         BOOL more = pipeline_response();
5389
5390         if (user_msg)
5391           smtp_user_msg(US"250", user_msg);
5392         else
5393           smtp_printf("250 Accepted\r\n", more);
5394         receive_add_recipient(recipient, -1);
5395
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;
5399
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); */
5403         }
5404
5405       /* The recipient was discarded */
5406
5407       else if (rc == DISCARD)
5408         {
5409         if (user_msg)
5410           smtp_user_msg(US"250", user_msg);
5411         else
5412           smtp_printf("250 Accepted\r\n", FALSE);
5413         rcpt_fail_count++;
5414         discarded = TRUE;
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"");
5420         }
5421
5422       /* Either the ACL failed the address, or it was deferred. */
5423
5424       else
5425         {
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);
5428         }
5429       break;
5430
5431
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.
5437
5438     Note concerning the code used: RFC 2821 says this:
5439
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
5443         DATA command.
5444
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.
5447
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). */
5451
5452     case BDAT_CMD:
5453       {
5454       int n;
5455
5456       HAD(SCH_BDAT);
5457       if (chunking_state != CHUNKING_OFFERED)
5458         {
5459         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5460           US"BDAT command used when CHUNKING not advertised");
5461         break;
5462         }
5463
5464       /* grab size, endmarker */
5465
5466       if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
5467         {
5468         done = synprot_error(L_smtp_protocol_error, 501, NULL,
5469           US"missing size for BDAT command");
5470         break;
5471         }
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);
5477
5478       f.bdat_readers_wanted = TRUE; /* FIXME: redundant vs chunking_state? */
5479       f.dot_ends = FALSE;
5480
5481       goto DATA_BDAT;
5482       }
5483
5484     case DATA_CMD:
5485       HAD(SCH_DATA);
5486       f.dot_ends = TRUE;
5487       f.bdat_readers_wanted = FALSE;
5488
5489     DATA_BDAT:          /* Common code for DATA and BDAT */
5490 #ifndef DISABLE_PIPE_CONNECT
5491       fl.pipe_connect_acceptable = FALSE;
5492 #endif
5493       if (!discarded && recipients_count <= 0)
5494         {
5495         if (fl.rcpt_smtp_response_same && rcpt_smtp_response)
5496           {
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 "
5500             "this error:");
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);
5505           }
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)]]);
5509         else
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");
5514
5515         if (chunking_state > CHUNKING_OFFERED)
5516           {
5517           bdat_push_receive_functions();
5518           bdat_flush_data();
5519           }
5520         break;
5521         }
5522
5523       if (toomany && recipients_max_reject)
5524         {
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);
5528
5529         if (chunking_state > CHUNKING_OFFERED)
5530           {
5531           bdat_push_receive_functions();
5532           bdat_flush_data();
5533           }
5534         break;
5535         }
5536
5537       if (chunking_state > CHUNKING_OFFERED)
5538         rc = OK;                        /* No predata ACL or go-ahead output for BDAT */
5539       else
5540         {
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. */
5544
5545         if (!acl_smtp_predata && cutthrough.cctx.sock < 0)
5546           rc = OK;
5547         else
5548           {
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,
5552             &log_msg);
5553           f.enable_dollar_recipients = FALSE;
5554           if (rc == OK && !check_sync())
5555             goto SYNC_FAILURE;
5556
5557           if (rc != OK)
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);
5560             break;
5561             }
5562           }
5563
5564         if (user_msg)
5565           smtp_user_msg(US"354", user_msg);
5566         else
5567           smtp_printf(
5568             "354 Enter message, ending with \".\" on a line by itself\r\n", FALSE);
5569         }
5570
5571       if (f.bdat_readers_wanted)
5572         bdat_push_receive_functions();
5573
5574 #ifdef TCP_QUICKACK
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));
5578 #endif
5579       done = 3;
5580       message_ended = END_NOTENDED;   /* Indicate in middle of data */
5581
5582       break;
5583
5584
5585     case VRFY_CMD:
5586       {
5587       uschar * address;
5588
5589       HAD(SCH_VRFY);
5590
5591       if (!(address = parse_extract_address(smtp_cmd_data, &errmess,
5592             &start, &end, &recipient_domain, FALSE)))
5593         {
5594         smtp_printf("501 %s\r\n", FALSE, errmess);
5595         break;
5596         }
5597
5598       if (!recipient_domain)
5599         if (!(recipient_domain = qualify_recipient(&address, smtp_cmd_data,
5600                                     US"verify")))
5601           break;
5602
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);
5606       else
5607         {
5608         uschar * s = NULL;
5609         address_item * addr = deliver_make_addr(address, FALSE);
5610
5611         switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
5612                -1, -1, NULL, NULL, NULL))
5613           {
5614           case OK:
5615             s = string_sprintf("250 <%s> is deliverable", address);
5616             break;
5617
5618           case DEFER:
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);
5622             break;
5623
5624           case FAIL:
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));
5630             break;
5631           }
5632
5633         smtp_printf("%s\r\n", FALSE, s);
5634         }
5635       break;
5636       }
5637
5638
5639     case EXPN_CMD:
5640       HAD(SCH_EXPN);
5641       rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
5642       if (rc != OK)
5643         done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
5644       else
5645         {
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,
5650           NULL, NULL, NULL);
5651         f.address_test_mode = FALSE;
5652         f.log_testing_mode = save_log_testing_mode;    /* true for -bh */
5653         }
5654       break;
5655
5656
5657     #ifndef DISABLE_TLS
5658
5659     case STARTTLS_CMD:
5660       HAD(SCH_STARTTLS);
5661       if (!fl.tls_advertised)
5662         {
5663         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5664           US"STARTTLS command used when not advertised");
5665         break;
5666         }
5667
5668       /* Apply an ACL check if one is defined */
5669
5670       if (  acl_smtp_starttls
5671          && (rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls,
5672                     &user_msg, &log_msg)) != OK
5673          )
5674         {
5675         done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
5676         break;
5677         }
5678
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. */
5683
5684       incomplete_transaction_log(US"STARTTLS");
5685       cancel_cutthrough_connection(TRUE, US"STARTTLS received");
5686       reset_point = smtp_reset(reset_point);
5687       toomany = FALSE;
5688       cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
5689
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. */
5697
5698       if (receive_hasc())
5699         {
5700         DEBUG(D_any)
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 */
5705         }
5706
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. */
5713
5714       memset(smtp_inbuffer, 0, IN_BUFFER_SIZE);
5715
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.
5720
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. */
5723
5724       s = NULL;
5725       if ((rc = tls_server_start(&s)) == OK)
5726         {
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)
5733           {
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));
5738           }
5739         received_protocol =
5740           (sender_host_address ? protocols : protocols_local)
5741             [ (fl.esmtp
5742               ? pextend + (sender_host_authenticated ? pauthed : 0)
5743               : pnormal)
5744             + (tls_in.active.sock >= 0 ? pcrpted : 0)
5745             ];
5746
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 */
5752         }
5753       else
5754         (void) smtp_log_tls_fail(s);
5755
5756       /* Some local configuration problem was discovered before actually trying
5757       to do a TLS handshake; give a temporary error. */
5758
5759       if (rc == DEFER)
5760         {
5761         smtp_printf("454 TLS currently unavailable\r\n", FALSE);
5762         break;
5763         }
5764
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. */
5770
5771       DEBUG(D_tls) debug_printf("TLS failed to start\n");
5772       while (done <= 0) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
5773         {
5774         case EOF_CMD:
5775           log_close_event(US"by EOF");
5776           smtp_notquit_exit(US"tls-failed", NULL, NULL);
5777           done = 2;
5778           break;
5779
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". */
5784
5785         case QUIT_CMD:
5786           f.smtp_in_quit = TRUE;
5787           user_msg = NULL;
5788           if (  acl_smtp_quit
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",
5792                 log_msg);
5793           if (user_msg)
5794             smtp_respond(US"221", 3, TRUE, user_msg);
5795           else
5796             smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
5797           log_close_event(US"by QUIT");
5798           done = 2;
5799           break;
5800
5801         default:
5802           smtp_printf("554 Security failure\r\n", FALSE);
5803           break;
5804         }
5805       tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
5806       break;
5807     #endif
5808
5809
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
5812     message. */
5813
5814     case QUIT_CMD:
5815       smtp_quit_handler(&user_msg, &log_msg);
5816       done = 2;
5817       break;
5818
5819
5820     case RSET_CMD:
5821       smtp_rset_handler();
5822       cancel_cutthrough_connection(TRUE, US"RSET received");
5823       reset_point = smtp_reset(reset_point);
5824       toomany = FALSE;
5825       break;
5826
5827
5828     case NOOP_CMD:
5829       HAD(SCH_NOOP);
5830       smtp_printf("250 OK\r\n", FALSE);
5831       break;
5832
5833
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
5837     response. */
5838
5839     case HELP_CMD:
5840       HAD(SCH_HELP);
5841       smtp_printf("214-Commands supported:\r\n", TRUE);
5842         {
5843         uschar buffer[256];
5844         buffer[0] = 0;
5845         Ustrcat(buffer, US" AUTH");
5846         #ifndef DISABLE_TLS
5847         if (tls_in.active.sock < 0 &&
5848             verify_check_host(&tls_advertise_hosts) != FAIL)
5849           Ustrcat(buffer, US" STARTTLS");
5850         #endif
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);
5857         }
5858       break;
5859
5860
5861     case EOF_CMD:
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);
5865
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.
5868       */
5869
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
5875           ? US""
5876           : f.tcp_in_fastopen
5877           ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO "
5878           : US"",
5879           host_and_ident(FALSE), smtp_read_error,
5880           string_timesince(&smtp_connection_start)
5881           );
5882
5883       else
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"",
5887           smtp_read_error,
5888           string_timesince(&smtp_connection_start)
5889           );
5890
5891       done = 1;
5892       break;
5893
5894
5895     case ETRN_CMD:
5896       HAD(SCH_ETRN);
5897       if (sender_address)
5898         {
5899         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5900           US"ETRN is not permitted inside a transaction");
5901         break;
5902         }
5903
5904       log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
5905         host_and_ident(FALSE));
5906
5907       if ((rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn,
5908                   &user_msg, &log_msg)) != OK)
5909         {
5910         done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
5911         break;
5912         }
5913
5914       /* Compute the serialization key for this command. */
5915
5916       etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
5917
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. */
5922
5923       if (smtp_etrn_command)
5924         {
5925         uschar *error;
5926         BOOL rc;
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;
5932         if (!rc)
5933           {
5934           log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
5935             error);
5936           smtp_printf("458 Internal failure\r\n", FALSE);
5937           break;
5938           }
5939         }
5940
5941       /* Else set up to call Exim with the -R option. */
5942
5943       else
5944         {
5945         if (*smtp_cmd_data++ != '#')
5946           {
5947           done = synprot_error(L_smtp_syntax_error, 501, NULL,
5948             US"argument must begin with #");
5949           break;
5950           }
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);
5956         }
5957
5958       /* If we are host-testing, don't actually do anything. */
5959
5960       if (host_checking)
5961         {
5962         HDEBUG(D_any)
5963           {
5964           debug_printf("ETRN command is: %s\n", etrn_command);
5965           debug_printf("ETRN command execution skipped\n");
5966           }
5967         if (user_msg == NULL) smtp_printf("250 OK\r\n", FALSE);
5968           else smtp_user_msg(US"250", user_msg);
5969         break;
5970         }
5971
5972
5973       /* If ETRN queue runs are to be serialized, check the database to
5974       ensure one isn't already running. */
5975
5976       if (smtp_etrn_serialize && !enq_start(etrn_serialize_key, 1))
5977         {
5978         smtp_printf("458 Already processing %s\r\n", FALSE, smtp_cmd_data);
5979         break;
5980         }
5981
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. */
5988
5989       oldsignal = signal(SIGCHLD, SIG_IGN);
5990
5991       if ((pid = exim_fork(US"etrn-command")) == 0)
5992         {
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);
5996
5997         signal(SIGCHLD, SIG_DFL);      /* Want to catch child */
5998
5999         /* If not serializing, do the exec right away. Otherwise, fork down
6000         into another process. */
6001
6002         if (  !smtp_etrn_serialize
6003            || (pid = exim_fork(US"etrn-serialised-command")) == 0)
6004           {
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 */
6012           }
6013
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. */
6018
6019         if (pid < 0)
6020           log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
6021             "failed: %s", strerror(errno));
6022         else
6023           {
6024           int status;
6025           DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
6026             (int)pid);
6027           (void)wait(&status);
6028           DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
6029             (int)pid);
6030           }
6031
6032         enq_end(etrn_serialize_key);
6033         exim_underbar_exit(EXIT_SUCCESS);
6034         }
6035
6036       /* Back in the top level SMTP process. Check that we started a subprocess
6037       and restore the signal state. */
6038
6039       if (pid < 0)
6040         {
6041         log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
6042           strerror(errno));
6043         smtp_printf("458 Unable to fork process\r\n", FALSE);
6044         if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
6045         }
6046       else
6047         if (!user_msg)
6048           smtp_printf("250 OK\r\n", FALSE);
6049         else
6050           smtp_user_msg(US"250", user_msg);
6051
6052       signal(SIGCHLD, oldsignal);
6053       break;
6054
6055
6056     case BADARG_CMD:
6057       done = synprot_error(L_smtp_syntax_error, 501, NULL,
6058         US"unexpected argument data");
6059       break;
6060
6061
6062     /* This currently happens only for NULLs, but could be extended. */
6063
6064     case BADCHAR_CMD:
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",
6068                   FALSE);
6069       break;
6070
6071
6072     case BADSYN_CMD:
6073     SYNC_FAILURE:
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 */
6078       smtp_inptr[c] = 0;
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 */
6089       break;
6090
6091
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 */
6101       break;
6102
6103 #ifdef SUPPORT_PROXY
6104     case PROXY_FAIL_IGNORE_CMD:
6105       smtp_printf("503 Command refused, required Proxy negotiation failed\r\n", FALSE);
6106       break;
6107 #endif
6108
6109     default:
6110       if (unknown_command_count++ >= smtp_max_unknown_commands)
6111         {
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");
6119         done = 2;
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));
6123         }
6124       else
6125         done = synprot_error(L_smtp_syntax_error, 500, NULL,
6126           US"unrecognized command");
6127       break;
6128     }
6129
6130   /* This label is used by goto's inside loops that want to break out to
6131   the end of the command-processing loop. */
6132
6133   COMMAND_LOOP:
6134   last_was_rej_mail = was_rej_mail;     /* Remember some last commands for */
6135   last_was_rcpt = was_rcpt;             /* protocol error handling */
6136   }
6137
6138 return done - 2;  /* Convert yield values */
6139 }
6140
6141
6142
6143 gstring *
6144 authres_smtpauth(gstring * g)
6145 {
6146 if (!sender_host_authenticated)
6147   return g;
6148
6149 g = string_append(g, 2, US";\n\tauth=pass (", sender_host_auth_pubname);
6150
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");
6155 else
6156   g = authenticated_id
6157     ? string_append(g, 2, US") smtp.auth=", authenticated_id)
6158     : string_cat(g, US", no id saved)");
6159
6160 if (authenticated_sender)
6161   g = string_append(g, 2, US" smtp.mailfrom=", authenticated_sender);
6162 return g;
6163 }
6164
6165
6166
6167 /* vi: aw ai sw=2
6168 */
6169 /* End of smtp_in.c */