864 lines
18 KiB
C
864 lines
18 KiB
C
/* $NetBSD: spamd-setup.c,v 1.2 2004/06/22 15:53:18 itojun Exp $ */
|
|
/* $OpenBSD: spamd-setup.c,v 1.17 2004/02/26 08:18:56 deraadt Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 2003 Bob Beck. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <err.h>
|
|
#include <netdb.h>
|
|
#include <machine/endian.h>
|
|
#include <zlib.h>
|
|
|
|
#define PATH_FTP "/usr/bin/ftp"
|
|
#define PATH_PFCTL "/sbin/pfctl"
|
|
#define PATH_SPAMD_CONF "/etc/spamd.conf"
|
|
#define SPAMD_ARG_MAX 256 /* max # of args to an exec */
|
|
|
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
struct cidr {
|
|
u_int32_t addr;
|
|
u_int8_t bits;
|
|
};
|
|
|
|
struct bl {
|
|
u_int32_t addr;
|
|
int8_t b;
|
|
int8_t w;
|
|
};
|
|
|
|
struct blacklist {
|
|
char *name;
|
|
char *message;
|
|
struct bl *bl;
|
|
size_t blc, bls;
|
|
u_int8_t black;
|
|
int count;
|
|
};
|
|
|
|
u_int32_t imask(u_int8_t b);
|
|
u_int8_t maxblock(u_int32_t addr, u_int8_t bits);
|
|
u_int8_t maxdiff(u_int32_t a, u_int32_t b);
|
|
struct cidr *range2cidrlist(u_int32_t start, u_int32_t end);
|
|
void cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end);
|
|
char *atop(u_int32_t addr);
|
|
u_int32_t ptoa(char *cp);
|
|
int parse_netblock(char *buf, struct bl *start, struct bl *end,
|
|
int white);
|
|
int open_child(char *file, char **argv);
|
|
int fetch(char *url);
|
|
int open_file(char *method, char *file);
|
|
char *fix_quoted_colons(char *buf);
|
|
void do_message(FILE *sdc, char *msg);
|
|
struct bl *add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf,
|
|
int white);
|
|
int cmpbl(const void *a, const void *b);
|
|
struct cidr **collapse_blacklist(struct bl *bl, int blc);
|
|
int configure_spamd(u_short dport, char *name, char *message,
|
|
struct cidr **blacklists);
|
|
int configure_pf(struct cidr **blacklists);
|
|
int getlist(char ** db_array, char *name, struct blacklist *blist,
|
|
struct blacklist *blistnew);
|
|
|
|
int debug;
|
|
int dryrun;
|
|
|
|
u_int32_t
|
|
imask(u_int8_t b)
|
|
{
|
|
u_int32_t j = 0;
|
|
int i;
|
|
|
|
for (i = 31; i > 31 - b; --i)
|
|
j |= (1 << i);
|
|
return(j);
|
|
}
|
|
|
|
u_int8_t
|
|
maxblock(u_int32_t addr, u_int8_t bits)
|
|
{
|
|
while (bits > 0) {
|
|
u_int32_t m = imask(bits - 1);
|
|
|
|
if ((addr & m) != addr)
|
|
return (bits);
|
|
bits--;
|
|
}
|
|
return(bits);
|
|
}
|
|
|
|
u_int8_t
|
|
maxdiff(u_int32_t a, u_int32_t b)
|
|
{
|
|
u_int8_t bits = 0;
|
|
|
|
b++;
|
|
while (bits < 32) {
|
|
u_int32_t m = imask(bits);
|
|
|
|
if ((a & m) != (b & m))
|
|
return (bits);
|
|
bits++;
|
|
}
|
|
return(bits);
|
|
}
|
|
|
|
struct cidr *
|
|
range2cidrlist(u_int32_t start, u_int32_t end)
|
|
{
|
|
struct cidr *list = NULL;
|
|
size_t cs = 0, cu = 0;
|
|
|
|
while (end >= start) {
|
|
u_int8_t maxsize = maxblock(start, 32);
|
|
u_int8_t diff = maxdiff(start, end);
|
|
|
|
maxsize = MAX(maxsize, diff);
|
|
if (cs == cu) {
|
|
struct cidr *tmp;
|
|
|
|
tmp = realloc(list, (cs + 32) * sizeof(struct cidr));
|
|
if (tmp == NULL)
|
|
errx(1, "malloc failed");
|
|
list = tmp;
|
|
cs += 32;
|
|
}
|
|
list[cu].addr = start;
|
|
list[cu].bits = maxsize;
|
|
cu++;
|
|
list[cu].addr = 0;
|
|
list[cu].bits = 0;
|
|
start = start + (1 << (32 - maxsize));
|
|
}
|
|
return(list);
|
|
}
|
|
|
|
void
|
|
cidr2range(struct cidr cidr, u_int32_t *start, u_int32_t *end)
|
|
{
|
|
*start = cidr.addr;
|
|
*end = cidr.addr + (1 << (32 - cidr.bits)) - 1;
|
|
}
|
|
|
|
char *
|
|
atop(u_int32_t addr)
|
|
{
|
|
struct in_addr in;
|
|
|
|
memset(&in, 0, sizeof(in));
|
|
in.s_addr = htonl(addr);
|
|
return(inet_ntoa(in));
|
|
}
|
|
|
|
u_int32_t
|
|
ptoa(char *cp)
|
|
{
|
|
struct in_addr in;
|
|
|
|
memset(&in, 0, sizeof(in));
|
|
(void) inet_aton(cp, &in);
|
|
return ntohl(in.s_addr);
|
|
}
|
|
|
|
int
|
|
parse_netblock(char *buf, struct bl *start, struct bl *end, int white)
|
|
{
|
|
char astring[16], astring2[16];
|
|
unsigned maskbits;
|
|
|
|
/* skip leading spaces */
|
|
while (*buf == ' ')
|
|
buf++;
|
|
/* bail if it's a comment */
|
|
if (*buf == '#')
|
|
return(0);
|
|
/* otherwise, look for a netblock of some sort */
|
|
if (sscanf(buf, "%15[^/]/%u", astring, &maskbits) == 2) {
|
|
/* looks like a cidr */
|
|
struct cidr c;
|
|
|
|
memset(&c.addr, 0, sizeof(c.addr));
|
|
if (inet_net_pton(AF_INET, astring, &c.addr, sizeof(c.addr))
|
|
== -1)
|
|
return(0);
|
|
c.addr = ntohl(c.addr);
|
|
if (maskbits > 32)
|
|
return(0);
|
|
c.bits = maskbits;
|
|
cidr2range(c, &start->addr, &end->addr);
|
|
end->addr += 1;
|
|
} else if (sscanf(buf, "%15[0123456789.]%*[ -]%15[0123456789.]",
|
|
astring, astring2) == 2) {
|
|
/* looks like start - end */
|
|
memset(&start->addr, 0, sizeof(start->addr));
|
|
memset(&end->addr, 0, sizeof(end->addr));
|
|
if (inet_net_pton(AF_INET, astring, &start->addr,
|
|
sizeof(start->addr)) == -1)
|
|
return(0);
|
|
start->addr = ntohl(start->addr);
|
|
if (inet_net_pton(AF_INET, astring2, &end->addr,
|
|
sizeof(end->addr)) == -1)
|
|
return(0);
|
|
end->addr = ntohl(end->addr) + 1;
|
|
if (start > end)
|
|
return(0);
|
|
} else if (sscanf(buf, "%15[0123456789.]", astring) == 1) {
|
|
/* just a single address */
|
|
memset(&start->addr, 0, sizeof(start->addr));
|
|
if (inet_net_pton(AF_INET, astring, &start->addr,
|
|
sizeof(start->addr)) == -1)
|
|
return(0);
|
|
start->addr = ntohl(start->addr);
|
|
end->addr = start->addr + 1;
|
|
} else
|
|
return(0);
|
|
|
|
if (white) {
|
|
start->b = 0;
|
|
start->w = 1;
|
|
end->b = 0;
|
|
end->w = -1;
|
|
} else {
|
|
start->b = 1;
|
|
start->w = 0;
|
|
end->b = -1;
|
|
end->w = 0;
|
|
}
|
|
return(1);
|
|
}
|
|
|
|
int
|
|
open_child(char *file, char **argv)
|
|
{
|
|
pid_t pid;
|
|
int pdes[2];
|
|
|
|
if (pipe(pdes) != 0)
|
|
return(-1);
|
|
switch (pid = fork()) {
|
|
case -1:
|
|
close(pdes[0]);
|
|
close(pdes[1]);
|
|
return(-1);
|
|
case 0:
|
|
/* child */
|
|
close(pdes[0]);
|
|
if (pdes[1] != STDOUT_FILENO) {
|
|
dup2(pdes[1], STDOUT_FILENO);
|
|
close(pdes[1]);
|
|
}
|
|
execvp(file, argv);
|
|
_exit(1);
|
|
}
|
|
|
|
/* parent */
|
|
close(pdes[1]);
|
|
return(pdes[0]);
|
|
}
|
|
|
|
int
|
|
fetch(char *url)
|
|
{
|
|
char *argv[6]= {"ftp", "-V", "-o", "-", url, NULL};
|
|
|
|
if (debug)
|
|
fprintf(stderr, "Getting %s\n", url);
|
|
|
|
return open_child(PATH_FTP, argv);
|
|
}
|
|
|
|
int
|
|
open_file(char *method, char *file)
|
|
{
|
|
char *url;
|
|
|
|
if ((method == NULL) || (strcmp(method, "file") == 0))
|
|
return(open(file, O_RDONLY));
|
|
if ((strcmp(method, "http") == 0) ||
|
|
strcmp(method, "ftp") == 0) {
|
|
int i;
|
|
|
|
asprintf(&url, "%s://%s", method, file);
|
|
if (url == NULL)
|
|
return(-1);
|
|
i = fetch(url);
|
|
free(url);
|
|
return(i);
|
|
} else if (strcmp(method, "exec") == 0) {
|
|
char **ap, **argv;
|
|
int len, i, oerrno;
|
|
|
|
len = strlen(file);
|
|
argv = malloc(len * sizeof(char *));
|
|
if (argv == NULL)
|
|
errx(1, "malloc failed");
|
|
for (ap = argv; ap < &argv[len - 1] &&
|
|
(*ap = strsep(&file, " \t")) != NULL;) {
|
|
if (**ap != '\0')
|
|
ap++;
|
|
}
|
|
*ap = NULL;
|
|
i = open_child(argv[0], argv);
|
|
oerrno = errno;
|
|
free(argv);
|
|
errno = oerrno;
|
|
return(i);
|
|
}
|
|
errx(1, "Unknown method %s", method);
|
|
return(-1); /* NOTREACHED */
|
|
}
|
|
|
|
/*
|
|
* fix_quoted_colons walks through a buffer returned by cgetent. We
|
|
* look for quoted strings, to escape colons (:) in quoted strings for
|
|
* getcap by replacing them with \C so cgetstr() deals with it correctly
|
|
* without having to see the \C bletchery in a configuration file that
|
|
* needs to have urls in it. Frees the buffer passed to it, passes back
|
|
* another larger one, with can be used with cgetxxx(), like the original
|
|
* buffer, it must be freed by the caller.
|
|
* This should really be a temporary fix until there is a sanctioned
|
|
* way to make getcap(3) handle quoted strings like this in a nicer
|
|
* way.
|
|
*/
|
|
char *
|
|
fix_quoted_colons(char *buf)
|
|
{
|
|
int nbs = 0, i = 0, j = 0, in = 0;
|
|
char *newbuf, last;
|
|
|
|
nbs = strlen(buf) + 128;
|
|
newbuf = malloc(nbs);
|
|
if (newbuf == NULL)
|
|
return NULL;
|
|
last = '\0';
|
|
for (i = 0; i < strlen(buf); i++) {
|
|
switch (buf[i]) {
|
|
case ':':
|
|
if (in) {
|
|
newbuf[j++] = '\\';
|
|
newbuf[j++] = 'C';
|
|
} else
|
|
newbuf[j++] = buf[i];
|
|
break;
|
|
case '"':
|
|
if (last != '\\')
|
|
in = !in;
|
|
newbuf[j++] = buf[i];
|
|
break;
|
|
default:
|
|
newbuf[j++] = buf[i];
|
|
}
|
|
if (j == nbs) {
|
|
char *tmp;
|
|
|
|
nbs += 128;
|
|
tmp = realloc(newbuf, nbs);
|
|
if (tmp == NULL)
|
|
errx(1, "malloc failed");
|
|
newbuf = tmp;
|
|
}
|
|
}
|
|
free(buf);
|
|
newbuf[j] = '\0';
|
|
return(newbuf);
|
|
}
|
|
|
|
void
|
|
do_message(FILE *sdc, char *msg)
|
|
{
|
|
int i, n, bu = 0, bs = 0, len;
|
|
char *buf = NULL, last;
|
|
|
|
len = strlen(msg);
|
|
if (msg[0] == '"' && msg[len - 1] == '"') {
|
|
/* quoted msg, escape newlines and send it out */
|
|
msg[len - 1] = '\0';
|
|
buf = msg+1;
|
|
bu = len - 2;
|
|
goto sendit;
|
|
} else {
|
|
int fd;
|
|
|
|
/*
|
|
* message isn't quoted - try to open a local
|
|
* file and read the message from it.
|
|
*/
|
|
fd = open(msg, O_RDONLY);
|
|
if (fd == -1)
|
|
err(1, "Can't open message from %s", msg);
|
|
for (;;) {
|
|
if (bu == bs) {
|
|
char *tmp;
|
|
|
|
tmp = realloc(buf, bs + 8192);
|
|
if (tmp == NULL)
|
|
errx(1, "malloc failed");
|
|
bs += 8192;
|
|
buf = tmp;
|
|
}
|
|
|
|
n = read(fd, buf + bu, bs - bu);
|
|
if (n == 0) {
|
|
goto sendit;
|
|
} else if (n == -1) {
|
|
err(1, "Can't read from %s", msg);
|
|
} else
|
|
bu += n;
|
|
}
|
|
buf[bu]='\0';
|
|
}
|
|
sendit:
|
|
fprintf(sdc, ";\"");
|
|
last = '\0';
|
|
for (i = 0; i < bu; i++) {
|
|
/* handle escaping the things spamd wants */
|
|
switch (buf[i]) {
|
|
case 'n':
|
|
if (last == '\\')
|
|
fprintf(sdc, "\\\\n");
|
|
else
|
|
fputc('n', sdc);
|
|
last = '\0';
|
|
break;
|
|
case '\n':
|
|
fprintf(sdc, "\\n");
|
|
last = '\0';
|
|
break;
|
|
case '"':
|
|
fputc('\\', sdc);
|
|
/* fall through */
|
|
default:
|
|
fputc(buf[i], sdc);
|
|
last = '\0';
|
|
}
|
|
}
|
|
fputc('"', sdc);
|
|
if (bs != 0)
|
|
free(buf);
|
|
}
|
|
|
|
/* retrieve a list from fd. add to blacklist bl */
|
|
struct bl *
|
|
add_blacklist(struct bl *bl, int *blc, int *bls, gzFile gzf, int white)
|
|
{
|
|
int i, n, start, bu = 0, bs = 0, serrno = 0;
|
|
char *buf = NULL;
|
|
|
|
for (;;) {
|
|
/* read in gzf, then parse */
|
|
if (bu == bs) {
|
|
char *tmp;
|
|
|
|
tmp = realloc(buf, bs + 8192);
|
|
if (tmp == NULL) {
|
|
free(buf);
|
|
buf = NULL;
|
|
bs = 0;
|
|
serrno = errno;
|
|
goto bldone;
|
|
}
|
|
bs += 8192;
|
|
buf = tmp;
|
|
}
|
|
|
|
n = gzread(gzf, buf + bu, bs - bu);
|
|
if (n == 0)
|
|
goto parse;
|
|
else if (n == -1) {
|
|
serrno = errno;
|
|
goto bldone;
|
|
} else
|
|
bu += n;
|
|
}
|
|
parse:
|
|
start = 0;
|
|
for (i = 0; i < bu; i++) {
|
|
if (*blc == *bls) {
|
|
struct bl *tmp;
|
|
|
|
*bls += 1024;
|
|
tmp = realloc(bl, *bls * sizeof(struct bl));
|
|
if (tmp == NULL) {
|
|
*bls -= 1024;
|
|
serrno = errno;
|
|
goto bldone;
|
|
}
|
|
bl = tmp;
|
|
}
|
|
if (buf[i] == '\n') {
|
|
buf[i] = '\0';
|
|
if (parse_netblock(buf + start,
|
|
bl + *blc, bl + *blc + 1, white))
|
|
*blc+=2;
|
|
start = i+1;
|
|
}
|
|
}
|
|
if (bu == 0)
|
|
errno = EIO;
|
|
bldone:
|
|
if (buf)
|
|
free(buf);
|
|
if (serrno)
|
|
errno = serrno;
|
|
return (bl);
|
|
}
|
|
|
|
int
|
|
cmpbl(const void *a, const void *b)
|
|
{
|
|
if (((struct bl *)a)->addr > ((struct bl *) b)->addr)
|
|
return(1);
|
|
if (((struct bl *)a)->addr < ((struct bl *) b)->addr)
|
|
return(-1);
|
|
return(0);
|
|
}
|
|
|
|
/*
|
|
* collapse_blacklist takes blacklist/whitelist entries sorts, removes
|
|
* overlaps and whitelist portions, and returns netblocks to blacklist
|
|
* as lists of nonoverlapping cidr blocks suitable for feeding in
|
|
* printable form to pfctl or spamd.
|
|
*/
|
|
struct cidr **
|
|
collapse_blacklist(struct bl *bl, int blc)
|
|
{
|
|
int bs = 0, ws = 0, state=0, cli, i;
|
|
u_int32_t bstart = 0;
|
|
struct cidr **cl;
|
|
|
|
if (blc == 0)
|
|
return(NULL);
|
|
cl = malloc((blc / 2) * sizeof(struct cidr));
|
|
if (cl == NULL) {
|
|
return (NULL);
|
|
}
|
|
qsort(bl, blc, sizeof(struct bl), cmpbl);
|
|
cli = 0;
|
|
cl[cli] = NULL;
|
|
for (i = 0; i < blc;) {
|
|
int laststate = state;
|
|
u_int32_t addr = bl[i].addr;
|
|
|
|
do {
|
|
bs += bl[i].b;
|
|
ws += bl[i].w;
|
|
i++;
|
|
} while (bl[i].addr == addr);
|
|
if (state == 1 && bs == 0)
|
|
state = 0;
|
|
else if (state == 0 && bs > 0)
|
|
state = 1;
|
|
if (ws > 0)
|
|
state = 0;
|
|
if (laststate == 0 && state == 1) {
|
|
/* start blacklist */
|
|
bstart = addr;
|
|
}
|
|
if (laststate == 1 && state == 0) {
|
|
/* end blacklist */
|
|
cl[cli++] = range2cidrlist(bstart, addr - 1);
|
|
cl[cli] = NULL;
|
|
}
|
|
laststate = state;
|
|
}
|
|
return (cl);
|
|
}
|
|
|
|
int
|
|
configure_spamd(u_short dport, char *name, char *message,
|
|
struct cidr **blacklists)
|
|
{
|
|
int lport = IPPORT_RESERVED - 1, s;
|
|
struct sockaddr_in sin;
|
|
FILE* sdc;
|
|
|
|
s = rresvport(&lport);
|
|
if (s == -1)
|
|
return(-1);
|
|
memset(&sin, 0, sizeof sin);
|
|
sin.sin_len = sizeof(sin);
|
|
sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
|
|
sin.sin_family = AF_INET;
|
|
sin.sin_port = htons(dport);
|
|
if (connect(s, (struct sockaddr *)&sin, sizeof sin) == -1)
|
|
return(-1);
|
|
sdc = fdopen(s, "w");
|
|
if (sdc == NULL)
|
|
return(-1);
|
|
fprintf(sdc, "%s", name);
|
|
do_message(sdc, message);
|
|
while (*blacklists != NULL) {
|
|
struct cidr *b = *blacklists;
|
|
while (b->addr != 0) {
|
|
fprintf(sdc, ";%s/%u", atop(b->addr), (b->bits));
|
|
b++;
|
|
}
|
|
blacklists++;
|
|
}
|
|
fputc('\n', sdc);
|
|
fclose(sdc);
|
|
close(s);
|
|
return(0);
|
|
}
|
|
|
|
|
|
int
|
|
configure_pf(struct cidr **blacklists)
|
|
{
|
|
char *argv[9]= {"pfctl", "-q", "-t", "spamd", "-T", "replace",
|
|
"-f" "-", NULL};
|
|
static FILE *pf = NULL;
|
|
int pdes[2];
|
|
pid_t pid;
|
|
|
|
if (pf == NULL) {
|
|
if (pipe(pdes) != 0)
|
|
return(-1);
|
|
switch (pid = fork()) {
|
|
case -1:
|
|
close(pdes[0]);
|
|
close(pdes[1]);
|
|
return(-1);
|
|
case 0:
|
|
/* child */
|
|
close(pdes[1]);
|
|
if (pdes[0] != STDIN_FILENO) {
|
|
dup2(pdes[0], STDIN_FILENO);
|
|
close(pdes[0]);
|
|
}
|
|
execvp(PATH_PFCTL, argv);
|
|
_exit(1);
|
|
}
|
|
|
|
/* parent */
|
|
close(pdes[0]);
|
|
pf = fdopen(pdes[1], "w");
|
|
if (pf == NULL) {
|
|
close(pdes[1]);
|
|
return(-1);
|
|
}
|
|
}
|
|
while (*blacklists != NULL) {
|
|
struct cidr *b = *blacklists;
|
|
|
|
while (b->addr != 0) {
|
|
fprintf(pf, "%s/%u\n", atop(b->addr), (b->bits));
|
|
b++;
|
|
}
|
|
blacklists++;
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
int
|
|
getlist(char ** db_array, char *name, struct blacklist *blist,
|
|
struct blacklist *blistnew)
|
|
{
|
|
char *buf, *method, *file, *message;
|
|
int blc, bls, fd, black = 0;
|
|
struct bl *bl = NULL;
|
|
gzFile gzf;
|
|
|
|
if (cgetent(&buf, (const char * const *)db_array, name) != 0)
|
|
err(1, "Can't find \"%s\" in spamd config", name);
|
|
buf = fix_quoted_colons(buf);
|
|
if (cgetcap(buf, "black", ':') != NULL) {
|
|
/* use new list */
|
|
black = 1;
|
|
blc = blistnew->blc;
|
|
bls = blistnew->bls;
|
|
bl = blistnew->bl;
|
|
} else if (cgetcap(buf, "white", ':') != NULL) {
|
|
/* apply to most recent blacklist */
|
|
black = 0;
|
|
blc = blist->blc;
|
|
bls = blist->bls;
|
|
bl = blist->bl;
|
|
} else
|
|
errx(1, "Must have \"black\" or \"white\" in %s", name);
|
|
|
|
switch (cgetstr(buf, "msg", &message)) {
|
|
case -1:
|
|
if (black)
|
|
errx(1, "No msg for blacklist \"%s\"", name);
|
|
break;
|
|
case -2:
|
|
errx(1, "malloc failed");
|
|
}
|
|
|
|
switch (cgetstr(buf, "method", &method)) {
|
|
case -1:
|
|
method = NULL;
|
|
break;
|
|
case -2:
|
|
errx(1, "malloc failed");
|
|
}
|
|
|
|
switch (cgetstr(buf, "file", &file)) {
|
|
case -1:
|
|
errx(1, "No file given for %slist %s",
|
|
black ? "black" : "white", name);
|
|
case -2:
|
|
errx(1, "malloc failed");
|
|
default:
|
|
fd = open_file(method, file);
|
|
if (fd == -1)
|
|
err(1, "Can't open %s by %s method",
|
|
file, method ? method : "file");
|
|
free(method);
|
|
free(file);
|
|
gzf = gzdopen(fd, "r");
|
|
if (gzf == NULL)
|
|
errx(1, "gzdopen");
|
|
}
|
|
bl = add_blacklist(bl, &blc, &bls, gzf, !black);
|
|
gzclose(gzf);
|
|
if (bl == NULL) {
|
|
warn("Could not add %slist %s", black ? "black" : "white",
|
|
name);
|
|
return(0);
|
|
}
|
|
if (black) {
|
|
blistnew->message = message;
|
|
blistnew->name = name;
|
|
blistnew->black = black;
|
|
blistnew->bl = bl;
|
|
blistnew->blc = blc;
|
|
blistnew->bls = bls;
|
|
} else {
|
|
/* whitelist applied to last active blacklist */
|
|
blist->bl = bl;
|
|
blist->blc = blc;
|
|
blist->bls = bls;
|
|
}
|
|
if (debug)
|
|
fprintf(stderr, "%slist %s %d entries\n",
|
|
black ? "black" : "white", name, blc / 2);
|
|
return(black);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
size_t dbs, dbc, blc, bls, black, white;
|
|
char **db_array, *buf, *name;
|
|
struct blacklist *blists;
|
|
struct servent *ent;
|
|
int i, ch;
|
|
|
|
while ((ch = getopt(argc, argv, "nd")) != -1) {
|
|
switch (ch) {
|
|
case 'n':
|
|
dryrun = 1;
|
|
break;
|
|
case 'd':
|
|
debug = 1;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ((ent = getservbyname("spamd-cfg", "tcp")) == NULL)
|
|
errx(1, "cannot find service \"spamd-cfg\" in /etc/services");
|
|
ent->s_port = ntohs(ent->s_port);
|
|
|
|
dbs = argc + 2;
|
|
dbc = 0;
|
|
db_array = calloc(dbs, sizeof(char *));
|
|
if (db_array == NULL)
|
|
errx(1, "malloc failed");
|
|
|
|
db_array[dbc]= PATH_SPAMD_CONF;
|
|
dbc++;
|
|
for (i = 1; i < argc; i++)
|
|
db_array[dbc++] = argv[i];
|
|
|
|
blists = NULL;
|
|
blc = bls = 0;
|
|
if (cgetent(&buf, (const char * const *)db_array, "all") != 0)
|
|
err(1, "Can't find \"all\" in spamd config");
|
|
name = strsep(&buf, ": \t"); /* skip "all" at start */
|
|
blc = 0;
|
|
while ((name = strsep(&buf, ": \t")) != NULL) {
|
|
if (*name) {
|
|
/* extract config in order specified in "all" tag */
|
|
if (blc == bls) {
|
|
struct blacklist *tmp;
|
|
|
|
bls += 1024;
|
|
tmp = realloc(blists,
|
|
bls * sizeof(struct blacklist));
|
|
if (tmp == NULL)
|
|
errx(1, "malloc failed");
|
|
blists = tmp;
|
|
}
|
|
if (blc == 0)
|
|
black = white = 0;
|
|
else {
|
|
white = blc - 1;
|
|
black = blc;
|
|
}
|
|
memset(&blists[black], 0, sizeof(struct blacklist));
|
|
blc += getlist(db_array, name, &blists[white],
|
|
&blists[black]);
|
|
}
|
|
}
|
|
for (i = 0; i < blc; i++) {
|
|
struct cidr **cidrs, **tmp;
|
|
|
|
if (blists[i].blc > 0) {
|
|
cidrs = collapse_blacklist(blists[i].bl,
|
|
blists[i].blc);
|
|
if (cidrs == NULL)
|
|
errx(1, "malloc failed");
|
|
if (dryrun)
|
|
continue;
|
|
|
|
if (configure_spamd(ent->s_port, blists[i].name,
|
|
blists[i].message, cidrs) == -1)
|
|
err(1, "Can't connect to spamd on port %d",
|
|
ent->s_port);
|
|
if (configure_pf(cidrs) == -1)
|
|
err(1, "pfctl failed");
|
|
tmp = cidrs;
|
|
while (*tmp != NULL)
|
|
free(*tmp++);
|
|
free(cidrs);
|
|
free(blists[i].bl);
|
|
}
|
|
}
|
|
return (0);
|
|
}
|