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