Move connect ACL before TLS-on-connect
[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
359 void
360 smtp_command_timeout_exit(void)
361 {
362 log_write(L_lost_incoming_connection,
363           LOG_MAIN, "SMTP command timeout on%s connection from %s",
364           tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE));
365 if (smtp_batched_input)
366   moan_smtp_batch(NULL, "421 SMTP command timeout"); /* Does not return */
367 smtp_notquit_exit(US"command-timeout", US"421",
368   US"%s: SMTP command timeout - closing connection",
369   smtp_active_hostname);
370 exim_exit(EXIT_FAILURE);
371 }
372
373 void
374 smtp_command_sigterm_exit(void)
375 {
376 log_write(0, LOG_MAIN, "%s closed after SIGTERM", smtp_get_connection_info());
377 if (smtp_batched_input)
378   moan_smtp_batch(NULL, "421 SIGTERM received");  /* Does not return */
379 smtp_notquit_exit(US"signal-exit", US"421",
380   US"%s: Service not available - closing connection", smtp_active_hostname);
381 exim_exit(EXIT_FAILURE);
382 }
383
384 void
385 smtp_data_timeout_exit(void)
386 {
387 log_write(L_lost_incoming_connection,
388   LOG_MAIN, "SMTP data timeout (message abandoned) on connection from %s F=<%s>",
389   sender_fullhost ? sender_fullhost : US"local process", sender_address);
390 receive_bomb_out(US"data-timeout", US"SMTP incoming data timeout");
391 /* Does not return */
392 }
393
394 void
395 smtp_data_sigint_exit(void)
396 {
397 log_write(0, LOG_MAIN, "%s closed after %s",
398   smtp_get_connection_info(), had_data_sigint == SIGTERM ? "SIGTERM":"SIGINT");
399 receive_bomb_out(US"signal-exit",
400   US"Service not available - SIGTERM or SIGINT received");
401 /* Does not return */
402 }
403
404
405 /******************************************************************************/
406 /* SMTP input buffer handling.  Most of these are similar to stdio routines.  */
407
408 static void
409 smtp_buf_init(void)
410 {
411 /* Set up the buffer for inputting using direct read() calls, and arrange to
412 call the local functions instead of the standard C ones.  Place a NUL at the
413 end of the buffer to safety-stop C-string reads from it. */
414
415 if (!(smtp_inbuffer = US malloc(IN_BUFFER_SIZE)))
416   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malloc() failed for SMTP input buffer");
417 smtp_inbuffer[IN_BUFFER_SIZE-1] = '\0';
418
419 smtp_inptr = smtp_inend = smtp_inbuffer;
420 smtp_had_eof = smtp_had_error = 0;
421 }
422
423
424
425 /* Refill the buffer, and notify DKIM verification code.
426 Return false for error or EOF.
427 */
428
429 static BOOL
430 smtp_refill(unsigned lim)
431 {
432 int rc, save_errno;
433
434 if (!smtp_out) return FALSE;
435 fflush(smtp_out);
436 if (smtp_receive_timeout > 0) ALARM(smtp_receive_timeout);
437
438 /* Limit amount read, so non-message data is not fed to DKIM.
439 Take care to not touch the safety NUL at the end of the buffer. */
440
441 rc = read(fileno(smtp_in), smtp_inbuffer, MIN(IN_BUFFER_SIZE-1, lim));
442 save_errno = errno;
443 if (smtp_receive_timeout > 0) ALARM_CLR(0);
444 if (rc <= 0)
445   {
446   /* Must put the error text in fixed store, because this might be during
447   header reading, where it releases unused store above the header. */
448   if (rc < 0)
449     {
450     if (had_command_timeout)            /* set by signal handler */
451       smtp_command_timeout_exit();      /* does not return */
452     if (had_command_sigterm)
453       smtp_command_sigterm_exit();
454     if (had_data_timeout)
455       smtp_data_timeout_exit();
456     if (had_data_sigint)
457       smtp_data_sigint_exit();
458
459     smtp_had_error = save_errno;
460     smtp_read_error = string_copy_perm(
461       string_sprintf(" (error: %s)", strerror(save_errno)), FALSE);
462     }
463   else
464     smtp_had_eof = 1;
465   return FALSE;
466   }
467 #ifndef DISABLE_DKIM
468 dkim_exim_verify_feed(smtp_inbuffer, rc);
469 #endif
470 smtp_inend = smtp_inbuffer + rc;
471 smtp_inptr = smtp_inbuffer;
472 return TRUE;
473 }
474
475
476 /* Check if there is buffered data */
477
478 BOOL
479 smtp_hasc(void)
480 {
481 return smtp_inptr < smtp_inend;
482 }
483
484 /* SMTP version of getc()
485
486 This gets the next byte from the SMTP input buffer. If the buffer is empty,
487 it flushes the output, and refills the buffer, with a timeout. The signal
488 handler is set appropriately by the calling function. This function is not used
489 after a connection has negotiated itself into an TLS/SSL state.
490
491 Arguments:  lim         Maximum amount to read/buffer
492 Returns:    the next character or EOF
493 */
494
495 int
496 smtp_getc(unsigned lim)
497 {
498 if (!smtp_hasc() && !smtp_refill(lim)) return EOF;
499 return *smtp_inptr++;
500 }
501
502 /* Get many bytes, refilling buffer if needed */
503
504 uschar *
505 smtp_getbuf(unsigned * len)
506 {
507 unsigned size;
508 uschar * buf;
509
510 if (!smtp_hasc() && !smtp_refill(*len))
511   { *len = 0; return NULL; }
512
513 if ((size = smtp_inend - smtp_inptr) > *len) size = *len;
514 buf = smtp_inptr;
515 smtp_inptr += size;
516 *len = size;
517 return buf;
518 }
519
520 /* Copy buffered data to the dkim feed.
521 Called, unless TLS, just before starting to read message headers. */
522
523 void
524 smtp_get_cache(unsigned lim)
525 {
526 #ifndef DISABLE_DKIM
527 int n = smtp_inend - smtp_inptr;
528 if (n > lim)
529   n = lim;
530 if (n > 0)
531   dkim_exim_verify_feed(smtp_inptr, n);
532 #endif
533 }
534
535
536 /* SMTP version of ungetc()
537 Puts a character back in the input buffer. Only ever called once.
538
539 Arguments:
540   ch           the character
541
542 Returns:       the character
543 */
544
545 int
546 smtp_ungetc(int ch)
547 {
548 if (smtp_inptr <= smtp_inbuffer)        /* NB: NOT smtp_hasc() ! */
549   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "buffer underflow in smtp_ungetc");
550
551 *--smtp_inptr = ch;
552 return ch;
553 }
554
555
556 /* SMTP version of feof()
557 Tests for a previous EOF
558
559 Arguments:     none
560 Returns:       non-zero if the eof flag is set
561 */
562
563 int
564 smtp_feof(void)
565 {
566 return smtp_had_eof;
567 }
568
569
570 /* SMTP version of ferror()
571 Tests for a previous read error, and returns with errno
572 restored to what it was when the error was detected.
573
574 Arguments:     none
575 Returns:       non-zero if the error flag is set
576 */
577
578 int
579 smtp_ferror(void)
580 {
581 errno = smtp_had_error;
582 return smtp_had_error;
583 }
584
585
586 /* Check if a getc will block or not */
587
588 static BOOL
589 smtp_could_getc(void)
590 {
591 int fd, rc;
592 fd_set fds;
593 struct timeval tzero = {.tv_sec = 0, .tv_usec = 0};
594
595 if (smtp_inptr < smtp_inend)
596   return TRUE;
597
598 fd = fileno(smtp_in);
599 FD_ZERO(&fds);
600 FD_SET(fd, &fds);
601 rc = select(fd + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL, &tzero);
602
603 if (rc <= 0) return FALSE;     /* Not ready to read */
604 rc = smtp_getc(GETC_BUFFER_UNLIMITED);
605 if (rc < 0) return FALSE;      /* End of file or error */
606
607 smtp_ungetc(rc);
608 return TRUE;
609 }
610
611
612 /******************************************************************************/
613 /*************************************************
614 *          Recheck synchronization               *
615 *************************************************/
616
617 /* Synchronization checks can never be perfect because a packet may be on its
618 way but not arrived when the check is done.  Normally, the checks happen when
619 commands are read: Exim ensures that there is no more input in the input buffer.
620 In normal cases, the response to the command will be fast, and there is no
621 further check.
622
623 However, for some commands an ACL is run, and that can include delays. In those
624 cases, it is useful to do another check on the input just before sending the
625 response. This also applies at the start of a connection. This function does
626 that check by means of the select() function, as long as the facility is not
627 disabled or inappropriate. A failure of select() is ignored.
628
629 When there is unwanted input, we read it so that it appears in the log of the
630 error.
631
632 Arguments: none
633 Returns:   TRUE if all is well; FALSE if there is input pending
634 */
635
636 static BOOL
637 wouldblock_reading(void)
638 {
639 #ifndef DISABLE_TLS
640 if (tls_in.active.sock >= 0)
641  return !tls_could_getc();
642 #endif
643
644 return !smtp_could_getc();
645 }
646
647 static BOOL
648 check_sync(void)
649 {
650 if (!smtp_enforce_sync || !sender_host_address || f.sender_host_notsocket)
651   return TRUE;
652
653 return wouldblock_reading();
654 }
655
656
657 /******************************************************************************/
658 /* Variants of the smtp_* input handling functions for use in CHUNKING mode */
659
660 /* Forward declarations */
661 static inline void bdat_push_receive_functions(void);
662 static inline void bdat_pop_receive_functions(void);
663
664
665 /* Get a byte from the smtp input, in CHUNKING mode.  Handle ack of the
666 previous BDAT chunk and getting new ones when we run out.  Uses the
667 underlying smtp_getc or tls_getc both for that and for getting the
668 (buffered) data byte.  EOD signals (an expected) no further data.
669 ERR signals a protocol error, and EOF a closed input stream.
670
671 Called from read_bdat_smtp() in receive.c for the message body, but also
672 by the headers read loop in receive_msg(); manipulates chunking_state
673 to handle the BDAT command/response.
674 Placed here due to the correlation with the above smtp_getc(), which it wraps,
675 and also by the need to do smtp command/response handling.
676
677 Arguments:  lim         (ignored)
678 Returns:    the next character or ERR, EOD or EOF
679 */
680
681 int
682 bdat_getc(unsigned lim)
683 {
684 uschar * user_msg = NULL;
685 uschar * log_msg;
686
687 for(;;)
688   {
689 #ifndef DISABLE_DKIM
690   unsigned dkim_save;
691 #endif
692
693   if (chunking_data_left > 0)
694     return lwr_receive_getc(chunking_data_left--);
695
696   bdat_pop_receive_functions();
697 #ifndef DISABLE_DKIM
698   dkim_save = dkim_collect_input;
699   dkim_collect_input = 0;
700 #endif
701
702   /* Unless PIPELINING was offered, there should be no next command
703   until after we ack that chunk */
704
705   if (!f.smtp_in_pipelining_advertised && !check_sync())
706     {
707     unsigned n = smtp_inend - smtp_inptr;
708     if (n > 32) n = 32;
709
710     incomplete_transaction_log(US"sync failure");
711     log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
712       "(next input sent too soon: pipelining was not advertised): "
713       "rejected \"%s\" %s next input=\"%s\"%s",
714       smtp_cmd_buffer, host_and_ident(TRUE),
715       string_printing(string_copyn(smtp_inptr, n)),
716       smtp_inend - smtp_inptr > n ? "..." : "");
717     (void) synprot_error(L_smtp_protocol_error, 554, NULL,
718       US"SMTP synchronization error");
719     goto repeat_until_rset;
720     }
721
722   /* If not the last, ack the received chunk.  The last response is delayed
723   until after the data ACL decides on it */
724
725   if (chunking_state == CHUNKING_LAST)
726     {
727 #ifndef DISABLE_DKIM
728     dkim_collect_input = dkim_save;
729     dkim_exim_verify_feed(NULL, 0);     /* notify EOD */
730     dkim_collect_input = 0;
731 #endif
732     return EOD;
733     }
734
735   smtp_printf("250 %u byte chunk received\r\n", FALSE, chunking_datasize);
736   chunking_state = CHUNKING_OFFERED;
737   DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
738
739   /* Expect another BDAT cmd from input. RFC 3030 says nothing about
740   QUIT, RSET or NOOP but handling them seems obvious */
741
742 next_cmd:
743   switch(smtp_read_command(TRUE, 1))
744     {
745     default:
746       (void) synprot_error(L_smtp_protocol_error, 503, NULL,
747         US"only BDAT permissible after non-LAST BDAT");
748
749   repeat_until_rset:
750       switch(smtp_read_command(TRUE, 1))
751         {
752         case QUIT_CMD:  smtp_quit_handler(&user_msg, &log_msg); /*FALLTHROUGH */
753         case EOF_CMD:   return EOF;
754         case RSET_CMD:  smtp_rset_handler(); return ERR;
755         default:        if (synprot_error(L_smtp_protocol_error, 503, NULL,
756                                           US"only RSET accepted now") > 0)
757                           return EOF;
758                         goto repeat_until_rset;
759         }
760
761     case QUIT_CMD:
762       smtp_quit_handler(&user_msg, &log_msg);
763       /*FALLTHROUGH*/
764     case EOF_CMD:
765       return EOF;
766
767     case RSET_CMD:
768       smtp_rset_handler();
769       return ERR;
770
771     case NOOP_CMD:
772       HAD(SCH_NOOP);
773       smtp_printf("250 OK\r\n", FALSE);
774       goto next_cmd;
775
776     case BDAT_CMD:
777       {
778       int n;
779
780       if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
781         {
782         (void) synprot_error(L_smtp_protocol_error, 501, NULL,
783           US"missing size for BDAT command");
784         return ERR;
785         }
786       chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
787         ? CHUNKING_LAST : CHUNKING_ACTIVE;
788       chunking_data_left = chunking_datasize;
789       DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
790                                     (int)chunking_state, chunking_data_left);
791
792       if (chunking_datasize == 0)
793         if (chunking_state == CHUNKING_LAST)
794           return EOD;
795         else
796           {
797           (void) synprot_error(L_smtp_protocol_error, 504, NULL,
798             US"zero size for BDAT command");
799           goto repeat_until_rset;
800           }
801
802       bdat_push_receive_functions();
803 #ifndef DISABLE_DKIM
804       dkim_collect_input = dkim_save;
805 #endif
806       break;    /* to top of main loop */
807       }
808     }
809   }
810 }
811
812 BOOL
813 bdat_hasc(void)
814 {
815 if (chunking_data_left > 0)
816   return lwr_receive_hasc();
817 return TRUE;
818 }
819
820 uschar *
821 bdat_getbuf(unsigned * len)
822 {
823 uschar * buf;
824
825 if (chunking_data_left <= 0)
826   { *len = 0; return NULL; }
827
828 if (*len > chunking_data_left) *len = chunking_data_left;
829 buf = lwr_receive_getbuf(len);  /* Either smtp_getbuf or tls_getbuf */
830 chunking_data_left -= *len;
831 return buf;
832 }
833
834 void
835 bdat_flush_data(void)
836 {
837 while (chunking_data_left)
838   {
839   unsigned n = chunking_data_left;
840   if (!bdat_getbuf(&n)) break;
841   }
842
843 bdat_pop_receive_functions();
844 chunking_state = CHUNKING_OFFERED;
845 DEBUG(D_receive) debug_printf("chunking state %d\n", (int)chunking_state);
846 }
847
848
849 static inline void
850 bdat_push_receive_functions(void)
851 {
852 /* push the current receive_* function on the "stack", and
853 replace them by bdat_getc(), which in turn will use the lwr_receive_*
854 functions to do the dirty work. */
855 if (!lwr_receive_getc)
856   {
857   lwr_receive_getc = receive_getc;
858   lwr_receive_getbuf = receive_getbuf;
859   lwr_receive_hasc = receive_hasc;
860   lwr_receive_ungetc = receive_ungetc;
861   }
862 else
863   {
864   DEBUG(D_receive) debug_printf("chunking double-push receive functions\n");
865   }
866
867 receive_getc = bdat_getc;
868 receive_getbuf = bdat_getbuf;
869 receive_hasc = bdat_hasc;
870 receive_ungetc = bdat_ungetc;
871 }
872
873 static inline void
874 bdat_pop_receive_functions(void)
875 {
876 if (!lwr_receive_getc)
877   {
878   DEBUG(D_receive) debug_printf("chunking double-pop receive functions\n");
879   return;
880   }
881 receive_getc = lwr_receive_getc;
882 receive_getbuf = lwr_receive_getbuf;
883 receive_hasc = lwr_receive_hasc;
884 receive_ungetc = lwr_receive_ungetc;
885
886 lwr_receive_getc = NULL;
887 lwr_receive_getbuf = NULL;
888 lwr_receive_hasc = NULL;
889 lwr_receive_ungetc = NULL;
890 }
891
892 int
893 bdat_ungetc(int ch)
894 {
895 chunking_data_left++;
896 bdat_push_receive_functions();  /* we're not done yet, calling push is safe, because it checks the state before pushing anything */
897 return lwr_receive_ungetc(ch);
898 }
899
900
901
902 /******************************************************************************/
903
904 /*************************************************
905 *     Write formatted string to SMTP channel     *
906 *************************************************/
907
908 /* This is a separate function so that we don't have to repeat everything for
909 TLS support or debugging. It is global so that the daemon and the
910 authentication functions can use it. It does not return any error indication,
911 because major problems such as dropped connections won't show up till an output
912 flush for non-TLS connections. The smtp_fflush() function is available for
913 checking that: for convenience, TLS output errors are remembered here so that
914 they are also picked up later by smtp_fflush().
915
916 This function is exposed to the local_scan API; do not change the signature.
917
918 Arguments:
919   format      format string
920   more        further data expected
921   ...         optional arguments
922
923 Returns:      nothing
924 */
925
926 void
927 smtp_printf(const char *format, BOOL more, ...)
928 {
929 va_list ap;
930
931 va_start(ap, more);
932 smtp_vprintf(format, more, ap);
933 va_end(ap);
934 }
935
936 /* This is split off so that verify.c:respond_printf() can, in effect, call
937 smtp_printf(), bearing in mind that in C a vararg function can't directly
938 call another vararg function, only a function which accepts a va_list.
939
940 This function is exposed to the local_scan API; do not change the signature.
941 */
942 /*XXX consider passing caller-info in, for string_vformat-onward */
943
944 void
945 smtp_vprintf(const char *format, BOOL more, va_list ap)
946 {
947 gstring gs = { .size = big_buffer_size, .ptr = 0, .s = big_buffer };
948 BOOL yield;
949
950 /* Use taint-unchecked routines for writing into big_buffer, trusting
951 that we'll never expand it. */
952
953 yield = !! string_vformat(&gs, SVFMT_TAINT_NOCHK, format, ap);
954 string_from_gstring(&gs);
955
956 DEBUG(D_receive) for (const uschar * t, * s = gs.s;
957                       s && (t = Ustrchr(s, '\r'));
958                       s = t + 2)                                /* \r\n */
959     debug_printf("%s %.*s\n",
960                   s == gs.s ? "SMTP>>" : "      ",
961                   (int)(t - s), s);
962
963 if (!yield)
964   {
965   log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_printf()");
966   smtp_closedown(US"Unexpected error");
967   exim_exit(EXIT_FAILURE);
968   }
969
970 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
971 have had the same. Note: this code is also present in smtp_respond(). It would
972 be tidier to have it only in one place, but when it was added, it was easier to
973 do it that way, so as not to have to mess with the code for the RCPT command,
974 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
975
976 if (fl.rcpt_in_progress)
977   {
978   if (!rcpt_smtp_response)
979     rcpt_smtp_response = string_copy(big_buffer);
980   else if (fl.rcpt_smtp_response_same &&
981            Ustrcmp(rcpt_smtp_response, big_buffer) != 0)
982     fl.rcpt_smtp_response_same = FALSE;
983   fl.rcpt_in_progress = FALSE;
984   }
985
986 /* Now write the string */
987
988 if (
989 #ifndef DISABLE_TLS
990     tls_in.active.sock >= 0 ? (tls_write(NULL, gs.s, gs.ptr, more) < 0) :
991 #endif
992     (fwrite(gs.s, gs.ptr, 1, smtp_out) == 0)
993    )
994     smtp_write_error = -1;
995 }
996
997
998
999 /*************************************************
1000 *        Flush SMTP out and check for error      *
1001 *************************************************/
1002
1003 /* This function isn't currently used within Exim (it detects errors when it
1004 tries to read the next SMTP input), but is available for use in local_scan().
1005 It flushes the output and checks for errors.
1006
1007 Arguments:  none
1008 Returns:    0 for no error; -1 after an error
1009 */
1010
1011 int
1012 smtp_fflush(void)
1013 {
1014 if (tls_in.active.sock < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
1015
1016 if (
1017 #ifndef DISABLE_TLS
1018     tls_in.active.sock >= 0 ? (tls_write(NULL, NULL, 0, FALSE) < 0) :
1019 #endif
1020     (fflush(smtp_out) != 0)
1021    )
1022     smtp_write_error = -1;
1023
1024 return smtp_write_error;
1025 }
1026
1027
1028
1029 /* If there's input waiting (and we're doing pipelineing) then we can pipeline
1030 a reponse with the one following. */
1031
1032 static BOOL
1033 pipeline_response(void)
1034 {
1035 if (  !smtp_enforce_sync || !sender_host_address
1036    || f.sender_host_notsocket || !f.smtp_in_pipelining_advertised)
1037   return FALSE;
1038
1039 if (wouldblock_reading()) return FALSE;
1040 f.smtp_in_pipelining_used = TRUE;
1041 return TRUE;
1042 }
1043
1044
1045 #ifndef DISABLE_PIPE_CONNECT
1046 static BOOL
1047 pipeline_connect_sends(void)
1048 {
1049 if (!sender_host_address || f.sender_host_notsocket || !fl.pipe_connect_acceptable)
1050   return FALSE;
1051
1052 if (wouldblock_reading()) return FALSE;
1053 f.smtp_in_early_pipe_used = TRUE;
1054 return TRUE;
1055 }
1056 #endif
1057
1058 /*************************************************
1059 *          SMTP command read timeout             *
1060 *************************************************/
1061
1062 /* Signal handler for timing out incoming SMTP commands. This attempts to
1063 finish off tidily.
1064
1065 Argument: signal number (SIGALRM)
1066 Returns:  nothing
1067 */
1068
1069 static void
1070 command_timeout_handler(int sig)
1071 {
1072 had_command_timeout = sig;
1073 }
1074
1075
1076
1077 /*************************************************
1078 *               SIGTERM received                 *
1079 *************************************************/
1080
1081 /* Signal handler for handling SIGTERM. Again, try to finish tidily.
1082
1083 Argument: signal number (SIGTERM)
1084 Returns:  nothing
1085 */
1086
1087 static void
1088 command_sigterm_handler(int sig)
1089 {
1090 had_command_sigterm = sig;
1091 }
1092
1093
1094
1095
1096 #ifdef SUPPORT_PROXY
1097 /*************************************************
1098 *       Check if host is required proxy host     *
1099 *************************************************/
1100 /* The function determines if inbound host will be a regular smtp host
1101 or if it is configured that it must use Proxy Protocol.  A local
1102 connection cannot.
1103
1104 Arguments: none
1105 Returns:   bool
1106 */
1107
1108 static BOOL
1109 check_proxy_protocol_host()
1110 {
1111 int rc;
1112
1113 if (  sender_host_address
1114    && (rc = verify_check_this_host(CUSS &hosts_proxy, NULL, NULL,
1115                            sender_host_address, NULL)) == OK)
1116   {
1117   DEBUG(D_receive)
1118     debug_printf("Detected proxy protocol configured host\n");
1119   proxy_session = TRUE;
1120   }
1121 return proxy_session;
1122 }
1123
1124
1125 /*************************************************
1126 *    Read data until newline or end of buffer    *
1127 *************************************************/
1128 /* While SMTP is server-speaks-first, TLS is client-speaks-first, so we can't
1129 read an entire buffer and assume there will be nothing past a proxy protocol
1130 header.  Our approach normally is to use stdio, but again that relies upon
1131 "STARTTLS\r\n" and a server response before the client starts TLS handshake, or
1132 reading _nothing_ before client TLS handshake.  So we don't want to use the
1133 usual buffering reads which may read enough to block TLS starting.
1134
1135 So unfortunately we're down to "read one byte at a time, with a syscall each,
1136 and expect a little overhead", for all proxy-opened connections which are v1,
1137 just to handle the TLS-on-connect case.  Since SSL functions wrap the
1138 underlying fd, we can't assume that we can feed them any already-read content.
1139
1140 We need to know where to read to, the max capacity, and we'll read until we
1141 get a CR and one more character.  Let the caller scream if it's CR+!LF.
1142
1143 Return the amount read.
1144 */
1145
1146 static int
1147 swallow_until_crlf(int fd, uschar *base, int already, int capacity)
1148 {
1149 uschar *to = base + already;
1150 uschar *cr;
1151 int have = 0;
1152 int ret;
1153 int last = 0;
1154
1155 /* For "PROXY UNKNOWN\r\n" we, at time of writing, expect to have read
1156 up through the \r; for the _normal_ case, we haven't yet seen the \r. */
1157
1158 cr = memchr(base, '\r', already);
1159 if (cr != NULL)
1160   {
1161   if ((cr - base) < already - 1)
1162     {
1163     /* \r and presumed \n already within what we have; probably not
1164     actually proxy protocol, but abort cleanly. */
1165     return 0;
1166     }
1167   /* \r is last character read, just need one more. */
1168   last = 1;
1169   }
1170
1171 while (capacity > 0)
1172   {
1173   do { ret = read(fd, to, 1); } while (ret == -1 && errno == EINTR && !had_command_timeout);
1174   if (ret == -1)
1175     return -1;
1176   have++;
1177   if (last)
1178     return have;
1179   if (*to == '\r')
1180     last = 1;
1181   capacity--;
1182   to++;
1183   }
1184
1185 /* reached end without having room for a final newline, abort */
1186 errno = EOVERFLOW;
1187 return -1;
1188 }
1189
1190 /*************************************************
1191 *         Setup host for proxy protocol          *
1192 *************************************************/
1193 /* The function configures the connection based on a header from the
1194 inbound host to use Proxy Protocol. The specification is very exact
1195 so exit with an error if do not find the exact required pieces. This
1196 includes an incorrect number of spaces separating args.
1197
1198 Arguments: none
1199 Returns:   Boolean success
1200 */
1201
1202 static void
1203 setup_proxy_protocol_host()
1204 {
1205 union {
1206   struct {
1207     uschar line[108];
1208   } v1;
1209   struct {
1210     uschar sig[12];
1211     uint8_t ver_cmd;
1212     uint8_t fam;
1213     uint16_t len;
1214     union {
1215       struct { /* TCP/UDP over IPv4, len = 12 */
1216         uint32_t src_addr;
1217         uint32_t dst_addr;
1218         uint16_t src_port;
1219         uint16_t dst_port;
1220       } ip4;
1221       struct { /* TCP/UDP over IPv6, len = 36 */
1222         uint8_t  src_addr[16];
1223         uint8_t  dst_addr[16];
1224         uint16_t src_port;
1225         uint16_t dst_port;
1226       } ip6;
1227       struct { /* AF_UNIX sockets, len = 216 */
1228         uschar   src_addr[108];
1229         uschar   dst_addr[108];
1230       } unx;
1231     } addr;
1232   } v2;
1233 } hdr;
1234
1235 /* Temp variables used in PPv2 address:port parsing */
1236 uint16_t tmpport;
1237 char tmpip[INET_ADDRSTRLEN];
1238 struct sockaddr_in tmpaddr;
1239 char tmpip6[INET6_ADDRSTRLEN];
1240 struct sockaddr_in6 tmpaddr6;
1241
1242 /* We can't read "all data until end" because while SMTP is
1243 server-speaks-first, the TLS handshake is client-speaks-first, so for
1244 TLS-on-connect ports the proxy protocol header will usually be immediately
1245 followed by a TLS handshake, and with N TLS libraries, we can't reliably
1246 reinject data for reading by those.  So instead we first read "enough to be
1247 safely read within the header, and figure out how much more to read".
1248 For v1 we will later read to the end-of-line, for v2 we will read based upon
1249 the stated length.
1250
1251 The v2 sig is 12 octets, and another 4 gets us the length, so we know how much
1252 data is needed total.  For v1, where the line looks like:
1253 PROXY TCPn L3src L3dest SrcPort DestPort \r\n
1254
1255 However, for v1 there's also `PROXY UNKNOWN\r\n` which is only 15 octets.
1256 We seem to support that.  So, if we read 14 octets then we can tell if we're
1257 v2 or v1.  If we're v1, we can continue reading as normal.
1258
1259 If we're v2, we can't slurp up the entire header.  We need the length in the
1260 15th & 16th octets, then to read everything after that.
1261
1262 So to safely handle v1 and v2, with client-sent-first supported correctly,
1263 we have to do a minimum of 3 read calls, not 1.  Eww.
1264 */
1265
1266 #define PROXY_INITIAL_READ 14
1267 #define PROXY_V2_HEADER_SIZE 16
1268 #if PROXY_INITIAL_READ > PROXY_V2_HEADER_SIZE
1269 # error Code bug in sizes of data to read for proxy usage
1270 #endif
1271
1272 int get_ok = 0;
1273 int size, ret;
1274 int fd = fileno(smtp_in);
1275 const char v2sig[12] = "\x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A";
1276 uschar * iptype;  /* To display debug info */
1277 socklen_t vslen = sizeof(struct timeval);
1278 BOOL yield = FALSE;
1279
1280 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1281 ALARM(proxy_protocol_timeout);
1282
1283 do
1284   {
1285   /* The inbound host was declared to be a Proxy Protocol host, so
1286   don't do a PEEK into the data, actually slurp up enough to be
1287   "safe". Can't take it all because TLS-on-connect clients follow
1288   immediately with TLS handshake. */
1289   ret = read(fd, &hdr, PROXY_INITIAL_READ);
1290   }
1291   while (ret == -1 && errno == EINTR && !had_command_timeout);
1292
1293 if (ret == -1)
1294   goto proxyfail;
1295
1296 /* For v2, handle reading the length, and then the rest. */
1297 if ((ret == PROXY_INITIAL_READ) && (memcmp(&hdr.v2, v2sig, sizeof(v2sig)) == 0))
1298   {
1299   int retmore;
1300   uint8_t ver;
1301
1302   /* First get the length fields. */
1303   do
1304     {
1305     retmore = read(fd, (uschar*)&hdr + ret, PROXY_V2_HEADER_SIZE - PROXY_INITIAL_READ);
1306     } while (retmore == -1 && errno == EINTR && !had_command_timeout);
1307   if (retmore == -1)
1308     goto proxyfail;
1309   ret += retmore;
1310
1311   ver = (hdr.v2.ver_cmd & 0xf0) >> 4;
1312
1313   /* May 2014: haproxy combined the version and command into one byte to
1314   allow two full bytes for the length field in order to proxy SSL
1315   connections.  SSL Proxy is not supported in this version of Exim, but
1316   must still separate values here. */
1317
1318   if (ver != 0x02)
1319     {
1320     DEBUG(D_receive) debug_printf("Invalid Proxy Protocol version: %d\n", ver);
1321     goto proxyfail;
1322     }
1323
1324   /* The v2 header will always be 16 bytes per the spec. */
1325   size = 16 + ntohs(hdr.v2.len);
1326   DEBUG(D_receive) debug_printf("Detected PROXYv2 header, size %d (limit %d)\n",
1327       size, (int)sizeof(hdr));
1328
1329   /* We should now have 16 octets (PROXY_V2_HEADER_SIZE), and we know the total
1330   amount that we need.  Double-check that the size is not unreasonable, then
1331   get the rest. */
1332   if (size > sizeof(hdr))
1333     {
1334     DEBUG(D_receive) debug_printf("PROXYv2 header size unreasonably large; security attack?\n");
1335     goto proxyfail;
1336     }
1337
1338   do
1339     {
1340     do
1341       {
1342       retmore = read(fd, (uschar*)&hdr + ret, size-ret);
1343       } while (retmore == -1 && errno == EINTR && !had_command_timeout);
1344     if (retmore == -1)
1345       goto proxyfail;
1346     ret += retmore;
1347     DEBUG(D_receive) debug_printf("PROXYv2: have %d/%d required octets\n", ret, size);
1348     } while (ret < size);
1349
1350   } /* end scope for getting rest of data for v2 */
1351
1352 /* At this point: if PROXYv2, we've read the exact size required for all data;
1353 if PROXYv1 then we've read "less than required for any valid line" and should
1354 read the rest". */
1355
1356 if (ret >= 16 && memcmp(&hdr.v2, v2sig, 12) == 0)
1357   {
1358   uint8_t cmd = (hdr.v2.ver_cmd & 0x0f);
1359
1360   switch (cmd)
1361     {
1362     case 0x01: /* PROXY command */
1363       switch (hdr.v2.fam)
1364         {
1365         case 0x11:  /* TCPv4 address type */
1366           iptype = US"IPv4";
1367           tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.src_addr;
1368           inet_ntop(AF_INET, &tmpaddr.sin_addr, CS &tmpip, sizeof(tmpip));
1369           if (!string_is_ip_address(US tmpip, NULL))
1370             {
1371             DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
1372             goto proxyfail;
1373             }
1374           proxy_local_address = sender_host_address;
1375           sender_host_address = string_copy(US tmpip);
1376           tmpport             = ntohs(hdr.v2.addr.ip4.src_port);
1377           proxy_local_port    = sender_host_port;
1378           sender_host_port    = tmpport;
1379           /* Save dest ip/port */
1380           tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.dst_addr;
1381           inet_ntop(AF_INET, &tmpaddr.sin_addr, CS &tmpip, sizeof(tmpip));
1382           if (!string_is_ip_address(US tmpip, NULL))
1383             {
1384             DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
1385             goto proxyfail;
1386             }
1387           proxy_external_address = string_copy(US tmpip);
1388           tmpport              = ntohs(hdr.v2.addr.ip4.dst_port);
1389           proxy_external_port  = tmpport;
1390           goto done;
1391         case 0x21:  /* TCPv6 address type */
1392           iptype = US"IPv6";
1393           memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.src_addr, 16);
1394           inet_ntop(AF_INET6, &tmpaddr6.sin6_addr, CS &tmpip6, sizeof(tmpip6));
1395           if (!string_is_ip_address(US tmpip6, NULL))
1396             {
1397             DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
1398             goto proxyfail;
1399             }
1400           proxy_local_address = sender_host_address;
1401           sender_host_address = string_copy(US tmpip6);
1402           tmpport             = ntohs(hdr.v2.addr.ip6.src_port);
1403           proxy_local_port    = sender_host_port;
1404           sender_host_port    = tmpport;
1405           /* Save dest ip/port */
1406           memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.dst_addr, 16);
1407           inet_ntop(AF_INET6, &tmpaddr6.sin6_addr, CS &tmpip6, sizeof(tmpip6));
1408           if (!string_is_ip_address(US tmpip6, NULL))
1409             {
1410             DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
1411             goto proxyfail;
1412             }
1413           proxy_external_address = string_copy(US tmpip6);
1414           tmpport              = ntohs(hdr.v2.addr.ip6.dst_port);
1415           proxy_external_port  = tmpport;
1416           goto done;
1417         default:
1418           DEBUG(D_receive)
1419             debug_printf("Unsupported PROXYv2 connection type: 0x%02x\n",
1420                          hdr.v2.fam);
1421           goto proxyfail;
1422         }
1423       /* Unsupported protocol, keep local connection address */
1424       break;
1425     case 0x00: /* LOCAL command */
1426       /* Keep local connection address for LOCAL */
1427       iptype = US"local";
1428       break;
1429     default:
1430       DEBUG(D_receive)
1431         debug_printf("Unsupported PROXYv2 command: 0x%x\n", cmd);
1432       goto proxyfail;
1433     }
1434   }
1435 else if (ret >= 8 && memcmp(hdr.v1.line, "PROXY", 5) == 0)
1436   {
1437   uschar *p;
1438   uschar *end;
1439   uschar *sp;     /* Utility variables follow */
1440   int     tmp_port;
1441   int     r2;
1442   char   *endc;
1443
1444   /* get the rest of the line */
1445   r2 = swallow_until_crlf(fd, (uschar*)&hdr, ret, sizeof(hdr)-ret);
1446   if (r2 == -1)
1447     goto proxyfail;
1448   ret += r2;
1449
1450   p = string_copy(hdr.v1.line);
1451   end = memchr(p, '\r', ret - 1);
1452
1453   if (!end || (end == (uschar*)&hdr + ret) || end[1] != '\n')
1454     {
1455     DEBUG(D_receive) debug_printf("Partial or invalid PROXY header\n");
1456     goto proxyfail;
1457     }
1458   *end = '\0'; /* Terminate the string */
1459   size = end + 2 - p; /* Skip header + CRLF */
1460   DEBUG(D_receive) debug_printf("Detected PROXYv1 header\n");
1461   DEBUG(D_receive) debug_printf("Bytes read not within PROXY header: %d\n", ret - size);
1462   /* Step through the string looking for the required fields. Ensure
1463   strict adherence to required formatting, exit for any error. */
1464   p += 5;
1465   if (!isspace(*(p++)))
1466     {
1467     DEBUG(D_receive) debug_printf("Missing space after PROXY command\n");
1468     goto proxyfail;
1469     }
1470   if (!Ustrncmp(p, CCS"TCP4", 4))
1471     iptype = US"IPv4";
1472   else if (!Ustrncmp(p,CCS"TCP6", 4))
1473     iptype = US"IPv6";
1474   else if (!Ustrncmp(p,CCS"UNKNOWN", 7))
1475     {
1476     iptype = US"Unknown";
1477     goto done;
1478     }
1479   else
1480     {
1481     DEBUG(D_receive) debug_printf("Invalid TCP type\n");
1482     goto proxyfail;
1483     }
1484
1485   p += Ustrlen(iptype);
1486   if (!isspace(*(p++)))
1487     {
1488     DEBUG(D_receive) debug_printf("Missing space after TCP4/6 command\n");
1489     goto proxyfail;
1490     }
1491   /* Find the end of the arg */
1492   if ((sp = Ustrchr(p, ' ')) == NULL)
1493     {
1494     DEBUG(D_receive)
1495       debug_printf("Did not find proxied src %s\n", iptype);
1496     goto proxyfail;
1497     }
1498   *sp = '\0';
1499   if(!string_is_ip_address(p, NULL))
1500     {
1501     DEBUG(D_receive)
1502       debug_printf("Proxied src arg is not an %s address\n", iptype);
1503     goto proxyfail;
1504     }
1505   proxy_local_address = sender_host_address;
1506   sender_host_address = p;
1507   p = sp + 1;
1508   if ((sp = Ustrchr(p, ' ')) == NULL)
1509     {
1510     DEBUG(D_receive)
1511       debug_printf("Did not find proxy dest %s\n", iptype);
1512     goto proxyfail;
1513     }
1514   *sp = '\0';
1515   if(!string_is_ip_address(p, NULL))
1516     {
1517     DEBUG(D_receive)
1518       debug_printf("Proxy dest arg is not an %s address\n", iptype);
1519     goto proxyfail;
1520     }
1521   proxy_external_address = p;
1522   p = sp + 1;
1523   if ((sp = Ustrchr(p, ' ')) == NULL)
1524     {
1525     DEBUG(D_receive) debug_printf("Did not find proxied src port\n");
1526     goto proxyfail;
1527     }
1528   *sp = '\0';
1529   tmp_port = strtol(CCS p, &endc, 10);
1530   if (*endc || tmp_port == 0)
1531     {
1532     DEBUG(D_receive)
1533       debug_printf("Proxied src port '%s' not an integer\n", p);
1534     goto proxyfail;
1535     }
1536   proxy_local_port = sender_host_port;
1537   sender_host_port = tmp_port;
1538   p = sp + 1;
1539   if ((sp = Ustrchr(p, '\0')) == NULL)
1540     {
1541     DEBUG(D_receive) debug_printf("Did not find proxy dest port\n");
1542     goto proxyfail;
1543     }
1544   tmp_port = strtol(CCS p, &endc, 10);
1545   if (*endc || tmp_port == 0)
1546     {
1547     DEBUG(D_receive)
1548       debug_printf("Proxy dest port '%s' not an integer\n", p);
1549     goto proxyfail;
1550     }
1551   proxy_external_port = tmp_port;
1552   /* Already checked for /r /n above. Good V1 header received. */
1553   }
1554 else
1555   {
1556   /* Wrong protocol */
1557   DEBUG(D_receive) debug_printf("Invalid proxy protocol version negotiation\n");
1558   (void) swallow_until_crlf(fd, (uschar*)&hdr, ret, sizeof(hdr)-ret);
1559   goto proxyfail;
1560   }
1561
1562 done:
1563   DEBUG(D_receive)
1564     debug_printf("Valid %s sender from Proxy Protocol header\n", iptype);
1565   yield = proxy_session;
1566
1567 /* Don't flush any potential buffer contents. Any input on proxyfail
1568 should cause a synchronization failure */
1569
1570 proxyfail:
1571   DEBUG(D_receive) if (had_command_timeout)
1572     debug_printf("Timeout while reading proxy header\n");
1573
1574 bad:
1575   if (yield)
1576     {
1577     sender_host_name = NULL;
1578     (void) host_name_lookup();
1579     host_build_sender_fullhost();
1580     }
1581   else
1582     {
1583     f.proxy_session_failed = TRUE;
1584     DEBUG(D_receive)
1585       debug_printf("Failure to extract proxied host, only QUIT allowed\n");
1586     }
1587
1588 ALARM(0);
1589 return;
1590 }
1591 #endif
1592
1593 /*************************************************
1594 *           Read one command line                *
1595 *************************************************/
1596
1597 /* Strictly, SMTP commands coming over the net are supposed to end with CRLF.
1598 There are sites that don't do this, and in any case internal SMTP probably
1599 should check only for LF. Consequently, we check here for LF only. The line
1600 ends up with [CR]LF removed from its end. If we get an overlong line, treat as
1601 an unknown command. The command is read into the global smtp_cmd_buffer so that
1602 it is available via $smtp_command.
1603
1604 The character reading routine sets up a timeout for each block actually read
1605 from the input (which may contain more than one command). We set up a special
1606 signal handler that closes down the session on a timeout. Control does not
1607 return when it runs.
1608
1609 Arguments:
1610   check_sync    if TRUE, check synchronization rules if global option is TRUE
1611   buffer_lim    maximum to buffer in lower layer
1612
1613 Returns:       a code identifying the command (enumerated above)
1614 */
1615
1616 static int
1617 smtp_read_command(BOOL check_sync, unsigned buffer_lim)
1618 {
1619 int c;
1620 int ptr = 0;
1621 BOOL hadnull = FALSE;
1622
1623 had_command_timeout = 0;
1624 os_non_restarting_signal(SIGALRM, command_timeout_handler);
1625
1626 while ((c = (receive_getc)(buffer_lim)) != '\n' && c != EOF)
1627   {
1628   if (ptr >= SMTP_CMD_BUFFER_SIZE)
1629     {
1630     os_non_restarting_signal(SIGALRM, sigalrm_handler);
1631     return OTHER_CMD;
1632     }
1633   if (c == 0)
1634     {
1635     hadnull = TRUE;
1636     c = '?';
1637     }
1638   smtp_cmd_buffer[ptr++] = c;
1639   }
1640
1641 receive_linecount++;    /* For BSMTP errors */
1642 os_non_restarting_signal(SIGALRM, sigalrm_handler);
1643
1644 /* If hit end of file, return pseudo EOF command. Whether we have a
1645 part-line already read doesn't matter, since this is an error state. */
1646
1647 if (c == EOF) return EOF_CMD;
1648
1649 /* Remove any CR and white space at the end of the line, and terminate the
1650 string. */
1651
1652 while (ptr > 0 && isspace(smtp_cmd_buffer[ptr-1])) ptr--;
1653 smtp_cmd_buffer[ptr] = 0;
1654
1655 DEBUG(D_receive) debug_printf("SMTP<< %s\n", smtp_cmd_buffer);
1656
1657 /* NULLs are not allowed in SMTP commands */
1658
1659 if (hadnull) return BADCHAR_CMD;
1660
1661 /* Scan command list and return identity, having set the data pointer
1662 to the start of the actual data characters. Check for SMTP synchronization
1663 if required. */
1664
1665 for (smtp_cmd_list * p = cmd_list; p < cmd_list_end; p++)
1666   {
1667 #ifdef SUPPORT_PROXY
1668   /* Only allow QUIT command if Proxy Protocol parsing failed */
1669   if (proxy_session && f.proxy_session_failed && p->cmd != QUIT_CMD)
1670     continue;
1671 #endif
1672   if (  p->len
1673      && strncmpic(smtp_cmd_buffer, US p->name, p->len) == 0
1674      && (  smtp_cmd_buffer[p->len-1] == ':'    /* "mail from:" or "rcpt to:" */
1675         || smtp_cmd_buffer[p->len] == 0
1676         || smtp_cmd_buffer[p->len] == ' '
1677      )  )
1678     {
1679     if (   smtp_inptr < smtp_inend              /* Outstanding input */
1680        &&  p->cmd < sync_cmd_limit              /* Command should sync */
1681        &&  check_sync                           /* Local flag set */
1682        &&  smtp_enforce_sync                    /* Global flag set */
1683        &&  sender_host_address != NULL          /* Not local input */
1684        &&  !f.sender_host_notsocket             /* Really is a socket */
1685        )
1686       return BADSYN_CMD;
1687
1688     /* The variables $smtp_command and $smtp_command_argument point into the
1689     unmodified input buffer. A copy of the latter is taken for actual
1690     processing, so that it can be chopped up into separate parts if necessary,
1691     for example, when processing a MAIL command options such as SIZE that can
1692     follow the sender address. */
1693
1694     smtp_cmd_argument = smtp_cmd_buffer + p->len;
1695     while (isspace(*smtp_cmd_argument)) smtp_cmd_argument++;
1696     Ustrcpy(smtp_data_buffer, smtp_cmd_argument);
1697     smtp_cmd_data = smtp_data_buffer;
1698
1699     /* Count non-mail commands from those hosts that are controlled in this
1700     way. The default is all hosts. We don't waste effort checking the list
1701     until we get a non-mail command, but then cache the result to save checking
1702     again. If there's a DEFER while checking the host, assume it's in the list.
1703
1704     Note that one instance of RSET, EHLO/HELO, and STARTTLS is allowed at the
1705     start of each incoming message by fiddling with the value in the table. */
1706
1707     if (!p->is_mail_cmd)
1708       {
1709       if (count_nonmail == TRUE_UNSET) count_nonmail =
1710         verify_check_host(&smtp_accept_max_nonmail_hosts) != FAIL;
1711       if (count_nonmail && ++nonmail_command_count > smtp_accept_max_nonmail)
1712         return TOO_MANY_NONMAIL_CMD;
1713       }
1714
1715     /* If there is data for a command that does not expect it, generate the
1716     error here. */
1717
1718     return (p->has_arg || *smtp_cmd_data == 0)? p->cmd : BADARG_CMD;
1719     }
1720   }
1721
1722 #ifdef SUPPORT_PROXY
1723 /* Only allow QUIT command if Proxy Protocol parsing failed */
1724 if (proxy_session && f.proxy_session_failed)
1725   return PROXY_FAIL_IGNORE_CMD;
1726 #endif
1727
1728 /* Enforce synchronization for unknown commands */
1729
1730 if (  smtp_inptr < smtp_inend           /* Outstanding input */
1731    && check_sync                        /* Local flag set */
1732    && smtp_enforce_sync                 /* Global flag set */
1733    && sender_host_address               /* Not local input */
1734    && !f.sender_host_notsocket          /* Really is a socket */
1735    )
1736   return BADSYN_CMD;
1737
1738 return OTHER_CMD;
1739 }
1740
1741
1742
1743 /*************************************************
1744 *          Forced closedown of call              *
1745 *************************************************/
1746
1747 /* This function is called from log.c when Exim is dying because of a serious
1748 disaster, and also from some other places. If an incoming non-batched SMTP
1749 channel is open, it swallows the rest of the incoming message if in the DATA
1750 phase, sends the reply string, and gives an error to all subsequent commands
1751 except QUIT. The existence of an SMTP call is detected by the non-NULLness of
1752 smtp_in.
1753
1754 Arguments:
1755   message   SMTP reply string to send, excluding the code
1756
1757 Returns:    nothing
1758 */
1759
1760 void
1761 smtp_closedown(uschar * message)
1762 {
1763 if (!smtp_in || smtp_batched_input) return;
1764 receive_swallow_smtp();
1765 smtp_printf("421 %s\r\n", FALSE, message);
1766
1767 for (;;) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
1768   {
1769   case EOF_CMD:
1770     return;
1771
1772   case QUIT_CMD:
1773     f.smtp_in_quit = TRUE;
1774     smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
1775     mac_smtp_fflush();
1776     return;
1777
1778   case RSET_CMD:
1779     smtp_printf("250 Reset OK\r\n", FALSE);
1780     break;
1781
1782   default:
1783     smtp_printf("421 %s\r\n", FALSE, message);
1784     break;
1785   }
1786 }
1787
1788
1789
1790
1791 /*************************************************
1792 *        Set up connection info for logging      *
1793 *************************************************/
1794
1795 /* This function is called when logging information about an SMTP connection.
1796 It sets up appropriate source information, depending on the type of connection.
1797 If sender_fullhost is NULL, we are at a very early stage of the connection;
1798 just use the IP address.
1799
1800 Argument:    none
1801 Returns:     a string describing the connection
1802 */
1803
1804 uschar *
1805 smtp_get_connection_info(void)
1806 {
1807 const uschar * hostname = sender_fullhost
1808   ? sender_fullhost : sender_host_address;
1809
1810 if (host_checking)
1811   return string_sprintf("SMTP connection from %s", hostname);
1812
1813 if (f.sender_host_unknown || f.sender_host_notsocket)
1814   return string_sprintf("SMTP connection from %s", sender_ident);
1815
1816 if (f.is_inetd)
1817   return string_sprintf("SMTP connection from %s (via inetd)", hostname);
1818
1819 if (LOGGING(incoming_interface) && interface_address)
1820   return string_sprintf("SMTP connection from %s I=[%s]:%d", hostname,
1821     interface_address, interface_port);
1822
1823 return string_sprintf("SMTP connection from %s", hostname);
1824 }
1825
1826
1827
1828 #ifndef DISABLE_TLS
1829 /* Append TLS-related information to a log line
1830
1831 Arguments:
1832   g             String under construction: allocated string to extend, or NULL
1833
1834 Returns:        Allocated string or NULL
1835 */
1836 static gstring *
1837 s_tlslog(gstring * g)
1838 {
1839 if (LOGGING(tls_cipher) && tls_in.cipher)
1840   {
1841   g = string_append(g, 2, US" X=", tls_in.cipher);
1842 #ifndef DISABLE_TLS_RESUME
1843   if (LOGGING(tls_resumption) && tls_in.resumption & RESUME_USED)
1844     g = string_catn(g, US"*", 1);
1845 #endif
1846   }
1847 if (LOGGING(tls_certificate_verified) && tls_in.cipher)
1848   g = string_append(g, 2, US" CV=", tls_in.certificate_verified? "yes":"no");
1849 if (LOGGING(tls_peerdn) && tls_in.peerdn)
1850   g = string_append(g, 3, US" DN=\"", string_printing(tls_in.peerdn), US"\"");
1851 if (LOGGING(tls_sni) && tls_in.sni)
1852   g = string_append(g, 2, US" SNI=", string_printing2(tls_in.sni, SP_TAB|SP_SPACE));
1853 return g;
1854 }
1855 #endif
1856
1857
1858
1859 static gstring *
1860 s_connhad_log(gstring * g)
1861 {
1862 const uschar * sep = smtp_connection_had[SMTP_HBUFF_SIZE-1] != SCH_NONE
1863   ? US" C=..." : US" C=";
1864
1865 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1866   if (smtp_connection_had[i] != SCH_NONE)
1867     {
1868     g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1869     sep = US",";
1870     }
1871 for (int i = 0; i < smtp_ch_index; i++, sep = US",")
1872   g = string_append(g, 2, sep, smtp_names[smtp_connection_had[i]]);
1873 return g;
1874 }
1875
1876
1877 /*************************************************
1878 *      Log lack of MAIL if so configured         *
1879 *************************************************/
1880
1881 /* This function is called when an SMTP session ends. If the log selector
1882 smtp_no_mail is set, write a log line giving some details of what has happened
1883 in the SMTP session.
1884
1885 Arguments:   none
1886 Returns:     nothing
1887 */
1888
1889 void
1890 smtp_log_no_mail(void)
1891 {
1892 uschar * s;
1893 gstring * g = NULL;
1894
1895 if (smtp_mailcmd_count > 0 || !LOGGING(smtp_no_mail))
1896   return;
1897
1898 if (sender_host_authenticated)
1899   {
1900   g = string_append(g, 2, US" A=", sender_host_authenticated);
1901   if (authenticated_id) g = string_append(g, 2, US":", authenticated_id);
1902   }
1903
1904 #ifndef DISABLE_TLS
1905 g = s_tlslog(g);
1906 #endif
1907
1908 g = s_connhad_log(g);
1909
1910 if (!(s = string_from_gstring(g))) s = US"";
1911
1912 log_write(0, LOG_MAIN, "no MAIL in %sSMTP connection from %s D=%s%s",
1913   f.tcp_in_fastopen ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO " : US"",
1914   host_and_ident(FALSE), string_timesince(&smtp_connection_start), s);
1915 }
1916
1917
1918 /* Return list of recent smtp commands */
1919
1920 uschar *
1921 smtp_cmd_hist(void)
1922 {
1923 gstring * list = NULL;
1924 uschar * s;
1925
1926 for (int i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1927   if (smtp_connection_had[i] != SCH_NONE)
1928     list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1929
1930 for (int i = 0; i < smtp_ch_index; i++)
1931   list = string_append_listele(list, ',', smtp_names[smtp_connection_had[i]]);
1932
1933 s = string_from_gstring(list);
1934 return s ? s : US"";
1935 }
1936
1937
1938
1939
1940 /*************************************************
1941 *   Check HELO line and set sender_helo_name     *
1942 *************************************************/
1943
1944 /* Check the format of a HELO line. The data for HELO/EHLO is supposed to be
1945 the domain name of the sending host, or an ip literal in square brackets. The
1946 argument is placed in sender_helo_name, which is in malloc store, because it
1947 must persist over multiple incoming messages. If helo_accept_junk is set, this
1948 host is permitted to send any old junk (needed for some broken hosts).
1949 Otherwise, helo_allow_chars can be used for rogue characters in general
1950 (typically people want to let in underscores).
1951
1952 Argument:
1953   s       the data portion of the line (already past any white space)
1954
1955 Returns:  TRUE or FALSE
1956 */
1957
1958 static BOOL
1959 check_helo(uschar *s)
1960 {
1961 uschar *start = s;
1962 uschar *end = s + Ustrlen(s);
1963 BOOL yield = fl.helo_accept_junk;
1964
1965 /* Discard any previous helo name */
1966
1967 sender_helo_name = NULL;
1968
1969 /* Skip tests if junk is permitted. */
1970
1971 if (!yield)
1972
1973   /* Allow the new standard form for IPv6 address literals, namely,
1974   [IPv6:....], and because someone is bound to use it, allow an equivalent
1975   IPv4 form. Allow plain addresses as well. */
1976
1977   if (*s == '[')
1978     {
1979     if (end[-1] == ']')
1980       {
1981       end[-1] = 0;
1982       if (strncmpic(s, US"[IPv6:", 6) == 0)
1983         yield = (string_is_ip_address(s+6, NULL) == 6);
1984       else if (strncmpic(s, US"[IPv4:", 6) == 0)
1985         yield = (string_is_ip_address(s+6, NULL) == 4);
1986       else
1987         yield = (string_is_ip_address(s+1, NULL) != 0);
1988       end[-1] = ']';
1989       }
1990     }
1991
1992   /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
1993   that have been configured (usually underscore - sigh). */
1994
1995   else if (*s)
1996     for (yield = TRUE; *s; s++)
1997       if (!isalnum(*s) && *s != '.' && *s != '-' &&
1998           Ustrchr(helo_allow_chars, *s) == NULL)
1999         {
2000         yield = FALSE;
2001         break;
2002         }
2003
2004 /* Save argument if OK */
2005
2006 if (yield) sender_helo_name = string_copy_perm(start, TRUE);
2007 return yield;
2008 }
2009
2010
2011
2012
2013
2014 /*************************************************
2015 *         Extract SMTP command option            *
2016 *************************************************/
2017
2018 /* This function picks the next option setting off the end of smtp_cmd_data. It
2019 is called for MAIL FROM and RCPT TO commands, to pick off the optional ESMTP
2020 things that can appear there.
2021
2022 Arguments:
2023    name           point this at the name
2024    value          point this at the data string
2025
2026 Returns:          TRUE if found an option
2027 */
2028
2029 static BOOL
2030 extract_option(uschar **name, uschar **value)
2031 {
2032 uschar *n;
2033 uschar *v;
2034 if (Ustrlen(smtp_cmd_data) <= 0) return FALSE;
2035 v = smtp_cmd_data + Ustrlen(smtp_cmd_data) - 1;
2036 while (v > smtp_cmd_data && isspace(*v)) v--;
2037 v[1] = 0;
2038
2039 while (v > smtp_cmd_data && *v != '=' && !isspace(*v))
2040   {
2041   /* Take care to not stop at a space embedded in a quoted local-part */
2042   if (*v == '"')
2043     {
2044     do v--; while (v > smtp_cmd_data && *v != '"');
2045     if (v <= smtp_cmd_data) return FALSE;
2046     }
2047   v--;
2048   }
2049 if (v <= smtp_cmd_data) return FALSE;
2050
2051 n = v;
2052 if (*v == '=')
2053   {
2054   while (n > smtp_cmd_data && isalpha(n[-1])) n--;
2055   /* RFC says SP, but TAB seen in wild and other major MTAs accept it */
2056   if (n <= smtp_cmd_data || !isspace(n[-1])) return FALSE;
2057   n[-1] = 0;
2058   }
2059 else
2060   {
2061   n++;
2062   }
2063 *v++ = 0;
2064 *name = n;
2065 *value = v;
2066 return TRUE;
2067 }
2068
2069
2070
2071
2072
2073 /*************************************************
2074 *         Reset for new message                  *
2075 *************************************************/
2076
2077 /* This function is called whenever the SMTP session is reset from
2078 within either of the setup functions; also from the daemon loop.
2079
2080 Argument:   the stacking pool storage reset point
2081 Returns:    nothing
2082 */
2083
2084 void *
2085 smtp_reset(void *reset_point)
2086 {
2087 recipients_list = NULL;
2088 rcpt_count = rcpt_defer_count = rcpt_fail_count =
2089   raw_recipients_count = recipients_count = recipients_list_max = 0;
2090 message_linecount = 0;
2091 message_size = -1;
2092 message_body = message_body_end = NULL;
2093 acl_added_headers = NULL;
2094 acl_removed_headers = NULL;
2095 f.queue_only_policy = FALSE;
2096 rcpt_smtp_response = NULL;
2097 fl.rcpt_smtp_response_same = TRUE;
2098 fl.rcpt_in_progress = FALSE;
2099 f.deliver_freeze = FALSE;                               /* Can be set by ACL */
2100 freeze_tell = freeze_tell_config;                       /* Can be set by ACL */
2101 fake_response = OK;                                     /* Can be set by ACL */
2102 #ifdef WITH_CONTENT_SCAN
2103 f.no_mbox_unspool = FALSE;                              /* Can be set by ACL */
2104 #endif
2105 f.submission_mode = FALSE;                              /* Can be set by ACL */
2106 f.suppress_local_fixups = f.suppress_local_fixups_default; /* Can be set by ACL */
2107 f.active_local_from_check = local_from_check;           /* Can be set by ACL */
2108 f.active_local_sender_retain = local_sender_retain;     /* Can be set by ACL */
2109 sending_ip_address = NULL;
2110 return_path = sender_address = NULL;
2111 deliver_localpart_data = deliver_domain_data =
2112 recipient_data = sender_data = NULL;                    /* Can be set by ACL */
2113 recipient_verify_failure = NULL;
2114 deliver_localpart_parent = deliver_localpart_orig = NULL;
2115 deliver_domain_parent = deliver_domain_orig = NULL;
2116 callout_address = NULL;
2117 submission_name = NULL;                                 /* Can be set by ACL */
2118 raw_sender = NULL;                  /* After SMTP rewrite, before qualifying */
2119 sender_address_unrewritten = NULL;  /* Set only after verify rewrite */
2120 sender_verified_list = NULL;        /* No senders verified */
2121 memset(sender_address_cache, 0, sizeof(sender_address_cache));
2122 memset(sender_domain_cache, 0, sizeof(sender_domain_cache));
2123
2124 authenticated_sender = NULL;
2125 #ifdef EXPERIMENTAL_BRIGHTMAIL
2126 bmi_run = 0;
2127 bmi_verdicts = NULL;
2128 #endif
2129 dnslist_domain = dnslist_matched = NULL;
2130 #ifdef SUPPORT_SPF
2131 spf_header_comment = spf_received = spf_result = spf_smtp_comment = NULL;
2132 spf_result_guessed = FALSE;
2133 #endif
2134 #ifndef DISABLE_DKIM
2135 dkim_cur_signer = dkim_signers =
2136 dkim_signing_domain = dkim_signing_selector = dkim_signatures = NULL;
2137 dkim_cur_signer = dkim_signers = dkim_signing_domain = dkim_signing_selector = NULL;
2138 f.dkim_disable_verify = FALSE;
2139 dkim_collect_input = 0;
2140 dkim_verify_overall = dkim_verify_status = dkim_verify_reason = NULL;
2141 dkim_key_length = 0;
2142 #endif
2143 #ifdef SUPPORT_DMARC
2144 f.dmarc_has_been_checked = f.dmarc_disable_verify = f.dmarc_enable_forensic = FALSE;
2145 dmarc_domain_policy = dmarc_status = dmarc_status_text =
2146 dmarc_used_domain = NULL;
2147 #endif
2148 #ifdef EXPERIMENTAL_ARC
2149 arc_state = arc_state_reason = NULL;
2150 arc_received_instance = 0;
2151 #endif
2152 dsn_ret = 0;
2153 dsn_envid = NULL;
2154 deliver_host = deliver_host_address = NULL;     /* Can be set by ACL */
2155 #ifndef DISABLE_PRDR
2156 prdr_requested = FALSE;
2157 #endif
2158 #ifdef SUPPORT_I18N
2159 message_smtputf8 = FALSE;
2160 #endif
2161 #ifdef WITH_CONTENT_SCAN
2162 regex_vars_clear();
2163 #endif
2164 body_linecount = body_zerocount = 0;
2165
2166 lookup_value = NULL;                            /* Can be set by ACL */
2167 sender_rate = sender_rate_limit = sender_rate_period = NULL;
2168 ratelimiters_mail = NULL;           /* Updated by ratelimit ACL condition */
2169                    /* Note that ratelimiters_conn persists across resets. */
2170
2171 /* Reset message ACL variables */
2172
2173 acl_var_m = NULL;
2174
2175 /* Warning log messages are saved in malloc store. They are saved to avoid
2176 repetition in the same message, but it seems right to repeat them for different
2177 messages. */
2178
2179 while (acl_warn_logged)
2180   {
2181   string_item *this = acl_warn_logged;
2182   acl_warn_logged = acl_warn_logged->next;
2183   store_free(this);
2184   }
2185
2186 message_tidyup();
2187 store_reset(reset_point);
2188
2189 message_start();
2190 return store_mark();
2191 }
2192
2193
2194
2195
2196
2197 /*************************************************
2198 *  Initialize for incoming batched SMTP message  *
2199 *************************************************/
2200
2201 /* This function is called from smtp_setup_msg() in the case when
2202 smtp_batched_input is true. This happens when -bS is used to pass a whole batch
2203 of messages in one file with SMTP commands between them. All errors must be
2204 reported by sending a message, and only MAIL FROM, RCPT TO, and DATA are
2205 relevant. After an error on a sender, or an invalid recipient, the remainder
2206 of the message is skipped. The value of received_protocol is already set.
2207
2208 Argument: none
2209 Returns:  > 0 message successfully started (reached DATA)
2210           = 0 QUIT read or end of file reached
2211           < 0 should not occur
2212 */
2213
2214 static int
2215 smtp_setup_batch_msg(void)
2216 {
2217 int done = 0;
2218 rmark reset_point = store_mark();
2219
2220 /* Save the line count at the start of each transaction - single commands
2221 like HELO and RSET count as whole transactions. */
2222
2223 bsmtp_transaction_linecount = receive_linecount;
2224
2225 if ((receive_feof)()) return 0;   /* Treat EOF as QUIT */
2226
2227 cancel_cutthrough_connection(TRUE, US"smtp_setup_batch_msg");
2228 reset_point = smtp_reset(reset_point);                /* Reset for start of message */
2229
2230 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
2231 value. The values are 2 larger than the required yield of the function. */
2232
2233 while (done <= 0)
2234   {
2235   uschar *errmess;
2236   uschar *recipient = NULL;
2237   int start, end, sender_domain, recipient_domain;
2238
2239   switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
2240     {
2241     /* The HELO/EHLO commands set sender_address_helo if they have
2242     valid data; otherwise they are ignored, except that they do
2243     a reset of the state. */
2244
2245     case HELO_CMD:
2246     case EHLO_CMD:
2247
2248       check_helo(smtp_cmd_data);
2249       /* Fall through */
2250
2251     case RSET_CMD:
2252       cancel_cutthrough_connection(TRUE, US"RSET received");
2253       reset_point = smtp_reset(reset_point);
2254       bsmtp_transaction_linecount = receive_linecount;
2255       break;
2256
2257
2258     /* The MAIL FROM command requires an address as an operand. All we
2259     do here is to parse it for syntactic correctness. The form "<>" is
2260     a special case which converts into an empty string. The start/end
2261     pointers in the original are not used further for this address, as
2262     it is the canonical extracted address which is all that is kept. */
2263
2264     case MAIL_CMD:
2265       smtp_mailcmd_count++;              /* Count for no-mail log */
2266       if (sender_address)
2267         /* The function moan_smtp_batch() does not return. */
2268         moan_smtp_batch(smtp_cmd_buffer, "503 Sender already given");
2269
2270       if (smtp_cmd_data[0] == 0)
2271         /* The function moan_smtp_batch() does not return. */
2272         moan_smtp_batch(smtp_cmd_buffer, "501 MAIL FROM must have an address operand");
2273
2274       /* Reset to start of message */
2275
2276       cancel_cutthrough_connection(TRUE, US"MAIL received");
2277       reset_point = smtp_reset(reset_point);
2278
2279       /* Apply SMTP rewrite */
2280
2281       raw_sender = rewrite_existflags & rewrite_smtp
2282         /* deconst ok as smtp_cmd_data was not const */
2283         ? US rewrite_one(smtp_cmd_data, rewrite_smtp|rewrite_smtp_sender, NULL,
2284                       FALSE, US"", global_rewrite_rules)
2285         : smtp_cmd_data;
2286
2287       /* Extract the address; the TRUE flag allows <> as valid */
2288
2289       raw_sender =
2290         parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
2291           TRUE);
2292
2293       if (!raw_sender)
2294         /* The function moan_smtp_batch() does not return. */
2295         moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
2296
2297       sender_address = string_copy(raw_sender);
2298
2299       /* Qualify unqualified sender addresses if permitted to do so. */
2300
2301       if (  !sender_domain
2302          && sender_address[0] != 0 && sender_address[0] != '@')
2303         if (f.allow_unqualified_sender)
2304           {
2305           /* deconst ok as sender_address was not const */
2306           sender_address = US rewrite_address_qualify(sender_address, FALSE);
2307           DEBUG(D_receive) debug_printf("unqualified address %s accepted "
2308             "and rewritten\n", raw_sender);
2309           }
2310         /* The function moan_smtp_batch() does not return. */
2311         else
2312           moan_smtp_batch(smtp_cmd_buffer, "501 sender address must contain "
2313             "a domain");
2314       break;
2315
2316
2317     /* The RCPT TO command requires an address as an operand. All we do
2318     here is to parse it for syntactic correctness. There may be any number
2319     of RCPT TO commands, specifying multiple senders. We build them all into
2320     a data structure that is in argc/argv format. The start/end values
2321     given by parse_extract_address are not used, as we keep only the
2322     extracted address. */
2323
2324     case RCPT_CMD:
2325       if (!sender_address)
2326         /* The function moan_smtp_batch() does not return. */
2327         moan_smtp_batch(smtp_cmd_buffer, "503 No sender yet given");
2328
2329       if (smtp_cmd_data[0] == 0)
2330         /* The function moan_smtp_batch() does not return. */
2331         moan_smtp_batch(smtp_cmd_buffer,
2332           "501 RCPT TO must have an address operand");
2333
2334       /* Check maximum number allowed */
2335
2336       if (recipients_max > 0 && recipients_count + 1 > recipients_max)
2337         /* The function moan_smtp_batch() does not return. */
2338         moan_smtp_batch(smtp_cmd_buffer, "%s too many recipients",
2339           recipients_max_reject? "552": "452");
2340
2341       /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
2342       recipient address */
2343
2344       recipient = rewrite_existflags & rewrite_smtp
2345         /* deconst ok as smtp_cmd_data was not const */
2346         ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
2347                       global_rewrite_rules)
2348         : smtp_cmd_data;
2349
2350       recipient = parse_extract_address(recipient, &errmess, &start, &end,
2351         &recipient_domain, FALSE);
2352
2353       if (!recipient)
2354         /* The function moan_smtp_batch() does not return. */
2355         moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
2356
2357       /* If the recipient address is unqualified, qualify it if permitted. Then
2358       add it to the list of recipients. */
2359
2360       if (!recipient_domain)
2361         if (f.allow_unqualified_recipient)
2362           {
2363           DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
2364             recipient);
2365           /* deconst ok as recipient was not const */
2366           recipient = US rewrite_address_qualify(recipient, TRUE);
2367           }
2368         /* The function moan_smtp_batch() does not return. */
2369         else
2370           moan_smtp_batch(smtp_cmd_buffer,
2371             "501 recipient address must contain a domain");
2372
2373       receive_add_recipient(recipient, -1);
2374       break;
2375
2376
2377     /* The DATA command is legal only if it follows successful MAIL FROM
2378     and RCPT TO commands. This function is complete when a valid DATA
2379     command is encountered. */
2380
2381     case DATA_CMD:
2382       if (!sender_address || recipients_count <= 0)
2383         /* The function moan_smtp_batch() does not return. */
2384         if (!sender_address)
2385           moan_smtp_batch(smtp_cmd_buffer,
2386             "503 MAIL FROM:<sender> command must precede DATA");
2387         else
2388           moan_smtp_batch(smtp_cmd_buffer,
2389             "503 RCPT TO:<recipient> must precede DATA");
2390       else
2391         {
2392         done = 3;                      /* DATA successfully achieved */
2393         message_ended = END_NOTENDED;  /* Indicate in middle of message */
2394         }
2395       break;
2396
2397
2398     /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
2399
2400     case VRFY_CMD:
2401     case EXPN_CMD:
2402     case HELP_CMD:
2403     case NOOP_CMD:
2404     case ETRN_CMD:
2405       bsmtp_transaction_linecount = receive_linecount;
2406       break;
2407
2408
2409     case QUIT_CMD:
2410       f.smtp_in_quit = TRUE;
2411     case EOF_CMD:
2412       done = 2;
2413       break;
2414
2415
2416     case BADARG_CMD:
2417       /* The function moan_smtp_batch() does not return. */
2418       moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected argument data");
2419       break;
2420
2421
2422     case BADCHAR_CMD:
2423       /* The function moan_smtp_batch() does not return. */
2424       moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected NULL in SMTP command");
2425       break;
2426
2427
2428     default:
2429       /* The function moan_smtp_batch() does not return. */
2430       moan_smtp_batch(smtp_cmd_buffer, "500 Command unrecognized");
2431       break;
2432     }
2433   }
2434
2435 return done - 2;  /* Convert yield values */
2436 }
2437
2438
2439
2440
2441 #ifndef DISABLE_TLS
2442 static BOOL
2443 smtp_log_tls_fail(const uschar * errstr)
2444 {
2445 const uschar * conn_info = smtp_get_connection_info();
2446
2447 if (Ustrncmp(conn_info, US"SMTP ", 5) == 0) conn_info += 5;
2448 /* I'd like to get separated H= here, but too hard for now */
2449
2450 log_write(0, LOG_MAIN, "TLS error on %s %s", conn_info, errstr);
2451 return FALSE;
2452 }
2453 #endif
2454
2455
2456
2457
2458 #ifdef TCP_FASTOPEN
2459 static void
2460 tfo_in_check(void)
2461 {
2462 # ifdef __FreeBSD__
2463 int is_fastopen;
2464 socklen_t len = sizeof(is_fastopen);
2465
2466 /* The tinfo TCPOPT_FAST_OPEN bit seems unreliable, and we don't see state
2467 TCP_SYN_RCV (as of 12.1) so no idea about data-use. */
2468
2469 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_FASTOPEN, &is_fastopen, &len) == 0)
2470   {
2471   if (is_fastopen)
2472     {
2473     DEBUG(D_receive)
2474       debug_printf("TFO mode connection (TCP_FASTOPEN getsockopt)\n");
2475     f.tcp_in_fastopen = TRUE;
2476     }
2477   }
2478 else DEBUG(D_receive)
2479   debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2480
2481 # elif defined(TCP_INFO)
2482 struct tcp_info tinfo;
2483 socklen_t len = sizeof(tinfo);
2484
2485 if (getsockopt(fileno(smtp_out), IPPROTO_TCP, TCP_INFO, &tinfo, &len) == 0)
2486 #  ifdef TCPI_OPT_SYN_DATA      /* FreeBSD 11,12 do not seem to have this yet */
2487   if (tinfo.tcpi_options & TCPI_OPT_SYN_DATA)
2488     {
2489     DEBUG(D_receive)
2490       debug_printf("TFO mode connection (ACKd data-on-SYN)\n");
2491     f.tcp_in_fastopen_data = f.tcp_in_fastopen = TRUE;
2492     }
2493   else
2494 #  endif
2495     if (tinfo.tcpi_state == TCP_SYN_RECV)       /* Not seen on FreeBSD 12.1 */
2496     {
2497     DEBUG(D_receive)
2498       debug_printf("TFO mode connection (state TCP_SYN_RECV)\n");
2499     f.tcp_in_fastopen = TRUE;
2500     }
2501 else DEBUG(D_receive)
2502   debug_printf("TCP_INFO getsockopt: %s\n", strerror(errno));
2503 # endif
2504 }
2505 #endif
2506
2507
2508 static void
2509 log_connect_tls_drop(const uschar * what, const uschar * log_msg)
2510 {
2511 gstring * g = s_tlslog(NULL);
2512 uschar * tls = string_from_gstring(g);
2513
2514 log_write(L_connection_reject,
2515   log_reject_target, "%s%s%s dropped by %s%s%s",
2516   LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
2517   host_and_ident(TRUE),
2518   tls ? tls : US"",
2519   what,
2520   log_msg ? US": " : US"", log_msg);
2521 }
2522
2523
2524 /*************************************************
2525 *          Start an SMTP session                 *
2526 *************************************************/
2527
2528 /* This function is called at the start of an SMTP session. Thereafter,
2529 smtp_setup_msg() is called to initiate each separate message. This
2530 function does host-specific testing, and outputs the banner line.
2531
2532 Arguments:     none
2533 Returns:       FALSE if the session can not continue; something has
2534                gone wrong, or the connection to the host is blocked
2535 */
2536
2537 BOOL
2538 smtp_start_session(void)
2539 {
2540 int esclen;
2541 uschar *user_msg, *log_msg;
2542 uschar *code, *esc;
2543 uschar *p, *s;
2544 gstring * ss;
2545
2546 gettimeofday(&smtp_connection_start, NULL);
2547 for (smtp_ch_index = 0; smtp_ch_index < SMTP_HBUFF_SIZE; smtp_ch_index++)
2548   smtp_connection_had[smtp_ch_index] = SCH_NONE;
2549 smtp_ch_index = 0;
2550
2551 /* Default values for certain variables */
2552
2553 fl.helo_seen = fl.esmtp = fl.helo_accept_junk = FALSE;
2554 smtp_mailcmd_count = 0;
2555 count_nonmail = TRUE_UNSET;
2556 synprot_error_count = unknown_command_count = nonmail_command_count = 0;
2557 smtp_delay_mail = smtp_rlm_base;
2558 fl.auth_advertised = FALSE;
2559 f.smtp_in_pipelining_advertised = f.smtp_in_pipelining_used = FALSE;
2560 f.pipelining_enable = TRUE;
2561 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
2562 fl.smtp_exit_function_called = FALSE;    /* For avoiding loop in not-quit exit */
2563
2564 /* If receiving by -bs from a trusted user, or testing with -bh, we allow
2565 authentication settings from -oMaa to remain in force. */
2566
2567 if (!host_checking && !f.sender_host_notsocket)
2568   sender_host_auth_pubname = sender_host_authenticated = NULL;
2569 authenticated_by = NULL;
2570
2571 #ifndef DISABLE_TLS
2572 tls_in.ver = tls_in.cipher = tls_in.peerdn = NULL;
2573 tls_in.ourcert = tls_in.peercert = NULL;
2574 tls_in.sni = NULL;
2575 tls_in.ocsp = OCSP_NOT_REQ;
2576 fl.tls_advertised = FALSE;
2577 #endif
2578 fl.dsn_advertised = FALSE;
2579 #ifdef SUPPORT_I18N
2580 fl.smtputf8_advertised = FALSE;
2581 #endif
2582
2583 /* Reset ACL connection variables */
2584
2585 acl_var_c = NULL;
2586
2587 /* Allow for trailing 0 in the command and data buffers.  Tainted. */
2588
2589 smtp_cmd_buffer = store_get_perm(2*SMTP_CMD_BUFFER_SIZE + 2, GET_TAINTED);
2590
2591 smtp_cmd_buffer[0] = 0;
2592 smtp_data_buffer = smtp_cmd_buffer + SMTP_CMD_BUFFER_SIZE + 1;
2593
2594 /* For batched input, the protocol setting can be overridden from the
2595 command line by a trusted caller. */
2596
2597 if (smtp_batched_input)
2598   {
2599   if (!received_protocol) received_protocol = US"local-bsmtp";
2600   }
2601
2602 /* For non-batched SMTP input, the protocol setting is forced here. It will be
2603 reset later if any of EHLO/AUTH/STARTTLS are received. */
2604
2605 else
2606   received_protocol =
2607     (sender_host_address ? protocols : protocols_local) [pnormal];
2608
2609 /* Set up the buffer for inputting using direct read() calls, and arrange to
2610 call the local functions instead of the standard C ones. */
2611
2612 smtp_buf_init();
2613
2614 receive_getc = smtp_getc;
2615 receive_getbuf = smtp_getbuf;
2616 receive_get_cache = smtp_get_cache;
2617 receive_hasc = smtp_hasc;
2618 receive_ungetc = smtp_ungetc;
2619 receive_feof = smtp_feof;
2620 receive_ferror = smtp_ferror;
2621 lwr_receive_getc = NULL;
2622 lwr_receive_getbuf = NULL;
2623 lwr_receive_hasc = NULL;
2624 lwr_receive_ungetc = NULL;
2625
2626 /* Set up the message size limit; this may be host-specific */
2627
2628 thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
2629 if (expand_string_message)
2630   {
2631   if (thismessage_size_limit == -1)
2632     log_write(0, LOG_MAIN|LOG_PANIC, "unable to expand message_size_limit: "
2633       "%s", expand_string_message);
2634   else
2635     log_write(0, LOG_MAIN|LOG_PANIC, "invalid message_size_limit: "
2636       "%s", expand_string_message);
2637   smtp_closedown(US"Temporary local problem - please try later");
2638   return FALSE;
2639   }
2640
2641 /* When a message is input locally via the -bs or -bS options, sender_host_
2642 unknown is set unless -oMa was used to force an IP address, in which case it
2643 is checked like a real remote connection. When -bs is used from inetd, this
2644 flag is not set, causing the sending host to be checked. The code that deals
2645 with IP source routing (if configured) is never required for -bs or -bS and
2646 the flag sender_host_notsocket is used to suppress it.
2647
2648 If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
2649 reserve for certain hosts and/or networks. */
2650
2651 if (!f.sender_host_unknown)
2652   {
2653   int rc;
2654   BOOL reserved_host = FALSE;
2655
2656   /* Look up IP options (source routing info) on the socket if this is not an
2657   -oMa "host", and if any are found, log them and drop the connection.
2658
2659   Linux (and others now, see below) is different to everyone else, so there
2660   has to be some conditional compilation here. Versions of Linux before 2.1.15
2661   used a structure whose name was "options". Somebody finally realized that
2662   this name was silly, and it got changed to "ip_options". I use the
2663   newer name here, but there is a fudge in the script that sets up os.h
2664   to define a macro in older Linux systems.
2665
2666   Sigh. Linux is a fast-moving target. Another generation of Linux uses
2667   glibc 2, which has chosen ip_opts for the structure name. This is now
2668   really a glibc thing rather than a Linux thing, so the condition name
2669   has been changed to reflect this. It is relevant also to GNU/Hurd.
2670
2671   Mac OS 10.x (Darwin) is like the later glibc versions, but without the
2672   setting of the __GLIBC__ macro, so we can't detect it automatically. There's
2673   a special macro defined in the os.h file.
2674
2675   Some DGUX versions on older hardware appear not to support IP options at
2676   all, so there is now a general macro which can be set to cut out this
2677   support altogether.
2678
2679   How to do this properly in IPv6 is not yet known. */
2680
2681 #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
2682
2683   #ifdef GLIBC_IP_OPTIONS
2684     #if (!defined __GLIBC__) || (__GLIBC__ < 2)
2685     #define OPTSTYLE 1
2686     #else
2687     #define OPTSTYLE 2
2688     #endif
2689   #elif defined DARWIN_IP_OPTIONS
2690     #define OPTSTYLE 2
2691   #else
2692     #define OPTSTYLE 3
2693   #endif
2694
2695   if (!host_checking && !f.sender_host_notsocket)
2696     {
2697     #if OPTSTYLE == 1
2698     EXIM_SOCKLEN_T optlen = sizeof(struct ip_options) + MAX_IPOPTLEN;
2699     struct ip_options *ipopt = store_get(optlen, GET_UNTAINTED);
2700     #elif OPTSTYLE == 2
2701     struct ip_opts ipoptblock;
2702     struct ip_opts *ipopt = &ipoptblock;
2703     EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2704     #else
2705     struct ipoption ipoptblock;
2706     struct ipoption *ipopt = &ipoptblock;
2707     EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2708     #endif
2709
2710     /* Occasional genuine failures of getsockopt() have been seen - for
2711     example, "reset by peer". Therefore, just log and give up on this
2712     call, unless the error is ENOPROTOOPT. This error is given by systems
2713     that have the interfaces but not the mechanism - e.g. GNU/Hurd at the time
2714     of writing. So for that error, carry on - we just can't do an IP options
2715     check. */
2716
2717     DEBUG(D_receive) debug_printf("checking for IP options\n");
2718
2719     if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, US (ipopt),
2720           &optlen) < 0)
2721       {
2722       if (errno != ENOPROTOOPT)
2723         {
2724         log_write(0, LOG_MAIN, "getsockopt() failed from %s: %s",
2725           host_and_ident(FALSE), strerror(errno));
2726         smtp_printf("451 SMTP service not available\r\n", FALSE);
2727         return FALSE;
2728         }
2729       }
2730
2731     /* Deal with any IP options that are set. On the systems I have looked at,
2732     the value of MAX_IPOPTLEN has been 40, meaning that there should never be
2733     more logging data than will fit in big_buffer. Nevertheless, after somebody
2734     questioned this code, I've added in some paranoid checking. */
2735
2736     else if (optlen > 0)
2737       {
2738       uschar *p = big_buffer;
2739       uschar *pend = big_buffer + big_buffer_size;
2740       uschar *adptr;
2741       int optcount;
2742       struct in_addr addr;
2743
2744       #if OPTSTYLE == 1
2745       uschar *optstart = US (ipopt->__data);
2746       #elif OPTSTYLE == 2
2747       uschar *optstart = US (ipopt->ip_opts);
2748       #else
2749       uschar *optstart = US (ipopt->ipopt_list);
2750       #endif
2751
2752       DEBUG(D_receive) debug_printf("IP options exist\n");
2753
2754       Ustrcpy(p, "IP options on incoming call:");
2755       p += Ustrlen(p);
2756
2757       for (uschar * opt = optstart; opt && opt < US (ipopt) + optlen; )
2758         switch (*opt)
2759           {
2760           case IPOPT_EOL:
2761           opt = NULL;
2762           break;
2763
2764           case IPOPT_NOP:
2765           opt++;
2766           break;
2767
2768           case IPOPT_SSRR:
2769           case IPOPT_LSRR:
2770           if (!string_format(p, pend-p, " %s [@%s",
2771                (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2772                #if OPTSTYLE == 1
2773                inet_ntoa(*((struct in_addr *)(&(ipopt->faddr))))))
2774                #elif OPTSTYLE == 2
2775                inet_ntoa(ipopt->ip_dst)))
2776                #else
2777                inet_ntoa(ipopt->ipopt_dst)))
2778                #endif
2779             {
2780             opt = NULL;
2781             break;
2782             }
2783
2784           p += Ustrlen(p);
2785           optcount = (opt[1] - 3) / sizeof(struct in_addr);
2786           adptr = opt + 3;
2787           while (optcount-- > 0)
2788             {
2789             memcpy(&addr, adptr, sizeof(addr));
2790             if (!string_format(p, pend - p - 1, "%s%s",
2791                   (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2792               {
2793               opt = NULL;
2794               break;
2795               }
2796             p += Ustrlen(p);
2797             adptr += sizeof(struct in_addr);
2798             }
2799           *p++ = ']';
2800           opt += opt[1];
2801           break;
2802
2803           default:
2804             {
2805             if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2806             Ustrcat(p, "[ ");
2807             p += 2;
2808             for (int i = 0; i < opt[1]; i++)
2809               p += sprintf(CS p, "%2.2x ", opt[i]);
2810             *p++ = ']';
2811             }
2812           opt += opt[1];
2813           break;
2814           }
2815
2816       *p = 0;
2817       log_write(0, LOG_MAIN, "%s", big_buffer);
2818
2819       /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2820
2821       log_write(0, LOG_MAIN|LOG_REJECT,
2822         "connection from %s refused (IP options)", host_and_ident(FALSE));
2823
2824       smtp_printf("554 SMTP service not available\r\n", FALSE);
2825       return FALSE;
2826       }
2827
2828     /* Length of options = 0 => there are no options */
2829
2830     else DEBUG(D_receive) debug_printf("no IP options found\n");
2831     }
2832 #endif  /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2833
2834   /* Set keep-alive in socket options. The option is on by default. This
2835   setting is an attempt to get rid of some hanging connections that stick in
2836   read() when the remote end (usually a dialup) goes away. */
2837
2838   if (smtp_accept_keepalive && !f.sender_host_notsocket)
2839     ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2840
2841   /* If the current host matches host_lookup, set the name by doing a
2842   reverse lookup. On failure, sender_host_name will be NULL and
2843   host_lookup_failed will be TRUE. This may or may not be serious - optional
2844   checks later. */
2845
2846   if (verify_check_host(&host_lookup) == OK)
2847     {
2848     (void)host_name_lookup();
2849     host_build_sender_fullhost();
2850     }
2851
2852   /* Delay this until we have the full name, if it is looked up. */
2853
2854   set_process_info("handling incoming connection from %s",
2855     host_and_ident(FALSE));
2856
2857   /* Expand smtp_receive_timeout, if needed */
2858
2859   if (smtp_receive_timeout_s)
2860     {
2861     uschar * exp;
2862     if (  !(exp = expand_string(smtp_receive_timeout_s))
2863        || !(*exp)
2864        || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2865        )
2866       log_write(0, LOG_MAIN|LOG_PANIC,
2867         "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2868     }
2869
2870   /* Test for explicit connection rejection */
2871
2872   if (verify_check_host(&host_reject_connection) == OK)
2873     {
2874     log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2875       "from %s (host_reject_connection)", host_and_ident(FALSE));
2876 #ifndef DISABLE_TLS
2877     if (!tls_in.on_connect)
2878 #endif
2879       smtp_printf("554 SMTP service not available\r\n", FALSE);
2880     return FALSE;
2881     }
2882
2883   /* Test with TCP Wrappers if so configured. There is a problem in that
2884   hosts_ctl() returns 0 (deny) under a number of system failure circumstances,
2885   such as disks dying. In these cases, it is desirable to reject with a 4xx
2886   error instead of a 5xx error. There isn't a "right" way to detect such
2887   problems. The following kludge is used: errno is zeroed before calling
2888   hosts_ctl(). If the result is "reject", a 5xx error is given only if the
2889   value of errno is 0 or ENOENT (which happens if /etc/hosts.{allow,deny} does
2890   not exist). */
2891
2892 #ifdef USE_TCP_WRAPPERS
2893   errno = 0;
2894   if (!(tcp_wrappers_name = expand_string(tcp_wrappers_daemon_name)))
2895     log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" "
2896       "(tcp_wrappers_name) failed: %s", string_printing(tcp_wrappers_name),
2897         expand_string_message);
2898
2899   if (!hosts_ctl(tcp_wrappers_name,
2900          sender_host_name ? CS sender_host_name : STRING_UNKNOWN,
2901          sender_host_address ? CS sender_host_address : STRING_UNKNOWN,
2902          sender_ident ? CS sender_ident : STRING_UNKNOWN))
2903     {
2904     if (errno == 0 || errno == ENOENT)
2905       {
2906       HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
2907       log_write(L_connection_reject,
2908                 LOG_MAIN|LOG_REJECT, "refused connection from %s "
2909                 "(tcp wrappers)", host_and_ident(FALSE));
2910       smtp_printf("554 SMTP service not available\r\n", FALSE);
2911       }
2912     else
2913       {
2914       int save_errno = errno;
2915       HDEBUG(D_receive) debug_printf("tcp wrappers rejected with unexpected "
2916         "errno value %d\n", save_errno);
2917       log_write(L_connection_reject,
2918                 LOG_MAIN|LOG_REJECT, "temporarily refused connection from %s "
2919                 "(tcp wrappers errno=%d)", host_and_ident(FALSE), save_errno);
2920       smtp_printf("451 Temporary local problem - please try later\r\n", FALSE);
2921       }
2922     return FALSE;
2923     }
2924 #endif
2925
2926   /* Check for reserved slots. The value of smtp_accept_count has already been
2927   incremented to include this process. */
2928
2929   if (smtp_accept_max > 0 &&
2930       smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
2931     {
2932     if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2933       {
2934       log_write(L_connection_reject,
2935         LOG_MAIN, "temporarily refused connection from %s: not in "
2936         "reserve list: connected=%d max=%d reserve=%d%s",
2937         host_and_ident(FALSE), smtp_accept_count - 1, smtp_accept_max,
2938         smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
2939       smtp_printf("421 %s: Too many concurrent SMTP connections; "
2940         "please try again later\r\n", FALSE, smtp_active_hostname);
2941       return FALSE;
2942       }
2943     reserved_host = TRUE;
2944     }
2945
2946   /* If a load level above which only messages from reserved hosts are
2947   accepted is set, check the load. For incoming calls via the daemon, the
2948   check is done in the superior process if there are no reserved hosts, to
2949   save a fork. In all cases, the load average will already be available
2950   in a global variable at this point. */
2951
2952   if (smtp_load_reserve >= 0 &&
2953        load_average > smtp_load_reserve &&
2954        !reserved_host &&
2955        verify_check_host(&smtp_reserve_hosts) != OK)
2956     {
2957     log_write(L_connection_reject,
2958       LOG_MAIN, "temporarily refused connection from %s: not in "
2959       "reserve list and load average = %.2f", host_and_ident(FALSE),
2960       (double)load_average/1000.0);
2961     smtp_printf("421 %s: Too much load; please try again later\r\n", FALSE,
2962       smtp_active_hostname);
2963     return FALSE;
2964     }
2965
2966   /* Determine whether unqualified senders or recipients are permitted
2967   for this host. Unfortunately, we have to do this every time, in order to
2968   set the flags so that they can be inspected when considering qualifying
2969   addresses in the headers. For a site that permits no qualification, this
2970   won't take long, however. */
2971
2972   f.allow_unqualified_sender =
2973     verify_check_host(&sender_unqualified_hosts) == OK;
2974
2975   f.allow_unqualified_recipient =
2976     verify_check_host(&recipient_unqualified_hosts) == OK;
2977
2978   /* Determine whether HELO/EHLO is required for this host. The requirement
2979   can be hard or soft. */
2980
2981   fl.helo_verify_required = verify_check_host(&helo_verify_hosts) == OK;
2982   if (!fl.helo_verify_required)
2983     fl.helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
2984
2985   /* Determine whether this hosts is permitted to send syntactic junk
2986   after a HELO or EHLO command. */
2987
2988   fl.helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
2989   }
2990
2991 /* For batch SMTP input we are now done. */
2992
2993 if (smtp_batched_input) return TRUE;
2994
2995 /* If valid Proxy Protocol source is connecting, set up session.
2996 Failure will not allow any SMTP function other than QUIT. */
2997
2998 #ifdef SUPPORT_PROXY
2999 proxy_session = FALSE;
3000 f.proxy_session_failed = FALSE;
3001 if (check_proxy_protocol_host())
3002   setup_proxy_protocol_host();
3003 #endif
3004
3005 /* Run the connect ACL if it exists */
3006
3007 user_msg = NULL;
3008 if (acl_smtp_connect)
3009   {
3010   int rc;
3011   if ((rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
3012                       &log_msg)) != OK)
3013     {
3014 #ifndef DISABLE_TLS
3015     if (tls_in.on_connect)
3016       log_connect_tls_drop(US"'connect' ACL", log_msg);
3017     else
3018 #endif
3019       (void) smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
3020     return FALSE;
3021     }
3022   }
3023
3024 /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
3025 smtps port for use with older style SSL MTAs. */
3026
3027 #ifndef DISABLE_TLS
3028 if (tls_in.on_connect)
3029   {
3030   if (tls_server_start(&user_msg) != OK)
3031     return smtp_log_tls_fail(user_msg);
3032   cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
3033   }
3034 #endif
3035
3036 /* Output the initial message for a two-way SMTP connection. It may contain
3037 newlines, which then cause a multi-line response to be given. */
3038
3039 code = US"220";   /* Default status code */
3040 esc = US"";       /* Default extended status code */
3041 esclen = 0;       /* Length of esc */
3042
3043 if (!user_msg)
3044   {
3045   if (!(s = expand_string(smtp_banner)))
3046     log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" (smtp_banner) "
3047       "failed: %s", smtp_banner, expand_string_message);
3048   }
3049 else
3050   {
3051   int codelen = 3;
3052   s = user_msg;
3053   smtp_message_code(&code, &codelen, &s, NULL, TRUE);
3054   if (codelen > 4)
3055     {
3056     esc = code + 4;
3057     esclen = codelen - 4;
3058     }
3059   }
3060
3061 /* Remove any terminating newlines; might as well remove trailing space too */
3062
3063 p = s + Ustrlen(s);
3064 while (p > s && isspace(p[-1])) p--;
3065 s = string_copyn(s, p-s);
3066
3067 /* It seems that CC:Mail is braindead, and assumes that the greeting message
3068 is all contained in a single IP packet. The original code wrote out the
3069 greeting using several calls to fprint/fputc, and on busy servers this could
3070 cause it to be split over more than one packet - which caused CC:Mail to fall
3071 over when it got the second part of the greeting after sending its first
3072 command. Sigh. To try to avoid this, build the complete greeting message
3073 first, and output it in one fell swoop. This gives a better chance of it
3074 ending up as a single packet. */
3075
3076 ss = string_get(256);
3077
3078 p = s;
3079 do       /* At least once, in case we have an empty string */
3080   {
3081   int len;
3082   uschar *linebreak = Ustrchr(p, '\n');
3083   ss = string_catn(ss, code, 3);
3084   if (!linebreak)
3085     {
3086     len = Ustrlen(p);
3087     ss = string_catn(ss, US" ", 1);
3088     }
3089   else
3090     {
3091     len = linebreak - p;
3092     ss = string_catn(ss, US"-", 1);
3093     }
3094   ss = string_catn(ss, esc, esclen);
3095   ss = string_catn(ss, p, len);
3096   ss = string_catn(ss, US"\r\n", 2);
3097   p += len;
3098   if (linebreak) p++;
3099   }
3100 while (*p);
3101
3102 /* Before we write the banner, check that there is no input pending, unless
3103 this synchronisation check is disabled. */
3104
3105 #ifndef DISABLE_PIPE_CONNECT
3106 fl.pipe_connect_acceptable =
3107   sender_host_address && verify_check_host(&pipe_connect_advertise_hosts) == OK;
3108
3109 if (!check_sync())
3110   if (fl.pipe_connect_acceptable)
3111     f.smtp_in_early_pipe_used = TRUE;
3112   else
3113 #else
3114 if (!check_sync())
3115 #endif
3116     {
3117     unsigned n = smtp_inend - smtp_inptr;
3118     if (n > 128) n = 128;
3119
3120     log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol "
3121       "synchronization error (input sent without waiting for greeting): "
3122       "rejected connection from %s input=\"%s\"", host_and_ident(TRUE),
3123       string_printing(string_copyn(smtp_inptr, n)));
3124     smtp_printf("554 SMTP synchronization error\r\n", FALSE);
3125     return FALSE;
3126     }
3127
3128 /* Now output the banner */
3129 /*XXX the ehlo-resp code does its own tls/nontls bit.  Maybe subroutine that? */
3130
3131 smtp_printf("%s",
3132 #ifndef DISABLE_PIPE_CONNECT
3133   fl.pipe_connect_acceptable && pipeline_connect_sends(),
3134 #else
3135   FALSE,
3136 #endif
3137   string_from_gstring(ss));
3138
3139 /* Attempt to see if we sent the banner before the last ACK of the 3-way
3140 handshake arrived.  If so we must have managed a TFO. */
3141
3142 #ifdef TCP_FASTOPEN
3143 if (sender_host_address && !f.sender_host_notsocket) tfo_in_check();
3144 #endif
3145
3146 return TRUE;
3147 }
3148
3149
3150
3151
3152
3153 /*************************************************
3154 *     Handle SMTP syntax and protocol errors     *
3155 *************************************************/
3156
3157 /* Write to the log for SMTP syntax errors in incoming commands, if configured
3158 to do so. Then transmit the error response. The return value depends on the
3159 number of syntax and protocol errors in this SMTP session.
3160
3161 Arguments:
3162   type      error type, given as a log flag bit
3163   code      response code; <= 0 means don't send a response
3164   data      data to reflect in the response (can be NULL)
3165   errmess   the error message
3166
3167 Returns:    -1   limit of syntax/protocol errors NOT exceeded
3168             +1   limit of syntax/protocol errors IS exceeded
3169
3170 These values fit in with the values of the "done" variable in the main
3171 processing loop in smtp_setup_msg(). */
3172
3173 static int
3174 synprot_error(int type, int code, uschar *data, uschar *errmess)
3175 {
3176 int yield = -1;
3177
3178 log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
3179   type == L_smtp_syntax_error ? "syntax" : "protocol",
3180   string_printing(smtp_cmd_buffer), host_and_ident(TRUE), errmess);
3181
3182 if (++synprot_error_count > smtp_max_synprot_errors)
3183   {
3184   yield = 1;
3185   log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3186     "syntax or protocol errors (last command was \"%s\", %s)",
3187     host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
3188     string_from_gstring(s_connhad_log(NULL))
3189     );
3190   }
3191
3192 if (code > 0)
3193   {
3194   smtp_printf("%d%c%s%s%s\r\n", FALSE, code, yield == 1 ? '-' : ' ',
3195     data ? data : US"", data ? US": " : US"", errmess);
3196   if (yield == 1)
3197     smtp_printf("%d Too many syntax or protocol errors\r\n", FALSE, code);
3198   }
3199
3200 return yield;
3201 }
3202
3203
3204
3205
3206 /*************************************************
3207 *    Send SMTP response, possibly multiline      *
3208 *************************************************/
3209
3210 /* There are, it seems, broken clients out there that cannot handle multiline
3211 responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
3212 output nothing for non-final calls, and only the first line for anything else.
3213
3214 Arguments:
3215   code          SMTP code, may involve extended status codes
3216   codelen       length of smtp code; if > 4 there's an ESC
3217   final         FALSE if the last line isn't the final line
3218   msg           message text, possibly containing newlines
3219
3220 Returns:        nothing
3221 */
3222
3223 void
3224 smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
3225 {
3226 int esclen = 0;
3227 uschar *esc = US"";
3228
3229 if (!final && f.no_multiline_responses) return;
3230
3231 if (codelen > 4)
3232   {
3233   esc = code + 4;
3234   esclen = codelen - 4;
3235   }
3236
3237 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
3238 have had the same. Note: this code is also present in smtp_printf(). It would
3239 be tidier to have it only in one place, but when it was added, it was easier to
3240 do it that way, so as not to have to mess with the code for the RCPT command,
3241 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
3242
3243 if (fl.rcpt_in_progress)
3244   {
3245   if (!rcpt_smtp_response)
3246     rcpt_smtp_response = string_copy(msg);
3247   else if (fl.rcpt_smtp_response_same &&
3248            Ustrcmp(rcpt_smtp_response, msg) != 0)
3249     fl.rcpt_smtp_response_same = FALSE;
3250   fl.rcpt_in_progress = FALSE;
3251   }
3252
3253 /* Now output the message, splitting it up into multiple lines if necessary.
3254 We only handle pipelining these responses as far as nonfinal/final groups,
3255 not the whole MAIL/RCPT/DATA response set. */
3256
3257 for (;;)
3258   {
3259   uschar *nl = Ustrchr(msg, '\n');
3260   if (!nl)
3261     {
3262     smtp_printf("%.3s%c%.*s%s\r\n", !final, code, final ? ' ':'-', esclen, esc, msg);
3263     return;
3264     }
3265   else if (nl[1] == 0 || f.no_multiline_responses)
3266     {
3267     smtp_printf("%.3s%c%.*s%.*s\r\n", !final, code, final ? ' ':'-', esclen, esc,
3268       (int)(nl - msg), msg);
3269     return;
3270     }
3271   else
3272     {
3273     smtp_printf("%.3s-%.*s%.*s\r\n", TRUE, code, esclen, esc, (int)(nl - msg), msg);
3274     msg = nl + 1;
3275     Uskip_whitespace(&msg);
3276     }
3277   }
3278 }
3279
3280
3281
3282
3283 /*************************************************
3284 *            Parse user SMTP message             *
3285 *************************************************/
3286
3287 /* This function allows for user messages overriding the response code details
3288 by providing a suitable response code string at the start of the message
3289 user_msg. Check the message for starting with a response code and optionally an
3290 extended status code. If found, check that the first digit is valid, and if so,
3291 change the code pointer and length to use the replacement. An invalid code
3292 causes a panic log; in this case, if the log messages is the same as the user
3293 message, we must also adjust the value of the log message to show the code that
3294 is actually going to be used (the original one).
3295
3296 This function is global because it is called from receive.c as well as within
3297 this module.
3298
3299 Note that the code length returned includes the terminating whitespace
3300 character, which is always included in the regex match.
3301
3302 Arguments:
3303   code          SMTP code, may involve extended status codes
3304   codelen       length of smtp code; if > 4 there's an ESC
3305   msg           message text
3306   log_msg       optional log message, to be adjusted with the new SMTP code
3307   check_valid   if true, verify the response code
3308
3309 Returns:        nothing
3310 */
3311
3312 void
3313 smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg,
3314   BOOL check_valid)
3315 {
3316 uschar * match;
3317 int len;
3318
3319 if (!msg || !*msg || !regex_match(regex_smtp_code, *msg, -1, &match))
3320   return;
3321
3322 len = Ustrlen(match);
3323 if (check_valid && (*msg)[0] != (*code)[0])
3324   {
3325   log_write(0, LOG_MAIN|LOG_PANIC, "configured error code starts with "
3326     "incorrect digit (expected %c) in \"%s\"", (*code)[0], *msg);
3327   if (log_msg && *log_msg == *msg)
3328     *log_msg = string_sprintf("%s %s", *code, *log_msg + len);
3329   }
3330 else
3331   {
3332   *code = *msg;
3333   *codelen = len;    /* Includes final space */
3334   }
3335 *msg += len;         /* Chop the code off the message */
3336 return;
3337 }
3338
3339
3340
3341
3342 /*************************************************
3343 *           Handle an ACL failure                *
3344 *************************************************/
3345
3346 /* This function is called when acl_check() fails. As well as calls from within
3347 this module, it is called from receive.c for an ACL after DATA. It sorts out
3348 logging the incident, and sends the error response. A message containing
3349 newlines is turned into a multiline SMTP response, but for logging, only the
3350 first line is used.
3351
3352 There's a table of default permanent failure response codes to use in
3353 globals.c, along with the table of names. VFRY is special. Despite RFC1123 it
3354 defaults disabled in Exim. However, discussion in connection with RFC 821bis
3355 (aka RFC 2821) has concluded that the response should be 252 in the disabled
3356 state, because there are broken clients that try VRFY before RCPT. A 5xx
3357 response should be given only when the address is positively known to be
3358 undeliverable. Sigh. We return 252 if there is no VRFY ACL or it provides
3359 no explicit code, but if there is one we let it know best.
3360 Also, for ETRN, 458 is given on refusal, and for AUTH, 503.
3361
3362 From Exim 4.63, it is possible to override the response code details by
3363 providing a suitable response code string at the start of the message provided
3364 in user_msg. The code's first digit is checked for validity.
3365
3366 Arguments:
3367   where        where the ACL was called from
3368   rc           the failure code
3369   user_msg     a message that can be included in an SMTP response
3370   log_msg      a message for logging
3371
3372 Returns:     0 in most cases
3373              2 if the failure code was FAIL_DROP, in which case the
3374                SMTP connection should be dropped (this value fits with the
3375                "done" variable in smtp_setup_msg() below)
3376 */
3377
3378 int
3379 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
3380 {
3381 BOOL drop = rc == FAIL_DROP;
3382 int codelen = 3;
3383 uschar *smtp_code;
3384 uschar *lognl;
3385 uschar *sender_info = US"";
3386 uschar *what;
3387
3388 if (drop) rc = FAIL;
3389
3390 /* Set the default SMTP code, and allow a user message to change it. */
3391
3392 smtp_code = rc == FAIL ? acl_wherecodes[where] : US"451";
3393 smtp_message_code(&smtp_code, &codelen, &user_msg, &log_msg,
3394   where != ACL_WHERE_VRFY);
3395
3396 /* We used to have sender_address here; however, there was a bug that was not
3397 updating sender_address after a rewrite during a verify. When this bug was
3398 fixed, sender_address at this point became the rewritten address. I'm not sure
3399 this is what should be logged, so I've changed to logging the unrewritten
3400 address to retain backward compatibility. */
3401
3402 switch (where)
3403   {
3404 #ifdef WITH_CONTENT_SCAN
3405   case ACL_WHERE_MIME:          what = US"during MIME ACL checks";      break;
3406 #endif
3407   case ACL_WHERE_PREDATA:       what = US"DATA";                        break;
3408   case ACL_WHERE_DATA:          what = US"after DATA";                  break;
3409 #ifndef DISABLE_PRDR
3410   case ACL_WHERE_PRDR:          what = US"after DATA PRDR";             break;
3411 #endif
3412   default:
3413     {
3414     uschar * place = smtp_cmd_data ? smtp_cmd_data : US"in \"connect\" ACL";
3415     int lim = 100;
3416
3417     if (where == ACL_WHERE_AUTH)        /* avoid logging auth creds */
3418       {
3419       uschar * s;
3420       for (s = smtp_cmd_data; *s && !isspace(*s); ) s++;
3421       lim = s - smtp_cmd_data;  /* atop after method */
3422       }
3423     what = string_sprintf("%s %.*s", acl_wherenames[where], lim, place);
3424     }
3425   }
3426 switch (where)
3427   {
3428   case ACL_WHERE_RCPT:
3429   case ACL_WHERE_DATA:
3430 #ifdef WITH_CONTENT_SCAN
3431   case ACL_WHERE_MIME:
3432 #endif
3433     sender_info = string_sprintf("F=<%s>%s%s%s%s ",
3434       sender_address_unrewritten ? sender_address_unrewritten : sender_address,
3435       sender_host_authenticated ? US" A="                                    : US"",
3436       sender_host_authenticated ? sender_host_authenticated                  : US"",
3437       sender_host_authenticated && authenticated_id ? US":"                  : US"",
3438       sender_host_authenticated && authenticated_id ? authenticated_id       : US""
3439       );
3440   break;
3441   }
3442
3443 /* If there's been a sender verification failure with a specific message, and
3444 we have not sent a response about it yet, do so now, as a preliminary line for
3445 failures, but not defers. However, always log it for defer, and log it for fail
3446 unless the sender_verify_fail log selector has been turned off. */
3447
3448 if (sender_verified_failed &&
3449     !testflag(sender_verified_failed, af_sverify_told))
3450   {
3451   BOOL save_rcpt_in_progress = fl.rcpt_in_progress;
3452   fl.rcpt_in_progress = FALSE;  /* So as not to treat these as the error */
3453
3454   setflag(sender_verified_failed, af_sverify_told);
3455
3456   if (rc != FAIL || LOGGING(sender_verify_fail))
3457     log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
3458       host_and_ident(TRUE),
3459       ((sender_verified_failed->special_action & 255) == DEFER)? "defer":"fail",
3460       sender_verified_failed->address,
3461       (sender_verified_failed->message == NULL)? US"" :
3462       string_sprintf(": %s", sender_verified_failed->message));
3463
3464   if (rc == FAIL && sender_verified_failed->user_message)
3465     smtp_respond(smtp_code, codelen, FALSE, string_sprintf(
3466         testflag(sender_verified_failed, af_verify_pmfail)?
3467           "Postmaster verification failed while checking <%s>\n%s\n"
3468           "Several RFCs state that you are required to have a postmaster\n"
3469           "mailbox for each mail domain. This host does not accept mail\n"
3470           "from domains whose servers reject the postmaster address."
3471           :
3472         testflag(sender_verified_failed, af_verify_nsfail)?
3473           "Callback setup failed while verifying <%s>\n%s\n"
3474           "The initial connection, or a HELO or MAIL FROM:<> command was\n"
3475           "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
3476           "RFC requirements, and stops you from receiving standard bounce\n"
3477           "messages. This host does not accept mail from domains whose servers\n"
3478           "refuse bounces."
3479           :
3480           "Verification failed for <%s>\n%s",
3481         sender_verified_failed->address,
3482         sender_verified_failed->user_message));
3483
3484   fl.rcpt_in_progress = save_rcpt_in_progress;
3485   }
3486
3487 /* Sort out text for logging */
3488
3489 log_msg = log_msg ? string_sprintf(": %s", log_msg) : US"";
3490 if ((lognl = Ustrchr(log_msg, '\n'))) *lognl = 0;
3491
3492 /* Send permanent failure response to the command, but the code used isn't
3493 always a 5xx one - see comments at the start of this function. If the original
3494 rc was FAIL_DROP we drop the connection and yield 2. */
3495
3496 if (rc == FAIL)
3497   smtp_respond(smtp_code, codelen, TRUE,
3498     user_msg ? user_msg : US"Administrative prohibition");
3499
3500 /* Send temporary failure response to the command. Don't give any details,
3501 unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
3502 verb, and for a header verify when smtp_return_error_details is set.
3503
3504 This conditional logic is all somewhat of a mess because of the odd
3505 interactions between temp_details and return_error_details. One day it should
3506 be re-implemented in a tidier fashion. */
3507
3508 else
3509   if (f.acl_temp_details && user_msg)
3510     {
3511     if (  smtp_return_error_details
3512        && sender_verified_failed
3513        && sender_verified_failed->message
3514        )
3515       smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
3516
3517     smtp_respond(smtp_code, codelen, TRUE, user_msg);
3518     }
3519   else
3520     smtp_respond(smtp_code, codelen, TRUE,
3521       US"Temporary local problem - please try later");
3522
3523 /* Log the incident to the logs that are specified by log_reject_target
3524 (default main, reject). This can be empty to suppress logging of rejections. If
3525 the connection is not forcibly to be dropped, return 0. Otherwise, log why it
3526 is closing if required and return 2.  */
3527
3528 if (log_reject_target != 0)
3529   {
3530 #ifndef DISABLE_TLS
3531   gstring * g = s_tlslog(NULL);
3532   uschar * tls = string_from_gstring(g);
3533   if (!tls) tls = US"";
3534 #else
3535   uschar * tls = US"";
3536 #endif
3537   log_write(where == ACL_WHERE_CONNECT ? L_connection_reject : 0,
3538     log_reject_target, "%s%s%s %s%srejected %s%s",
3539     LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
3540     host_and_ident(TRUE),
3541     tls,
3542     sender_info,
3543     rc == FAIL ? US"" : US"temporarily ",
3544     what, log_msg);
3545   }
3546
3547 if (!drop) return 0;
3548
3549 log_write(L_smtp_connection, LOG_MAIN, "%s closed by DROP in ACL",
3550   smtp_get_connection_info());
3551
3552 /* Run the not-quit ACL, but without any custom messages. This should not be a
3553 problem, because we get here only if some other ACL has issued "drop", and
3554 in that case, *its* custom messages will have been used above. */
3555
3556 smtp_notquit_exit(US"acl-drop", NULL, NULL);
3557 return 2;
3558 }
3559
3560
3561
3562
3563 /*************************************************
3564 *     Handle SMTP exit when QUIT is not given    *
3565 *************************************************/
3566
3567 /* This function provides a logging/statistics hook for when an SMTP connection
3568 is dropped on the floor or the other end goes away. It's a global function
3569 because it's called from receive.c as well as this module. As well as running
3570 the NOTQUIT ACL, if there is one, this function also outputs a final SMTP
3571 response, either with a custom message from the ACL, or using a default. There
3572 is one case, however, when no message is output - after "drop". In that case,
3573 the ACL that obeyed "drop" has already supplied the custom message, and NULL is
3574 passed to this function.
3575
3576 In case things go wrong while processing this function, causing an error that
3577 may re-enter this function, there is a recursion check.
3578
3579 Arguments:
3580   reason          What $smtp_notquit_reason will be set to in the ACL;
3581                     if NULL, the ACL is not run
3582   code            The error code to return as part of the response
3583   defaultrespond  The default message if there's no user_msg
3584
3585 Returns:          Nothing
3586 */
3587
3588 void
3589 smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
3590 {
3591 int rc;
3592 uschar *user_msg = NULL;
3593 uschar *log_msg = NULL;
3594
3595 /* Check for recursive call */
3596
3597 if (fl.smtp_exit_function_called)
3598   {
3599   log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
3600     reason);
3601   return;
3602   }
3603 fl.smtp_exit_function_called = TRUE;
3604
3605 /* Call the not-QUIT ACL, if there is one, unless no reason is given. */
3606
3607 if (acl_smtp_notquit && reason)
3608   {
3609   smtp_notquit_reason = reason;
3610   if ((rc = acl_check(ACL_WHERE_NOTQUIT, NULL, acl_smtp_notquit, &user_msg,
3611                       &log_msg)) == ERROR)
3612     log_write(0, LOG_MAIN|LOG_PANIC, "ACL for not-QUIT returned ERROR: %s",
3613       log_msg);
3614   }
3615
3616 /* If the connection was dropped, we certainly are no longer talking TLS */
3617 tls_in.active.sock = -1;
3618
3619 /* Write an SMTP response if we are expected to give one. As the default
3620 responses are all internal, they should be reasonable size. */
3621
3622 if (code && defaultrespond)
3623   {
3624   if (user_msg)
3625     smtp_respond(code, 3, TRUE, user_msg);
3626   else
3627     {
3628     gstring * g;
3629     va_list ap;
3630
3631     va_start(ap, defaultrespond);
3632     g = string_vformat(NULL, SVFMT_EXTEND|SVFMT_REBUFFER, CS defaultrespond, ap);
3633     va_end(ap);
3634     smtp_printf("%s %s\r\n", FALSE, code, string_from_gstring(g));
3635     }
3636   mac_smtp_fflush();
3637   }
3638 }
3639
3640
3641
3642
3643 /*************************************************
3644 *             Verify HELO argument               *
3645 *************************************************/
3646
3647 /* This function is called if helo_verify_hosts or helo_try_verify_hosts is
3648 matched. It is also called from ACL processing if verify = helo is used and
3649 verification was not previously tried (i.e. helo_try_verify_hosts was not
3650 matched). The result of its processing is to set helo_verified and
3651 helo_verify_failed. These variables should both be FALSE for this function to
3652 be called.
3653
3654 Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
3655 for IPv6 ::ffff: literals.
3656
3657 Argument:   none
3658 Returns:    TRUE if testing was completed;
3659             FALSE on a temporary failure
3660 */
3661
3662 BOOL
3663 smtp_verify_helo(void)
3664 {
3665 BOOL yield = TRUE;
3666
3667 HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
3668   sender_helo_name);
3669
3670 if (sender_helo_name == NULL)
3671   {
3672   HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
3673   }
3674
3675 /* Deal with the case of -bs without an IP address */
3676
3677 else if (sender_host_address == NULL)
3678   {
3679   HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
3680   f.helo_verified = TRUE;
3681   }
3682
3683 /* Deal with the more common case when there is a sending IP address */
3684
3685 else if (sender_helo_name[0] == '[')
3686   {
3687   f.helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
3688     Ustrlen(sender_host_address)) == 0;
3689
3690 #if HAVE_IPV6
3691   if (!f.helo_verified)
3692     {
3693     if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
3694       f.helo_verified = Ustrncmp(sender_helo_name + 1,
3695         sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
3696     }
3697 #endif
3698
3699   HDEBUG(D_receive)
3700     { if (f.helo_verified) debug_printf("matched host address\n"); }
3701   }
3702
3703 /* Do a reverse lookup if one hasn't already given a positive or negative
3704 response. If that fails, or the name doesn't match, try checking with a forward
3705 lookup. */
3706
3707 else
3708   {
3709   if (sender_host_name == NULL && !host_lookup_failed)
3710     yield = host_name_lookup() != DEFER;
3711
3712   /* If a host name is known, check it and all its aliases. */
3713
3714   if (sender_host_name)
3715     if ((f.helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0))
3716       {
3717       sender_helo_dnssec = sender_host_dnssec;
3718       HDEBUG(D_receive) debug_printf("matched host name\n");
3719       }
3720     else
3721       {
3722       uschar **aliases = sender_host_aliases;
3723       while (*aliases)
3724         if ((f.helo_verified = strcmpic(*aliases++, sender_helo_name) == 0))
3725           {
3726           sender_helo_dnssec = sender_host_dnssec;
3727           break;
3728           }
3729
3730       HDEBUG(D_receive) if (f.helo_verified)
3731           debug_printf("matched alias %s\n", *(--aliases));
3732       }
3733
3734   /* Final attempt: try a forward lookup of the helo name */
3735
3736   if (!f.helo_verified)
3737     {
3738     int rc;
3739     host_item h =
3740       {.name = sender_helo_name, .address = NULL, .mx = MX_NONE, .next = NULL};
3741     dnssec_domains d =
3742       {.request = US"*", .require = US""};
3743
3744     HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3745       sender_helo_name);
3746     rc = host_find_bydns(&h, NULL, HOST_FIND_BY_A | HOST_FIND_BY_AAAA,
3747                           NULL, NULL, NULL, &d, NULL, NULL);
3748     if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3749       for (host_item * hh = &h; hh; hh = hh->next)
3750         if (Ustrcmp(hh->address, sender_host_address) == 0)
3751           {
3752           f.helo_verified = TRUE;
3753           if (h.dnssec == DS_YES) sender_helo_dnssec = TRUE;
3754           HDEBUG(D_receive)
3755             debug_printf("IP address for %s matches calling address\n"
3756               "Forward DNS security status: %sverified\n",
3757               sender_helo_name, sender_helo_dnssec ? "" : "un");
3758           break;
3759           }
3760     }
3761   }
3762
3763 if (!f.helo_verified) f.helo_verify_failed = TRUE;  /* We've tried ... */
3764 return yield;
3765 }
3766
3767
3768
3769
3770 /*************************************************
3771 *        Send user response message              *
3772 *************************************************/
3773
3774 /* This function is passed a default response code and a user message. It calls
3775 smtp_message_code() to check and possibly modify the response code, and then
3776 calls smtp_respond() to transmit the response. I put this into a function
3777 just to avoid a lot of repetition.
3778
3779 Arguments:
3780   code         the response code
3781   user_msg     the user message
3782
3783 Returns:       nothing
3784 */
3785
3786 static void
3787 smtp_user_msg(uschar *code, uschar *user_msg)
3788 {
3789 int len = 3;
3790 smtp_message_code(&code, &len, &user_msg, NULL, TRUE);
3791 smtp_respond(code, len, TRUE, user_msg);
3792 }
3793
3794
3795
3796 static int
3797 smtp_in_auth(auth_instance *au, uschar ** smtp_resp, uschar ** errmsg)
3798 {
3799 const uschar *set_id = NULL;
3800 int rc;
3801
3802 /* Set up globals for error messages */
3803
3804 authenticator_name = au->name;
3805 driver_srcfile = au->srcfile;
3806 driver_srcline = au->srcline;
3807
3808 /* Run the checking code, passing the remainder of the command line as
3809 data. Initials the $auth<n> variables as empty. Initialize $0 empty and set
3810 it as the only set numerical variable. The authenticator may set $auth<n>
3811 and also set other numeric variables. The $auth<n> variables are preferred
3812 nowadays; the numerical variables remain for backwards compatibility.
3813
3814 Afterwards, have a go at expanding the set_id string, even if
3815 authentication failed - for bad passwords it can be useful to log the
3816 userid. On success, require set_id to expand and exist, and put it in
3817 authenticated_id. Save this in permanent store, as the working store gets
3818 reset at HELO, RSET, etc. */
3819
3820 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
3821 expand_nmax = 0;
3822 expand_nlength[0] = 0;   /* $0 contains nothing */
3823
3824 rc = (au->info->servercode)(au, smtp_cmd_data);
3825 if (au->set_id) set_id = expand_string(au->set_id);
3826 expand_nmax = -1;        /* Reset numeric variables */
3827 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;   /* Reset $auth<n> */
3828 driver_srcfile = authenticator_name = NULL; driver_srcline = 0;
3829
3830 /* The value of authenticated_id is stored in the spool file and printed in
3831 log lines. It must not contain binary zeros or newline characters. In
3832 normal use, it never will, but when playing around or testing, this error
3833 can (did) happen. To guard against this, ensure that the id contains only
3834 printing characters. */
3835
3836 if (set_id) set_id = string_printing(set_id);
3837
3838 /* For the non-OK cases, set up additional logging data if set_id
3839 is not empty. */
3840
3841 if (rc != OK)
3842   set_id = set_id && *set_id
3843     ? string_sprintf(" (set_id=%s)", set_id) : US"";
3844
3845 /* Switch on the result */
3846
3847 switch(rc)
3848   {
3849   case OK:
3850     if (!au->set_id || set_id)    /* Complete success */
3851       {
3852       if (set_id) authenticated_id = string_copy_perm(set_id, TRUE);
3853       sender_host_authenticated = au->name;
3854       sender_host_auth_pubname  = au->public_name;
3855       authentication_failed = FALSE;
3856       authenticated_fail_id = NULL;   /* Impossible to already be set? */
3857
3858       received_protocol =
3859         (sender_host_address ? protocols : protocols_local)
3860           [pextend + pauthed + (tls_in.active.sock >= 0 ? pcrpted:0)];
3861       *smtp_resp = *errmsg = US"235 Authentication succeeded";
3862       authenticated_by = au;
3863       break;
3864       }
3865
3866     /* Authentication succeeded, but we failed to expand the set_id string.
3867     Treat this as a temporary error. */
3868
3869     auth_defer_msg = expand_string_message;
3870     /* Fall through */
3871
3872   case DEFER:
3873     if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3874     *smtp_resp = string_sprintf("435 Unable to authenticate at present%s",
3875       auth_defer_user_msg);
3876     *errmsg = string_sprintf("435 Unable to authenticate at present%s: %s",
3877       set_id, auth_defer_msg);
3878     break;
3879
3880   case BAD64:
3881     *smtp_resp = *errmsg = US"501 Invalid base64 data";
3882     break;
3883
3884   case CANCELLED:
3885     *smtp_resp = *errmsg = US"501 Authentication cancelled";
3886     break;
3887
3888   case UNEXPECTED:
3889     *smtp_resp = *errmsg = US"553 Initial data not expected";
3890     break;
3891
3892   case FAIL:
3893     if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3894     *smtp_resp = US"535 Incorrect authentication data";
3895     *errmsg = string_sprintf("535 Incorrect authentication data%s", set_id);
3896     break;
3897
3898   default:
3899     if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3900     *smtp_resp = US"435 Internal error";
3901     *errmsg = string_sprintf("435 Internal error%s: return %d from authentication "
3902       "check", set_id, rc);
3903     break;
3904   }
3905
3906 return rc;
3907 }
3908
3909
3910
3911
3912
3913 static int
3914 qualify_recipient(uschar ** recipient, uschar * smtp_cmd_data, uschar * tag)
3915 {
3916 int rd;
3917 if (f.allow_unqualified_recipient || strcmpic(*recipient, US"postmaster") == 0)
3918   {
3919   DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
3920     *recipient);
3921   rd = Ustrlen(recipient) + 1;
3922   /* deconst ok as *recipient was not const */
3923   *recipient = US rewrite_address_qualify(*recipient, TRUE);
3924   return rd;
3925   }
3926 smtp_printf("501 %s: recipient address must contain a domain\r\n", FALSE,
3927   smtp_cmd_data);
3928 log_write(L_smtp_syntax_error,
3929   LOG_MAIN|LOG_REJECT, "unqualified %s rejected: <%s> %s%s",
3930   tag, *recipient, host_and_ident(TRUE), host_lookup_msg);
3931 return 0;
3932 }
3933
3934
3935
3936
3937 static void
3938 smtp_quit_handler(uschar ** user_msgp, uschar ** log_msgp)
3939 {
3940 HAD(SCH_QUIT);
3941 f.smtp_in_quit = TRUE;
3942 incomplete_transaction_log(US"QUIT");
3943 if (  acl_smtp_quit
3944    && acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, user_msgp, log_msgp)
3945         == ERROR)
3946     log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
3947       *log_msgp);
3948
3949 #ifdef EXIM_TCP_CORK
3950 (void) setsockopt(fileno(smtp_out), IPPROTO_TCP, EXIM_TCP_CORK, US &on, sizeof(on));
3951 #endif
3952
3953 if (*user_msgp)
3954   smtp_respond(US"221", 3, TRUE, *user_msgp);
3955 else
3956   smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
3957
3958 #ifdef SERVERSIDE_CLOSE_NOWAIT
3959 # ifndef DISABLE_TLS
3960 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
3961 # endif
3962
3963 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
3964   smtp_get_connection_info());
3965 #else
3966
3967 # ifndef DISABLE_TLS
3968 tls_close(NULL, TLS_SHUTDOWN_WAIT);
3969 # endif
3970
3971 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
3972   smtp_get_connection_info());
3973
3974 /* Pause, hoping client will FIN first so that they get the TIME_WAIT.
3975 The socket should become readble (though with no data) */
3976
3977 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
3978 #endif  /*!SERVERSIDE_CLOSE_NOWAIT*/
3979 }
3980
3981
3982 static void
3983 smtp_rset_handler(void)
3984 {
3985 HAD(SCH_RSET);
3986 incomplete_transaction_log(US"RSET");
3987 smtp_printf("250 Reset OK\r\n", FALSE);
3988 cmd_list[CMD_LIST_RSET].is_mail_cmd = FALSE;
3989 if (chunking_state > CHUNKING_OFFERED)
3990   chunking_state = CHUNKING_OFFERED;
3991 }
3992
3993
3994 static int
3995 expand_mailmax(const uschar * s)
3996 {
3997 if (!(s = expand_cstring(s)))
3998   log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand smtp_accept_max_per_connection");
3999 return *s ? Uatoi(s) : 0;
4000 }
4001
4002 /*************************************************
4003 *       Initialize for SMTP incoming message     *
4004 *************************************************/
4005
4006 /* This function conducts the initial dialogue at the start of an incoming SMTP
4007 message, and builds a list of recipients. However, if the incoming message
4008 is part of a batch (-bS option) a separate function is called since it would
4009 be messy having tests splattered about all over this function. This function
4010 therefore handles the case where interaction is occurring. The input and output
4011 files are set up in smtp_in and smtp_out.
4012
4013 The global recipients_list is set to point to a vector of recipient_item
4014 blocks, whose number is given by recipients_count. This is extended by the
4015 receive_add_recipient() function. The global variable sender_address is set to
4016 the sender's address. The yield is +1 if a message has been successfully
4017 started, 0 if a QUIT command was encountered or the connection was refused from
4018 the particular host, or -1 if the connection was lost.
4019
4020 Argument: none
4021
4022 Returns:  > 0 message successfully started (reached DATA)
4023           = 0 QUIT read or end of file reached or call refused
4024           < 0 lost connection
4025 */
4026
4027 int
4028 smtp_setup_msg(void)
4029 {
4030 int done = 0;
4031 BOOL toomany = FALSE;
4032 BOOL discarded = FALSE;
4033 BOOL last_was_rej_mail = FALSE;
4034 BOOL last_was_rcpt = FALSE;
4035 rmark reset_point = store_mark();
4036
4037 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
4038
4039 /* Reset for start of new message. We allow one RSET not to be counted as a
4040 nonmail command, for those MTAs that insist on sending it between every
4041 message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
4042 TLS between messages (an Exim client may do this if it has messages queued up
4043 for the host). Note: we do NOT reset AUTH at this point. */
4044
4045 reset_point = smtp_reset(reset_point);
4046 message_ended = END_NOTSTARTED;
4047
4048 chunking_state = f.chunking_offered ? CHUNKING_OFFERED : CHUNKING_NOT_OFFERED;
4049
4050 cmd_list[CMD_LIST_RSET].is_mail_cmd = TRUE;
4051 cmd_list[CMD_LIST_HELO].is_mail_cmd = TRUE;
4052 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
4053 #ifndef DISABLE_TLS
4054 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
4055 #endif
4056
4057 if (lwr_receive_getc != NULL)
4058   {
4059   /* This should have already happened, but if we've gotten confused,
4060   force a reset here. */
4061   DEBUG(D_receive) debug_printf("WARNING: smtp_setup_msg had to restore receive functions to lowers\n");
4062   bdat_pop_receive_functions();
4063   }
4064
4065 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
4066
4067 had_command_sigterm = 0;
4068 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
4069
4070 /* Batched SMTP is handled in a different function. */
4071
4072 if (smtp_batched_input) return smtp_setup_batch_msg();
4073
4074 #ifdef TCP_QUICKACK
4075 if (smtp_in)            /* Avoid pure-ACKs while in cmd pingpong phase */
4076   (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
4077           US &off, sizeof(off));
4078 #endif
4079
4080 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
4081 value. The values are 2 larger than the required yield of the function. */
4082
4083 while (done <= 0)
4084   {
4085   const uschar **argv;
4086   uschar *etrn_command;
4087   uschar *etrn_serialize_key;
4088   uschar *errmess;
4089   uschar *log_msg, *smtp_code;
4090   uschar *user_msg = NULL;
4091   uschar *recipient = NULL;
4092   uschar *hello = NULL;
4093   uschar *s, *ss;
4094   BOOL was_rej_mail = FALSE;
4095   BOOL was_rcpt = FALSE;
4096   void (*oldsignal)(int);
4097   pid_t pid;
4098   int start, end, sender_domain, recipient_domain;
4099   int rc;
4100   int c;
4101   uschar *orcpt = NULL;
4102   int dsn_flags;
4103   gstring * g;
4104
4105 #ifdef AUTH_TLS
4106   /* Check once per STARTTLS or SSL-on-connect for a TLS AUTH */
4107   if (  tls_in.active.sock >= 0
4108      && tls_in.peercert
4109      && tls_in.certificate_verified
4110      && cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd
4111      )
4112     {
4113     cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = FALSE;
4114
4115     for (auth_instance * au = auths; au; au = au->next)
4116       if (strcmpic(US"tls", au->driver_name) == 0)
4117         {
4118         if (  acl_smtp_auth
4119            && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4120                       &user_msg, &log_msg)) != OK
4121            )
4122           done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4123         else
4124           {
4125           smtp_cmd_data = NULL;
4126
4127           if (smtp_in_auth(au, &s, &ss) == OK)
4128             { DEBUG(D_auth) debug_printf("tls auth succeeded\n"); }
4129           else
4130             {
4131             DEBUG(D_auth) debug_printf("tls auth not succeeded\n");
4132 #ifndef DISABLE_EVENT
4133              {
4134               uschar * save_name = sender_host_authenticated, * logmsg;
4135               sender_host_authenticated = au->name;
4136               if ((logmsg = event_raise(event_action, US"auth:fail", s, NULL)))
4137                 log_write(0, LOG_MAIN, "%s", logmsg);
4138               sender_host_authenticated = save_name;
4139              }
4140 #endif
4141             }
4142           }
4143         break;
4144         }
4145     }
4146 #endif
4147
4148   switch(smtp_read_command(
4149 #ifndef DISABLE_PIPE_CONNECT
4150           !fl.pipe_connect_acceptable,
4151 #else
4152           TRUE,
4153 #endif
4154           GETC_BUFFER_UNLIMITED))
4155     {
4156     /* The AUTH command is not permitted to occur inside a transaction, and may
4157     occur successfully only once per connection. Actually, that isn't quite
4158     true. When TLS is started, all previous information about a connection must
4159     be discarded, so a new AUTH is permitted at that time.
4160
4161     AUTH may only be used when it has been advertised. However, it seems that
4162     there are clients that send AUTH when it hasn't been advertised, some of
4163     them even doing this after HELO. And there are MTAs that accept this. Sigh.
4164     So there's a get-out that allows this to happen.
4165
4166     AUTH is initially labelled as a "nonmail command" so that one occurrence
4167     doesn't get counted. We change the label here so that multiple failing
4168     AUTHS will eventually hit the nonmail threshold. */
4169
4170     case AUTH_CMD:
4171       HAD(SCH_AUTH);
4172       authentication_failed = TRUE;
4173       cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
4174
4175       if (!fl.auth_advertised && !f.allow_auth_unadvertised)
4176         {
4177         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4178           US"AUTH command used when not advertised");
4179         break;
4180         }
4181       if (sender_host_authenticated)
4182         {
4183         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4184           US"already authenticated");
4185         break;
4186         }
4187       if (sender_address)
4188         {
4189         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4190           US"not permitted in mail transaction");
4191         break;
4192         }
4193
4194       /* Check the ACL */
4195
4196       if (  acl_smtp_auth
4197          && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4198                     &user_msg, &log_msg)) != OK
4199          )
4200         {
4201         done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4202         break;
4203         }
4204
4205       /* Find the name of the requested authentication mechanism. */
4206
4207       s = smtp_cmd_data;
4208       for (; (c = *smtp_cmd_data) && !isspace(c); smtp_cmd_data++)
4209         if (!isalnum(c) && c != '-' && c != '_')
4210           {
4211           done = synprot_error(L_smtp_syntax_error, 501, NULL,
4212             US"invalid character in authentication mechanism name");
4213           goto COMMAND_LOOP;
4214           }
4215
4216       /* If not at the end of the line, we must be at white space. Terminate the
4217       name and move the pointer on to any data that may be present. */
4218
4219       if (*smtp_cmd_data)
4220         {
4221         *smtp_cmd_data++ = 0;
4222         while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
4223         }
4224
4225       /* Search for an authentication mechanism which is configured for use
4226       as a server and which has been advertised (unless, sigh, allow_auth_
4227       unadvertised is set). */
4228
4229         {
4230         auth_instance * au;
4231         uschar * smtp_resp, * errmsg;
4232
4233         for (au = auths; au; au = au->next)
4234           if (strcmpic(s, au->public_name) == 0 && au->server &&
4235               (au->advertised || f.allow_auth_unadvertised))
4236             break;
4237
4238         if (au)
4239           {
4240           int rc = smtp_in_auth(au, &smtp_resp, &errmsg);
4241
4242           smtp_printf("%s\r\n", FALSE, smtp_resp);
4243           if (rc != OK)
4244             {
4245             uschar * logmsg = NULL;
4246 #ifndef DISABLE_EVENT
4247              {uschar * save_name = sender_host_authenticated;
4248               sender_host_authenticated = au->name;
4249               logmsg = event_raise(event_action, US"auth:fail", smtp_resp, NULL);
4250               sender_host_authenticated = save_name;
4251              }
4252 #endif
4253             if (logmsg)
4254               log_write(0, LOG_MAIN|LOG_REJECT, "%s", logmsg);
4255             else
4256               log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
4257                 au->name, host_and_ident(FALSE), errmsg);
4258             }
4259           }
4260         else
4261           done = synprot_error(L_smtp_protocol_error, 504, NULL,
4262             string_sprintf("%s authentication mechanism not supported", s));
4263         }
4264
4265       break;  /* AUTH_CMD */
4266
4267     /* The HELO/EHLO commands are permitted to appear in the middle of a
4268     session as well as at the beginning. They have the effect of a reset in
4269     addition to their other functions. Their absence at the start cannot be
4270     taken to be an error.
4271
4272     RFC 2821 says:
4273
4274       If the EHLO command is not acceptable to the SMTP server, 501, 500,
4275       or 502 failure replies MUST be returned as appropriate.  The SMTP
4276       server MUST stay in the same state after transmitting these replies
4277       that it was in before the EHLO was received.
4278
4279     Therefore, we do not do the reset until after checking the command for
4280     acceptability. This change was made for Exim release 4.11. Previously
4281     it did the reset first. */
4282
4283     case HELO_CMD:
4284       HAD(SCH_HELO);
4285       hello = US"HELO";
4286       fl.esmtp = FALSE;
4287       goto HELO_EHLO;
4288
4289     case EHLO_CMD:
4290       HAD(SCH_EHLO);
4291       hello = US"EHLO";
4292       fl.esmtp = TRUE;
4293
4294     HELO_EHLO:      /* Common code for HELO and EHLO */
4295       cmd_list[CMD_LIST_HELO].is_mail_cmd = FALSE;
4296       cmd_list[CMD_LIST_EHLO].is_mail_cmd = FALSE;
4297
4298       /* Reject the HELO if its argument was invalid or non-existent. A
4299       successful check causes the argument to be saved in malloc store. */
4300
4301       if (!check_helo(smtp_cmd_data))
4302         {
4303         smtp_printf("501 Syntactically invalid %s argument(s)\r\n", FALSE, hello);
4304
4305         log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
4306           "invalid argument(s): %s", hello, host_and_ident(FALSE),
4307           *smtp_cmd_argument == 0 ? US"(no argument given)" :
4308                              string_printing(smtp_cmd_argument));
4309
4310         if (++synprot_error_count > smtp_max_synprot_errors)
4311           {
4312           log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
4313             "syntax or protocol errors (last command was \"%s\", %s)",
4314             host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
4315             string_from_gstring(s_connhad_log(NULL))
4316             );
4317           done = 1;
4318           }
4319
4320         break;
4321         }
4322
4323       /* If sender_host_unknown is true, we have got here via the -bs interface,
4324       not called from inetd. Otherwise, we are running an IP connection and the
4325       host address will be set. If the helo name is the primary name of this
4326       host and we haven't done a reverse lookup, force one now. If helo_verify_required
4327       is set, ensure that the HELO name matches the actual host. If helo_verify
4328       is set, do the same check, but softly. */
4329
4330       if (!f.sender_host_unknown)
4331         {
4332         BOOL old_helo_verified = f.helo_verified;
4333         uschar *p = smtp_cmd_data;
4334
4335         while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
4336         *p = 0;
4337
4338         /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
4339         because otherwise the log can be confusing. */
4340
4341         if (  !sender_host_name
4342            && match_isinlist(sender_helo_name, CUSS &helo_lookup_domains, 0,
4343                 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL) == OK)
4344           (void)host_name_lookup();
4345
4346         /* Rebuild the fullhost info to include the HELO name (and the real name
4347         if it was looked up.) */
4348
4349         host_build_sender_fullhost();  /* Rebuild */
4350         set_process_info("handling%s incoming connection from %s",
4351           tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE));
4352
4353         /* Verify if configured. This doesn't give much security, but it does
4354         make some people happy to be able to do it. If helo_verify_required is set,
4355         (host matches helo_verify_hosts) failure forces rejection. If helo_verify
4356         is set (host matches helo_try_verify_hosts), it does not. This is perhaps
4357         now obsolescent, since the verification can now be requested selectively
4358         at ACL time. */
4359
4360         f.helo_verified = f.helo_verify_failed = sender_helo_dnssec = FALSE;
4361         if (fl.helo_verify_required || fl.helo_verify)
4362           {
4363           BOOL tempfail = !smtp_verify_helo();
4364           if (!f.helo_verified)
4365             {
4366             if (fl.helo_verify_required)
4367               {
4368               smtp_printf("%d %s argument does not match calling host\r\n", FALSE,
4369                 tempfail? 451 : 550, hello);
4370               log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
4371                 tempfail? "temporarily " : "",
4372                 hello, sender_helo_name, host_and_ident(FALSE));
4373               f.helo_verified = old_helo_verified;
4374               break;                   /* End of HELO/EHLO processing */
4375               }
4376             HDEBUG(D_all) debug_printf("%s verification failed but host is in "
4377               "helo_try_verify_hosts\n", hello);
4378             }
4379           }
4380         }
4381
4382 #ifdef SUPPORT_SPF
4383       /* set up SPF context */
4384       spf_conn_init(sender_helo_name, sender_host_address);
4385 #endif
4386
4387       /* Apply an ACL check if one is defined; afterwards, recheck
4388       synchronization in case the client started sending in a delay. */
4389
4390       if (acl_smtp_helo)
4391         if ((rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo,
4392                   &user_msg, &log_msg)) != OK)
4393           {
4394           done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
4395           sender_helo_name = NULL;
4396           host_build_sender_fullhost();  /* Rebuild */
4397           break;
4398           }
4399 #ifndef DISABLE_PIPE_CONNECT
4400         else if (!fl.pipe_connect_acceptable && !check_sync())
4401 #else
4402         else if (!check_sync())
4403 #endif
4404           goto SYNC_FAILURE;
4405
4406       /* Generate an OK reply. The default string includes the ident if present,
4407       and also the IP address if present. Reflecting back the ident is intended
4408       as a deterrent to mail forgers. For maximum efficiency, and also because
4409       some broken systems expect each response to be in a single packet, arrange
4410       that the entire reply is sent in one write(). */
4411
4412       fl.auth_advertised = FALSE;
4413       f.smtp_in_pipelining_advertised = FALSE;
4414 #ifndef DISABLE_TLS
4415       fl.tls_advertised = FALSE;
4416 #endif
4417       fl.dsn_advertised = FALSE;
4418 #ifdef SUPPORT_I18N
4419       fl.smtputf8_advertised = FALSE;
4420 #endif
4421
4422       /* Expand the per-connection message count limit option */
4423       smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4424
4425       smtp_code = US"250 ";        /* Default response code plus space*/
4426       if (!user_msg)
4427         {
4428         /* sender_host_name below will be tainted, so save on copy when we hit it */
4429         g = string_get_tainted(24, GET_TAINTED);
4430         g = string_fmt_append(g, "%.3s %s Hello %s%s%s",
4431           smtp_code,
4432           smtp_active_hostname,
4433           sender_ident ? sender_ident : US"",
4434           sender_ident ? US" at " : US"",
4435           sender_host_name ? sender_host_name : sender_helo_name);
4436
4437         if (sender_host_address)
4438           g = string_fmt_append(g, " [%s]", sender_host_address);
4439         }
4440
4441       /* A user-supplied EHLO greeting may not contain more than one line. Note
4442       that the code returned by smtp_message_code() includes the terminating
4443       whitespace character. */
4444
4445       else
4446         {
4447         char * ss;
4448         int codelen = 4;
4449         smtp_message_code(&smtp_code, &codelen, &user_msg, NULL, TRUE);
4450         s = string_sprintf("%.*s%s", codelen, smtp_code, user_msg);
4451         if ((ss = strpbrk(CS s, "\r\n")) != NULL)
4452           {
4453           log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
4454             "newlines: message truncated: %s", string_printing(s));
4455           *ss = 0;
4456           }
4457         g = string_cat(NULL, s);
4458         }
4459
4460       g = string_catn(g, US"\r\n", 2);
4461
4462       /* If we received EHLO, we must create a multiline response which includes
4463       the functions supported. */
4464
4465       if (fl.esmtp)
4466         {
4467         g->s[3] = '-';
4468
4469         /* I'm not entirely happy with this, as an MTA is supposed to check
4470         that it has enough room to accept a message of maximum size before
4471         it sends this. However, there seems little point in not sending it.
4472         The actual size check happens later at MAIL FROM time. By postponing it
4473         till then, VRFY and EXPN can be used after EHLO when space is short. */
4474
4475         if (thismessage_size_limit > 0)
4476           g = string_fmt_append(g, "%.3s-SIZE %d\r\n", smtp_code,
4477             thismessage_size_limit);
4478         else
4479           {
4480           g = string_catn(g, smtp_code, 3);
4481           g = string_catn(g, US"-SIZE\r\n", 7);
4482           }
4483
4484 #ifdef EXPERIMENTAL_ESMTP_LIMITS
4485         if (  (smtp_mailcmd_max > 0 || recipients_max)
4486            && verify_check_host(&limits_advertise_hosts) == OK)
4487           {
4488           g = string_fmt_append(g, "%.3s-LIMITS", smtp_code);
4489           if (smtp_mailcmd_max > 0)
4490             g = string_fmt_append(g, " MAILMAX=%d", smtp_mailcmd_max);
4491           if (recipients_max)
4492             g = string_fmt_append(g, " RCPTMAX=%d", recipients_max);
4493           g = string_catn(g, US"\r\n", 2);
4494           }
4495 #endif
4496
4497         /* Exim does not do protocol conversion or data conversion. It is 8-bit
4498         clean; if it has an 8-bit character in its hand, it just sends it. It
4499         cannot therefore specify 8BITMIME and remain consistent with the RFCs.
4500         However, some users want this option simply in order to stop MUAs
4501         mangling messages that contain top-bit-set characters. It is therefore
4502         provided as an option. */
4503
4504         if (accept_8bitmime)
4505           {
4506           g = string_catn(g, smtp_code, 3);
4507           g = string_catn(g, US"-8BITMIME\r\n", 11);
4508           }
4509
4510         /* Advertise DSN support if configured to do so. */
4511         if (verify_check_host(&dsn_advertise_hosts) != FAIL)
4512           {
4513           g = string_catn(g, smtp_code, 3);
4514           g = string_catn(g, US"-DSN\r\n", 6);
4515           fl.dsn_advertised = TRUE;
4516           }
4517
4518         /* Advertise ETRN/VRFY/EXPN if there's are ACL checking whether a host is
4519         permitted to issue them; a check is made when any host actually tries. */
4520
4521         if (acl_smtp_etrn)
4522           {
4523           g = string_catn(g, smtp_code, 3);
4524           g = string_catn(g, US"-ETRN\r\n", 7);
4525           }
4526         if (acl_smtp_vrfy)
4527           {
4528           g = string_catn(g, smtp_code, 3);
4529           g = string_catn(g, US"-VRFY\r\n", 7);
4530           }
4531         if (acl_smtp_expn)
4532           {
4533           g = string_catn(g, smtp_code, 3);
4534           g = string_catn(g, US"-EXPN\r\n", 7);
4535           }
4536
4537         /* Exim is quite happy with pipelining, so let the other end know that
4538         it is safe to use it, unless advertising is disabled. */
4539
4540         if (  f.pipelining_enable
4541            && verify_check_host(&pipelining_advertise_hosts) == OK)
4542           {
4543           g = string_catn(g, smtp_code, 3);
4544           g = string_catn(g, US"-PIPELINING\r\n", 13);
4545           sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
4546           f.smtp_in_pipelining_advertised = TRUE;
4547
4548 #ifndef DISABLE_PIPE_CONNECT
4549           if (fl.pipe_connect_acceptable)
4550             {
4551             f.smtp_in_early_pipe_advertised = TRUE;
4552             g = string_catn(g, smtp_code, 3);
4553             g = string_catn(g, US"-" EARLY_PIPE_FEATURE_NAME "\r\n", EARLY_PIPE_FEATURE_LEN+3);
4554             }
4555 #endif
4556           }
4557
4558
4559         /* If any server authentication mechanisms are configured, advertise
4560         them if the current host is in auth_advertise_hosts. The problem with
4561         advertising always is that some clients then require users to
4562         authenticate (and aren't configurable otherwise) even though it may not
4563         be necessary (e.g. if the host is in host_accept_relay).
4564
4565         RFC 2222 states that SASL mechanism names contain only upper case
4566         letters, so output the names in upper case, though we actually recognize
4567         them in either case in the AUTH command. */
4568
4569         if (  auths
4570 #ifdef AUTH_TLS
4571            && !sender_host_authenticated
4572 #endif
4573            && verify_check_host(&auth_advertise_hosts) == OK
4574            )
4575           {
4576           BOOL first = TRUE;
4577           for (auth_instance * au = auths; au; au = au->next)
4578             {
4579             au->advertised = FALSE;
4580             if (au->server)
4581               {
4582               DEBUG(D_auth+D_expand) debug_printf_indent(
4583                 "Evaluating advertise_condition for %s %s athenticator\n",
4584                 au->name, au->public_name);
4585               if (  !au->advertise_condition
4586                  || expand_check_condition(au->advertise_condition, au->name,
4587                         US"authenticator")
4588                  )
4589                 {
4590                 int saveptr;
4591                 if (first)
4592                   {
4593                   g = string_catn(g, smtp_code, 3);
4594                   g = string_catn(g, US"-AUTH", 5);
4595                   first = FALSE;
4596                   fl.auth_advertised = TRUE;
4597                   }
4598                 saveptr = g->ptr;
4599                 g = string_catn(g, US" ", 1);
4600                 g = string_cat (g, au->public_name);
4601                 while (++saveptr < g->ptr) g->s[saveptr] = toupper(g->s[saveptr]);
4602                 au->advertised = TRUE;
4603                 }
4604               }
4605             }
4606
4607           if (!first) g = string_catn(g, US"\r\n", 2);
4608           }
4609
4610         /* RFC 3030 CHUNKING */
4611
4612         if (verify_check_host(&chunking_advertise_hosts) != FAIL)
4613           {
4614           g = string_catn(g, smtp_code, 3);
4615           g = string_catn(g, US"-CHUNKING\r\n", 11);
4616           f.chunking_offered = TRUE;
4617           chunking_state = CHUNKING_OFFERED;
4618           }
4619
4620         /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
4621         if it has been included in the binary, and the host matches
4622         tls_advertise_hosts. We must *not* advertise if we are already in a
4623         secure connection. */
4624
4625 #ifndef DISABLE_TLS
4626         if (tls_in.active.sock < 0 &&
4627             verify_check_host(&tls_advertise_hosts) != FAIL)
4628           {
4629           g = string_catn(g, smtp_code, 3);
4630           g = string_catn(g, US"-STARTTLS\r\n", 11);
4631           fl.tls_advertised = TRUE;
4632           }
4633 #endif
4634
4635 #ifndef DISABLE_PRDR
4636         /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
4637         if (prdr_enable)
4638           {
4639           g = string_catn(g, smtp_code, 3);
4640           g = string_catn(g, US"-PRDR\r\n", 7);
4641           }
4642 #endif
4643
4644 #ifdef SUPPORT_I18N
4645         if (  accept_8bitmime
4646            && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
4647           {
4648           g = string_catn(g, smtp_code, 3);
4649           g = string_catn(g, US"-SMTPUTF8\r\n", 11);
4650           fl.smtputf8_advertised = TRUE;
4651           }
4652 #endif
4653
4654         /* Finish off the multiline reply with one that is always available. */
4655
4656         g = string_catn(g, smtp_code, 3);
4657         g = string_catn(g, US" HELP\r\n", 7);
4658         }
4659
4660       /* Terminate the string (for debug), write it, and note that HELO/EHLO
4661       has been seen. */
4662
4663 #ifndef DISABLE_TLS
4664       if (tls_in.active.sock >= 0)
4665         (void)tls_write(NULL, g->s, g->ptr,
4666 # ifndef DISABLE_PIPE_CONNECT
4667                         fl.pipe_connect_acceptable && pipeline_connect_sends());
4668 # else
4669                         FALSE);
4670 # endif
4671       else
4672 #endif
4673         (void) fwrite(g->s, 1, g->ptr, smtp_out);
4674
4675       DEBUG(D_receive) for (const uschar * t, * s = string_from_gstring(g);
4676                             s && (t = Ustrchr(s, '\r'));
4677                             s = t + 2)                          /* \r\n */
4678           debug_printf("%s %.*s\n",
4679                         s == g->s ? "SMTP>>" : "      ",
4680                         (int)(t - s), s);
4681       fl.helo_seen = TRUE;
4682
4683       /* Reset the protocol and the state, abandoning any previous message. */
4684       received_protocol =
4685         (sender_host_address ? protocols : protocols_local)
4686           [ (fl.esmtp
4687             ? pextend + (sender_host_authenticated ? pauthed : 0)
4688             : pnormal)
4689           + (tls_in.active.sock >= 0 ? pcrpted : 0)
4690           ];
4691       cancel_cutthrough_connection(TRUE, US"sent EHLO response");
4692       reset_point = smtp_reset(reset_point);
4693       toomany = FALSE;
4694       break;   /* HELO/EHLO */
4695
4696
4697     /* The MAIL command requires an address as an operand. All we do
4698     here is to parse it for syntactic correctness. The form "<>" is
4699     a special case which converts into an empty string. The start/end
4700     pointers in the original are not used further for this address, as
4701     it is the canonical extracted address which is all that is kept. */
4702
4703     case MAIL_CMD:
4704       HAD(SCH_MAIL);
4705       smtp_mailcmd_count++;              /* Count for limit and ratelimit */
4706       message_start();
4707       was_rej_mail = TRUE;               /* Reset if accepted */
4708       env_mail_type_t * mail_args;       /* Sanity check & validate args */
4709
4710       if (!fl.helo_seen)
4711         if (  fl.helo_verify_required
4712            || verify_check_host(&hosts_require_helo) == OK)
4713           {
4714           smtp_printf("503 HELO or EHLO required\r\n", FALSE);
4715           log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
4716             "HELO/EHLO given", host_and_ident(FALSE));
4717           break;
4718           }
4719         else if (smtp_mailcmd_max < 0)
4720           smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4721
4722       if (sender_address)
4723         {
4724         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4725           US"sender already given");
4726         break;
4727         }
4728
4729       if (!*smtp_cmd_data)
4730         {
4731         done = synprot_error(L_smtp_protocol_error, 501, NULL,
4732           US"MAIL must have an address operand");
4733         break;
4734         }
4735
4736       /* Check to see if the limit for messages per connection would be
4737       exceeded by accepting further messages. */
4738
4739       if (smtp_mailcmd_max > 0 && smtp_mailcmd_count > smtp_mailcmd_max)
4740         {
4741         smtp_printf("421 too many messages in this connection\r\n", FALSE);
4742         log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
4743           "messages in one connection", host_and_ident(TRUE));
4744         break;
4745         }
4746
4747       /* Reset for start of message - even if this is going to fail, we
4748       obviously need to throw away any previous data. */
4749
4750       cancel_cutthrough_connection(TRUE, US"MAIL received");
4751       reset_point = smtp_reset(reset_point);
4752       toomany = FALSE;
4753       sender_data = recipient_data = NULL;
4754
4755       /* Loop, checking for ESMTP additions to the MAIL FROM command. */
4756
4757       if (fl.esmtp) for(;;)
4758         {
4759         uschar *name, *value, *end;
4760         unsigned long int size;
4761         BOOL arg_error = FALSE;
4762
4763         if (!extract_option(&name, &value)) break;
4764
4765         for (mail_args = env_mail_type_list;
4766              mail_args->value != ENV_MAIL_OPT_NULL;
4767              mail_args++
4768             )
4769           if (strcmpic(name, mail_args->name) == 0)
4770             break;
4771         if (mail_args->need_value && strcmpic(value, US"") == 0)
4772           break;
4773
4774         switch(mail_args->value)
4775           {
4776           /* Handle SIZE= by reading the value. We don't do the check till later,
4777           in order to be able to log the sender address on failure. */
4778           case ENV_MAIL_OPT_SIZE:
4779             if (((size = Ustrtoul(value, &end, 10)), *end == 0))
4780               {
4781               if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
4782                 size = INT_MAX;
4783               message_size = (int)size;
4784               }
4785             else
4786               arg_error = TRUE;
4787             break;
4788
4789           /* If this session was initiated with EHLO and accept_8bitmime is set,
4790           Exim will have indicated that it supports the BODY=8BITMIME option. In
4791           fact, it does not support this according to the RFCs, in that it does not
4792           take any special action for forwarding messages containing 8-bit
4793           characters. That is why accept_8bitmime is not the default setting, but
4794           some sites want the action that is provided. We recognize both "8BITMIME"
4795           and "7BIT" as body types, but take no action. */
4796           case ENV_MAIL_OPT_BODY:
4797             if (accept_8bitmime) {
4798               if (strcmpic(value, US"8BITMIME") == 0)
4799                 body_8bitmime = 8;
4800               else if (strcmpic(value, US"7BIT") == 0)
4801                 body_8bitmime = 7;
4802               else
4803                 {
4804                 body_8bitmime = 0;
4805                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4806                   US"invalid data for BODY");
4807                 goto COMMAND_LOOP;
4808                 }
4809               DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
4810               break;
4811             }
4812             arg_error = TRUE;
4813             break;
4814
4815           /* Handle the two DSN options, but only if configured to do so (which
4816           will have caused "DSN" to be given in the EHLO response). The code itself
4817           is included only if configured in at build time. */
4818
4819           case ENV_MAIL_OPT_RET:
4820             if (fl.dsn_advertised)
4821               {
4822               /* Check if RET has already been set */
4823               if (dsn_ret > 0)
4824                 {
4825                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4826                   US"RET can be specified once only");
4827                 goto COMMAND_LOOP;
4828                 }
4829               dsn_ret = strcmpic(value, US"HDRS") == 0
4830                 ? dsn_ret_hdrs
4831                 : strcmpic(value, US"FULL") == 0
4832                 ? dsn_ret_full
4833                 : 0;
4834               DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
4835               /* Check for invalid invalid value, and exit with error */
4836               if (dsn_ret == 0)
4837                 {
4838                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4839                   US"Value for RET is invalid");
4840                 goto COMMAND_LOOP;
4841                 }
4842               }
4843             break;
4844           case ENV_MAIL_OPT_ENVID:
4845             if (fl.dsn_advertised)
4846               {
4847               /* Check if the dsn envid has been already set */
4848               if (dsn_envid)
4849                 {
4850                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4851                   US"ENVID can be specified once only");
4852                 goto COMMAND_LOOP;
4853                 }
4854               dsn_envid = string_copy(value);
4855               DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
4856               }
4857             break;
4858
4859           /* Handle the AUTH extension. If the value given is not "<>" and either
4860           the ACL says "yes" or there is no ACL but the sending host is
4861           authenticated, we set it up as the authenticated sender. However, if the
4862           authenticator set a condition to be tested, we ignore AUTH on MAIL unless
4863           the condition is met. The value of AUTH is an xtext, which means that +,
4864           = and cntrl chars are coded in hex; however "<>" is unaffected by this
4865           coding. */
4866           case ENV_MAIL_OPT_AUTH:
4867             if (Ustrcmp(value, "<>") != 0)
4868               {
4869               int rc;
4870               uschar *ignore_msg;
4871
4872               if (auth_xtextdecode(value, &authenticated_sender) < 0)
4873                 {
4874                 /* Put back terminator overrides for error message */
4875                 value[-1] = '=';
4876                 name[-1] = ' ';
4877                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4878                   US"invalid data for AUTH");
4879                 goto COMMAND_LOOP;
4880                 }
4881               if (!acl_smtp_mailauth)
4882                 {
4883                 ignore_msg = US"client not authenticated";
4884                 rc = sender_host_authenticated ? OK : FAIL;
4885                 }
4886               else
4887                 {
4888                 ignore_msg = US"rejected by ACL";
4889                 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
4890                   &user_msg, &log_msg);
4891                 }
4892
4893               switch (rc)
4894                 {
4895                 case OK:
4896                   if (authenticated_by == NULL ||
4897                       authenticated_by->mail_auth_condition == NULL ||
4898                       expand_check_condition(authenticated_by->mail_auth_condition,
4899                           authenticated_by->name, US"authenticator"))
4900                     break;     /* Accept the AUTH */
4901
4902                   ignore_msg = US"server_mail_auth_condition failed";
4903                   if (authenticated_id != NULL)
4904                     ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
4905                       ignore_msg, authenticated_id);
4906
4907                 /* Fall through */
4908
4909                 case FAIL:
4910                   authenticated_sender = NULL;
4911                   log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
4912                     value, host_and_ident(TRUE), ignore_msg);
4913                   break;
4914
4915                 /* Should only get DEFER or ERROR here. Put back terminator
4916                 overrides for error message */
4917
4918                 default:
4919                   value[-1] = '=';
4920                   name[-1] = ' ';
4921                   (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
4922                     log_msg);
4923                   goto COMMAND_LOOP;
4924                 }
4925               }
4926               break;
4927
4928 #ifndef DISABLE_PRDR
4929           case ENV_MAIL_OPT_PRDR:
4930             if (prdr_enable)
4931               prdr_requested = TRUE;
4932             break;
4933 #endif
4934
4935 #ifdef SUPPORT_I18N
4936           case ENV_MAIL_OPT_UTF8:
4937             if (!fl.smtputf8_advertised)
4938               {
4939               done = synprot_error(L_smtp_syntax_error, 501, NULL,
4940                 US"SMTPUTF8 used when not advertised");
4941               goto COMMAND_LOOP;
4942               }
4943
4944             DEBUG(D_receive) debug_printf("smtputf8 requested\n");
4945             message_smtputf8 = allow_utf8_domains = TRUE;
4946             if (Ustrncmp(received_protocol, US"utf8", 4) != 0)
4947               {
4948               int old_pool = store_pool;
4949               store_pool = POOL_PERM;
4950               received_protocol = string_sprintf("utf8%s", received_protocol);
4951               store_pool = old_pool;
4952               }
4953             break;
4954 #endif
4955
4956           /* No valid option. Stick back the terminator characters and break
4957           the loop.  Do the name-terminator second as extract_option sets
4958           value==name when it found no equal-sign.
4959           An error for a malformed address will occur. */
4960           case ENV_MAIL_OPT_NULL:
4961             value[-1] = '=';
4962             name[-1] = ' ';
4963             arg_error = TRUE;
4964             break;
4965
4966           default:  assert(0);
4967           }
4968         /* Break out of for loop if switch() had bad argument or
4969            when start of the email address is reached */
4970         if (arg_error) break;
4971         }
4972
4973       /* If we have passed the threshold for rate limiting, apply the current
4974       delay, and update it for next time, provided this is a limited host. */
4975
4976       if (smtp_mailcmd_count > smtp_rlm_threshold &&
4977           verify_check_host(&smtp_ratelimit_hosts) == OK)
4978         {
4979         DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
4980           smtp_delay_mail/1000.0);
4981         millisleep((int)smtp_delay_mail);
4982         smtp_delay_mail *= smtp_rlm_factor;
4983         if (smtp_delay_mail > (double)smtp_rlm_limit)
4984           smtp_delay_mail = (double)smtp_rlm_limit;
4985         }
4986
4987       /* Now extract the address, first applying any SMTP-time rewriting. The
4988       TRUE flag allows "<>" as a sender address. */
4989
4990       raw_sender = rewrite_existflags & rewrite_smtp
4991         /* deconst ok as smtp_cmd_data was not const */
4992         ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4993                       global_rewrite_rules)
4994         : smtp_cmd_data;
4995
4996       raw_sender =
4997         parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
4998           TRUE);
4999
5000       if (!raw_sender)
5001         {
5002         done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5003         break;
5004         }
5005
5006       sender_address = raw_sender;
5007
5008       /* If there is a configured size limit for mail, check that this message
5009       doesn't exceed it. The check is postponed to this point so that the sender
5010       can be logged. */
5011
5012       if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
5013         {
5014         smtp_printf("552 Message size exceeds maximum permitted\r\n", FALSE);
5015         log_write(L_size_reject,
5016             LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
5017             "message too big: size%s=%d max=%d",
5018             sender_address,
5019             host_and_ident(TRUE),
5020             (message_size == INT_MAX)? ">" : "",
5021             message_size,
5022             thismessage_size_limit);
5023         sender_address = NULL;
5024         break;
5025         }
5026
5027       /* Check there is enough space on the disk unless configured not to.
5028       When smtp_check_spool_space is set, the check is for thismessage_size_limit
5029       plus the current message - i.e. we accept the message only if it won't
5030       reduce the space below the threshold. Add 5000 to the size to allow for
5031       overheads such as the Received: line and storing of recipients, etc.
5032       By putting the check here, even when SIZE is not given, it allow VRFY
5033       and EXPN etc. to be used when space is short. */
5034
5035       if (!receive_check_fs(
5036            smtp_check_spool_space && message_size >= 0
5037               ? message_size + 5000 : 0))
5038         {
5039         smtp_printf("452 Space shortage, please try later\r\n", FALSE);
5040         sender_address = NULL;
5041         break;
5042         }
5043
5044       /* If sender_address is unqualified, reject it, unless this is a locally
5045       generated message, or the sending host or net is permitted to send
5046       unqualified addresses - typically local machines behaving as MUAs -
5047       in which case just qualify the address. The flag is set above at the start
5048       of the SMTP connection. */
5049
5050       if (!sender_domain && *sender_address)
5051         if (f.allow_unqualified_sender)
5052           {
5053           sender_domain = Ustrlen(sender_address) + 1;
5054           /* deconst ok as sender_address was not const */
5055           sender_address = US rewrite_address_qualify(sender_address, FALSE);
5056           DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
5057             raw_sender);
5058           }
5059         else
5060           {
5061           smtp_printf("501 %s: sender address must contain a domain\r\n", FALSE,
5062             smtp_cmd_data);
5063           log_write(L_smtp_syntax_error,
5064             LOG_MAIN|LOG_REJECT,
5065             "unqualified sender rejected: <%s> %s%s",
5066             raw_sender,
5067             host_and_ident(TRUE),
5068             host_lookup_msg);
5069           sender_address = NULL;
5070           break;
5071           }
5072
5073       /* Apply an ACL check if one is defined, before responding. Afterwards,
5074       when pipelining is not advertised, do another sync check in case the ACL
5075       delayed and the client started sending in the meantime. */
5076
5077       if (acl_smtp_mail)
5078         {
5079         rc = acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
5080         if (rc == OK && !f.smtp_in_pipelining_advertised && !check_sync())
5081           goto SYNC_FAILURE;
5082         }
5083       else
5084         rc = OK;
5085
5086       if (rc == OK || rc == DISCARD)
5087         {
5088         BOOL more = pipeline_response();
5089
5090         if (!user_msg)
5091           smtp_printf("%s%s%s", more, US"250 OK",
5092                     #ifndef DISABLE_PRDR
5093                       prdr_requested ? US", PRDR Requested" : US"",
5094                     #else
5095                       US"",
5096                     #endif
5097                       US"\r\n");
5098         else
5099           {
5100         #ifndef DISABLE_PRDR
5101           if (prdr_requested)
5102              user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
5103         #endif
5104           smtp_user_msg(US"250", user_msg);
5105           }
5106         smtp_delay_rcpt = smtp_rlr_base;
5107         f.recipients_discarded = (rc == DISCARD);
5108         was_rej_mail = FALSE;
5109         }
5110       else
5111         {
5112         done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
5113         sender_address = NULL;
5114         }
5115       break;
5116
5117
5118     /* The RCPT command requires an address as an operand. There may be any
5119     number of RCPT commands, specifying multiple recipients. We build them all
5120     into a data structure. The start/end values given by parse_extract_address
5121     are not used, as we keep only the extracted address. */
5122
5123     case RCPT_CMD:
5124       HAD(SCH_RCPT);
5125       /* We got really to many recipients. A check against configured
5126       limits is done later */
5127       if (rcpt_count < 0 || rcpt_count >= INT_MAX/2)
5128         log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Too many recipients: %d", rcpt_count);
5129       rcpt_count++;
5130       was_rcpt = fl.rcpt_in_progress = TRUE;
5131
5132       /* There must be a sender address; if the sender was rejected and
5133       pipelining was advertised, we assume the client was pipelining, and do not
5134       count this as a protocol error. Reset was_rej_mail so that further RCPTs
5135       get the same treatment. */
5136
5137       if (!sender_address)
5138         {
5139         if (f.smtp_in_pipelining_advertised && last_was_rej_mail)
5140           {
5141           smtp_printf("503 sender not yet given\r\n", FALSE);
5142           was_rej_mail = TRUE;
5143           }
5144         else
5145           {
5146           done = synprot_error(L_smtp_protocol_error, 503, NULL,
5147             US"sender not yet given");
5148           was_rcpt = FALSE;             /* Not a valid RCPT */
5149           }
5150         rcpt_fail_count++;
5151         break;
5152         }
5153
5154       /* Check for an operand */
5155
5156       if (!smtp_cmd_data[0])
5157         {
5158         done = synprot_error(L_smtp_syntax_error, 501, NULL,
5159           US"RCPT must have an address operand");
5160         rcpt_fail_count++;
5161         break;
5162         }
5163
5164       /* Set the DSN flags orcpt and dsn_flags from the session*/
5165       orcpt = NULL;
5166       dsn_flags = 0;
5167
5168       if (fl.esmtp) for(;;)
5169         {
5170         uschar *name, *value;
5171
5172         if (!extract_option(&name, &value))
5173           break;
5174
5175         if (fl.dsn_advertised && strcmpic(name, US"ORCPT") == 0)
5176           {
5177           /* Check whether orcpt has been already set */
5178           if (orcpt)
5179             {
5180             done = synprot_error(L_smtp_syntax_error, 501, NULL,
5181               US"ORCPT can be specified once only");
5182             goto COMMAND_LOOP;
5183             }
5184           orcpt = string_copy(value);
5185           DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
5186           }
5187
5188         else if (fl.dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
5189           {
5190           /* Check if the notify flags have been already set */
5191           if (dsn_flags > 0)
5192             {
5193             done = synprot_error(L_smtp_syntax_error, 501, NULL,
5194                 US"NOTIFY can be specified once only");
5195             goto COMMAND_LOOP;
5196             }
5197           if (strcmpic(value, US"NEVER") == 0)
5198             dsn_flags |= rf_notify_never;
5199           else
5200             {
5201             uschar *p = value;
5202             while (*p != 0)
5203               {
5204               uschar *pp = p;
5205               while (*pp != 0 && *pp != ',') pp++;
5206               if (*pp == ',') *pp++ = 0;
5207               if (strcmpic(p, US"SUCCESS") == 0)
5208                 {
5209                 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
5210                 dsn_flags |= rf_notify_success;
5211                 }
5212               else if (strcmpic(p, US"FAILURE") == 0)
5213                 {
5214                 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
5215                 dsn_flags |= rf_notify_failure;
5216                 }
5217               else if (strcmpic(p, US"DELAY") == 0)
5218                 {
5219                 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
5220                 dsn_flags |= rf_notify_delay;
5221                 }
5222               else
5223                 {
5224                 /* Catch any strange values */
5225                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5226                   US"Invalid value for NOTIFY parameter");
5227                 goto COMMAND_LOOP;
5228                 }
5229               p = pp;
5230               }
5231               DEBUG(D_receive) debug_printf("DSN Flags: %x\n", dsn_flags);
5232             }
5233           }
5234
5235         /* Unknown option. Stick back the terminator characters and break
5236         the loop. An error for a malformed address will occur. */
5237
5238         else
5239           {
5240           DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
5241           name[-1] = ' ';
5242           value[-1] = '=';
5243           break;
5244           }
5245         }
5246
5247       /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
5248       as a recipient address */
5249
5250       recipient = rewrite_existflags & rewrite_smtp
5251         /* deconst ok as smtp_cmd_data was not const */
5252         ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
5253             global_rewrite_rules)
5254         : smtp_cmd_data;
5255
5256       if (!(recipient = parse_extract_address(recipient, &errmess, &start, &end,
5257         &recipient_domain, FALSE)))
5258         {
5259         done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5260         rcpt_fail_count++;
5261         break;
5262         }
5263
5264       /* If the recipient address is unqualified, reject it, unless this is a
5265       locally generated message. However, unqualified addresses are permitted
5266       from a configured list of hosts and nets - typically when behaving as
5267       MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
5268       really. The flag is set at the start of the SMTP connection.
5269
5270       RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
5271       assumed this meant "reserved local part", but the revision of RFC 821 and
5272       friends now makes it absolutely clear that it means *mailbox*. Consequently
5273       we must always qualify this address, regardless. */
5274
5275       if (!recipient_domain)
5276         if (!(recipient_domain = qualify_recipient(&recipient, smtp_cmd_data,
5277                                     US"recipient")))
5278           {
5279           rcpt_fail_count++;
5280           break;
5281           }
5282
5283       /* Check maximum allowed */
5284
5285       if (rcpt_count+1 < 0 || rcpt_count > recipients_max && recipients_max > 0)
5286         {
5287         if (recipients_max_reject)
5288           {
5289           rcpt_fail_count++;
5290           smtp_printf("552 too many recipients\r\n", FALSE);
5291           if (!toomany)
5292             log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
5293               "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
5294           }
5295         else
5296           {
5297           rcpt_defer_count++;
5298           smtp_printf("452 too many recipients\r\n", FALSE);
5299           if (!toomany)
5300             log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
5301               "temporarily rejected: sender=<%s> %s", sender_address,
5302               host_and_ident(TRUE));
5303           }
5304
5305         toomany = TRUE;
5306         break;
5307         }
5308
5309       /* If we have passed the threshold for rate limiting, apply the current
5310       delay, and update it for next time, provided this is a limited host. */
5311
5312       if (rcpt_count > smtp_rlr_threshold &&
5313           verify_check_host(&smtp_ratelimit_hosts) == OK)
5314         {
5315         DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
5316           smtp_delay_rcpt/1000.0);
5317         millisleep((int)smtp_delay_rcpt);
5318         smtp_delay_rcpt *= smtp_rlr_factor;
5319         if (smtp_delay_rcpt > (double)smtp_rlr_limit)
5320           smtp_delay_rcpt = (double)smtp_rlr_limit;
5321         }
5322
5323       /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
5324       for them. Otherwise, check the access control list for this recipient. As
5325       there may be a delay in this, re-check for a synchronization error
5326       afterwards, unless pipelining was advertised. */
5327
5328       if (f.recipients_discarded)
5329         rc = DISCARD;
5330       else
5331         if (  (rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
5332                       &log_msg)) == OK
5333            && !f.smtp_in_pipelining_advertised && !check_sync())
5334           goto SYNC_FAILURE;
5335
5336       /* The ACL was happy */
5337
5338       if (rc == OK)
5339         {
5340         BOOL more = pipeline_response();
5341
5342         if (user_msg)
5343           smtp_user_msg(US"250", user_msg);
5344         else
5345           smtp_printf("250 Accepted\r\n", more);
5346         receive_add_recipient(recipient, -1);
5347
5348         /* Set the dsn flags in the recipients_list */
5349         recipients_list[recipients_count-1].orcpt = orcpt;
5350         recipients_list[recipients_count-1].dsn_flags = dsn_flags;
5351
5352         /* DEBUG(D_receive) debug_printf("DSN: orcpt: %s  flags: %d\n",
5353           recipients_list[recipients_count-1].orcpt,
5354           recipients_list[recipients_count-1].dsn_flags); */
5355         }
5356
5357       /* The recipient was discarded */
5358
5359       else if (rc == DISCARD)
5360         {
5361         if (user_msg)
5362           smtp_user_msg(US"250", user_msg);
5363         else
5364           smtp_printf("250 Accepted\r\n", FALSE);
5365         rcpt_fail_count++;
5366         discarded = TRUE;
5367         log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> RCPT %s: "
5368           "discarded by %s ACL%s%s", host_and_ident(TRUE),
5369           sender_address_unrewritten ? sender_address_unrewritten : sender_address,
5370           smtp_cmd_argument, f.recipients_discarded ? "MAIL" : "RCPT",
5371           log_msg ? US": " : US"", log_msg ? log_msg : US"");
5372         }
5373
5374       /* Either the ACL failed the address, or it was deferred. */
5375
5376       else
5377         {
5378         if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
5379         done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
5380         }
5381       break;
5382
5383
5384     /* The DATA command is legal only if it follows successful MAIL FROM
5385     and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
5386     not counted as a protocol error if it follows RCPT (which must have been
5387     rejected if there are no recipients.) This function is complete when a
5388     valid DATA command is encountered.
5389
5390     Note concerning the code used: RFC 2821 says this:
5391
5392      -  If there was no MAIL, or no RCPT, command, or all such commands
5393         were rejected, the server MAY return a "command out of sequence"
5394         (503) or "no valid recipients" (554) reply in response to the
5395         DATA command.
5396
5397     The example in the pipelining RFC 2920 uses 554, but I use 503 here
5398     because it is the same whether pipelining is in use or not.
5399
5400     If all the RCPT commands that precede DATA provoked the same error message
5401     (often indicating some kind of system error), it is helpful to include it
5402     with the DATA rejection (an idea suggested by Tony Finch). */
5403
5404     case BDAT_CMD:
5405       {
5406       int n;
5407
5408       HAD(SCH_BDAT);
5409       if (chunking_state != CHUNKING_OFFERED)
5410         {
5411         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5412           US"BDAT command used when CHUNKING not advertised");
5413         break;
5414         }
5415
5416       /* grab size, endmarker */
5417
5418       if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
5419         {
5420         done = synprot_error(L_smtp_protocol_error, 501, NULL,
5421           US"missing size for BDAT command");
5422         break;
5423         }
5424       chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
5425         ? CHUNKING_LAST : CHUNKING_ACTIVE;
5426       chunking_data_left = chunking_datasize;
5427       DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
5428                                     (int)chunking_state, chunking_data_left);
5429
5430       f.bdat_readers_wanted = TRUE; /* FIXME: redundant vs chunking_state? */
5431       f.dot_ends = FALSE;
5432
5433       goto DATA_BDAT;
5434       }
5435
5436     case DATA_CMD:
5437       HAD(SCH_DATA);
5438       f.dot_ends = TRUE;
5439       f.bdat_readers_wanted = FALSE;
5440
5441     DATA_BDAT:          /* Common code for DATA and BDAT */
5442 #ifndef DISABLE_PIPE_CONNECT
5443       fl.pipe_connect_acceptable = FALSE;
5444 #endif
5445       if (!discarded && recipients_count <= 0)
5446         {
5447         if (fl.rcpt_smtp_response_same && rcpt_smtp_response)
5448           {
5449           uschar *code = US"503";
5450           int len = Ustrlen(rcpt_smtp_response);
5451           smtp_respond(code, 3, FALSE, US"All RCPT commands were rejected with "
5452             "this error:");
5453           /* Responses from smtp_printf() will have \r\n on the end */
5454           if (len > 2 && rcpt_smtp_response[len-2] == '\r')
5455             rcpt_smtp_response[len-2] = 0;
5456           smtp_respond(code, 3, FALSE, rcpt_smtp_response);
5457           }
5458         if (f.smtp_in_pipelining_advertised && last_was_rcpt)
5459           smtp_printf("503 Valid RCPT command must precede %s\r\n", FALSE,
5460             smtp_names[smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)]]);
5461         else
5462           done = synprot_error(L_smtp_protocol_error, 503, NULL,
5463             smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)] == SCH_DATA
5464             ? US"valid RCPT command must precede DATA"
5465             : US"valid RCPT command must precede BDAT");
5466
5467         if (chunking_state > CHUNKING_OFFERED)
5468           {
5469           bdat_push_receive_functions();
5470           bdat_flush_data();
5471           }
5472         break;
5473         }
5474
5475       if (toomany && recipients_max_reject)
5476         {
5477         sender_address = NULL;  /* This will allow a new MAIL without RSET */
5478         sender_address_unrewritten = NULL;
5479         smtp_printf("554 Too many recipients\r\n", FALSE);
5480
5481         if (chunking_state > CHUNKING_OFFERED)
5482           {
5483           bdat_push_receive_functions();
5484           bdat_flush_data();
5485           }
5486         break;
5487         }
5488
5489       if (chunking_state > CHUNKING_OFFERED)
5490         rc = OK;                        /* No predata ACL or go-ahead output for BDAT */
5491       else
5492         {
5493         /* If there is an ACL, re-check the synchronization afterwards, since the
5494         ACL may have delayed.  To handle cutthrough delivery enforce a dummy call
5495         to get the DATA command sent. */
5496
5497         if (!acl_smtp_predata && cutthrough.cctx.sock < 0)
5498           rc = OK;
5499         else
5500           {
5501           uschar * acl = acl_smtp_predata ? acl_smtp_predata : US"accept";
5502           f.enable_dollar_recipients = TRUE;
5503           rc = acl_check(ACL_WHERE_PREDATA, NULL, acl, &user_msg,
5504             &log_msg);
5505           f.enable_dollar_recipients = FALSE;
5506           if (rc == OK && !check_sync())
5507             goto SYNC_FAILURE;
5508
5509           if (rc != OK)
5510             {   /* Either the ACL failed the address, or it was deferred. */
5511             done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
5512             break;
5513             }
5514           }
5515
5516         if (user_msg)
5517           smtp_user_msg(US"354", user_msg);
5518         else
5519           smtp_printf(
5520             "354 Enter message, ending with \".\" on a line by itself\r\n", FALSE);
5521         }
5522
5523       if (f.bdat_readers_wanted)
5524         bdat_push_receive_functions();
5525
5526 #ifdef TCP_QUICKACK
5527       if (smtp_in)      /* all ACKs needed to ramp window up for bulk data */
5528         (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
5529                 US &on, sizeof(on));
5530 #endif
5531       done = 3;
5532       message_ended = END_NOTENDED;   /* Indicate in middle of data */
5533
5534       break;
5535
5536
5537     case VRFY_CMD:
5538       {
5539       uschar * address;
5540
5541       HAD(SCH_VRFY);
5542
5543       if (!(address = parse_extract_address(smtp_cmd_data, &errmess,
5544             &start, &end, &recipient_domain, FALSE)))
5545         {
5546         smtp_printf("501 %s\r\n", FALSE, errmess);
5547         break;
5548         }
5549
5550       if (!recipient_domain)
5551         if (!(recipient_domain = qualify_recipient(&address, smtp_cmd_data,
5552                                     US"verify")))
5553           break;
5554
5555       if ((rc = acl_check(ACL_WHERE_VRFY, address, acl_smtp_vrfy,
5556                     &user_msg, &log_msg)) != OK)
5557         done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
5558       else
5559         {
5560         uschar * s = NULL;
5561         address_item * addr = deliver_make_addr(address, FALSE);
5562
5563         switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
5564                -1, -1, NULL, NULL, NULL))
5565           {
5566           case OK:
5567             s = string_sprintf("250 <%s> is deliverable", address);
5568             break;
5569
5570           case DEFER:
5571             s = (addr->user_message != NULL)?
5572               string_sprintf("451 <%s> %s", address, addr->user_message) :
5573               string_sprintf("451 Cannot resolve <%s> at this time", address);
5574             break;
5575
5576           case FAIL:
5577             s = (addr->user_message != NULL)?
5578               string_sprintf("550 <%s> %s", address, addr->user_message) :
5579               string_sprintf("550 <%s> is not deliverable", address);
5580             log_write(0, LOG_MAIN, "VRFY failed for %s %s",
5581               smtp_cmd_argument, host_and_ident(TRUE));
5582             break;
5583           }
5584
5585         smtp_printf("%s\r\n", FALSE, s);
5586         }
5587       break;
5588       }
5589
5590
5591     case EXPN_CMD:
5592       HAD(SCH_EXPN);
5593       rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
5594       if (rc != OK)
5595         done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
5596       else
5597         {
5598         BOOL save_log_testing_mode = f.log_testing_mode;
5599         f.address_test_mode = f.log_testing_mode = TRUE;
5600         (void) verify_address(deliver_make_addr(smtp_cmd_data, FALSE),
5601           smtp_out, vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1,
5602           NULL, NULL, NULL);
5603         f.address_test_mode = FALSE;
5604         f.log_testing_mode = save_log_testing_mode;    /* true for -bh */
5605         }
5606       break;
5607
5608
5609     #ifndef DISABLE_TLS
5610
5611     case STARTTLS_CMD:
5612       HAD(SCH_STARTTLS);
5613       if (!fl.tls_advertised)
5614         {
5615         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5616           US"STARTTLS command used when not advertised");
5617         break;
5618         }
5619
5620       /* Apply an ACL check if one is defined */
5621
5622       if (  acl_smtp_starttls
5623          && (rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls,
5624                     &user_msg, &log_msg)) != OK
5625          )
5626         {
5627         done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
5628         break;
5629         }
5630
5631       /* RFC 2487 is not clear on when this command may be sent, though it
5632       does state that all information previously obtained from the client
5633       must be discarded if a TLS session is started. It seems reasonable to
5634       do an implied RSET when STARTTLS is received. */
5635
5636       incomplete_transaction_log(US"STARTTLS");
5637       cancel_cutthrough_connection(TRUE, US"STARTTLS received");
5638       reset_point = smtp_reset(reset_point);
5639       toomany = FALSE;
5640       cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
5641
5642       /* There's an attack where more data is read in past the STARTTLS command
5643       before TLS is negotiated, then assumed to be part of the secure session
5644       when used afterwards; we use segregated input buffers, so are not
5645       vulnerable, but we want to note when it happens and, for sheer paranoia,
5646       ensure that the buffer is "wiped".
5647       Pipelining sync checks will normally have protected us too, unless disabled
5648       by configuration. */
5649
5650       if (receive_hasc())
5651         {
5652         DEBUG(D_any)
5653           debug_printf("Non-empty input buffer after STARTTLS; naive attack?\n");
5654         if (tls_in.active.sock < 0)
5655           smtp_inend = smtp_inptr = smtp_inbuffer;
5656         /* and if TLS is already active, tls_server_start() should fail */
5657         }
5658
5659       /* There is nothing we value in the input buffer and if TLS is successfully
5660       negotiated, we won't use this buffer again; if TLS fails, we'll just read
5661       fresh content into it.  The buffer contains arbitrary content from an
5662       untrusted remote source; eg: NOOP <shellcode>\r\nSTARTTLS\r\n
5663       It seems safest to just wipe away the content rather than leave it as a
5664       target to jump to. */
5665
5666       memset(smtp_inbuffer, 0, IN_BUFFER_SIZE);
5667
5668       /* Attempt to start up a TLS session, and if successful, discard all
5669       knowledge that was obtained previously. At least, that's what the RFC says,
5670       and that's what happens by default. However, in order to work round YAEB,
5671       there is an option to remember the esmtp state. Sigh.
5672
5673       We must allow for an extra EHLO command and an extra AUTH command after
5674       STARTTLS that don't add to the nonmail command count. */
5675
5676       s = NULL;
5677       if ((rc = tls_server_start(&s)) == OK)
5678         {
5679         if (!tls_remember_esmtp)
5680           fl.helo_seen = fl.esmtp = fl.auth_advertised = f.smtp_in_pipelining_advertised = FALSE;
5681         cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
5682         cmd_list[CMD_LIST_AUTH].is_mail_cmd = TRUE;
5683         cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
5684         if (sender_helo_name)
5685           {
5686           sender_helo_name = NULL;
5687           host_build_sender_fullhost();  /* Rebuild */
5688           set_process_info("handling incoming TLS connection from %s",
5689             host_and_ident(FALSE));
5690           }
5691         received_protocol =
5692           (sender_host_address ? protocols : protocols_local)
5693             [ (fl.esmtp
5694               ? pextend + (sender_host_authenticated ? pauthed : 0)
5695               : pnormal)
5696             + (tls_in.active.sock >= 0 ? pcrpted : 0)
5697             ];
5698
5699         sender_host_auth_pubname = sender_host_authenticated = NULL;
5700         authenticated_id = NULL;
5701         sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
5702         DEBUG(D_tls) debug_printf("TLS active\n");
5703         break;     /* Successful STARTTLS */
5704         }
5705       else
5706         (void) smtp_log_tls_fail(s);
5707
5708       /* Some local configuration problem was discovered before actually trying
5709       to do a TLS handshake; give a temporary error. */
5710
5711       if (rc == DEFER)
5712         {
5713         smtp_printf("454 TLS currently unavailable\r\n", FALSE);
5714         break;
5715         }
5716
5717       /* Hard failure. Reject everything except QUIT or closed connection. One
5718       cause for failure is a nested STARTTLS, in which case tls_in.active remains
5719       set, but we must still reject all incoming commands.  Another is a handshake
5720       failure - and there may some encrypted data still in the pipe to us, which we
5721       see as garbage commands. */
5722
5723       DEBUG(D_tls) debug_printf("TLS failed to start\n");
5724       while (done <= 0) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
5725         {
5726         case EOF_CMD:
5727           log_write(L_smtp_connection, LOG_MAIN, "%s closed by EOF",
5728             smtp_get_connection_info());
5729           smtp_notquit_exit(US"tls-failed", NULL, NULL);
5730           done = 2;
5731           break;
5732
5733         /* It is perhaps arguable as to which exit ACL should be called here,
5734         but as it is probably a situation that almost never arises, it
5735         probably doesn't matter. We choose to call the real QUIT ACL, which in
5736         some sense is perhaps "right". */
5737
5738         case QUIT_CMD:
5739           f.smtp_in_quit = TRUE;
5740           user_msg = NULL;
5741           if (  acl_smtp_quit
5742              && ((rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg,
5743                                 &log_msg)) == ERROR))
5744               log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
5745                 log_msg);
5746           if (user_msg)
5747             smtp_respond(US"221", 3, TRUE, user_msg);
5748           else
5749             smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
5750           log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
5751             smtp_get_connection_info());
5752           done = 2;
5753           break;
5754
5755         default:
5756           smtp_printf("554 Security failure\r\n", FALSE);
5757           break;
5758         }
5759       tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
5760       break;
5761     #endif
5762
5763
5764     /* The ACL for QUIT is provided for gathering statistical information or
5765     similar; it does not affect the response code, but it can supply a custom
5766     message. */
5767
5768     case QUIT_CMD:
5769       smtp_quit_handler(&user_msg, &log_msg);
5770       done = 2;
5771       break;
5772
5773
5774     case RSET_CMD:
5775       smtp_rset_handler();
5776       cancel_cutthrough_connection(TRUE, US"RSET received");
5777       reset_point = smtp_reset(reset_point);
5778       toomany = FALSE;
5779       break;
5780
5781
5782     case NOOP_CMD:
5783       HAD(SCH_NOOP);
5784       smtp_printf("250 OK\r\n", FALSE);
5785       break;
5786
5787
5788     /* Show ETRN/EXPN/VRFY if there's an ACL for checking hosts; if actually
5789     used, a check will be done for permitted hosts. Show STARTTLS only if not
5790     already in a TLS session and if it would be advertised in the EHLO
5791     response. */
5792
5793     case HELP_CMD:
5794       HAD(SCH_HELP);
5795       smtp_printf("214-Commands supported:\r\n", TRUE);
5796         {
5797         uschar buffer[256];
5798         buffer[0] = 0;
5799         Ustrcat(buffer, US" AUTH");
5800         #ifndef DISABLE_TLS
5801         if (tls_in.active.sock < 0 &&
5802             verify_check_host(&tls_advertise_hosts) != FAIL)
5803           Ustrcat(buffer, US" STARTTLS");
5804         #endif
5805         Ustrcat(buffer, US" HELO EHLO MAIL RCPT DATA BDAT");
5806         Ustrcat(buffer, US" NOOP QUIT RSET HELP");
5807         if (acl_smtp_etrn) Ustrcat(buffer, US" ETRN");
5808         if (acl_smtp_expn) Ustrcat(buffer, US" EXPN");
5809         if (acl_smtp_vrfy) Ustrcat(buffer, US" VRFY");
5810         smtp_printf("214%s\r\n", FALSE, buffer);
5811         }
5812       break;
5813
5814
5815     case EOF_CMD:
5816       incomplete_transaction_log(US"connection lost");
5817       smtp_notquit_exit(US"connection-lost", US"421",
5818         US"%s lost input connection", smtp_active_hostname);
5819
5820       /* Don't log by default unless in the middle of a message, as some mailers
5821       just drop the call rather than sending QUIT, and it clutters up the logs.
5822       */
5823
5824       if (sender_address || recipients_count > 0)
5825         log_write(L_lost_incoming_connection, LOG_MAIN,
5826           "unexpected %s while reading SMTP command from %s%s%s D=%s",
5827           f.sender_host_unknown ? "EOF" : "disconnection",
5828           f.tcp_in_fastopen_logged
5829           ? US""
5830           : f.tcp_in_fastopen
5831           ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO "
5832           : US"",
5833           host_and_ident(FALSE), smtp_read_error,
5834           string_timesince(&smtp_connection_start)
5835           );
5836
5837       else
5838         log_write(L_smtp_connection, LOG_MAIN, "%s %slost%s D=%s",
5839           smtp_get_connection_info(),
5840           f.tcp_in_fastopen && !f.tcp_in_fastopen_logged ? US"TFO " : US"",
5841           smtp_read_error,
5842           string_timesince(&smtp_connection_start)
5843           );
5844
5845       done = 1;
5846       break;
5847
5848
5849     case ETRN_CMD:
5850       HAD(SCH_ETRN);
5851       if (sender_address)
5852         {
5853         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5854           US"ETRN is not permitted inside a transaction");
5855         break;
5856         }
5857
5858       log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
5859         host_and_ident(FALSE));
5860
5861       if ((rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn,
5862                   &user_msg, &log_msg)) != OK)
5863         {
5864         done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
5865         break;
5866         }
5867
5868       /* Compute the serialization key for this command. */
5869
5870       etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
5871
5872       /* If a command has been specified for running as a result of ETRN, we
5873       permit any argument to ETRN. If not, only the # standard form is permitted,
5874       since that is strictly the only kind of ETRN that can be implemented
5875       according to the RFC. */
5876
5877       if (smtp_etrn_command)
5878         {
5879         uschar *error;
5880         BOOL rc;
5881         etrn_command = smtp_etrn_command;
5882         deliver_domain = smtp_cmd_data;
5883         rc = transport_set_up_command(&argv, smtp_etrn_command, TRUE, 0, NULL,
5884           FALSE, US"ETRN processing", &error);
5885         deliver_domain = NULL;
5886         if (!rc)
5887           {
5888           log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
5889             error);
5890           smtp_printf("458 Internal failure\r\n", FALSE);
5891           break;
5892           }
5893         }
5894
5895       /* Else set up to call Exim with the -R option. */
5896
5897       else
5898         {
5899         if (*smtp_cmd_data++ != '#')
5900           {
5901           done = synprot_error(L_smtp_syntax_error, 501, NULL,
5902             US"argument must begin with #");
5903           break;
5904           }
5905         etrn_command = US"exim -R";
5906         argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE,
5907           *queue_name ? 4 : 2,
5908           US"-R", smtp_cmd_data,
5909           US"-MCG", queue_name);
5910         }
5911
5912       /* If we are host-testing, don't actually do anything. */
5913
5914       if (host_checking)
5915         {
5916         HDEBUG(D_any)
5917           {
5918           debug_printf("ETRN command is: %s\n", etrn_command);
5919           debug_printf("ETRN command execution skipped\n");
5920           }
5921         if (user_msg == NULL) smtp_printf("250 OK\r\n", FALSE);
5922           else smtp_user_msg(US"250", user_msg);
5923         break;
5924         }
5925
5926
5927       /* If ETRN queue runs are to be serialized, check the database to
5928       ensure one isn't already running. */
5929
5930       if (smtp_etrn_serialize && !enq_start(etrn_serialize_key, 1))
5931         {
5932         smtp_printf("458 Already processing %s\r\n", FALSE, smtp_cmd_data);
5933         break;
5934         }
5935
5936       /* Fork a child process and run the command. We don't want to have to
5937       wait for the process at any point, so set SIGCHLD to SIG_IGN before
5938       forking. It should be set that way anyway for external incoming SMTP,
5939       but we save and restore to be tidy. If serialization is required, we
5940       actually run the command in yet another process, so we can wait for it
5941       to complete and then remove the serialization lock. */
5942
5943       oldsignal = signal(SIGCHLD, SIG_IGN);
5944
5945       if ((pid = exim_fork(US"etrn-command")) == 0)
5946         {
5947         smtp_input = FALSE;       /* This process is not associated with the */
5948         (void)fclose(smtp_in);    /* SMTP call any more. */
5949         (void)fclose(smtp_out);
5950
5951         signal(SIGCHLD, SIG_DFL);      /* Want to catch child */
5952
5953         /* If not serializing, do the exec right away. Otherwise, fork down
5954         into another process. */
5955
5956         if (  !smtp_etrn_serialize
5957            || (pid = exim_fork(US"etrn-serialised-command")) == 0)
5958           {
5959           DEBUG(D_exec) debug_print_argv(argv);
5960           exim_nullstd();                   /* Ensure std{in,out,err} exist */
5961           /* argv[0] should be untainted, from child_exec_exim() */
5962           execv(CS argv[0], (char *const *)argv);
5963           log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
5964             etrn_command, strerror(errno));
5965           _exit(EXIT_FAILURE);         /* paranoia */
5966           }
5967
5968         /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
5969         is, we are in the first subprocess, after forking again. All we can do
5970         for a failing fork is to log it. Otherwise, wait for the 2nd process to
5971         complete, before removing the serialization. */
5972
5973         if (pid < 0)
5974           log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
5975             "failed: %s", strerror(errno));
5976         else
5977           {
5978           int status;
5979           DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
5980             (int)pid);
5981           (void)wait(&status);
5982           DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
5983             (int)pid);
5984           }
5985
5986         enq_end(etrn_serialize_key);
5987         exim_underbar_exit(EXIT_SUCCESS);
5988         }
5989
5990       /* Back in the top level SMTP process. Check that we started a subprocess
5991       and restore the signal state. */
5992
5993       if (pid < 0)
5994         {
5995         log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
5996           strerror(errno));
5997         smtp_printf("458 Unable to fork process\r\n", FALSE);
5998         if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
5999         }
6000       else
6001         if (!user_msg)
6002           smtp_printf("250 OK\r\n", FALSE);
6003         else
6004           smtp_user_msg(US"250", user_msg);
6005
6006       signal(SIGCHLD, oldsignal);
6007       break;
6008
6009
6010     case BADARG_CMD:
6011       done = synprot_error(L_smtp_syntax_error, 501, NULL,
6012         US"unexpected argument data");
6013       break;
6014
6015
6016     /* This currently happens only for NULLs, but could be extended. */
6017
6018     case BADCHAR_CMD:
6019       done = synprot_error(L_smtp_syntax_error, 0, NULL,       /* Just logs */
6020         US"NUL character(s) present (shown as '?')");
6021       smtp_printf("501 NUL characters are not allowed in SMTP commands\r\n",
6022                   FALSE);
6023       break;
6024
6025
6026     case BADSYN_CMD:
6027     SYNC_FAILURE:
6028       if (smtp_inend >= smtp_inbuffer + IN_BUFFER_SIZE)
6029         smtp_inend = smtp_inbuffer + IN_BUFFER_SIZE - 1;
6030       c = smtp_inend - smtp_inptr;
6031       if (c > 150) c = 150;     /* limit logged amount */
6032       smtp_inptr[c] = 0;
6033       incomplete_transaction_log(US"sync failure");
6034       log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
6035         "(next input sent too soon: pipelining was%s advertised): "
6036         "rejected \"%s\" %s next input=\"%s\"",
6037         f.smtp_in_pipelining_advertised ? "" : " not",
6038         smtp_cmd_buffer, host_and_ident(TRUE),
6039         string_printing(smtp_inptr));
6040       smtp_notquit_exit(US"synchronization-error", US"554",
6041         US"SMTP synchronization error");
6042       done = 1;   /* Pretend eof - drops connection */
6043       break;
6044
6045
6046     case TOO_MANY_NONMAIL_CMD:
6047       s = smtp_cmd_buffer;
6048       while (*s != 0 && !isspace(*s)) s++;
6049       incomplete_transaction_log(US"too many non-mail commands");
6050       log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
6051         "nonmail commands (last was \"%.*s\")",  host_and_ident(FALSE),
6052         (int)(s - smtp_cmd_buffer), smtp_cmd_buffer);
6053       smtp_notquit_exit(US"bad-commands", US"554", US"Too many nonmail commands");
6054       done = 1;   /* Pretend eof - drops connection */
6055       break;
6056
6057 #ifdef SUPPORT_PROXY
6058     case PROXY_FAIL_IGNORE_CMD:
6059       smtp_printf("503 Command refused, required Proxy negotiation failed\r\n", FALSE);
6060       break;
6061 #endif
6062
6063     default:
6064       if (unknown_command_count++ >= smtp_max_unknown_commands)
6065         {
6066         log_write(L_smtp_syntax_error, LOG_MAIN,
6067           "SMTP syntax error in \"%s\" %s %s",
6068           string_printing(smtp_cmd_buffer), host_and_ident(TRUE),
6069           US"unrecognized command");
6070         incomplete_transaction_log(US"unrecognized command");
6071         smtp_notquit_exit(US"bad-commands", US"500",
6072           US"Too many unrecognized commands");
6073         done = 2;
6074         log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
6075           "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
6076           string_printing(smtp_cmd_buffer));
6077         }
6078       else
6079         done = synprot_error(L_smtp_syntax_error, 500, NULL,
6080           US"unrecognized command");
6081       break;
6082     }
6083
6084   /* This label is used by goto's inside loops that want to break out to
6085   the end of the command-processing loop. */
6086
6087   COMMAND_LOOP:
6088   last_was_rej_mail = was_rej_mail;     /* Remember some last commands for */
6089   last_was_rcpt = was_rcpt;             /* protocol error handling */
6090   }
6091
6092 return done - 2;  /* Convert yield values */
6093 }
6094
6095
6096
6097 gstring *
6098 authres_smtpauth(gstring * g)
6099 {
6100 if (!sender_host_authenticated)
6101   return g;
6102
6103 g = string_append(g, 2, US";\n\tauth=pass (", sender_host_auth_pubname);
6104
6105 if (Ustrcmp(sender_host_auth_pubname, "tls") == 0)
6106   g = authenticated_id
6107     ? string_append(g, 2, US") x509.auth=", authenticated_id)
6108     : string_cat(g, US") reason=x509.auth");
6109 else
6110   g = authenticated_id
6111     ? string_append(g, 2, US") smtp.auth=", authenticated_id)
6112     : string_cat(g, US", no id saved)");
6113
6114 if (authenticated_sender)
6115   g = string_append(g, 2, US" smtp.mailfrom=", authenticated_sender);
6116 return g;
6117 }
6118
6119
6120
6121 /* vi: aw ai sw=2
6122 */
6123 /* End of smtp_in.c */