diff options
author | bapt <bapt@FreeBSD.org> | 2016-08-22 07:08:00 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2016-08-22 07:08:00 +0000 |
commit | eaab8d99a5d1f39ace247d8cf82c208410d66b0f (patch) | |
tree | 686ee1f32f31581e315e67bc293217afe86d666d /contrib | |
parent | deabaf2ffde2b7f97d6338ff385fe323ce29c367 (diff) | |
download | FreeBSD-src-eaab8d99a5d1f39ace247d8cf82c208410d66b0f.zip FreeBSD-src-eaab8d99a5d1f39ace247d8cf82c208410d66b0f.tar.gz |
Import Dragonfly Mail Agent snapshort from 20160806 aka v0.11+
Most important change being:
dma - Fix security hole
Affecting DragonFly 4.6 and earlier, Matt Dillon fixed this in base after
finding out from BSDNow Episode 152. Comments following were from his commit
which explains better than I. Just taking his change and putting it here as well.
* dma makes an age-old mistake of not properly checking whether a file
owned by a user is a symlink or not, a bug which the original mail.local
also had.
* Add O_NOFOLLOW to disallow symlinks.
Thanks-to: BSDNow Episode 152, made me dive dma to check when they talked
about the mail.local bug.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/dma/VERSION | 2 | ||||
-rw-r--r-- | contrib/dma/dma-mbox-create.c | 2 | ||||
-rw-r--r-- | contrib/dma/dma.c | 4 | ||||
-rw-r--r-- | contrib/dma/dma.h | 2 | ||||
-rw-r--r-- | contrib/dma/dns.c | 1 | ||||
-rw-r--r-- | contrib/dma/local.c | 2 | ||||
-rw-r--r-- | contrib/dma/net.c | 9 |
7 files changed, 13 insertions, 9 deletions
diff --git a/contrib/dma/VERSION b/contrib/dma/VERSION index 9097bf9..5416288 100644 --- a/contrib/dma/VERSION +++ b/contrib/dma/VERSION @@ -1 +1 @@ -v0.10 +v0.11 diff --git a/contrib/dma/dma-mbox-create.c b/contrib/dma/dma-mbox-create.c index 532a7af..45a4792 100644 --- a/contrib/dma/dma-mbox-create.c +++ b/contrib/dma/dma-mbox-create.c @@ -142,7 +142,7 @@ main(int argc, char **argv) logfail(EX_CANTCREAT, "cannot build mbox path for `%s/%s'", _PATH_MAILDIR, user); } - f = open(fn, O_RDONLY|O_CREAT, 0600); + f = open(fn, O_RDONLY|O_CREAT|O_NOFOLLOW, 0600); if (f < 0) logfail(EX_NOINPUT, "cannt open mbox `%s'", fn); diff --git a/contrib/dma/dma.c b/contrib/dma/dma.c index 684ab05..4f48f48 100644 --- a/contrib/dma/dma.c +++ b/contrib/dma/dma.c @@ -321,7 +321,7 @@ deliver(struct qitem *it) snprintf(errmsg, sizeof(errmsg), "unknown bounce reason"); retry: - syslog(LOG_INFO, "trying delivery"); + syslog(LOG_INFO, "<%s> trying delivery", it->addr); if (it->remote) error = deliver_remote(it); @@ -331,7 +331,7 @@ retry: switch (error) { case 0: delqueue(it); - syslog(LOG_INFO, "delivery successful"); + syslog(LOG_INFO, "<%s> delivery successful", it->addr); exit(EX_OK); case 1: diff --git a/contrib/dma/dma.h b/contrib/dma/dma.h index acf5e44..59341761 100644 --- a/contrib/dma/dma.h +++ b/contrib/dma/dma.h @@ -49,7 +49,7 @@ #define VERSION "DragonFly Mail Agent " DMA_VERSION #define BUF_SIZE 2048 -#define ERRMSG_SIZE 200 +#define ERRMSG_SIZE 1024 #define USERNAME_SIZE 50 #define MIN_RETRY 300 /* 5 minutes */ #define MAX_RETRY (3*60*60) /* retry at least every 3 hours */ diff --git a/contrib/dma/dns.c b/contrib/dma/dns.c index dd9ebfc..bd28c4d 100644 --- a/contrib/dma/dns.c +++ b/contrib/dma/dns.c @@ -34,6 +34,7 @@ */ #include <sys/types.h> +#include <sys/param.h> #include <netinet/in.h> #include <arpa/inet.h> #include <arpa/nameser.h> diff --git a/contrib/dma/local.c b/contrib/dma/local.c index e3e0152..94e2179 100644 --- a/contrib/dma/local.c +++ b/contrib/dma/local.c @@ -196,7 +196,7 @@ retry: goto out; } - error = snprintf(line, sizeof(line), "%sFrom %s\t%s", newline, sender, ctime(&now)); + error = snprintf(line, sizeof(line), "%sFrom %s %s", newline, sender, ctime(&now)); if (error < 0 || (size_t)error >= sizeof(line)) { syslog(LOG_NOTICE, "local delivery deferred: can not write header: %m"); goto out; diff --git a/contrib/dma/net.c b/contrib/dma/net.c index 26935a8..47ee928 100644 --- a/contrib/dma/net.c +++ b/contrib/dma/net.c @@ -372,11 +372,13 @@ deliver_to_host(struct qitem *it, struct mx_hostentry *host) host->host, host->addr, c, neterr); \ snprintf(errmsg, sizeof(errmsg), "%s [%s] did not like our %s:\n%s", \ host->host, host->addr, c, neterr); \ - return (-1); \ + error = -1; \ + goto out; \ } else if (res != exp) { \ syslog(LOG_NOTICE, "remote delivery deferred: %s [%s] failed after %s: %s", \ host->host, host->addr, c, neterr); \ - return (1); \ + error = 1; \ + goto out; \ } /* Check first reply from remote host */ @@ -426,7 +428,8 @@ deliver_to_host(struct qitem *it, struct mx_hostentry *host) syslog(LOG_ERR, "remote delivery failed:" " SMTP login failed: %m"); snprintf(errmsg, sizeof(errmsg), "SMTP login to %s failed", host->host); - return (-1); + error = -1; + goto out; } /* SMTP login is not available, so try without */ else if (error > 0) { |