1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
/* $OpenBSD: spamdb.c,v 1.23 2007/05/31 20:00:16 cnst Exp $ */
/*
* Copyright (c) 2004 Bob Beck. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <db.h>
#include <err.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <netdb.h>
#include <ctype.h>
#include <errno.h>
#include "grey.h"
/* things we may add/delete from the db */
#define WHITE 0
#define TRAPHIT 1
#define SPAMTRAP 2
int dblist(DB *);
int dbupdate(DB *, char *, int, int);
int
dbupdate(DB *db, char *ip, int add, int type)
{
DBT dbk, dbd;
struct gdata gd;
time_t now;
int r;
struct addrinfo hints, *res;
now = time(NULL);
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM; /*dummy*/
hints.ai_flags = AI_NUMERICHOST;
if (add && (type == TRAPHIT || type == WHITE)) {
if (getaddrinfo(ip, NULL, &hints, &res) != 0) {
warnx("invalid ip address %s", ip);
goto bad;
}
freeaddrinfo(res);
}
memset(&dbk, 0, sizeof(dbk));
dbk.size = strlen(ip);
dbk.data = ip;
memset(&dbd, 0, sizeof(dbd));
if (!add) {
/* remove entry */
r = db->get(db, &dbk, &dbd, 0);
if (r == -1) {
warn("db->get failed");
goto bad;
}
if (r) {
warnx("no entry for %s", ip);
goto bad;
} else if (db->del(db, &dbk, 0)) {
warn("db->del failed");
goto bad;
}
} else {
/* add or update entry */
r = db->get(db, &dbk, &dbd, 0);
if (r == -1) {
warn("db->get failed");
goto bad;
}
if (r) {
int i;
/* new entry */
memset(&gd, 0, sizeof(gd));
gd.first = now;
gd.bcount = 1;
switch (type) {
case WHITE:
gd.pass = now;
gd.expire = now + WHITEEXP;
break;
case TRAPHIT:
gd.expire = now + TRAPEXP;
gd.pcount = -1;
break;
case SPAMTRAP:
gd.expire = 0;
gd.pcount = -2;
/* ensure address is lower case*/
for (i = 0; ip[i] != '\0'; i++)
if (isupper(ip[i]))
ip[i] = (char)tolower(ip[i]);
break;
default:
errx(-1, "unknown type %d", type);
}
memset(&dbk, 0, sizeof(dbk));
dbk.size = strlen(ip);
dbk.data = ip;
memset(&dbd, 0, sizeof(dbd));
dbd.size = sizeof(gd);
dbd.data = &gd;
r = db->put(db, &dbk, &dbd, 0);
if (r) {
warn("db->put failed");
goto bad;
}
} else {
if (dbd.size != sizeof(gd)) {
/* whatever this is, it doesn't belong */
db->del(db, &dbk, 0);
goto bad;
}
memcpy(&gd, dbd.data, sizeof(gd));
gd.pcount++;
switch (type) {
case WHITE:
gd.pass = now;
gd.expire = now + WHITEEXP;
break;
case TRAPHIT:
gd.expire = now + TRAPEXP;
gd.pcount = -1;
break;
case SPAMTRAP:
gd.expire = 0; /* XXX */
gd.pcount = -2;
break;
default:
errx(-1, "unknown type %d", type);
}
memset(&dbk, 0, sizeof(dbk));
dbk.size = strlen(ip);
dbk.data = ip;
memset(&dbd, 0, sizeof(dbd));
dbd.size = sizeof(gd);
dbd.data = &gd;
r = db->put(db, &dbk, &dbd, 0);
if (r) {
warn("db->put failed");
goto bad;
}
}
}
return (0);
bad:
return (1);
}
int
dblist(DB *db)
{
DBT dbk, dbd;
struct gdata gd;
int r;
/* walk db, list in text format */
memset(&dbk, 0, sizeof(dbk));
memset(&dbd, 0, sizeof(dbd));
for (r = db->seq(db, &dbk, &dbd, R_FIRST); !r;
r = db->seq(db, &dbk, &dbd, R_NEXT)) {
char *a, *cp;
if ((dbk.size < 1) || dbd.size != sizeof(struct gdata)) {
db->close(db);
errx(1, "bogus size db entry - bad db file?");
}
memcpy(&gd, dbd.data, sizeof(gd));
a = malloc(dbk.size + 1);
if (a == NULL)
err(1, "malloc");
memcpy(a, dbk.data, dbk.size);
a[dbk.size]='\0';
cp = strchr(a, '\n');
if (cp == NULL) {
/* this is a non-greylist entry */
switch (gd.pcount) {
case -1: /* spamtrap hit, with expiry time */
printf("TRAPPED|%s|%d\n", a, gd.expire);
break;
case -2: /* spamtrap address */
printf("SPAMTRAP|%s\n", a);
break;
default: /* whitelist */
printf("WHITE|%s|||%d|%d|%d|%d|%d\n", a,
gd.first, gd.pass, gd.expire, gd.bcount,
gd.pcount);
break;
}
} else {
char *helo, *from, *to;
/* greylist entry */
*cp = '\0';
helo = cp + 1;
from = strchr(helo, '\n');
if (from == NULL) {
warnx("No from part in grey key %s", a);
free(a);
goto bad;
}
*from = '\0';
from++;
to = strchr(from, '\n');
if (to == NULL) {
/* probably old format - print it the
* with an empty HELO field instead
* of erroring out.
*/
printf("GREY|%s|%s|%s|%s|%d|%d|%d|%d|%d\n",
a, "", helo, from, gd.first, gd.pass,
gd.expire, gd.bcount, gd.pcount);
} else {
*to = '\0';
to++;
printf("GREY|%s|%s|%s|%s|%d|%d|%d|%d|%d\n",
a, helo, from, to, gd.first, gd.pass,
gd.expire, gd.bcount, gd.pcount);
}
}
free(a);
}
db->close(db);
db = NULL;
return (0);
bad:
db->close(db);
db = NULL;
errx(1, "incorrect db format entry");
/* NOTREACHED */
return (1);
}
extern char *__progname;
static int
usage(void)
{
fprintf(stderr, "usage: %s [[-Tt] -a keys] [[-Tt] -d keys]\n", __progname);
exit(1);
/* NOTREACHED */
}
int
main(int argc, char **argv)
{
int i, ch, action = 0, type = WHITE, r = 0, c = 0;
HASHINFO hashinfo;
DB *db;
while ((ch = getopt(argc, argv, "adtT")) != -1) {
switch (ch) {
case 'a':
action = 1;
break;
case 'd':
action = 2;
break;
case 't':
type = TRAPHIT;
break;
case 'T':
type = SPAMTRAP;
break;
default:
usage();
break;
}
}
argc -= optind;
argv += optind;
if (action == 0 && type != WHITE)
usage();
memset(&hashinfo, 0, sizeof(hashinfo));
db = dbopen(PATH_SPAMD_DB, O_EXLOCK | (action ? O_RDWR : O_RDONLY),
0600, DB_HASH, &hashinfo);
if (db == NULL) {
if (errno == EFTYPE)
err(1,
"%s is old, run current spamd to convert it",
PATH_SPAMD_DB);
else
err(1, "cannot open %s for %s", PATH_SPAMD_DB,
action ? "writing" : "reading");
}
switch (action) {
case 0:
return dblist(db);
case 1:
for (i=0; i<argc; i++)
if (argv[i][0] != '\0') {
c++;
r += dbupdate(db, argv[i], 1, type);
}
if (c == 0)
errx(2, "no addresses specified");
break;
case 2:
for (i=0; i<argc; i++)
if (argv[i][0] != '\0') {
c++;
r += dbupdate(db, argv[i], 0, type);
}
if (c == 0)
errx(2, "no addresses specified");
break;
default:
errx(-1, "bad action");
}
db->close(db);
return (r);
}
|