dd8747b92f480cbc70aafb9ed10d4dbd2ba54fe0
[users/jgh/exim.git] / src / src / smtp_in.c
1 /* $Cambridge: exim/src/src/smtp_in.c,v 1.5.2.1 2004/12/02 09:15:11 tom Exp $ */
2
3 /*************************************************
4 *     Exim - an Internet mail transport agent    *
5 *************************************************/
6
7 /* Copyright (c) University of Cambridge 1995 - 2004 */
8 /* See the file NOTICE for conditions of use and distribution. */
9
10 /* Functions for handling an incoming SMTP call. */
11
12
13 #include "exim.h"
14
15
16 /* Initialize for TCP wrappers if so configured. It appears that the macro
17 HAVE_IPV6 is used in some versions of the tcpd.h header, so we unset it before
18 including that header, and restore its value afterwards. */
19
20 #ifdef USE_TCP_WRAPPERS
21
22   #if HAVE_IPV6
23   #define EXIM_HAVE_IPV6
24   #endif
25   #undef HAVE_IPV6
26   #include <tcpd.h>
27   #undef HAVE_IPV6
28   #ifdef EXIM_HAVE_IPV6
29   #define HAVE_IPV6 TRUE
30   #endif
31
32 int allow_severity = LOG_INFO;
33 int deny_severity  = LOG_NOTICE;
34 #endif
35
36
37 /* Size of buffer for reading SMTP commands */
38
39 #define cmd_buffer_size  512      /* Ref. RFC 821 */
40
41 /* Size of buffer for reading SMTP incoming packets */
42
43 #define in_buffer_size  8192
44
45 /* Structure for SMTP command list */
46
47 typedef struct {
48   char *name;
49   int len;
50   short int cmd;
51   short int has_arg;
52   short int is_mail_cmd;
53 } smtp_cmd_list;
54
55 /* Codes for identifying commands. We order them so that those that come first
56 are those for which synchronization is always required. Checking this can help
57 block some spam.  */
58
59 enum {
60   /* These commands are required to be synchronized, i.e. to be the last in a
61   block of commands when pipelining. */
62
63   HELO_CMD, EHLO_CMD, DATA_CMD, /* These are listed in the pipelining */
64   VRFY_CMD, EXPN_CMD, NOOP_CMD, /* RFC as requiring synchronization */
65   ETRN_CMD,                     /* This by analogy with TURN from the RFC */
66   STARTTLS_CMD,                 /* Required by the STARTTLS RFC */
67
68   /* This is a dummy to identify the non-sync commands when pipelining */
69
70   NON_SYNC_CMD_PIPELINING,
71
72   /* These commands need not be synchronized when pipelining */
73
74   MAIL_CMD, RCPT_CMD, RSET_CMD,
75
76   /* This is a dummy to identify the non-sync commands when not pipelining */
77
78   NON_SYNC_CMD_NON_PIPELINING,
79
80   /* I have been unable to find a statement about the use of pipelining
81   with AUTH, so to be on the safe side it is here, though I kind of feel
82   it should be up there with the synchronized commands. */
83
84   AUTH_CMD,
85
86   /* I'm not sure about these, but I don't think they matter. */
87
88   QUIT_CMD, HELP_CMD,
89
90   /* These are specials that don't correspond to actual commands */
91
92   EOF_CMD, OTHER_CMD, BADARG_CMD, BADCHAR_CMD, BADSYN_CMD,
93   TOO_MANY_NONMAIL_CMD };
94
95
96
97 /*************************************************
98 *                Local static variables          *
99 *************************************************/
100
101 static auth_instance *authenticated_by;
102 static BOOL auth_advertised;
103 #ifdef SUPPORT_TLS
104 static BOOL tls_advertised;
105 #endif
106 static BOOL esmtp;
107 static BOOL helo_required = FALSE;
108 static BOOL helo_verify = FALSE;
109 static BOOL helo_seen;
110 static BOOL helo_accept_junk;
111 static BOOL count_nonmail;
112 static BOOL pipelining_advertised;
113 static int  nonmail_command_count;
114 static int  synprot_error_count;
115 static int  unknown_command_count;
116 static int  sync_cmd_limit;
117 static int  smtp_write_error = 0;
118
119 static uschar *smtp_data;
120
121 static uschar *cmd_buffer;
122
123 /* We need to know the position of RSET, HELO, EHLO, AUTH, and STARTTLS. Their
124 final fields of all except AUTH are forced TRUE at the start of a new message
125 setup, to allow one of each between messages that is not counted as a nonmail
126 command. (In fact, only one of HELO/EHLO is not counted.) Also, we have to
127 allow a new EHLO after starting up TLS.
128
129 AUTH is "falsely" labelled as a mail command initially, so that it doesn't get
130 counted. However, the flag is changed when AUTH is received, so that multiple
131 failing AUTHs will eventually hit the limit. After a successful AUTH, another
132 AUTH is already forbidden. After a TLS session is started, AUTH's flag is again
133 forced TRUE, to allow for the re-authentication that can happen at that point.
134
135 QUIT is also "falsely" labelled as a mail command so that it doesn't up the
136 count of non-mail commands and possibly provoke an error. */
137
138 static smtp_cmd_list cmd_list[] = {
139   { "rset",       sizeof("rset")-1,       RSET_CMD, FALSE, FALSE },  /* First */
140   { "helo",       sizeof("helo")-1,       HELO_CMD, TRUE,  FALSE },
141   { "ehlo",       sizeof("ehlo")-1,       EHLO_CMD, TRUE,  FALSE },
142   { "auth",       sizeof("auth")-1,       AUTH_CMD, TRUE,  TRUE  },
143   #ifdef SUPPORT_TLS
144   { "starttls",   sizeof("starttls")-1,   STARTTLS_CMD, FALSE, FALSE },
145   #endif
146
147 /* If you change anything above here, also fix the definitions below. */
148
149   { "mail from:", sizeof("mail from:")-1, MAIL_CMD, TRUE,  TRUE  },
150   { "rcpt to:",   sizeof("rcpt to:")-1,   RCPT_CMD, TRUE,  TRUE  },
151   { "data",       sizeof("data")-1,       DATA_CMD, FALSE, TRUE  },
152   { "quit",       sizeof("quit")-1,       QUIT_CMD, FALSE, TRUE  },
153   { "noop",       sizeof("noop")-1,       NOOP_CMD, TRUE,  FALSE },
154   { "etrn",       sizeof("etrn")-1,       ETRN_CMD, TRUE,  FALSE },
155   { "vrfy",       sizeof("vrfy")-1,       VRFY_CMD, TRUE,  FALSE },
156   { "expn",       sizeof("expn")-1,       EXPN_CMD, TRUE,  FALSE },
157   { "help",       sizeof("help")-1,       HELP_CMD, TRUE,  FALSE }
158 };
159
160 static smtp_cmd_list *cmd_list_end =
161   cmd_list + sizeof(cmd_list)/sizeof(smtp_cmd_list);
162
163 #define CMD_LIST_RSET      0
164 #define CMD_LIST_HELO      1
165 #define CMD_LIST_EHLO      2
166 #define CMD_LIST_AUTH      3
167 #define CMD_LIST_STARTTLS  4
168
169 static uschar *protocols[] = {
170   US"local-smtp",        /* HELO */
171   US"local-smtps",       /* The rare case EHLO->STARTTLS->HELO */
172   US"local-esmtp",       /* EHLO */
173   US"local-esmtps",      /* EHLO->STARTTLS->EHLO */
174   US"local-esmtpa",      /* EHLO->AUTH */
175   US"local-esmtpsa"      /* EHLO->STARTTLS->EHLO->AUTH */
176   };
177
178 #define pnormal  0
179 #define pextend  2
180 #define pcrpted  1  /* added to pextend or pnormal */
181 #define pauthed  2  /* added to pextend */
182 #define pnlocal  6  /* offset to remove "local" */
183
184 /* When reading SMTP from a remote host, we have to use our own versions of the
185 C input-reading functions, in order to be able to flush the SMTP output only
186 when about to read more data from the socket. This is the only way to get
187 optimal performance when the client is using pipelining. Flushing for every
188 command causes a separate packet and reply packet each time; saving all the
189 responses up (when pipelining) combines them into one packet and one response.
190
191 For simplicity, these functions are used for *all* SMTP input, not only when
192 receiving over a socket. However, after setting up a secure socket (SSL), input
193 is read via the OpenSSL library, and another set of functions is used instead
194 (see tls.c).
195
196 These functions are set in the receive_getc etc. variables and called with the
197 same interface as the C functions. However, since there can only ever be
198 one incoming SMTP call, we just use a single buffer and flags. There is no need
199 to implement a complicated private FILE-like structure.*/
200
201 static uschar *smtp_inbuffer;
202 static uschar *smtp_inptr;
203 static uschar *smtp_inend;
204 static int     smtp_had_eof;
205 static int     smtp_had_error;
206
207
208 /*************************************************
209 *          SMTP version of getc()                *
210 *************************************************/
211
212 /* This gets the next byte from the SMTP input buffer. If the buffer is empty,
213 it flushes the output, and refills the buffer, with a timeout. The signal
214 handler is set appropriately by the calling function. This function is not used
215 after a connection has negotated itself into an TLS/SSL state.
216
217 Arguments:  none
218 Returns:    the next character or EOF
219 */
220
221 int
222 smtp_getc(void)
223 {
224 if (smtp_inptr >= smtp_inend)
225   {
226   int rc, save_errno;
227   fflush(smtp_out);
228   if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
229   rc = read(fileno(smtp_in), smtp_inbuffer, in_buffer_size);
230   save_errno = errno;
231   alarm(0);
232   if (rc <= 0)
233     {
234     /* Must put the error text in fixed store, because this might be during
235     header reading, where it releases unused store above the header. */
236     if (rc < 0)
237       {
238       smtp_had_error = save_errno;
239       smtp_read_error = string_copy_malloc(
240         string_sprintf(" (error: %s)", strerror(save_errno)));
241       }
242     else smtp_had_eof = 1;
243     return EOF;
244     }
245   smtp_inend = smtp_inbuffer + rc;
246   smtp_inptr = smtp_inbuffer;
247   }
248 return *smtp_inptr++;
249 }
250
251
252
253 /*************************************************
254 *          SMTP version of ungetc()              *
255 *************************************************/
256
257 /* Puts a character back in the input buffer. Only ever
258 called once.
259
260 Arguments:
261   ch           the character
262
263 Returns:       the character
264 */
265
266 int
267 smtp_ungetc(int ch)
268 {
269 *(--smtp_inptr) = ch;
270 return ch;
271 }
272
273
274
275
276 /*************************************************
277 *          SMTP version of feof()                *
278 *************************************************/
279
280 /* Tests for a previous EOF
281
282 Arguments:     none
283 Returns:       non-zero if the eof flag is set
284 */
285
286 int
287 smtp_feof(void)
288 {
289 return smtp_had_eof;
290 }
291
292
293
294
295 /*************************************************
296 *          SMTP version of ferror()              *
297 *************************************************/
298
299 /* Tests for a previous read error, and returns with errno
300 restored to what it was when the error was detected.
301
302 Arguments:     none
303 Returns:       non-zero if the error flag is set
304 */
305
306 int
307 smtp_ferror(void)
308 {
309 errno = smtp_had_error;
310 return smtp_had_error;
311 }
312
313
314
315
316 /*************************************************
317 *     Write formatted string to SMTP channel     *
318 *************************************************/
319
320 /* This is a separate function so that we don't have to repeat everything for
321 TLS support or debugging. It is global so that the daemon and the
322 authentication functions can use it. It does not return any error indication,
323 because major problems such as dropped connections won't show up till an output
324 flush for non-TLS connections. The smtp_fflush() function is available for
325 checking that: for convenience, TLS output errors are remembered here so that
326 they are also picked up later by smtp_fflush().
327
328 Arguments:
329   format      format string
330   ...         optional arguments
331
332 Returns:      nothing
333 */
334
335 void
336 smtp_printf(char *format, ...)
337 {
338 va_list ap;
339
340 DEBUG(D_receive)
341   {
342   va_start(ap, format);
343   (void) string_vformat(big_buffer, big_buffer_size, format, ap);
344   debug_printf("SMTP>> %s", big_buffer);
345   }
346
347 va_start(ap, format);
348
349 /* If in a TLS session we have to format the string, and then write it using a
350 TLS function. */
351
352 #ifdef SUPPORT_TLS
353 if (tls_active >= 0)
354   {
355   if (!string_vformat(big_buffer, big_buffer_size, format, ap))
356     {
357     log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_printf");
358     smtp_closedown(US"Unexpected error");
359     exim_exit(EXIT_FAILURE);
360     }
361   if (tls_write(big_buffer, Ustrlen(big_buffer)) < 0) smtp_write_error = -1;
362   }
363 else
364 #endif
365
366 /* Otherwise, just use the standard library function. */
367
368 if (vfprintf(smtp_out, format, ap) < 0) smtp_write_error = -1;
369 va_end(ap);
370 }
371
372
373
374 /*************************************************
375 *        Flush SMTP out and check for error      *
376 *************************************************/
377
378 /* This function isn't currently used within Exim (it detects errors when it
379 tries to read the next SMTP input), but is available for use in local_scan().
380 For non-TLS connections, it flushes the output and checks for errors. For
381 TLS-connections, it checks for a previously-detected TLS write error.
382
383 Arguments:  none
384 Returns:    0 for no error; -1 after an error
385 */
386
387 int
388 smtp_fflush(void)
389 {
390 if (tls_active < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
391 return smtp_write_error;
392 }
393
394
395
396 /*************************************************
397 *          SMTP command read timeout             *
398 *************************************************/
399
400 /* Signal handler for timing out incoming SMTP commands. This attempts to
401 finish off tidily.
402
403 Argument: signal number (SIGALRM)
404 Returns:  nothing
405 */
406
407 static void
408 command_timeout_handler(int sig)
409 {
410 sig = sig;    /* Keep picky compilers happy */
411 log_write(L_lost_incoming_connection,
412           LOG_MAIN, "SMTP command timeout on%s connection from %s",
413           (tls_active >= 0)? " TLS" : "",
414           host_and_ident(FALSE));
415 if (smtp_batched_input)
416   moan_smtp_batch(NULL, "421 SMTP command timeout");  /* Does not return */
417 smtp_printf("421 %s: SMTP command timeout - closing connection\r\n",
418   smtp_active_hostname);
419 mac_smtp_fflush();
420 exim_exit(EXIT_FAILURE);
421 }
422
423
424
425 /*************************************************
426 *               SIGTERM received                 *
427 *************************************************/
428
429 /* Signal handler for handling SIGTERM. Again, try to finish tidily.
430
431 Argument: signal number (SIGTERM)
432 Returns:  nothing
433 */
434
435 static void
436 command_sigterm_handler(int sig)
437 {
438 sig = sig;    /* Keep picky compilers happy */
439 log_write(0, LOG_MAIN, "%s closed after SIGTERM", smtp_get_connection_info());
440 if (smtp_batched_input)
441   moan_smtp_batch(NULL, "421 SIGTERM received");  /* Does not return */
442 smtp_printf("421 %s: Service not available - closing connection\r\n",
443   smtp_active_hostname);
444 exim_exit(EXIT_FAILURE);
445 }
446
447
448
449 /*************************************************
450 *           Read one command line                *
451 *************************************************/
452
453 /* Strictly, SMTP commands coming over the net are supposed to end with CRLF.
454 There are sites that don't do this, and in any case internal SMTP probably
455 should check only for LF. Consequently, we check here for LF only. The line
456 ends up with [CR]LF removed from its end. If we get an overlong line, treat as
457 an unknown command. The command is read into the static cmd_buffer.
458
459 The character reading routine sets up a timeout for each block actually read
460 from the input (which may contain more than one command). We set up a special
461 signal handler that closes down the session on a timeout. Control does not
462 return when it runs.
463
464 Arguments:
465   check_sync   if TRUE, check synchronization rules if global option is TRUE
466
467 Returns:       a code identifying the command (enumerated above)
468 */
469
470 static int
471 smtp_read_command(BOOL check_sync)
472 {
473 int c;
474 int ptr = 0;
475 smtp_cmd_list *p;
476 BOOL hadnull = FALSE;
477
478 os_non_restarting_signal(SIGALRM, command_timeout_handler);
479
480 while ((c = (receive_getc)()) != '\n' && c != EOF)
481   {
482   if (ptr >= cmd_buffer_size)
483     {
484     os_non_restarting_signal(SIGALRM, sigalrm_handler);
485     return OTHER_CMD;
486     }
487   if (c == 0)
488     {
489     hadnull = TRUE;
490     c = '?';
491     }
492   cmd_buffer[ptr++] = c;
493   }
494
495 receive_linecount++;    /* For BSMTP errors */
496 os_non_restarting_signal(SIGALRM, sigalrm_handler);
497
498 /* If hit end of file, return pseudo EOF command. Whether we have a
499 part-line already read doesn't matter, since this is an error state. */
500
501 if (c == EOF) return EOF_CMD;
502
503 /* Remove any CR and white space at the end of the line, and terminate the
504 string. */
505
506 while (ptr > 0 && isspace(cmd_buffer[ptr-1])) ptr--;
507 cmd_buffer[ptr] = 0;
508
509 DEBUG(D_receive) debug_printf("SMTP<< %s\n", cmd_buffer);
510
511 /* NULLs are not allowed in SMTP commands */
512
513 if (hadnull) return BADCHAR_CMD;
514
515 /* Scan command list and return identity, having set the data pointer
516 to the start of the actual data characters. Check for SMTP synchronization
517 if required. */
518
519 for (p = cmd_list; p < cmd_list_end; p++)
520   {
521   if (strncmpic(cmd_buffer, US p->name, p->len) == 0)
522     {
523     if (smtp_inptr < smtp_inend &&                     /* Outstanding input */
524         p->cmd < sync_cmd_limit &&                     /* Command should sync */
525         check_sync &&                                  /* Local flag set */
526         smtp_enforce_sync &&                           /* Global flag set */
527         sender_host_address != NULL &&                 /* Not local input */
528         !sender_host_notsocket)                        /* Really is a socket */
529       return BADSYN_CMD;
530
531     /* Point after the command, but don't skip over leading spaces till after
532     the following test, so that if it fails, the command name can easily be
533     logged. */
534
535     smtp_data = cmd_buffer + p->len;
536
537     /* Count non-mail commands from those hosts that are controlled in this
538     way. The default is all hosts. We don't waste effort checking the list
539     until we get a non-mail command, but then cache the result to save checking
540     again. If there's a DEFER while checking the host, assume it's in the list.
541
542     Note that one instance of RSET, EHLO/HELO, and STARTTLS is allowed at the
543     start of each incoming message by fiddling with the value in the table. */
544
545     if (!p->is_mail_cmd)
546       {
547       if (count_nonmail == TRUE_UNSET) count_nonmail =
548         verify_check_host(&smtp_accept_max_nonmail_hosts) != FAIL;
549       if (count_nonmail && ++nonmail_command_count > smtp_accept_max_nonmail)
550         return TOO_MANY_NONMAIL_CMD;
551       }
552
553     /* Get the data pointer over leading spaces and return; if there is no data
554     for a command that expects it, we give the error centrally here. */
555
556     while (isspace(*smtp_data)) smtp_data++;
557     return (p->has_arg || *smtp_data == 0)? p->cmd : BADARG_CMD;
558     }
559   }
560
561 /* Enforce synchronization for unknown commands */
562
563 if (smtp_inptr < smtp_inend &&                     /* Outstanding input */
564     check_sync &&                                  /* Local flag set */
565     smtp_enforce_sync &&                           /* Global flag set */
566     sender_host_address != NULL &&                 /* Not local input */
567     !sender_host_notsocket)                        /* Really is a socket */
568   return BADSYN_CMD;
569
570 return OTHER_CMD;
571 }
572
573
574
575 /*************************************************
576 *          Forced closedown of call              *
577 *************************************************/
578
579 /* This function is called from log.c when Exim is dying because of a serious
580 disaster, and also from some other places. If an incoming non-batched SMTP
581 channel is open, it swallows the rest of the incoming message if in the DATA
582 phase, sends the reply string, and gives an error to all subsequent commands
583 except QUIT. The existence of an SMTP call is detected by the non-NULLness of
584 smtp_in.
585
586 Argument:   SMTP reply string to send, excluding the code
587 Returns:    nothing
588 */
589
590 void
591 smtp_closedown(uschar *message)
592 {
593 if (smtp_in == NULL || smtp_batched_input) return;
594 receive_swallow_smtp();
595 smtp_printf("421 %s\r\n", message);
596
597 for (;;)
598   {
599   switch(smtp_read_command(FALSE))
600     {
601     case EOF_CMD:
602     return;
603
604     case QUIT_CMD:
605     smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
606     mac_smtp_fflush();
607     return;
608
609     case RSET_CMD:
610     smtp_printf("250 Reset OK\r\n");
611     break;
612
613     default:
614     smtp_printf("421 %s\r\n", message);
615     break;
616     }
617   }
618 }
619
620
621
622
623 /*************************************************
624 *        Set up connection info for logging      *
625 *************************************************/
626
627 /* This function is called when logging information about an SMTP connection.
628 It sets up appropriate source information, depending on the type of connection.
629
630 Argument:    none
631 Returns:     a string describing the connection
632 */
633
634 uschar *
635 smtp_get_connection_info(void)
636 {
637 if (host_checking)
638   return string_sprintf("SMTP connection from %s", sender_fullhost);
639
640 if (sender_host_unknown || sender_host_notsocket)
641   return string_sprintf("SMTP connection from %s", sender_ident);
642
643 if (is_inetd)
644   return string_sprintf("SMTP connection from %s (via inetd)", sender_fullhost);
645
646 if ((log_extra_selector & LX_incoming_interface) != 0 &&
647      interface_address != NULL)
648   return string_sprintf("SMTP connection from %s I=[%s]:%d", sender_fullhost,
649     interface_address, interface_port);
650
651 return string_sprintf("SMTP connection from %s", sender_fullhost);
652 }
653
654
655
656 /*************************************************
657 *   Check HELO line and set sender_helo_name     *
658 *************************************************/
659
660 /* Check the format of a HELO line. The data for HELO/EHLO is supposed to be
661 the domain name of the sending host, or an ip literal in square brackets. The
662 arrgument is placed in sender_helo_name, which is in malloc store, because it
663 must persist over multiple incoming messages. If helo_accept_junk is set, this
664 host is permitted to send any old junk (needed for some broken hosts).
665 Otherwise, helo_allow_chars can be used for rogue characters in general
666 (typically people want to let in underscores).
667
668 Argument:
669   s       the data portion of the line (already past any white space)
670
671 Returns:  TRUE or FALSE
672 */
673
674 static BOOL
675 check_helo(uschar *s)
676 {
677 uschar *start = s;
678 uschar *end = s + Ustrlen(s);
679 BOOL yield = helo_accept_junk;
680
681 /* Discard any previous helo name */
682
683 if (sender_helo_name != NULL)
684   {
685   store_free(sender_helo_name);
686   sender_helo_name = NULL;
687   }
688
689 /* Skip tests if junk is permitted. */
690
691 if (!yield)
692   {
693   /* Allow the new standard form for IPv6 address literals, namely,
694   [IPv6:....], and because someone is bound to use it, allow an equivalent
695   IPv4 form. Allow plain addresses as well. */
696
697   if (*s == '[')
698     {
699     if (end[-1] == ']')
700       {
701       end[-1] = 0;
702       if (strncmpic(s, US"[IPv6:", 6) == 0)
703         yield = (string_is_ip_address(s+6, NULL) == 6);
704       else if (strncmpic(s, US"[IPv4:", 6) == 0)
705         yield = (string_is_ip_address(s+6, NULL) == 4);
706       else
707         yield = (string_is_ip_address(s+1, NULL) != 0);
708       end[-1] = ']';
709       }
710     }
711
712   /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
713   that have been configured (usually underscore - sigh). */
714
715   else if (*s != 0)
716     {
717     yield = TRUE;
718     while (*s != 0)
719       {
720       if (!isalnum(*s) && *s != '.' && *s != '-' &&
721           Ustrchr(helo_allow_chars, *s) == NULL)
722         {
723         yield = FALSE;
724         break;
725         }
726       s++;
727       }
728     }
729   }
730
731 /* Save argument if OK */
732
733 if (yield) sender_helo_name = string_copy_malloc(start);
734 return yield;
735 }
736
737
738
739
740
741 /*************************************************
742 *         Extract SMTP command option            *
743 *************************************************/
744
745 /* This function picks the next option setting off the end of smtp_data. It
746 is called for MAIL FROM and RCPT TO commands, to pick off the optional ESMTP
747 things that can appear there.
748
749 Arguments:
750    name           point this at the name
751    value          point this at the data string
752
753 Returns:          TRUE if found an option
754 */
755
756 static BOOL
757 extract_option(uschar **name, uschar **value)
758 {
759 uschar *n;
760 uschar *v = smtp_data + Ustrlen(smtp_data) -1;
761 while (isspace(*v)) v--;
762 v[1] = 0;
763
764 while (v > smtp_data && *v != '=' && !isspace(*v)) v--;
765 if (*v != '=') return FALSE;
766
767 n = v;
768 while(isalpha(n[-1])) n--;
769
770 if (n[-1] != ' ') return FALSE;
771
772 n[-1] = 0;
773 *name = n;
774 *v++ = 0;
775 *value = v;
776 return TRUE;
777 }
778
779
780
781
782
783
784
785 /*************************************************
786 *         Reset for new message                  *
787 *************************************************/
788
789 /* This function is called whenever the SMTP session is reset from
790 within either of the setup functions.
791
792 Argument:   the stacking pool storage reset point
793 Returns:    nothing
794 */
795
796 static void
797 smtp_reset(void *reset_point)
798 {
799 int i;
800 store_reset(reset_point);
801 recipients_list = NULL;
802 rcpt_count = rcpt_defer_count = rcpt_fail_count =
803   raw_recipients_count = recipients_count = recipients_list_max = 0;
804 message_size = -1;
805 acl_warn_headers = NULL;
806 queue_only_policy = FALSE;
807 deliver_freeze = FALSE;                              /* Can be set by ACL */
808 #ifdef WITH_CONTENT_SCAN
809 fake_reject = FALSE;                                 /* Can be set by ACL */
810 no_mbox_unspool = FALSE;                             /* Can be set by ACL */
811 #endif
812 submission_mode = FALSE;                             /* Can be set by ACL */
813 active_local_from_check = local_from_check;          /* Can be set by ACL */
814 active_local_sender_retain = local_sender_retain;    /* Can be set by ACL */
815 sender_address = NULL;
816 raw_sender = NULL;                  /* After SMTP rewrite, before qualifying */
817 sender_address_unrewritten = NULL;  /* Set only after verify rewrite */
818 sender_verified_list = NULL;        /* No senders verified */
819 memset(sender_address_cache, 0, sizeof(sender_address_cache));
820 memset(sender_domain_cache, 0, sizeof(sender_domain_cache));
821 authenticated_sender = NULL;
822 body_linecount = body_zerocount = 0;
823
824 for (i = 0; i < ACL_M_MAX; i++) acl_var[ACL_C_MAX + i] = NULL;
825
826 /* The message body variables use malloc store. They may be set if this is
827 not the first message in an SMTP session and the previous message caused them
828 to be referenced in an ACL. */
829
830 if (message_body != NULL)
831   {
832   store_free(message_body);
833   message_body = NULL;
834   }
835
836 if (message_body_end != NULL)
837   {
838   store_free(message_body_end);
839   message_body_end = NULL;
840   }
841
842 /* Warning log messages are also saved in malloc store. They are saved to avoid
843 repetition in the same message, but it seems right to repeat them for different
844 messagess. */
845
846 while (acl_warn_logged != NULL)
847   {
848   string_item *this = acl_warn_logged;
849   acl_warn_logged = acl_warn_logged->next;
850   store_free(this);
851   }
852 }
853
854
855
856
857
858 /*************************************************
859 *  Initialize for incoming batched SMTP message  *
860 *************************************************/
861
862 /* This function is called from smtp_setup_msg() in the case when
863 smtp_batched_input is true. This happens when -bS is used to pass a whole batch
864 of messages in one file with SMTP commands between them. All errors must be
865 reported by sending a message, and only MAIL FROM, RCPT TO, and DATA are
866 relevant. After an error on a sender, or an invalid recipient, the remainder
867 of the message is skipped. The value of received_protocol is already set.
868
869 Argument: none
870 Returns:  > 0 message successfully started (reached DATA)
871           = 0 QUIT read or end of file reached
872           < 0 should not occur
873 */
874
875 static int
876 smtp_setup_batch_msg(void)
877 {
878 int done = 0;
879 void *reset_point = store_get(0);
880
881 /* Save the line count at the start of each transaction - single commands
882 like HELO and RSET count as whole transactions. */
883
884 bsmtp_transaction_linecount = receive_linecount;
885
886 if ((receive_feof)()) return 0;   /* Treat EOF as QUIT */
887
888 smtp_reset(reset_point);                /* Reset for start of message */
889
890 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
891 value. The values are 2 larger than the required yield of the function. */
892
893 while (done <= 0)
894   {
895   uschar *errmess;
896   uschar *recipient = NULL;
897   int start, end, sender_domain, recipient_domain;
898
899   switch(smtp_read_command(FALSE))
900     {
901     /* The HELO/EHLO commands set sender_address_helo if they have
902     valid data; otherwise they are ignored, except that they do
903     a reset of the state. */
904
905     case HELO_CMD:
906     case EHLO_CMD:
907
908     check_helo(smtp_data);
909     /* Fall through */
910
911     case RSET_CMD:
912     smtp_reset(reset_point);
913     bsmtp_transaction_linecount = receive_linecount;
914     break;
915
916
917     /* The MAIL FROM command requires an address as an operand. All we
918     do here is to parse it for syntactic correctness. The form "<>" is
919     a special case which converts into an empty string. The start/end
920     pointers in the original are not used further for this address, as
921     it is the canonical extracted address which is all that is kept. */
922
923     case MAIL_CMD:
924     if (sender_address != NULL)
925       /* The function moan_smtp_batch() does not return. */
926       moan_smtp_batch(cmd_buffer, "503 Sender already given");
927
928     if (smtp_data[0] == 0)
929       /* The function moan_smtp_batch() does not return. */
930       moan_smtp_batch(cmd_buffer, "501 MAIL FROM must have an address operand");
931
932     /* Reset to start of message */
933
934     smtp_reset(reset_point);
935
936     /* Apply SMTP rewrite */
937
938     raw_sender = ((rewrite_existflags & rewrite_smtp) != 0)?
939       rewrite_one(smtp_data, rewrite_smtp|rewrite_smtp_sender, NULL, FALSE,
940         US"", global_rewrite_rules) : smtp_data;
941
942     /* Extract the address; the TRUE flag allows <> as valid */
943
944     raw_sender =
945       parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
946         TRUE);
947
948     if (raw_sender == NULL)
949       /* The function moan_smtp_batch() does not return. */
950       moan_smtp_batch(cmd_buffer, "501 %s", errmess);
951
952     sender_address = string_copy(raw_sender);
953
954     /* Qualify unqualified sender addresses if permitted to do so. */
955
956     if (sender_domain == 0 && sender_address[0] != 0 && sender_address[0] != '@')
957       {
958       if (allow_unqualified_sender)
959         {
960         sender_address = rewrite_address_qualify(sender_address, FALSE);
961         DEBUG(D_receive) debug_printf("unqualified address %s accepted "
962           "and rewritten\n", raw_sender);
963         }
964       /* The function moan_smtp_batch() does not return. */
965       else moan_smtp_batch(cmd_buffer, "501 sender address must contain "
966         "a domain");
967       }
968     break;
969
970
971     /* The RCPT TO command requires an address as an operand. All we do
972     here is to parse it for syntactic correctness. There may be any number
973     of RCPT TO commands, specifying multiple senders. We build them all into
974     a data structure that is in argc/argv format. The start/end values
975     given by parse_extract_address are not used, as we keep only the
976     extracted address. */
977
978     case RCPT_CMD:
979     if (sender_address == NULL)
980       /* The function moan_smtp_batch() does not return. */
981       moan_smtp_batch(cmd_buffer, "503 No sender yet given");
982
983     if (smtp_data[0] == 0)
984       /* The function moan_smtp_batch() does not return. */
985       moan_smtp_batch(cmd_buffer, "501 RCPT TO must have an address operand");
986
987     /* Check maximum number allowed */
988
989     if (recipients_max > 0 && recipients_count + 1 > recipients_max)
990       /* The function moan_smtp_batch() does not return. */
991       moan_smtp_batch(cmd_buffer, "%s too many recipients",
992         recipients_max_reject? "552": "452");
993
994     /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
995     recipient address */
996
997     recipient = ((rewrite_existflags & rewrite_smtp) != 0)?
998       rewrite_one(smtp_data, rewrite_smtp, NULL, FALSE, US"",
999         global_rewrite_rules) : smtp_data;
1000
1001     /* rfc821_domains = TRUE; << no longer needed */
1002     recipient = parse_extract_address(recipient, &errmess, &start, &end,
1003       &recipient_domain, FALSE);
1004     /* rfc821_domains = FALSE; << no longer needed */
1005
1006     if (recipient == NULL)
1007       /* The function moan_smtp_batch() does not return. */
1008       moan_smtp_batch(cmd_buffer, "501 %s", errmess);
1009
1010     /* If the recipient address is unqualified, qualify it if permitted. Then
1011     add it to the list of recipients. */
1012
1013     if (recipient_domain == 0)
1014       {
1015       if (allow_unqualified_recipient)
1016         {
1017         DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
1018           recipient);
1019         recipient = rewrite_address_qualify(recipient, TRUE);
1020         }
1021       /* The function moan_smtp_batch() does not return. */
1022       else moan_smtp_batch(cmd_buffer, "501 recipient address must contain "
1023         "a domain");
1024       }
1025     receive_add_recipient(recipient, -1);
1026     break;
1027
1028
1029     /* The DATA command is legal only if it follows successful MAIL FROM
1030     and RCPT TO commands. This function is complete when a valid DATA
1031     command is encountered. */
1032
1033     case DATA_CMD:
1034     if (sender_address == NULL || recipients_count <= 0)
1035       {
1036       /* The function moan_smtp_batch() does not return. */
1037       if (sender_address == NULL)
1038         moan_smtp_batch(cmd_buffer,
1039           "503 MAIL FROM:<sender> command must precede DATA");
1040       else
1041         moan_smtp_batch(cmd_buffer,
1042           "503 RCPT TO:<recipient> must precede DATA");
1043       }
1044     else
1045       {
1046       done = 3;                      /* DATA successfully achieved */
1047       message_ended = END_NOTENDED;  /* Indicate in middle of message */
1048       }
1049     break;
1050
1051
1052     /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
1053
1054     case VRFY_CMD:
1055     case EXPN_CMD:
1056     case HELP_CMD:
1057     case NOOP_CMD:
1058     case ETRN_CMD:
1059     bsmtp_transaction_linecount = receive_linecount;
1060     break;
1061
1062
1063     case EOF_CMD:
1064     case QUIT_CMD:
1065     done = 2;
1066     break;
1067
1068
1069     case BADARG_CMD:
1070     /* The function moan_smtp_batch() does not return. */
1071     moan_smtp_batch(cmd_buffer, "501 Unexpected argument data");
1072     break;
1073
1074
1075     case BADCHAR_CMD:
1076     /* The function moan_smtp_batch() does not return. */
1077     moan_smtp_batch(cmd_buffer, "501 Unexpected NULL in SMTP command");
1078     break;
1079
1080
1081     default:
1082     /* The function moan_smtp_batch() does not return. */
1083     moan_smtp_batch(cmd_buffer, "500 Command unrecognized");
1084     break;
1085     }
1086   }
1087
1088 return done - 2;  /* Convert yield values */
1089 }
1090
1091
1092
1093
1094 /*************************************************
1095 *          Start an SMTP session                 *
1096 *************************************************/
1097
1098 /* This function is called at the start of an SMTP session. Thereafter,
1099 smtp_setup_msg() is called to initiate each separate message. This
1100 function does host-specific testing, and outputs the banner line.
1101
1102 Arguments:     none
1103 Returns:       FALSE if the session can not continue; something has
1104                gone wrong, or the connection to the host is blocked
1105 */
1106
1107 BOOL
1108 smtp_start_session(void)
1109 {
1110 int size = 256;
1111 int i, ptr;
1112 uschar *p, *s, *ss;
1113
1114 helo_seen = esmtp = helo_accept_junk = FALSE;
1115 count_nonmail = TRUE_UNSET;
1116 synprot_error_count = unknown_command_count = nonmail_command_count = 0;
1117 smtp_delay_mail = smtp_rlm_base;
1118 auth_advertised = FALSE;
1119 pipelining_advertised = FALSE;
1120 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
1121
1122 memset(sender_host_cache, 0, sizeof(sender_host_cache));
1123
1124 sender_host_authenticated = NULL;
1125 authenticated_by = NULL;
1126
1127 #ifdef SUPPORT_TLS
1128 tls_cipher = tls_peerdn = NULL;
1129 tls_advertised = FALSE;
1130 #endif
1131
1132 /* Reset ACL connection variables */
1133
1134 for (i = 0; i < ACL_C_MAX; i++) acl_var[i] = NULL;
1135
1136 cmd_buffer = (uschar *)malloc(cmd_buffer_size + 1);  /* allow for trailing 0 */
1137 if (cmd_buffer == NULL)
1138   log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1139     "malloc() failed for SMTP command buffer");
1140
1141 /* For batched input, the protocol setting can be overridden from the
1142 command line by a trusted caller. */
1143
1144 if (smtp_batched_input)
1145   {
1146   if (received_protocol == NULL) received_protocol = US"local-bsmtp";
1147   }
1148
1149 /* For non-batched SMTP input, the protocol setting is forced here. It will be
1150 reset later if any of EHLO/AUTH/STARTTLS are received. */
1151
1152 else
1153   received_protocol =
1154     protocols[pnormal] + ((sender_host_address != NULL)? pnlocal : 0);
1155
1156 /* Set up the buffer for inputting using direct read() calls, and arrange to
1157 call the local functions instead of the standard C ones. */
1158
1159 smtp_inbuffer = (uschar *)malloc(in_buffer_size);
1160 if (smtp_inbuffer == NULL)
1161   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malloc() failed for SMTP input buffer");
1162 receive_getc = smtp_getc;
1163 receive_ungetc = smtp_ungetc;
1164 receive_feof = smtp_feof;
1165 receive_ferror = smtp_ferror;
1166 smtp_inptr = smtp_inend = smtp_inbuffer;
1167 smtp_had_eof = smtp_had_error = 0;
1168
1169 /* Set up the message size limit; this may be host-specific */
1170
1171 thismessage_size_limit = expand_string_integer(message_size_limit);
1172 if (thismessage_size_limit < 0)
1173   {
1174   if (thismessage_size_limit == -1)
1175     log_write(0, LOG_MAIN|LOG_PANIC, "unable to expand message_size_limit: "
1176       "%s", expand_string_message);
1177   else
1178     log_write(0, LOG_MAIN|LOG_PANIC, "invalid message_size_limit: "
1179       "%s", expand_string_message);
1180   smtp_closedown(US"Temporary local problem - please try later");
1181   return FALSE;
1182   }
1183
1184 /* When a message is input locally via the -bs or -bS options, sender_host_
1185 unknown is set unless -oMa was used to force an IP address, in which case it
1186 is checked like a real remote connection. When -bs is used from inetd, this
1187 flag is not set, causing the sending host to be checked. The code that deals
1188 with IP source routing (if configured) is never required for -bs or -bS and
1189 the flag sender_host_notsocket is used to suppress it.
1190
1191 If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
1192 reserve for certain hosts and/or networks. */
1193
1194 if (!sender_host_unknown)
1195   {
1196   int rc;
1197   BOOL reserved_host = FALSE;
1198
1199   /* Look up IP options (source routing info) on the socket if this is not an
1200   -oMa "host", and if any are found, log them and drop the connection.
1201
1202   Linux (and others now, see below) is different to everyone else, so there
1203   has to be some conditional compilation here. Versions of Linux before 2.1.15
1204   used a structure whose name was "options". Somebody finally realized that
1205   this name was silly, and it got changed to "ip_options". I use the
1206   newer name here, but there is a fudge in the script that sets up os.h
1207   to define a macro in older Linux systems.
1208
1209   Sigh. Linux is a fast-moving target. Another generation of Linux uses
1210   glibc 2, which has chosen ip_opts for the structure name. This is now
1211   really a glibc thing rather than a Linux thing, so the condition name
1212   has been changed to reflect this. It is relevant also to GNU/Hurd.
1213
1214   Mac OS 10.x (Darwin) is like the later glibc versions, but without the
1215   setting of the __GLIBC__ macro, so we can't detect it automatically. There's
1216   a special macro defined in the os.h file.
1217
1218   Some DGUX versions on older hardware appear not to support IP options at
1219   all, so there is now a general macro which can be set to cut out this
1220   support altogether.
1221
1222   How to do this properly in IPv6 is not yet known. */
1223
1224   #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
1225
1226   #ifdef GLIBC_IP_OPTIONS
1227     #if (!defined __GLIBC__) || (__GLIBC__ < 2)
1228     #define OPTSTYLE 1
1229     #else
1230     #define OPTSTYLE 2
1231     #endif
1232   #elif defined DARWIN_IP_OPTIONS
1233     #define OPTSTYLE 2
1234   #else
1235     #define OPTSTYLE 3
1236   #endif
1237
1238   if (!host_checking && !sender_host_notsocket)
1239     {
1240     #if OPTSTYLE == 1
1241     SOCKLEN_T optlen = sizeof(struct ip_options) + MAX_IPOPTLEN;
1242     struct ip_options *ipopt = store_get(optlen);
1243     #elif OPTSTYLE == 2
1244     struct ip_opts ipoptblock;
1245     struct ip_opts *ipopt = &ipoptblock;
1246     SOCKLEN_T optlen = sizeof(ipoptblock);
1247     #else
1248     struct ipoption ipoptblock;
1249     struct ipoption *ipopt = &ipoptblock;
1250     SOCKLEN_T optlen = sizeof(ipoptblock);
1251     #endif
1252
1253     /* Occasional genuine failures of getsockopt() have been seen - for
1254     example, "reset by peer". Therefore, just log and give up on this
1255     call, unless the error is ENOPROTOOPT. This error is given by systems
1256     that have the interfaces but not the mechanism - e.g. GNU/Hurd at the time
1257     of writing. So for that error, carry on - we just can't do an IP options
1258     check. */
1259
1260     DEBUG(D_receive) debug_printf("checking for IP options\n");
1261
1262     if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, (uschar *)(ipopt),
1263           &optlen) < 0)
1264       {
1265       if (errno != ENOPROTOOPT)
1266         {
1267         log_write(0, LOG_MAIN, "getsockopt() failed from %s: %s",
1268           host_and_ident(FALSE), strerror(errno));
1269         smtp_printf("451 SMTP service not available\r\n");
1270         return FALSE;
1271         }
1272       }
1273
1274     /* Deal with any IP options that are set. On the systems I have looked at,
1275     the value of MAX_IPOPTLEN has been 40, meaning that there should never be
1276     more logging data than will fit in big_buffer. Nevertheless, after somebody
1277     questioned this code, I've added in some paranoid checking. */
1278
1279     else if (optlen > 0)
1280       {
1281       uschar *p = big_buffer;
1282       uschar *pend = big_buffer + big_buffer_size;
1283       uschar *opt, *adptr;
1284       int optcount;
1285       struct in_addr addr;
1286
1287       #if OPTSTYLE == 1
1288       uschar *optstart = (uschar *)(ipopt->__data);
1289       #elif OPTSTYLE == 2
1290       uschar *optstart = (uschar *)(ipopt->ip_opts);
1291       #else
1292       uschar *optstart = (uschar *)(ipopt->ipopt_list);
1293       #endif
1294
1295       DEBUG(D_receive) debug_printf("IP options exist\n");
1296
1297       Ustrcpy(p, "IP options on incoming call:");
1298       p += Ustrlen(p);
1299
1300       for (opt = optstart; opt != NULL &&
1301            opt < (uschar *)(ipopt) + optlen;)
1302         {
1303         switch (*opt)
1304           {
1305           case IPOPT_EOL:
1306           opt = NULL;
1307           break;
1308
1309           case IPOPT_NOP:
1310           opt++;
1311           break;
1312
1313           case IPOPT_SSRR:
1314           case IPOPT_LSRR:
1315           if (!string_format(p, pend-p, " %s [@%s",
1316                (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
1317                #if OPTSTYLE == 1
1318                inet_ntoa(*((struct in_addr *)(&(ipopt->faddr))))))
1319                #elif OPTSTYLE == 2
1320                inet_ntoa(ipopt->ip_dst)))
1321                #else
1322                inet_ntoa(ipopt->ipopt_dst)))
1323                #endif
1324             {
1325             opt = NULL;
1326             break;
1327             }
1328
1329           p += Ustrlen(p);
1330           optcount = (opt[1] - 3) / sizeof(struct in_addr);
1331           adptr = opt + 3;
1332           while (optcount-- > 0)
1333             {
1334             memcpy(&addr, adptr, sizeof(addr));
1335             if (!string_format(p, pend - p - 1, "%s%s",
1336                   (optcount == 0)? ":" : "@", inet_ntoa(addr)))
1337               {
1338               opt = NULL;
1339               break;
1340               }
1341             p += Ustrlen(p);
1342             adptr += sizeof(struct in_addr);
1343             }
1344           *p++ = ']';
1345           opt += opt[1];
1346           break;
1347
1348           default:
1349             {
1350             int i;
1351             if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
1352             Ustrcat(p, "[ ");
1353             p += 2;
1354             for (i = 0; i < opt[1]; i++)
1355               {
1356               sprintf(CS p, "%2.2x ", opt[i]);
1357               p += 3;
1358               }
1359             *p++ = ']';
1360             }
1361           opt += opt[1];
1362           break;
1363           }
1364         }
1365
1366       *p = 0;
1367       log_write(0, LOG_MAIN, "%s", big_buffer);
1368
1369       /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
1370
1371       log_write(0, LOG_MAIN|LOG_REJECT,
1372         "connection from %s refused (IP options)", host_and_ident(FALSE));
1373
1374       smtp_printf("554 SMTP service not available\r\n");
1375       return FALSE;
1376       }
1377
1378     /* Length of options = 0 => there are no options */
1379
1380     else DEBUG(D_receive) debug_printf("no IP options found\n");
1381     }
1382   #endif  /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
1383
1384   /* Set keep-alive in socket options. The option is on by default. This
1385   setting is an attempt to get rid of some hanging connections that stick in
1386   read() when the remote end (usually a dialup) goes away. */
1387
1388   if (smtp_accept_keepalive && !sender_host_notsocket)
1389     ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
1390
1391   /* If the current host matches host_lookup, set the name by doing a
1392   reverse lookup. On failure, sender_host_name will be NULL and
1393   host_lookup_failed will be TRUE. This may or may not be serious - optional
1394   checks later. */
1395
1396   if (verify_check_host(&host_lookup) == OK)
1397     {
1398     (void)host_name_lookup();
1399     host_build_sender_fullhost();
1400     }
1401
1402   /* Delay this until we have the full name, if it is looked up. */
1403
1404   set_process_info("handling incoming connection from %s",
1405     host_and_ident(FALSE));
1406
1407   /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
1408   smtps port for use with older style SSL MTAs. */
1409
1410   #ifdef SUPPORT_TLS
1411   if (tls_on_connect && tls_server_start(tls_require_ciphers) != OK)
1412     return FALSE;
1413   #endif
1414
1415   /* Test for explicit connection rejection */
1416
1417   if (verify_check_host(&host_reject_connection) == OK)
1418     {
1419     log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
1420       "from %s (host_reject_connection)", host_and_ident(FALSE));
1421     smtp_printf("554 SMTP service not available\r\n");
1422     return FALSE;
1423     }
1424
1425   /* Test with TCP Wrappers if so configured */
1426
1427   #ifdef USE_TCP_WRAPPERS
1428   if (!hosts_ctl("exim",
1429          (sender_host_name == NULL)? STRING_UNKNOWN : CS sender_host_name,
1430          (sender_host_address == NULL)? STRING_UNKNOWN : CS sender_host_address,
1431          (sender_ident == NULL)? STRING_UNKNOWN : CS sender_ident))
1432     {
1433     HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
1434     log_write(L_connection_reject,
1435               LOG_MAIN|LOG_REJECT, "refused connection from %s "
1436               "(tcp wrappers)", host_and_ident(FALSE));
1437     smtp_printf("554 SMTP service not available\r\n");
1438     return FALSE;
1439     }
1440   #endif
1441
1442   /* Check for reserved slots. Note that the count value doesn't include
1443   this process, as it gets upped in the parent process. */
1444
1445   if (smtp_accept_max > 0 &&
1446       smtp_accept_count + 1 > smtp_accept_max - smtp_accept_reserve)
1447     {
1448     if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
1449       {
1450       log_write(L_connection_reject,
1451         LOG_MAIN, "temporarily refused connection from %s: not in "
1452         "reserve list: connected=%d max=%d reserve=%d%s",
1453         host_and_ident(FALSE), smtp_accept_count, smtp_accept_max,
1454         smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
1455       smtp_printf("421 %s: Too many concurrent SMTP connections; "
1456         "please try again later\r\n", smtp_active_hostname);
1457       return FALSE;
1458       }
1459     reserved_host = TRUE;
1460     }
1461
1462   /* If a load level above which only messages from reserved hosts are
1463   accepted is set, check the load. For incoming calls via the daemon, the
1464   check is done in the superior process if there are no reserved hosts, to
1465   save a fork. In all cases, the load average will already be available
1466   in a global variable at this point. */
1467
1468   if (smtp_load_reserve >= 0 &&
1469        load_average > smtp_load_reserve &&
1470        !reserved_host &&
1471        verify_check_host(&smtp_reserve_hosts) != OK)
1472     {
1473     log_write(L_connection_reject,
1474       LOG_MAIN, "temporarily refused connection from %s: not in "
1475       "reserve list and load average = %.2f", host_and_ident(FALSE),
1476       (double)load_average/1000.0);
1477     smtp_printf("421 %s: Too much load; please try again later\r\n",
1478       smtp_active_hostname);
1479     return FALSE;
1480     }
1481
1482   /* Determine whether unqualified senders or recipients are permitted
1483   for this host. Unfortunately, we have to do this every time, in order to
1484   set the flags so that they can be inspected when considering qualifying
1485   addresses in the headers. For a site that permits no qualification, this
1486   won't take long, however. */
1487
1488   allow_unqualified_sender =
1489     verify_check_host(&sender_unqualified_hosts) == OK;
1490
1491   allow_unqualified_recipient =
1492     verify_check_host(&recipient_unqualified_hosts) == OK;
1493
1494   /* Determine whether HELO/EHLO is required for this host. The requirement
1495   can be hard or soft. */
1496
1497   helo_required = verify_check_host(&helo_verify_hosts) == OK;
1498   if (!helo_required)
1499     helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
1500
1501   /* Determine whether this hosts is permitted to send syntactic junk
1502   after a HELO or EHLO command. */
1503
1504   helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
1505   }
1506
1507 /* For batch SMTP input we are now done. */
1508
1509 if (smtp_batched_input) return TRUE;
1510
1511 /* Run the ACL if it exists */
1512
1513 if (acl_smtp_connect != NULL)
1514   {
1515   int rc;
1516   uschar *user_msg, *log_msg;
1517   smtp_data = US"in \"connect\" ACL";    /* For logged failure message */
1518   rc = acl_check(ACL_WHERE_CONNECT, US"", acl_smtp_connect, &user_msg,
1519     &log_msg);
1520   if (rc != OK)
1521     {
1522     (void)smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
1523     return FALSE;
1524     }
1525   }
1526
1527 /* Output the initial message for a two-way SMTP connection. It may contain
1528 newlines, which then cause a multi-line response to be given. */
1529
1530 s = expand_string(smtp_banner);
1531 if (s == NULL)
1532   log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" (smtp_banner) "
1533     "failed: %s", smtp_banner, expand_string_message);
1534
1535 /* Remove any terminating newlines; might as well remove trailing space too */
1536
1537 p = s + Ustrlen(s);
1538 while (p > s && isspace(p[-1])) p--;
1539 *p = 0;
1540
1541 /* It seems that CC:Mail is braindead, and assumes that the greeting message
1542 is all contained in a single IP packet. The original code wrote out the
1543 greeting using several calls to fprint/fputc, and on busy servers this could
1544 cause it to be split over more than one packet - which caused CC:Mail to fall
1545 over when it got the second part of the greeting after sending its first
1546 command. Sigh. To try to avoid this, build the complete greeting message
1547 first, and output it in one fell swoop. This gives a better chance of it
1548 ending up as a single packet. */
1549
1550 ss = store_get(size);
1551 ptr = 0;
1552
1553 p = s;
1554 do       /* At least once, in case we have an empty string */
1555   {
1556   int len;
1557   uschar *linebreak = Ustrchr(p, '\n');
1558   if (linebreak == NULL)
1559     {
1560     len = Ustrlen(p);
1561     ss = string_cat(ss, &size, &ptr, US"220 ", 4);
1562     }
1563   else
1564     {
1565     len = linebreak - p;
1566     ss = string_cat(ss, &size, &ptr, US"220-", 4);
1567     }
1568   ss = string_cat(ss, &size, &ptr, p, len);
1569   ss = string_cat(ss, &size, &ptr, US"\r\n", 2);
1570   p += len;
1571   if (linebreak != NULL) p++;
1572   }
1573 while (*p != 0);
1574
1575 ss[ptr] = 0;  /* string_cat leaves room for this */
1576
1577 /* Before we write the banner, check that there is no input pending, unless
1578 this synchronisation check is disabled. */
1579
1580 if (smtp_enforce_sync && sender_host_address != NULL && !sender_host_notsocket)
1581   {
1582   fd_set fds;
1583   struct timeval tzero;
1584   tzero.tv_sec = 0;
1585   tzero.tv_usec = 0;
1586   FD_ZERO(&fds);
1587   FD_SET(fileno(smtp_in), &fds);
1588   if (select(fileno(smtp_in) + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL,
1589       &tzero) > 0)
1590     {
1591     log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol violation: "
1592       "synchronization error (input sent without waiting for greeting): "
1593       "rejected connection from %s", host_and_ident(TRUE));
1594     smtp_printf("554 SMTP synchronization error\r\n");
1595     return FALSE;
1596     }
1597   }
1598
1599 /* Now output the banner */
1600
1601 smtp_printf("%s", ss);
1602 return TRUE;
1603 }
1604
1605
1606
1607
1608
1609 /*************************************************
1610 *     Handle SMTP syntax and protocol errors     *
1611 *************************************************/
1612
1613 /* Write to the log for SMTP syntax errors in incoming commands, if configured
1614 to do so. Then transmit the error response. The return value depends on the
1615 number of syntax and protocol errors in this SMTP session.
1616
1617 Arguments:
1618   type      error type, given as a log flag bit
1619   code      response code; <= 0 means don't send a response
1620   data      data to reflect in the response (can be NULL)
1621   errmess   the error message
1622
1623 Returns:    -1   limit of syntax/protocol errors NOT exceeded
1624             +1   limit of syntax/protocol errors IS exceeded
1625
1626 These values fit in with the values of the "done" variable in the main
1627 processing loop in smtp_setup_msg(). */
1628
1629 static int
1630 synprot_error(int type, int code, uschar *data, uschar *errmess)
1631 {
1632 int yield = -1;
1633
1634 log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
1635   (type == L_smtp_syntax_error)? "syntax" : "protocol",
1636   string_printing(cmd_buffer), host_and_ident(TRUE), errmess);
1637
1638 if (++synprot_error_count > smtp_max_synprot_errors)
1639   {
1640   yield = 1;
1641   log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
1642     "syntax or protocol errors (last command was \"%s\")",
1643     host_and_ident(FALSE), cmd_buffer);
1644   }
1645
1646 if (code > 0)
1647   {
1648   smtp_printf("%d%c%s%s%s\r\n", code, (yield == 1)? '-' : ' ',
1649     (data == NULL)? US"" : data, (data == NULL)? US"" : US": ", errmess);
1650   if (yield == 1)
1651     smtp_printf("%d Too many syntax or protocol errors\r\n", code);
1652   }
1653
1654 return yield;
1655 }
1656
1657
1658
1659
1660 /*************************************************
1661 *          Log incomplete transactions           *
1662 *************************************************/
1663
1664 /* This function is called after a transaction has been aborted by RSET, QUIT,
1665 connection drops or other errors. It logs the envelope information received
1666 so far in order to preserve address verification attempts.
1667
1668 Argument:   string to indicate what aborted the transaction
1669 Returns:    nothing
1670 */
1671
1672 static void
1673 incomplete_transaction_log(uschar *what)
1674 {
1675 if (sender_address == NULL ||                 /* No transaction in progress */
1676     (log_write_selector & L_smtp_incomplete_transaction) == 0  /* Not logging */
1677   ) return;
1678
1679 /* Build list of recipients for logging */
1680
1681 if (recipients_count > 0)
1682   {
1683   int i;
1684   raw_recipients = store_get(recipients_count * sizeof(uschar *));
1685   for (i = 0; i < recipients_count; i++)
1686     raw_recipients[i] = recipients_list[i].address;
1687   raw_recipients_count = recipients_count;
1688   }
1689
1690 log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS,
1691   "%s incomplete transaction (%s)", host_and_ident(TRUE), what);
1692 }
1693
1694
1695
1696
1697 /*************************************************
1698 *    Send SMTP response, possibly multiline      *
1699 *************************************************/
1700
1701 /* There are, it seems, broken clients out there that cannot handle multiline
1702 responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
1703 output nothing for non-final calls, and only the first line for anything else.
1704
1705 Arguments:
1706   code          SMTP code
1707   final         FALSE if the last line isn't the final line
1708   msg           message text, possibly containing newlines
1709
1710 Returns:        nothing
1711 */
1712
1713 void
1714 smtp_respond(int code, BOOL final, uschar *msg)
1715 {
1716 if (!final && no_multiline_responses) return;
1717
1718 for (;;)
1719   {
1720   uschar *nl = Ustrchr(msg, '\n');
1721   if (nl == NULL)
1722     {
1723     smtp_printf("%d%c%s\r\n", code, final? ' ':'-', msg);
1724     return;
1725     }
1726   else if (nl[1] == 0 || no_multiline_responses)
1727     {
1728     smtp_printf("%d%c%.*s\r\n", code, final? ' ':'-', (int)(nl - msg), msg);
1729     return;
1730     }
1731   else
1732     {
1733     smtp_printf("%d-%.*s\r\n", code, (int)(nl - msg), msg);
1734     msg = nl + 1;
1735     while (isspace(*msg)) msg++;
1736     }
1737   }
1738 }
1739
1740
1741
1742
1743 /*************************************************
1744 *           Handle an ACL failure                *
1745 *************************************************/
1746
1747 /* This function is called when acl_check() fails. As well as calls from within
1748 this module, it is called from receive.c for an ACL after DATA. It sorts out
1749 logging the incident, and sets up the error response. A message containing
1750 newlines is turned into a multiline SMTP response, but for logging, only the
1751 first line is used.
1752
1753 There's a table of the response codes to use in globals.c, along with the table
1754 of names. VFRY is special. Despite RFC1123 it defaults disabled in Exim.
1755 However, discussion in connection with RFC 821bis (aka RFC 2821) has concluded
1756 that the response should be 252 in the disabled state, because there are broken
1757 clients that try VRFY before RCPT. A 5xx response should be given only when the
1758 address is positively known to be undeliverable. Sigh. Also, for ETRN, 458 is
1759 given on refusal, and for AUTH, 503.
1760
1761 Arguments:
1762   where      where the ACL was called from
1763   rc         the failure code
1764   user_msg   a message that can be included in an SMTP response
1765   log_msg    a message for logging
1766
1767 Returns:     0 in most cases
1768              2 if the failure code was FAIL_DROP, in which case the
1769                SMTP connection should be dropped (this value fits with the
1770                "done" variable in smtp_setup_msg() below)
1771 */
1772
1773 int
1774 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
1775 {
1776 int code = acl_wherecodes[where];
1777 BOOL drop = rc == FAIL_DROP;
1778 uschar *lognl;
1779 uschar *sender_info = US"";
1780 uschar *what = (where == ACL_WHERE_PREDATA)? US"DATA" :
1781 #ifdef WITH_CONTENT_SCAN
1782                (where == ACL_WHERE_MIME)? US"during MIME ACL checks" :
1783 #endif  
1784                (where == ACL_WHERE_DATA)? US"after DATA" :
1785   string_sprintf("%s %s", acl_wherenames[where], smtp_data);
1786
1787 if (drop) rc = FAIL;
1788
1789 /* We used to have sender_address here; however, there was a bug that was not
1790 updating sender_address after a rewrite during a verify. When this bug was
1791 fixed, sender_address at this point became the rewritten address. I'm not sure
1792 this is what should be logged, so I've changed to logging the unrewritten
1793 address to retain backward compatibility. */
1794
1795 #ifndef WITH_CONTENT_SCAN
1796 if (where == ACL_WHERE_RCPT || where == ACL_WHERE_DATA)
1797 #elif
1798 if (where == ACL_WHERE_RCPT || where == ACL_WHERE_DATA || where == ACL_WHERE_MIME)
1799 #endif
1800   {
1801   sender_info = string_sprintf("F=<%s> ", (sender_address_unrewritten != NULL)?
1802     sender_address_unrewritten : sender_address);
1803   }
1804
1805 /* If there's been a sender verification failure with a specific message, and
1806 we have not sent a response about it yet, do so now, as a preliminary line for
1807 failures, but not defers. However, log it in both cases. */
1808
1809 if (sender_verified_failed != NULL &&
1810     !testflag(sender_verified_failed, af_sverify_told))
1811   {
1812   setflag(sender_verified_failed, af_sverify_told);
1813
1814   log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
1815     host_and_ident(TRUE),
1816     ((sender_verified_failed->special_action & 255) == DEFER)? "defer" : "fail",
1817     sender_verified_failed->address,
1818     (sender_verified_failed->message == NULL)? US"" :
1819     string_sprintf(": %s", sender_verified_failed->message));
1820
1821   if (rc == FAIL && sender_verified_failed->user_message != NULL)
1822     smtp_respond(code, FALSE, string_sprintf(
1823         testflag(sender_verified_failed, af_verify_pmfail)?
1824           "Postmaster verification failed while checking <%s>\n%s\n"
1825           "Several RFCs state that you are required to have a postmaster\n"
1826           "mailbox for each mail domain. This host does not accept mail\n"
1827           "from domains whose servers reject the postmaster address."
1828           :
1829         testflag(sender_verified_failed, af_verify_nsfail)?
1830           "Callback setup failed while verifying <%s>\n%s\n"
1831           "The initial connection, or a HELO or MAIL FROM:<> command was\n"
1832           "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
1833           "RFC requirements, and stops you from receiving standard bounce\n"
1834           "messages. This host does not accept mail from domains whose servers\n"
1835           "refuse bounces."
1836           :
1837           "Verification failed for <%s>\n%s",
1838         sender_verified_failed->address,
1839         sender_verified_failed->user_message));
1840   }
1841
1842 /* Sort out text for logging */
1843
1844 log_msg = (log_msg == NULL)? US"" : string_sprintf(": %s", log_msg);
1845 lognl = Ustrchr(log_msg, '\n');
1846 if (lognl != NULL) *lognl = 0;
1847
1848 /* Send permanent failure response to the command, but the code used isn't
1849 always a 5xx one - see comments at the start of this function. If the original
1850 rc was FAIL_DROP we drop the connection and yield 2. */
1851
1852 if (rc == FAIL) smtp_respond(code, TRUE, (user_msg == NULL)?
1853   US"Administrative prohibition" : user_msg);
1854
1855 /* Send temporary failure response to the command. Don't give any details,
1856 unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
1857 verb, and for a header verify when smtp_return_error_details is set.
1858
1859 This conditional logic is all somewhat of a mess because of the odd
1860 interactions between temp_details and return_error_details. One day it should
1861 be re-implemented in a tidier fashion. */
1862
1863 else
1864   {
1865   if (acl_temp_details && user_msg != NULL)
1866     {
1867     if (smtp_return_error_details &&
1868         sender_verified_failed != NULL &&
1869         sender_verified_failed->message != NULL)
1870       {
1871       smtp_respond(451, FALSE, sender_verified_failed->message);
1872       }
1873     smtp_respond(451, TRUE, user_msg);
1874     }
1875   else
1876     smtp_printf("451 Temporary local problem - please try later\r\n");
1877   }
1878
1879 /* Log the incident. If the connection is not forcibly to be dropped, return 0.
1880 Otherwise, log why it is closing if required and return 2.  */
1881
1882 log_write(0, LOG_MAIN|LOG_REJECT, "%s %s%srejected %s%s",
1883   host_and_ident(TRUE),
1884   sender_info, (rc == FAIL)? US"" : US"temporarily ", what, log_msg);
1885
1886 if (!drop) return 0;
1887
1888 log_write(L_smtp_connection, LOG_MAIN, "%s closed by DROP in ACL",
1889   smtp_get_connection_info());
1890 return 2;
1891 }
1892
1893
1894
1895
1896 /*************************************************
1897 *       Initialize for SMTP incoming message     *
1898 *************************************************/
1899
1900 /* This function conducts the initial dialogue at the start of an incoming SMTP
1901 message, and builds a list of recipients. However, if the incoming message
1902 is part of a batch (-bS option) a separate function is called since it would
1903 be messy having tests splattered about all over this function. This function
1904 therefore handles the case where interaction is occurring. The input and output
1905 files are set up in smtp_in and smtp_out.
1906
1907 The global recipients_list is set to point to a vector of recipient_item
1908 blocks, whose number is given by recipients_count. This is extended by the
1909 receive_add_recipient() function. The global variable sender_address is set to
1910 the sender's address. The yield is +1 if a message has been successfully
1911 started, 0 if a QUIT command was encountered or the connection was refused from
1912 the particular host, or -1 if the connection was lost.
1913
1914 Argument: none
1915
1916 Returns:  > 0 message successfully started (reached DATA)
1917           = 0 QUIT read or end of file reached or call refused
1918           < 0 lost connection
1919 */
1920
1921 int
1922 smtp_setup_msg(void)
1923 {
1924 int done = 0;
1925 BOOL toomany = FALSE;
1926 BOOL discarded = FALSE;
1927 BOOL last_was_rej_mail = FALSE;
1928 BOOL last_was_rcpt = FALSE;
1929 void *reset_point = store_get(0);
1930
1931 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
1932
1933 /* Reset for start of new message. We allow one RSET not to be counted as a
1934 nonmail command, for those MTAs that insist on sending it between every
1935 message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
1936 TLS between messages (an Exim client may do this if it has messages queued up
1937 for the host). Note: we do NOT reset AUTH at this point. */
1938
1939 smtp_reset(reset_point);
1940 message_ended = END_NOTSTARTED;
1941
1942 cmd_list[CMD_LIST_RSET].is_mail_cmd = TRUE;
1943 cmd_list[CMD_LIST_HELO].is_mail_cmd = TRUE;
1944 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
1945 #ifdef SUPPORT_TLS
1946 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
1947 #endif
1948
1949 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
1950
1951 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
1952
1953 /* Batched SMTP is handled in a different function. */
1954
1955 if (smtp_batched_input) return smtp_setup_batch_msg();
1956
1957 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
1958 value. The values are 2 larger than the required yield of the function. */
1959
1960 while (done <= 0)
1961   {
1962   uschar **argv;
1963   uschar *etrn_command;
1964   uschar *etrn_serialize_key;
1965   uschar *errmess;
1966   uschar *user_msg, *log_msg;
1967   uschar *recipient = NULL;
1968   uschar *hello = NULL;
1969   uschar *set_id = NULL;
1970   uschar *s, *ss;
1971   BOOL was_rej_mail = FALSE;
1972   BOOL was_rcpt = FALSE;
1973   void (*oldsignal)(int);
1974   pid_t pid;
1975   int start, end, sender_domain, recipient_domain;
1976   int ptr, size, rc;
1977   int c;
1978   auth_instance *au;
1979
1980   switch(smtp_read_command(TRUE))
1981     {
1982     /* The AUTH command is not permitted to occur inside a transaction, and may
1983     occur successfully only once per connection, and then only when we've
1984     advertised it. Actually, that isn't quite true. When TLS is started, all
1985     previous information about a connection must be discarded, so a new AUTH is
1986     permitted at that time.
1987
1988     AUTH is initially labelled as a "nonmail command" so that one occurrence
1989     doesn't get counted. We change the label here so that multiple failing
1990     AUTHS will eventually hit the nonmail threshold. */
1991
1992     case AUTH_CMD:
1993     authentication_failed = TRUE;
1994     cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
1995
1996     if (!auth_advertised)
1997       {
1998       done = synprot_error(L_smtp_protocol_error, 503, NULL,
1999         US"AUTH command used when not advertised");
2000       break;
2001       }
2002     if (sender_host_authenticated != NULL)
2003       {
2004       done = synprot_error(L_smtp_protocol_error, 503, NULL,
2005         US"already authenticated");
2006       break;
2007       }
2008     if (sender_address != NULL)
2009       {
2010       done = synprot_error(L_smtp_protocol_error, 503, NULL,
2011         US"not permitted in mail transaction");
2012       break;
2013       }
2014
2015     /* Check the ACL */
2016
2017     if (acl_smtp_auth != NULL)
2018       {
2019       rc = acl_check(ACL_WHERE_AUTH, smtp_data, acl_smtp_auth, &user_msg,
2020         &log_msg);
2021       if (rc != OK)
2022         {
2023         done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
2024         break;
2025         }
2026       }
2027
2028     /* Find the name of the requested authentication mechanism. */
2029
2030     s = smtp_data;
2031     while ((c = *smtp_data) != 0 && !isspace(c))
2032       {
2033       if (!isalnum(c) && c != '-' && c != '_')
2034         {
2035         done = synprot_error(L_smtp_syntax_error, 501, NULL,
2036           US"invalid character in authentication mechanism name");
2037         goto COMMAND_LOOP;
2038         }
2039       smtp_data++;
2040       }
2041
2042     /* If not at the end of the line, we must be at white space. Terminate the
2043     name and move the pointer on to any data that may be present. */
2044
2045     if (*smtp_data != 0)
2046       {
2047       *smtp_data++ = 0;
2048       while (isspace(*smtp_data)) smtp_data++;
2049       }
2050
2051     /* Search for an authentication mechanism which is configured for use
2052     as a server and which has been advertised. */
2053
2054     for (au = auths; au != NULL; au = au->next)
2055       {
2056       if (strcmpic(s, au->public_name) == 0 && au->server &&
2057           au->advertised) break;
2058       }
2059
2060     if (au == NULL)
2061       {
2062       done = synprot_error(L_smtp_protocol_error, 504, NULL,
2063         string_sprintf("%s authentication mechanism not supported", s));
2064       break;
2065       }
2066
2067     /* Run the checking code, passing the remainder of the command
2068     line as data. Initialize $0 empty. The authenticator may set up
2069     other numeric variables. Afterwards, have a go at expanding the set_id
2070     string, even if authentication failed - for bad passwords it can be useful
2071     to log the userid. On success, require set_id to expand and exist, and
2072     put it in authenticated_id. Save this in permanent store, as the working
2073     store gets reset at HELO, RSET, etc. */
2074
2075     expand_nmax = 0;
2076     expand_nlength[0] = 0;   /* $0 contains nothing */
2077
2078     c = (au->info->servercode)(au, smtp_data);
2079     if (au->set_id != NULL) set_id = expand_string(au->set_id);
2080     expand_nmax = -1;        /* Reset numeric variables */
2081
2082     /* For the non-OK cases, set up additional logging data if set_id
2083     is not empty. */
2084
2085     if (c != OK)
2086       {
2087       if (set_id != NULL && *set_id != 0)
2088         set_id = string_sprintf(" (set_id=%s)", set_id);
2089       else set_id = US"";
2090       }
2091
2092     /* Switch on the result */
2093
2094     switch(c)
2095       {
2096       case OK:
2097       if (au->set_id == NULL || set_id != NULL)    /* Complete success */
2098         {
2099         if (set_id != NULL) authenticated_id = string_copy_malloc(set_id);
2100         sender_host_authenticated = au->name;
2101         authentication_failed = FALSE;
2102         received_protocol =
2103           protocols[pextend + pauthed + ((tls_active >= 0)? pcrpted:0)] +
2104             ((sender_host_address != NULL)? pnlocal : 0);
2105         s = ss = US"235 Authentication succeeded";
2106         authenticated_by = au;
2107         break;
2108         }
2109
2110       /* Authentication succeeded, but we failed to expand the set_id string.
2111       Treat this as a temporary error. */
2112
2113       auth_defer_msg = expand_string_message;
2114       /* Fall through */
2115
2116       case DEFER:
2117       s = string_sprintf("435 Unable to authenticate at present%s",
2118         auth_defer_user_msg);
2119       ss = string_sprintf("435 Unable to authenticate at present%s: %s",
2120         set_id, auth_defer_msg);
2121       break;
2122
2123       case BAD64:
2124       s = ss = US"501 Invalid base64 data";
2125       break;
2126
2127       case CANCELLED:
2128       s = ss = US"501 Authentication cancelled";
2129       break;
2130
2131       case UNEXPECTED:
2132       s = ss = US"553 Initial data not expected";
2133       break;
2134
2135       case FAIL:
2136       s = US"535 Incorrect authentication data";
2137       ss = string_sprintf("535 Incorrect authentication data%s", set_id);
2138       break;
2139
2140       default:
2141       s = US"435 Internal error";
2142       ss = string_sprintf("435 Internal error%s: return %d from authentication "
2143         "check", set_id, c);
2144       break;
2145       }
2146
2147     smtp_printf("%s\r\n", s);
2148     if (c != OK)
2149       log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
2150         au->name, host_and_ident(FALSE), ss);
2151
2152     break;  /* AUTH_CMD */
2153
2154     /* The HELO/EHLO commands are permitted to appear in the middle of a
2155     session as well as at the beginning. They have the effect of a reset in
2156     addition to their other functions. Their absence at the start cannot be
2157     taken to be an error.
2158
2159     RFC 2821 says:
2160
2161       If the EHLO command is not acceptable to the SMTP server, 501, 500,
2162       or 502 failure replies MUST be returned as appropriate.  The SMTP
2163       server MUST stay in the same state after transmitting these replies
2164       that it was in before the EHLO was received.
2165
2166     Therefore, we do not do the reset until after checking the command for
2167     acceptability. This change was made for Exim release 4.11. Previously
2168     it did the reset first. */
2169
2170     case HELO_CMD:
2171     hello = US"HELO";
2172     esmtp = FALSE;
2173     goto HELO_EHLO;
2174
2175     case EHLO_CMD:
2176     hello = US"EHLO";
2177     esmtp = TRUE;
2178
2179     HELO_EHLO:      /* Common code for HELO and EHLO */
2180     cmd_list[CMD_LIST_HELO].is_mail_cmd = FALSE;
2181     cmd_list[CMD_LIST_EHLO].is_mail_cmd = FALSE;
2182
2183     /* Reject the HELO if its argument was invalid or non-existent. A
2184     successful check causes the argument to be saved in malloc store. */
2185
2186     if (!check_helo(smtp_data))
2187       {
2188       smtp_printf("501 Syntactically invalid %s argument(s)\r\n", hello);
2189
2190       log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
2191         "invalid argument(s): %s", hello, host_and_ident(FALSE),
2192         (*smtp_data == 0)? US"(no argument given)" :
2193                            string_printing(smtp_data));
2194
2195       if (++synprot_error_count > smtp_max_synprot_errors)
2196         {
2197         log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
2198           "syntax or protocol errors (last command was \"%s\")",
2199           host_and_ident(FALSE), cmd_buffer);
2200         done = 1;
2201         }
2202
2203       break;
2204       }
2205
2206     /* If sender_host_unknown is true, we have got here via the -bs interface,
2207     not called from inetd. Otherwise, we are running an IP connection and the
2208     host address will be set. If the helo name is the primary name of this
2209     host and we haven't done a reverse lookup, force one now. If helo_required
2210     is set, ensure that the HELO name matches the actual host. If helo_verify
2211     is set, do the same check, but softly. */
2212
2213     if (!sender_host_unknown)
2214       {
2215       BOOL old_helo_verified = helo_verified;
2216       uschar *p = smtp_data;
2217
2218       while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
2219       *p = 0;
2220
2221       /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
2222       because otherwise the log can be confusing. */
2223
2224       if (sender_host_name == NULL &&
2225            (deliver_domain = sender_helo_name,  /* set $domain */
2226             match_isinlist(sender_helo_name, &helo_lookup_domains, 0,
2227               &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL)) == OK)
2228         (void)host_name_lookup();
2229
2230       /* Rebuild the fullhost info to include the HELO name (and the real name
2231       if it was looked up.) */
2232
2233       host_build_sender_fullhost();  /* Rebuild */
2234       set_process_info("handling%s incoming connection from %s",
2235         (tls_active >= 0)? " TLS" : "", host_and_ident(FALSE));
2236
2237       /* Verify if configured. This doesn't give much security, but it does
2238       make some people happy to be able to do it. Note that HELO is legitimately
2239       allowed to quote an address literal. Allow for IPv6 ::ffff: literals. */
2240
2241       helo_verified = FALSE;
2242       if (helo_required || helo_verify)
2243         {
2244         BOOL tempfail = FALSE;
2245
2246         HDEBUG(D_receive) debug_printf("verifying %s %s\n", hello,
2247           sender_helo_name);
2248         if (sender_helo_name[0] == '[')
2249           {
2250           helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
2251             Ustrlen(sender_host_address)) == 0;
2252
2253           #if HAVE_IPV6
2254           if (!helo_verified)
2255             {
2256             if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
2257               helo_verified = Ustrncmp(sender_helo_name + 1,
2258                 sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
2259             }
2260           #endif
2261
2262           HDEBUG(D_receive)
2263             { if (helo_verified) debug_printf("matched host address\n"); }
2264           }
2265
2266         /* Do a reverse lookup if one hasn't already given a positive or
2267         negative response. If that fails, or the name doesn't match, try
2268         checking with a forward lookup. */
2269
2270         else
2271           {
2272           if (sender_host_name == NULL && !host_lookup_failed)
2273             tempfail = host_name_lookup() == DEFER;
2274
2275           /* If a host name is known, check it and all its aliases. */
2276
2277           if (sender_host_name != NULL)
2278             {
2279             helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0;
2280
2281             if (helo_verified)
2282               {
2283               HDEBUG(D_receive) debug_printf("matched host name\n");
2284               }
2285             else
2286               {
2287               uschar **aliases = sender_host_aliases;
2288               while (*aliases != NULL)
2289                 {
2290                 helo_verified = strcmpic(*aliases++, sender_helo_name) == 0;
2291                 if (helo_verified) break;
2292                 }
2293               HDEBUG(D_receive)
2294                 {
2295                 if (helo_verified)
2296                   debug_printf("matched alias %s\n", *(--aliases));
2297                 }
2298               }
2299             }
2300
2301           /* Final attempt: try a forward lookup of the helo name */
2302
2303           if (!helo_verified)
2304             {
2305             int rc;
2306             host_item h;
2307             h.name = sender_helo_name;
2308             h.address = NULL;
2309             h.mx = MX_NONE;
2310             h.next = NULL;
2311             HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
2312               sender_helo_name);
2313             rc = host_find_byname(&h, NULL, NULL, TRUE);
2314             if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
2315               {
2316               host_item *hh = &h;
2317               while (hh != NULL)
2318                 {
2319                 if (Ustrcmp(hh->address, sender_host_address) == 0)
2320                   {
2321                   helo_verified = TRUE;
2322                   HDEBUG(D_receive)
2323                     debug_printf("IP address for %s matches calling address\n",
2324                       sender_helo_name);
2325                   break;
2326                   }
2327                 hh = hh->next;
2328                 }
2329               }
2330             }
2331           }
2332
2333         /* Verification failed. A temporary lookup failure gives a temporary
2334         error. */
2335
2336         if (!helo_verified)
2337           {
2338           if (helo_required)
2339             {
2340             smtp_printf("%d %s argument does not match calling host\r\n",
2341               tempfail? 451 : 550, hello);
2342             log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
2343               tempfail? "temporarily " : "",
2344               hello, sender_helo_name, host_and_ident(FALSE));
2345             helo_verified = old_helo_verified;
2346             break;                   /* End of HELO/EHLO processing */
2347             }
2348           HDEBUG(D_all) debug_printf("%s verification failed but host is in "
2349             "helo_try_verify_hosts\n", hello);
2350           }
2351         }
2352       }
2353
2354     /* Apply an ACL check if one is defined */
2355
2356     if (acl_smtp_helo != NULL)
2357       {
2358       rc = acl_check(ACL_WHERE_HELO, smtp_data, acl_smtp_helo, &user_msg,
2359         &log_msg);
2360       if (rc != OK)
2361         {
2362         done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
2363         sender_helo_name = NULL;
2364         host_build_sender_fullhost();  /* Rebuild */
2365         break;
2366         }
2367       }
2368
2369     /* The EHLO/HELO command is acceptable. Reset the protocol and the state,
2370     abandoning any previous message. */
2371
2372     received_protocol = (esmtp?
2373       protocols[pextend +
2374         ((sender_host_authenticated != NULL)? pauthed : 0) +
2375         ((tls_active >= 0)? pcrpted : 0)]
2376       :
2377       protocols[pnormal + ((tls_active >= 0)? pcrpted : 0)])
2378       +
2379       ((sender_host_address != NULL)? pnlocal : 0);
2380
2381     smtp_reset(reset_point);
2382     toomany = FALSE;
2383
2384     /* Generate an OK reply, including the ident if present, and also
2385     the IP address if present. Reflecting back the ident is intended
2386     as a deterrent to mail forgers. For maximum efficiency, and also
2387     because some broken systems expect each response to be in a single
2388     packet, arrange that it is sent in one write(). */
2389
2390     auth_advertised = FALSE;
2391     pipelining_advertised = FALSE;
2392     #ifdef SUPPORT_TLS
2393     tls_advertised = FALSE;
2394     #endif
2395
2396     s = string_sprintf("250 %s Hello %s%s%s",
2397       smtp_active_hostname,
2398       (sender_ident == NULL)?  US"" : sender_ident,
2399       (sender_ident == NULL)?  US"" : US" at ",
2400       (sender_host_name == NULL)? sender_helo_name : sender_host_name);
2401
2402     ptr = Ustrlen(s);
2403     size = ptr + 1;
2404
2405     if (sender_host_address != NULL)
2406       {
2407       s = string_cat(s, &size, &ptr, US" [", 2);
2408       s = string_cat(s, &size, &ptr, sender_host_address,
2409         Ustrlen(sender_host_address));
2410       s = string_cat(s, &size, &ptr, US"]", 1);
2411       }
2412
2413     s = string_cat(s, &size, &ptr, US"\r\n", 2);
2414
2415     /* If we received EHLO, we must create a multiline response which includes
2416     the functions supported. */
2417
2418     if (esmtp)
2419       {
2420       s[3] = '-';
2421
2422       /* I'm not entirely happy with this, as an MTA is supposed to check
2423       that it has enough room to accept a message of maximum size before
2424       it sends this. However, there seems little point in not sending it.
2425       The actual size check happens later at MAIL FROM time. By postponing it
2426       till then, VRFY and EXPN can be used after EHLO when space is short. */
2427
2428       if (thismessage_size_limit > 0)
2429         {
2430         sprintf(CS big_buffer, "250-SIZE %d\r\n", thismessage_size_limit);
2431         s = string_cat(s, &size, &ptr, big_buffer, Ustrlen(big_buffer));
2432         }
2433       else
2434         {
2435         s = string_cat(s, &size, &ptr, US"250-SIZE\r\n", 10);
2436         }
2437
2438       /* Exim does not do protocol conversion or data conversion. It is 8-bit
2439       clean; if it has an 8-bit character in its hand, it just sends it. It
2440       cannot therefore specify 8BITMIME and remain consistent with the RFCs.
2441       However, some users want this option simply in order to stop MUAs
2442       mangling messages that contain top-bit-set characters. It is therefore
2443       provided as an option. */
2444
2445       if (accept_8bitmime)
2446         s = string_cat(s, &size, &ptr, US"250-8BITMIME\r\n", 14);
2447
2448       /* Advertise ETRN if there's an ACL checking whether a host is
2449       permitted to issue it; a check is made when any host actually tries. */
2450
2451       if (acl_smtp_etrn != NULL)
2452         {
2453         s = string_cat(s, &size, &ptr, US"250-ETRN\r\n", 10);
2454         }
2455
2456       /* Advertise EXPN if there's an ACL checking whether a host is
2457       permitted to issue it; a check is made when any host actually tries. */
2458
2459       if (acl_smtp_expn != NULL)
2460         {
2461         s = string_cat(s, &size, &ptr, US"250-EXPN\r\n", 10);
2462         }
2463
2464       /* Exim is quite happy with pipelining, so let the other end know that
2465       it is safe to use it, unless advertising is disabled. */
2466
2467       if (verify_check_host(&pipelining_advertise_hosts) == OK)
2468         {
2469         s = string_cat(s, &size, &ptr, US"250-PIPELINING\r\n", 16);
2470         sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
2471         pipelining_advertised = TRUE;
2472         }
2473
2474       /* If any server authentication mechanisms are configured, advertise
2475       them if the current host is in auth_advertise_hosts. The problem with
2476       advertising always is that some clients then require users to
2477       authenticate (and aren't configurable otherwise) even though it may not
2478       be necessary (e.g. if the host is in host_accept_relay).
2479
2480       RFC 2222 states that SASL mechanism names contain only upper case
2481       letters, so output the names in upper case, though we actually recognize
2482       them in either case in the AUTH command. */
2483
2484       if (auths != NULL)
2485         {
2486         if (verify_check_host(&auth_advertise_hosts) == OK)
2487           {
2488           auth_instance *au;
2489           BOOL first = TRUE;
2490           for (au = auths; au != NULL; au = au->next)
2491             {
2492             if (au->server && (au->advertise_condition == NULL ||
2493                 expand_check_condition(au->advertise_condition, au->name,
2494                 US"authenticator")))
2495               {
2496               int saveptr;
2497               if (first)
2498                 {
2499                 s = string_cat(s, &size, &ptr, US"250-AUTH", 8);
2500                 first = FALSE;
2501                 auth_advertised = TRUE;
2502                 }
2503               saveptr = ptr;
2504               s = string_cat(s, &size, &ptr, US" ", 1);
2505               s = string_cat(s, &size, &ptr, au->public_name,
2506                 Ustrlen(au->public_name));
2507               while (++saveptr < ptr) s[saveptr] = toupper(s[saveptr]);
2508               au->advertised = TRUE;
2509               }
2510             else au->advertised = FALSE;
2511             }
2512           if (!first) s = string_cat(s, &size, &ptr, US"\r\n", 2);
2513           }
2514         }
2515
2516       /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
2517       if it has been included in the binary, and the host matches
2518       tls_advertise_hosts. We must *not* advertise if we are already in a
2519       secure connection. */
2520
2521       #ifdef SUPPORT_TLS
2522       if (tls_active < 0 &&
2523           verify_check_host(&tls_advertise_hosts) != FAIL)
2524         {
2525         s = string_cat(s, &size, &ptr, US"250-STARTTLS\r\n", 14);
2526         tls_advertised = TRUE;
2527         }
2528       #endif
2529
2530       /* Finish off the multiline reply with one that is always available. */
2531
2532       s = string_cat(s, &size, &ptr, US"250 HELP\r\n", 10);
2533       }
2534
2535     /* Terminate the string (for debug), write it, and note that HELO/EHLO
2536     has been seen. */
2537
2538     s[ptr] = 0;
2539
2540     #ifdef SUPPORT_TLS
2541     if (tls_active >= 0) (void)tls_write(s, ptr); else
2542     #endif
2543
2544     fwrite(s, 1, ptr, smtp_out);
2545     DEBUG(D_receive) debug_printf("SMTP>> %s", s);
2546     helo_seen = TRUE;
2547     break;   /* HELO/EHLO */
2548
2549
2550     /* The MAIL command requires an address as an operand. All we do
2551     here is to parse it for syntactic correctness. The form "<>" is
2552     a special case which converts into an empty string. The start/end
2553     pointers in the original are not used further for this address, as
2554     it is the canonical extracted address which is all that is kept. */
2555
2556     case MAIL_CMD:
2557     smtp_mailcmd_count++;              /* Count for limit and ratelimit */
2558     was_rej_mail = TRUE;               /* Reset if accepted */
2559
2560     if (helo_required && !helo_seen)
2561       {
2562       smtp_printf("503 HELO or EHLO required\r\n");
2563       log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
2564         "HELO/EHLO given", host_and_ident(FALSE));
2565       break;
2566       }
2567
2568     if (sender_address != NULL)
2569       {
2570       done = synprot_error(L_smtp_protocol_error, 503, NULL,
2571         US"sender already given");
2572       break;
2573       }
2574
2575     if (smtp_data[0] == 0)
2576       {
2577       done = synprot_error(L_smtp_protocol_error, 501, NULL,
2578         US"MAIL must have an address operand");
2579       break;
2580       }
2581
2582     /* Check to see if the limit for messages per connection would be
2583     exceeded by accepting further messages. */
2584
2585     if (smtp_accept_max_per_connection > 0 &&
2586         smtp_mailcmd_count > smtp_accept_max_per_connection)
2587       {
2588       smtp_printf("421 too many messages in this connection\r\n");
2589       log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
2590         "messages in one connection", host_and_ident(TRUE));
2591       break;
2592       }
2593
2594     /* Reset for start of message - even if this is going to fail, we
2595     obviously need to throw away any previous data. */
2596
2597     smtp_reset(reset_point);
2598     toomany = FALSE;
2599     sender_data = recipient_data = NULL;
2600
2601     /* Loop, checking for ESMTP additions to the MAIL FROM command. */
2602
2603     if (esmtp) for(;;)
2604       {
2605       uschar *name, *value, *end;
2606       unsigned long int size;
2607
2608       if (!extract_option(&name, &value)) break;
2609
2610       /* Handle SIZE= by reading the value. We don't do the check till later,
2611       in order to be able to log the sender address on failure. */
2612
2613       if (strcmpic(name, US"SIZE") == 0 &&
2614           ((size = (int)Ustrtoul(value, &end, 10)), *end == 0))
2615         {
2616         if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
2617           size = INT_MAX;
2618         message_size = (int)size;
2619         }
2620
2621       /* If this session was initiated with EHLO and accept_8bitmime is set,
2622       Exim will have indicated that it supports the BODY=8BITMIME option. In
2623       fact, it does not support this according to the RFCs, in that it does not
2624       take any special action for forwarding messages containing 8-bit
2625       characters. That is why accept_8bitmime is not the default setting, but
2626       some sites want the action that is provided. We recognize both "8BITMIME"
2627       and "7BIT" as body types, but take no action. */
2628
2629       else if (accept_8bitmime && strcmpic(name, US"BODY") == 0 &&
2630           (strcmpic(value, US"8BITMIME") == 0 ||
2631            strcmpic(value, US"7BIT") == 0)) {}
2632
2633       /* Handle the AUTH extension. If the value given is not "<>" and either
2634       the ACL says "yes" or there is no ACL but the sending host is
2635       authenticated, we set it up as the authenticated sender. However, if the
2636       authenticator set a condition to be tested, we ignore AUTH on MAIL unless
2637       the condition is met. The value of AUTH is an xtext, which means that +,
2638       = and cntrl chars are coded in hex; however "<>" is unaffected by this
2639       coding. */
2640
2641       else if (strcmpic(name, US"AUTH") == 0)
2642         {
2643         if (Ustrcmp(value, "<>") != 0)
2644           {
2645           int rc;
2646           uschar *ignore_msg;
2647
2648           if (auth_xtextdecode(value, &authenticated_sender) < 0)
2649             {
2650             /* Put back terminator overrides for error message */
2651             name[-1] = ' ';
2652             value[-1] = '=';
2653             done = synprot_error(L_smtp_syntax_error, 501, NULL,
2654               US"invalid data for AUTH");
2655             goto COMMAND_LOOP;
2656             }
2657
2658           if (acl_smtp_mailauth == NULL)
2659             {
2660             ignore_msg = US"client not authenticated";
2661             rc = (sender_host_authenticated != NULL)? OK : FAIL;
2662             }
2663           else
2664             {
2665             ignore_msg = US"rejected by ACL";
2666             rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
2667               &user_msg, &log_msg);
2668             }
2669
2670           switch (rc)
2671             {
2672             case OK:
2673             if (authenticated_by == NULL ||
2674                 authenticated_by->mail_auth_condition == NULL ||
2675                 expand_check_condition(authenticated_by->mail_auth_condition,
2676                     authenticated_by->name, US"authenticator"))
2677               break;     /* Accept the AUTH */
2678
2679             ignore_msg = US"server_mail_auth_condition failed";
2680             if (authenticated_id != NULL)
2681               ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
2682                 ignore_msg, authenticated_id);
2683
2684             /* Fall through */
2685
2686             case FAIL:
2687             authenticated_sender = NULL;
2688             log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
2689               value, host_and_ident(TRUE), ignore_msg);
2690             break;
2691
2692             /* Should only get DEFER or ERROR here. Put back terminator
2693             overrides for error message */
2694
2695             default:
2696             name[-1] = ' ';
2697             value[-1] = '=';
2698             (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
2699               log_msg);
2700             goto COMMAND_LOOP;
2701             }
2702           }
2703         }
2704
2705       /* Unknown option. Stick back the terminator characters and break
2706       the loop. An error for a malformed address will occur. */
2707
2708       else
2709         {
2710         name[-1] = ' ';
2711         value[-1] = '=';
2712         break;
2713         }
2714       }
2715
2716     /* If we have passed the threshold for rate limiting, apply the current
2717     delay, and update it for next time, provided this is a limited host. */
2718
2719     if (smtp_mailcmd_count > smtp_rlm_threshold &&
2720         verify_check_host(&smtp_ratelimit_hosts) == OK)
2721       {
2722       DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
2723         smtp_delay_mail/1000.0);
2724       millisleep((int)smtp_delay_mail);
2725       smtp_delay_mail *= smtp_rlm_factor;
2726       if (smtp_delay_mail > (double)smtp_rlm_limit)
2727         smtp_delay_mail = (double)smtp_rlm_limit;
2728       }
2729
2730     /* Now extract the address, first applying any SMTP-time rewriting. The
2731     TRUE flag allows "<>" as a sender address. */
2732
2733     raw_sender = ((rewrite_existflags & rewrite_smtp) != 0)?
2734       rewrite_one(smtp_data, rewrite_smtp, NULL, FALSE, US"",
2735         global_rewrite_rules) : smtp_data;
2736
2737     /* rfc821_domains = TRUE; << no longer needed */
2738     raw_sender =
2739       parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
2740         TRUE);
2741     /* rfc821_domains = FALSE; << no longer needed */
2742
2743     if (raw_sender == NULL)
2744       {
2745       done = synprot_error(L_smtp_syntax_error, 501, smtp_data, errmess);
2746       break;
2747       }
2748
2749     sender_address = raw_sender;
2750
2751     /* If there is a configured size limit for mail, check that this message
2752     doesn't exceed it. The check is postponed to this point so that the sender
2753     can be logged. */
2754
2755     if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
2756       {
2757       smtp_printf("552 Message size exceeds maximum permitted\r\n");
2758       log_write(L_size_reject,
2759           LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
2760           "message too big: size%s=%d max=%d",
2761           sender_address,
2762           host_and_ident(TRUE),
2763           (message_size == INT_MAX)? ">" : "",
2764           message_size,
2765           thismessage_size_limit);
2766       sender_address = NULL;
2767       break;
2768       }
2769
2770     /* Check there is enough space on the disk unless configured not to.
2771     When smtp_check_spool_space is set, the check is for thismessage_size_limit
2772     plus the current message - i.e. we accept the message only if it won't
2773     reduce the space below the threshold. Add 5000 to the size to allow for
2774     overheads such as the Received: line and storing of recipients, etc.
2775     By putting the check here, even when SIZE is not given, it allow VRFY
2776     and EXPN etc. to be used when space is short. */
2777
2778     if (!receive_check_fs(
2779          (smtp_check_spool_space && message_size >= 0)?
2780             message_size + 5000 : 0))
2781       {
2782       smtp_printf("452 Space shortage, please try later\r\n");
2783       sender_address = NULL;
2784       break;
2785       }
2786
2787     /* If sender_address is unqualified, reject it, unless this is a locally
2788     generated message, or the sending host or net is permitted to send
2789     unqualified addresses - typically local machines behaving as MUAs -
2790     in which case just qualify the address. The flag is set above at the start
2791     of the SMTP connection. */
2792
2793     if (sender_domain == 0 && sender_address[0] != 0)
2794       {
2795       if (allow_unqualified_sender)
2796         {
2797         sender_domain = Ustrlen(sender_address) + 1;
2798         sender_address = rewrite_address_qualify(sender_address, FALSE);
2799         DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
2800           raw_sender);
2801         }
2802       else
2803         {
2804         smtp_printf("501 %s: sender address must contain a domain\r\n",
2805           smtp_data);
2806         log_write(L_smtp_syntax_error,
2807           LOG_MAIN|LOG_REJECT,
2808           "unqualified sender rejected: <%s> %s%s",
2809           raw_sender,
2810           host_and_ident(TRUE),
2811           host_lookup_msg);
2812         sender_address = NULL;
2813         break;
2814         }
2815       }
2816
2817     /* Apply an ACL check if one is defined, before responding */
2818
2819     rc = (acl_smtp_mail == NULL)? OK :
2820       acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
2821
2822     if (rc == OK || rc == DISCARD)
2823       {
2824       smtp_printf("250 OK\r\n");
2825       smtp_delay_rcpt = smtp_rlr_base;
2826       recipients_discarded = (rc == DISCARD);
2827       was_rej_mail = FALSE;
2828       }
2829
2830     else
2831       {
2832       done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
2833       sender_address = NULL;
2834       }
2835     break;
2836
2837
2838     /* The RCPT command requires an address as an operand. All we do
2839     here is to parse it for syntactic correctness. There may be any number
2840     of RCPT commands, specifying multiple senders. We build them all into
2841     a data structure that is in argc/argv format. The start/end values
2842     given by parse_extract_address are not used, as we keep only the
2843     extracted address. */
2844
2845     case RCPT_CMD:
2846     rcpt_count++;
2847     was_rcpt = TRUE;
2848
2849     /* There must be a sender address; if the sender was rejected and
2850     pipelining was advertised, we assume the client was pipelining, and do not
2851     count this as a protocol error. Reset was_rej_mail so that further RCPTs
2852     get the same treatment. */
2853
2854     if (sender_address == NULL)
2855       {
2856       if (pipelining_advertised && last_was_rej_mail)
2857         {
2858         smtp_printf("503 sender not yet given\r\n");
2859         was_rej_mail = TRUE;
2860         }
2861       else
2862         {
2863         done = synprot_error(L_smtp_protocol_error, 503, NULL,
2864           US"sender not yet given");
2865         was_rcpt = FALSE;             /* Not a valid RCPT */
2866         }
2867       rcpt_fail_count++;
2868       break;
2869       }
2870
2871     /* Check for an operand */
2872
2873     if (smtp_data[0] == 0)
2874       {
2875       done = synprot_error(L_smtp_syntax_error, 501, NULL,
2876         US"RCPT must have an address operand");
2877       rcpt_fail_count++;
2878       break;
2879       }
2880
2881     /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
2882     as a recipient address */
2883
2884     recipient = ((rewrite_existflags & rewrite_smtp) != 0)?
2885       rewrite_one(smtp_data, rewrite_smtp, NULL, FALSE, US"",
2886         global_rewrite_rules) : smtp_data;
2887
2888     /* rfc821_domains = TRUE; << no longer needed */
2889     recipient = parse_extract_address(recipient, &errmess, &start, &end,
2890       &recipient_domain, FALSE);
2891     /* rfc821_domains = FALSE; << no longer needed */
2892
2893     if (recipient == NULL)
2894       {
2895       done = synprot_error(L_smtp_syntax_error, 501, smtp_data, errmess);
2896       rcpt_fail_count++;
2897       break;
2898       }
2899
2900     /* If the recipient address is unqualified, reject it, unless this is a
2901     locally generated message. However, unqualified addresses are permitted
2902     from a configured list of hosts and nets - typically when behaving as
2903     MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
2904     really. The flag is set at the start of the SMTP connection.
2905
2906     RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
2907     assumed this meant "reserved local part", but the revision of RFC 821 and
2908     friends now makes it absolutely clear that it means *mailbox*. Consequently
2909     we must always qualify this address, regardless. */
2910
2911     if (recipient_domain == 0)
2912       {
2913       if (allow_unqualified_recipient ||
2914           strcmpic(recipient, US"postmaster") == 0)
2915         {
2916         DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
2917           recipient);
2918         recipient_domain = Ustrlen(recipient) + 1;
2919         recipient = rewrite_address_qualify(recipient, TRUE);
2920         }
2921       else
2922         {
2923         rcpt_fail_count++;
2924         smtp_printf("501 %s: recipient address must contain a domain\r\n",
2925           smtp_data);
2926         log_write(L_smtp_syntax_error,
2927           LOG_MAIN|LOG_REJECT, "unqualified recipient rejected: "
2928           "<%s> %s%s", recipient, host_and_ident(TRUE),
2929           host_lookup_msg);
2930         break;
2931         }
2932       }
2933
2934     /* Check maximum allowed */
2935
2936     if (rcpt_count > recipients_max && recipients_max > 0)
2937       {
2938       if (recipients_max_reject)
2939         {
2940         rcpt_fail_count++;
2941         smtp_printf("552 too many recipients\r\n");
2942         if (!toomany)
2943           log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
2944             "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
2945         }
2946       else
2947         {
2948         rcpt_defer_count++;
2949         smtp_printf("452 too many recipients\r\n");
2950         if (!toomany)
2951           log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
2952             "temporarily rejected: sender=<%s> %s", sender_address,
2953             host_and_ident(TRUE));
2954         }
2955
2956       toomany = TRUE;
2957       break;
2958       }
2959
2960     /* If we have passed the threshold for rate limiting, apply the current
2961     delay, and update it for next time, provided this is a limited host. */
2962
2963     if (rcpt_count > smtp_rlr_threshold &&
2964         verify_check_host(&smtp_ratelimit_hosts) == OK)
2965       {
2966       DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
2967         smtp_delay_rcpt/1000.0);
2968       millisleep((int)smtp_delay_rcpt);
2969       smtp_delay_rcpt *= smtp_rlr_factor;
2970       if (smtp_delay_rcpt > (double)smtp_rlr_limit)
2971         smtp_delay_rcpt = (double)smtp_rlr_limit;
2972       }
2973
2974     /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
2975     for them. Otherwise, check the access control list for this recipient. */
2976
2977     rc = recipients_discarded? DISCARD :
2978       acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg, &log_msg);
2979
2980     /* The ACL was happy */
2981
2982     if (rc == OK)
2983       {
2984       smtp_printf("250 Accepted\r\n");
2985       receive_add_recipient(recipient, -1);
2986       }
2987
2988     /* The recipient was discarded */
2989
2990     else if (rc == DISCARD)
2991       {
2992       smtp_printf("250 Accepted\r\n");
2993       rcpt_fail_count++;
2994       discarded = TRUE;
2995       log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> rejected RCPT %s: "
2996         "discarded by %s ACL%s%s", host_and_ident(TRUE),
2997         (sender_address_unrewritten != NULL)?
2998         sender_address_unrewritten : sender_address,
2999         smtp_data, recipients_discarded? "MAIL" : "RCPT",
3000         (log_msg == NULL)? US"" : US": ",
3001         (log_msg == NULL)? US"" : log_msg);
3002       }
3003
3004     /* Either the ACL failed the address, or it was deferred. */
3005
3006     else
3007       {
3008       if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
3009       done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
3010       }
3011     break;
3012
3013
3014     /* The DATA command is legal only if it follows successful MAIL FROM
3015     and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
3016     not counted as a protocol error if it follows RCPT (which must have been
3017     rejected if there are no recipients.) This function is complete when a
3018     valid DATA command is encountered.
3019
3020     Note concerning the code used: RFC 2821 says this:
3021
3022      -  If there was no MAIL, or no RCPT, command, or all such commands
3023         were rejected, the server MAY return a "command out of sequence"
3024         (503) or "no valid recipients" (554) reply in response to the
3025         DATA command.
3026
3027     The example in the pipelining RFC 2920 uses 554, but I use 503 here
3028     because it is the same whether pipelining is in use or not. */
3029
3030     case DATA_CMD:
3031     if (!discarded && recipients_count <= 0)
3032       {
3033       if (pipelining_advertised && last_was_rcpt)
3034         smtp_printf("503 valid RCPT command must precede DATA\r\n");
3035       else
3036         done = synprot_error(L_smtp_protocol_error, 503, NULL,
3037           US"valid RCPT command must precede DATA");
3038       break;
3039       }
3040
3041     if (toomany && recipients_max_reject)
3042       {
3043       sender_address = NULL;  /* This will allow a new MAIL without RSET */
3044       sender_address_unrewritten = NULL;
3045       smtp_printf("554 Too many recipients\r\n");
3046       break;
3047       }
3048       
3049     if (acl_smtp_predata == NULL) rc = OK; else
3050       { 
3051       enable_dollar_recipients = TRUE;
3052       rc = acl_check(ACL_WHERE_PREDATA, NULL, acl_smtp_predata, &user_msg, 
3053         &log_msg);
3054       enable_dollar_recipients = FALSE;
3055       }
3056
3057     if (rc == OK)
3058       {
3059       smtp_printf("354 Enter message, ending with \".\" on a line by itself\r\n");
3060       done = 3;
3061       message_ended = END_NOTENDED;   /* Indicate in middle of data */
3062       }
3063
3064     /* Either the ACL failed the address, or it was deferred. */
3065
3066     else
3067       done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
3068
3069     break;
3070
3071
3072     case VRFY_CMD:
3073     rc = acl_check(ACL_WHERE_VRFY, smtp_data, acl_smtp_vrfy, &user_msg,
3074       &log_msg);
3075     if (rc != OK)
3076       done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
3077     else
3078       {
3079       uschar *address;
3080       uschar *s = NULL;
3081
3082       /* rfc821_domains = TRUE; << no longer needed */
3083       address = parse_extract_address(smtp_data, &errmess, &start, &end,
3084         &recipient_domain, FALSE);
3085       /* rfc821_domains = FALSE; << no longer needed */
3086
3087       if (address == NULL)
3088         s = string_sprintf("501 %s", errmess);
3089       else
3090         {
3091         address_item *addr = deliver_make_addr(address, FALSE);
3092         switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
3093                -1, -1, NULL, NULL, NULL))
3094           {
3095           case OK:
3096           s = string_sprintf("250 <%s> is deliverable", address);
3097           break;
3098
3099           case DEFER:
3100           s = (addr->message != NULL)?
3101             string_sprintf("451 <%s> %s", address, addr->message) :
3102             string_sprintf("451 Cannot resolve <%s> at this time", address);
3103           break;
3104
3105           case FAIL:
3106           s = (addr->message != NULL)?
3107             string_sprintf("550 <%s> %s", address, addr->message) :
3108             string_sprintf("550 <%s> is not deliverable", address);
3109           log_write(0, LOG_MAIN, "VRFY failed for %s %s",
3110             smtp_data, host_and_ident(TRUE));
3111           break;
3112           }
3113         }
3114
3115       smtp_printf("%s\r\n", s);
3116       }
3117     break;
3118
3119
3120     case EXPN_CMD:
3121     rc = acl_check(ACL_WHERE_EXPN, smtp_data, acl_smtp_expn, &user_msg,
3122       &log_msg);
3123     if (rc != OK)
3124       done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
3125     else
3126       {
3127       BOOL save_log_testing_mode = log_testing_mode;
3128       address_test_mode = log_testing_mode = TRUE;
3129       (void) verify_address(deliver_make_addr(smtp_data, FALSE), smtp_out,
3130         vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1, NULL, NULL, 
3131         NULL);
3132       address_test_mode = FALSE;
3133       log_testing_mode = save_log_testing_mode;    /* true for -bh */
3134       }
3135     break;
3136
3137
3138     #ifdef SUPPORT_TLS
3139
3140     case STARTTLS_CMD:
3141     if (!tls_advertised)
3142       {
3143       done = synprot_error(L_smtp_protocol_error, 503, NULL,
3144         US"STARTTLS command used when not advertised");
3145       break;
3146       }
3147
3148     /* Apply an ACL check if one is defined */
3149
3150     if (acl_smtp_starttls != NULL)
3151       {
3152       rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls, &user_msg,
3153         &log_msg);
3154       if (rc != OK)
3155         {
3156         done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
3157         break;
3158         }
3159       }
3160
3161     /* RFC 2487 is not clear on when this command may be sent, though it
3162     does state that all information previously obtained from the client
3163     must be discarded if a TLS session is started. It seems reasonble to
3164     do an implied RSET when STARTTLS is received. */
3165
3166     incomplete_transaction_log(US"STARTTLS");
3167     smtp_reset(reset_point);
3168     toomany = FALSE;
3169     cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
3170
3171     /* Attempt to start up a TLS session, and if successful, discard all
3172     knowledge that was obtained previously. At least, that's what the RFC says,
3173     and that's what happens by default. However, in order to work round YAEB,
3174     there is an option to remember the esmtp state. Sigh.
3175
3176     We must allow for an extra EHLO command and an extra AUTH command after
3177     STARTTLS that don't add to the nonmail command count. */
3178
3179     if ((rc = tls_server_start(tls_require_ciphers)) == OK)
3180       {
3181       if (!tls_remember_esmtp)
3182         helo_seen = esmtp = auth_advertised = pipelining_advertised = FALSE;
3183       cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
3184       cmd_list[CMD_LIST_AUTH].is_mail_cmd = TRUE;
3185       if (sender_helo_name != NULL)
3186         {
3187         store_free(sender_helo_name);
3188         sender_helo_name = NULL;
3189         host_build_sender_fullhost();  /* Rebuild */
3190         set_process_info("handling incoming TLS connection from %s",
3191           host_and_ident(FALSE));
3192         }
3193       received_protocol = (esmtp?
3194         protocols[pextend + pcrpted +
3195           ((sender_host_authenticated != NULL)? pauthed : 0)]
3196         :
3197         protocols[pnormal + pcrpted])
3198         +
3199         ((sender_host_address != NULL)? pnlocal : 0);
3200
3201       sender_host_authenticated = NULL;
3202       authenticated_id = NULL;
3203       sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
3204       DEBUG(D_tls) debug_printf("TLS active\n");
3205       break;     /* Successful STARTTLS */
3206       }
3207
3208     /* Some local configuration problem was discovered before actually trying
3209     to do a TLS handshake; give a temporary error. */
3210
3211     else if (rc == DEFER)
3212       {
3213       smtp_printf("454 TLS currently unavailable\r\n");
3214       break;
3215       }
3216
3217     /* Hard failure. Reject everything except QUIT or closed connection. One
3218     cause for failure is a nested STARTTLS, in which case tls_active remains
3219     set, but we must still reject all incoming commands. */
3220
3221     DEBUG(D_tls) debug_printf("TLS failed to start\n");
3222     while (done <= 0)
3223       {
3224       switch(smtp_read_command(FALSE))
3225         {
3226         case EOF_CMD:
3227         log_write(L_smtp_connection, LOG_MAIN, "%s closed by EOF",
3228           smtp_get_connection_info());
3229         done = 2;
3230         break;
3231
3232         case QUIT_CMD:
3233         smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
3234         log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
3235           smtp_get_connection_info());
3236         done = 2;
3237         break;
3238
3239         default:
3240         smtp_printf("554 Security failure\r\n");
3241         break;
3242         }
3243       }
3244     tls_close(TRUE);
3245     break;
3246     #endif
3247
3248
3249     /* The ACL for QUIT is provided for gathering statistical information or
3250     similar; it does not affect the response code, but it can supply a custom
3251     message. */
3252
3253     case QUIT_CMD:
3254     incomplete_transaction_log(US"QUIT");
3255
3256     if (acl_smtp_quit != NULL)
3257       {
3258       rc = acl_check(ACL_WHERE_QUIT, US"", acl_smtp_quit,&user_msg,&log_msg);
3259       if (rc == ERROR)
3260         log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
3261           log_msg);
3262       }
3263     else user_msg = NULL;
3264
3265     if (user_msg == NULL)
3266       smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
3267     else
3268       smtp_printf("221 %s\r\n", user_msg);
3269
3270     #ifdef SUPPORT_TLS
3271     tls_close(TRUE);
3272     #endif
3273
3274     done = 2;
3275     log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
3276       smtp_get_connection_info());
3277     break;
3278
3279
3280     case RSET_CMD:
3281     incomplete_transaction_log(US"RSET");
3282     smtp_reset(reset_point);
3283     toomany = FALSE;
3284     smtp_printf("250 Reset OK\r\n");
3285     cmd_list[CMD_LIST_RSET].is_mail_cmd = FALSE;
3286     break;
3287
3288
3289     case NOOP_CMD:
3290     smtp_printf("250 OK\r\n");
3291     break;
3292
3293
3294     /* Show ETRN/EXPN/VRFY if there's
3295     an ACL for checking hosts; if actually used, a check will be done for
3296     permitted hosts. */
3297
3298     case HELP_CMD:
3299     smtp_printf("214-Commands supported:\r\n");
3300       {
3301       uschar buffer[256];
3302       buffer[0] = 0;
3303       Ustrcat(buffer, " AUTH");
3304       #ifdef SUPPORT_TLS
3305       Ustrcat(buffer, " STARTTLS");
3306       #endif
3307       Ustrcat(buffer, " HELO EHLO MAIL RCPT DATA");
3308       Ustrcat(buffer, " NOOP QUIT RSET HELP");
3309       if (acl_smtp_etrn != NULL) Ustrcat(buffer, " ETRN");
3310       if (acl_smtp_expn != NULL) Ustrcat(buffer, " EXPN");
3311       if (acl_smtp_vrfy != NULL) Ustrcat(buffer, " VRFY");
3312       smtp_printf("214%s\r\n", buffer);
3313       }
3314     break;
3315
3316
3317     case EOF_CMD:
3318     incomplete_transaction_log(US"connection lost");
3319     smtp_printf("421 %s lost input connection\r\n", smtp_active_hostname);
3320
3321     /* Don't log by default unless in the middle of a message, as some mailers
3322     just drop the call rather than sending QUIT, and it clutters up the logs.
3323     */
3324
3325     if (sender_address != NULL || recipients_count > 0)
3326       log_write(L_lost_incoming_connection,
3327           LOG_MAIN,
3328           "unexpected %s while reading SMTP command from %s%s",
3329           sender_host_unknown? "EOF" : "disconnection",
3330           host_and_ident(FALSE), smtp_read_error);
3331
3332     else log_write(L_smtp_connection, LOG_MAIN, "%s lost%s",
3333       smtp_get_connection_info(), smtp_read_error);
3334
3335     done = 1;
3336     break;
3337
3338
3339     case ETRN_CMD:
3340     if (sender_address != NULL)
3341       {
3342       done = synprot_error(L_smtp_protocol_error, 503, NULL,
3343         US"ETRN is not permitted inside a transaction");
3344       break;
3345       }
3346
3347     log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_data,
3348       host_and_ident(FALSE));
3349
3350     rc = acl_check(ACL_WHERE_ETRN, smtp_data, acl_smtp_etrn, &user_msg,
3351       &log_msg);
3352     if (rc != OK)
3353       {
3354       done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
3355       break;
3356       }
3357
3358     /* Compute the serialization key for this command. */
3359
3360     etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_data);
3361
3362     /* If a command has been specified for running as a result of ETRN, we
3363     permit any argument to ETRN. If not, only the # standard form is permitted,
3364     since that is strictly the only kind of ETRN that can be implemented
3365     according to the RFC. */
3366
3367     if (smtp_etrn_command != NULL)
3368       {
3369       uschar *error;
3370       BOOL rc;
3371       etrn_command = smtp_etrn_command;
3372       deliver_domain = smtp_data;
3373       rc = transport_set_up_command(&argv, smtp_etrn_command, TRUE, 0, NULL,
3374         US"ETRN processing", &error);
3375       deliver_domain = NULL;
3376       if (!rc)
3377         {
3378         log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
3379           error);
3380         smtp_printf("458 Internal failure\r\n");
3381         break;
3382         }
3383       }
3384
3385     /* Else set up to call Exim with the -R option. */
3386
3387     else
3388       {
3389       if (*smtp_data++ != '#')
3390         {
3391         done = synprot_error(L_smtp_syntax_error, 501, NULL,
3392           US"argument must begin with #");
3393         break;
3394         }
3395       etrn_command = US"exim -R";
3396       argv = child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE, 2, US"-R",
3397         smtp_data);
3398       }
3399
3400     /* If we are host-testing, don't actually do anything. */
3401
3402     if (host_checking)
3403       {
3404       HDEBUG(D_any)
3405         {
3406         debug_printf("ETRN command is: %s\n", etrn_command);
3407         debug_printf("ETRN command execution skipped\n");
3408         }
3409       smtp_printf("250 OK\r\n");
3410       break;
3411       }
3412
3413
3414     /* If ETRN queue runs are to be serialized, check the database to
3415     ensure one isn't already running. */
3416
3417     if (smtp_etrn_serialize && !enq_start(etrn_serialize_key))
3418       {
3419       smtp_printf("458 Already processing %s\r\n", smtp_data);
3420       break;
3421       }
3422
3423     /* Fork a child process and run the command. We don't want to have to
3424     wait for the process at any point, so set SIGCHLD to SIG_IGN before
3425     forking. It should be set that way anyway for external incoming SMTP,
3426     but we save and restore to be tidy. If serialization is required, we
3427     actually run the command in yet another process, so we can wait for it
3428     to complete and then remove the serialization lock. */
3429
3430     oldsignal = signal(SIGCHLD, SIG_IGN);
3431
3432     if ((pid = fork()) == 0)
3433       {
3434       smtp_input = FALSE;    /* This process is not associated with the */
3435       fclose(smtp_in);       /* SMTP call any more. */
3436       fclose(smtp_out);
3437
3438       signal(SIGCHLD, SIG_DFL);      /* Want to catch child */
3439
3440       /* If not serializing, do the exec right away. Otherwise, fork down
3441       into another process. */
3442
3443       if (!smtp_etrn_serialize || (pid = fork()) == 0)
3444         {
3445         DEBUG(D_exec) debug_print_argv(argv);
3446         exim_nullstd();                   /* Ensure std{in,out,err} exist */
3447         execv(CS argv[0], (char *const *)argv);
3448         log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
3449           etrn_command, strerror(errno));
3450         _exit(EXIT_FAILURE);         /* paranoia */
3451         }
3452
3453       /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
3454       is, we are in the first subprocess, after forking again. All we can do
3455       for a failing fork is to log it. Otherwise, wait for the 2nd process to
3456       complete, before removing the serialization. */
3457
3458       if (pid < 0)
3459         log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
3460           "failed: %s", strerror(errno));
3461       else
3462         {
3463         int status;
3464         DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
3465           (int)pid);
3466         (void)wait(&status);
3467         DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
3468           (int)pid);
3469         }
3470
3471       enq_end(etrn_serialize_key);
3472       _exit(EXIT_SUCCESS);
3473       }
3474
3475     /* Back in the top level SMTP process. Check that we started a subprocess
3476     and restore the signal state. */
3477
3478     if (pid < 0)
3479       {
3480       log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
3481         strerror(errno));
3482       smtp_printf("458 Unable to fork process\r\n");
3483       if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
3484       }
3485     else smtp_printf("250 OK\r\n");
3486
3487     signal(SIGCHLD, oldsignal);
3488     break;
3489
3490
3491     case BADARG_CMD:
3492     done = synprot_error(L_smtp_syntax_error, 501, NULL,
3493       US"unexpected argument data");
3494     break;
3495
3496
3497     /* This currently happens only for NULLs, but could be extended. */
3498
3499     case BADCHAR_CMD:
3500     done = synprot_error(L_smtp_syntax_error, 0, NULL,       /* Just logs */
3501       US"NULL character(s) present (shown as '?')");
3502     smtp_printf("501 NULL characters are not allowed in SMTP commands\r\n");
3503     break;
3504
3505
3506     case BADSYN_CMD:
3507     if (smtp_inend >= smtp_inbuffer + in_buffer_size)
3508       smtp_inend = smtp_inbuffer + in_buffer_size - 1;
3509     c = smtp_inend - smtp_inptr;
3510     if (c > 150) c = 150;
3511     smtp_inptr[c] = 0;
3512     incomplete_transaction_log(US"sync failure");
3513     log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol violation: "
3514       "synchronization error "
3515       "(next input sent too soon: pipelining was%s advertised): "
3516       "rejected \"%s\" %s next input=\"%s\"",
3517       pipelining_advertised? "" : " not",
3518       cmd_buffer, host_and_ident(TRUE),
3519       string_printing(smtp_inptr));
3520     smtp_printf("554 SMTP synchronization error\r\n");
3521     done = 1;   /* Pretend eof - drops connection */
3522     break;
3523
3524
3525     case TOO_MANY_NONMAIL_CMD:
3526     incomplete_transaction_log(US"too many non-mail commands");
3527     log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3528       "nonmail commands (last was \"%.*s\")",  host_and_ident(FALSE),
3529       smtp_data - cmd_buffer, cmd_buffer);
3530     smtp_printf("554 Too many nonmail commands\r\n");
3531     done = 1;   /* Pretend eof - drops connection */
3532     break;
3533
3534
3535     default:
3536     if (unknown_command_count++ >= smtp_max_unknown_commands)
3537       {
3538       log_write(L_smtp_syntax_error, LOG_MAIN,
3539         "SMTP syntax error in \"%s\" %s %s",
3540         string_printing(cmd_buffer), host_and_ident(TRUE),
3541         US"unrecognized command");
3542       incomplete_transaction_log(US"unrecognized command");
3543       smtp_printf("500 Too many unrecognized commands\r\n");
3544       done = 2;
3545       log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3546         "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
3547         cmd_buffer);
3548       }
3549     else
3550       done = synprot_error(L_smtp_syntax_error, 500, NULL,
3551         US"unrecognized command");
3552     break;
3553     }
3554
3555   /* This label is used by goto's inside loops that want to break out to
3556   the end of the command-processing loop. */
3557
3558   COMMAND_LOOP:
3559   last_was_rej_mail = was_rej_mail;     /* Remember some last commands for */
3560   last_was_rcpt = was_rcpt;             /* protocol error handling */
3561   continue;
3562   }
3563
3564 return done - 2;  /* Convert yield values */
3565 }
3566
3567 /* End of smtp_in.c */