TLS authenticator
[exim.git] / src / src / smtp_in.c
1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2014 */
6 /* See the file NOTICE for conditions of use and distribution. */
7
8 /* Functions for handling an incoming SMTP call. */
9
10
11 #include "exim.h"
12
13
14 /* Initialize for TCP wrappers if so configured. It appears that the macro
15 HAVE_IPV6 is used in some versions of the tcpd.h header, so we unset it before
16 including that header, and restore its value afterwards. */
17
18 #ifdef USE_TCP_WRAPPERS
19
20 #if HAVE_IPV6
21 #define EXIM_HAVE_IPV6
22 #endif
23 #undef HAVE_IPV6
24 #include <tcpd.h>
25 #undef HAVE_IPV6
26 #ifdef EXIM_HAVE_IPV6
27 #define HAVE_IPV6 TRUE
28 #endif
29
30 int allow_severity = LOG_INFO;
31 int deny_severity = LOG_NOTICE;
32 uschar *tcp_wrappers_name;
33 #endif
34
35
36 /* Size of buffer for reading SMTP commands. We used to use 512, as defined
37 by RFC 821. However, RFC 1869 specifies that this must be increased for SMTP
38 commands that accept arguments, and this in particular applies to AUTH, where
39 the data can be quite long. More recently this value was 2048 in Exim;
40 however, RFC 4954 (circa 2007) recommends 12288 bytes to handle AUTH. Clients
41 such as Thunderbird will send an AUTH with an initial-response for GSSAPI.
42 The maximum size of a Kerberos ticket under Windows 2003 is 12000 bytes, and
43 we need room to handle large base64-encoded AUTHs for GSSAPI.
44 */
45
46 #define smtp_cmd_buffer_size 16384
47
48 /* Size of buffer for reading SMTP incoming packets */
49
50 #define in_buffer_size 8192
51
52 /* Structure for SMTP command list */
53
54 typedef struct {
55 const char *name;
56 int len;
57 short int cmd;
58 short int has_arg;
59 short int is_mail_cmd;
60 } smtp_cmd_list;
61
62 /* Codes for identifying commands. We order them so that those that come first
63 are those for which synchronization is always required. Checking this can help
64 block some spam. */
65
66 enum {
67 /* These commands are required to be synchronized, i.e. to be the last in a
68 block of commands when pipelining. */
69
70 HELO_CMD, EHLO_CMD, DATA_CMD, /* These are listed in the pipelining */
71 VRFY_CMD, EXPN_CMD, NOOP_CMD, /* RFC as requiring synchronization */
72 ETRN_CMD, /* This by analogy with TURN from the RFC */
73 STARTTLS_CMD, /* Required by the STARTTLS RFC */
74 TLS_AUTH_CMD, /* auto-command at start of SSL */
75
76 /* This is a dummy to identify the non-sync commands when pipelining */
77
78 NON_SYNC_CMD_PIPELINING,
79
80 /* These commands need not be synchronized when pipelining */
81
82 MAIL_CMD, RCPT_CMD, RSET_CMD,
83
84 /* This is a dummy to identify the non-sync commands when not pipelining */
85
86 NON_SYNC_CMD_NON_PIPELINING,
87
88 /* I have been unable to find a statement about the use of pipelining
89 with AUTH, so to be on the safe side it is here, though I kind of feel
90 it should be up there with the synchronized commands. */
91
92 AUTH_CMD,
93
94 /* I'm not sure about these, but I don't think they matter. */
95
96 QUIT_CMD, HELP_CMD,
97
98 #ifdef EXPERIMENTAL_PROXY
99 PROXY_FAIL_IGNORE_CMD,
100 #endif
101
102 /* These are specials that don't correspond to actual commands */
103
104 EOF_CMD, OTHER_CMD, BADARG_CMD, BADCHAR_CMD, BADSYN_CMD,
105 TOO_MANY_NONMAIL_CMD };
106
107
108 /* This is a convenience macro for adding the identity of an SMTP command
109 to the circular buffer that holds a list of the last n received. */
110
111 #define HAD(n) \
112 smtp_connection_had[smtp_ch_index++] = n; \
113 if (smtp_ch_index >= SMTP_HBUFF_SIZE) smtp_ch_index = 0
114
115
116 /*************************************************
117 * Local static variables *
118 *************************************************/
119
120 static auth_instance *authenticated_by;
121 static BOOL auth_advertised;
122 #ifdef SUPPORT_TLS
123 static BOOL tls_advertised;
124 #endif
125 static BOOL dsn_advertised;
126 static BOOL esmtp;
127 static BOOL helo_required = FALSE;
128 static BOOL helo_verify = FALSE;
129 static BOOL helo_seen;
130 static BOOL helo_accept_junk;
131 static BOOL count_nonmail;
132 static BOOL pipelining_advertised;
133 static BOOL rcpt_smtp_response_same;
134 static BOOL rcpt_in_progress;
135 static int nonmail_command_count;
136 static BOOL smtp_exit_function_called = 0;
137 #ifdef EXPERIMENTAL_INTERNATIONAL
138 static BOOL smtputf8_advertised;
139 #endif
140 static int synprot_error_count;
141 static int unknown_command_count;
142 static int sync_cmd_limit;
143 static int smtp_write_error = 0;
144
145 static uschar *rcpt_smtp_response;
146 static uschar *smtp_data_buffer;
147 static uschar *smtp_cmd_data;
148
149 /* We need to know the position of RSET, HELO, EHLO, AUTH, and STARTTLS. Their
150 final fields of all except AUTH are forced TRUE at the start of a new message
151 setup, to allow one of each between messages that is not counted as a nonmail
152 command. (In fact, only one of HELO/EHLO is not counted.) Also, we have to
153 allow a new EHLO after starting up TLS.
154
155 AUTH is "falsely" labelled as a mail command initially, so that it doesn't get
156 counted. However, the flag is changed when AUTH is received, so that multiple
157 failing AUTHs will eventually hit the limit. After a successful AUTH, another
158 AUTH is already forbidden. After a TLS session is started, AUTH's flag is again
159 forced TRUE, to allow for the re-authentication that can happen at that point.
160
161 QUIT is also "falsely" labelled as a mail command so that it doesn't up the
162 count of non-mail commands and possibly provoke an error. */
163
164 static smtp_cmd_list cmd_list[] = {
165 /* name len cmd has_arg is_mail_cmd */
166
167 { "rset", sizeof("rset")-1, RSET_CMD, FALSE, FALSE }, /* First */
168 { "helo", sizeof("helo")-1, HELO_CMD, TRUE, FALSE },
169 { "ehlo", sizeof("ehlo")-1, EHLO_CMD, TRUE, FALSE },
170 { "auth", sizeof("auth")-1, AUTH_CMD, TRUE, TRUE },
171 #ifdef SUPPORT_TLS
172 { "starttls", sizeof("starttls")-1, STARTTLS_CMD, FALSE, FALSE },
173 { "tls_auth", 0, TLS_AUTH_CMD, FALSE, TRUE },
174 #endif
175
176 /* If you change anything above here, also fix the definitions below. */
177
178 { "mail from:", sizeof("mail from:")-1, MAIL_CMD, TRUE, TRUE },
179 { "rcpt to:", sizeof("rcpt to:")-1, RCPT_CMD, TRUE, TRUE },
180 { "data", sizeof("data")-1, DATA_CMD, FALSE, TRUE },
181 { "quit", sizeof("quit")-1, QUIT_CMD, FALSE, TRUE },
182 { "noop", sizeof("noop")-1, NOOP_CMD, TRUE, FALSE },
183 { "etrn", sizeof("etrn")-1, ETRN_CMD, TRUE, FALSE },
184 { "vrfy", sizeof("vrfy")-1, VRFY_CMD, TRUE, FALSE },
185 { "expn", sizeof("expn")-1, EXPN_CMD, TRUE, FALSE },
186 { "help", sizeof("help")-1, HELP_CMD, TRUE, FALSE }
187 };
188
189 static smtp_cmd_list *cmd_list_end =
190 cmd_list + sizeof(cmd_list)/sizeof(smtp_cmd_list);
191
192 #define CMD_LIST_RSET 0
193 #define CMD_LIST_HELO 1
194 #define CMD_LIST_EHLO 2
195 #define CMD_LIST_AUTH 3
196 #define CMD_LIST_STARTTLS 4
197 #define CMD_LIST_TLS_AUTH 5
198
199 /* This list of names is used for performing the smtp_no_mail logging action.
200 It must be kept in step with the SCH_xxx enumerations. */
201
202 static uschar *smtp_names[] =
203 {
204 US"NONE", US"AUTH", US"DATA", US"EHLO", US"ETRN", US"EXPN", US"HELO",
205 US"HELP", US"MAIL", US"NOOP", US"QUIT", US"RCPT", US"RSET", US"STARTTLS",
206 US"VRFY" };
207
208 static uschar *protocols_local[] = {
209 US"local-smtp", /* HELO */
210 US"local-smtps", /* The rare case EHLO->STARTTLS->HELO */
211 US"local-esmtp", /* EHLO */
212 US"local-esmtps", /* EHLO->STARTTLS->EHLO */
213 US"local-esmtpa", /* EHLO->AUTH */
214 US"local-esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
215 };
216 static uschar *protocols[] = {
217 US"smtp", /* HELO */
218 US"smtps", /* The rare case EHLO->STARTTLS->HELO */
219 US"esmtp", /* EHLO */
220 US"esmtps", /* EHLO->STARTTLS->EHLO */
221 US"esmtpa", /* EHLO->AUTH */
222 US"esmtpsa" /* EHLO->STARTTLS->EHLO->AUTH */
223 };
224
225 #define pnormal 0
226 #define pextend 2
227 #define pcrpted 1 /* added to pextend or pnormal */
228 #define pauthed 2 /* added to pextend */
229
230 /* Sanity check and validate optional args to MAIL FROM: envelope */
231 enum {
232 ENV_MAIL_OPT_SIZE, ENV_MAIL_OPT_BODY, ENV_MAIL_OPT_AUTH,
233 #ifndef DISABLE_PRDR
234 ENV_MAIL_OPT_PRDR,
235 #endif
236 ENV_MAIL_OPT_RET, ENV_MAIL_OPT_ENVID,
237 #ifdef EXPERIMENTAL_INTERNATIONAL
238 ENV_MAIL_OPT_UTF8,
239 #endif
240 ENV_MAIL_OPT_NULL
241 };
242 typedef struct {
243 uschar * name; /* option requested during MAIL cmd */
244 int value; /* enum type */
245 BOOL need_value; /* TRUE requires value (name=value pair format)
246 FALSE is a singleton */
247 } env_mail_type_t;
248 static env_mail_type_t env_mail_type_list[] = {
249 { US"SIZE", ENV_MAIL_OPT_SIZE, TRUE },
250 { US"BODY", ENV_MAIL_OPT_BODY, TRUE },
251 { US"AUTH", ENV_MAIL_OPT_AUTH, TRUE },
252 #ifndef DISABLE_PRDR
253 { US"PRDR", ENV_MAIL_OPT_PRDR, FALSE },
254 #endif
255 { US"RET", ENV_MAIL_OPT_RET, TRUE },
256 { US"ENVID", ENV_MAIL_OPT_ENVID, TRUE },
257 #ifdef EXPERIMENTAL_INTERNATIONAL
258 { US"SMTPUTF8",ENV_MAIL_OPT_UTF8, FALSE }, /* rfc6531 */
259 #endif
260 { US"NULL", ENV_MAIL_OPT_NULL, FALSE }
261 };
262
263 /* When reading SMTP from a remote host, we have to use our own versions of the
264 C input-reading functions, in order to be able to flush the SMTP output only
265 when about to read more data from the socket. This is the only way to get
266 optimal performance when the client is using pipelining. Flushing for every
267 command causes a separate packet and reply packet each time; saving all the
268 responses up (when pipelining) combines them into one packet and one response.
269
270 For simplicity, these functions are used for *all* SMTP input, not only when
271 receiving over a socket. However, after setting up a secure socket (SSL), input
272 is read via the OpenSSL library, and another set of functions is used instead
273 (see tls.c).
274
275 These functions are set in the receive_getc etc. variables and called with the
276 same interface as the C functions. However, since there can only ever be
277 one incoming SMTP call, we just use a single buffer and flags. There is no need
278 to implement a complicated private FILE-like structure.*/
279
280 static uschar *smtp_inbuffer;
281 static uschar *smtp_inptr;
282 static uschar *smtp_inend;
283 static int smtp_had_eof;
284 static int smtp_had_error;
285
286
287 /*************************************************
288 * SMTP version of getc() *
289 *************************************************/
290
291 /* This gets the next byte from the SMTP input buffer. If the buffer is empty,
292 it flushes the output, and refills the buffer, with a timeout. The signal
293 handler is set appropriately by the calling function. This function is not used
294 after a connection has negotated itself into an TLS/SSL state.
295
296 Arguments: none
297 Returns: the next character or EOF
298 */
299
300 int
301 smtp_getc(void)
302 {
303 if (smtp_inptr >= smtp_inend)
304 {
305 int rc, save_errno;
306 fflush(smtp_out);
307 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
308 rc = read(fileno(smtp_in), smtp_inbuffer, in_buffer_size);
309 save_errno = errno;
310 alarm(0);
311 if (rc <= 0)
312 {
313 /* Must put the error text in fixed store, because this might be during
314 header reading, where it releases unused store above the header. */
315 if (rc < 0)
316 {
317 smtp_had_error = save_errno;
318 smtp_read_error = string_copy_malloc(
319 string_sprintf(" (error: %s)", strerror(save_errno)));
320 }
321 else smtp_had_eof = 1;
322 return EOF;
323 }
324 #ifndef DISABLE_DKIM
325 dkim_exim_verify_feed(smtp_inbuffer, rc);
326 #endif
327 smtp_inend = smtp_inbuffer + rc;
328 smtp_inptr = smtp_inbuffer;
329 }
330 return *smtp_inptr++;
331 }
332
333
334
335 /*************************************************
336 * SMTP version of ungetc() *
337 *************************************************/
338
339 /* Puts a character back in the input buffer. Only ever
340 called once.
341
342 Arguments:
343 ch the character
344
345 Returns: the character
346 */
347
348 int
349 smtp_ungetc(int ch)
350 {
351 *(--smtp_inptr) = ch;
352 return ch;
353 }
354
355
356
357
358 /*************************************************
359 * SMTP version of feof() *
360 *************************************************/
361
362 /* Tests for a previous EOF
363
364 Arguments: none
365 Returns: non-zero if the eof flag is set
366 */
367
368 int
369 smtp_feof(void)
370 {
371 return smtp_had_eof;
372 }
373
374
375
376
377 /*************************************************
378 * SMTP version of ferror() *
379 *************************************************/
380
381 /* Tests for a previous read error, and returns with errno
382 restored to what it was when the error was detected.
383
384 Arguments: none
385 Returns: non-zero if the error flag is set
386 */
387
388 int
389 smtp_ferror(void)
390 {
391 errno = smtp_had_error;
392 return smtp_had_error;
393 }
394
395
396
397 /*************************************************
398 * Test for characters in the SMTP buffer *
399 *************************************************/
400
401 /* Used at the end of a message
402
403 Arguments: none
404 Returns: TRUE/FALSE
405 */
406
407 BOOL
408 smtp_buffered(void)
409 {
410 return smtp_inptr < smtp_inend;
411 }
412
413
414
415 /*************************************************
416 * Write formatted string to SMTP channel *
417 *************************************************/
418
419 /* This is a separate function so that we don't have to repeat everything for
420 TLS support or debugging. It is global so that the daemon and the
421 authentication functions can use it. It does not return any error indication,
422 because major problems such as dropped connections won't show up till an output
423 flush for non-TLS connections. The smtp_fflush() function is available for
424 checking that: for convenience, TLS output errors are remembered here so that
425 they are also picked up later by smtp_fflush().
426
427 Arguments:
428 format format string
429 ... optional arguments
430
431 Returns: nothing
432 */
433
434 void
435 smtp_printf(const char *format, ...)
436 {
437 va_list ap;
438
439 va_start(ap, format);
440 smtp_vprintf(format, ap);
441 va_end(ap);
442 }
443
444 /* This is split off so that verify.c:respond_printf() can, in effect, call
445 smtp_printf(), bearing in mind that in C a vararg function can't directly
446 call another vararg function, only a function which accepts a va_list. */
447
448 void
449 smtp_vprintf(const char *format, va_list ap)
450 {
451 BOOL yield;
452
453 yield = string_vformat(big_buffer, big_buffer_size, format, ap);
454
455 DEBUG(D_receive)
456 {
457 void *reset_point = store_get(0);
458 uschar *msg_copy, *cr, *end;
459 msg_copy = string_copy(big_buffer);
460 end = msg_copy + Ustrlen(msg_copy);
461 while ((cr = Ustrchr(msg_copy, '\r')) != NULL) /* lose CRs */
462 memmove(cr, cr + 1, (end--) - cr);
463 debug_printf("SMTP>> %s", msg_copy);
464 store_reset(reset_point);
465 }
466
467 if (!yield)
468 {
469 log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_printf()");
470 smtp_closedown(US"Unexpected error");
471 exim_exit(EXIT_FAILURE);
472 }
473
474 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
475 have had the same. Note: this code is also present in smtp_respond(). It would
476 be tidier to have it only in one place, but when it was added, it was easier to
477 do it that way, so as not to have to mess with the code for the RCPT command,
478 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
479
480 if (rcpt_in_progress)
481 {
482 if (rcpt_smtp_response == NULL)
483 rcpt_smtp_response = string_copy(big_buffer);
484 else if (rcpt_smtp_response_same &&
485 Ustrcmp(rcpt_smtp_response, big_buffer) != 0)
486 rcpt_smtp_response_same = FALSE;
487 rcpt_in_progress = FALSE;
488 }
489
490 /* Now write the string */
491
492 #ifdef SUPPORT_TLS
493 if (tls_in.active >= 0)
494 {
495 if (tls_write(TRUE, big_buffer, Ustrlen(big_buffer)) < 0)
496 smtp_write_error = -1;
497 }
498 else
499 #endif
500
501 if (fprintf(smtp_out, "%s", big_buffer) < 0) smtp_write_error = -1;
502 }
503
504
505
506 /*************************************************
507 * Flush SMTP out and check for error *
508 *************************************************/
509
510 /* This function isn't currently used within Exim (it detects errors when it
511 tries to read the next SMTP input), but is available for use in local_scan().
512 For non-TLS connections, it flushes the output and checks for errors. For
513 TLS-connections, it checks for a previously-detected TLS write error.
514
515 Arguments: none
516 Returns: 0 for no error; -1 after an error
517 */
518
519 int
520 smtp_fflush(void)
521 {
522 if (tls_in.active < 0 && fflush(smtp_out) != 0) smtp_write_error = -1;
523 return smtp_write_error;
524 }
525
526
527
528 /*************************************************
529 * SMTP command read timeout *
530 *************************************************/
531
532 /* Signal handler for timing out incoming SMTP commands. This attempts to
533 finish off tidily.
534
535 Argument: signal number (SIGALRM)
536 Returns: nothing
537 */
538
539 static void
540 command_timeout_handler(int sig)
541 {
542 sig = sig; /* Keep picky compilers happy */
543 log_write(L_lost_incoming_connection,
544 LOG_MAIN, "SMTP command timeout on%s connection from %s",
545 (tls_in.active >= 0)? " TLS" : "",
546 host_and_ident(FALSE));
547 if (smtp_batched_input)
548 moan_smtp_batch(NULL, "421 SMTP command timeout"); /* Does not return */
549 smtp_notquit_exit(US"command-timeout", US"421",
550 US"%s: SMTP command timeout - closing connection", smtp_active_hostname);
551 exim_exit(EXIT_FAILURE);
552 }
553
554
555
556 /*************************************************
557 * SIGTERM received *
558 *************************************************/
559
560 /* Signal handler for handling SIGTERM. Again, try to finish tidily.
561
562 Argument: signal number (SIGTERM)
563 Returns: nothing
564 */
565
566 static void
567 command_sigterm_handler(int sig)
568 {
569 sig = sig; /* Keep picky compilers happy */
570 log_write(0, LOG_MAIN, "%s closed after SIGTERM", smtp_get_connection_info());
571 if (smtp_batched_input)
572 moan_smtp_batch(NULL, "421 SIGTERM received"); /* Does not return */
573 smtp_notquit_exit(US"signal-exit", US"421",
574 US"%s: Service not available - closing connection", smtp_active_hostname);
575 exim_exit(EXIT_FAILURE);
576 }
577
578
579
580
581 #ifdef EXPERIMENTAL_PROXY
582 /*************************************************
583 * Restore socket timeout to previous value *
584 *************************************************/
585 /* If the previous value was successfully retrieved, restore
586 it before returning control to the non-proxy routines
587
588 Arguments: fd - File descriptor for input
589 get_ok - Successfully retrieved previous values
590 tvtmp - Time struct with previous values
591 vslen - Length of time struct
592 Returns: none
593 */
594 static void
595 restore_socket_timeout(int fd, int get_ok, struct timeval tvtmp, socklen_t vslen)
596 {
597 if (get_ok == 0)
598 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tvtmp, vslen);
599 }
600
601 /*************************************************
602 * Check if host is required proxy host *
603 *************************************************/
604 /* The function determines if inbound host will be a regular smtp host
605 or if it is configured that it must use Proxy Protocol.
606
607 Arguments: none
608 Returns: bool
609 */
610
611 static BOOL
612 check_proxy_protocol_host()
613 {
614 int rc;
615 /* Cannot configure local connection as a proxy inbound */
616 if (sender_host_address == NULL) return proxy_session;
617
618 rc = verify_check_this_host(&proxy_required_hosts, NULL, NULL,
619 sender_host_address, NULL);
620 if (rc == OK)
621 {
622 DEBUG(D_receive)
623 debug_printf("Detected proxy protocol configured host\n");
624 proxy_session = TRUE;
625 }
626 return proxy_session;
627 }
628
629
630 /*************************************************
631 * Setup host for proxy protocol *
632 *************************************************/
633 /* The function configures the connection based on a header from the
634 inbound host to use Proxy Protocol. The specification is very exact
635 so exit with an error if do not find the exact required pieces. This
636 includes an incorrect number of spaces separating args.
637
638 Arguments: none
639 Returns: int
640 */
641
642 static BOOL
643 setup_proxy_protocol_host()
644 {
645 union {
646 struct {
647 uschar line[108];
648 } v1;
649 struct {
650 uschar sig[12];
651 uint8_t ver_cmd;
652 uint8_t fam;
653 uint16_t len;
654 union {
655 struct { /* TCP/UDP over IPv4, len = 12 */
656 uint32_t src_addr;
657 uint32_t dst_addr;
658 uint16_t src_port;
659 uint16_t dst_port;
660 } ip4;
661 struct { /* TCP/UDP over IPv6, len = 36 */
662 uint8_t src_addr[16];
663 uint8_t dst_addr[16];
664 uint16_t src_port;
665 uint16_t dst_port;
666 } ip6;
667 struct { /* AF_UNIX sockets, len = 216 */
668 uschar src_addr[108];
669 uschar dst_addr[108];
670 } unx;
671 } addr;
672 } v2;
673 } hdr;
674
675 /* Temp variables used in PPv2 address:port parsing */
676 uint16_t tmpport;
677 char tmpip[INET_ADDRSTRLEN];
678 struct sockaddr_in tmpaddr;
679 char tmpip6[INET6_ADDRSTRLEN];
680 struct sockaddr_in6 tmpaddr6;
681
682 int get_ok = 0;
683 int size, ret, fd;
684 const char v2sig[12] = "\x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A";
685 uschar *iptype; /* To display debug info */
686 struct timeval tv;
687 socklen_t vslen = 0;
688 struct timeval tvtmp;
689
690 vslen = sizeof(struct timeval);
691
692 fd = fileno(smtp_in);
693
694 /* Save current socket timeout values */
695 get_ok = getsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tvtmp,
696 &vslen);
697
698 /* Proxy Protocol host must send header within a short time
699 (default 3 seconds) or it's considered invalid */
700 tv.tv_sec = PROXY_NEGOTIATION_TIMEOUT_SEC;
701 tv.tv_usec = PROXY_NEGOTIATION_TIMEOUT_USEC;
702 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv,
703 sizeof(struct timeval));
704
705 do
706 {
707 /* The inbound host was declared to be a Proxy Protocol host, so
708 don't do a PEEK into the data, actually slurp it up. */
709 ret = recv(fd, &hdr, sizeof(hdr), 0);
710 }
711 while (ret == -1 && errno == EINTR);
712
713 if (ret == -1)
714 {
715 restore_socket_timeout(fd, get_ok, tvtmp, vslen);
716 return (errno == EAGAIN) ? 0 : ERRNO_PROXYFAIL;
717 }
718
719 if (ret >= 16 &&
720 memcmp(&hdr.v2, v2sig, 12) == 0)
721 {
722 uint8_t ver, cmd;
723
724 /* May 2014: haproxy combined the version and command into one byte to
725 allow two full bytes for the length field in order to proxy SSL
726 connections. SSL Proxy is not supported in this version of Exim, but
727 must still seperate values here. */
728 ver = (hdr.v2.ver_cmd & 0xf0) >> 4;
729 cmd = (hdr.v2.ver_cmd & 0x0f);
730
731 if (ver != 0x02)
732 {
733 DEBUG(D_receive) debug_printf("Invalid Proxy Protocol version: %d\n", ver);
734 goto proxyfail;
735 }
736 DEBUG(D_receive) debug_printf("Detected PROXYv2 header\n");
737 /* The v2 header will always be 16 bytes per the spec. */
738 size = 16 + hdr.v2.len;
739 if (ret < size)
740 {
741 DEBUG(D_receive) debug_printf("Truncated or too large PROXYv2 header (%d/%d)\n",
742 ret, size);
743 goto proxyfail;
744 }
745 switch (cmd)
746 {
747 case 0x01: /* PROXY command */
748 switch (hdr.v2.fam)
749 {
750 case 0x11: /* TCPv4 address type */
751 iptype = US"IPv4";
752 tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.src_addr;
753 inet_ntop(AF_INET, &(tmpaddr.sin_addr), (char *)&tmpip, sizeof(tmpip));
754 if (!string_is_ip_address(US tmpip,NULL))
755 {
756 DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
757 return ERRNO_PROXYFAIL;
758 }
759 proxy_host_address = sender_host_address;
760 sender_host_address = string_copy(US tmpip);
761 tmpport = ntohs(hdr.v2.addr.ip4.src_port);
762 proxy_host_port = sender_host_port;
763 sender_host_port = tmpport;
764 /* Save dest ip/port */
765 tmpaddr.sin_addr.s_addr = hdr.v2.addr.ip4.dst_addr;
766 inet_ntop(AF_INET, &(tmpaddr.sin_addr), (char *)&tmpip, sizeof(tmpip));
767 if (!string_is_ip_address(US tmpip,NULL))
768 {
769 DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
770 return ERRNO_PROXYFAIL;
771 }
772 proxy_target_address = string_copy(US tmpip);
773 tmpport = ntohs(hdr.v2.addr.ip4.dst_port);
774 proxy_target_port = tmpport;
775 goto done;
776 case 0x21: /* TCPv6 address type */
777 iptype = US"IPv6";
778 memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.src_addr, 16);
779 inet_ntop(AF_INET6, &(tmpaddr6.sin6_addr), (char *)&tmpip6, sizeof(tmpip6));
780 if (!string_is_ip_address(US tmpip6,NULL))
781 {
782 DEBUG(D_receive) debug_printf("Invalid %s source IP\n", iptype);
783 return ERRNO_PROXYFAIL;
784 }
785 proxy_host_address = sender_host_address;
786 sender_host_address = string_copy(US tmpip6);
787 tmpport = ntohs(hdr.v2.addr.ip6.src_port);
788 proxy_host_port = sender_host_port;
789 sender_host_port = tmpport;
790 /* Save dest ip/port */
791 memmove(tmpaddr6.sin6_addr.s6_addr, hdr.v2.addr.ip6.dst_addr, 16);
792 inet_ntop(AF_INET6, &(tmpaddr6.sin6_addr), (char *)&tmpip6, sizeof(tmpip6));
793 if (!string_is_ip_address(US tmpip6,NULL))
794 {
795 DEBUG(D_receive) debug_printf("Invalid %s dest port\n", iptype);
796 return ERRNO_PROXYFAIL;
797 }
798 proxy_target_address = string_copy(US tmpip6);
799 tmpport = ntohs(hdr.v2.addr.ip6.dst_port);
800 proxy_target_port = tmpport;
801 goto done;
802 default:
803 DEBUG(D_receive)
804 debug_printf("Unsupported PROXYv2 connection type: 0x%02x\n",
805 hdr.v2.fam);
806 goto proxyfail;
807 }
808 /* Unsupported protocol, keep local connection address */
809 break;
810 case 0x00: /* LOCAL command */
811 /* Keep local connection address for LOCAL */
812 break;
813 default:
814 DEBUG(D_receive)
815 debug_printf("Unsupported PROXYv2 command: 0x%x\n", cmd);
816 goto proxyfail;
817 }
818 }
819 else if (ret >= 8 &&
820 memcmp(hdr.v1.line, "PROXY", 5) == 0)
821 {
822 uschar *p = string_copy(hdr.v1.line);
823 uschar *end = memchr(p, '\r', ret - 1);
824 uschar *sp; /* Utility variables follow */
825 int tmp_port;
826 char *endc;
827
828 if (!end || end[1] != '\n')
829 {
830 DEBUG(D_receive) debug_printf("Partial or invalid PROXY header\n");
831 goto proxyfail;
832 }
833 *end = '\0'; /* Terminate the string */
834 size = end + 2 - hdr.v1.line; /* Skip header + CRLF */
835 DEBUG(D_receive) debug_printf("Detected PROXYv1 header\n");
836 /* Step through the string looking for the required fields. Ensure
837 strict adherance to required formatting, exit for any error. */
838 p += 5;
839 if (!isspace(*(p++)))
840 {
841 DEBUG(D_receive) debug_printf("Missing space after PROXY command\n");
842 goto proxyfail;
843 }
844 if (!Ustrncmp(p, CCS"TCP4", 4))
845 iptype = US"IPv4";
846 else if (!Ustrncmp(p,CCS"TCP6", 4))
847 iptype = US"IPv6";
848 else if (!Ustrncmp(p,CCS"UNKNOWN", 7))
849 {
850 iptype = US"Unknown";
851 goto done;
852 }
853 else
854 {
855 DEBUG(D_receive) debug_printf("Invalid TCP type\n");
856 goto proxyfail;
857 }
858
859 p += Ustrlen(iptype);
860 if (!isspace(*(p++)))
861 {
862 DEBUG(D_receive) debug_printf("Missing space after TCP4/6 command\n");
863 goto proxyfail;
864 }
865 /* Find the end of the arg */
866 if ((sp = Ustrchr(p, ' ')) == NULL)
867 {
868 DEBUG(D_receive)
869 debug_printf("Did not find proxied src %s\n", iptype);
870 goto proxyfail;
871 }
872 *sp = '\0';
873 if(!string_is_ip_address(p,NULL))
874 {
875 DEBUG(D_receive)
876 debug_printf("Proxied src arg is not an %s address\n", iptype);
877 goto proxyfail;
878 }
879 proxy_host_address = sender_host_address;
880 sender_host_address = p;
881 p = sp + 1;
882 if ((sp = Ustrchr(p, ' ')) == NULL)
883 {
884 DEBUG(D_receive)
885 debug_printf("Did not find proxy dest %s\n", iptype);
886 goto proxyfail;
887 }
888 *sp = '\0';
889 if(!string_is_ip_address(p,NULL))
890 {
891 DEBUG(D_receive)
892 debug_printf("Proxy dest arg is not an %s address\n", iptype);
893 goto proxyfail;
894 }
895 proxy_target_address = p;
896 p = sp + 1;
897 if ((sp = Ustrchr(p, ' ')) == NULL)
898 {
899 DEBUG(D_receive) debug_printf("Did not find proxied src port\n");
900 goto proxyfail;
901 }
902 *sp = '\0';
903 tmp_port = strtol(CCS p,&endc,10);
904 if (*endc || tmp_port == 0)
905 {
906 DEBUG(D_receive)
907 debug_printf("Proxied src port '%s' not an integer\n", p);
908 goto proxyfail;
909 }
910 proxy_host_port = sender_host_port;
911 sender_host_port = tmp_port;
912 p = sp + 1;
913 if ((sp = Ustrchr(p, '\0')) == NULL)
914 {
915 DEBUG(D_receive) debug_printf("Did not find proxy dest port\n");
916 goto proxyfail;
917 }
918 tmp_port = strtol(CCS p,&endc,10);
919 if (*endc || tmp_port == 0)
920 {
921 DEBUG(D_receive)
922 debug_printf("Proxy dest port '%s' not an integer\n", p);
923 goto proxyfail;
924 }
925 proxy_target_port = tmp_port;
926 /* Already checked for /r /n above. Good V1 header received. */
927 goto done;
928 }
929 else
930 {
931 /* Wrong protocol */
932 DEBUG(D_receive) debug_printf("Invalid proxy protocol version negotiation\n");
933 goto proxyfail;
934 }
935
936 proxyfail:
937 restore_socket_timeout(fd, get_ok, tvtmp, vslen);
938 /* Don't flush any potential buffer contents. Any input should cause a
939 synchronization failure */
940 return FALSE;
941
942 done:
943 restore_socket_timeout(fd, get_ok, tvtmp, vslen);
944 DEBUG(D_receive)
945 debug_printf("Valid %s sender from Proxy Protocol header\n", iptype);
946 return proxy_session;
947 }
948 #endif
949
950 /*************************************************
951 * Read one command line *
952 *************************************************/
953
954 /* Strictly, SMTP commands coming over the net are supposed to end with CRLF.
955 There are sites that don't do this, and in any case internal SMTP probably
956 should check only for LF. Consequently, we check here for LF only. The line
957 ends up with [CR]LF removed from its end. If we get an overlong line, treat as
958 an unknown command. The command is read into the global smtp_cmd_buffer so that
959 it is available via $smtp_command.
960
961 The character reading routine sets up a timeout for each block actually read
962 from the input (which may contain more than one command). We set up a special
963 signal handler that closes down the session on a timeout. Control does not
964 return when it runs.
965
966 Arguments:
967 check_sync if TRUE, check synchronization rules if global option is TRUE
968
969 Returns: a code identifying the command (enumerated above)
970 */
971
972 static int
973 smtp_read_command(BOOL check_sync)
974 {
975 int c;
976 int ptr = 0;
977 smtp_cmd_list *p;
978 BOOL hadnull = FALSE;
979
980 os_non_restarting_signal(SIGALRM, command_timeout_handler);
981
982 while ((c = (receive_getc)()) != '\n' && c != EOF)
983 {
984 if (ptr >= smtp_cmd_buffer_size)
985 {
986 os_non_restarting_signal(SIGALRM, sigalrm_handler);
987 return OTHER_CMD;
988 }
989 if (c == 0)
990 {
991 hadnull = TRUE;
992 c = '?';
993 }
994 smtp_cmd_buffer[ptr++] = c;
995 }
996
997 receive_linecount++; /* For BSMTP errors */
998 os_non_restarting_signal(SIGALRM, sigalrm_handler);
999
1000 /* If hit end of file, return pseudo EOF command. Whether we have a
1001 part-line already read doesn't matter, since this is an error state. */
1002
1003 if (c == EOF) return EOF_CMD;
1004
1005 /* Remove any CR and white space at the end of the line, and terminate the
1006 string. */
1007
1008 while (ptr > 0 && isspace(smtp_cmd_buffer[ptr-1])) ptr--;
1009 smtp_cmd_buffer[ptr] = 0;
1010
1011 DEBUG(D_receive) debug_printf("SMTP<< %s\n", smtp_cmd_buffer);
1012
1013 /* NULLs are not allowed in SMTP commands */
1014
1015 if (hadnull) return BADCHAR_CMD;
1016
1017 /* Scan command list and return identity, having set the data pointer
1018 to the start of the actual data characters. Check for SMTP synchronization
1019 if required. */
1020
1021 for (p = cmd_list; p < cmd_list_end; p++)
1022 {
1023 #ifdef EXPERIMENTAL_PROXY
1024 /* Only allow QUIT command if Proxy Protocol parsing failed */
1025 if (proxy_session && proxy_session_failed)
1026 {
1027 if (p->cmd != QUIT_CMD)
1028 continue;
1029 }
1030 #endif
1031 if (strncmpic(smtp_cmd_buffer, US p->name, p->len) == 0 &&
1032 (smtp_cmd_buffer[p->len-1] == ':' || /* "mail from:" or "rcpt to:" */
1033 smtp_cmd_buffer[p->len] == 0 ||
1034 smtp_cmd_buffer[p->len] == ' '))
1035 {
1036 if (smtp_inptr < smtp_inend && /* Outstanding input */
1037 p->cmd < sync_cmd_limit && /* Command should sync */
1038 check_sync && /* Local flag set */
1039 smtp_enforce_sync && /* Global flag set */
1040 sender_host_address != NULL && /* Not local input */
1041 !sender_host_notsocket) /* Really is a socket */
1042 return BADSYN_CMD;
1043
1044 /* The variables $smtp_command and $smtp_command_argument point into the
1045 unmodified input buffer. A copy of the latter is taken for actual
1046 processing, so that it can be chopped up into separate parts if necessary,
1047 for example, when processing a MAIL command options such as SIZE that can
1048 follow the sender address. */
1049
1050 smtp_cmd_argument = smtp_cmd_buffer + p->len;
1051 while (isspace(*smtp_cmd_argument)) smtp_cmd_argument++;
1052 Ustrcpy(smtp_data_buffer, smtp_cmd_argument);
1053 smtp_cmd_data = smtp_data_buffer;
1054
1055 /* Count non-mail commands from those hosts that are controlled in this
1056 way. The default is all hosts. We don't waste effort checking the list
1057 until we get a non-mail command, but then cache the result to save checking
1058 again. If there's a DEFER while checking the host, assume it's in the list.
1059
1060 Note that one instance of RSET, EHLO/HELO, and STARTTLS is allowed at the
1061 start of each incoming message by fiddling with the value in the table. */
1062
1063 if (!p->is_mail_cmd)
1064 {
1065 if (count_nonmail == TRUE_UNSET) count_nonmail =
1066 verify_check_host(&smtp_accept_max_nonmail_hosts) != FAIL;
1067 if (count_nonmail && ++nonmail_command_count > smtp_accept_max_nonmail)
1068 return TOO_MANY_NONMAIL_CMD;
1069 }
1070
1071 /* If there is data for a command that does not expect it, generate the
1072 error here. */
1073
1074 return (p->has_arg || *smtp_cmd_data == 0)? p->cmd : BADARG_CMD;
1075 }
1076 }
1077
1078 #ifdef EXPERIMENTAL_PROXY
1079 /* Only allow QUIT command if Proxy Protocol parsing failed */
1080 if (proxy_session && proxy_session_failed)
1081 return PROXY_FAIL_IGNORE_CMD;
1082 #endif
1083
1084 /* Enforce synchronization for unknown commands */
1085
1086 if (smtp_inptr < smtp_inend && /* Outstanding input */
1087 check_sync && /* Local flag set */
1088 smtp_enforce_sync && /* Global flag set */
1089 sender_host_address != NULL && /* Not local input */
1090 !sender_host_notsocket) /* Really is a socket */
1091 return BADSYN_CMD;
1092
1093 return OTHER_CMD;
1094 }
1095
1096
1097
1098 /*************************************************
1099 * Recheck synchronization *
1100 *************************************************/
1101
1102 /* Synchronization checks can never be perfect because a packet may be on its
1103 way but not arrived when the check is done. Such checks can in any case only be
1104 done when TLS is not in use. Normally, the checks happen when commands are
1105 read: Exim ensures that there is no more input in the input buffer. In normal
1106 cases, the response to the command will be fast, and there is no further check.
1107
1108 However, for some commands an ACL is run, and that can include delays. In those
1109 cases, it is useful to do another check on the input just before sending the
1110 response. This also applies at the start of a connection. This function does
1111 that check by means of the select() function, as long as the facility is not
1112 disabled or inappropriate. A failure of select() is ignored.
1113
1114 When there is unwanted input, we read it so that it appears in the log of the
1115 error.
1116
1117 Arguments: none
1118 Returns: TRUE if all is well; FALSE if there is input pending
1119 */
1120
1121 static BOOL
1122 check_sync(void)
1123 {
1124 int fd, rc;
1125 fd_set fds;
1126 struct timeval tzero;
1127
1128 if (!smtp_enforce_sync || sender_host_address == NULL ||
1129 sender_host_notsocket || tls_in.active >= 0)
1130 return TRUE;
1131
1132 fd = fileno(smtp_in);
1133 FD_ZERO(&fds);
1134 FD_SET(fd, &fds);
1135 tzero.tv_sec = 0;
1136 tzero.tv_usec = 0;
1137 rc = select(fd + 1, (SELECT_ARG2_TYPE *)&fds, NULL, NULL, &tzero);
1138
1139 if (rc <= 0) return TRUE; /* Not ready to read */
1140 rc = smtp_getc();
1141 if (rc < 0) return TRUE; /* End of file or error */
1142
1143 smtp_ungetc(rc);
1144 rc = smtp_inend - smtp_inptr;
1145 if (rc > 150) rc = 150;
1146 smtp_inptr[rc] = 0;
1147 return FALSE;
1148 }
1149
1150
1151
1152 /*************************************************
1153 * Forced closedown of call *
1154 *************************************************/
1155
1156 /* This function is called from log.c when Exim is dying because of a serious
1157 disaster, and also from some other places. If an incoming non-batched SMTP
1158 channel is open, it swallows the rest of the incoming message if in the DATA
1159 phase, sends the reply string, and gives an error to all subsequent commands
1160 except QUIT. The existence of an SMTP call is detected by the non-NULLness of
1161 smtp_in.
1162
1163 Arguments:
1164 message SMTP reply string to send, excluding the code
1165
1166 Returns: nothing
1167 */
1168
1169 void
1170 smtp_closedown(uschar *message)
1171 {
1172 if (smtp_in == NULL || smtp_batched_input) return;
1173 receive_swallow_smtp();
1174 smtp_printf("421 %s\r\n", message);
1175
1176 for (;;)
1177 {
1178 switch(smtp_read_command(FALSE))
1179 {
1180 case EOF_CMD:
1181 return;
1182
1183 case QUIT_CMD:
1184 smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
1185 mac_smtp_fflush();
1186 return;
1187
1188 case RSET_CMD:
1189 smtp_printf("250 Reset OK\r\n");
1190 break;
1191
1192 default:
1193 smtp_printf("421 %s\r\n", message);
1194 break;
1195 }
1196 }
1197 }
1198
1199
1200
1201
1202 /*************************************************
1203 * Set up connection info for logging *
1204 *************************************************/
1205
1206 /* This function is called when logging information about an SMTP connection.
1207 It sets up appropriate source information, depending on the type of connection.
1208 If sender_fullhost is NULL, we are at a very early stage of the connection;
1209 just use the IP address.
1210
1211 Argument: none
1212 Returns: a string describing the connection
1213 */
1214
1215 uschar *
1216 smtp_get_connection_info(void)
1217 {
1218 uschar *hostname = (sender_fullhost == NULL)?
1219 sender_host_address : sender_fullhost;
1220
1221 if (host_checking)
1222 return string_sprintf("SMTP connection from %s", hostname);
1223
1224 if (sender_host_unknown || sender_host_notsocket)
1225 return string_sprintf("SMTP connection from %s", sender_ident);
1226
1227 if (is_inetd)
1228 return string_sprintf("SMTP connection from %s (via inetd)", hostname);
1229
1230 if ((log_extra_selector & LX_incoming_interface) != 0 &&
1231 interface_address != NULL)
1232 return string_sprintf("SMTP connection from %s I=[%s]:%d", hostname,
1233 interface_address, interface_port);
1234
1235 return string_sprintf("SMTP connection from %s", hostname);
1236 }
1237
1238
1239
1240 #ifdef SUPPORT_TLS
1241 /* Append TLS-related information to a log line
1242
1243 Arguments:
1244 s String under construction: allocated string to extend, or NULL
1245 sizep Pointer to current allocation size (update on return), or NULL
1246 ptrp Pointer to index for new entries in string (update on return), or NULL
1247
1248 Returns: Allocated string or NULL
1249 */
1250 static uschar *
1251 s_tlslog(uschar * s, int * sizep, int * ptrp)
1252 {
1253 int size = sizep ? *sizep : 0;
1254 int ptr = ptrp ? *ptrp : 0;
1255
1256 if ((log_extra_selector & LX_tls_cipher) != 0 && tls_in.cipher != NULL)
1257 s = string_append(s, &size, &ptr, 2, US" X=", tls_in.cipher);
1258 if ((log_extra_selector & LX_tls_certificate_verified) != 0 &&
1259 tls_in.cipher != NULL)
1260 s = string_append(s, &size, &ptr, 2, US" CV=",
1261 tls_in.certificate_verified? "yes":"no");
1262 if ((log_extra_selector & LX_tls_peerdn) != 0 && tls_in.peerdn != NULL)
1263 s = string_append(s, &size, &ptr, 3, US" DN=\"",
1264 string_printing(tls_in.peerdn), US"\"");
1265 if ((log_extra_selector & LX_tls_sni) != 0 && tls_in.sni != NULL)
1266 s = string_append(s, &size, &ptr, 3, US" SNI=\"",
1267 string_printing(tls_in.sni), US"\"");
1268
1269 if (s)
1270 {
1271 s[ptr] = '\0';
1272 if (sizep) *sizep = size;
1273 if (ptrp) *ptrp = ptr;
1274 }
1275 return s;
1276 }
1277 #endif
1278
1279 /*************************************************
1280 * Log lack of MAIL if so configured *
1281 *************************************************/
1282
1283 /* This function is called when an SMTP session ends. If the log selector
1284 smtp_no_mail is set, write a log line giving some details of what has happened
1285 in the SMTP session.
1286
1287 Arguments: none
1288 Returns: nothing
1289 */
1290
1291 void
1292 smtp_log_no_mail(void)
1293 {
1294 int size, ptr, i;
1295 uschar *s, *sep;
1296
1297 if (smtp_mailcmd_count > 0 || (log_extra_selector & LX_smtp_no_mail) == 0)
1298 return;
1299
1300 s = NULL;
1301 size = ptr = 0;
1302
1303 if (sender_host_authenticated != NULL)
1304 {
1305 s = string_append(s, &size, &ptr, 2, US" A=", sender_host_authenticated);
1306 if (authenticated_id != NULL)
1307 s = string_append(s, &size, &ptr, 2, US":", authenticated_id);
1308 }
1309
1310 #ifdef SUPPORT_TLS
1311 s = s_tlslog(s, &size, &ptr);
1312 #endif
1313
1314 sep = (smtp_connection_had[SMTP_HBUFF_SIZE-1] != SCH_NONE)?
1315 US" C=..." : US" C=";
1316 for (i = smtp_ch_index; i < SMTP_HBUFF_SIZE; i++)
1317 {
1318 if (smtp_connection_had[i] != SCH_NONE)
1319 {
1320 s = string_append(s, &size, &ptr, 2, sep,
1321 smtp_names[smtp_connection_had[i]]);
1322 sep = US",";
1323 }
1324 }
1325
1326 for (i = 0; i < smtp_ch_index; i++)
1327 {
1328 s = string_append(s, &size, &ptr, 2, sep, smtp_names[smtp_connection_had[i]]);
1329 sep = US",";
1330 }
1331
1332 if (s != NULL) s[ptr] = 0; else s = US"";
1333 log_write(0, LOG_MAIN, "no MAIL in SMTP connection from %s D=%s%s",
1334 host_and_ident(FALSE),
1335 readconf_printtime( (int) ((long)time(NULL) - (long)smtp_connection_start)),
1336 s);
1337 }
1338
1339
1340
1341 /*************************************************
1342 * Check HELO line and set sender_helo_name *
1343 *************************************************/
1344
1345 /* Check the format of a HELO line. The data for HELO/EHLO is supposed to be
1346 the domain name of the sending host, or an ip literal in square brackets. The
1347 arrgument is placed in sender_helo_name, which is in malloc store, because it
1348 must persist over multiple incoming messages. If helo_accept_junk is set, this
1349 host is permitted to send any old junk (needed for some broken hosts).
1350 Otherwise, helo_allow_chars can be used for rogue characters in general
1351 (typically people want to let in underscores).
1352
1353 Argument:
1354 s the data portion of the line (already past any white space)
1355
1356 Returns: TRUE or FALSE
1357 */
1358
1359 static BOOL
1360 check_helo(uschar *s)
1361 {
1362 uschar *start = s;
1363 uschar *end = s + Ustrlen(s);
1364 BOOL yield = helo_accept_junk;
1365
1366 /* Discard any previous helo name */
1367
1368 if (sender_helo_name != NULL)
1369 {
1370 store_free(sender_helo_name);
1371 sender_helo_name = NULL;
1372 }
1373
1374 /* Skip tests if junk is permitted. */
1375
1376 if (!yield)
1377 {
1378 /* Allow the new standard form for IPv6 address literals, namely,
1379 [IPv6:....], and because someone is bound to use it, allow an equivalent
1380 IPv4 form. Allow plain addresses as well. */
1381
1382 if (*s == '[')
1383 {
1384 if (end[-1] == ']')
1385 {
1386 end[-1] = 0;
1387 if (strncmpic(s, US"[IPv6:", 6) == 0)
1388 yield = (string_is_ip_address(s+6, NULL) == 6);
1389 else if (strncmpic(s, US"[IPv4:", 6) == 0)
1390 yield = (string_is_ip_address(s+6, NULL) == 4);
1391 else
1392 yield = (string_is_ip_address(s+1, NULL) != 0);
1393 end[-1] = ']';
1394 }
1395 }
1396
1397 /* Non-literals must be alpha, dot, hyphen, plus any non-valid chars
1398 that have been configured (usually underscore - sigh). */
1399
1400 else if (*s != 0)
1401 {
1402 yield = TRUE;
1403 while (*s != 0)
1404 {
1405 if (!isalnum(*s) && *s != '.' && *s != '-' &&
1406 Ustrchr(helo_allow_chars, *s) == NULL)
1407 {
1408 yield = FALSE;
1409 break;
1410 }
1411 s++;
1412 }
1413 }
1414 }
1415
1416 /* Save argument if OK */
1417
1418 if (yield) sender_helo_name = string_copy_malloc(start);
1419 return yield;
1420 }
1421
1422
1423
1424
1425
1426 /*************************************************
1427 * Extract SMTP command option *
1428 *************************************************/
1429
1430 /* This function picks the next option setting off the end of smtp_cmd_data. It
1431 is called for MAIL FROM and RCPT TO commands, to pick off the optional ESMTP
1432 things that can appear there.
1433
1434 Arguments:
1435 name point this at the name
1436 value point this at the data string
1437
1438 Returns: TRUE if found an option
1439 */
1440
1441 static BOOL
1442 extract_option(uschar **name, uschar **value)
1443 {
1444 uschar *n;
1445 uschar *v = smtp_cmd_data + Ustrlen(smtp_cmd_data) - 1;
1446 while (isspace(*v)) v--;
1447 v[1] = 0;
1448 while (v > smtp_cmd_data && *v != '=' && !isspace(*v)) v--;
1449
1450 n = v;
1451 if (*v == '=')
1452 {
1453 while(isalpha(n[-1])) n--;
1454 /* RFC says SP, but TAB seen in wild and other major MTAs accept it */
1455 if (!isspace(n[-1])) return FALSE;
1456 n[-1] = 0;
1457 }
1458 else
1459 {
1460 n++;
1461 if (v == smtp_cmd_data) return FALSE;
1462 }
1463 *v++ = 0;
1464 *name = n;
1465 *value = v;
1466 return TRUE;
1467 }
1468
1469
1470
1471
1472
1473 /*************************************************
1474 * Reset for new message *
1475 *************************************************/
1476
1477 /* This function is called whenever the SMTP session is reset from
1478 within either of the setup functions.
1479
1480 Argument: the stacking pool storage reset point
1481 Returns: nothing
1482 */
1483
1484 static void
1485 smtp_reset(void *reset_point)
1486 {
1487 store_reset(reset_point);
1488 recipients_list = NULL;
1489 rcpt_count = rcpt_defer_count = rcpt_fail_count =
1490 raw_recipients_count = recipients_count = recipients_list_max = 0;
1491 cancel_cutthrough_connection("smtp reset");
1492 message_linecount = 0;
1493 message_size = -1;
1494 acl_added_headers = NULL;
1495 acl_removed_headers = NULL;
1496 queue_only_policy = FALSE;
1497 rcpt_smtp_response = NULL;
1498 rcpt_smtp_response_same = TRUE;
1499 rcpt_in_progress = FALSE;
1500 deliver_freeze = FALSE; /* Can be set by ACL */
1501 freeze_tell = freeze_tell_config; /* Can be set by ACL */
1502 fake_response = OK; /* Can be set by ACL */
1503 #ifdef WITH_CONTENT_SCAN
1504 no_mbox_unspool = FALSE; /* Can be set by ACL */
1505 #endif
1506 submission_mode = FALSE; /* Can be set by ACL */
1507 suppress_local_fixups = suppress_local_fixups_default; /* Can be set by ACL */
1508 active_local_from_check = local_from_check; /* Can be set by ACL */
1509 active_local_sender_retain = local_sender_retain; /* Can be set by ACL */
1510 sender_address = NULL;
1511 submission_name = NULL; /* Can be set by ACL */
1512 raw_sender = NULL; /* After SMTP rewrite, before qualifying */
1513 sender_address_unrewritten = NULL; /* Set only after verify rewrite */
1514 sender_verified_list = NULL; /* No senders verified */
1515 memset(sender_address_cache, 0, sizeof(sender_address_cache));
1516 memset(sender_domain_cache, 0, sizeof(sender_domain_cache));
1517
1518 prdr_requested = FALSE;
1519
1520 /* Reset the DSN flags */
1521 dsn_ret = 0;
1522 dsn_envid = NULL;
1523
1524 authenticated_sender = NULL;
1525 #ifdef EXPERIMENTAL_BRIGHTMAIL
1526 bmi_run = 0;
1527 bmi_verdicts = NULL;
1528 #endif
1529 #ifndef DISABLE_DKIM
1530 dkim_signers = NULL;
1531 dkim_disable_verify = FALSE;
1532 dkim_collect_input = FALSE;
1533 #endif
1534 #ifdef EXPERIMENTAL_SPF
1535 spf_header_comment = NULL;
1536 spf_received = NULL;
1537 spf_result = NULL;
1538 spf_smtp_comment = NULL;
1539 #endif
1540 #ifdef EXPERIMENTAL_INTERNATIONAL
1541 message_smtputf8 = FALSE;
1542 #endif
1543 body_linecount = body_zerocount = 0;
1544
1545 sender_rate = sender_rate_limit = sender_rate_period = NULL;
1546 ratelimiters_mail = NULL; /* Updated by ratelimit ACL condition */
1547 /* Note that ratelimiters_conn persists across resets. */
1548
1549 /* Reset message ACL variables */
1550
1551 acl_var_m = NULL;
1552
1553 /* The message body variables use malloc store. They may be set if this is
1554 not the first message in an SMTP session and the previous message caused them
1555 to be referenced in an ACL. */
1556
1557 if (message_body != NULL)
1558 {
1559 store_free(message_body);
1560 message_body = NULL;
1561 }
1562
1563 if (message_body_end != NULL)
1564 {
1565 store_free(message_body_end);
1566 message_body_end = NULL;
1567 }
1568
1569 /* Warning log messages are also saved in malloc store. They are saved to avoid
1570 repetition in the same message, but it seems right to repeat them for different
1571 messages. */
1572
1573 while (acl_warn_logged != NULL)
1574 {
1575 string_item *this = acl_warn_logged;
1576 acl_warn_logged = acl_warn_logged->next;
1577 store_free(this);
1578 }
1579 }
1580
1581
1582
1583
1584
1585 /*************************************************
1586 * Initialize for incoming batched SMTP message *
1587 *************************************************/
1588
1589 /* This function is called from smtp_setup_msg() in the case when
1590 smtp_batched_input is true. This happens when -bS is used to pass a whole batch
1591 of messages in one file with SMTP commands between them. All errors must be
1592 reported by sending a message, and only MAIL FROM, RCPT TO, and DATA are
1593 relevant. After an error on a sender, or an invalid recipient, the remainder
1594 of the message is skipped. The value of received_protocol is already set.
1595
1596 Argument: none
1597 Returns: > 0 message successfully started (reached DATA)
1598 = 0 QUIT read or end of file reached
1599 < 0 should not occur
1600 */
1601
1602 static int
1603 smtp_setup_batch_msg(void)
1604 {
1605 int done = 0;
1606 void *reset_point = store_get(0);
1607
1608 /* Save the line count at the start of each transaction - single commands
1609 like HELO and RSET count as whole transactions. */
1610
1611 bsmtp_transaction_linecount = receive_linecount;
1612
1613 if ((receive_feof)()) return 0; /* Treat EOF as QUIT */
1614
1615 smtp_reset(reset_point); /* Reset for start of message */
1616
1617 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
1618 value. The values are 2 larger than the required yield of the function. */
1619
1620 while (done <= 0)
1621 {
1622 uschar *errmess;
1623 uschar *recipient = NULL;
1624 int start, end, sender_domain, recipient_domain;
1625
1626 switch(smtp_read_command(FALSE))
1627 {
1628 /* The HELO/EHLO commands set sender_address_helo if they have
1629 valid data; otherwise they are ignored, except that they do
1630 a reset of the state. */
1631
1632 case HELO_CMD:
1633 case EHLO_CMD:
1634
1635 check_helo(smtp_cmd_data);
1636 /* Fall through */
1637
1638 case RSET_CMD:
1639 smtp_reset(reset_point);
1640 bsmtp_transaction_linecount = receive_linecount;
1641 break;
1642
1643
1644 /* The MAIL FROM command requires an address as an operand. All we
1645 do here is to parse it for syntactic correctness. The form "<>" is
1646 a special case which converts into an empty string. The start/end
1647 pointers in the original are not used further for this address, as
1648 it is the canonical extracted address which is all that is kept. */
1649
1650 case MAIL_CMD:
1651 smtp_mailcmd_count++; /* Count for no-mail log */
1652 if (sender_address != NULL)
1653 /* The function moan_smtp_batch() does not return. */
1654 moan_smtp_batch(smtp_cmd_buffer, "503 Sender already given");
1655
1656 if (smtp_cmd_data[0] == 0)
1657 /* The function moan_smtp_batch() does not return. */
1658 moan_smtp_batch(smtp_cmd_buffer, "501 MAIL FROM must have an address operand");
1659
1660 /* Reset to start of message */
1661
1662 smtp_reset(reset_point);
1663
1664 /* Apply SMTP rewrite */
1665
1666 raw_sender = ((rewrite_existflags & rewrite_smtp) != 0)?
1667 rewrite_one(smtp_cmd_data, rewrite_smtp|rewrite_smtp_sender, NULL, FALSE,
1668 US"", global_rewrite_rules) : smtp_cmd_data;
1669
1670 /* Extract the address; the TRUE flag allows <> as valid */
1671
1672 raw_sender =
1673 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
1674 TRUE);
1675
1676 if (raw_sender == NULL)
1677 /* The function moan_smtp_batch() does not return. */
1678 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
1679
1680 sender_address = string_copy(raw_sender);
1681
1682 /* Qualify unqualified sender addresses if permitted to do so. */
1683
1684 if (sender_domain == 0 && sender_address[0] != 0 && sender_address[0] != '@')
1685 {
1686 if (allow_unqualified_sender)
1687 {
1688 sender_address = rewrite_address_qualify(sender_address, FALSE);
1689 DEBUG(D_receive) debug_printf("unqualified address %s accepted "
1690 "and rewritten\n", raw_sender);
1691 }
1692 /* The function moan_smtp_batch() does not return. */
1693 else moan_smtp_batch(smtp_cmd_buffer, "501 sender address must contain "
1694 "a domain");
1695 }
1696 break;
1697
1698
1699 /* The RCPT TO command requires an address as an operand. All we do
1700 here is to parse it for syntactic correctness. There may be any number
1701 of RCPT TO commands, specifying multiple senders. We build them all into
1702 a data structure that is in argc/argv format. The start/end values
1703 given by parse_extract_address are not used, as we keep only the
1704 extracted address. */
1705
1706 case RCPT_CMD:
1707 if (sender_address == NULL)
1708 /* The function moan_smtp_batch() does not return. */
1709 moan_smtp_batch(smtp_cmd_buffer, "503 No sender yet given");
1710
1711 if (smtp_cmd_data[0] == 0)
1712 /* The function moan_smtp_batch() does not return. */
1713 moan_smtp_batch(smtp_cmd_buffer, "501 RCPT TO must have an address operand");
1714
1715 /* Check maximum number allowed */
1716
1717 if (recipients_max > 0 && recipients_count + 1 > recipients_max)
1718 /* The function moan_smtp_batch() does not return. */
1719 moan_smtp_batch(smtp_cmd_buffer, "%s too many recipients",
1720 recipients_max_reject? "552": "452");
1721
1722 /* Apply SMTP rewrite, then extract address. Don't allow "<>" as a
1723 recipient address */
1724
1725 recipient = ((rewrite_existflags & rewrite_smtp) != 0)?
1726 rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
1727 global_rewrite_rules) : smtp_cmd_data;
1728
1729 /* rfc821_domains = TRUE; << no longer needed */
1730 recipient = parse_extract_address(recipient, &errmess, &start, &end,
1731 &recipient_domain, FALSE);
1732 /* rfc821_domains = FALSE; << no longer needed */
1733
1734 if (recipient == NULL)
1735 /* The function moan_smtp_batch() does not return. */
1736 moan_smtp_batch(smtp_cmd_buffer, "501 %s", errmess);
1737
1738 /* If the recipient address is unqualified, qualify it if permitted. Then
1739 add it to the list of recipients. */
1740
1741 if (recipient_domain == 0)
1742 {
1743 if (allow_unqualified_recipient)
1744 {
1745 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
1746 recipient);
1747 recipient = rewrite_address_qualify(recipient, TRUE);
1748 }
1749 /* The function moan_smtp_batch() does not return. */
1750 else moan_smtp_batch(smtp_cmd_buffer, "501 recipient address must contain "
1751 "a domain");
1752 }
1753 receive_add_recipient(recipient, -1);
1754 break;
1755
1756
1757 /* The DATA command is legal only if it follows successful MAIL FROM
1758 and RCPT TO commands. This function is complete when a valid DATA
1759 command is encountered. */
1760
1761 case DATA_CMD:
1762 if (sender_address == NULL || recipients_count <= 0)
1763 {
1764 /* The function moan_smtp_batch() does not return. */
1765 if (sender_address == NULL)
1766 moan_smtp_batch(smtp_cmd_buffer,
1767 "503 MAIL FROM:<sender> command must precede DATA");
1768 else
1769 moan_smtp_batch(smtp_cmd_buffer,
1770 "503 RCPT TO:<recipient> must precede DATA");
1771 }
1772 else
1773 {
1774 done = 3; /* DATA successfully achieved */
1775 message_ended = END_NOTENDED; /* Indicate in middle of message */
1776 }
1777 break;
1778
1779
1780 /* The VRFY, EXPN, HELP, ETRN, and NOOP commands are ignored. */
1781
1782 case VRFY_CMD:
1783 case EXPN_CMD:
1784 case HELP_CMD:
1785 case NOOP_CMD:
1786 case ETRN_CMD:
1787 bsmtp_transaction_linecount = receive_linecount;
1788 break;
1789
1790
1791 case EOF_CMD:
1792 case QUIT_CMD:
1793 done = 2;
1794 break;
1795
1796
1797 case BADARG_CMD:
1798 /* The function moan_smtp_batch() does not return. */
1799 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected argument data");
1800 break;
1801
1802
1803 case BADCHAR_CMD:
1804 /* The function moan_smtp_batch() does not return. */
1805 moan_smtp_batch(smtp_cmd_buffer, "501 Unexpected NULL in SMTP command");
1806 break;
1807
1808
1809 default:
1810 /* The function moan_smtp_batch() does not return. */
1811 moan_smtp_batch(smtp_cmd_buffer, "500 Command unrecognized");
1812 break;
1813 }
1814 }
1815
1816 return done - 2; /* Convert yield values */
1817 }
1818
1819
1820
1821
1822 /*************************************************
1823 * Start an SMTP session *
1824 *************************************************/
1825
1826 /* This function is called at the start of an SMTP session. Thereafter,
1827 smtp_setup_msg() is called to initiate each separate message. This
1828 function does host-specific testing, and outputs the banner line.
1829
1830 Arguments: none
1831 Returns: FALSE if the session can not continue; something has
1832 gone wrong, or the connection to the host is blocked
1833 */
1834
1835 BOOL
1836 smtp_start_session(void)
1837 {
1838 int size = 256;
1839 int ptr, esclen;
1840 uschar *user_msg, *log_msg;
1841 uschar *code, *esc;
1842 uschar *p, *s, *ss;
1843
1844 smtp_connection_start = time(NULL);
1845 for (smtp_ch_index = 0; smtp_ch_index < SMTP_HBUFF_SIZE; smtp_ch_index++)
1846 smtp_connection_had[smtp_ch_index] = SCH_NONE;
1847 smtp_ch_index = 0;
1848
1849 /* Default values for certain variables */
1850
1851 helo_seen = esmtp = helo_accept_junk = FALSE;
1852 smtp_mailcmd_count = 0;
1853 count_nonmail = TRUE_UNSET;
1854 synprot_error_count = unknown_command_count = nonmail_command_count = 0;
1855 smtp_delay_mail = smtp_rlm_base;
1856 auth_advertised = FALSE;
1857 pipelining_advertised = FALSE;
1858 pipelining_enable = TRUE;
1859 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
1860 smtp_exit_function_called = FALSE; /* For avoiding loop in not-quit exit */
1861
1862 memset(sender_host_cache, 0, sizeof(sender_host_cache));
1863
1864 /* If receiving by -bs from a trusted user, or testing with -bh, we allow
1865 authentication settings from -oMaa to remain in force. */
1866
1867 if (!host_checking && !sender_host_notsocket) sender_host_authenticated = NULL;
1868 authenticated_by = NULL;
1869
1870 #ifdef SUPPORT_TLS
1871 tls_in.cipher = tls_in.peerdn = NULL;
1872 tls_in.ourcert = tls_in.peercert = NULL;
1873 tls_in.sni = NULL;
1874 tls_in.ocsp = OCSP_NOT_REQ;
1875 tls_advertised = FALSE;
1876 #endif
1877 dsn_advertised = FALSE;
1878 #ifdef EXPERIMENTAL_INTERNATIONAL
1879 smtputf8_advertised = FALSE;
1880 #endif
1881
1882 /* Reset ACL connection variables */
1883
1884 acl_var_c = NULL;
1885
1886 /* Allow for trailing 0 in the command and data buffers. */
1887
1888 smtp_cmd_buffer = (uschar *)malloc(2*smtp_cmd_buffer_size + 2);
1889 if (smtp_cmd_buffer == NULL)
1890 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
1891 "malloc() failed for SMTP command buffer");
1892 smtp_cmd_buffer[0] = 0;
1893 smtp_data_buffer = smtp_cmd_buffer + smtp_cmd_buffer_size + 1;
1894
1895 /* For batched input, the protocol setting can be overridden from the
1896 command line by a trusted caller. */
1897
1898 if (smtp_batched_input)
1899 {
1900 if (received_protocol == NULL) received_protocol = US"local-bsmtp";
1901 }
1902
1903 /* For non-batched SMTP input, the protocol setting is forced here. It will be
1904 reset later if any of EHLO/AUTH/STARTTLS are received. */
1905
1906 else
1907 received_protocol =
1908 (sender_host_address ? protocols : protocols_local) [pnormal];
1909
1910 /* Set up the buffer for inputting using direct read() calls, and arrange to
1911 call the local functions instead of the standard C ones. */
1912
1913 smtp_inbuffer = (uschar *)malloc(in_buffer_size);
1914 if (smtp_inbuffer == NULL)
1915 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "malloc() failed for SMTP input buffer");
1916 receive_getc = smtp_getc;
1917 receive_ungetc = smtp_ungetc;
1918 receive_feof = smtp_feof;
1919 receive_ferror = smtp_ferror;
1920 receive_smtp_buffered = smtp_buffered;
1921 smtp_inptr = smtp_inend = smtp_inbuffer;
1922 smtp_had_eof = smtp_had_error = 0;
1923
1924 /* Set up the message size limit; this may be host-specific */
1925
1926 thismessage_size_limit = expand_string_integer(message_size_limit, TRUE);
1927 if (expand_string_message != NULL)
1928 {
1929 if (thismessage_size_limit == -1)
1930 log_write(0, LOG_MAIN|LOG_PANIC, "unable to expand message_size_limit: "
1931 "%s", expand_string_message);
1932 else
1933 log_write(0, LOG_MAIN|LOG_PANIC, "invalid message_size_limit: "
1934 "%s", expand_string_message);
1935 smtp_closedown(US"Temporary local problem - please try later");
1936 return FALSE;
1937 }
1938
1939 /* When a message is input locally via the -bs or -bS options, sender_host_
1940 unknown is set unless -oMa was used to force an IP address, in which case it
1941 is checked like a real remote connection. When -bs is used from inetd, this
1942 flag is not set, causing the sending host to be checked. The code that deals
1943 with IP source routing (if configured) is never required for -bs or -bS and
1944 the flag sender_host_notsocket is used to suppress it.
1945
1946 If smtp_accept_max and smtp_accept_reserve are set, keep some connections in
1947 reserve for certain hosts and/or networks. */
1948
1949 if (!sender_host_unknown)
1950 {
1951 int rc;
1952 BOOL reserved_host = FALSE;
1953
1954 /* Look up IP options (source routing info) on the socket if this is not an
1955 -oMa "host", and if any are found, log them and drop the connection.
1956
1957 Linux (and others now, see below) is different to everyone else, so there
1958 has to be some conditional compilation here. Versions of Linux before 2.1.15
1959 used a structure whose name was "options". Somebody finally realized that
1960 this name was silly, and it got changed to "ip_options". I use the
1961 newer name here, but there is a fudge in the script that sets up os.h
1962 to define a macro in older Linux systems.
1963
1964 Sigh. Linux is a fast-moving target. Another generation of Linux uses
1965 glibc 2, which has chosen ip_opts for the structure name. This is now
1966 really a glibc thing rather than a Linux thing, so the condition name
1967 has been changed to reflect this. It is relevant also to GNU/Hurd.
1968
1969 Mac OS 10.x (Darwin) is like the later glibc versions, but without the
1970 setting of the __GLIBC__ macro, so we can't detect it automatically. There's
1971 a special macro defined in the os.h file.
1972
1973 Some DGUX versions on older hardware appear not to support IP options at
1974 all, so there is now a general macro which can be set to cut out this
1975 support altogether.
1976
1977 How to do this properly in IPv6 is not yet known. */
1978
1979 #if !HAVE_IPV6 && !defined(NO_IP_OPTIONS)
1980
1981 #ifdef GLIBC_IP_OPTIONS
1982 #if (!defined __GLIBC__) || (__GLIBC__ < 2)
1983 #define OPTSTYLE 1
1984 #else
1985 #define OPTSTYLE 2
1986 #endif
1987 #elif defined DARWIN_IP_OPTIONS
1988 #define OPTSTYLE 2
1989 #else
1990 #define OPTSTYLE 3
1991 #endif
1992
1993 if (!host_checking && !sender_host_notsocket)
1994 {
1995 #if OPTSTYLE == 1
1996 EXIM_SOCKLEN_T optlen = sizeof(struct ip_options) + MAX_IPOPTLEN;
1997 struct ip_options *ipopt = store_get(optlen);
1998 #elif OPTSTYLE == 2
1999 struct ip_opts ipoptblock;
2000 struct ip_opts *ipopt = &ipoptblock;
2001 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2002 #else
2003 struct ipoption ipoptblock;
2004 struct ipoption *ipopt = &ipoptblock;
2005 EXIM_SOCKLEN_T optlen = sizeof(ipoptblock);
2006 #endif
2007
2008 /* Occasional genuine failures of getsockopt() have been seen - for
2009 example, "reset by peer". Therefore, just log and give up on this
2010 call, unless the error is ENOPROTOOPT. This error is given by systems
2011 that have the interfaces but not the mechanism - e.g. GNU/Hurd at the time
2012 of writing. So for that error, carry on - we just can't do an IP options
2013 check. */
2014
2015 DEBUG(D_receive) debug_printf("checking for IP options\n");
2016
2017 if (getsockopt(fileno(smtp_out), IPPROTO_IP, IP_OPTIONS, (uschar *)(ipopt),
2018 &optlen) < 0)
2019 {
2020 if (errno != ENOPROTOOPT)
2021 {
2022 log_write(0, LOG_MAIN, "getsockopt() failed from %s: %s",
2023 host_and_ident(FALSE), strerror(errno));
2024 smtp_printf("451 SMTP service not available\r\n");
2025 return FALSE;
2026 }
2027 }
2028
2029 /* Deal with any IP options that are set. On the systems I have looked at,
2030 the value of MAX_IPOPTLEN has been 40, meaning that there should never be
2031 more logging data than will fit in big_buffer. Nevertheless, after somebody
2032 questioned this code, I've added in some paranoid checking. */
2033
2034 else if (optlen > 0)
2035 {
2036 uschar *p = big_buffer;
2037 uschar *pend = big_buffer + big_buffer_size;
2038 uschar *opt, *adptr;
2039 int optcount;
2040 struct in_addr addr;
2041
2042 #if OPTSTYLE == 1
2043 uschar *optstart = (uschar *)(ipopt->__data);
2044 #elif OPTSTYLE == 2
2045 uschar *optstart = (uschar *)(ipopt->ip_opts);
2046 #else
2047 uschar *optstart = (uschar *)(ipopt->ipopt_list);
2048 #endif
2049
2050 DEBUG(D_receive) debug_printf("IP options exist\n");
2051
2052 Ustrcpy(p, "IP options on incoming call:");
2053 p += Ustrlen(p);
2054
2055 for (opt = optstart; opt != NULL &&
2056 opt < (uschar *)(ipopt) + optlen;)
2057 {
2058 switch (*opt)
2059 {
2060 case IPOPT_EOL:
2061 opt = NULL;
2062 break;
2063
2064 case IPOPT_NOP:
2065 opt++;
2066 break;
2067
2068 case IPOPT_SSRR:
2069 case IPOPT_LSRR:
2070 if (!string_format(p, pend-p, " %s [@%s",
2071 (*opt == IPOPT_SSRR)? "SSRR" : "LSRR",
2072 #if OPTSTYLE == 1
2073 inet_ntoa(*((struct in_addr *)(&(ipopt->faddr))))))
2074 #elif OPTSTYLE == 2
2075 inet_ntoa(ipopt->ip_dst)))
2076 #else
2077 inet_ntoa(ipopt->ipopt_dst)))
2078 #endif
2079 {
2080 opt = NULL;
2081 break;
2082 }
2083
2084 p += Ustrlen(p);
2085 optcount = (opt[1] - 3) / sizeof(struct in_addr);
2086 adptr = opt + 3;
2087 while (optcount-- > 0)
2088 {
2089 memcpy(&addr, adptr, sizeof(addr));
2090 if (!string_format(p, pend - p - 1, "%s%s",
2091 (optcount == 0)? ":" : "@", inet_ntoa(addr)))
2092 {
2093 opt = NULL;
2094 break;
2095 }
2096 p += Ustrlen(p);
2097 adptr += sizeof(struct in_addr);
2098 }
2099 *p++ = ']';
2100 opt += opt[1];
2101 break;
2102
2103 default:
2104 {
2105 int i;
2106 if (pend - p < 4 + 3*opt[1]) { opt = NULL; break; }
2107 Ustrcat(p, "[ ");
2108 p += 2;
2109 for (i = 0; i < opt[1]; i++)
2110 {
2111 sprintf(CS p, "%2.2x ", opt[i]);
2112 p += 3;
2113 }
2114 *p++ = ']';
2115 }
2116 opt += opt[1];
2117 break;
2118 }
2119 }
2120
2121 *p = 0;
2122 log_write(0, LOG_MAIN, "%s", big_buffer);
2123
2124 /* Refuse any call with IP options. This is what tcpwrappers 7.5 does. */
2125
2126 log_write(0, LOG_MAIN|LOG_REJECT,
2127 "connection from %s refused (IP options)", host_and_ident(FALSE));
2128
2129 smtp_printf("554 SMTP service not available\r\n");
2130 return FALSE;
2131 }
2132
2133 /* Length of options = 0 => there are no options */
2134
2135 else DEBUG(D_receive) debug_printf("no IP options found\n");
2136 }
2137 #endif /* HAVE_IPV6 && !defined(NO_IP_OPTIONS) */
2138
2139 /* Set keep-alive in socket options. The option is on by default. This
2140 setting is an attempt to get rid of some hanging connections that stick in
2141 read() when the remote end (usually a dialup) goes away. */
2142
2143 if (smtp_accept_keepalive && !sender_host_notsocket)
2144 ip_keepalive(fileno(smtp_out), sender_host_address, FALSE);
2145
2146 /* If the current host matches host_lookup, set the name by doing a
2147 reverse lookup. On failure, sender_host_name will be NULL and
2148 host_lookup_failed will be TRUE. This may or may not be serious - optional
2149 checks later. */
2150
2151 if (verify_check_host(&host_lookup) == OK)
2152 {
2153 (void)host_name_lookup();
2154 host_build_sender_fullhost();
2155 }
2156
2157 /* Delay this until we have the full name, if it is looked up. */
2158
2159 set_process_info("handling incoming connection from %s",
2160 host_and_ident(FALSE));
2161
2162 /* Expand smtp_receive_timeout, if needed */
2163
2164 if (smtp_receive_timeout_s)
2165 {
2166 uschar * exp;
2167 if ( !(exp = expand_string(smtp_receive_timeout_s))
2168 || !(*exp)
2169 || (smtp_receive_timeout = readconf_readtime(exp, 0, FALSE)) < 0
2170 )
2171 log_write(0, LOG_MAIN|LOG_PANIC,
2172 "bad value for smtp_receive_timeout: '%s'", exp ? exp : US"");
2173 }
2174
2175 /* Start up TLS if tls_on_connect is set. This is for supporting the legacy
2176 smtps port for use with older style SSL MTAs. */
2177
2178 #ifdef SUPPORT_TLS
2179 if (tls_in.on_connect && tls_server_start(tls_require_ciphers) != OK)
2180 return FALSE;
2181 #endif
2182
2183 /* Test for explicit connection rejection */
2184
2185 if (verify_check_host(&host_reject_connection) == OK)
2186 {
2187 log_write(L_connection_reject, LOG_MAIN|LOG_REJECT, "refused connection "
2188 "from %s (host_reject_connection)", host_and_ident(FALSE));
2189 smtp_printf("554 SMTP service not available\r\n");
2190 return FALSE;
2191 }
2192
2193 /* Test with TCP Wrappers if so configured. There is a problem in that
2194 hosts_ctl() returns 0 (deny) under a number of system failure circumstances,
2195 such as disks dying. In these cases, it is desirable to reject with a 4xx
2196 error instead of a 5xx error. There isn't a "right" way to detect such
2197 problems. The following kludge is used: errno is zeroed before calling
2198 hosts_ctl(). If the result is "reject", a 5xx error is given only if the
2199 value of errno is 0 or ENOENT (which happens if /etc/hosts.{allow,deny} does
2200 not exist). */
2201
2202 #ifdef USE_TCP_WRAPPERS
2203 errno = 0;
2204 tcp_wrappers_name = expand_string(tcp_wrappers_daemon_name);
2205 if (tcp_wrappers_name == NULL)
2206 {
2207 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" "
2208 "(tcp_wrappers_name) failed: %s", string_printing(tcp_wrappers_name),
2209 expand_string_message);
2210 }
2211 if (!hosts_ctl(tcp_wrappers_name,
2212 (sender_host_name == NULL)? STRING_UNKNOWN : CS sender_host_name,
2213 (sender_host_address == NULL)? STRING_UNKNOWN : CS sender_host_address,
2214 (sender_ident == NULL)? STRING_UNKNOWN : CS sender_ident))
2215 {
2216 if (errno == 0 || errno == ENOENT)
2217 {
2218 HDEBUG(D_receive) debug_printf("tcp wrappers rejection\n");
2219 log_write(L_connection_reject,
2220 LOG_MAIN|LOG_REJECT, "refused connection from %s "
2221 "(tcp wrappers)", host_and_ident(FALSE));
2222 smtp_printf("554 SMTP service not available\r\n");
2223 }
2224 else
2225 {
2226 int save_errno = errno;
2227 HDEBUG(D_receive) debug_printf("tcp wrappers rejected with unexpected "
2228 "errno value %d\n", save_errno);
2229 log_write(L_connection_reject,
2230 LOG_MAIN|LOG_REJECT, "temporarily refused connection from %s "
2231 "(tcp wrappers errno=%d)", host_and_ident(FALSE), save_errno);
2232 smtp_printf("451 Temporary local problem - please try later\r\n");
2233 }
2234 return FALSE;
2235 }
2236 #endif
2237
2238 /* Check for reserved slots. The value of smtp_accept_count has already been
2239 incremented to include this process. */
2240
2241 if (smtp_accept_max > 0 &&
2242 smtp_accept_count > smtp_accept_max - smtp_accept_reserve)
2243 {
2244 if ((rc = verify_check_host(&smtp_reserve_hosts)) != OK)
2245 {
2246 log_write(L_connection_reject,
2247 LOG_MAIN, "temporarily refused connection from %s: not in "
2248 "reserve list: connected=%d max=%d reserve=%d%s",
2249 host_and_ident(FALSE), smtp_accept_count - 1, smtp_accept_max,
2250 smtp_accept_reserve, (rc == DEFER)? " (lookup deferred)" : "");
2251 smtp_printf("421 %s: Too many concurrent SMTP connections; "
2252 "please try again later\r\n", smtp_active_hostname);
2253 return FALSE;
2254 }
2255 reserved_host = TRUE;
2256 }
2257
2258 /* If a load level above which only messages from reserved hosts are
2259 accepted is set, check the load. For incoming calls via the daemon, the
2260 check is done in the superior process if there are no reserved hosts, to
2261 save a fork. In all cases, the load average will already be available
2262 in a global variable at this point. */
2263
2264 if (smtp_load_reserve >= 0 &&
2265 load_average > smtp_load_reserve &&
2266 !reserved_host &&
2267 verify_check_host(&smtp_reserve_hosts) != OK)
2268 {
2269 log_write(L_connection_reject,
2270 LOG_MAIN, "temporarily refused connection from %s: not in "
2271 "reserve list and load average = %.2f", host_and_ident(FALSE),
2272 (double)load_average/1000.0);
2273 smtp_printf("421 %s: Too much load; please try again later\r\n",
2274 smtp_active_hostname);
2275 return FALSE;
2276 }
2277
2278 /* Determine whether unqualified senders or recipients are permitted
2279 for this host. Unfortunately, we have to do this every time, in order to
2280 set the flags so that they can be inspected when considering qualifying
2281 addresses in the headers. For a site that permits no qualification, this
2282 won't take long, however. */
2283
2284 allow_unqualified_sender =
2285 verify_check_host(&sender_unqualified_hosts) == OK;
2286
2287 allow_unqualified_recipient =
2288 verify_check_host(&recipient_unqualified_hosts) == OK;
2289
2290 /* Determine whether HELO/EHLO is required for this host. The requirement
2291 can be hard or soft. */
2292
2293 helo_required = verify_check_host(&helo_verify_hosts) == OK;
2294 if (!helo_required)
2295 helo_verify = verify_check_host(&helo_try_verify_hosts) == OK;
2296
2297 /* Determine whether this hosts is permitted to send syntactic junk
2298 after a HELO or EHLO command. */
2299
2300 helo_accept_junk = verify_check_host(&helo_accept_junk_hosts) == OK;
2301 }
2302
2303 /* For batch SMTP input we are now done. */
2304
2305 if (smtp_batched_input) return TRUE;
2306
2307 #ifdef EXPERIMENTAL_PROXY
2308 /* If valid Proxy Protocol source is connecting, set up session.
2309 * Failure will not allow any SMTP function other than QUIT. */
2310 proxy_session = FALSE;
2311 proxy_session_failed = FALSE;
2312 if (check_proxy_protocol_host())
2313 {
2314 if (setup_proxy_protocol_host() == FALSE)
2315 {
2316 proxy_session_failed = TRUE;
2317 DEBUG(D_receive)
2318 debug_printf("Failure to extract proxied host, only QUIT allowed\n");
2319 }
2320 else
2321 {
2322 sender_host_name = NULL;
2323 (void)host_name_lookup();
2324 host_build_sender_fullhost();
2325 }
2326 }
2327 #endif
2328
2329 /* Run the ACL if it exists */
2330
2331 user_msg = NULL;
2332 if (acl_smtp_connect != NULL)
2333 {
2334 int rc;
2335 rc = acl_check(ACL_WHERE_CONNECT, NULL, acl_smtp_connect, &user_msg,
2336 &log_msg);
2337 if (rc != OK)
2338 {
2339 (void)smtp_handle_acl_fail(ACL_WHERE_CONNECT, rc, user_msg, log_msg);
2340 return FALSE;
2341 }
2342 }
2343
2344 /* Output the initial message for a two-way SMTP connection. It may contain
2345 newlines, which then cause a multi-line response to be given. */
2346
2347 code = US"220"; /* Default status code */
2348 esc = US""; /* Default extended status code */
2349 esclen = 0; /* Length of esc */
2350
2351 if (user_msg == NULL)
2352 {
2353 s = expand_string(smtp_banner);
2354 if (s == NULL)
2355 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Expansion of \"%s\" (smtp_banner) "
2356 "failed: %s", smtp_banner, expand_string_message);
2357 }
2358 else
2359 {
2360 int codelen = 3;
2361 s = user_msg;
2362 smtp_message_code(&code, &codelen, &s, NULL);
2363 if (codelen > 4)
2364 {
2365 esc = code + 4;
2366 esclen = codelen - 4;
2367 }
2368 }
2369
2370 /* Remove any terminating newlines; might as well remove trailing space too */
2371
2372 p = s + Ustrlen(s);
2373 while (p > s && isspace(p[-1])) p--;
2374 *p = 0;
2375
2376 /* It seems that CC:Mail is braindead, and assumes that the greeting message
2377 is all contained in a single IP packet. The original code wrote out the
2378 greeting using several calls to fprint/fputc, and on busy servers this could
2379 cause it to be split over more than one packet - which caused CC:Mail to fall
2380 over when it got the second part of the greeting after sending its first
2381 command. Sigh. To try to avoid this, build the complete greeting message
2382 first, and output it in one fell swoop. This gives a better chance of it
2383 ending up as a single packet. */
2384
2385 ss = store_get(size);
2386 ptr = 0;
2387
2388 p = s;
2389 do /* At least once, in case we have an empty string */
2390 {
2391 int len;
2392 uschar *linebreak = Ustrchr(p, '\n');
2393 ss = string_cat(ss, &size, &ptr, code, 3);
2394 if (linebreak == NULL)
2395 {
2396 len = Ustrlen(p);
2397 ss = string_cat(ss, &size, &ptr, US" ", 1);
2398 }
2399 else
2400 {
2401 len = linebreak - p;
2402 ss = string_cat(ss, &size, &ptr, US"-", 1);
2403 }
2404 ss = string_cat(ss, &size, &ptr, esc, esclen);
2405 ss = string_cat(ss, &size, &ptr, p, len);
2406 ss = string_cat(ss, &size, &ptr, US"\r\n", 2);
2407 p += len;
2408 if (linebreak != NULL) p++;
2409 }
2410 while (*p != 0);
2411
2412 ss[ptr] = 0; /* string_cat leaves room for this */
2413
2414 /* Before we write the banner, check that there is no input pending, unless
2415 this synchronisation check is disabled. */
2416
2417 if (!check_sync())
2418 {
2419 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol "
2420 "synchronization error (input sent without waiting for greeting): "
2421 "rejected connection from %s input=\"%s\"", host_and_ident(TRUE),
2422 string_printing(smtp_inptr));
2423 smtp_printf("554 SMTP synchronization error\r\n");
2424 return FALSE;
2425 }
2426
2427 /* Now output the banner */
2428
2429 smtp_printf("%s", ss);
2430 return TRUE;
2431 }
2432
2433
2434
2435
2436
2437 /*************************************************
2438 * Handle SMTP syntax and protocol errors *
2439 *************************************************/
2440
2441 /* Write to the log for SMTP syntax errors in incoming commands, if configured
2442 to do so. Then transmit the error response. The return value depends on the
2443 number of syntax and protocol errors in this SMTP session.
2444
2445 Arguments:
2446 type error type, given as a log flag bit
2447 code response code; <= 0 means don't send a response
2448 data data to reflect in the response (can be NULL)
2449 errmess the error message
2450
2451 Returns: -1 limit of syntax/protocol errors NOT exceeded
2452 +1 limit of syntax/protocol errors IS exceeded
2453
2454 These values fit in with the values of the "done" variable in the main
2455 processing loop in smtp_setup_msg(). */
2456
2457 static int
2458 synprot_error(int type, int code, uschar *data, uschar *errmess)
2459 {
2460 int yield = -1;
2461
2462 log_write(type, LOG_MAIN, "SMTP %s error in \"%s\" %s %s",
2463 (type == L_smtp_syntax_error)? "syntax" : "protocol",
2464 string_printing(smtp_cmd_buffer), host_and_ident(TRUE), errmess);
2465
2466 if (++synprot_error_count > smtp_max_synprot_errors)
2467 {
2468 yield = 1;
2469 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
2470 "syntax or protocol errors (last command was \"%s\")",
2471 host_and_ident(FALSE), string_printing(smtp_cmd_buffer));
2472 }
2473
2474 if (code > 0)
2475 {
2476 smtp_printf("%d%c%s%s%s\r\n", code, (yield == 1)? '-' : ' ',
2477 (data == NULL)? US"" : data, (data == NULL)? US"" : US": ", errmess);
2478 if (yield == 1)
2479 smtp_printf("%d Too many syntax or protocol errors\r\n", code);
2480 }
2481
2482 return yield;
2483 }
2484
2485
2486
2487
2488 /*************************************************
2489 * Log incomplete transactions *
2490 *************************************************/
2491
2492 /* This function is called after a transaction has been aborted by RSET, QUIT,
2493 connection drops or other errors. It logs the envelope information received
2494 so far in order to preserve address verification attempts.
2495
2496 Argument: string to indicate what aborted the transaction
2497 Returns: nothing
2498 */
2499
2500 static void
2501 incomplete_transaction_log(uschar *what)
2502 {
2503 if (sender_address == NULL || /* No transaction in progress */
2504 (log_write_selector & L_smtp_incomplete_transaction) == 0 /* Not logging */
2505 ) return;
2506
2507 /* Build list of recipients for logging */
2508
2509 if (recipients_count > 0)
2510 {
2511 int i;
2512 raw_recipients = store_get(recipients_count * sizeof(uschar *));
2513 for (i = 0; i < recipients_count; i++)
2514 raw_recipients[i] = recipients_list[i].address;
2515 raw_recipients_count = recipients_count;
2516 }
2517
2518 log_write(L_smtp_incomplete_transaction, LOG_MAIN|LOG_SENDER|LOG_RECIPIENTS,
2519 "%s incomplete transaction (%s)", host_and_ident(TRUE), what);
2520 }
2521
2522
2523
2524
2525 /*************************************************
2526 * Send SMTP response, possibly multiline *
2527 *************************************************/
2528
2529 /* There are, it seems, broken clients out there that cannot handle multiline
2530 responses. If no_multiline_responses is TRUE (it can be set from an ACL), we
2531 output nothing for non-final calls, and only the first line for anything else.
2532
2533 Arguments:
2534 code SMTP code, may involve extended status codes
2535 codelen length of smtp code; if > 4 there's an ESC
2536 final FALSE if the last line isn't the final line
2537 msg message text, possibly containing newlines
2538
2539 Returns: nothing
2540 */
2541
2542 void
2543 smtp_respond(uschar* code, int codelen, BOOL final, uschar *msg)
2544 {
2545 int esclen = 0;
2546 uschar *esc = US"";
2547
2548 if (!final && no_multiline_responses) return;
2549
2550 if (codelen > 4)
2551 {
2552 esc = code + 4;
2553 esclen = codelen - 4;
2554 }
2555
2556 /* If this is the first output for a (non-batch) RCPT command, see if all RCPTs
2557 have had the same. Note: this code is also present in smtp_printf(). It would
2558 be tidier to have it only in one place, but when it was added, it was easier to
2559 do it that way, so as not to have to mess with the code for the RCPT command,
2560 which sometimes uses smtp_printf() and sometimes smtp_respond(). */
2561
2562 if (rcpt_in_progress)
2563 {
2564 if (rcpt_smtp_response == NULL)
2565 rcpt_smtp_response = string_copy(msg);
2566 else if (rcpt_smtp_response_same &&
2567 Ustrcmp(rcpt_smtp_response, msg) != 0)
2568 rcpt_smtp_response_same = FALSE;
2569 rcpt_in_progress = FALSE;
2570 }
2571
2572 /* Not output the message, splitting it up into multiple lines if necessary. */
2573
2574 for (;;)
2575 {
2576 uschar *nl = Ustrchr(msg, '\n');
2577 if (nl == NULL)
2578 {
2579 smtp_printf("%.3s%c%.*s%s\r\n", code, final? ' ':'-', esclen, esc, msg);
2580 return;
2581 }
2582 else if (nl[1] == 0 || no_multiline_responses)
2583 {
2584 smtp_printf("%.3s%c%.*s%.*s\r\n", code, final? ' ':'-', esclen, esc,
2585 (int)(nl - msg), msg);
2586 return;
2587 }
2588 else
2589 {
2590 smtp_printf("%.3s-%.*s%.*s\r\n", code, esclen, esc, (int)(nl - msg), msg);
2591 msg = nl + 1;
2592 while (isspace(*msg)) msg++;
2593 }
2594 }
2595 }
2596
2597
2598
2599
2600 /*************************************************
2601 * Parse user SMTP message *
2602 *************************************************/
2603
2604 /* This function allows for user messages overriding the response code details
2605 by providing a suitable response code string at the start of the message
2606 user_msg. Check the message for starting with a response code and optionally an
2607 extended status code. If found, check that the first digit is valid, and if so,
2608 change the code pointer and length to use the replacement. An invalid code
2609 causes a panic log; in this case, if the log messages is the same as the user
2610 message, we must also adjust the value of the log message to show the code that
2611 is actually going to be used (the original one).
2612
2613 This function is global because it is called from receive.c as well as within
2614 this module.
2615
2616 Note that the code length returned includes the terminating whitespace
2617 character, which is always included in the regex match.
2618
2619 Arguments:
2620 code SMTP code, may involve extended status codes
2621 codelen length of smtp code; if > 4 there's an ESC
2622 msg message text
2623 log_msg optional log message, to be adjusted with the new SMTP code
2624
2625 Returns: nothing
2626 */
2627
2628 void
2629 smtp_message_code(uschar **code, int *codelen, uschar **msg, uschar **log_msg)
2630 {
2631 int n;
2632 int ovector[3];
2633
2634 if (msg == NULL || *msg == NULL) return;
2635
2636 n = pcre_exec(regex_smtp_code, NULL, CS *msg, Ustrlen(*msg), 0,
2637 PCRE_EOPT, ovector, sizeof(ovector)/sizeof(int));
2638 if (n < 0) return;
2639
2640 if ((*msg)[0] != (*code)[0])
2641 {
2642 log_write(0, LOG_MAIN|LOG_PANIC, "configured error code starts with "
2643 "incorrect digit (expected %c) in \"%s\"", (*code)[0], *msg);
2644 if (log_msg != NULL && *log_msg == *msg)
2645 *log_msg = string_sprintf("%s %s", *code, *log_msg + ovector[1]);
2646 }
2647 else
2648 {
2649 *code = *msg;
2650 *codelen = ovector[1]; /* Includes final space */
2651 }
2652 *msg += ovector[1]; /* Chop the code off the message */
2653 return;
2654 }
2655
2656
2657
2658
2659 /*************************************************
2660 * Handle an ACL failure *
2661 *************************************************/
2662
2663 /* This function is called when acl_check() fails. As well as calls from within
2664 this module, it is called from receive.c for an ACL after DATA. It sorts out
2665 logging the incident, and sets up the error response. A message containing
2666 newlines is turned into a multiline SMTP response, but for logging, only the
2667 first line is used.
2668
2669 There's a table of default permanent failure response codes to use in
2670 globals.c, along with the table of names. VFRY is special. Despite RFC1123 it
2671 defaults disabled in Exim. However, discussion in connection with RFC 821bis
2672 (aka RFC 2821) has concluded that the response should be 252 in the disabled
2673 state, because there are broken clients that try VRFY before RCPT. A 5xx
2674 response should be given only when the address is positively known to be
2675 undeliverable. Sigh. Also, for ETRN, 458 is given on refusal, and for AUTH,
2676 503.
2677
2678 From Exim 4.63, it is possible to override the response code details by
2679 providing a suitable response code string at the start of the message provided
2680 in user_msg. The code's first digit is checked for validity.
2681
2682 Arguments:
2683 where where the ACL was called from
2684 rc the failure code
2685 user_msg a message that can be included in an SMTP response
2686 log_msg a message for logging
2687
2688 Returns: 0 in most cases
2689 2 if the failure code was FAIL_DROP, in which case the
2690 SMTP connection should be dropped (this value fits with the
2691 "done" variable in smtp_setup_msg() below)
2692 */
2693
2694 int
2695 smtp_handle_acl_fail(int where, int rc, uschar *user_msg, uschar *log_msg)
2696 {
2697 BOOL drop = rc == FAIL_DROP;
2698 int codelen = 3;
2699 uschar *smtp_code;
2700 uschar *lognl;
2701 uschar *sender_info = US"";
2702 uschar *what =
2703 #ifdef WITH_CONTENT_SCAN
2704 (where == ACL_WHERE_MIME)? US"during MIME ACL checks" :
2705 #endif
2706 (where == ACL_WHERE_PREDATA)? US"DATA" :
2707 (where == ACL_WHERE_DATA)? US"after DATA" :
2708 #ifndef DISABLE_PRDR
2709 (where == ACL_WHERE_PRDR)? US"after DATA PRDR" :
2710 #endif
2711 (smtp_cmd_data == NULL)?
2712 string_sprintf("%s in \"connect\" ACL", acl_wherenames[where]) :
2713 string_sprintf("%s %s", acl_wherenames[where], smtp_cmd_data);
2714
2715 if (drop) rc = FAIL;
2716
2717 /* Set the default SMTP code, and allow a user message to change it. */
2718
2719 smtp_code = (rc != FAIL)? US"451" : acl_wherecodes[where];
2720 smtp_message_code(&smtp_code, &codelen, &user_msg, &log_msg);
2721
2722 /* We used to have sender_address here; however, there was a bug that was not
2723 updating sender_address after a rewrite during a verify. When this bug was
2724 fixed, sender_address at this point became the rewritten address. I'm not sure
2725 this is what should be logged, so I've changed to logging the unrewritten
2726 address to retain backward compatibility. */
2727
2728 #ifndef WITH_CONTENT_SCAN
2729 if (where == ACL_WHERE_RCPT || where == ACL_WHERE_DATA)
2730 #else
2731 if (where == ACL_WHERE_RCPT || where == ACL_WHERE_DATA || where == ACL_WHERE_MIME)
2732 #endif
2733 {
2734 sender_info = string_sprintf("F=<%s>%s%s%s%s ",
2735 sender_address_unrewritten ? sender_address_unrewritten : sender_address,
2736 sender_host_authenticated ? US" A=" : US"",
2737 sender_host_authenticated ? sender_host_authenticated : US"",
2738 sender_host_authenticated && authenticated_id ? US":" : US"",
2739 sender_host_authenticated && authenticated_id ? authenticated_id : US""
2740 );
2741 }
2742
2743 /* If there's been a sender verification failure with a specific message, and
2744 we have not sent a response about it yet, do so now, as a preliminary line for
2745 failures, but not defers. However, always log it for defer, and log it for fail
2746 unless the sender_verify_fail log selector has been turned off. */
2747
2748 if (sender_verified_failed != NULL &&
2749 !testflag(sender_verified_failed, af_sverify_told))
2750 {
2751 BOOL save_rcpt_in_progress = rcpt_in_progress;
2752 rcpt_in_progress = FALSE; /* So as not to treat these as the error */
2753
2754 setflag(sender_verified_failed, af_sverify_told);
2755
2756 if (rc != FAIL || (log_extra_selector & LX_sender_verify_fail) != 0)
2757 log_write(0, LOG_MAIN|LOG_REJECT, "%s sender verify %s for <%s>%s",
2758 host_and_ident(TRUE),
2759 ((sender_verified_failed->special_action & 255) == DEFER)? "defer":"fail",
2760 sender_verified_failed->address,
2761 (sender_verified_failed->message == NULL)? US"" :
2762 string_sprintf(": %s", sender_verified_failed->message));
2763
2764 if (rc == FAIL && sender_verified_failed->user_message != NULL)
2765 smtp_respond(smtp_code, codelen, FALSE, string_sprintf(
2766 testflag(sender_verified_failed, af_verify_pmfail)?
2767 "Postmaster verification failed while checking <%s>\n%s\n"
2768 "Several RFCs state that you are required to have a postmaster\n"
2769 "mailbox for each mail domain. This host does not accept mail\n"
2770 "from domains whose servers reject the postmaster address."
2771 :
2772 testflag(sender_verified_failed, af_verify_nsfail)?
2773 "Callback setup failed while verifying <%s>\n%s\n"
2774 "The initial connection, or a HELO or MAIL FROM:<> command was\n"
2775 "rejected. Refusing MAIL FROM:<> does not help fight spam, disregards\n"
2776 "RFC requirements, and stops you from receiving standard bounce\n"
2777 "messages. This host does not accept mail from domains whose servers\n"
2778 "refuse bounces."
2779 :
2780 "Verification failed for <%s>\n%s",
2781 sender_verified_failed->address,
2782 sender_verified_failed->user_message));
2783
2784 rcpt_in_progress = save_rcpt_in_progress;
2785 }
2786
2787 /* Sort out text for logging */
2788
2789 log_msg = (log_msg == NULL)? US"" : string_sprintf(": %s", log_msg);
2790 lognl = Ustrchr(log_msg, '\n');
2791 if (lognl != NULL) *lognl = 0;
2792
2793 /* Send permanent failure response to the command, but the code used isn't
2794 always a 5xx one - see comments at the start of this function. If the original
2795 rc was FAIL_DROP we drop the connection and yield 2. */
2796
2797 if (rc == FAIL) smtp_respond(smtp_code, codelen, TRUE, (user_msg == NULL)?
2798 US"Administrative prohibition" : user_msg);
2799
2800 /* Send temporary failure response to the command. Don't give any details,
2801 unless acl_temp_details is set. This is TRUE for a callout defer, a "defer"
2802 verb, and for a header verify when smtp_return_error_details is set.
2803
2804 This conditional logic is all somewhat of a mess because of the odd
2805 interactions between temp_details and return_error_details. One day it should
2806 be re-implemented in a tidier fashion. */
2807
2808 else
2809 {
2810 if (acl_temp_details && user_msg != NULL)
2811 {
2812 if (smtp_return_error_details &&
2813 sender_verified_failed != NULL &&
2814 sender_verified_failed->message != NULL)
2815 {
2816 smtp_respond(smtp_code, codelen, FALSE, sender_verified_failed->message);
2817 }
2818 smtp_respond(smtp_code, codelen, TRUE, user_msg);
2819 }
2820 else
2821 smtp_respond(smtp_code, codelen, TRUE,
2822 US"Temporary local problem - please try later");
2823 }
2824
2825 /* Log the incident to the logs that are specified by log_reject_target
2826 (default main, reject). This can be empty to suppress logging of rejections. If
2827 the connection is not forcibly to be dropped, return 0. Otherwise, log why it
2828 is closing if required and return 2. */
2829
2830 if (log_reject_target != 0)
2831 {
2832 #ifdef SUPPORT_TLS
2833 uschar * s = s_tlslog(NULL, NULL, NULL);
2834 if (!s) s = US"";
2835 #else
2836 uschar * s = US"";
2837 #endif
2838 log_write(0, log_reject_target, "%s%s %s%srejected %s%s",
2839 host_and_ident(TRUE), s,
2840 sender_info, (rc == FAIL)? US"" : US"temporarily ", what, log_msg);
2841 }
2842
2843 if (!drop) return 0;
2844
2845 log_write(L_smtp_connection, LOG_MAIN, "%s closed by DROP in ACL",
2846 smtp_get_connection_info());
2847
2848 /* Run the not-quit ACL, but without any custom messages. This should not be a
2849 problem, because we get here only if some other ACL has issued "drop", and
2850 in that case, *its* custom messages will have been used above. */
2851
2852 smtp_notquit_exit(US"acl-drop", NULL, NULL);
2853 return 2;
2854 }
2855
2856
2857
2858
2859 /*************************************************
2860 * Handle SMTP exit when QUIT is not given *
2861 *************************************************/
2862
2863 /* This function provides a logging/statistics hook for when an SMTP connection
2864 is dropped on the floor or the other end goes away. It's a global function
2865 because it's called from receive.c as well as this module. As well as running
2866 the NOTQUIT ACL, if there is one, this function also outputs a final SMTP
2867 response, either with a custom message from the ACL, or using a default. There
2868 is one case, however, when no message is output - after "drop". In that case,
2869 the ACL that obeyed "drop" has already supplied the custom message, and NULL is
2870 passed to this function.
2871
2872 In case things go wrong while processing this function, causing an error that
2873 may re-enter this funtion, there is a recursion check.
2874
2875 Arguments:
2876 reason What $smtp_notquit_reason will be set to in the ACL;
2877 if NULL, the ACL is not run
2878 code The error code to return as part of the response
2879 defaultrespond The default message if there's no user_msg
2880
2881 Returns: Nothing
2882 */
2883
2884 void
2885 smtp_notquit_exit(uschar *reason, uschar *code, uschar *defaultrespond, ...)
2886 {
2887 int rc;
2888 uschar *user_msg = NULL;
2889 uschar *log_msg = NULL;
2890
2891 /* Check for recursive acll */
2892
2893 if (smtp_exit_function_called)
2894 {
2895 log_write(0, LOG_PANIC, "smtp_notquit_exit() called more than once (%s)",
2896 reason);
2897 return;
2898 }
2899 smtp_exit_function_called = TRUE;
2900
2901 /* Call the not-QUIT ACL, if there is one, unless no reason is given. */
2902
2903 if (acl_smtp_notquit != NULL && reason != NULL)
2904 {
2905 smtp_notquit_reason = reason;
2906 rc = acl_check(ACL_WHERE_NOTQUIT, NULL, acl_smtp_notquit, &user_msg,
2907 &log_msg);
2908 if (rc == ERROR)
2909 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for not-QUIT returned ERROR: %s",
2910 log_msg);
2911 }
2912
2913 /* Write an SMTP response if we are expected to give one. As the default
2914 responses are all internal, they should always fit in the buffer, but code a
2915 warning, just in case. Note that string_vformat() still leaves a complete
2916 string, even if it is incomplete. */
2917
2918 if (code != NULL && defaultrespond != NULL)
2919 {
2920 if (user_msg == NULL)
2921 {
2922 uschar buffer[128];
2923 va_list ap;
2924 va_start(ap, defaultrespond);
2925 if (!string_vformat(buffer, sizeof(buffer), CS defaultrespond, ap))
2926 log_write(0, LOG_MAIN|LOG_PANIC, "string too large in smtp_notquit_exit()");
2927 smtp_printf("%s %s\r\n", code, buffer);
2928 va_end(ap);
2929 }
2930 else
2931 smtp_respond(code, 3, TRUE, user_msg);
2932 mac_smtp_fflush();
2933 }
2934 }
2935
2936
2937
2938
2939 /*************************************************
2940 * Verify HELO argument *
2941 *************************************************/
2942
2943 /* This function is called if helo_verify_hosts or helo_try_verify_hosts is
2944 matched. It is also called from ACL processing if verify = helo is used and
2945 verification was not previously tried (i.e. helo_try_verify_hosts was not
2946 matched). The result of its processing is to set helo_verified and
2947 helo_verify_failed. These variables should both be FALSE for this function to
2948 be called.
2949
2950 Note that EHLO/HELO is legitimately allowed to quote an address literal. Allow
2951 for IPv6 ::ffff: literals.
2952
2953 Argument: none
2954 Returns: TRUE if testing was completed;
2955 FALSE on a temporary failure
2956 */
2957
2958 BOOL
2959 smtp_verify_helo(void)
2960 {
2961 BOOL yield = TRUE;
2962
2963 HDEBUG(D_receive) debug_printf("verifying EHLO/HELO argument \"%s\"\n",
2964 sender_helo_name);
2965
2966 if (sender_helo_name == NULL)
2967 {
2968 HDEBUG(D_receive) debug_printf("no EHLO/HELO command was issued\n");
2969 }
2970
2971 /* Deal with the case of -bs without an IP address */
2972
2973 else if (sender_host_address == NULL)
2974 {
2975 HDEBUG(D_receive) debug_printf("no client IP address: assume success\n");
2976 helo_verified = TRUE;
2977 }
2978
2979 /* Deal with the more common case when there is a sending IP address */
2980
2981 else if (sender_helo_name[0] == '[')
2982 {
2983 helo_verified = Ustrncmp(sender_helo_name+1, sender_host_address,
2984 Ustrlen(sender_host_address)) == 0;
2985
2986 #if HAVE_IPV6
2987 if (!helo_verified)
2988 {
2989 if (strncmpic(sender_host_address, US"::ffff:", 7) == 0)
2990 helo_verified = Ustrncmp(sender_helo_name + 1,
2991 sender_host_address + 7, Ustrlen(sender_host_address) - 7) == 0;
2992 }
2993 #endif
2994
2995 HDEBUG(D_receive)
2996 { if (helo_verified) debug_printf("matched host address\n"); }
2997 }
2998
2999 /* Do a reverse lookup if one hasn't already given a positive or negative
3000 response. If that fails, or the name doesn't match, try checking with a forward
3001 lookup. */
3002
3003 else
3004 {
3005 if (sender_host_name == NULL && !host_lookup_failed)
3006 yield = host_name_lookup() != DEFER;
3007
3008 /* If a host name is known, check it and all its aliases. */
3009
3010 if (sender_host_name)
3011 if ((helo_verified = strcmpic(sender_host_name, sender_helo_name) == 0))
3012 {
3013 sender_helo_dnssec = sender_host_dnssec;
3014 HDEBUG(D_receive) debug_printf("matched host name\n");
3015 }
3016 else
3017 {
3018 uschar **aliases = sender_host_aliases;
3019 while (*aliases)
3020 if ((helo_verified = strcmpic(*aliases++, sender_helo_name) == 0))
3021 {
3022 sender_helo_dnssec = sender_host_dnssec;
3023 break;
3024 }
3025
3026 HDEBUG(D_receive) if (helo_verified)
3027 debug_printf("matched alias %s\n", *(--aliases));
3028 }
3029
3030 /* Final attempt: try a forward lookup of the helo name */
3031
3032 if (!helo_verified)
3033 {
3034 int rc;
3035 host_item h;
3036 dnssec_domains d;
3037 host_item *hh;
3038
3039 h.name = sender_helo_name;
3040 h.address = NULL;
3041 h.mx = MX_NONE;
3042 h.next = NULL;
3043 d.request = US"*";
3044 d.require = US"";
3045
3046 HDEBUG(D_receive) debug_printf("getting IP address for %s\n",
3047 sender_helo_name);
3048 rc = host_find_bydns(&h, NULL, HOST_FIND_BY_A,
3049 NULL, NULL, NULL, &d, NULL, NULL);
3050 if (rc == HOST_FOUND || rc == HOST_FOUND_LOCAL)
3051 for (hh = &h; hh; hh = hh->next)
3052 if (Ustrcmp(hh->address, sender_host_address) == 0)
3053 {
3054 helo_verified = TRUE;
3055 if (h.dnssec == DS_YES) sender_helo_dnssec = TRUE;
3056 HDEBUG(D_receive)
3057 {
3058 debug_printf("IP address for %s matches calling address\n"
3059 "Forward DNS security status: %sverified\n",
3060 sender_helo_name, sender_helo_dnssec ? "" : "un");
3061 }
3062 break;
3063 }
3064 }
3065 }
3066
3067 if (!helo_verified) helo_verify_failed = TRUE; /* We've tried ... */
3068 return yield;
3069 }
3070
3071
3072
3073
3074 /*************************************************
3075 * Send user response message *
3076 *************************************************/
3077
3078 /* This function is passed a default response code and a user message. It calls
3079 smtp_message_code() to check and possibly modify the response code, and then
3080 calls smtp_respond() to transmit the response. I put this into a function
3081 just to avoid a lot of repetition.
3082
3083 Arguments:
3084 code the response code
3085 user_msg the user message
3086
3087 Returns: nothing
3088 */
3089
3090 static void
3091 smtp_user_msg(uschar *code, uschar *user_msg)
3092 {
3093 int len = 3;
3094 smtp_message_code(&code, &len, &user_msg, NULL);
3095 smtp_respond(code, len, TRUE, user_msg);
3096 }
3097
3098
3099
3100 static int
3101 smtp_in_auth(auth_instance *au, uschar ** s, uschar ** ss)
3102 {
3103 const uschar *set_id = NULL;
3104 int rc, i;
3105
3106 /* Run the checking code, passing the remainder of the command line as
3107 data. Initials the $auth<n> variables as empty. Initialize $0 empty and set
3108 it as the only set numerical variable. The authenticator may set $auth<n>
3109 and also set other numeric variables. The $auth<n> variables are preferred
3110 nowadays; the numerical variables remain for backwards compatibility.
3111
3112 Afterwards, have a go at expanding the set_id string, even if
3113 authentication failed - for bad passwords it can be useful to log the
3114 userid. On success, require set_id to expand and exist, and put it in
3115 authenticated_id. Save this in permanent store, as the working store gets
3116 reset at HELO, RSET, etc. */
3117
3118 for (i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
3119 expand_nmax = 0;
3120 expand_nlength[0] = 0; /* $0 contains nothing */
3121
3122 rc = (au->info->servercode)(au, smtp_cmd_data);
3123 if (au->set_id) set_id = expand_string(au->set_id);
3124 expand_nmax = -1; /* Reset numeric variables */
3125 for (i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL; /* Reset $auth<n> */
3126
3127 /* The value of authenticated_id is stored in the spool file and printed in
3128 log lines. It must not contain binary zeros or newline characters. In
3129 normal use, it never will, but when playing around or testing, this error
3130 can (did) happen. To guard against this, ensure that the id contains only
3131 printing characters. */
3132
3133 if (set_id) set_id = string_printing(set_id);
3134
3135 /* For the non-OK cases, set up additional logging data if set_id
3136 is not empty. */
3137
3138 if (rc != OK)
3139 set_id = set_id && *set_id
3140 ? string_sprintf(" (set_id=%s)", set_id) : US"";
3141
3142 /* Switch on the result */
3143
3144 switch(rc)
3145 {
3146 case OK:
3147 if (!au->set_id || set_id) /* Complete success */
3148 {
3149 if (set_id) authenticated_id = string_copy_malloc(set_id);
3150 sender_host_authenticated = au->name;
3151 authentication_failed = FALSE;
3152 authenticated_fail_id = NULL; /* Impossible to already be set? */
3153
3154 received_protocol =
3155 (sender_host_address ? protocols : protocols_local)
3156 [pextend + pauthed + (tls_in.active >= 0 ? pcrpted:0)];
3157 *s = *ss = US"235 Authentication succeeded";
3158 authenticated_by = au;
3159 break;
3160 }
3161
3162 /* Authentication succeeded, but we failed to expand the set_id string.
3163 Treat this as a temporary error. */
3164
3165 auth_defer_msg = expand_string_message;
3166 /* Fall through */
3167
3168 case DEFER:
3169 if (set_id) authenticated_fail_id = string_copy_malloc(set_id);
3170 *s = string_sprintf("435 Unable to authenticate at present%s",
3171 auth_defer_user_msg);
3172 *ss = string_sprintf("435 Unable to authenticate at present%s: %s",
3173 set_id, auth_defer_msg);
3174 break;
3175
3176 case BAD64:
3177 *s = *ss = US"501 Invalid base64 data";
3178 break;
3179
3180 case CANCELLED:
3181 *s = *ss = US"501 Authentication cancelled";
3182 break;
3183
3184 case UNEXPECTED:
3185 *s = *ss = US"553 Initial data not expected";
3186 break;
3187
3188 case FAIL:
3189 if (set_id) authenticated_fail_id = string_copy_malloc(set_id);
3190 *s = US"535 Incorrect authentication data";
3191 *ss = string_sprintf("535 Incorrect authentication data%s", set_id);
3192 break;
3193
3194 default:
3195 if (set_id) authenticated_fail_id = string_copy_malloc(set_id);
3196 *s = US"435 Internal error";
3197 *ss = string_sprintf("435 Internal error%s: return %d from authentication "
3198 "check", set_id, rc);
3199 break;
3200 }
3201
3202 return rc;
3203 }
3204
3205
3206
3207 /*************************************************
3208 * Initialize for SMTP incoming message *
3209 *************************************************/
3210
3211 /* This function conducts the initial dialogue at the start of an incoming SMTP
3212 message, and builds a list of recipients. However, if the incoming message
3213 is part of a batch (-bS option) a separate function is called since it would
3214 be messy having tests splattered about all over this function. This function
3215 therefore handles the case where interaction is occurring. The input and output
3216 files are set up in smtp_in and smtp_out.
3217
3218 The global recipients_list is set to point to a vector of recipient_item
3219 blocks, whose number is given by recipients_count. This is extended by the
3220 receive_add_recipient() function. The global variable sender_address is set to
3221 the sender's address. The yield is +1 if a message has been successfully
3222 started, 0 if a QUIT command was encountered or the connection was refused from
3223 the particular host, or -1 if the connection was lost.
3224
3225 Argument: none
3226
3227 Returns: > 0 message successfully started (reached DATA)
3228 = 0 QUIT read or end of file reached or call refused
3229 < 0 lost connection
3230 */
3231
3232 int
3233 smtp_setup_msg(void)
3234 {
3235 int done = 0;
3236 BOOL toomany = FALSE;
3237 BOOL discarded = FALSE;
3238 BOOL last_was_rej_mail = FALSE;
3239 BOOL last_was_rcpt = FALSE;
3240 void *reset_point = store_get(0);
3241
3242 DEBUG(D_receive) debug_printf("smtp_setup_msg entered\n");
3243
3244 /* Reset for start of new message. We allow one RSET not to be counted as a
3245 nonmail command, for those MTAs that insist on sending it between every
3246 message. Ditto for EHLO/HELO and for STARTTLS, to allow for going in and out of
3247 TLS between messages (an Exim client may do this if it has messages queued up
3248 for the host). Note: we do NOT reset AUTH at this point. */
3249
3250 smtp_reset(reset_point);
3251 message_ended = END_NOTSTARTED;
3252
3253 cmd_list[CMD_LIST_RSET].is_mail_cmd = TRUE;
3254 cmd_list[CMD_LIST_HELO].is_mail_cmd = TRUE;
3255 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
3256 #ifdef SUPPORT_TLS
3257 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = TRUE;
3258 cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
3259 #endif
3260
3261 /* Set the local signal handler for SIGTERM - it tries to end off tidily */
3262
3263 os_non_restarting_signal(SIGTERM, command_sigterm_handler);
3264
3265 /* Batched SMTP is handled in a different function. */
3266
3267 if (smtp_batched_input) return smtp_setup_batch_msg();
3268
3269 /* Deal with SMTP commands. This loop is exited by setting done to a POSITIVE
3270 value. The values are 2 larger than the required yield of the function. */
3271
3272 while (done <= 0)
3273 {
3274 const uschar **argv;
3275 uschar *etrn_command;
3276 uschar *etrn_serialize_key;
3277 uschar *errmess;
3278 uschar *log_msg, *smtp_code;
3279 uschar *user_msg = NULL;
3280 uschar *recipient = NULL;
3281 uschar *hello = NULL;
3282 uschar *s, *ss;
3283 BOOL was_rej_mail = FALSE;
3284 BOOL was_rcpt = FALSE;
3285 void (*oldsignal)(int);
3286 pid_t pid;
3287 int start, end, sender_domain, recipient_domain;
3288 int ptr, size, rc;
3289 int c, i;
3290 auth_instance *au;
3291 uschar *orcpt = NULL;
3292 int flags;
3293
3294 #if defined(SUPPORT_TLS) && defined(AUTH_TLS)
3295 /* Check once per STARTTLS or SSL-on-connect for a TLS AUTH */
3296 if ( tls_in.active >= 0
3297 && tls_in.peercert
3298 && tls_in.certificate_verified
3299 && cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd
3300 )
3301 {
3302 cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = FALSE;
3303 if (acl_smtp_auth)
3304 {
3305 rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth, &user_msg, &log_msg);
3306 if (rc != OK)
3307 {
3308 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
3309 continue;
3310 }
3311 }
3312
3313 for (au = auths; au; au = au->next)
3314 if (strcmpic(US"tls", au->driver_name) == 0)
3315 {
3316 smtp_cmd_data = NULL;
3317
3318 if ((c = smtp_in_auth(au, &s, &ss)) != OK)
3319 log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
3320 au->name, host_and_ident(FALSE), ss);
3321 else
3322 DEBUG(D_auth) debug_printf("tls auth succeeded\n");
3323
3324 break;
3325 }
3326 }
3327 #endif
3328
3329 switch(smtp_read_command(TRUE))
3330 {
3331 /* The AUTH command is not permitted to occur inside a transaction, and may
3332 occur successfully only once per connection. Actually, that isn't quite
3333 true. When TLS is started, all previous information about a connection must
3334 be discarded, so a new AUTH is permitted at that time.
3335
3336 AUTH may only be used when it has been advertised. However, it seems that
3337 there are clients that send AUTH when it hasn't been advertised, some of
3338 them even doing this after HELO. And there are MTAs that accept this. Sigh.
3339 So there's a get-out that allows this to happen.
3340
3341 AUTH is initially labelled as a "nonmail command" so that one occurrence
3342 doesn't get counted. We change the label here so that multiple failing
3343 AUTHS will eventually hit the nonmail threshold. */
3344
3345 case AUTH_CMD:
3346 HAD(SCH_AUTH);
3347 authentication_failed = TRUE;
3348 cmd_list[CMD_LIST_AUTH].is_mail_cmd = FALSE;
3349
3350 if (!auth_advertised && !allow_auth_unadvertised)
3351 {
3352 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3353 US"AUTH command used when not advertised");
3354 break;
3355 }
3356 if (sender_host_authenticated)
3357 {
3358 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3359 US"already authenticated");
3360 break;
3361 }
3362 if (sender_address)
3363 {
3364 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3365 US"not permitted in mail transaction");
3366 break;
3367 }
3368
3369 /* Check the ACL */
3370
3371 if (acl_smtp_auth)
3372 {
3373 rc = acl_check(ACL_WHERE_AUTH, NULL, acl_smtp_auth, &user_msg, &log_msg);
3374 if (rc != OK)
3375 {
3376 done = smtp_handle_acl_fail(ACL_WHERE_AUTH, rc, user_msg, log_msg);
3377 break;
3378 }
3379 }
3380
3381 /* Find the name of the requested authentication mechanism. */
3382
3383 s = smtp_cmd_data;
3384 while ((c = *smtp_cmd_data) != 0 && !isspace(c))
3385 {
3386 if (!isalnum(c) && c != '-' && c != '_')
3387 {
3388 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3389 US"invalid character in authentication mechanism name");
3390 goto COMMAND_LOOP;
3391 }
3392 smtp_cmd_data++;
3393 }
3394
3395 /* If not at the end of the line, we must be at white space. Terminate the
3396 name and move the pointer on to any data that may be present. */
3397
3398 if (*smtp_cmd_data != 0)
3399 {
3400 *smtp_cmd_data++ = 0;
3401 while (isspace(*smtp_cmd_data)) smtp_cmd_data++;
3402 }
3403
3404 /* Search for an authentication mechanism which is configured for use
3405 as a server and which has been advertised (unless, sigh, allow_auth_
3406 unadvertised is set). */
3407
3408 for (au = auths; au; au = au->next)
3409 if (strcmpic(s, au->public_name) == 0 && au->server &&
3410 (au->advertised || allow_auth_unadvertised))
3411 break;
3412
3413 if (au)
3414 {
3415 c = smtp_in_auth(au, &s, &ss);
3416
3417 smtp_printf("%s\r\n", s);
3418 if (c != OK)
3419 log_write(0, LOG_MAIN|LOG_REJECT, "%s authenticator failed for %s: %s",
3420 au->name, host_and_ident(FALSE), ss);
3421 }
3422 else
3423 done = synprot_error(L_smtp_protocol_error, 504, NULL,
3424 string_sprintf("%s authentication mechanism not supported", s));
3425
3426 break; /* AUTH_CMD */
3427
3428 /* The HELO/EHLO commands are permitted to appear in the middle of a
3429 session as well as at the beginning. They have the effect of a reset in
3430 addition to their other functions. Their absence at the start cannot be
3431 taken to be an error.
3432
3433 RFC 2821 says:
3434
3435 If the EHLO command is not acceptable to the SMTP server, 501, 500,
3436 or 502 failure replies MUST be returned as appropriate. The SMTP
3437 server MUST stay in the same state after transmitting these replies
3438 that it was in before the EHLO was received.
3439
3440 Therefore, we do not do the reset until after checking the command for
3441 acceptability. This change was made for Exim release 4.11. Previously
3442 it did the reset first. */
3443
3444 case HELO_CMD:
3445 HAD(SCH_HELO);
3446 hello = US"HELO";
3447 esmtp = FALSE;
3448 goto HELO_EHLO;
3449
3450 case EHLO_CMD:
3451 HAD(SCH_EHLO);
3452 hello = US"EHLO";
3453 esmtp = TRUE;
3454
3455 HELO_EHLO: /* Common code for HELO and EHLO */
3456 cmd_list[CMD_LIST_HELO].is_mail_cmd = FALSE;
3457 cmd_list[CMD_LIST_EHLO].is_mail_cmd = FALSE;
3458
3459 /* Reject the HELO if its argument was invalid or non-existent. A
3460 successful check causes the argument to be saved in malloc store. */
3461
3462 if (!check_helo(smtp_cmd_data))
3463 {
3464 smtp_printf("501 Syntactically invalid %s argument(s)\r\n", hello);
3465
3466 log_write(0, LOG_MAIN|LOG_REJECT, "rejected %s from %s: syntactically "
3467 "invalid argument(s): %s", hello, host_and_ident(FALSE),
3468 (*smtp_cmd_argument == 0)? US"(no argument given)" :
3469 string_printing(smtp_cmd_argument));
3470
3471 if (++synprot_error_count > smtp_max_synprot_errors)
3472 {
3473 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
3474 "syntax or protocol errors (last command was \"%s\")",
3475 host_and_ident(FALSE), string_printing(smtp_cmd_buffer));
3476 done = 1;
3477 }
3478
3479 break;
3480 }
3481
3482 /* If sender_host_unknown is true, we have got here via the -bs interface,
3483 not called from inetd. Otherwise, we are running an IP connection and the
3484 host address will be set. If the helo name is the primary name of this
3485 host and we haven't done a reverse lookup, force one now. If helo_required
3486 is set, ensure that the HELO name matches the actual host. If helo_verify
3487 is set, do the same check, but softly. */
3488
3489 if (!sender_host_unknown)
3490 {
3491 BOOL old_helo_verified = helo_verified;
3492 uschar *p = smtp_cmd_data;
3493
3494 while (*p != 0 && !isspace(*p)) { *p = tolower(*p); p++; }
3495 *p = 0;
3496
3497 /* Force a reverse lookup if HELO quoted something in helo_lookup_domains
3498 because otherwise the log can be confusing. */
3499
3500 if (sender_host_name == NULL &&
3501 (deliver_domain = sender_helo_name, /* set $domain */
3502 match_isinlist(sender_helo_name, CUSS &helo_lookup_domains, 0,
3503 &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL)) == OK)
3504 (void)host_name_lookup();
3505
3506 /* Rebuild the fullhost info to include the HELO name (and the real name
3507 if it was looked up.) */
3508
3509 host_build_sender_fullhost(); /* Rebuild */
3510 set_process_info("handling%s incoming connection from %s",
3511 (tls_in.active >= 0)? " TLS" : "", host_and_ident(FALSE));
3512
3513 /* Verify if configured. This doesn't give much security, but it does
3514 make some people happy to be able to do it. If helo_required is set,
3515 (host matches helo_verify_hosts) failure forces rejection. If helo_verify
3516 is set (host matches helo_try_verify_hosts), it does not. This is perhaps
3517 now obsolescent, since the verification can now be requested selectively
3518 at ACL time. */
3519
3520 helo_verified = helo_verify_failed = sender_helo_dnssec = FALSE;
3521 if (helo_required || helo_verify)
3522 {
3523 BOOL tempfail = !smtp_verify_helo();
3524 if (!helo_verified)
3525 {
3526 if (helo_required)
3527 {
3528 smtp_printf("%d %s argument does not match calling host\r\n",
3529 tempfail? 451 : 550, hello);
3530 log_write(0, LOG_MAIN|LOG_REJECT, "%srejected \"%s %s\" from %s",
3531 tempfail? "temporarily " : "",
3532 hello, sender_helo_name, host_and_ident(FALSE));
3533 helo_verified = old_helo_verified;
3534 break; /* End of HELO/EHLO processing */
3535 }
3536 HDEBUG(D_all) debug_printf("%s verification failed but host is in "
3537 "helo_try_verify_hosts\n", hello);
3538 }
3539 }
3540 }
3541
3542 #ifdef EXPERIMENTAL_SPF
3543 /* set up SPF context */
3544 spf_init(sender_helo_name, sender_host_address);
3545 #endif
3546
3547 /* Apply an ACL check if one is defined; afterwards, recheck
3548 synchronization in case the client started sending in a delay. */
3549
3550 if (acl_smtp_helo != NULL)
3551 {
3552 rc = acl_check(ACL_WHERE_HELO, NULL, acl_smtp_helo, &user_msg, &log_msg);
3553 if (rc != OK)
3554 {
3555 done = smtp_handle_acl_fail(ACL_WHERE_HELO, rc, user_msg, log_msg);
3556 sender_helo_name = NULL;
3557 host_build_sender_fullhost(); /* Rebuild */
3558 break;
3559 }
3560 else if (!check_sync()) goto SYNC_FAILURE;
3561 }
3562
3563 /* Generate an OK reply. The default string includes the ident if present,
3564 and also the IP address if present. Reflecting back the ident is intended
3565 as a deterrent to mail forgers. For maximum efficiency, and also because
3566 some broken systems expect each response to be in a single packet, arrange
3567 that the entire reply is sent in one write(). */
3568
3569 auth_advertised = FALSE;
3570 pipelining_advertised = FALSE;
3571 #ifdef SUPPORT_TLS
3572 tls_advertised = FALSE;
3573 #endif
3574 dsn_advertised = FALSE;
3575 #ifdef EXPERIMENTAL_INTERNATIONAL
3576 smtputf8_advertised = FALSE;
3577 #endif
3578
3579 smtp_code = US"250 "; /* Default response code plus space*/
3580 if (user_msg == NULL)
3581 {
3582 s = string_sprintf("%.3s %s Hello %s%s%s",
3583 smtp_code,
3584 smtp_active_hostname,
3585 (sender_ident == NULL)? US"" : sender_ident,
3586 (sender_ident == NULL)? US"" : US" at ",
3587 (sender_host_name == NULL)? sender_helo_name : sender_host_name);
3588
3589 ptr = Ustrlen(s);
3590 size = ptr + 1;
3591
3592 if (sender_host_address != NULL)
3593 {
3594 s = string_cat(s, &size, &ptr, US" [", 2);
3595 s = string_cat(s, &size, &ptr, sender_host_address,
3596 Ustrlen(sender_host_address));
3597 s = string_cat(s, &size, &ptr, US"]", 1);
3598 }
3599 }
3600
3601 /* A user-supplied EHLO greeting may not contain more than one line. Note
3602 that the code returned by smtp_message_code() includes the terminating
3603 whitespace character. */
3604
3605 else
3606 {
3607 char *ss;
3608 int codelen = 4;
3609 smtp_message_code(&smtp_code, &codelen, &user_msg, NULL);
3610 s = string_sprintf("%.*s%s", codelen, smtp_code, user_msg);
3611 if ((ss = strpbrk(CS s, "\r\n")) != NULL)
3612 {
3613 log_write(0, LOG_MAIN|LOG_PANIC, "EHLO/HELO response must not contain "
3614 "newlines: message truncated: %s", string_printing(s));
3615 *ss = 0;
3616 }
3617 ptr = Ustrlen(s);
3618 size = ptr + 1;
3619 }
3620
3621 s = string_cat(s, &size, &ptr, US"\r\n", 2);
3622
3623 /* If we received EHLO, we must create a multiline response which includes
3624 the functions supported. */
3625
3626 if (esmtp)
3627 {
3628 s[3] = '-';
3629
3630 /* I'm not entirely happy with this, as an MTA is supposed to check
3631 that it has enough room to accept a message of maximum size before
3632 it sends this. However, there seems little point in not sending it.
3633 The actual size check happens later at MAIL FROM time. By postponing it
3634 till then, VRFY and EXPN can be used after EHLO when space is short. */
3635
3636 if (thismessage_size_limit > 0)
3637 {
3638 sprintf(CS big_buffer, "%.3s-SIZE %d\r\n", smtp_code,
3639 thismessage_size_limit);
3640 s = string_cat(s, &size, &ptr, big_buffer, Ustrlen(big_buffer));
3641 }
3642 else
3643 {
3644 s = string_cat(s, &size, &ptr, smtp_code, 3);
3645 s = string_cat(s, &size, &ptr, US"-SIZE\r\n", 7);
3646 }
3647
3648 /* Exim does not do protocol conversion or data conversion. It is 8-bit
3649 clean; if it has an 8-bit character in its hand, it just sends it. It
3650 cannot therefore specify 8BITMIME and remain consistent with the RFCs.
3651 However, some users want this option simply in order to stop MUAs
3652 mangling messages that contain top-bit-set characters. It is therefore
3653 provided as an option. */
3654
3655 if (accept_8bitmime)
3656 {
3657 s = string_cat(s, &size, &ptr, smtp_code, 3);
3658 s = string_cat(s, &size, &ptr, US"-8BITMIME\r\n", 11);
3659 }
3660
3661 /* Advertise DSN support if configured to do so. */
3662 if (verify_check_host(&dsn_advertise_hosts) != FAIL)
3663 {
3664 s = string_cat(s, &size, &ptr, smtp_code, 3);
3665 s = string_cat(s, &size, &ptr, US"-DSN\r\n", 6);
3666 dsn_advertised = TRUE;
3667 }
3668
3669 /* Advertise ETRN if there's an ACL checking whether a host is
3670 permitted to issue it; a check is made when any host actually tries. */
3671
3672 if (acl_smtp_etrn != NULL)
3673 {
3674 s = string_cat(s, &size, &ptr, smtp_code, 3);
3675 s = string_cat(s, &size, &ptr, US"-ETRN\r\n", 7);
3676 }
3677
3678 /* Advertise EXPN if there's an ACL checking whether a host is
3679 permitted to issue it; a check is made when any host actually tries. */
3680
3681 if (acl_smtp_expn != NULL)
3682 {
3683 s = string_cat(s, &size, &ptr, smtp_code, 3);
3684 s = string_cat(s, &size, &ptr, US"-EXPN\r\n", 7);
3685 }
3686
3687 /* Exim is quite happy with pipelining, so let the other end know that
3688 it is safe to use it, unless advertising is disabled. */
3689
3690 if (pipelining_enable &&
3691 verify_check_host(&pipelining_advertise_hosts) == OK)
3692 {
3693 s = string_cat(s, &size, &ptr, smtp_code, 3);
3694 s = string_cat(s, &size, &ptr, US"-PIPELINING\r\n", 13);
3695 sync_cmd_limit = NON_SYNC_CMD_PIPELINING;
3696 pipelining_advertised = TRUE;
3697 }
3698
3699
3700 /* If any server authentication mechanisms are configured, advertise
3701 them if the current host is in auth_advertise_hosts. The problem with
3702 advertising always is that some clients then require users to
3703 authenticate (and aren't configurable otherwise) even though it may not
3704 be necessary (e.g. if the host is in host_accept_relay).
3705
3706 RFC 2222 states that SASL mechanism names contain only upper case
3707 letters, so output the names in upper case, though we actually recognize
3708 them in either case in the AUTH command. */
3709
3710 if ( auths
3711 #if defined(SUPPORT_TLS) && defined(AUTH_TLS)
3712 && !sender_host_authenticated
3713 #endif
3714 && verify_check_host(&auth_advertise_hosts) == OK
3715 )
3716 {
3717 auth_instance *au;
3718 BOOL first = TRUE;
3719 for (au = auths; au; au = au->next)
3720 if (au->server && (au->advertise_condition == NULL ||
3721 expand_check_condition(au->advertise_condition, au->name,
3722 US"authenticator")))
3723 {
3724 int saveptr;
3725 if (first)
3726 {
3727 s = string_cat(s, &size, &ptr, smtp_code, 3);
3728 s = string_cat(s, &size, &ptr, US"-AUTH", 5);
3729 first = FALSE;
3730 auth_advertised = TRUE;
3731 }
3732 saveptr = ptr;
3733 s = string_cat(s, &size, &ptr, US" ", 1);
3734 s = string_cat(s, &size, &ptr, au->public_name,
3735 Ustrlen(au->public_name));
3736 while (++saveptr < ptr) s[saveptr] = toupper(s[saveptr]);
3737 au->advertised = TRUE;
3738 }
3739 else
3740 au->advertised = FALSE;
3741
3742 if (!first) s = string_cat(s, &size, &ptr, US"\r\n", 2);
3743 }
3744
3745 /* Advertise TLS (Transport Level Security) aka SSL (Secure Socket Layer)
3746 if it has been included in the binary, and the host matches
3747 tls_advertise_hosts. We must *not* advertise if we are already in a
3748 secure connection. */
3749
3750 #ifdef SUPPORT_TLS
3751 if (tls_in.active < 0 &&
3752 verify_check_host(&tls_advertise_hosts) != FAIL)
3753 {
3754 s = string_cat(s, &size, &ptr, smtp_code, 3);
3755 s = string_cat(s, &size, &ptr, US"-STARTTLS\r\n", 11);
3756 tls_advertised = TRUE;
3757 }
3758 #endif
3759
3760 #ifndef DISABLE_PRDR
3761 /* Per Recipient Data Response, draft by Eric A. Hall extending RFC */
3762 if (prdr_enable)
3763 {
3764 s = string_cat(s, &size, &ptr, smtp_code, 3);
3765 s = string_cat(s, &size, &ptr, US"-PRDR\r\n", 7);
3766 }
3767 #endif
3768
3769 #ifdef EXPERIMENTAL_INTERNATIONAL
3770 if ( accept_8bitmime
3771 && verify_check_host(&smtputf8_advertise_hosts) != FAIL)
3772 {
3773 s = string_cat(s, &size, &ptr, smtp_code, 3);
3774 s = string_cat(s, &size, &ptr, US"-SMTPUTF8\r\n", 11);
3775 smtputf8_advertised = TRUE;
3776 }
3777 #endif
3778
3779 /* Finish off the multiline reply with one that is always available. */
3780
3781 s = string_cat(s, &size, &ptr, smtp_code, 3);
3782 s = string_cat(s, &size, &ptr, US" HELP\r\n", 7);
3783 }
3784
3785 /* Terminate the string (for debug), write it, and note that HELO/EHLO
3786 has been seen. */
3787
3788 s[ptr] = 0;
3789
3790 #ifdef SUPPORT_TLS
3791 if (tls_in.active >= 0) (void)tls_write(TRUE, s, ptr); else
3792 #endif
3793
3794 {
3795 int i = fwrite(s, 1, ptr, smtp_out); i = i; /* compiler quietening */
3796 }
3797 DEBUG(D_receive)
3798 {
3799 uschar *cr;
3800 while ((cr = Ustrchr(s, '\r')) != NULL) /* lose CRs */
3801 memmove(cr, cr + 1, (ptr--) - (cr - s));
3802 debug_printf("SMTP>> %s", s);
3803 }
3804 helo_seen = TRUE;
3805
3806 /* Reset the protocol and the state, abandoning any previous message. */
3807 received_protocol =
3808 (sender_host_address ? protocols : protocols_local)
3809 [ (esmtp
3810 ? pextend + (sender_host_authenticated ? pauthed : 0)
3811 : pnormal)
3812 + (tls_in.active >= 0 ? pcrpted : 0)
3813 ];
3814 smtp_reset(reset_point);
3815 toomany = FALSE;
3816 break; /* HELO/EHLO */
3817
3818
3819 /* The MAIL command requires an address as an operand. All we do
3820 here is to parse it for syntactic correctness. The form "<>" is
3821 a special case which converts into an empty string. The start/end
3822 pointers in the original are not used further for this address, as
3823 it is the canonical extracted address which is all that is kept. */
3824
3825 case MAIL_CMD:
3826 HAD(SCH_MAIL);
3827 smtp_mailcmd_count++; /* Count for limit and ratelimit */
3828 was_rej_mail = TRUE; /* Reset if accepted */
3829 env_mail_type_t * mail_args; /* Sanity check & validate args */
3830
3831 if (helo_required && !helo_seen)
3832 {
3833 smtp_printf("503 HELO or EHLO required\r\n");
3834 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL from %s: no "
3835 "HELO/EHLO given", host_and_ident(FALSE));
3836 break;
3837 }
3838
3839 if (sender_address != NULL)
3840 {
3841 done = synprot_error(L_smtp_protocol_error, 503, NULL,
3842 US"sender already given");
3843 break;
3844 }
3845
3846 if (smtp_cmd_data[0] == 0)
3847 {
3848 done = synprot_error(L_smtp_protocol_error, 501, NULL,
3849 US"MAIL must have an address operand");
3850 break;
3851 }
3852
3853 /* Check to see if the limit for messages per connection would be
3854 exceeded by accepting further messages. */
3855
3856 if (smtp_accept_max_per_connection > 0 &&
3857 smtp_mailcmd_count > smtp_accept_max_per_connection)
3858 {
3859 smtp_printf("421 too many messages in this connection\r\n");
3860 log_write(0, LOG_MAIN|LOG_REJECT, "rejected MAIL command %s: too many "
3861 "messages in one connection", host_and_ident(TRUE));
3862 break;
3863 }
3864
3865 /* Reset for start of message - even if this is going to fail, we
3866 obviously need to throw away any previous data. */
3867
3868 smtp_reset(reset_point);
3869 toomany = FALSE;
3870 sender_data = recipient_data = NULL;
3871
3872 /* Loop, checking for ESMTP additions to the MAIL FROM command. */
3873
3874 if (esmtp) for(;;)
3875 {
3876 uschar *name, *value, *end;
3877 unsigned long int size;
3878 BOOL arg_error = FALSE;
3879
3880 if (!extract_option(&name, &value)) break;
3881
3882 for (mail_args = env_mail_type_list;
3883 (char *)mail_args < (char *)env_mail_type_list + sizeof(env_mail_type_list);
3884 mail_args++
3885 )
3886 if (strcmpic(name, mail_args->name) == 0)
3887 break;
3888 if (mail_args->need_value && strcmpic(value, US"") == 0)
3889 break;
3890
3891 switch(mail_args->value)
3892 {
3893 /* Handle SIZE= by reading the value. We don't do the check till later,
3894 in order to be able to log the sender address on failure. */
3895 case ENV_MAIL_OPT_SIZE:
3896 if (((size = Ustrtoul(value, &end, 10)), *end == 0))
3897 {
3898 if ((size == ULONG_MAX && errno == ERANGE) || size > INT_MAX)
3899 size = INT_MAX;
3900 message_size = (int)size;
3901 }
3902 else
3903 arg_error = TRUE;
3904 break;
3905
3906 /* If this session was initiated with EHLO and accept_8bitmime is set,
3907 Exim will have indicated that it supports the BODY=8BITMIME option. In
3908 fact, it does not support this according to the RFCs, in that it does not
3909 take any special action for forwarding messages containing 8-bit
3910 characters. That is why accept_8bitmime is not the default setting, but
3911 some sites want the action that is provided. We recognize both "8BITMIME"
3912 and "7BIT" as body types, but take no action. */
3913 case ENV_MAIL_OPT_BODY:
3914 if (accept_8bitmime) {
3915 if (strcmpic(value, US"8BITMIME") == 0)
3916 body_8bitmime = 8;
3917 else if (strcmpic(value, US"7BIT") == 0)
3918 body_8bitmime = 7;
3919 else
3920 {
3921 body_8bitmime = 0;
3922 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3923 US"invalid data for BODY");
3924 goto COMMAND_LOOP;
3925 }
3926 DEBUG(D_receive) debug_printf("8BITMIME: %d\n", body_8bitmime);
3927 break;
3928 }
3929 arg_error = TRUE;
3930 break;
3931
3932 /* Handle the two DSN options, but only if configured to do so (which
3933 will have caused "DSN" to be given in the EHLO response). The code itself
3934 is included only if configured in at build time. */
3935
3936 case ENV_MAIL_OPT_RET:
3937 if (dsn_advertised)
3938 {
3939 /* Check if RET has already been set */
3940 if (dsn_ret > 0)
3941 {
3942 synprot_error(L_smtp_syntax_error, 501, NULL,
3943 US"RET can be specified once only");
3944 goto COMMAND_LOOP;
3945 }
3946 dsn_ret = strcmpic(value, US"HDRS") == 0
3947 ? dsn_ret_hdrs
3948 : strcmpic(value, US"FULL") == 0
3949 ? dsn_ret_full
3950 : 0;
3951 DEBUG(D_receive) debug_printf("DSN_RET: %d\n", dsn_ret);
3952 /* Check for invalid invalid value, and exit with error */
3953 if (dsn_ret == 0)
3954 {
3955 synprot_error(L_smtp_syntax_error, 501, NULL,
3956 US"Value for RET is invalid");
3957 goto COMMAND_LOOP;
3958 }
3959 }
3960 break;
3961 case ENV_MAIL_OPT_ENVID:
3962 if (dsn_advertised)
3963 {
3964 /* Check if the dsn envid has been already set */
3965 if (dsn_envid != NULL)
3966 {
3967 synprot_error(L_smtp_syntax_error, 501, NULL,
3968 US"ENVID can be specified once only");
3969 goto COMMAND_LOOP;
3970 }
3971 dsn_envid = string_copy(value);
3972 DEBUG(D_receive) debug_printf("DSN_ENVID: %s\n", dsn_envid);
3973 }
3974 break;
3975
3976 /* Handle the AUTH extension. If the value given is not "<>" and either
3977 the ACL says "yes" or there is no ACL but the sending host is
3978 authenticated, we set it up as the authenticated sender. However, if the
3979 authenticator set a condition to be tested, we ignore AUTH on MAIL unless
3980 the condition is met. The value of AUTH is an xtext, which means that +,
3981 = and cntrl chars are coded in hex; however "<>" is unaffected by this
3982 coding. */
3983 case ENV_MAIL_OPT_AUTH:
3984 if (Ustrcmp(value, "<>") != 0)
3985 {
3986 int rc;
3987 uschar *ignore_msg;
3988
3989 if (auth_xtextdecode(value, &authenticated_sender) < 0)
3990 {
3991 /* Put back terminator overrides for error message */
3992 value[-1] = '=';
3993 name[-1] = ' ';
3994 done = synprot_error(L_smtp_syntax_error, 501, NULL,
3995 US"invalid data for AUTH");
3996 goto COMMAND_LOOP;
3997 }
3998 if (acl_smtp_mailauth == NULL)
3999 {
4000 ignore_msg = US"client not authenticated";
4001 rc = (sender_host_authenticated != NULL)? OK : FAIL;
4002 }
4003 else
4004 {
4005 ignore_msg = US"rejected by ACL";
4006 rc = acl_check(ACL_WHERE_MAILAUTH, NULL, acl_smtp_mailauth,
4007 &user_msg, &log_msg);
4008 }
4009
4010 switch (rc)
4011 {
4012 case OK:
4013 if (authenticated_by == NULL ||
4014 authenticated_by->mail_auth_condition == NULL ||
4015 expand_check_condition(authenticated_by->mail_auth_condition,
4016 authenticated_by->name, US"authenticator"))
4017 break; /* Accept the AUTH */
4018
4019 ignore_msg = US"server_mail_auth_condition failed";
4020 if (authenticated_id != NULL)
4021 ignore_msg = string_sprintf("%s: authenticated ID=\"%s\"",
4022 ignore_msg, authenticated_id);
4023
4024 /* Fall through */
4025
4026 case FAIL:
4027 authenticated_sender = NULL;
4028 log_write(0, LOG_MAIN, "ignoring AUTH=%s from %s (%s)",
4029 value, host_and_ident(TRUE), ignore_msg);
4030 break;
4031
4032 /* Should only get DEFER or ERROR here. Put back terminator
4033 overrides for error message */
4034
4035 default:
4036 value[-1] = '=';
4037 name[-1] = ' ';
4038 (void)smtp_handle_acl_fail(ACL_WHERE_MAILAUTH, rc, user_msg,
4039 log_msg);
4040 goto COMMAND_LOOP;
4041 }
4042 }
4043 break;
4044
4045 #ifndef DISABLE_PRDR
4046 case ENV_MAIL_OPT_PRDR:
4047 if (prdr_enable)
4048 prdr_requested = TRUE;
4049 break;
4050 #endif
4051
4052 #ifdef EXPERIMENTAL_INTERNATIONAL
4053 case ENV_MAIL_OPT_UTF8:
4054 if (smtputf8_advertised)
4055 {
4056 DEBUG(D_receive) debug_printf("smtputf8 requested\n");
4057 message_smtputf8 = allow_utf8_domains = TRUE;
4058 received_protocol = string_sprintf("utf8%s", received_protocol);
4059 }
4060 break;
4061 #endif
4062 /* Unknown option. Stick back the terminator characters and break
4063 the loop. Do the name-terminator second as extract_option sets
4064 value==name when it found no equal-sign.
4065 An error for a malformed address will occur. */
4066 default:
4067 value[-1] = '=';
4068 name[-1] = ' ';
4069 arg_error = TRUE;
4070 break;
4071 }
4072 /* Break out of for loop if switch() had bad argument or
4073 when start of the email address is reached */
4074 if (arg_error) break;
4075 }
4076
4077 /* If we have passed the threshold for rate limiting, apply the current
4078 delay, and update it for next time, provided this is a limited host. */
4079
4080 if (smtp_mailcmd_count > smtp_rlm_threshold &&
4081 verify_check_host(&smtp_ratelimit_hosts) == OK)
4082 {
4083 DEBUG(D_receive) debug_printf("rate limit MAIL: delay %.3g sec\n",
4084 smtp_delay_mail/1000.0);
4085 millisleep((int)smtp_delay_mail);
4086 smtp_delay_mail *= smtp_rlm_factor;
4087 if (smtp_delay_mail > (double)smtp_rlm_limit)
4088 smtp_delay_mail = (double)smtp_rlm_limit;
4089 }
4090
4091 /* Now extract the address, first applying any SMTP-time rewriting. The
4092 TRUE flag allows "<>" as a sender address. */
4093
4094 raw_sender = rewrite_existflags & rewrite_smtp
4095 ? rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4096 global_rewrite_rules)
4097 : smtp_cmd_data;
4098
4099 /* rfc821_domains = TRUE; << no longer needed */
4100 raw_sender =
4101 parse_extract_address(raw_sender, &errmess, &start, &end, &sender_domain,
4102 TRUE);
4103 /* rfc821_domains = FALSE; << no longer needed */
4104
4105 if (raw_sender == NULL)
4106 {
4107 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
4108 break;
4109 }
4110
4111 sender_address = raw_sender;
4112
4113 /* If there is a configured size limit for mail, check that this message
4114 doesn't exceed it. The check is postponed to this point so that the sender
4115 can be logged. */
4116
4117 if (thismessage_size_limit > 0 && message_size > thismessage_size_limit)
4118 {
4119 smtp_printf("552 Message size exceeds maximum permitted\r\n");
4120 log_write(L_size_reject,
4121 LOG_MAIN|LOG_REJECT, "rejected MAIL FROM:<%s> %s: "
4122 "message too big: size%s=%d max=%d",
4123 sender_address,
4124 host_and_ident(TRUE),
4125 (message_size == INT_MAX)? ">" : "",
4126 message_size,
4127 thismessage_size_limit);
4128 sender_address = NULL;
4129 break;
4130 }
4131
4132 /* Check there is enough space on the disk unless configured not to.
4133 When smtp_check_spool_space is set, the check is for thismessage_size_limit
4134 plus the current message - i.e. we accept the message only if it won't
4135 reduce the space below the threshold. Add 5000 to the size to allow for
4136 overheads such as the Received: line and storing of recipients, etc.
4137 By putting the check here, even when SIZE is not given, it allow VRFY
4138 and EXPN etc. to be used when space is short. */
4139
4140 if (!receive_check_fs(
4141 (smtp_check_spool_space && message_size >= 0)?
4142 message_size + 5000 : 0))
4143 {
4144 smtp_printf("452 Space shortage, please try later\r\n");
4145 sender_address = NULL;
4146 break;
4147 }
4148
4149 /* If sender_address is unqualified, reject it, unless this is a locally
4150 generated message, or the sending host or net is permitted to send
4151 unqualified addresses - typically local machines behaving as MUAs -
4152 in which case just qualify the address. The flag is set above at the start
4153 of the SMTP connection. */
4154
4155 if (sender_domain == 0 && sender_address[0] != 0)
4156 {
4157 if (allow_unqualified_sender)
4158 {
4159 sender_domain = Ustrlen(sender_address) + 1;
4160 sender_address = rewrite_address_qualify(sender_address, FALSE);
4161 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
4162 raw_sender);
4163 }
4164 else
4165 {
4166 smtp_printf("501 %s: sender address must contain a domain\r\n",
4167 smtp_cmd_data);
4168 log_write(L_smtp_syntax_error,
4169 LOG_MAIN|LOG_REJECT,
4170 "unqualified sender rejected: <%s> %s%s",
4171 raw_sender,
4172 host_and_ident(TRUE),
4173 host_lookup_msg);
4174 sender_address = NULL;
4175 break;
4176 }
4177 }
4178
4179 /* Apply an ACL check if one is defined, before responding. Afterwards,
4180 when pipelining is not advertised, do another sync check in case the ACL
4181 delayed and the client started sending in the meantime. */
4182
4183 if (acl_smtp_mail)
4184 {
4185 rc = acl_check(ACL_WHERE_MAIL, NULL, acl_smtp_mail, &user_msg, &log_msg);
4186 if (rc == OK && !pipelining_advertised && !check_sync())
4187 goto SYNC_FAILURE;
4188 }
4189 else
4190 rc = OK;
4191
4192 if (rc == OK || rc == DISCARD)
4193 {
4194 if (!user_msg)
4195 smtp_printf("%s%s%s", US"250 OK",
4196 #ifndef DISABLE_PRDR
4197 prdr_requested ? US", PRDR Requested" : US"",
4198 #else
4199 US"",
4200 #endif
4201 US"\r\n");
4202 else
4203 {
4204 #ifndef DISABLE_PRDR
4205 if (prdr_requested)
4206 user_msg = string_sprintf("%s%s", user_msg, US", PRDR Requested");
4207 #endif
4208 smtp_user_msg(US"250", user_msg);
4209 }
4210 smtp_delay_rcpt = smtp_rlr_base;
4211 recipients_discarded = (rc == DISCARD);
4212 was_rej_mail = FALSE;
4213 }
4214 else
4215 {
4216 done = smtp_handle_acl_fail(ACL_WHERE_MAIL, rc, user_msg, log_msg);
4217 sender_address = NULL;
4218 }
4219 break;
4220
4221
4222 /* The RCPT command requires an address as an operand. There may be any
4223 number of RCPT commands, specifying multiple recipients. We build them all
4224 into a data structure. The start/end values given by parse_extract_address
4225 are not used, as we keep only the extracted address. */
4226
4227 case RCPT_CMD:
4228 HAD(SCH_RCPT);
4229 rcpt_count++;
4230 was_rcpt = rcpt_in_progress = TRUE;
4231
4232 /* There must be a sender address; if the sender was rejected and
4233 pipelining was advertised, we assume the client was pipelining, and do not
4234 count this as a protocol error. Reset was_rej_mail so that further RCPTs
4235 get the same treatment. */
4236
4237 if (sender_address == NULL)
4238 {
4239 if (pipelining_advertised && last_was_rej_mail)
4240 {
4241 smtp_printf("503 sender not yet given\r\n");
4242 was_rej_mail = TRUE;
4243 }
4244 else
4245 {
4246 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4247 US"sender not yet given");
4248 was_rcpt = FALSE; /* Not a valid RCPT */
4249 }
4250 rcpt_fail_count++;
4251 break;
4252 }
4253
4254 /* Check for an operand */
4255
4256 if (smtp_cmd_data[0] == 0)
4257 {
4258 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4259 US"RCPT must have an address operand");
4260 rcpt_fail_count++;
4261 break;
4262 }
4263
4264 /* Set the DSN flags orcpt and dsn_flags from the session*/
4265 orcpt = NULL;
4266 flags = 0;
4267
4268 if (esmtp) for(;;)
4269 {
4270 uschar *name, *value;
4271
4272 if (!extract_option(&name, &value))
4273 break;
4274
4275 if (dsn_advertised && strcmpic(name, US"ORCPT") == 0)
4276 {
4277 /* Check whether orcpt has been already set */
4278 if (orcpt)
4279 {
4280 synprot_error(L_smtp_syntax_error, 501, NULL,
4281 US"ORCPT can be specified once only");
4282 goto COMMAND_LOOP;
4283 }
4284 orcpt = string_copy(value);
4285 DEBUG(D_receive) debug_printf("DSN orcpt: %s\n", orcpt);
4286 }
4287
4288 else if (dsn_advertised && strcmpic(name, US"NOTIFY") == 0)
4289 {
4290 /* Check if the notify flags have been already set */
4291 if (flags > 0)
4292 {
4293 synprot_error(L_smtp_syntax_error, 501, NULL,
4294 US"NOTIFY can be specified once only");
4295 goto COMMAND_LOOP;
4296 }
4297 if (strcmpic(value, US"NEVER") == 0)
4298 flags |= rf_notify_never;
4299 else
4300 {
4301 uschar *p = value;
4302 while (*p != 0)
4303 {
4304 uschar *pp = p;
4305 while (*pp != 0 && *pp != ',') pp++;
4306 if (*pp == ',') *pp++ = 0;
4307 if (strcmpic(p, US"SUCCESS") == 0)
4308 {
4309 DEBUG(D_receive) debug_printf("DSN: Setting notify success\n");
4310 flags |= rf_notify_success;
4311 }
4312 else if (strcmpic(p, US"FAILURE") == 0)
4313 {
4314 DEBUG(D_receive) debug_printf("DSN: Setting notify failure\n");
4315 flags |= rf_notify_failure;
4316 }
4317 else if (strcmpic(p, US"DELAY") == 0)
4318 {
4319 DEBUG(D_receive) debug_printf("DSN: Setting notify delay\n");
4320 flags |= rf_notify_delay;
4321 }
4322 else
4323 {
4324 /* Catch any strange values */
4325 synprot_error(L_smtp_syntax_error, 501, NULL,
4326 US"Invalid value for NOTIFY parameter");
4327 goto COMMAND_LOOP;
4328 }
4329 p = pp;
4330 }
4331 DEBUG(D_receive) debug_printf("DSN Flags: %x\n", flags);
4332 }
4333 }
4334
4335 /* Unknown option. Stick back the terminator characters and break
4336 the loop. An error for a malformed address will occur. */
4337
4338 else
4339 {
4340 DEBUG(D_receive) debug_printf("Invalid RCPT option: %s : %s\n", name, value);
4341 name[-1] = ' ';
4342 value[-1] = '=';
4343 break;
4344 }
4345 }
4346
4347 /* Apply SMTP rewriting then extract the working address. Don't allow "<>"
4348 as a recipient address */
4349
4350 recipient = ((rewrite_existflags & rewrite_smtp) != 0)?
4351 rewrite_one(smtp_cmd_data, rewrite_smtp, NULL, FALSE, US"",
4352 global_rewrite_rules) : smtp_cmd_data;
4353
4354 /* rfc821_domains = TRUE; << no longer needed */
4355 recipient = parse_extract_address(recipient, &errmess, &start, &end,
4356 &recipient_domain, FALSE);
4357 /* rfc821_domains = FALSE; << no longer needed */
4358
4359 if (recipient == NULL)
4360 {
4361 done = synprot_error(L_smtp_syntax_error, 501, smtp_cmd_data, errmess);
4362 rcpt_fail_count++;
4363 break;
4364 }
4365
4366 /* If the recipient address is unqualified, reject it, unless this is a
4367 locally generated message. However, unqualified addresses are permitted
4368 from a configured list of hosts and nets - typically when behaving as
4369 MUAs rather than MTAs. Sad that SMTP is used for both types of traffic,
4370 really. The flag is set at the start of the SMTP connection.
4371
4372 RFC 1123 talks about supporting "the reserved mailbox postmaster"; I always
4373 assumed this meant "reserved local part", but the revision of RFC 821 and
4374 friends now makes it absolutely clear that it means *mailbox*. Consequently
4375 we must always qualify this address, regardless. */
4376
4377 if (recipient_domain == 0)
4378 {
4379 if (allow_unqualified_recipient ||
4380 strcmpic(recipient, US"postmaster") == 0)
4381 {
4382 DEBUG(D_receive) debug_printf("unqualified address %s accepted\n",
4383 recipient);
4384 recipient_domain = Ustrlen(recipient) + 1;
4385 recipient = rewrite_address_qualify(recipient, TRUE);
4386 }
4387 else
4388 {
4389 rcpt_fail_count++;
4390 smtp_printf("501 %s: recipient address must contain a domain\r\n",
4391 smtp_cmd_data);
4392 log_write(L_smtp_syntax_error,
4393 LOG_MAIN|LOG_REJECT, "unqualified recipient rejected: "
4394 "<%s> %s%s", recipient, host_and_ident(TRUE),
4395 host_lookup_msg);
4396 break;
4397 }
4398 }
4399
4400 /* Check maximum allowed */
4401
4402 if (rcpt_count > recipients_max && recipients_max > 0)
4403 {
4404 if (recipients_max_reject)
4405 {
4406 rcpt_fail_count++;
4407 smtp_printf("552 too many recipients\r\n");
4408 if (!toomany)
4409 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: message "
4410 "rejected: sender=<%s> %s", sender_address, host_and_ident(TRUE));
4411 }
4412 else
4413 {
4414 rcpt_defer_count++;
4415 smtp_printf("452 too many recipients\r\n");
4416 if (!toomany)
4417 log_write(0, LOG_MAIN|LOG_REJECT, "too many recipients: excess "
4418 "temporarily rejected: sender=<%s> %s", sender_address,
4419 host_and_ident(TRUE));
4420 }
4421
4422 toomany = TRUE;
4423 break;
4424 }
4425
4426 /* If we have passed the threshold for rate limiting, apply the current
4427 delay, and update it for next time, provided this is a limited host. */
4428
4429 if (rcpt_count > smtp_rlr_threshold &&
4430 verify_check_host(&smtp_ratelimit_hosts) == OK)
4431 {
4432 DEBUG(D_receive) debug_printf("rate limit RCPT: delay %.3g sec\n",
4433 smtp_delay_rcpt/1000.0);
4434 millisleep((int)smtp_delay_rcpt);
4435 smtp_delay_rcpt *= smtp_rlr_factor;
4436 if (smtp_delay_rcpt > (double)smtp_rlr_limit)
4437 smtp_delay_rcpt = (double)smtp_rlr_limit;
4438 }
4439
4440 /* If the MAIL ACL discarded all the recipients, we bypass ACL checking
4441 for them. Otherwise, check the access control list for this recipient. As
4442 there may be a delay in this, re-check for a synchronization error
4443 afterwards, unless pipelining was advertised. */
4444
4445 if (recipients_discarded) rc = DISCARD; else
4446 {
4447 rc = acl_check(ACL_WHERE_RCPT, recipient, acl_smtp_rcpt, &user_msg,
4448 &log_msg);
4449 if (rc == OK && !pipelining_advertised && !check_sync())
4450 goto SYNC_FAILURE;
4451 }
4452
4453 /* The ACL was happy */
4454
4455 if (rc == OK)
4456 {
4457 if (user_msg == NULL) smtp_printf("250 Accepted\r\n");
4458 else smtp_user_msg(US"250", user_msg);
4459 receive_add_recipient(recipient, -1);
4460
4461 /* Set the dsn flags in the recipients_list */
4462 recipients_list[recipients_count-1].orcpt = orcpt;
4463 recipients_list[recipients_count-1].dsn_flags = flags;
4464
4465 DEBUG(D_receive) debug_printf("DSN: orcpt: %s flags: %d\n",
4466 recipients_list[recipients_count-1].orcpt,
4467 recipients_list[recipients_count-1].dsn_flags);
4468 }
4469
4470 /* The recipient was discarded */
4471
4472 else if (rc == DISCARD)
4473 {
4474 if (user_msg == NULL) smtp_printf("250 Accepted\r\n");
4475 else smtp_user_msg(US"250", user_msg);
4476 rcpt_fail_count++;
4477 discarded = TRUE;
4478 log_write(0, LOG_MAIN|LOG_REJECT, "%s F=<%s> RCPT %s: "
4479 "discarded by %s ACL%s%s", host_and_ident(TRUE),
4480 sender_address_unrewritten? sender_address_unrewritten : sender_address,
4481 smtp_cmd_argument, recipients_discarded? "MAIL" : "RCPT",
4482 log_msg ? US": " : US"", log_msg ? log_msg : US"");
4483 }
4484
4485 /* Either the ACL failed the address, or it was deferred. */
4486
4487 else
4488 {
4489 if (rc == FAIL) rcpt_fail_count++; else rcpt_defer_count++;
4490 done = smtp_handle_acl_fail(ACL_WHERE_RCPT, rc, user_msg, log_msg);
4491 }
4492 break;
4493
4494
4495 /* The DATA command is legal only if it follows successful MAIL FROM
4496 and RCPT TO commands. However, if pipelining is advertised, a bad DATA is
4497 not counted as a protocol error if it follows RCPT (which must have been
4498 rejected if there are no recipients.) This function is complete when a
4499 valid DATA command is encountered.
4500
4501 Note concerning the code used: RFC 2821 says this:
4502
4503 - If there was no MAIL, or no RCPT, command, or all such commands
4504 were rejected, the server MAY return a "command out of sequence"
4505 (503) or "no valid recipients" (554) reply in response to the
4506 DATA command.
4507
4508 The example in the pipelining RFC 2920 uses 554, but I use 503 here
4509 because it is the same whether pipelining is in use or not.
4510
4511 If all the RCPT commands that precede DATA provoked the same error message
4512 (often indicating some kind of system error), it is helpful to include it
4513 with the DATA rejection (an idea suggested by Tony Finch). */
4514
4515 case DATA_CMD:
4516 HAD(SCH_DATA);
4517 if (!discarded && recipients_count <= 0)
4518 {
4519 if (rcpt_smtp_response_same && rcpt_smtp_response != NULL)
4520 {
4521 uschar *code = US"503";
4522 int len = Ustrlen(rcpt_smtp_response);
4523 smtp_respond(code, 3, FALSE, US"All RCPT commands were rejected with "
4524 "this error:");
4525 /* Responses from smtp_printf() will have \r\n on the end */
4526 if (len > 2 && rcpt_smtp_response[len-2] == '\r')
4527 rcpt_smtp_response[len-2] = 0;
4528 smtp_respond(code, 3, FALSE, rcpt_smtp_response);
4529 }
4530 if (pipelining_advertised && last_was_rcpt)
4531 smtp_printf("503 Valid RCPT command must precede DATA\r\n");
4532 else
4533 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4534 US"valid RCPT command must precede DATA");
4535 break;
4536 }
4537
4538 if (toomany && recipients_max_reject)
4539 {
4540 sender_address = NULL; /* This will allow a new MAIL without RSET */
4541 sender_address_unrewritten = NULL;
4542 smtp_printf("554 Too many recipients\r\n");
4543 break;
4544 }
4545
4546 /* If there is an ACL, re-check the synchronization afterwards, since the
4547 ACL may have delayed. To handle cutthrough delivery enforce a dummy call
4548 to get the DATA command sent. */
4549
4550 if (acl_smtp_predata == NULL && cutthrough.fd < 0) rc = OK; else
4551 {
4552 uschar * acl= acl_smtp_predata ? acl_smtp_predata : US"accept";
4553 enable_dollar_recipients = TRUE;
4554 rc = acl_check(ACL_WHERE_PREDATA, NULL, acl, &user_msg,
4555 &log_msg);
4556 enable_dollar_recipients = FALSE;
4557 if (rc == OK && !check_sync()) goto SYNC_FAILURE;
4558 }
4559
4560 if (rc == OK)
4561 {
4562 uschar * code;
4563 code = US"354";
4564 if (user_msg == NULL)
4565 smtp_printf("%s Enter message, ending with \".\" on a line by itself\r\n", code);
4566 else smtp_user_msg(code, user_msg);
4567 done = 3;
4568 message_ended = END_NOTENDED; /* Indicate in middle of data */
4569 }
4570
4571 /* Either the ACL failed the address, or it was deferred. */
4572
4573 else
4574 done = smtp_handle_acl_fail(ACL_WHERE_PREDATA, rc, user_msg, log_msg);
4575 break;
4576
4577
4578 case VRFY_CMD:
4579 HAD(SCH_VRFY);
4580 rc = acl_check(ACL_WHERE_VRFY, NULL, acl_smtp_vrfy, &user_msg, &log_msg);
4581 if (rc != OK)
4582 done = smtp_handle_acl_fail(ACL_WHERE_VRFY, rc, user_msg, log_msg);
4583 else
4584 {
4585 uschar *address;
4586 uschar *s = NULL;
4587
4588 /* rfc821_domains = TRUE; << no longer needed */
4589 address = parse_extract_address(smtp_cmd_data, &errmess, &start, &end,
4590 &recipient_domain, FALSE);
4591 /* rfc821_domains = FALSE; << no longer needed */
4592
4593 if (address == NULL)
4594 s = string_sprintf("501 %s", errmess);
4595 else
4596 {
4597 address_item *addr = deliver_make_addr(address, FALSE);
4598 switch(verify_address(addr, NULL, vopt_is_recipient | vopt_qualify, -1,
4599 -1, -1, NULL, NULL, NULL))
4600 {
4601 case OK:
4602 s = string_sprintf("250 <%s> is deliverable", address);
4603 break;
4604
4605 case DEFER:
4606 s = (addr->user_message != NULL)?
4607 string_sprintf("451 <%s> %s", address, addr->user_message) :
4608 string_sprintf("451 Cannot resolve <%s> at this time", address);
4609 break;
4610
4611 case FAIL:
4612 s = (addr->user_message != NULL)?
4613 string_sprintf("550 <%s> %s", address, addr->user_message) :
4614 string_sprintf("550 <%s> is not deliverable", address);
4615 log_write(0, LOG_MAIN, "VRFY failed for %s %s",
4616 smtp_cmd_argument, host_and_ident(TRUE));
4617 break;
4618 }
4619 }
4620
4621 smtp_printf("%s\r\n", s);
4622 }
4623 break;
4624
4625
4626 case EXPN_CMD:
4627 HAD(SCH_EXPN);
4628 rc = acl_check(ACL_WHERE_EXPN, NULL, acl_smtp_expn, &user_msg, &log_msg);
4629 if (rc != OK)
4630 done = smtp_handle_acl_fail(ACL_WHERE_EXPN, rc, user_msg, log_msg);
4631 else
4632 {
4633 BOOL save_log_testing_mode = log_testing_mode;
4634 address_test_mode = log_testing_mode = TRUE;
4635 (void) verify_address(deliver_make_addr(smtp_cmd_data, FALSE),
4636 smtp_out, vopt_is_recipient | vopt_qualify | vopt_expn, -1, -1, -1,
4637 NULL, NULL, NULL);
4638 address_test_mode = FALSE;
4639 log_testing_mode = save_log_testing_mode; /* true for -bh */
4640 }
4641 break;
4642
4643
4644 #ifdef SUPPORT_TLS
4645
4646 case STARTTLS_CMD:
4647 HAD(SCH_STARTTLS);
4648 if (!tls_advertised)
4649 {
4650 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4651 US"STARTTLS command used when not advertised");
4652 break;
4653 }
4654
4655 /* Apply an ACL check if one is defined */
4656
4657 if (acl_smtp_starttls != NULL)
4658 {
4659 rc = acl_check(ACL_WHERE_STARTTLS, NULL, acl_smtp_starttls, &user_msg,
4660 &log_msg);
4661 if (rc != OK)
4662 {
4663 done = smtp_handle_acl_fail(ACL_WHERE_STARTTLS, rc, user_msg, log_msg);
4664 break;
4665 }
4666 }
4667
4668 /* RFC 2487 is not clear on when this command may be sent, though it
4669 does state that all information previously obtained from the client
4670 must be discarded if a TLS session is started. It seems reasonble to
4671 do an implied RSET when STARTTLS is received. */
4672
4673 incomplete_transaction_log(US"STARTTLS");
4674 smtp_reset(reset_point);
4675 toomany = FALSE;
4676 cmd_list[CMD_LIST_STARTTLS].is_mail_cmd = FALSE;
4677
4678 /* There's an attack where more data is read in past the STARTTLS command
4679 before TLS is negotiated, then assumed to be part of the secure session
4680 when used afterwards; we use segregated input buffers, so are not
4681 vulnerable, but we want to note when it happens and, for sheer paranoia,
4682 ensure that the buffer is "wiped".
4683 Pipelining sync checks will normally have protected us too, unless disabled
4684 by configuration. */
4685
4686 if (receive_smtp_buffered())
4687 {
4688 DEBUG(D_any)
4689 debug_printf("Non-empty input buffer after STARTTLS; naive attack?");
4690 if (tls_in.active < 0)
4691 smtp_inend = smtp_inptr = smtp_inbuffer;
4692 /* and if TLS is already active, tls_server_start() should fail */
4693 }
4694
4695 /* There is nothing we value in the input buffer and if TLS is succesfully
4696 negotiated, we won't use this buffer again; if TLS fails, we'll just read
4697 fresh content into it. The buffer contains arbitrary content from an
4698 untrusted remote source; eg: NOOP <shellcode>\r\nSTARTTLS\r\n
4699 It seems safest to just wipe away the content rather than leave it as a
4700 target to jump to. */
4701
4702 memset(smtp_inbuffer, 0, in_buffer_size);
4703
4704 /* Attempt to start up a TLS session, and if successful, discard all
4705 knowledge that was obtained previously. At least, that's what the RFC says,
4706 and that's what happens by default. However, in order to work round YAEB,
4707 there is an option to remember the esmtp state. Sigh.
4708
4709 We must allow for an extra EHLO command and an extra AUTH command after
4710 STARTTLS that don't add to the nonmail command count. */
4711
4712 if ((rc = tls_server_start(tls_require_ciphers)) == OK)
4713 {
4714 if (!tls_remember_esmtp)
4715 helo_seen = esmtp = auth_advertised = pipelining_advertised = FALSE;
4716 cmd_list[CMD_LIST_EHLO].is_mail_cmd = TRUE;
4717 cmd_list[CMD_LIST_AUTH].is_mail_cmd = TRUE;
4718 cmd_list[CMD_LIST_TLS_AUTH].is_mail_cmd = TRUE;
4719 if (sender_helo_name != NULL)
4720 {
4721 store_free(sender_helo_name);
4722 sender_helo_name = NULL;
4723 host_build_sender_fullhost(); /* Rebuild */
4724 set_process_info("handling incoming TLS connection from %s",
4725 host_and_ident(FALSE));
4726 }
4727 received_protocol =
4728 (sender_host_address ? protocols : protocols_local)
4729 [ (esmtp
4730 ? pextend + (sender_host_authenticated ? pauthed : 0)
4731 : pnormal)
4732 + (tls_in.active >= 0 ? pcrpted : 0)
4733 ];
4734
4735 sender_host_authenticated = NULL;
4736 authenticated_id = NULL;
4737 sync_cmd_limit = NON_SYNC_CMD_NON_PIPELINING;
4738 DEBUG(D_tls) debug_printf("TLS active\n");
4739 break; /* Successful STARTTLS */
4740 }
4741
4742 /* Some local configuration problem was discovered before actually trying
4743 to do a TLS handshake; give a temporary error. */
4744
4745 else if (rc == DEFER)
4746 {
4747 smtp_printf("454 TLS currently unavailable\r\n");
4748 break;
4749 }
4750
4751 /* Hard failure. Reject everything except QUIT or closed connection. One
4752 cause for failure is a nested STARTTLS, in which case tls_in.active remains
4753 set, but we must still reject all incoming commands. */
4754
4755 DEBUG(D_tls) debug_printf("TLS failed to start\n");
4756 while (done <= 0)
4757 {
4758 switch(smtp_read_command(FALSE))
4759 {
4760 case EOF_CMD:
4761 log_write(L_smtp_connection, LOG_MAIN, "%s closed by EOF",
4762 smtp_get_connection_info());
4763 smtp_notquit_exit(US"tls-failed", NULL, NULL);
4764 done = 2;
4765 break;
4766
4767 /* It is perhaps arguable as to which exit ACL should be called here,
4768 but as it is probably a situation that almost never arises, it
4769 probably doesn't matter. We choose to call the real QUIT ACL, which in
4770 some sense is perhaps "right". */
4771
4772 case QUIT_CMD:
4773 user_msg = NULL;
4774 if (acl_smtp_quit != NULL)
4775 {
4776 rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg,
4777 &log_msg);
4778 if (rc == ERROR)
4779 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
4780 log_msg);
4781 }
4782 if (user_msg == NULL)
4783 smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
4784 else
4785 smtp_respond(US"221", 3, TRUE, user_msg);
4786 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
4787 smtp_get_connection_info());
4788 done = 2;
4789 break;
4790
4791 default:
4792 smtp_printf("554 Security failure\r\n");
4793 break;
4794 }
4795 }
4796 tls_close(TRUE, TRUE);
4797 break;
4798 #endif
4799
4800
4801 /* The ACL for QUIT is provided for gathering statistical information or
4802 similar; it does not affect the response code, but it can supply a custom
4803 message. */
4804
4805 case QUIT_CMD:
4806 HAD(SCH_QUIT);
4807 incomplete_transaction_log(US"QUIT");
4808 if (acl_smtp_quit != NULL)
4809 {
4810 rc = acl_check(ACL_WHERE_QUIT, NULL, acl_smtp_quit, &user_msg, &log_msg);
4811 if (rc == ERROR)
4812 log_write(0, LOG_MAIN|LOG_PANIC, "ACL for QUIT returned ERROR: %s",
4813 log_msg);
4814 }
4815 if (user_msg == NULL)
4816 smtp_printf("221 %s closing connection\r\n", smtp_active_hostname);
4817 else
4818 smtp_respond(US"221", 3, TRUE, user_msg);
4819
4820 #ifdef SUPPORT_TLS
4821 tls_close(TRUE, TRUE);
4822 #endif
4823
4824 done = 2;
4825 log_write(L_smtp_connection, LOG_MAIN, "%s closed by QUIT",
4826 smtp_get_connection_info());
4827 break;
4828
4829
4830 case RSET_CMD:
4831 HAD(SCH_RSET);
4832 incomplete_transaction_log(US"RSET");
4833 smtp_reset(reset_point);
4834 toomany = FALSE;
4835 smtp_printf("250 Reset OK\r\n");
4836 cmd_list[CMD_LIST_RSET].is_mail_cmd = FALSE;
4837 break;
4838
4839
4840 case NOOP_CMD:
4841 HAD(SCH_NOOP);
4842 smtp_printf("250 OK\r\n");
4843 break;
4844
4845
4846 /* Show ETRN/EXPN/VRFY if there's an ACL for checking hosts; if actually
4847 used, a check will be done for permitted hosts. Show STARTTLS only if not
4848 already in a TLS session and if it would be advertised in the EHLO
4849 response. */
4850
4851 case HELP_CMD:
4852 HAD(SCH_HELP);
4853 smtp_printf("214-Commands supported:\r\n");
4854 {
4855 uschar buffer[256];
4856 buffer[0] = 0;
4857 Ustrcat(buffer, " AUTH");
4858 #ifdef SUPPORT_TLS
4859 if (tls_in.active < 0 &&
4860 verify_check_host(&tls_advertise_hosts) != FAIL)
4861 Ustrcat(buffer, " STARTTLS");
4862 #endif
4863 Ustrcat(buffer, " HELO EHLO MAIL RCPT DATA");
4864 Ustrcat(buffer, " NOOP QUIT RSET HELP");
4865 if (acl_smtp_etrn != NULL) Ustrcat(buffer, " ETRN");
4866 if (acl_smtp_expn != NULL) Ustrcat(buffer, " EXPN");
4867 if (acl_smtp_vrfy != NULL) Ustrcat(buffer, " VRFY");
4868 smtp_printf("214%s\r\n", buffer);
4869 }
4870 break;
4871
4872
4873 case EOF_CMD:
4874 incomplete_transaction_log(US"connection lost");
4875 smtp_notquit_exit(US"connection-lost", US"421",
4876 US"%s lost input connection", smtp_active_hostname);
4877
4878 /* Don't log by default unless in the middle of a message, as some mailers
4879 just drop the call rather than sending QUIT, and it clutters up the logs.
4880 */
4881
4882 if (sender_address != NULL || recipients_count > 0)
4883 log_write(L_lost_incoming_connection,
4884 LOG_MAIN,
4885 "unexpected %s while reading SMTP command from %s%s",
4886 sender_host_unknown? "EOF" : "disconnection",
4887 host_and_ident(FALSE), smtp_read_error);
4888
4889 else log_write(L_smtp_connection, LOG_MAIN, "%s lost%s",
4890 smtp_get_connection_info(), smtp_read_error);
4891
4892 done = 1;
4893 break;
4894
4895
4896 case ETRN_CMD:
4897 HAD(SCH_ETRN);
4898 if (sender_address != NULL)
4899 {
4900 done = synprot_error(L_smtp_protocol_error, 503, NULL,
4901 US"ETRN is not permitted inside a transaction");
4902 break;
4903 }
4904
4905 log_write(L_etrn, LOG_MAIN, "ETRN %s received from %s", smtp_cmd_argument,
4906 host_and_ident(FALSE));
4907
4908 rc = acl_check(ACL_WHERE_ETRN, NULL, acl_smtp_etrn, &user_msg, &log_msg);
4909 if (rc != OK)
4910 {
4911 done = smtp_handle_acl_fail(ACL_WHERE_ETRN, rc, user_msg, log_msg);
4912 break;
4913 }
4914
4915 /* Compute the serialization key for this command. */
4916
4917 etrn_serialize_key = string_sprintf("etrn-%s\n", smtp_cmd_data);
4918
4919 /* If a command has been specified for running as a result of ETRN, we
4920 permit any argument to ETRN. If not, only the # standard form is permitted,
4921 since that is strictly the only kind of ETRN that can be implemented
4922 according to the RFC. */
4923
4924 if (smtp_etrn_command != NULL)
4925 {
4926 uschar *error;
4927 BOOL rc;
4928 etrn_command = smtp_etrn_command;
4929 deliver_domain = smtp_cmd_data;
4930 rc = transport_set_up_command(&argv, smtp_etrn_command, TRUE, 0, NULL,
4931 US"ETRN processing", &error);
4932 deliver_domain = NULL;
4933 if (!rc)
4934 {
4935 log_write(0, LOG_MAIN|LOG_PANIC, "failed to set up ETRN command: %s",
4936 error);
4937 smtp_printf("458 Internal failure\r\n");
4938 break;
4939 }
4940 }
4941
4942 /* Else set up to call Exim with the -R option. */
4943
4944 else
4945 {
4946 if (*smtp_cmd_data++ != '#')
4947 {
4948 done = synprot_error(L_smtp_syntax_error, 501, NULL,
4949 US"argument must begin with #");
4950 break;
4951 }
4952 etrn_command = US"exim -R";
4953 argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, NULL, TRUE, 2, US"-R",
4954 smtp_cmd_data);
4955 }
4956
4957 /* If we are host-testing, don't actually do anything. */
4958
4959 if (host_checking)
4960 {
4961 HDEBUG(D_any)
4962 {
4963 debug_printf("ETRN command is: %s\n", etrn_command);
4964 debug_printf("ETRN command execution skipped\n");
4965 }
4966 if (user_msg == NULL) smtp_printf("250 OK\r\n");
4967 else smtp_user_msg(US"250", user_msg);
4968 break;
4969 }
4970
4971
4972 /* If ETRN queue runs are to be serialized, check the database to
4973 ensure one isn't already running. */
4974
4975 if (smtp_etrn_serialize && !enq_start(etrn_serialize_key))
4976 {
4977 smtp_printf("458 Already processing %s\r\n", smtp_cmd_data);
4978 break;
4979 }
4980
4981 /* Fork a child process and run the command. We don't want to have to
4982 wait for the process at any point, so set SIGCHLD to SIG_IGN before
4983 forking. It should be set that way anyway for external incoming SMTP,
4984 but we save and restore to be tidy. If serialization is required, we
4985 actually run the command in yet another process, so we can wait for it
4986 to complete and then remove the serialization lock. */
4987
4988 oldsignal = signal(SIGCHLD, SIG_IGN);
4989
4990 if ((pid = fork()) == 0)
4991 {
4992 smtp_input = FALSE; /* This process is not associated with the */
4993 (void)fclose(smtp_in); /* SMTP call any more. */
4994 (void)fclose(smtp_out);
4995
4996 signal(SIGCHLD, SIG_DFL); /* Want to catch child */
4997
4998 /* If not serializing, do the exec right away. Otherwise, fork down
4999 into another process. */
5000
5001 if (!smtp_etrn_serialize || (pid = fork()) == 0)
5002 {
5003 DEBUG(D_exec) debug_print_argv(argv);
5004 exim_nullstd(); /* Ensure std{in,out,err} exist */
5005 execv(CS argv[0], (char *const *)argv);
5006 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "exec of \"%s\" (ETRN) failed: %s",
5007 etrn_command, strerror(errno));
5008 _exit(EXIT_FAILURE); /* paranoia */
5009 }
5010
5011 /* Obey this if smtp_serialize and the 2nd fork yielded non-zero. That
5012 is, we are in the first subprocess, after forking again. All we can do
5013 for a failing fork is to log it. Otherwise, wait for the 2nd process to
5014 complete, before removing the serialization. */
5015
5016 if (pid < 0)
5017 log_write(0, LOG_MAIN|LOG_PANIC, "2nd fork for serialized ETRN "
5018 "failed: %s", strerror(errno));
5019 else
5020 {
5021 int status;
5022 DEBUG(D_any) debug_printf("waiting for serialized ETRN process %d\n",
5023 (int)pid);
5024 (void)wait(&status);
5025 DEBUG(D_any) debug_printf("serialized ETRN process %d ended\n",
5026 (int)pid);
5027 }
5028
5029 enq_end(etrn_serialize_key);
5030 _exit(EXIT_SUCCESS);
5031 }
5032
5033 /* Back in the top level SMTP process. Check that we started a subprocess
5034 and restore the signal state. */
5035
5036 if (pid < 0)
5037 {
5038 log_write(0, LOG_MAIN|LOG_PANIC, "fork of process for ETRN failed: %s",
5039 strerror(errno));
5040 smtp_printf("458 Unable to fork process\r\n");
5041 if (smtp_etrn_serialize) enq_end(etrn_serialize_key);
5042 }
5043 else
5044 {
5045 if (user_msg == NULL) smtp_printf("250 OK\r\n");
5046 else smtp_user_msg(US"250", user_msg);
5047 }
5048
5049 signal(SIGCHLD, oldsignal);
5050 break;
5051
5052
5053 case BADARG_CMD:
5054 done = synprot_error(L_smtp_syntax_error, 501, NULL,
5055 US"unexpected argument data");
5056 break;
5057
5058
5059 /* This currently happens only for NULLs, but could be extended. */
5060
5061 case BADCHAR_CMD:
5062 done = synprot_error(L_smtp_syntax_error, 0, NULL, /* Just logs */
5063 US"NULL character(s) present (shown as '?')");
5064 smtp_printf("501 NULL characters are not allowed in SMTP commands\r\n");
5065 break;
5066
5067
5068 case BADSYN_CMD:
5069 SYNC_FAILURE:
5070 if (smtp_inend >= smtp_inbuffer + in_buffer_size)
5071 smtp_inend = smtp_inbuffer + in_buffer_size - 1;
5072 c = smtp_inend - smtp_inptr;
5073 if (c > 150) c = 150;
5074 smtp_inptr[c] = 0;
5075 incomplete_transaction_log(US"sync failure");
5076 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP protocol synchronization error "
5077 "(next input sent too soon: pipelining was%s advertised): "
5078 "rejected \"%s\" %s next input=\"%s\"",
5079 pipelining_advertised? "" : " not",
5080 smtp_cmd_buffer, host_and_ident(TRUE),
5081 string_printing(smtp_inptr));
5082 smtp_notquit_exit(US"synchronization-error", US"554",
5083 US"SMTP synchronization error");
5084 done = 1; /* Pretend eof - drops connection */
5085 break;
5086
5087
5088 case TOO_MANY_NONMAIL_CMD:
5089 s = smtp_cmd_buffer;
5090 while (*s != 0 && !isspace(*s)) s++;
5091 incomplete_transaction_log(US"too many non-mail commands");
5092 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
5093 "nonmail commands (last was \"%.*s\")", host_and_ident(FALSE),
5094 (int)(s - smtp_cmd_buffer), smtp_cmd_buffer);
5095 smtp_notquit_exit(US"bad-commands", US"554", US"Too many nonmail commands");
5096 done = 1; /* Pretend eof - drops connection */
5097 break;
5098
5099 #ifdef EXPERIMENTAL_PROXY
5100 case PROXY_FAIL_IGNORE_CMD:
5101 smtp_printf("503 Command refused, required Proxy negotiation failed\r\n");
5102 break;
5103 #endif
5104
5105 default:
5106 if (unknown_command_count++ >= smtp_max_unknown_commands)
5107 {
5108 log_write(L_smtp_syntax_error, LOG_MAIN,
5109 "SMTP syntax error in \"%s\" %s %s",
5110 string_printing(smtp_cmd_buffer), host_and_ident(TRUE),
5111 US"unrecognized command");
5112 incomplete_transaction_log(US"unrecognized command");
5113 smtp_notquit_exit(US"bad-commands", US"500",
5114 US"Too many unrecognized commands");
5115 done = 2;
5116 log_write(0, LOG_MAIN|LOG_REJECT, "SMTP call from %s dropped: too many "
5117 "unrecognized commands (last was \"%s\")", host_and_ident(FALSE),
5118 string_printing(smtp_cmd_buffer));
5119 }
5120 else
5121 done = synprot_error(L_smtp_syntax_error, 500, NULL,
5122 US"unrecognized command");
5123 break;
5124 }
5125
5126 /* This label is used by goto's inside loops that want to break out to
5127 the end of the command-processing loop. */
5128
5129 COMMAND_LOOP:
5130 last_was_rej_mail = was_rej_mail; /* Remember some last commands for */
5131 last_was_rcpt = was_rcpt; /* protocol error handling */
5132 continue;
5133 }
5134
5135 return done - 2; /* Convert yield values */
5136 }
5137
5138 /* vi: aw ai sw=2
5139 */
5140 /* End of smtp_in.c */