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