2 * Copyright (c) 2008-2014, Simon Schubert <2@0x2c.org>.
3 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
5 * This code is derived from software contributed to The DragonFly Project
6 * by Matthias Schmidt <matthias@dragonflybsd.org>, University of Marburg,
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
19 * 3. Neither the name of The DragonFly Project nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific, prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <sys/param.h>
40 #include <sys/queue.h>
42 #include <sys/types.h>
43 #include <sys/socket.h>
44 #include <netinet/in.h>
45 #include <arpa/inet.h>
47 #include <openssl/ssl.h>
48 #include <openssl/err.h>
61 char neterr
[ERRMSG_SIZE
];
69 while ((nerr
= ERR_get_error()) != 0)
72 return (ERR_error_string(oerr
, NULL
));
76 send_remote_command(int fd
, const char* fmt
, ...)
85 s
= vsnprintf(cmd
, sizeof(cmd
) - 2, fmt
, va
);
87 if (s
== sizeof(cmd
) - 2 || s
< 0) {
88 strcpy(neterr
, "Internal error: oversized command string");
92 /* We *know* there are at least two more bytes available */
96 if (((config
.features
& SECURETRANS
) != 0) &&
97 ((config
.features
& NOSSL
) == 0)) {
98 while ((s
= SSL_write(config
.ssl
, (const char*)cmd
, len
)) <= 0) {
99 s
= SSL_get_error(config
.ssl
, s
);
100 if (s
!= SSL_ERROR_WANT_READ
&&
101 s
!= SSL_ERROR_WANT_WRITE
) {
102 strncpy(neterr
, ssl_errstr(), sizeof(neterr
));
110 n
= write(fd
, cmd
+ pos
, len
- pos
);
121 read_remote(int fd
, int extbufsize
, char *extbuf
)
124 size_t pos
, len
, copysize
;
126 int done
= 0, status
= 0, status_running
= 0, extbufpos
= 0;
127 enum { parse_status
, parse_spacedash
, parse_rest
} parsestate
;
129 if (do_timeout(CON_TIMEOUT
, 1) != 0) {
130 snprintf(neterr
, sizeof(neterr
), "Timeout reached");
135 * Remote reading code from femail.c written by Henning Brauer of
136 * OpenBSD and released under a BSD style license.
140 parsestate
= parse_status
;
142 while (!(done
&& parsestate
== parse_status
)) {
145 (pos
> 0 && memchr(buff
+ pos
, '\n', len
- pos
) == NULL
)) {
146 memmove(buff
, buff
+ pos
, len
- pos
);
149 if (((config
.features
& SECURETRANS
) != 0) &&
150 (config
.features
& NOSSL
) == 0) {
151 if ((rlen
= SSL_read(config
.ssl
, buff
+ len
, sizeof(buff
) - len
)) == -1) {
152 strncpy(neterr
, ssl_errstr(), sizeof(neterr
));
156 if ((rlen
= read(fd
, buff
+ len
, sizeof(buff
) - len
)) == -1) {
157 strncpy(neterr
, strerror(errno
), sizeof(neterr
));
163 copysize
= sizeof(neterr
) - strlen(neterr
) - 1;
166 strncat(neterr
, buff
, copysize
);
169 * If there is an external buffer with a size bigger than zero
170 * and as long as there is space in the external buffer and
171 * there are new characters read from the mailserver
172 * copy them to the external buffer
174 if (extbufpos
<= (extbufsize
- 1) && rlen
> 0 && extbufsize
> 0 && extbuf
!= NULL
) {
175 /* do not write over the bounds of the buffer */
176 if(extbufpos
+ rlen
> (extbufsize
- 1)) {
177 rlen
= extbufsize
- extbufpos
;
179 memcpy(extbuf
+ extbufpos
, buff
+ len
- rlen
, rlen
);
186 switch (parsestate
) {
188 for (; pos
< len
; pos
++) {
189 if (isdigit(buff
[pos
])) {
190 status_running
= status_running
* 10 + (buff
[pos
] - '0');
192 status
= status_running
;
194 parsestate
= parse_spacedash
;
200 case parse_spacedash
:
208 /* XXX read capabilities */
212 strcpy(neterr
, "invalid syntax in reply from server");
217 parsestate
= parse_rest
;
222 for (; pos
< len
; pos
++) {
223 if (buff
[pos
] == '\n') {
225 parsestate
= parse_status
;
235 /* chop off trailing newlines */
236 while (neterr
[0] != 0 && strchr("\r\n", neterr
[strlen(neterr
) - 1]) != 0)
237 neterr
[strlen(neterr
) - 1] = 0;
247 * Handle SMTP authentication
250 smtp_login(int fd
, char *login
, char* password
)
255 res
= smtp_auth_md5(fd
, login
, password
);
258 } else if (res
== -2) {
260 * If the return code is -2, then then the login attempt failed,
261 * do not try other login mechanisms
266 if ((config
.features
& INSECURE
) != 0 ||
267 (config
.features
& SECURETRANS
) != 0) {
268 /* Send AUTH command according to RFC 2554 */
269 send_remote_command(fd
, "AUTH LOGIN");
270 if (read_remote(fd
, 0, NULL
) != 3) {
271 syslog(LOG_NOTICE
, "remote delivery deferred:"
272 " AUTH login not available: %s",
277 len
= base64_encode(login
, strlen(login
), &temp
);
280 syslog(LOG_ERR
, "can not encode auth reply: %m");
284 send_remote_command(fd
, "%s", temp
);
286 res
= read_remote(fd
, 0, NULL
);
288 syslog(LOG_NOTICE
, "remote delivery %s: AUTH login failed: %s",
289 res
== 5 ? "failed" : "deferred", neterr
);
290 return (res
== 5 ? -1 : 1);
293 len
= base64_encode(password
, strlen(password
), &temp
);
297 send_remote_command(fd
, "%s", temp
);
299 res
= read_remote(fd
, 0, NULL
);
301 syslog(LOG_NOTICE
, "remote delivery %s: Authentication failed: %s",
302 res
== 5 ? "failed" : "deferred", neterr
);
303 return (res
== 5 ? -1 : 1);
306 syslog(LOG_WARNING
, "non-encrypted SMTP login is disabled in config, so skipping it. ");
314 open_connection(struct mx_hostentry
*h
)
318 syslog(LOG_INFO
, "trying remote delivery to %s [%s] pref %d",
319 h
->host
, h
->addr
, h
->pref
);
321 fd
= socket(h
->ai
.ai_family
, h
->ai
.ai_socktype
, h
->ai
.ai_protocol
);
323 syslog(LOG_INFO
, "socket for %s [%s] failed: %m",
328 if (connect(fd
, (struct sockaddr
*)&h
->sa
, h
->ai
.ai_addrlen
) < 0) {
329 syslog(LOG_INFO
, "connect to %s [%s] failed: %m",
339 close_connection(int fd
)
341 if (config
.ssl
!= NULL
) {
342 if (((config
.features
& SECURETRANS
) != 0) &&
343 ((config
.features
& NOSSL
) == 0))
344 SSL_shutdown(config
.ssl
);
345 SSL_free(config
.ssl
);
352 deliver_to_host(struct qitem
*it
, struct mx_hostentry
*host
)
357 int fd
, error
= 0, do_auth
= 0, res
= 0;
359 if (fseek(it
->mailf
, 0, SEEK_SET
) != 0) {
360 snprintf(errmsg
, sizeof(errmsg
), "can not seek: %s", strerror(errno
));
364 fd
= open_connection(host
);
368 #define READ_REMOTE_CHECK(c, exp) \
369 res = read_remote(fd, 0, NULL); \
371 syslog(LOG_ERR, "remote delivery to %s [%s] failed after %s: %s", \
372 host->host, host->addr, c, neterr); \
373 snprintf(errmsg, sizeof(errmsg), "%s [%s] did not like our %s:\n%s", \
374 host->host, host->addr, c, neterr); \
376 } else if (res != exp) { \
377 syslog(LOG_NOTICE, "remote delivery deferred: %s [%s] failed after %s: %s", \
378 host->host, host->addr, c, neterr); \
382 /* Check first reply from remote host */
383 if ((config
.features
& SECURETRANS
) == 0 ||
384 (config
.features
& STARTTLS
) != 0) {
385 config
.features
|= NOSSL
;
386 READ_REMOTE_CHECK("connect", 2);
388 config
.features
&= ~NOSSL
;
391 if ((config
.features
& SECURETRANS
) != 0) {
392 error
= smtp_init_crypto(fd
, config
.features
);
394 syslog(LOG_DEBUG
, "SSL initialization successful");
398 if ((config
.features
& STARTTLS
) == 0)
399 READ_REMOTE_CHECK("connect", 2);
402 /* XXX allow HELO fallback */
403 /* XXX record ESMTP keywords */
404 send_remote_command(fd
, "EHLO %s", hostname());
405 READ_REMOTE_CHECK("EHLO", 2);
408 * Use SMTP authentication if the user defined an entry for the remote
411 SLIST_FOREACH(a
, &authusers
, next
) {
412 if (strcmp(a
->host
, host
->host
) == 0) {
420 * Check if the user wants plain text login without using
423 syslog(LOG_INFO
, "using SMTP authentication for user %s", a
->login
);
424 error
= smtp_login(fd
, a
->login
, a
->password
);
426 syslog(LOG_ERR
, "remote delivery failed:"
427 " SMTP login failed: %m");
428 snprintf(errmsg
, sizeof(errmsg
), "SMTP login to %s failed", host
->host
);
431 /* SMTP login is not available, so try without */
432 else if (error
> 0) {
433 syslog(LOG_WARNING
, "SMTP login not available. Trying without.");
437 /* XXX send ESMTP ENVID, RET (FULL/HDRS) and 8BITMIME */
438 send_remote_command(fd
, "MAIL FROM:<%s>", it
->sender
);
439 READ_REMOTE_CHECK("MAIL FROM", 2);
441 /* XXX send ESMTP ORCPT */
442 send_remote_command(fd
, "RCPT TO:<%s>", it
->addr
);
443 READ_REMOTE_CHECK("RCPT TO", 2);
445 send_remote_command(fd
, "DATA");
446 READ_REMOTE_CHECK("DATA", 3);
449 while (!feof(it
->mailf
)) {
450 if (fgets(line
, sizeof(line
), it
->mailf
) == NULL
)
452 linelen
= strlen(line
);
453 if (linelen
== 0 || line
[linelen
- 1] != '\n') {
454 syslog(LOG_CRIT
, "remote delivery failed: corrupted queue file");
455 snprintf(errmsg
, sizeof(errmsg
), "corrupted queue file");
460 /* Remove trailing \n's and escape leading dots */
464 * If the first character is a dot, we escape it so the line
470 if (send_remote_command(fd
, "%s", line
) != (ssize_t
)linelen
+1) {
471 syslog(LOG_NOTICE
, "remote delivery deferred: write error");
477 send_remote_command(fd
, ".");
478 READ_REMOTE_CHECK("final DATA", 2);
480 send_remote_command(fd
, "QUIT");
481 if (read_remote(fd
, 0, NULL
) != 2)
482 syslog(LOG_INFO
, "remote delivery succeeded but QUIT failed: %s", neterr
);
485 close_connection(fd
);
490 deliver_remote(struct qitem
*it
)
492 struct mx_hostentry
*hosts
, *h
;
495 int error
= 1, smarthost
= 0;
499 /* Smarthost support? */
500 if (config
.smarthost
!= NULL
) {
501 host
= config
.smarthost
;
503 syslog(LOG_INFO
, "using smarthost (%s:%i)", host
, port
);
506 host
= strrchr(it
->addr
, '@');
507 /* Should not happen */
509 snprintf(errmsg
, sizeof(errmsg
), "Internal error: badly formed address %s",
513 /* Step over the @ */
518 error
= dns_get_mx_list(host
, port
, &hosts
, smarthost
);
520 snprintf(errmsg
, sizeof(errmsg
), "DNS lookup failure: host %s not found", host
);
521 syslog(LOG_NOTICE
, "remote delivery %s: DNS lookup failure: host %s not found",
522 error
< 0 ? "failed" : "deferred",
527 for (h
= hosts
; *h
->host
!= 0; h
++) {
528 switch (deliver_to_host(it
, h
)) {