cppcheck sliencing
[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 (!
2771 # if OPTSTYLE == 1
2772                  string_format(p, pend-p, " %s [@%s",
2773                  (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2774                  inet_ntoa(*((struct in_addr *)(&(ipopt->faddr)))))
2775 # elif OPTSTYLE == 2
2776                  string_format(p, pend-p, " %s [@%s",
2777                  (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2778                  inet_ntoa(ipopt->ip_dst))
2779 # else
2780                  string_format(p, pend-p, " %s [@%s",
2781                  (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2782                  inet_ntoa(ipopt->ipopt_dst))
2783 # endif
2784               )
2785               {
2786               opt = NULL;
2787               break;
2788               }
2789
2790             p += Ustrlen(p);
2791             optcount = (opt[1] - 3) / sizeof(struct in_addr);
2792             adptr = opt + 3;
2793             while (optcount-- > 0)
2794               {
2795               memcpy(&addr, adptr, sizeof(addr));
2796               if (!string_format(p, pend - p - 1, "%s%s",
2797                     (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2798                 {
2799                 opt = NULL;
2800                 break;
2801                 }
2802               p += Ustrlen(p);
2803               adptr += sizeof(struct in_addr);
2804               }
2805             *p++ = ']';
2806             opt += opt[1];
2807             break;
2808
2809           default:
2810               {
2811               if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2812               Ustrcat(p, "[ ");
2813               p += 2;
2814               for (int i = 0; i < opt[1]; i++)
2815                 p += sprintf(CS p, "%2.2x ", opt[i]);
2816               *p++ = ']';
2817               }
2818             opt += opt[1];
2819             break;
2820           }
2821
2822       *p = 0;
2823       log_write(0, LOG_MAIN, "%s", big_buffer);
2824
2825       /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2826
2827       log_write(0, LOG_MAIN|LOG_REJECT,
2828         "connection from %s refused (IP options)", host_and_ident(FALSE));
2829
2830       smtp_printf("554 SMTP service not available\r\n", FALSE);
2831       return FALSE;
2832       }
2833
2834     /* Length of options = 0 => there are no options */
2835
2836     else DEBUG(D_receive) debug_printf("no IP options found\n");
2837     }
2838 #endif  /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2839
2840   /* Set keep-alive in socket options. The option is on by default. This
2841   setting is an attempt to get rid of some hanging connections that stick in
2842   read() when the remote end (usually a dialup) goes away. */
2843
2844   if (smtp_accept_keepalive && !f.sender_host_notsocket)
2845     ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2846
2847   /* If the current host matches host_lookup, set the name by doing a
2848   reverse lookup. On failure, sender_host_name will be NULL and
2849   host_lookup_failed will be TRUE. This may or may not be serious - optional
2850   checks later. */
2851
2852   if (verify_check_host(&host_lookup) == OK)
2853     {
2854     (void)host_name_lookup();
2855     host_build_sender_fullhost();
2856     }
2857
2858   /* Delay this until we have the full name, if it is looked up. */
2859
2860   set_process_info("handling incoming connection from %s",
2861     host_and_ident(FALSE));
2862
2863   /* Expand smtp_receive_timeout, if needed */
2864
2865   if (smtp_receive_timeout_s)
2866     {
2867     uschar * exp;
2868     if (  !(exp = expand_string(smtp_receive_timeout_s))
2869        || !(*exp)
2870        || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2871        )
2872       log_write(0, LOG_MAIN|LOG_PANIC,
2873         "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2874     }
2875
2876   /* Test for explicit connection rejection */
2877
2878   if (verify_check_host(&host_reject_connection) == OK)
2879     {
2880     log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2881       "from %s (host_reject_connection)", host_and_ident(FALSE));
2882 #ifndef DISABLE_TLS
2883     if (!tls_in.on_connect)
2884 #endif
2885       smtp_printf("554 SMTP service not available\r\n", FALSE);
2886     return FALSE;
2887     }
2888
2889   /* Test with TCP Wrappers if so configured. There is a problem in that
2890   hosts_ctl() returns 0 (deny) under a number of system failure circumstances,
2891   such as disks dying. In these cases, it is desirable to reject with a 4xx
2892   error instead of a 5xx error. There isn't a "right" way to detect such
2893   problems. The following kludge is used: errno is zeroed before calling
2894   hosts_ctl(). If the result is "reject", a 5xx error is given only if the
2895   value of errno is 0 or ENOENT (which happens if /etc/hosts.{allow,deny} does
2896   not exist). */
2897
2898 #ifdef USE_TCP_WRAPPERS
2899   errno = 0;
2900   if (!(tcp_wrappers_name = expand_string(tcp_wrappers_daemon_name)))
2901     log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" "
2902       "(tcp_wrappers_name) failed: %s", string_printing(tcp_wrappers_name),
2903         expand_string_message);
2904
2905   if (!hosts_ctl(tcp_wrappers_name,
2906          sender_host_name ? CS sender_host_name : STRING_UNKNOWN,
2907          sender_host_address ? CS sender_host_address : STRING_UNKNOWN,
2908          sender_ident ? CS sender_ident : STRING_UNKNOWN))
2909     {
2910     if (errno == 0 || errno == ENOENT)
2911       {
2912       HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
2913       log_write(L_connection_reject,
2914                 LOG_MAIN|LOG_REJECT, "refused connection from %s "
2915                 "(tcp wrappers)", host_and_ident(FALSE));
2916       smtp_printf("554 SMTP service not available\r\n", FALSE);
2917       }
2918     else
2919       {
2920       int save_errno = errno;
2921       HDEBUG(D_receive) debug_printf("tcp wrappers rejected with unexpected "
2922         "errno value %d\n", save_errno);
2923       log_write(L_connection_reject,
2924                 LOG_MAIN|LOG_REJECT, "temporarily refused connection from %s "
2925                 "(tcp wrappers errno=%d)", host_and_ident(FALSE), save_errno);
2926       smtp_printf("451 Temporary local problem - please try later\r\n", FALSE);
2927       }
2928     return FALSE;
2929     }
2930 #endif
2931
2932   /* Check for reserved slots. The value of smtp_accept_count has already been
2933   incremented to include this process. */
2934
2935   if (smtp_accept_max > 0 &&
2936       smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
2937     {
2938     if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2939       {
2940       log_write(L_connection_reject,
2941         LOG_MAIN, "temporarily refused connection from %s: not in "
2942         "reserve list: connected=%d max=%d reserve=%d%s",
2943         host_and_ident(FALSE), smtp_accept_count - 1, smtp_accept_max,
2944         smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
2945       smtp_printf("421 %s: Too many concurrent SMTP connections; "
2946         "please try again later\r\n", FALSE, smtp_active_hostname);
2947       return FALSE;
2948       }
2949     reserved_host = TRUE;
2950     }
2951
2952   /* If a load level above which only messages from reserved hosts are
2953   accepted is set, check the load. For incoming calls via the daemon, the
2954   check is done in the superior process if there are no reserved hosts, to
2955   save a fork. In all cases, the load average will already be available
2956   in a global variable at this point. */
2957
2958   if (smtp_load_reserve >= 0 &&
2959        load_average > smtp_load_reserve &&
2960        !reserved_host &&
2961        verify_check_host(&smtp_reserve_hosts) != OK)
2962     {
2963     log_write(L_connection_reject,
2964       LOG_MAIN, "temporarily refused connection from %s: not in "
2965       "reserve list and load average = %.2f", host_and_ident(FALSE),
2966       (double)load_average/1000.0);
2967     smtp_printf("421 %s: Too much load; please try again later\r\n", FALSE,
2968       smtp_active_hostname);
2969     return FALSE;
2970     }
2971
2972   /* Determine whether unqualified senders or recipients are permitted
2973   for this host. Unfortunately, we have to do this every time, in order to
2974   set the flags so that they can be inspected when considering qualifying
2975   addresses in the headers. For a site that permits no qualification, this
2976   won't take long, however. */
2977
2978   f.allow_unqualified_sender =
2979     verify_check_host(&sender_unqualified_hosts) == OK;
2980
2981   f.allow_unqualified_recipient =
2982     verify_check_host(&recipient_unqualified_hosts) == OK;
2983
2984   /* Determine whether HELO/EHLO is required for this host. The requirement
2985   can be hard or soft. */
2986
2987   fl.helo_verify_required = verify_check_host(&helo_verify_hosts) == OK;
2988   if (!fl.helo_verify_required)
2989     fl.helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
2990
2991   /* Determine whether this hosts is permitted to send syntactic junk
2992   after a HELO or EHLO command. */
2993
2994   fl.helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
2995   }
2996
2997 /* For batch SMTP input we are now done. */
2998
2999 if (smtp_batched_input) return TRUE;
3000
3001 /* If valid Proxy Protocol source is connecting, set up session.
3002 Failure will not allow any SMTP function other than QUIT. */
3003
3004 #ifdef SUPPORT_PROXY
3005 proxy_session = FALSE;
3006 f.proxy_session_failed = FALSE;
3007 if (check_proxy_protocol_host())
3008   setup_proxy_protocol_host();
3009 #endif
3010
3011 /* Run the connect ACL if it exists */
3012
3013 user_msg = NULL;
3014 if (acl_smtp_connect)
3015   {
3016   int rc;
3017   if ((rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
3018                       &log_msg)) != OK)
3019     {
3020 #ifndef DISABLE_TLS
3021     if (tls_in.on_connect)
3022       log_connect_tls_drop(US"'connect' ACL", log_msg);
3023     else
3024 #endif
3025       (void) smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
3026     return FALSE;
3027     }
3028   }
3029
3030 /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
3031 smtps port for use with older style SSL MTAs. */
3032
3033 #ifndef DISABLE_TLS
3034 if (tls_in.on_connect)
3035   {
3036   if (tls_server_start(&user_msg) != OK)
3037     return smtp_log_tls_fail(user_msg);
3038   cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
3039   }
3040 #endif
3041
3042 /* Output the initial message for a two-way SMTP connection. It may contain
3043 newlines, which then cause a multi-line response to be given. */
3044
3045 code = US"220";   /* Default status code */
3046 esc = US"";       /* Default extended status code */
3047 esclen = 0;       /* Length of esc */
3048
3049 if (user_msg)
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 else if (!(s = expand_string(smtp_banner)))
3061   {
3062   log_write(0, f.expand_string_forcedfail ? LOG_MAIN : LOG_MAIN|LOG_PANIC_DIE,
3063     "Expansion of \"%s\" (smtp_banner) failed: %s",
3064     smtp_banner, expand_string_message);
3065   /* for force-fail */
3066 #ifndef DISABLE_TLS
3067   if (tls_in.on_connect) tls_close(NULL, TLS_SHUTDOWN_WAIT);
3068 #endif
3069   return FALSE;
3070   }
3071
3072 /* Remove any terminating newlines; might as well remove trailing space too */
3073
3074 p = s + Ustrlen(s);
3075 while (p > s && isspace(p[-1])) p--;
3076 s = string_copyn(s, p-s);
3077
3078 /* It seems that CC:Mail is braindead, and assumes that the greeting message
3079 is all contained in a single IP packet. The original code wrote out the
3080 greeting using several calls to fprint/fputc, and on busy servers this could
3081 cause it to be split over more than one packet - which caused CC:Mail to fall
3082 over when it got the second part of the greeting after sending its first
3083 command. Sigh. To try to avoid this, build the complete greeting message
3084 first, and output it in one fell swoop. This gives a better chance of it
3085 ending up as a single packet. */
3086
3087 ss = string_get(256);
3088
3089 p = s;
3090 do       /* At least once, in case we have an empty string */
3091   {
3092   int len;
3093   uschar *linebreak = Ustrchr(p, '\n');
3094   ss = string_catn(ss, code, 3);
3095   if (!linebreak)
3096     {
3097     len = Ustrlen(p);
3098     ss = string_catn(ss, US" ", 1);
3099     }
3100   else
3101     {
3102     len = linebreak - p;
3103     ss = string_catn(ss, US"-", 1);
3104     }
3105   ss = string_catn(ss, esc, esclen);
3106   ss = string_catn(ss, p, len);
3107   ss = string_catn(ss, US"\r\n", 2);
3108   p += len;
3109   if (linebreak) p++;
3110   }
3111 while (*p);
3112
3113 /* Before we write the banner, check that there is no input pending, unless
3114 this synchronisation check is disabled. */
3115
3116 #ifndef DISABLE_PIPE_CONNECT
3117 fl.pipe_connect_acceptable =
3118   sender_host_address && verify_check_host(&pipe_connect_advertise_hosts) == OK;
3119
3120 if (!check_sync())
3121   if (fl.pipe_connect_acceptable)
3122     f.smtp_in_early_pipe_used = TRUE;
3123   else
3124 #else
3125 if (!check_sync())
3126 #endif
3127     {
3128     unsigned n = smtp_inend - smtp_inptr;
3129     if (n > 128) n = 128;
3130
3131     log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol "
3132       "synchronization error (input sent without waiting for greeting): "
3133       "rejected connection from %s input=\"%s\"", host_and_ident(TRUE),
3134       string_printing(string_copyn(smtp_inptr, n)));
3135     smtp_printf("554 SMTP synchronization error\r\n", FALSE);
3136     return FALSE;
3137     }
3138
3139 /* Now output the banner */
3140 /*XXX the ehlo-resp code does its own tls/nontls bit.  Maybe subroutine that? */
3141
3142 smtp_printf("%s",
3143 #ifndef DISABLE_PIPE_CONNECT
3144   fl.pipe_connect_acceptable && pipeline_connect_sends(),
3145 #else
3146   FALSE,
3147 #endif
3148   string_from_gstring(ss));
3149
3150 /* Attempt to see if we sent the banner before the last ACK of the 3-way
3151 handshake arrived.  If so we must have managed a TFO. */
3152
3153 #ifdef TCP_FASTOPEN
3154 if (sender_host_address && !f.sender_host_notsocket) tfo_in_check();
3155 #endif
3156
3157 return TRUE;
3158 }
3159
3160
3161
3162
3163
3164 /*************************************************
3165 *     Handle SMTP syntax and protocol errors     *
3166 *************************************************/
3167
3168 /* Write to the log for SMTP syntax errors in incoming commands, if configured
3169 to do so. Then transmit the error response. The return value depends on the
3170 number of syntax and protocol errors in this SMTP session.
3171
3172 Arguments:
3173   type      error type, given as a log flag bit
3174   code      response code; <= 0 means don't send a response
3175   data      data to reflect in the response (can be NULL)
3176   errmess   the error message
3177
3178 Returns:    -1   limit of syntax/protocol errors NOT exceeded
3179             +1   limit of syntax/protocol errors IS exceeded
3180
3181 These values fit in with the values of the "done" variable in the main
3182 processing loop in smtp_setup_msg(). */
3183
3184 static int
3185 synprot_error(int type, int code, uschar *data, uschar *errmess)
3186 {
3187 int yield = -1;
3188
3189 log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
3190   type == L_smtp_syntax_error ? "syntax" : "protocol",
3191   string_printing(smtp_cmd_buffer), host_and_ident(TRUE), errmess);
3192
3193 if (++synprot_error_count > smtp_max_synprot_errors)
3194   {
3195   yield = 1;
3196   log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3197     "syntax or protocol errors (last command was \"%s\", %s)",
3198     host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
3199     string_from_gstring(s_connhad_log(NULL))
3200     );
3201   }
3202
3203 if (code > 0)
3204   {
3205   smtp_printf("%d%c%s%s%s\r\n", FALSE, code, yield == 1 ? '-' : ' ',
3206     data ? data : US"", data ? US": " : US"", errmess);
3207   if (yield == 1)
3208     smtp_printf("%d Too many syntax or protocol errors\r\n", FALSE, code);
3209   }
3210
3211 return yield;
3212 }
3213
3214
3215
3216
3217 /*************************************************
3218 *    Send SMTP response, possibly multiline      *
3219 *************************************************/
3220
3221 /* There are, it seems, broken clients out there that cannot handle multiline
3222 responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
3223 output nothing for non-final calls, and only the first line for anything else.
3224
3225 Arguments:
3226   code          SMTP code, may involve extended status codes
3227   codelen       length of smtp code; if > 4 there's an ESC
3228   final         FALSE if the last line isn't the final line
3229   msg           message text, possibly containing newlines
3230
3231 Returns:        nothing
3232 */
3233
3234 void
3235 smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
3236 {
3237 int esclen = 0;
3238 uschar *esc = US"";
3239
3240 if (!final && f.no_multiline_responses) return;
3241
3242 if (codelen > 4)
3243   {
3244   esc = code + 4;
3245   esclen = codelen - 4;
3246   }
3247
3248 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
3249 have had the same. Note: this code is also present in smtp_printf(). It would
3250 be tidier to have it only in one place, but when it was added, it was easier to
3251 do it that way, so as not to have to mess with the code for the RCPT command,
3252 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
3253
3254 if (fl.rcpt_in_progress)
3255   {
3256   if (!rcpt_smtp_response)
3257     rcpt_smtp_response = string_copy(msg);
3258   else if (fl.rcpt_smtp_response_same &&
3259            Ustrcmp(rcpt_smtp_response, msg) != 0)
3260     fl.rcpt_smtp_response_same = FALSE;
3261   fl.rcpt_in_progress = FALSE;
3262   }
3263
3264 /* Now output the message, splitting it up into multiple lines if necessary.
3265 We only handle pipelining these responses as far as nonfinal/final groups,
3266 not the whole MAIL/RCPT/DATA response set. */
3267
3268 for (;;)
3269   {
3270   uschar *nl = Ustrchr(msg, '\n');
3271   if (!nl)
3272     {
3273     smtp_printf("%.3s%c%.*s%s\r\n", !final, code, final ? ' ':'-', esclen, esc, msg);
3274     return;
3275     }
3276   else if (nl[1] == 0 || f.no_multiline_responses)
3277     {
3278     smtp_printf("%.3s%c%.*s%.*s\r\n", !final, code, final ? ' ':'-', esclen, esc,
3279       (int)(nl - msg), msg);
3280     return;
3281     }
3282   else
3283     {
3284     smtp_printf("%.3s-%.*s%.*s\r\n", TRUE, code, esclen, esc, (int)(nl - msg), msg);
3285     msg = nl + 1;
3286     Uskip_whitespace(&msg);
3287     }
3288   }
3289 }
3290
3291
3292
3293
3294 /*************************************************
3295 *            Parse user SMTP message             *
3296 *************************************************/
3297
3298 /* This function allows for user messages overriding the response code details
3299 by providing a suitable response code string at the start of the message
3300 user_msg. Check the message for starting with a response code and optionally an
3301 extended status code. If found, check that the first digit is valid, and if so,
3302 change the code pointer and length to use the replacement. An invalid code
3303 causes a panic log; in this case, if the log messages is the same as the user
3304 message, we must also adjust the value of the log message to show the code that
3305 is actually going to be used (the original one).
3306
3307 This function is global because it is called from receive.c as well as within
3308 this module.
3309
3310 Note that the code length returned includes the terminating whitespace
3311 character, which is always included in the regex match.
3312
3313 Arguments:
3314   code          SMTP code, may involve extended status codes
3315   codelen       length of smtp code; if > 4 there's an ESC
3316   msg           message text
3317   log_msg       optional log message, to be adjusted with the new SMTP code
3318   check_valid   if true, verify the response code
3319
3320 Returns:        nothing
3321 */
3322
3323 void
3324 smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg,
3325   BOOL check_valid)
3326 {
3327 uschar * match;
3328 int len;
3329
3330 if (!msg || !*msg || !regex_match(regex_smtp_code, *msg, -1, &match))
3331   return;
3332
3333 len = Ustrlen(match);
3334 if (check_valid && (*msg)[0] != (*code)[0])
3335   {
3336   log_write(0, LOG_MAIN|LOG_PANIC, "configured error code starts with "
3337     "incorrect digit (expected %c) in \"%s\"", (*code)[0], *msg);
3338   if (log_msg && *log_msg == *msg)
3339     *log_msg = string_sprintf("%s %s", *code, *log_msg + len);
3340   }
3341 else
3342   {
3343   *code = *msg;
3344   *codelen = len;    /* Includes final space */
3345   }
3346 *msg += len;         /* Chop the code off the message */
3347 return;
3348 }
3349
3350
3351
3352
3353 /*************************************************
3354 *           Handle an ACL failure                *
3355 *************************************************/
3356
3357 /* This function is called when acl_check() fails. As well as calls from within
3358 this module, it is called from receive.c for an ACL after DATA. It sorts out
3359 logging the incident, and sends the error response. A message containing
3360 newlines is turned into a multiline SMTP response, but for logging, only the
3361 first line is used.
3362
3363 There's a table of default permanent failure response codes to use in
3364 globals.c, along with the table of names. VFRY is special. Despite RFC1123 it
3365 defaults disabled in Exim. However, discussion in connection with RFC 821bis
3366 (aka RFC 2821) has concluded that the response should be 252 in the disabled
3367 state, because there are broken clients that try VRFY before RCPT. A 5xx
3368 response should be given only when the address is positively known to be
3369 undeliverable. Sigh. We return 252 if there is no VRFY ACL or it provides
3370 no explicit code, but if there is one we let it know best.
3371 Also, for ETRN, 458 is given on refusal, and for AUTH, 503.
3372
3373 From Exim 4.63, it is possible to override the response code details by
3374 providing a suitable response code string at the start of the message provided
3375 in user_msg. The code's first digit is checked for validity.
3376
3377 Arguments:
3378   where        where the ACL was called from
3379   rc           the failure code
3380   user_msg     a message that can be included in an SMTP response
3381   log_msg      a message for logging
3382
3383 Returns:     0 in most cases
3384              2 if the failure code was FAIL_DROP, in which case the
3385                SMTP connection should be dropped (this value fits with the
3386                "done" variable in smtp_setup_msg() below)
3387 */
3388
3389 int
3390 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
3391 {
3392 BOOL drop = rc == FAIL_DROP;
3393 int codelen = 3;
3394 uschar *smtp_code;
3395 uschar *lognl;
3396 uschar *sender_info = US"";
3397 uschar *what;
3398
3399 if (drop) rc = FAIL;
3400
3401 /* Set the default SMTP code, and allow a user message to change it. */
3402
3403 smtp_code = rc == FAIL ? acl_wherecodes[where] : US"451";
3404 smtp_message_code(&smtp_code, &codelen, &user_msg, &log_msg,
3405   where != ACL_WHERE_VRFY);
3406
3407 /* We used to have sender_address here; however, there was a bug that was not
3408 updating sender_address after a rewrite during a verify. When this bug was
3409 fixed, sender_address at this point became the rewritten address. I'm not sure
3410 this is what should be logged, so I've changed to logging the unrewritten
3411 address to retain backward compatibility. */
3412
3413 switch (where)
3414   {
3415 #ifdef WITH_CONTENT_SCAN
3416   case ACL_WHERE_MIME:          what = US"during MIME ACL checks";      break;
3417 #endif
3418   case ACL_WHERE_PREDATA:       what = US"DATA";                        break;
3419   case ACL_WHERE_DATA:          what = US"after DATA";                  break;
3420 #ifndef DISABLE_PRDR
3421   case ACL_WHERE_PRDR:          what = US"after DATA PRDR";             break;
3422 #endif
3423   default:
3424     {
3425     uschar * place = smtp_cmd_data ? smtp_cmd_data : US"in \"connect\" ACL";
3426     int lim = 100;
3427
3428     if (where == ACL_WHERE_AUTH)        /* avoid logging auth creds */
3429       {
3430       uschar * s;
3431       for (s = smtp_cmd_data; *s && !isspace(*s); ) s++;
3432       lim = s - smtp_cmd_data;  /* atop after method */
3433       }
3434     what = string_sprintf("%s %.*s", acl_wherenames[where], lim, place);
3435     }
3436   }
3437 switch (where)
3438   {
3439   case ACL_WHERE_RCPT:
3440   case ACL_WHERE_DATA:
3441 #ifdef WITH_CONTENT_SCAN
3442   case ACL_WHERE_MIME:
3443 #endif
3444     sender_info = string_sprintf("F=<%s>%s%s%s%s ",
3445       sender_address_unrewritten ? sender_address_unrewritten : sender_address,
3446       sender_host_authenticated ? US" A="                                    : US"",
3447       sender_host_authenticated ? sender_host_authenticated                  : US"",
3448       sender_host_authenticated && authenticated_id ? US":"                  : US"",
3449       sender_host_authenticated && authenticated_id ? authenticated_id       : US""
3450       );
3451   break;
3452   }
3453
3454 /* If there's been a sender verification failure with a specific message, and
3455 we have not sent a response about it yet, do so now, as a preliminary line for
3456 failures, but not defers. However, always log it for defer, and log it for fail
3457 unless the sender_verify_fail log selector has been turned off. */
3458
3459 if (sender_verified_failed &&
3460     !testflag(sender_verified_failed, af_sverify_told))
3461   {
3462   BOOL save_rcpt_in_progress = fl.rcpt_in_progress;
3463   fl.rcpt_in_progress = FALSE;  /* So as not to treat these as the error */
3464
3465   setflag(sender_verified_failed, af_sverify_told);
3466
3467   if (rc != FAIL || LOGGING(sender_verify_fail))
3468     log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
3469       host_and_ident(TRUE),
3470       ((sender_verified_failed->special_action & 255) == DEFER)? "defer":"fail",
3471       sender_verified_failed->address,
3472       (sender_verified_failed->message == NULL)? US"" :
3473       string_sprintf(": %s", sender_verified_failed->message));
3474
3475   if (rc == FAIL && sender_verified_failed->user_message)
3476     smtp_respond(smtp_code, codelen, FALSE, string_sprintf(
3477         testflag(sender_verified_failed, af_verify_pmfail)?
3478           "Postmaster verification failed while checking <%s>\n%s\n"
3479           "Several RFCs state that you are required to have a postmaster\n"
3480           "mailbox for each mail domain. This host does not accept mail\n"
3481           "from domains whose servers reject the postmaster address."
3482           :
3483         testflag(sender_verified_failed, af_verify_nsfail)?
3484           "Callback setup failed while verifying <%s>\n%s\n"
3485           "The initial connection, or a HELO or MAIL FROM:<> command was\n"
3486           "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
3487           "RFC requirements, and stops you from receiving standard bounce\n"
3488           "messages. This host does not accept mail from domains whose servers\n"
3489           "refuse bounces."
3490           :
3491           "Verification failed for <%s>\n%s",
3492         sender_verified_failed->address,
3493         sender_verified_failed->user_message));
3494
3495   fl.rcpt_in_progress = save_rcpt_in_progress;
3496   }
3497
3498 /* Sort out text for logging */
3499
3500 log_msg = log_msg ? string_sprintf(": %s", log_msg) : US"";
3501 if ((lognl = Ustrchr(log_msg, '\n'))) *lognl = 0;
3502
3503 /* Send permanent failure response to the command, but the code used isn't
3504 always a 5xx one - see comments at the start of this function. If the original
3505 rc was FAIL_DROP we drop the connection and yield 2. */
3506
3507 if (rc == FAIL)
3508   smtp_respond(smtp_code, codelen, TRUE,
3509     user_msg ? user_msg : US"Administrative prohibition");
3510
3511 /* Send temporary failure response to the command. Don't give any details,
3512 unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
3513 verb, and for a header verify when smtp_return_error_details is set.
3514
3515 This conditional logic is all somewhat of a mess because of the odd
3516 interactions between temp_details and return_error_details. One day it should
3517 be re-implemented in a tidier fashion. */
3518
3519 else
3520   if (f.acl_temp_details && user_msg)
3521     {
3522     if (  smtp_return_error_details
3523        && sender_verified_failed
3524        && sender_verified_failed->message
3525        )
3526       smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
3527
3528     smtp_respond(smtp_code, codelen, TRUE, user_msg);
3529     }
3530   else
3531     smtp_respond(smtp_code, codelen, TRUE,
3532       US"Temporary local problem - please try later");
3533
3534 /* Log the incident to the logs that are specified by log_reject_target
3535 (default main, reject). This can be empty to suppress logging of rejections. If
3536 the connection is not forcibly to be dropped, return 0. Otherwise, log why it
3537 is closing if required and return 2.  */
3538
3539 if (log_reject_target != 0)
3540   {
3541 #ifndef DISABLE_TLS
3542   gstring * g = s_tlslog(NULL);
3543   uschar * tls = string_from_gstring(g);
3544   if (!tls) tls = US"";
3545 #else
3546   uschar * tls = US"";
3547 #endif
3548   log_write(where == ACL_WHERE_CONNECT ? L_connection_reject : 0,
3549     log_reject_target, "%s%s%s %s%srejected %s%s",
3550     LOGGING(dnssec) && sender_host_dnssec ? US" DS" : US"",
3551     host_and_ident(TRUE),
3552     tls,
3553     sender_info,
3554     rc == FAIL ? US"" : US"temporarily ",
3555     what, log_msg);
3556   }
3557
3558 if (!drop) return 0;
3559
3560 log_write(L_smtp_connection, LOG_MAIN, "%s closed by DROP in ACL",
3561   smtp_get_connection_info());
3562
3563 /* Run the not-quit ACL, but without any custom messages. This should not be a
3564 problem, because we get here only if some other ACL has issued "drop", and
3565 in that case, *its* custom messages will have been used above. */
3566
3567 smtp_notquit_exit(US"acl-drop", NULL, NULL);
3568 return 2;
3569 }
3570
3571
3572
3573
3574 /*************************************************
3575 *     Handle SMTP exit when QUIT is not given    *
3576 *************************************************/
3577
3578 /* This function provides a logging/statistics hook for when an SMTP connection
3579 is dropped on the floor or the other end goes away. It's a global function
3580 because it's called from receive.c as well as this module. As well as running
3581 the NOTQUIT ACL, if there is one, this function also outputs a final SMTP
3582 response, either with a custom message from the ACL, or using a default. There
3583 is one case, however, when no message is output - after "drop". In that case,
3584 the ACL that obeyed "drop" has already supplied the custom message, and NULL is
3585 passed to this function.
3586
3587 In case things go wrong while processing this function, causing an error that
3588 may re-enter this function, there is a recursion check.
3589
3590 Arguments:
3591   reason          What $smtp_notquit_reason will be set to in the ACL;
3592                     if NULL, the ACL is not run
3593   code            The error code to return as part of the response
3594   defaultrespond  The default message if there's no user_msg
3595
3596 Returns:          Nothing
3597 */
3598
3599 void
3600 smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
3601 {
3602 int rc;
3603 uschar *user_msg = NULL;
3604 uschar *log_msg = NULL;
3605
3606 /* Check for recursive call */
3607
3608 if (fl.smtp_exit_function_called)
3609   {
3610   log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
3611     reason);
3612   return;
3613   }
3614 fl.smtp_exit_function_called = TRUE;
3615
3616 /* Call the not-QUIT ACL, if there is one, unless no reason is given. */
3617
3618 if (acl_smtp_notquit && reason)
3619   {
3620   smtp_notquit_reason = reason;
3621   if ((rc = acl_check(ACL_WHERE_NOTQUIT, NULL, acl_smtp_notquit, &user_msg,
3622                       &log_msg)) == ERROR)
3623     log_write(0, LOG_MAIN|LOG_PANIC, "ACL for not-QUIT returned ERROR: %s",
3624       log_msg);
3625   }
3626
3627 /* If the connection was dropped, we certainly are no longer talking TLS */
3628 tls_in.active.sock = -1;
3629
3630 /* Write an SMTP response if we are expected to give one. As the default
3631 responses are all internal, they should be reasonable size. */
3632
3633 if (code && defaultrespond)
3634   {
3635   if (user_msg)
3636     smtp_respond(code, 3, TRUE, user_msg);
3637   else
3638     {
3639     gstring * g;
3640     va_list ap;
3641
3642     va_start(ap, defaultrespond);
3643     g = string_vformat(NULL, SVFMT_EXTEND|SVFMT_REBUFFER, CS defaultrespond, ap);
3644     va_end(ap);
3645     smtp_printf("%s %s\r\n", FALSE, code, string_from_gstring(g));
3646     }
3647   mac_smtp_fflush();
3648   }
3649 }
3650
3651
3652
3653
3654 /*************************************************
3655 *             Verify HELO argument               *
3656 *************************************************/
3657
3658 /* This function is called if helo_verify_hosts or helo_try_verify_hosts is
3659 matched. It is also called from ACL processing if verify = helo is used and
3660 verification was not previously tried (i.e. helo_try_verify_hosts was not
3661 matched). The result of its processing is to set helo_verified and
3662 helo_verify_failed. These variables should both be FALSE for this function to
3663 be called.
3664
3665 Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
3666 for IPv6 ::ffff: literals.
3667
3668 Argument:   none
3669 Returns:    TRUE if testing was completed;
3670             FALSE on a temporary failure
3671 */
3672
3673 BOOL
3674 smtp_verify_helo(void)
3675 {
3676 BOOL yield = TRUE;
3677
3678 HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
3679   sender_helo_name);
3680
3681 if (sender_helo_name == NULL)
3682   {
3683   HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
3684   }
3685
3686 /* Deal with the case of -bs without an IP address */
3687
3688 else if (sender_host_address == NULL)
3689   {
3690   HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
3691   f.helo_verified = TRUE;
3692   }
3693
3694 /* Deal with the more common case when there is a sending IP address */
3695
3696 else if (sender_helo_name[0] == '[')
3697   {
3698   f.helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
3699     Ustrlen(sender_host_address)) == 0;
3700
3701 #if HAVE_IPV6
3702   if (!f.helo_verified)
3703     {
3704     if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
3705       f.helo_verified = Ustrncmp(sender_helo_name + 1,
3706         sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
3707     }
3708 #endif
3709
3710   HDEBUG(D_receive)
3711     { if (f.helo_verified) debug_printf("matched host address\n"); }
3712   }
3713
3714 /* Do a reverse lookup if one hasn't already given a positive or negative
3715 response. If that fails, or the name doesn't match, try checking with a forward
3716 lookup. */
3717
3718 else
3719   {
3720   if (sender_host_name == NULL && !host_lookup_failed)
3721     yield = host_name_lookup() != DEFER;
3722
3723   /* If a host name is known, check it and all its aliases. */
3724
3725   if (sender_host_name)
3726     if ((f.helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0))
3727       {
3728       sender_helo_dnssec = sender_host_dnssec;
3729       HDEBUG(D_receive) debug_printf("matched host name\n");
3730       }
3731     else
3732       {
3733       uschar **aliases = sender_host_aliases;
3734       while (*aliases)
3735         if ((f.helo_verified = strcmpic(*aliases++, sender_helo_name) == 0))
3736           {
3737           sender_helo_dnssec = sender_host_dnssec;
3738           break;
3739           }
3740
3741       HDEBUG(D_receive) if (f.helo_verified)
3742           debug_printf("matched alias %s\n", *(--aliases));
3743       }
3744
3745   /* Final attempt: try a forward lookup of the helo name */
3746
3747   if (!f.helo_verified)
3748     {
3749     int rc;
3750     host_item h =
3751       {.name = sender_helo_name, .address = NULL, .mx = MX_NONE, .next = NULL};
3752     dnssec_domains d =
3753       {.request = US"*", .require = US""};
3754
3755     HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3756       sender_helo_name);
3757     rc = host_find_bydns(&h, NULL, HOST_FIND_BY_A | HOST_FIND_BY_AAAA,
3758                           NULL, NULL, NULL, &d, NULL, NULL);
3759     if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3760       for (host_item * hh = &h; hh; hh = hh->next)
3761         if (Ustrcmp(hh->address, sender_host_address) == 0)
3762           {
3763           f.helo_verified = TRUE;
3764           if (h.dnssec == DS_YES) sender_helo_dnssec = TRUE;
3765           HDEBUG(D_receive)
3766             debug_printf("IP address for %s matches calling address\n"
3767               "Forward DNS security status: %sverified\n",
3768               sender_helo_name, sender_helo_dnssec ? "" : "un");
3769           break;
3770           }
3771     }
3772   }
3773
3774 if (!f.helo_verified) f.helo_verify_failed = TRUE;  /* We've tried ... */
3775 return yield;
3776 }
3777
3778
3779
3780
3781 /*************************************************
3782 *        Send user response message              *
3783 *************************************************/
3784
3785 /* This function is passed a default response code and a user message. It calls
3786 smtp_message_code() to check and possibly modify the response code, and then
3787 calls smtp_respond() to transmit the response. I put this into a function
3788 just to avoid a lot of repetition.
3789
3790 Arguments:
3791   code         the response code
3792   user_msg     the user message
3793
3794 Returns:       nothing
3795 */
3796
3797 static void
3798 smtp_user_msg(uschar *code, uschar *user_msg)
3799 {
3800 int len = 3;
3801 smtp_message_code(&code, &len, &user_msg, NULL, TRUE);
3802 smtp_respond(code, len, TRUE, user_msg);
3803 }
3804
3805
3806
3807 static int
3808 smtp_in_auth(auth_instance *au, uschar ** smtp_resp, uschar ** errmsg)
3809 {
3810 const uschar *set_id = NULL;
3811 int rc;
3812
3813 /* Set up globals for error messages */
3814
3815 authenticator_name = au->name;
3816 driver_srcfile = au->srcfile;
3817 driver_srcline = au->srcline;
3818
3819 /* Run the checking code, passing the remainder of the command line as
3820 data. Initials the $auth<n> variables as empty. Initialize $0 empty and set
3821 it as the only set numerical variable. The authenticator may set $auth<n>
3822 and also set other numeric variables. The $auth<n> variables are preferred
3823 nowadays; the numerical variables remain for backwards compatibility.
3824
3825 Afterwards, have a go at expanding the set_id string, even if
3826 authentication failed - for bad passwords it can be useful to log the
3827 userid. On success, require set_id to expand and exist, and put it in
3828 authenticated_id. Save this in permanent store, as the working store gets
3829 reset at HELO, RSET, etc. */
3830
3831 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
3832 expand_nmax = 0;
3833 expand_nlength[0] = 0;   /* $0 contains nothing */
3834
3835 rc = (au->info->servercode)(au, smtp_cmd_data);
3836 if (au->set_id) set_id = expand_string(au->set_id);
3837 expand_nmax = -1;        /* Reset numeric variables */
3838 for (int i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;   /* Reset $auth<n> */
3839 driver_srcfile = authenticator_name = NULL; driver_srcline = 0;
3840
3841 /* The value of authenticated_id is stored in the spool file and printed in
3842 log lines. It must not contain binary zeros or newline characters. In
3843 normal use, it never will, but when playing around or testing, this error
3844 can (did) happen. To guard against this, ensure that the id contains only
3845 printing characters. */
3846
3847 if (set_id) set_id = string_printing(set_id);
3848
3849 /* For the non-OK cases, set up additional logging data if set_id
3850 is not empty. */
3851
3852 if (rc != OK)
3853   set_id = set_id && *set_id
3854     ? string_sprintf(" (set_id=%s)", set_id) : US"";
3855
3856 /* Switch on the result */
3857
3858 switch(rc)
3859   {
3860   case OK:
3861     if (!au->set_id || set_id)    /* Complete success */
3862       {
3863       if (set_id) authenticated_id = string_copy_perm(set_id, TRUE);
3864       sender_host_authenticated = au->name;
3865       sender_host_auth_pubname  = au->public_name;
3866       authentication_failed = FALSE;
3867       authenticated_fail_id = NULL;   /* Impossible to already be set? */
3868
3869       received_protocol =
3870         (sender_host_address ? protocols : protocols_local)
3871           [pextend + pauthed + (tls_in.active.sock >= 0 ? pcrpted:0)];
3872       *smtp_resp = *errmsg = US"235 Authentication succeeded";
3873       authenticated_by = au;
3874       break;
3875       }
3876
3877     /* Authentication succeeded, but we failed to expand the set_id string.
3878     Treat this as a temporary error. */
3879
3880     auth_defer_msg = expand_string_message;
3881     /* Fall through */
3882
3883   case DEFER:
3884     if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3885     *smtp_resp = string_sprintf("435 Unable to authenticate at present%s",
3886       auth_defer_user_msg);
3887     *errmsg = string_sprintf("435 Unable to authenticate at present%s: %s",
3888       set_id, auth_defer_msg);
3889     break;
3890
3891   case BAD64:
3892     *smtp_resp = *errmsg = US"501 Invalid base64 data";
3893     break;
3894
3895   case CANCELLED:
3896     *smtp_resp = *errmsg = US"501 Authentication cancelled";
3897     break;
3898
3899   case UNEXPECTED:
3900     *smtp_resp = *errmsg = US"553 Initial data not expected";
3901     break;
3902
3903   case FAIL:
3904     if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3905     *smtp_resp = US"535 Incorrect authentication data";
3906     *errmsg = string_sprintf("535 Incorrect authentication data%s", set_id);
3907     break;
3908
3909   default:
3910     if (set_id) authenticated_fail_id = string_copy_perm(set_id, TRUE);
3911     *smtp_resp = US"435 Internal error";
3912     *errmsg = string_sprintf("435 Internal error%s: return %d from authentication "
3913       "check", set_id, rc);
3914     break;
3915   }
3916
3917 return rc;
3918 }
3919
3920
3921
3922
3923
3924 static int
3925 qualify_recipient(uschar ** recipient, uschar * smtp_cmd_data, uschar * tag)
3926 {
3927 int rd;
3928 if (f.allow_unqualified_recipient || strcmpic(*recipient, US"postmaster") == 0)
3929   {
3930   DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
3931     *recipient);
3932   rd = Ustrlen(recipient) + 1;
3933   /* deconst ok as *recipient was not const */
3934   *recipient = US rewrite_address_qualify(*recipient, TRUE);
3935   return rd;
3936   }
3937 smtp_printf("501 %s: recipient address must contain a domain\r\n", FALSE,
3938   smtp_cmd_data);
3939 log_write(L_smtp_syntax_error,
3940   LOG_MAIN|LOG_REJECT, "unqualified %s rejected: <%s> %s%s",
3941   tag, *recipient, host_and_ident(TRUE), host_lookup_msg);
3942 return 0;
3943 }
3944
3945
3946
3947
3948 static void
3949 smtp_quit_handler(uschar ** user_msgp, uschar ** log_msgp)
3950 {
3951 HAD(SCH_QUIT);
3952 f.smtp_in_quit = TRUE;
3953 incomplete_transaction_log(US"QUIT");
3954 if (  acl_smtp_quit
3955    && acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, user_msgp, log_msgp)
3956         == ERROR)
3957     log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
3958       *log_msgp);
3959
3960 #ifdef EXIM_TCP_CORK
3961 (void) setsockopt(fileno(smtp_out), IPPROTO_TCP, EXIM_TCP_CORK, US &on, sizeof(on));
3962 #endif
3963
3964 if (*user_msgp)
3965   smtp_respond(US"221", 3, TRUE, *user_msgp);
3966 else
3967   smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
3968
3969 #ifdef SERVERSIDE_CLOSE_NOWAIT
3970 # ifndef DISABLE_TLS
3971 tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
3972 # endif
3973
3974 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
3975   smtp_get_connection_info());
3976 #else
3977
3978 # ifndef DISABLE_TLS
3979 tls_close(NULL, TLS_SHUTDOWN_WAIT);
3980 # endif
3981
3982 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
3983   smtp_get_connection_info());
3984
3985 /* Pause, hoping client will FIN first so that they get the TIME_WAIT.
3986 The socket should become readble (though with no data) */
3987
3988 (void) poll_one_fd(fileno(smtp_in), POLLIN, 200);
3989 #endif  /*!SERVERSIDE_CLOSE_NOWAIT*/
3990 }
3991
3992
3993 static void
3994 smtp_rset_handler(void)
3995 {
3996 HAD(SCH_RSET);
3997 incomplete_transaction_log(US"RSET");
3998 smtp_printf("250 Reset OK\r\n", FALSE);
3999 cmd_list[CMD_LIST_RSET].is_mail_cmd = FALSE;
4000 if (chunking_state > CHUNKING_OFFERED)
4001   chunking_state = CHUNKING_OFFERED;
4002 }
4003
4004
4005 static int
4006 expand_mailmax(const uschar * s)
4007 {
4008 if (!(s = expand_cstring(s)))
4009   log_write(0, LOG_MAIN|LOG_PANIC, "failed to expand smtp_accept_max_per_connection");
4010 return *s ? Uatoi(s) : 0;
4011 }
4012
4013 /*************************************************
4014 *       Initialize for SMTP incoming message     *
4015 *************************************************/
4016
4017 /* This function conducts the initial dialogue at the start of an incoming SMTP
4018 message, and builds a list of recipients. However, if the incoming message
4019 is part of a batch (-bS option) a separate function is called since it would
4020 be messy having tests splattered about all over this function. This function
4021 therefore handles the case where interaction is occurring. The input and output
4022 files are set up in smtp_in and smtp_out.
4023
4024 The global recipients_list is set to point to a vector of recipient_item
4025 blocks, whose number is given by recipients_count. This is extended by the
4026 receive_add_recipient() function. The global variable sender_address is set to
4027 the sender's address. The yield is +1 if a message has been successfully
4028 started, 0 if a QUIT command was encountered or the connection was refused from
4029 the particular host, or -1 if the connection was lost.
4030
4031 Argument: none
4032
4033 Returns:  > 0 message successfully started (reached DATA)
4034           = 0 QUIT read or end of file reached or call refused
4035           < 0 lost connection
4036 */
4037
4038 int
4039 smtp_setup_msg(void)
4040 {
4041 int done = 0;
4042 BOOL toomany = FALSE;
4043 BOOL discarded = FALSE;
4044 BOOL last_was_rej_mail = FALSE;
4045 BOOL last_was_rcpt = FALSE;
4046 rmark reset_point = store_mark();
4047
4048 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
4049
4050 /* Reset for start of new message. We allow one RSET not to be counted as a
4051 nonmail command, for those MTAs that insist on sending it between every
4052 message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
4053 TLS between messages (an Exim client may do this if it has messages queued up
4054 for the host). Note: we do NOT reset AUTH at this point. */
4055
4056 reset_point = smtp_reset(reset_point);
4057 message_ended = END_NOTSTARTED;
4058
4059 chunking_state = f.chunking_offered ? CHUNKING_OFFERED : CHUNKING_NOT_OFFERED;
4060
4061 cmd_list[CMD_LIST_RSET].is_mail_cmd = TRUE;
4062 cmd_list[CMD_LIST_HELO].is_mail_cmd = TRUE;
4063 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
4064 #ifndef DISABLE_TLS
4065 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
4066 #endif
4067
4068 if (lwr_receive_getc != NULL)
4069   {
4070   /* This should have already happened, but if we've gotten confused,
4071   force a reset here. */
4072   DEBUG(D_receive) debug_printf("WARNING: smtp_setup_msg had to restore receive functions to lowers\n");
4073   bdat_pop_receive_functions();
4074   }
4075
4076 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
4077
4078 had_command_sigterm = 0;
4079 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
4080
4081 /* Batched SMTP is handled in a different function. */
4082
4083 if (smtp_batched_input) return smtp_setup_batch_msg();
4084
4085 #ifdef TCP_QUICKACK
4086 if (smtp_in)            /* Avoid pure-ACKs while in cmd pingpong phase */
4087   (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
4088           US &off, sizeof(off));
4089 #endif
4090
4091 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
4092 value. The values are 2 larger than the required yield of the function. */
4093
4094 while (done <= 0)
4095   {
4096   const uschar **argv;
4097   uschar *etrn_command;
4098   uschar *etrn_serialize_key;
4099   uschar *errmess;
4100   uschar *log_msg, *smtp_code;
4101   uschar *user_msg = NULL;
4102   uschar *recipient = NULL;
4103   uschar *hello = NULL;
4104   uschar *s, *ss;
4105   BOOL was_rej_mail = FALSE;
4106   BOOL was_rcpt = FALSE;
4107   void (*oldsignal)(int);
4108   pid_t pid;
4109   int start, end, sender_domain, recipient_domain;
4110   int rc;
4111   int c;
4112   uschar *orcpt = NULL;
4113   int dsn_flags;
4114   gstring * g;
4115
4116 #ifdef AUTH_TLS
4117   /* Check once per STARTTLS or SSL-on-connect for a TLS AUTH */
4118   if (  tls_in.active.sock >= 0
4119      && tls_in.peercert
4120      && tls_in.certificate_verified
4121      && cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd
4122      )
4123     {
4124     cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = FALSE;
4125
4126     for (auth_instance * au = auths; au; au = au->next)
4127       if (strcmpic(US"tls", au->driver_name) == 0)
4128         {
4129         if (  acl_smtp_auth
4130            && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4131                       &user_msg, &log_msg)) != OK
4132            )
4133           done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4134         else
4135           {
4136           smtp_cmd_data = NULL;
4137
4138           if (smtp_in_auth(au, &s, &ss) == OK)
4139             { DEBUG(D_auth) debug_printf("tls auth succeeded\n"); }
4140           else
4141             {
4142             DEBUG(D_auth) debug_printf("tls auth not succeeded\n");
4143 #ifndef DISABLE_EVENT
4144              {
4145               uschar * save_name = sender_host_authenticated, * logmsg;
4146               sender_host_authenticated = au->name;
4147               if ((logmsg = event_raise(event_action, US"auth:fail", s, NULL)))
4148                 log_write(0, LOG_MAIN, "%s", logmsg);
4149               sender_host_authenticated = save_name;
4150              }
4151 #endif
4152             }
4153           }
4154         break;
4155         }
4156     }
4157 #endif
4158
4159   switch(smtp_read_command(
4160 #ifndef DISABLE_PIPE_CONNECT
4161           !fl.pipe_connect_acceptable,
4162 #else
4163           TRUE,
4164 #endif
4165           GETC_BUFFER_UNLIMITED))
4166     {
4167     /* The AUTH command is not permitted to occur inside a transaction, and may
4168     occur successfully only once per connection. Actually, that isn't quite
4169     true. When TLS is started, all previous information about a connection must
4170     be discarded, so a new AUTH is permitted at that time.
4171
4172     AUTH may only be used when it has been advertised. However, it seems that
4173     there are clients that send AUTH when it hasn't been advertised, some of
4174     them even doing this after HELO. And there are MTAs that accept this. Sigh.
4175     So there's a get-out that allows this to happen.
4176
4177     AUTH is initially labelled as a "nonmail command" so that one occurrence
4178     doesn't get counted. We change the label here so that multiple failing
4179     AUTHS will eventually hit the nonmail threshold. */
4180
4181     case AUTH_CMD:
4182       HAD(SCH_AUTH);
4183       authentication_failed = TRUE;
4184       cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
4185
4186       if (!fl.auth_advertised && !f.allow_auth_unadvertised)
4187         {
4188         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4189           US"AUTH command used when not advertised");
4190         break;
4191         }
4192       if (sender_host_authenticated)
4193         {
4194         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4195           US"already authenticated");
4196         break;
4197         }
4198       if (sender_address)
4199         {
4200         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4201           US"not permitted in mail transaction");
4202         break;
4203         }
4204
4205       /* Check the ACL */
4206
4207       if (  acl_smtp_auth
4208          && (rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth,
4209                     &user_msg, &log_msg)) != OK
4210          )
4211         {
4212         done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
4213         break;
4214         }
4215
4216       /* Find the name of the requested authentication mechanism. */
4217
4218       s = smtp_cmd_data;
4219       for (; (c = *smtp_cmd_data) && !isspace(c); smtp_cmd_data++)
4220         if (!isalnum(c) && c != '-' && c != '_')
4221           {
4222           done = synprot_error(L_smtp_syntax_error, 501, NULL,
4223             US"invalid character in authentication mechanism name");
4224           goto COMMAND_LOOP;
4225           }
4226
4227       /* If not at the end of the line, we must be at white space. Terminate the
4228       name and move the pointer on to any data that may be present. */
4229
4230       if (*smtp_cmd_data)
4231         {
4232         *smtp_cmd_data++ = 0;
4233         while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
4234         }
4235
4236       /* Search for an authentication mechanism which is configured for use
4237       as a server and which has been advertised (unless, sigh, allow_auth_
4238       unadvertised is set). */
4239
4240         {
4241         auth_instance * au;
4242         uschar * smtp_resp, * errmsg;
4243
4244         for (au = auths; au; au = au->next)
4245           if (strcmpic(s, au->public_name) == 0 && au->server &&
4246               (au->advertised || f.allow_auth_unadvertised))
4247             break;
4248
4249         if (au)
4250           {
4251           int rc = smtp_in_auth(au, &smtp_resp, &errmsg);
4252
4253           smtp_printf("%s\r\n", FALSE, smtp_resp);
4254           if (rc != OK)
4255             {
4256             uschar * logmsg = NULL;
4257 #ifndef DISABLE_EVENT
4258              {uschar * save_name = sender_host_authenticated;
4259               sender_host_authenticated = au->name;
4260               logmsg = event_raise(event_action, US"auth:fail", smtp_resp, NULL);
4261               sender_host_authenticated = save_name;
4262              }
4263 #endif
4264             if (logmsg)
4265               log_write(0, LOG_MAIN|LOG_REJECT, "%s", logmsg);
4266             else
4267               log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
4268                 au->name, host_and_ident(FALSE), errmsg);
4269             }
4270           }
4271         else
4272           done = synprot_error(L_smtp_protocol_error, 504, NULL,
4273             string_sprintf("%s authentication mechanism not supported", s));
4274         }
4275
4276       break;  /* AUTH_CMD */
4277
4278     /* The HELO/EHLO commands are permitted to appear in the middle of a
4279     session as well as at the beginning. They have the effect of a reset in
4280     addition to their other functions. Their absence at the start cannot be
4281     taken to be an error.
4282
4283     RFC 2821 says:
4284
4285       If the EHLO command is not acceptable to the SMTP server, 501, 500,
4286       or 502 failure replies MUST be returned as appropriate.  The SMTP
4287       server MUST stay in the same state after transmitting these replies
4288       that it was in before the EHLO was received.
4289
4290     Therefore, we do not do the reset until after checking the command for
4291     acceptability. This change was made for Exim release 4.11. Previously
4292     it did the reset first. */
4293
4294     case HELO_CMD:
4295       HAD(SCH_HELO);
4296       hello = US"HELO";
4297       fl.esmtp = FALSE;
4298       goto HELO_EHLO;
4299
4300     case EHLO_CMD:
4301       HAD(SCH_EHLO);
4302       hello = US"EHLO";
4303       fl.esmtp = TRUE;
4304
4305     HELO_EHLO:      /* Common code for HELO and EHLO */
4306       cmd_list[CMD_LIST_HELO].is_mail_cmd = FALSE;
4307       cmd_list[CMD_LIST_EHLO].is_mail_cmd = FALSE;
4308
4309       /* Reject the HELO if its argument was invalid or non-existent. A
4310       successful check causes the argument to be saved in malloc store. */
4311
4312       if (!check_helo(smtp_cmd_data))
4313         {
4314         smtp_printf("501 Syntactically invalid %s argument(s)\r\n", FALSE, hello);
4315
4316         log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
4317           "invalid argument(s): %s", hello, host_and_ident(FALSE),
4318           *smtp_cmd_argument == 0 ? US"(no argument given)" :
4319                              string_printing(smtp_cmd_argument));
4320
4321         if (++synprot_error_count > smtp_max_synprot_errors)
4322           {
4323           log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
4324             "syntax or protocol errors (last command was \"%s\", %s)",
4325             host_and_ident(FALSE), string_printing(smtp_cmd_buffer),
4326             string_from_gstring(s_connhad_log(NULL))
4327             );
4328           done = 1;
4329           }
4330
4331         break;
4332         }
4333
4334       /* If sender_host_unknown is true, we have got here via the -bs interface,
4335       not called from inetd. Otherwise, we are running an IP connection and the
4336       host address will be set. If the helo name is the primary name of this
4337       host and we haven't done a reverse lookup, force one now. If helo_verify_required
4338       is set, ensure that the HELO name matches the actual host. If helo_verify
4339       is set, do the same check, but softly. */
4340
4341       if (!f.sender_host_unknown)
4342         {
4343         BOOL old_helo_verified = f.helo_verified;
4344         uschar *p = smtp_cmd_data;
4345
4346         while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
4347         *p = 0;
4348
4349         /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
4350         because otherwise the log can be confusing. */
4351
4352         if (  !sender_host_name
4353            && match_isinlist(sender_helo_name, CUSS &helo_lookup_domains, 0,
4354                 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL) == OK)
4355           (void)host_name_lookup();
4356
4357         /* Rebuild the fullhost info to include the HELO name (and the real name
4358         if it was looked up.) */
4359
4360         host_build_sender_fullhost();  /* Rebuild */
4361         set_process_info("handling%s incoming connection from %s",
4362           tls_in.active.sock >= 0 ? " TLS" : "", host_and_ident(FALSE));
4363
4364         /* Verify if configured. This doesn't give much security, but it does
4365         make some people happy to be able to do it. If helo_verify_required is set,
4366         (host matches helo_verify_hosts) failure forces rejection. If helo_verify
4367         is set (host matches helo_try_verify_hosts), it does not. This is perhaps
4368         now obsolescent, since the verification can now be requested selectively
4369         at ACL time. */
4370
4371         f.helo_verified = f.helo_verify_failed = sender_helo_dnssec = FALSE;
4372         if (fl.helo_verify_required || fl.helo_verify)
4373           {
4374           BOOL tempfail = !smtp_verify_helo();
4375           if (!f.helo_verified)
4376             {
4377             if (fl.helo_verify_required)
4378               {
4379               smtp_printf("%d %s argument does not match calling host\r\n", FALSE,
4380                 tempfail? 451 : 550, hello);
4381               log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
4382                 tempfail? "temporarily " : "",
4383                 hello, sender_helo_name, host_and_ident(FALSE));
4384               f.helo_verified = old_helo_verified;
4385               break;                   /* End of HELO/EHLO processing */
4386               }
4387             HDEBUG(D_all) debug_printf("%s verification failed but host is in "
4388               "helo_try_verify_hosts\n", hello);
4389             }
4390           }
4391         }
4392
4393 #ifdef SUPPORT_SPF
4394       /* set up SPF context */
4395       spf_conn_init(sender_helo_name, sender_host_address);
4396 #endif
4397
4398       /* Apply an ACL check if one is defined; afterwards, recheck
4399       synchronization in case the client started sending in a delay. */
4400
4401       if (acl_smtp_helo)
4402         if ((rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo,
4403                   &user_msg, &log_msg)) != OK)
4404           {
4405           done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
4406           sender_helo_name = NULL;
4407           host_build_sender_fullhost();  /* Rebuild */
4408           break;
4409           }
4410 #ifndef DISABLE_PIPE_CONNECT
4411         else if (!fl.pipe_connect_acceptable && !check_sync())
4412 #else
4413         else if (!check_sync())
4414 #endif
4415           goto SYNC_FAILURE;
4416
4417       /* Generate an OK reply. The default string includes the ident if present,
4418       and also the IP address if present. Reflecting back the ident is intended
4419       as a deterrent to mail forgers. For maximum efficiency, and also because
4420       some broken systems expect each response to be in a single packet, arrange
4421       that the entire reply is sent in one write(). */
4422
4423       fl.auth_advertised = FALSE;
4424       f.smtp_in_pipelining_advertised = FALSE;
4425 #ifndef DISABLE_TLS
4426       fl.tls_advertised = FALSE;
4427 #endif
4428       fl.dsn_advertised = FALSE;
4429 #ifdef SUPPORT_I18N
4430       fl.smtputf8_advertised = FALSE;
4431 #endif
4432
4433       /* Expand the per-connection message count limit option */
4434       smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4435
4436       smtp_code = US"250 ";        /* Default response code plus space*/
4437       if (!user_msg)
4438         {
4439         /* sender_host_name below will be tainted, so save on copy when we hit it */
4440         g = string_get_tainted(24, GET_TAINTED);
4441         g = string_fmt_append(g, "%.3s %s Hello %s%s%s",
4442           smtp_code,
4443           smtp_active_hostname,
4444           sender_ident ? sender_ident : US"",
4445           sender_ident ? US" at " : US"",
4446           sender_host_name ? sender_host_name : sender_helo_name);
4447
4448         if (sender_host_address)
4449           g = string_fmt_append(g, " [%s]", sender_host_address);
4450         }
4451
4452       /* A user-supplied EHLO greeting may not contain more than one line. Note
4453       that the code returned by smtp_message_code() includes the terminating
4454       whitespace character. */
4455
4456       else
4457         {
4458         char * ss;
4459         int codelen = 4;
4460         smtp_message_code(&smtp_code, &codelen, &user_msg, NULL, TRUE);
4461         s = string_sprintf("%.*s%s", codelen, smtp_code, user_msg);
4462         if ((ss = strpbrk(CS s, "\r\n")) != NULL)
4463           {
4464           log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
4465             "newlines: message truncated: %s", string_printing(s));
4466           *ss = 0;
4467           }
4468         g = string_cat(NULL, s);
4469         }
4470
4471       g = string_catn(g, US"\r\n", 2);
4472
4473       /* If we received EHLO, we must create a multiline response which includes
4474       the functions supported. */
4475
4476       if (fl.esmtp)
4477         {
4478         g->s[3] = '-';
4479
4480         /* I'm not entirely happy with this, as an MTA is supposed to check
4481         that it has enough room to accept a message of maximum size before
4482         it sends this. However, there seems little point in not sending it.
4483         The actual size check happens later at MAIL FROM time. By postponing it
4484         till then, VRFY and EXPN can be used after EHLO when space is short. */
4485
4486         if (thismessage_size_limit > 0)
4487           g = string_fmt_append(g, "%.3s-SIZE %d\r\n", smtp_code,
4488             thismessage_size_limit);
4489         else
4490           {
4491           g = string_catn(g, smtp_code, 3);
4492           g = string_catn(g, US"-SIZE\r\n", 7);
4493           }
4494
4495 #ifdef EXPERIMENTAL_ESMTP_LIMITS
4496         if (  (smtp_mailcmd_max > 0 || recipients_max)
4497            && verify_check_host(&limits_advertise_hosts) == OK)
4498           {
4499           g = string_fmt_append(g, "%.3s-LIMITS", smtp_code);
4500           if (smtp_mailcmd_max > 0)
4501             g = string_fmt_append(g, " MAILMAX=%d", smtp_mailcmd_max);
4502           if (recipients_max)
4503             g = string_fmt_append(g, " RCPTMAX=%d", recipients_max);
4504           g = string_catn(g, US"\r\n", 2);
4505           }
4506 #endif
4507
4508         /* Exim does not do protocol conversion or data conversion. It is 8-bit
4509         clean; if it has an 8-bit character in its hand, it just sends it. It
4510         cannot therefore specify 8BITMIME and remain consistent with the RFCs.
4511         However, some users want this option simply in order to stop MUAs
4512         mangling messages that contain top-bit-set characters. It is therefore
4513         provided as an option. */
4514
4515         if (accept_8bitmime)
4516           {
4517           g = string_catn(g, smtp_code, 3);
4518           g = string_catn(g, US"-8BITMIME\r\n", 11);
4519           }
4520
4521         /* Advertise DSN support if configured to do so. */
4522         if (verify_check_host(&dsn_advertise_hosts) != FAIL)
4523           {
4524           g = string_catn(g, smtp_code, 3);
4525           g = string_catn(g, US"-DSN\r\n", 6);
4526           fl.dsn_advertised = TRUE;
4527           }
4528
4529         /* Advertise ETRN/VRFY/EXPN if there's are ACL checking whether a host is
4530         permitted to issue them; a check is made when any host actually tries. */
4531
4532         if (acl_smtp_etrn)
4533           {
4534           g = string_catn(g, smtp_code, 3);
4535           g = string_catn(g, US"-ETRN\r\n", 7);
4536           }
4537         if (acl_smtp_vrfy)
4538           {
4539           g = string_catn(g, smtp_code, 3);
4540           g = string_catn(g, US"-VRFY\r\n", 7);
4541           }
4542         if (acl_smtp_expn)
4543           {
4544           g = string_catn(g, smtp_code, 3);
4545           g = string_catn(g, US"-EXPN\r\n", 7);
4546           }
4547
4548         /* Exim is quite happy with pipelining, so let the other end know that
4549         it is safe to use it, unless advertising is disabled. */
4550
4551         if (  f.pipelining_enable
4552            && verify_check_host(&pipelining_advertise_hosts) == OK)
4553           {
4554           g = string_catn(g, smtp_code, 3);
4555           g = string_catn(g, US"-PIPELINING\r\n", 13);
4556           sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
4557           f.smtp_in_pipelining_advertised = TRUE;
4558
4559 #ifndef DISABLE_PIPE_CONNECT
4560           if (fl.pipe_connect_acceptable)
4561             {
4562             f.smtp_in_early_pipe_advertised = TRUE;
4563             g = string_catn(g, smtp_code, 3);
4564             g = string_catn(g, US"-" EARLY_PIPE_FEATURE_NAME "\r\n", EARLY_PIPE_FEATURE_LEN+3);
4565             }
4566 #endif
4567           }
4568
4569
4570         /* If any server authentication mechanisms are configured, advertise
4571         them if the current host is in auth_advertise_hosts. The problem with
4572         advertising always is that some clients then require users to
4573         authenticate (and aren't configurable otherwise) even though it may not
4574         be necessary (e.g. if the host is in host_accept_relay).
4575
4576         RFC 2222 states that SASL mechanism names contain only upper case
4577         letters, so output the names in upper case, though we actually recognize
4578         them in either case in the AUTH command. */
4579
4580         if (  auths
4581 #ifdef AUTH_TLS
4582            && !sender_host_authenticated
4583 #endif
4584            && verify_check_host(&auth_advertise_hosts) == OK
4585            )
4586           {
4587           BOOL first = TRUE;
4588           for (auth_instance * au = auths; au; au = au->next)
4589             {
4590             au->advertised = FALSE;
4591             if (au->server)
4592               {
4593               DEBUG(D_auth+D_expand) debug_printf_indent(
4594                 "Evaluating advertise_condition for %s %s athenticator\n",
4595                 au->name, au->public_name);
4596               if (  !au->advertise_condition
4597                  || expand_check_condition(au->advertise_condition, au->name,
4598                         US"authenticator")
4599                  )
4600                 {
4601                 int saveptr;
4602                 if (first)
4603                   {
4604                   g = string_catn(g, smtp_code, 3);
4605                   g = string_catn(g, US"-AUTH", 5);
4606                   first = FALSE;
4607                   fl.auth_advertised = TRUE;
4608                   }
4609                 saveptr = g->ptr;
4610                 g = string_catn(g, US" ", 1);
4611                 g = string_cat (g, au->public_name);
4612                 while (++saveptr < g->ptr) g->s[saveptr] = toupper(g->s[saveptr]);
4613                 au->advertised = TRUE;
4614                 }
4615               }
4616             }
4617
4618           if (!first) g = string_catn(g, US"\r\n", 2);
4619           }
4620
4621         /* RFC 3030 CHUNKING */
4622
4623         if (verify_check_host(&chunking_advertise_hosts) != FAIL)
4624           {
4625           g = string_catn(g, smtp_code, 3);
4626           g = string_catn(g, US"-CHUNKING\r\n", 11);
4627           f.chunking_offered = TRUE;
4628           chunking_state = CHUNKING_OFFERED;
4629           }
4630
4631         /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
4632         if it has been included in the binary, and the host matches
4633         tls_advertise_hosts. We must *not* advertise if we are already in a
4634         secure connection. */
4635
4636 #ifndef DISABLE_TLS
4637         if (tls_in.active.sock < 0 &&
4638             verify_check_host(&tls_advertise_hosts) != FAIL)
4639           {
4640           g = string_catn(g, smtp_code, 3);
4641           g = string_catn(g, US"-STARTTLS\r\n", 11);
4642           fl.tls_advertised = TRUE;
4643           }
4644 #endif
4645
4646 #ifndef DISABLE_PRDR
4647         /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
4648         if (prdr_enable)
4649           {
4650           g = string_catn(g, smtp_code, 3);
4651           g = string_catn(g, US"-PRDR\r\n", 7);
4652           }
4653 #endif
4654
4655 #ifdef SUPPORT_I18N
4656         if (  accept_8bitmime
4657            && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
4658           {
4659           g = string_catn(g, smtp_code, 3);
4660           g = string_catn(g, US"-SMTPUTF8\r\n", 11);
4661           fl.smtputf8_advertised = TRUE;
4662           }
4663 #endif
4664
4665         /* Finish off the multiline reply with one that is always available. */
4666
4667         g = string_catn(g, smtp_code, 3);
4668         g = string_catn(g, US" HELP\r\n", 7);
4669         }
4670
4671       /* Terminate the string (for debug), write it, and note that HELO/EHLO
4672       has been seen. */
4673
4674 #ifndef DISABLE_TLS
4675       if (tls_in.active.sock >= 0)
4676         (void)tls_write(NULL, g->s, g->ptr,
4677 # ifndef DISABLE_PIPE_CONNECT
4678                         fl.pipe_connect_acceptable && pipeline_connect_sends());
4679 # else
4680                         FALSE);
4681 # endif
4682       else
4683 #endif
4684         (void) fwrite(g->s, 1, g->ptr, smtp_out);
4685
4686       DEBUG(D_receive) for (const uschar * t, * s = string_from_gstring(g);
4687                             s && (t = Ustrchr(s, '\r'));
4688                             s = t + 2)                          /* \r\n */
4689           debug_printf("%s %.*s\n",
4690                         s == g->s ? "SMTP>>" : "      ",
4691                         (int)(t - s), s);
4692       fl.helo_seen = TRUE;
4693
4694       /* Reset the protocol and the state, abandoning any previous message. */
4695       received_protocol =
4696         (sender_host_address ? protocols : protocols_local)
4697           [ (fl.esmtp
4698             ? pextend + (sender_host_authenticated ? pauthed : 0)
4699             : pnormal)
4700           + (tls_in.active.sock >= 0 ? pcrpted : 0)
4701           ];
4702       cancel_cutthrough_connection(TRUE, US"sent EHLO response");
4703       reset_point = smtp_reset(reset_point);
4704       toomany = FALSE;
4705       break;   /* HELO/EHLO */
4706
4707
4708     /* The MAIL command requires an address as an operand. All we do
4709     here is to parse it for syntactic correctness. The form "<>" is
4710     a special case which converts into an empty string. The start/end
4711     pointers in the original are not used further for this address, as
4712     it is the canonical extracted address which is all that is kept. */
4713
4714     case MAIL_CMD:
4715       HAD(SCH_MAIL);
4716       smtp_mailcmd_count++;              /* Count for limit and ratelimit */
4717       message_start();
4718       was_rej_mail = TRUE;               /* Reset if accepted */
4719       env_mail_type_t * mail_args;       /* Sanity check & validate args */
4720
4721       if (!fl.helo_seen)
4722         if (  fl.helo_verify_required
4723            || verify_check_host(&hosts_require_helo) == OK)
4724           {
4725           smtp_printf("503 HELO or EHLO required\r\n", FALSE);
4726           log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
4727             "HELO/EHLO given", host_and_ident(FALSE));
4728           break;
4729           }
4730         else if (smtp_mailcmd_max < 0)
4731           smtp_mailcmd_max = expand_mailmax(smtp_accept_max_per_connection);
4732
4733       if (sender_address)
4734         {
4735         done = synprot_error(L_smtp_protocol_error, 503, NULL,
4736           US"sender already given");
4737         break;
4738         }
4739
4740       if (!*smtp_cmd_data)
4741         {
4742         done = synprot_error(L_smtp_protocol_error, 501, NULL,
4743           US"MAIL must have an address operand");
4744         break;
4745         }
4746
4747       /* Check to see if the limit for messages per connection would be
4748       exceeded by accepting further messages. */
4749
4750       if (smtp_mailcmd_max > 0 && smtp_mailcmd_count > smtp_mailcmd_max)
4751         {
4752         smtp_printf("421 too many messages in this connection\r\n", FALSE);
4753         log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
4754           "messages in one connection", host_and_ident(TRUE));
4755         break;
4756         }
4757
4758       /* Reset for start of message - even if this is going to fail, we
4759       obviously need to throw away any previous data. */
4760
4761       cancel_cutthrough_connection(TRUE, US"MAIL received");
4762       reset_point = smtp_reset(reset_point);
4763       toomany = FALSE;
4764       sender_data = recipient_data = NULL;
4765
4766       /* Loop, checking for ESMTP additions to the MAIL FROM command. */
4767
4768       if (fl.esmtp) for(;;)
4769         {
4770         uschar *name, *value, *end;
4771         unsigned long int size;
4772         BOOL arg_error = FALSE;
4773
4774         if (!extract_option(&name, &value)) break;
4775
4776         for (mail_args = env_mail_type_list;
4777              mail_args->value != ENV_MAIL_OPT_NULL;
4778              mail_args++
4779             )
4780           if (strcmpic(name, mail_args->name) == 0)
4781             break;
4782         if (mail_args->need_value && strcmpic(value, US"") == 0)
4783           break;
4784
4785         switch(mail_args->value)
4786           {
4787           /* Handle SIZE= by reading the value. We don't do the check till later,
4788           in order to be able to log the sender address on failure. */
4789           case ENV_MAIL_OPT_SIZE:
4790             if (((size = Ustrtoul(value, &end, 10)), *end == 0))
4791               {
4792               if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
4793                 size = INT_MAX;
4794               message_size = (int)size;
4795               }
4796             else
4797               arg_error = TRUE;
4798             break;
4799
4800           /* If this session was initiated with EHLO and accept_8bitmime is set,
4801           Exim will have indicated that it supports the BODY=8BITMIME option. In
4802           fact, it does not support this according to the RFCs, in that it does not
4803           take any special action for forwarding messages containing 8-bit
4804           characters. That is why accept_8bitmime is not the default setting, but
4805           some sites want the action that is provided. We recognize both "8BITMIME"
4806           and "7BIT" as body types, but take no action. */
4807           case ENV_MAIL_OPT_BODY:
4808             if (accept_8bitmime) {
4809               if (strcmpic(value, US"8BITMIME") == 0)
4810                 body_8bitmime = 8;
4811               else if (strcmpic(value, US"7BIT") == 0)
4812                 body_8bitmime = 7;
4813               else
4814                 {
4815                 body_8bitmime = 0;
4816                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4817                   US"invalid data for BODY");
4818                 goto COMMAND_LOOP;
4819                 }
4820               DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
4821               break;
4822             }
4823             arg_error = TRUE;
4824             break;
4825
4826           /* Handle the two DSN options, but only if configured to do so (which
4827           will have caused "DSN" to be given in the EHLO response). The code itself
4828           is included only if configured in at build time. */
4829
4830           case ENV_MAIL_OPT_RET:
4831             if (fl.dsn_advertised)
4832               {
4833               /* Check if RET has already been set */
4834               if (dsn_ret > 0)
4835                 {
4836                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4837                   US"RET can be specified once only");
4838                 goto COMMAND_LOOP;
4839                 }
4840               dsn_ret = strcmpic(value, US"HDRS") == 0
4841                 ? dsn_ret_hdrs
4842                 : strcmpic(value, US"FULL") == 0
4843                 ? dsn_ret_full
4844                 : 0;
4845               DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
4846               /* Check for invalid invalid value, and exit with error */
4847               if (dsn_ret == 0)
4848                 {
4849                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4850                   US"Value for RET is invalid");
4851                 goto COMMAND_LOOP;
4852                 }
4853               }
4854             break;
4855           case ENV_MAIL_OPT_ENVID:
4856             if (fl.dsn_advertised)
4857               {
4858               /* Check if the dsn envid has been already set */
4859               if (dsn_envid)
4860                 {
4861                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4862                   US"ENVID can be specified once only");
4863                 goto COMMAND_LOOP;
4864                 }
4865               dsn_envid = string_copy(value);
4866               DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
4867               }
4868             break;
4869
4870           /* Handle the AUTH extension. If the value given is not "<>" and either
4871           the ACL says "yes" or there is no ACL but the sending host is
4872           authenticated, we set it up as the authenticated sender. However, if the
4873           authenticator set a condition to be tested, we ignore AUTH on MAIL unless
4874           the condition is met. The value of AUTH is an xtext, which means that +,
4875           = and cntrl chars are coded in hex; however "<>" is unaffected by this
4876           coding. */
4877           case ENV_MAIL_OPT_AUTH:
4878             if (Ustrcmp(value, "<>") != 0)
4879               {
4880               int rc;
4881               uschar *ignore_msg;
4882
4883               if (auth_xtextdecode(value, &authenticated_sender) < 0)
4884                 {
4885                 /* Put back terminator overrides for error message */
4886                 value[-1] = '=';
4887                 name[-1] = ' ';
4888                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4889                   US"invalid data for AUTH");
4890                 goto COMMAND_LOOP;
4891                 }
4892               if (!acl_smtp_mailauth)
4893                 {
4894                 ignore_msg = US"client not authenticated";
4895                 rc = sender_host_authenticated ? OK : FAIL;
4896                 }
4897               else
4898                 {
4899                 ignore_msg = US"rejected by ACL";
4900                 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
4901                   &user_msg, &log_msg);
4902                 }
4903
4904               switch (rc)
4905                 {
4906                 case OK:
4907                   if (authenticated_by == NULL ||
4908                       authenticated_by->mail_auth_condition == NULL ||
4909                       expand_check_condition(authenticated_by->mail_auth_condition,
4910                           authenticated_by->name, US"authenticator"))
4911                     break;     /* Accept the AUTH */
4912
4913                   ignore_msg = US"server_mail_auth_condition failed";
4914                   if (authenticated_id != NULL)
4915                     ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
4916                       ignore_msg, authenticated_id);
4917
4918                 /* Fall through */
4919
4920                 case FAIL:
4921                   authenticated_sender = NULL;
4922                   log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
4923                     value, host_and_ident(TRUE), ignore_msg);
4924                   break;
4925
4926                 /* Should only get DEFER or ERROR here. Put back terminator
4927                 overrides for error message */
4928
4929                 default:
4930                   value[-1] = '=';
4931                   name[-1] = ' ';
4932                   (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
4933                     log_msg);
4934                   goto COMMAND_LOOP;
4935                 }
4936               }
4937               break;
4938
4939 #ifndef DISABLE_PRDR
4940           case ENV_MAIL_OPT_PRDR:
4941             if (prdr_enable)
4942               prdr_requested = TRUE;
4943             break;
4944 #endif
4945
4946 #ifdef SUPPORT_I18N
4947           case ENV_MAIL_OPT_UTF8:
4948             if (!fl.smtputf8_advertised)
4949               {
4950               done = synprot_error(L_smtp_syntax_error, 501, NULL,
4951                 US"SMTPUTF8 used when not advertised");
4952               goto COMMAND_LOOP;
4953               }
4954
4955             DEBUG(D_receive) debug_printf("smtputf8 requested\n");
4956             message_smtputf8 = allow_utf8_domains = TRUE;
4957             if (Ustrncmp(received_protocol, US"utf8", 4) != 0)
4958               {
4959               int old_pool = store_pool;
4960               store_pool = POOL_PERM;
4961               received_protocol = string_sprintf("utf8%s", received_protocol);
4962               store_pool = old_pool;
4963               }
4964             break;
4965 #endif
4966
4967           /* No valid option. Stick back the terminator characters and break
4968           the loop.  Do the name-terminator second as extract_option sets
4969           value==name when it found no equal-sign.
4970           An error for a malformed address will occur. */
4971           case ENV_MAIL_OPT_NULL:
4972             value[-1] = '=';
4973             name[-1] = ' ';
4974             arg_error = TRUE;
4975             break;
4976
4977           default:  assert(0);
4978           }
4979         /* Break out of for loop if switch() had bad argument or
4980            when start of the email address is reached */
4981         if (arg_error) break;
4982         }
4983
4984       /* If we have passed the threshold for rate limiting, apply the current
4985       delay, and update it for next time, provided this is a limited host. */
4986
4987       if (smtp_mailcmd_count > smtp_rlm_threshold &&
4988           verify_check_host(&smtp_ratelimit_hosts) == OK)
4989         {
4990         DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
4991           smtp_delay_mail/1000.0);
4992         millisleep((int)smtp_delay_mail);
4993         smtp_delay_mail *= smtp_rlm_factor;
4994         if (smtp_delay_mail > (double)smtp_rlm_limit)
4995           smtp_delay_mail = (double)smtp_rlm_limit;
4996         }
4997
4998       /* Now extract the address, first applying any SMTP-time rewriting. The
4999       TRUE flag allows "<>" as a sender address. */
5000
5001       raw_sender = rewrite_existflags & rewrite_smtp
5002         /* deconst ok as smtp_cmd_data was not const */
5003         ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
5004                       global_rewrite_rules)
5005         : smtp_cmd_data;
5006
5007       raw_sender =
5008         parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
5009           TRUE);
5010
5011       if (!raw_sender)
5012         {
5013         done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5014         break;
5015         }
5016
5017       sender_address = raw_sender;
5018
5019       /* If there is a configured size limit for mail, check that this message
5020       doesn't exceed it. The check is postponed to this point so that the sender
5021       can be logged. */
5022
5023       if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
5024         {
5025         smtp_printf("552 Message size exceeds maximum permitted\r\n", FALSE);
5026         log_write(L_size_reject,
5027             LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
5028             "message too big: size%s=%d max=%d",
5029             sender_address,
5030             host_and_ident(TRUE),
5031             (message_size == INT_MAX)? ">" : "",
5032             message_size,
5033             thismessage_size_limit);
5034         sender_address = NULL;
5035         break;
5036         }
5037
5038       /* Check there is enough space on the disk unless configured not to.
5039       When smtp_check_spool_space is set, the check is for thismessage_size_limit
5040       plus the current message - i.e. we accept the message only if it won't
5041       reduce the space below the threshold. Add 5000 to the size to allow for
5042       overheads such as the Received: line and storing of recipients, etc.
5043       By putting the check here, even when SIZE is not given, it allow VRFY
5044       and EXPN etc. to be used when space is short. */
5045
5046       if (!receive_check_fs(
5047            smtp_check_spool_space && message_size >= 0
5048               ? message_size + 5000 : 0))
5049         {
5050         smtp_printf("452 Space shortage, please try later\r\n", FALSE);
5051         sender_address = NULL;
5052         break;
5053         }
5054
5055       /* If sender_address is unqualified, reject it, unless this is a locally
5056       generated message, or the sending host or net is permitted to send
5057       unqualified addresses - typically local machines behaving as MUAs -
5058       in which case just qualify the address. The flag is set above at the start
5059       of the SMTP connection. */
5060
5061       if (!sender_domain && *sender_address)
5062         if (f.allow_unqualified_sender)
5063           {
5064           sender_domain = Ustrlen(sender_address) + 1;
5065           /* deconst ok as sender_address was not const */
5066           sender_address = US rewrite_address_qualify(sender_address, FALSE);
5067           DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
5068             raw_sender);
5069           }
5070         else
5071           {
5072           smtp_printf("501 %s: sender address must contain a domain\r\n", FALSE,
5073             smtp_cmd_data);
5074           log_write(L_smtp_syntax_error,
5075             LOG_MAIN|LOG_REJECT,
5076             "unqualified sender rejected: <%s> %s%s",
5077             raw_sender,
5078             host_and_ident(TRUE),
5079             host_lookup_msg);
5080           sender_address = NULL;
5081           break;
5082           }
5083
5084       /* Apply an ACL check if one is defined, before responding. Afterwards,
5085       when pipelining is not advertised, do another sync check in case the ACL
5086       delayed and the client started sending in the meantime. */
5087
5088       if (acl_smtp_mail)
5089         {
5090         rc = acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
5091         if (rc == OK && !f.smtp_in_pipelining_advertised && !check_sync())
5092           goto SYNC_FAILURE;
5093         }
5094       else
5095         rc = OK;
5096
5097       if (rc == OK || rc == DISCARD)
5098         {
5099         BOOL more = pipeline_response();
5100
5101         if (!user_msg)
5102           smtp_printf("%s%s%s", more, US"250 OK",
5103                     #ifndef DISABLE_PRDR
5104                       prdr_requested ? US", PRDR Requested" : US"",
5105                     #else
5106                       US"",
5107                     #endif
5108                       US"\r\n");
5109         else
5110           {
5111         #ifndef DISABLE_PRDR
5112           if (prdr_requested)
5113              user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
5114         #endif
5115           smtp_user_msg(US"250", user_msg);
5116           }
5117         smtp_delay_rcpt = smtp_rlr_base;
5118         f.recipients_discarded = (rc == DISCARD);
5119         was_rej_mail = FALSE;
5120         }
5121       else
5122         {
5123         done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
5124         sender_address = NULL;
5125         }
5126       break;
5127
5128
5129     /* The RCPT command requires an address as an operand. There may be any
5130     number of RCPT commands, specifying multiple recipients. We build them all
5131     into a data structure. The start/end values given by parse_extract_address
5132     are not used, as we keep only the extracted address. */
5133
5134     case RCPT_CMD:
5135       HAD(SCH_RCPT);
5136       /* We got really to many recipients. A check against configured
5137       limits is done later */
5138       if (rcpt_count < 0 || rcpt_count >= INT_MAX/2)
5139         log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Too many recipients: %d", rcpt_count);
5140       rcpt_count++;
5141       was_rcpt = fl.rcpt_in_progress = TRUE;
5142
5143       /* There must be a sender address; if the sender was rejected and
5144       pipelining was advertised, we assume the client was pipelining, and do not
5145       count this as a protocol error. Reset was_rej_mail so that further RCPTs
5146       get the same treatment. */
5147
5148       if (!sender_address)
5149         {
5150         if (f.smtp_in_pipelining_advertised && last_was_rej_mail)
5151           {
5152           smtp_printf("503 sender not yet given\r\n", FALSE);
5153           was_rej_mail = TRUE;
5154           }
5155         else
5156           {
5157           done = synprot_error(L_smtp_protocol_error, 503, NULL,
5158             US"sender not yet given");
5159           was_rcpt = FALSE;             /* Not a valid RCPT */
5160           }
5161         rcpt_fail_count++;
5162         break;
5163         }
5164
5165       /* Check for an operand */
5166
5167       if (!smtp_cmd_data[0])
5168         {
5169         done = synprot_error(L_smtp_syntax_error, 501, NULL,
5170           US"RCPT must have an address operand");
5171         rcpt_fail_count++;
5172         break;
5173         }
5174
5175       /* Set the DSN flags orcpt and dsn_flags from the session*/
5176       orcpt = NULL;
5177       dsn_flags = 0;
5178
5179       if (fl.esmtp) for(;;)
5180         {
5181         uschar *name, *value;
5182
5183         if (!extract_option(&name, &value))
5184           break;
5185
5186         if (fl.dsn_advertised && strcmpic(name, US"ORCPT") == 0)
5187           {
5188           /* Check whether orcpt has been already set */
5189           if (orcpt)
5190             {
5191             done = synprot_error(L_smtp_syntax_error, 501, NULL,
5192               US"ORCPT can be specified once only");
5193             goto COMMAND_LOOP;
5194             }
5195           orcpt = string_copy(value);
5196           DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
5197           }
5198
5199         else if (fl.dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
5200           {
5201           /* Check if the notify flags have been already set */
5202           if (dsn_flags > 0)
5203             {
5204             done = synprot_error(L_smtp_syntax_error, 501, NULL,
5205                 US"NOTIFY can be specified once only");
5206             goto COMMAND_LOOP;
5207             }
5208           if (strcmpic(value, US"NEVER") == 0)
5209             dsn_flags |= rf_notify_never;
5210           else
5211             {
5212             uschar *p = value;
5213             while (*p != 0)
5214               {
5215               uschar *pp = p;
5216               while (*pp != 0 && *pp != ',') pp++;
5217               if (*pp == ',') *pp++ = 0;
5218               if (strcmpic(p, US"SUCCESS") == 0)
5219                 {
5220                 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
5221                 dsn_flags |= rf_notify_success;
5222                 }
5223               else if (strcmpic(p, US"FAILURE") == 0)
5224                 {
5225                 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
5226                 dsn_flags |= rf_notify_failure;
5227                 }
5228               else if (strcmpic(p, US"DELAY") == 0)
5229                 {
5230                 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
5231                 dsn_flags |= rf_notify_delay;
5232                 }
5233               else
5234                 {
5235                 /* Catch any strange values */
5236                 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5237                   US"Invalid value for NOTIFY parameter");
5238                 goto COMMAND_LOOP;
5239                 }
5240               p = pp;
5241               }
5242               DEBUG(D_receive) debug_printf("DSN Flags: %x\n", dsn_flags);
5243             }
5244           }
5245
5246         /* Unknown option. Stick back the terminator characters and break
5247         the loop. An error for a malformed address will occur. */
5248
5249         else
5250           {
5251           DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
5252           name[-1] = ' ';
5253           value[-1] = '=';
5254           break;
5255           }
5256         }
5257
5258       /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
5259       as a recipient address */
5260
5261       recipient = rewrite_existflags & rewrite_smtp
5262         /* deconst ok as smtp_cmd_data was not const */
5263         ? US rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
5264             global_rewrite_rules)
5265         : smtp_cmd_data;
5266
5267       if (!(recipient = parse_extract_address(recipient, &errmess, &start, &end,
5268         &recipient_domain, FALSE)))
5269         {
5270         done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
5271         rcpt_fail_count++;
5272         break;
5273         }
5274
5275       /* If the recipient address is unqualified, reject it, unless this is a
5276       locally generated message. However, unqualified addresses are permitted
5277       from a configured list of hosts and nets - typically when behaving as
5278       MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
5279       really. The flag is set at the start of the SMTP connection.
5280
5281       RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
5282       assumed this meant "reserved local part", but the revision of RFC 821 and
5283       friends now makes it absolutely clear that it means *mailbox*. Consequently
5284       we must always qualify this address, regardless. */
5285
5286       if (!recipient_domain)
5287         if (!(recipient_domain = qualify_recipient(&recipient, smtp_cmd_data,
5288                                     US"recipient")))
5289           {
5290           rcpt_fail_count++;
5291           break;
5292           }
5293
5294       /* Check maximum allowed */
5295
5296       if (rcpt_count+1 < 0 || rcpt_count > recipients_max && recipients_max > 0)
5297         {
5298         if (recipients_max_reject)
5299           {
5300           rcpt_fail_count++;
5301           smtp_printf("552 too many recipients\r\n", FALSE);
5302           if (!toomany)
5303             log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
5304               "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
5305           }
5306         else
5307           {
5308           rcpt_defer_count++;
5309           smtp_printf("452 too many recipients\r\n", FALSE);
5310           if (!toomany)
5311             log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
5312               "temporarily rejected: sender=<%s> %s", sender_address,
5313               host_and_ident(TRUE));
5314           }
5315
5316         toomany = TRUE;
5317         break;
5318         }
5319
5320       /* If we have passed the threshold for rate limiting, apply the current
5321       delay, and update it for next time, provided this is a limited host. */
5322
5323       if (rcpt_count > smtp_rlr_threshold &&
5324           verify_check_host(&smtp_ratelimit_hosts) == OK)
5325         {
5326         DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
5327           smtp_delay_rcpt/1000.0);
5328         millisleep((int)smtp_delay_rcpt);
5329         smtp_delay_rcpt *= smtp_rlr_factor;
5330         if (smtp_delay_rcpt > (double)smtp_rlr_limit)
5331           smtp_delay_rcpt = (double)smtp_rlr_limit;
5332         }
5333
5334       /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
5335       for them. Otherwise, check the access control list for this recipient. As
5336       there may be a delay in this, re-check for a synchronization error
5337       afterwards, unless pipelining was advertised. */
5338
5339       if (f.recipients_discarded)
5340         rc = DISCARD;
5341       else
5342         if (  (rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
5343                       &log_msg)) == OK
5344            && !f.smtp_in_pipelining_advertised && !check_sync())
5345           goto SYNC_FAILURE;
5346
5347       /* The ACL was happy */
5348
5349       if (rc == OK)
5350         {
5351         BOOL more = pipeline_response();
5352
5353         if (user_msg)
5354           smtp_user_msg(US"250", user_msg);
5355         else
5356           smtp_printf("250 Accepted\r\n", more);
5357         receive_add_recipient(recipient, -1);
5358
5359         /* Set the dsn flags in the recipients_list */
5360         recipients_list[recipients_count-1].orcpt = orcpt;
5361         recipients_list[recipients_count-1].dsn_flags = dsn_flags;
5362
5363         /* DEBUG(D_receive) debug_printf("DSN: orcpt: %s  flags: %d\n",
5364           recipients_list[recipients_count-1].orcpt,
5365           recipients_list[recipients_count-1].dsn_flags); */
5366         }
5367
5368       /* The recipient was discarded */
5369
5370       else if (rc == DISCARD)
5371         {
5372         if (user_msg)
5373           smtp_user_msg(US"250", user_msg);
5374         else
5375           smtp_printf("250 Accepted\r\n", FALSE);
5376         rcpt_fail_count++;
5377         discarded = TRUE;
5378         log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> RCPT %s: "
5379           "discarded by %s ACL%s%s", host_and_ident(TRUE),
5380           sender_address_unrewritten ? sender_address_unrewritten : sender_address,
5381           smtp_cmd_argument, f.recipients_discarded ? "MAIL" : "RCPT",
5382           log_msg ? US": " : US"", log_msg ? log_msg : US"");
5383         }
5384
5385       /* Either the ACL failed the address, or it was deferred. */
5386
5387       else
5388         {
5389         if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
5390         done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
5391         }
5392       break;
5393
5394
5395     /* The DATA command is legal only if it follows successful MAIL FROM
5396     and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
5397     not counted as a protocol error if it follows RCPT (which must have been
5398     rejected if there are no recipients.) This function is complete when a
5399     valid DATA command is encountered.
5400
5401     Note concerning the code used: RFC 2821 says this:
5402
5403      -  If there was no MAIL, or no RCPT, command, or all such commands
5404         were rejected, the server MAY return a "command out of sequence"
5405         (503) or "no valid recipients" (554) reply in response to the
5406         DATA command.
5407
5408     The example in the pipelining RFC 2920 uses 554, but I use 503 here
5409     because it is the same whether pipelining is in use or not.
5410
5411     If all the RCPT commands that precede DATA provoked the same error message
5412     (often indicating some kind of system error), it is helpful to include it
5413     with the DATA rejection (an idea suggested by Tony Finch). */
5414
5415     case BDAT_CMD:
5416       {
5417       int n;
5418
5419       HAD(SCH_BDAT);
5420       if (chunking_state != CHUNKING_OFFERED)
5421         {
5422         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5423           US"BDAT command used when CHUNKING not advertised");
5424         break;
5425         }
5426
5427       /* grab size, endmarker */
5428
5429       if (sscanf(CS smtp_cmd_data, "%u %n", &chunking_datasize, &n) < 1)
5430         {
5431         done = synprot_error(L_smtp_protocol_error, 501, NULL,
5432           US"missing size for BDAT command");
5433         break;
5434         }
5435       chunking_state = strcmpic(smtp_cmd_data+n, US"LAST") == 0
5436         ? CHUNKING_LAST : CHUNKING_ACTIVE;
5437       chunking_data_left = chunking_datasize;
5438       DEBUG(D_receive) debug_printf("chunking state %d, %d bytes\n",
5439                                     (int)chunking_state, chunking_data_left);
5440
5441       f.bdat_readers_wanted = TRUE; /* FIXME: redundant vs chunking_state? */
5442       f.dot_ends = FALSE;
5443
5444       goto DATA_BDAT;
5445       }
5446
5447     case DATA_CMD:
5448       HAD(SCH_DATA);
5449       f.dot_ends = TRUE;
5450       f.bdat_readers_wanted = FALSE;
5451
5452     DATA_BDAT:          /* Common code for DATA and BDAT */
5453 #ifndef DISABLE_PIPE_CONNECT
5454       fl.pipe_connect_acceptable = FALSE;
5455 #endif
5456       if (!discarded && recipients_count <= 0)
5457         {
5458         if (fl.rcpt_smtp_response_same && rcpt_smtp_response)
5459           {
5460           uschar *code = US"503";
5461           int len = Ustrlen(rcpt_smtp_response);
5462           smtp_respond(code, 3, FALSE, US"All RCPT commands were rejected with "
5463             "this error:");
5464           /* Responses from smtp_printf() will have \r\n on the end */
5465           if (len > 2 && rcpt_smtp_response[len-2] == '\r')
5466             rcpt_smtp_response[len-2] = 0;
5467           smtp_respond(code, 3, FALSE, rcpt_smtp_response);
5468           }
5469         if (f.smtp_in_pipelining_advertised && last_was_rcpt)
5470           smtp_printf("503 Valid RCPT command must precede %s\r\n", FALSE,
5471             smtp_names[smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)]]);
5472         else
5473           done = synprot_error(L_smtp_protocol_error, 503, NULL,
5474             smtp_connection_had[SMTP_HBUFF_PREV(smtp_ch_index)] == SCH_DATA
5475             ? US"valid RCPT command must precede DATA"
5476             : US"valid RCPT command must precede BDAT");
5477
5478         if (chunking_state > CHUNKING_OFFERED)
5479           {
5480           bdat_push_receive_functions();
5481           bdat_flush_data();
5482           }
5483         break;
5484         }
5485
5486       if (toomany && recipients_max_reject)
5487         {
5488         sender_address = NULL;  /* This will allow a new MAIL without RSET */
5489         sender_address_unrewritten = NULL;
5490         smtp_printf("554 Too many recipients\r\n", FALSE);
5491
5492         if (chunking_state > CHUNKING_OFFERED)
5493           {
5494           bdat_push_receive_functions();
5495           bdat_flush_data();
5496           }
5497         break;
5498         }
5499
5500       if (chunking_state > CHUNKING_OFFERED)
5501         rc = OK;                        /* No predata ACL or go-ahead output for BDAT */
5502       else
5503         {
5504         /* If there is an ACL, re-check the synchronization afterwards, since the
5505         ACL may have delayed.  To handle cutthrough delivery enforce a dummy call
5506         to get the DATA command sent. */
5507
5508         if (!acl_smtp_predata && cutthrough.cctx.sock < 0)
5509           rc = OK;
5510         else
5511           {
5512           uschar * acl = acl_smtp_predata ? acl_smtp_predata : US"accept";
5513           f.enable_dollar_recipients = TRUE;
5514           rc = acl_check(ACL_WHERE_PREDATA, NULL, acl, &user_msg,
5515             &log_msg);
5516           f.enable_dollar_recipients = FALSE;
5517           if (rc == OK && !check_sync())
5518             goto SYNC_FAILURE;
5519
5520           if (rc != OK)
5521             {   /* Either the ACL failed the address, or it was deferred. */
5522             done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
5523             break;
5524             }
5525           }
5526
5527         if (user_msg)
5528           smtp_user_msg(US"354", user_msg);
5529         else
5530           smtp_printf(
5531             "354 Enter message, ending with \".\" on a line by itself\r\n", FALSE);
5532         }
5533
5534       if (f.bdat_readers_wanted)
5535         bdat_push_receive_functions();
5536
5537 #ifdef TCP_QUICKACK
5538       if (smtp_in)      /* all ACKs needed to ramp window up for bulk data */
5539         (void) setsockopt(fileno(smtp_in), IPPROTO_TCP, TCP_QUICKACK,
5540                 US &on, sizeof(on));
5541 #endif
5542       done = 3;
5543       message_ended = END_NOTENDED;   /* Indicate in middle of data */
5544
5545       break;
5546
5547
5548     case VRFY_CMD:
5549       {
5550       uschar * address;
5551
5552       HAD(SCH_VRFY);
5553
5554       if (!(address = parse_extract_address(smtp_cmd_data, &errmess,
5555             &start, &end, &recipient_domain, FALSE)))
5556         {
5557         smtp_printf("501 %s\r\n", FALSE, errmess);
5558         break;
5559         }
5560
5561       if (!recipient_domain)
5562         if (!(recipient_domain = qualify_recipient(&address, smtp_cmd_data,
5563                                     US"verify")))
5564           break;
5565
5566       if ((rc = acl_check(ACL_WHERE_VRFY, address, acl_smtp_vrfy,
5567                     &user_msg, &log_msg)) != OK)
5568         done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
5569       else
5570         {
5571         uschar * s = NULL;
5572         address_item * addr = deliver_make_addr(address, FALSE);
5573
5574         switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
5575                -1, -1, NULL, NULL, NULL))
5576           {
5577           case OK:
5578             s = string_sprintf("250 <%s> is deliverable", address);
5579             break;
5580
5581           case DEFER:
5582             s = (addr->user_message != NULL)?
5583               string_sprintf("451 <%s> %s", address, addr->user_message) :
5584               string_sprintf("451 Cannot resolve <%s> at this time", address);
5585             break;
5586
5587           case FAIL:
5588             s = (addr->user_message != NULL)?
5589               string_sprintf("550 <%s> %s", address, addr->user_message) :
5590               string_sprintf("550 <%s> is not deliverable", address);
5591             log_write(0, LOG_MAIN, "VRFY failed for %s %s",
5592               smtp_cmd_argument, host_and_ident(TRUE));
5593             break;
5594           }
5595
5596         smtp_printf("%s\r\n", FALSE, s);
5597         }
5598       break;
5599       }
5600
5601
5602     case EXPN_CMD:
5603       HAD(SCH_EXPN);
5604       rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
5605       if (rc != OK)
5606         done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
5607       else
5608         {
5609         BOOL save_log_testing_mode = f.log_testing_mode;
5610         f.address_test_mode = f.log_testing_mode = TRUE;
5611         (void) verify_address(deliver_make_addr(smtp_cmd_data, FALSE),
5612           smtp_out, vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1,
5613           NULL, NULL, NULL);
5614         f.address_test_mode = FALSE;
5615         f.log_testing_mode = save_log_testing_mode;    /* true for -bh */
5616         }
5617       break;
5618
5619
5620     #ifndef DISABLE_TLS
5621
5622     case STARTTLS_CMD:
5623       HAD(SCH_STARTTLS);
5624       if (!fl.tls_advertised)
5625         {
5626         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5627           US"STARTTLS command used when not advertised");
5628         break;
5629         }
5630
5631       /* Apply an ACL check if one is defined */
5632
5633       if (  acl_smtp_starttls
5634          && (rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls,
5635                     &user_msg, &log_msg)) != OK
5636          )
5637         {
5638         done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
5639         break;
5640         }
5641
5642       /* RFC 2487 is not clear on when this command may be sent, though it
5643       does state that all information previously obtained from the client
5644       must be discarded if a TLS session is started. It seems reasonable to
5645       do an implied RSET when STARTTLS is received. */
5646
5647       incomplete_transaction_log(US"STARTTLS");
5648       cancel_cutthrough_connection(TRUE, US"STARTTLS received");
5649       reset_point = smtp_reset(reset_point);
5650       toomany = FALSE;
5651       cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
5652
5653       /* There's an attack where more data is read in past the STARTTLS command
5654       before TLS is negotiated, then assumed to be part of the secure session
5655       when used afterwards; we use segregated input buffers, so are not
5656       vulnerable, but we want to note when it happens and, for sheer paranoia,
5657       ensure that the buffer is "wiped".
5658       Pipelining sync checks will normally have protected us too, unless disabled
5659       by configuration. */
5660
5661       if (receive_hasc())
5662         {
5663         DEBUG(D_any)
5664           debug_printf("Non-empty input buffer after STARTTLS; naive attack?\n");
5665         if (tls_in.active.sock < 0)
5666           smtp_inend = smtp_inptr = smtp_inbuffer;
5667         /* and if TLS is already active, tls_server_start() should fail */
5668         }
5669
5670       /* There is nothing we value in the input buffer and if TLS is successfully
5671       negotiated, we won't use this buffer again; if TLS fails, we'll just read
5672       fresh content into it.  The buffer contains arbitrary content from an
5673       untrusted remote source; eg: NOOP <shellcode>\r\nSTARTTLS\r\n
5674       It seems safest to just wipe away the content rather than leave it as a
5675       target to jump to. */
5676
5677       memset(smtp_inbuffer, 0, IN_BUFFER_SIZE);
5678
5679       /* Attempt to start up a TLS session, and if successful, discard all
5680       knowledge that was obtained previously. At least, that's what the RFC says,
5681       and that's what happens by default. However, in order to work round YAEB,
5682       there is an option to remember the esmtp state. Sigh.
5683
5684       We must allow for an extra EHLO command and an extra AUTH command after
5685       STARTTLS that don't add to the nonmail command count. */
5686
5687       s = NULL;
5688       if ((rc = tls_server_start(&s)) == OK)
5689         {
5690         if (!tls_remember_esmtp)
5691           fl.helo_seen = fl.esmtp = fl.auth_advertised = f.smtp_in_pipelining_advertised = FALSE;
5692         cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
5693         cmd_list[CMD_LIST_AUTH].is_mail_cmd = TRUE;
5694         cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
5695         if (sender_helo_name)
5696           {
5697           sender_helo_name = NULL;
5698           host_build_sender_fullhost();  /* Rebuild */
5699           set_process_info("handling incoming TLS connection from %s",
5700             host_and_ident(FALSE));
5701           }
5702         received_protocol =
5703           (sender_host_address ? protocols : protocols_local)
5704             [ (fl.esmtp
5705               ? pextend + (sender_host_authenticated ? pauthed : 0)
5706               : pnormal)
5707             + (tls_in.active.sock >= 0 ? pcrpted : 0)
5708             ];
5709
5710         sender_host_auth_pubname = sender_host_authenticated = NULL;
5711         authenticated_id = NULL;
5712         sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
5713         DEBUG(D_tls) debug_printf("TLS active\n");
5714         break;     /* Successful STARTTLS */
5715         }
5716       else
5717         (void) smtp_log_tls_fail(s);
5718
5719       /* Some local configuration problem was discovered before actually trying
5720       to do a TLS handshake; give a temporary error. */
5721
5722       if (rc == DEFER)
5723         {
5724         smtp_printf("454 TLS currently unavailable\r\n", FALSE);
5725         break;
5726         }
5727
5728       /* Hard failure. Reject everything except QUIT or closed connection. One
5729       cause for failure is a nested STARTTLS, in which case tls_in.active remains
5730       set, but we must still reject all incoming commands.  Another is a handshake
5731       failure - and there may some encrypted data still in the pipe to us, which we
5732       see as garbage commands. */
5733
5734       DEBUG(D_tls) debug_printf("TLS failed to start\n");
5735       while (done <= 0) switch(smtp_read_command(FALSE, GETC_BUFFER_UNLIMITED))
5736         {
5737         case EOF_CMD:
5738           log_write(L_smtp_connection, LOG_MAIN, "%s closed by EOF",
5739             smtp_get_connection_info());
5740           smtp_notquit_exit(US"tls-failed", NULL, NULL);
5741           done = 2;
5742           break;
5743
5744         /* It is perhaps arguable as to which exit ACL should be called here,
5745         but as it is probably a situation that almost never arises, it
5746         probably doesn't matter. We choose to call the real QUIT ACL, which in
5747         some sense is perhaps "right". */
5748
5749         case QUIT_CMD:
5750           f.smtp_in_quit = TRUE;
5751           user_msg = NULL;
5752           if (  acl_smtp_quit
5753              && ((rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg,
5754                                 &log_msg)) == ERROR))
5755               log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
5756                 log_msg);
5757           if (user_msg)
5758             smtp_respond(US"221", 3, TRUE, user_msg);
5759           else
5760             smtp_printf("221 %s closing connection\r\n", FALSE, smtp_active_hostname);
5761           log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
5762             smtp_get_connection_info());
5763           done = 2;
5764           break;
5765
5766         default:
5767           smtp_printf("554 Security failure\r\n", FALSE);
5768           break;
5769         }
5770       tls_close(NULL, TLS_SHUTDOWN_NOWAIT);
5771       break;
5772     #endif
5773
5774
5775     /* The ACL for QUIT is provided for gathering statistical information or
5776     similar; it does not affect the response code, but it can supply a custom
5777     message. */
5778
5779     case QUIT_CMD:
5780       smtp_quit_handler(&user_msg, &log_msg);
5781       done = 2;
5782       break;
5783
5784
5785     case RSET_CMD:
5786       smtp_rset_handler();
5787       cancel_cutthrough_connection(TRUE, US"RSET received");
5788       reset_point = smtp_reset(reset_point);
5789       toomany = FALSE;
5790       break;
5791
5792
5793     case NOOP_CMD:
5794       HAD(SCH_NOOP);
5795       smtp_printf("250 OK\r\n", FALSE);
5796       break;
5797
5798
5799     /* Show ETRN/EXPN/VRFY if there's an ACL for checking hosts; if actually
5800     used, a check will be done for permitted hosts. Show STARTTLS only if not
5801     already in a TLS session and if it would be advertised in the EHLO
5802     response. */
5803
5804     case HELP_CMD:
5805       HAD(SCH_HELP);
5806       smtp_printf("214-Commands supported:\r\n", TRUE);
5807         {
5808         uschar buffer[256];
5809         buffer[0] = 0;
5810         Ustrcat(buffer, US" AUTH");
5811         #ifndef DISABLE_TLS
5812         if (tls_in.active.sock < 0 &&
5813             verify_check_host(&tls_advertise_hosts) != FAIL)
5814           Ustrcat(buffer, US" STARTTLS");
5815         #endif
5816         Ustrcat(buffer, US" HELO EHLO MAIL RCPT DATA BDAT");
5817         Ustrcat(buffer, US" NOOP QUIT RSET HELP");
5818         if (acl_smtp_etrn) Ustrcat(buffer, US" ETRN");
5819         if (acl_smtp_expn) Ustrcat(buffer, US" EXPN");
5820         if (acl_smtp_vrfy) Ustrcat(buffer, US" VRFY");
5821         smtp_printf("214%s\r\n", FALSE, buffer);
5822         }
5823       break;
5824
5825
5826     case EOF_CMD:
5827       incomplete_transaction_log(US"connection lost");
5828       smtp_notquit_exit(US"connection-lost", US"421",
5829         US"%s lost input connection", smtp_active_hostname);
5830
5831       /* Don't log by default unless in the middle of a message, as some mailers
5832       just drop the call rather than sending QUIT, and it clutters up the logs.
5833       */
5834
5835       if (sender_address || recipients_count > 0)
5836         log_write(L_lost_incoming_connection, LOG_MAIN,
5837           "unexpected %s while reading SMTP command from %s%s%s D=%s",
5838           f.sender_host_unknown ? "EOF" : "disconnection",
5839           f.tcp_in_fastopen_logged
5840           ? US""
5841           : f.tcp_in_fastopen
5842           ? f.tcp_in_fastopen_data ? US"TFO* " : US"TFO "
5843           : US"",
5844           host_and_ident(FALSE), smtp_read_error,
5845           string_timesince(&smtp_connection_start)
5846           );
5847
5848       else
5849         log_write(L_smtp_connection, LOG_MAIN, "%s %slost%s D=%s",
5850           smtp_get_connection_info(),
5851           f.tcp_in_fastopen && !f.tcp_in_fastopen_logged ? US"TFO " : US"",
5852           smtp_read_error,
5853           string_timesince(&smtp_connection_start)
5854           );
5855
5856       done = 1;
5857       break;
5858
5859
5860     case ETRN_CMD:
5861       HAD(SCH_ETRN);
5862       if (sender_address)
5863         {
5864         done = synprot_error(L_smtp_protocol_error, 503, NULL,
5865           US"ETRN is not permitted inside a transaction");
5866         break;
5867         }
5868
5869       log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
5870         host_and_ident(FALSE));
5871
5872       if ((rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn,
5873                   &user_msg, &log_msg)) != OK)
5874         {
5875         done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
5876         break;
5877         }
5878
5879       /* Compute the serialization key for this command. */
5880
5881       etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
5882
5883       /* If a command has been specified for running as a result of ETRN, we
5884       permit any argument to ETRN. If not, only the # standard form is permitted,
5885       since that is strictly the only kind of ETRN that can be implemented
5886       according to the RFC. */
5887
5888       if (smtp_etrn_command)
5889         {
5890         uschar *error;
5891         BOOL rc;
5892         etrn_command = smtp_etrn_command;
5893         deliver_domain = smtp_cmd_data;
5894         rc = transport_set_up_command(&argv, smtp_etrn_command, TRUE, 0, NULL,
5895           FALSE, US"ETRN processing", &error);
5896         deliver_domain = NULL;
5897         if (!rc)
5898           {
5899           log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
5900             error);
5901           smtp_printf("458 Internal failure\r\n", FALSE);
5902           break;
5903           }
5904         }
5905
5906       /* Else set up to call Exim with the -R option. */
5907
5908       else
5909         {
5910         if (*smtp_cmd_data++ != '#')
5911           {
5912           done = synprot_error(L_smtp_syntax_error, 501, NULL,
5913             US"argument must begin with #");
5914           break;
5915           }
5916         etrn_command = US"exim -R";
5917         argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE,
5918           *queue_name ? 4 : 2,
5919           US"-R", smtp_cmd_data,
5920           US"-MCG", queue_name);
5921         }
5922
5923       /* If we are host-testing, don't actually do anything. */
5924
5925       if (host_checking)
5926         {
5927         HDEBUG(D_any)
5928           {
5929           debug_printf("ETRN command is: %s\n", etrn_command);
5930           debug_printf("ETRN command execution skipped\n");
5931           }
5932         if (user_msg == NULL) smtp_printf("250 OK\r\n", FALSE);
5933           else smtp_user_msg(US"250", user_msg);
5934         break;
5935         }
5936
5937
5938       /* If ETRN queue runs are to be serialized, check the database to
5939       ensure one isn't already running. */
5940
5941       if (smtp_etrn_serialize && !enq_start(etrn_serialize_key, 1))
5942         {
5943         smtp_printf("458 Already processing %s\r\n", FALSE, smtp_cmd_data);
5944         break;
5945         }
5946
5947       /* Fork a child process and run the command. We don't want to have to
5948       wait for the process at any point, so set SIGCHLD to SIG_IGN before
5949       forking. It should be set that way anyway for external incoming SMTP,
5950       but we save and restore to be tidy. If serialization is required, we
5951       actually run the command in yet another process, so we can wait for it
5952       to complete and then remove the serialization lock. */
5953
5954       oldsignal = signal(SIGCHLD, SIG_IGN);
5955
5956       if ((pid = exim_fork(US"etrn-command")) == 0)
5957         {
5958         smtp_input = FALSE;       /* This process is not associated with the */
5959         (void)fclose(smtp_in);    /* SMTP call any more. */
5960         (void)fclose(smtp_out);
5961
5962         signal(SIGCHLD, SIG_DFL);      /* Want to catch child */
5963
5964         /* If not serializing, do the exec right away. Otherwise, fork down
5965         into another process. */
5966
5967         if (  !smtp_etrn_serialize
5968            || (pid = exim_fork(US"etrn-serialised-command")) == 0)
5969           {
5970           DEBUG(D_exec) debug_print_argv(argv);
5971           exim_nullstd();                   /* Ensure std{in,out,err} exist */
5972           /* argv[0] should be untainted, from child_exec_exim() */
5973           execv(CS argv[0], (char *const *)argv);
5974           log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
5975             etrn_command, strerror(errno));
5976           _exit(EXIT_FAILURE);         /* paranoia */
5977           }
5978
5979         /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
5980         is, we are in the first subprocess, after forking again. All we can do
5981         for a failing fork is to log it. Otherwise, wait for the 2nd process to
5982         complete, before removing the serialization. */
5983
5984         if (pid < 0)
5985           log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
5986             "failed: %s", strerror(errno));
5987         else
5988           {
5989           int status;
5990           DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
5991             (int)pid);
5992           (void)wait(&status);
5993           DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
5994             (int)pid);
5995           }
5996
5997         enq_end(etrn_serialize_key);
5998         exim_underbar_exit(EXIT_SUCCESS);
5999         }
6000
6001       /* Back in the top level SMTP process. Check that we started a subprocess
6002       and restore the signal state. */
6003
6004       if (pid < 0)
6005         {
6006         log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
6007           strerror(errno));
6008         smtp_printf("458 Unable to fork process\r\n", FALSE);
6009         if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
6010         }
6011       else
6012         if (!user_msg)
6013           smtp_printf("250 OK\r\n", FALSE);
6014         else
6015           smtp_user_msg(US"250", user_msg);
6016
6017       signal(SIGCHLD, oldsignal);
6018       break;
6019
6020
6021     case BADARG_CMD:
6022       done = synprot_error(L_smtp_syntax_error, 501, NULL,
6023         US"unexpected argument data");
6024       break;
6025
6026
6027     /* This currently happens only for NULLs, but could be extended. */
6028
6029     case BADCHAR_CMD:
6030       done = synprot_error(L_smtp_syntax_error, 0, NULL,       /* Just logs */
6031         US"NUL character(s) present (shown as '?')");
6032       smtp_printf("501 NUL characters are not allowed in SMTP commands\r\n",
6033                   FALSE);
6034       break;
6035
6036
6037     case BADSYN_CMD:
6038     SYNC_FAILURE:
6039       if (smtp_inend >= smtp_inbuffer + IN_BUFFER_SIZE)
6040         smtp_inend = smtp_inbuffer + IN_BUFFER_SIZE - 1;
6041       c = smtp_inend - smtp_inptr;
6042       if (c > 150) c = 150;     /* limit logged amount */
6043       smtp_inptr[c] = 0;
6044       incomplete_transaction_log(US"sync failure");
6045       log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
6046         "(next input sent too soon: pipelining was%s advertised): "
6047         "rejected \"%s\" %s next input=\"%s\"",
6048         f.smtp_in_pipelining_advertised ? "" : " not",
6049         smtp_cmd_buffer, host_and_ident(TRUE),
6050         string_printing(smtp_inptr));
6051       smtp_notquit_exit(US"synchronization-error", US"554",
6052         US"SMTP synchronization error");
6053       done = 1;   /* Pretend eof - drops connection */
6054       break;
6055
6056
6057     case TOO_MANY_NONMAIL_CMD:
6058       s = smtp_cmd_buffer;
6059       while (*s != 0 && !isspace(*s)) s++;
6060       incomplete_transaction_log(US"too many non-mail commands");
6061       log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
6062         "nonmail commands (last was \"%.*s\")",  host_and_ident(FALSE),
6063         (int)(s - smtp_cmd_buffer), smtp_cmd_buffer);
6064       smtp_notquit_exit(US"bad-commands", US"554", US"Too many nonmail commands");
6065       done = 1;   /* Pretend eof - drops connection */
6066       break;
6067
6068 #ifdef SUPPORT_PROXY
6069     case PROXY_FAIL_IGNORE_CMD:
6070       smtp_printf("503 Command refused, required Proxy negotiation failed\r\n", FALSE);
6071       break;
6072 #endif
6073
6074     default:
6075       if (unknown_command_count++ >= smtp_max_unknown_commands)
6076         {
6077         log_write(L_smtp_syntax_error, LOG_MAIN,
6078           "SMTP syntax error in \"%s\" %s %s",
6079           string_printing(smtp_cmd_buffer), host_and_ident(TRUE),
6080           US"unrecognized command");
6081         incomplete_transaction_log(US"unrecognized command");
6082         smtp_notquit_exit(US"bad-commands", US"500",
6083           US"Too many unrecognized commands");
6084         done = 2;
6085         log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
6086           "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
6087           string_printing(smtp_cmd_buffer));
6088         }
6089       else
6090         done = synprot_error(L_smtp_syntax_error, 500, NULL,
6091           US"unrecognized command");
6092       break;
6093     }
6094
6095   /* This label is used by goto's inside loops that want to break out to
6096   the end of the command-processing loop. */
6097
6098   COMMAND_LOOP:
6099   last_was_rej_mail = was_rej_mail;     /* Remember some last commands for */
6100   last_was_rcpt = was_rcpt;             /* protocol error handling */
6101   }
6102
6103 return done - 2;  /* Convert yield values */
6104 }
6105
6106
6107
6108 gstring *
6109 authres_smtpauth(gstring * g)
6110 {
6111 if (!sender_host_authenticated)
6112   return g;
6113
6114 g = string_append(g, 2, US";\n\tauth=pass (", sender_host_auth_pubname);
6115
6116 if (Ustrcmp(sender_host_auth_pubname, "tls") == 0)
6117   g = authenticated_id
6118     ? string_append(g, 2, US") x509.auth=", authenticated_id)
6119     : string_cat(g, US") reason=x509.auth");
6120 else
6121   g = authenticated_id
6122     ? string_append(g, 2, US") smtp.auth=", authenticated_id)
6123     : string_cat(g, US", no id saved)");
6124
6125 if (authenticated_sender)
6126   g = string_append(g, 2, US" smtp.mailfrom=", authenticated_sender);
6127 return g;
6128 }
6129
6130
6131
6132 /* vi: aw ai sw=2
6133 */
6134 /* End of smtp_in.c */