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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
|
/* $OpenBSD: sdl.c,v 1.22 2015/05/18 16:04:21 reyk Exp $ */
/*
* Copyright (c) 2003-2007 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.
*/
/*
* sdl.c - Implement spamd source lists
*
* This consists of everything we need to do to determine which lists
* someone is on. Spamd gets the connecting address, and looks it up
* against all lists to determine what deferral messages to feed back
* to the connecting machine. - The redirection to spamd will happen
* from pf in the kernel, first match will divert to us. Spamd (along with
* setup) must keep track of *all* matches, so as to tell someone all the
* lists that they are on.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "sdl.h"
static void sdl_free(struct sdlist *);
static void sdl_clear(struct sdlist *);
extern int debug;
struct sdlist *blacklists = NULL;
int blc = 0, blu = 0;
int
sdl_add(char *sdname, char *sdstring, char **v4, u_int nv4, char **v6, u_int nv6)
{
int i, idx = -1;
char astring[40];
char *addr = NULL;
unsigned int maskbits;
/*
* if a blacklist of same tag name is already there, replace it,
* otherwise append.
*/
for (i = 0; i < blu; i++) {
if (strcmp(blacklists[i].tag, sdname) == 0) {
idx = i;
break;
}
}
if (idx != -1) {
if (debug > 0)
printf("replacing list %s; %u new entries\n",
blacklists[idx].tag, nv4 + nv6);
sdl_free(&blacklists[idx]);
} else {
if (debug > 0)
printf("adding list %s; %u entries\n", sdname, nv4 + nv6);
if (blu == blc) {
struct sdlist *tmp;
tmp = reallocarray(blacklists, blc + 128,
sizeof(struct sdlist));
if (tmp == NULL)
return (-1);
blacklists = tmp;
blc += 128;
sdl_clear(&blacklists[blu]);
}
idx = blu;
}
if ((blacklists[idx].tag = strdup(sdname)) == NULL)
goto misc_error;
if ((blacklists[idx].string = strdup(sdstring)) == NULL)
goto misc_error;
/*
* Cycle through addrs by family, converting. We assume they are
* correctly formatted v4 and v6 addrs, if they don't all convert
* correctly, the add fails. Each address should be address/maskbits.
*/
if (nv4 != 0) {
blacklists[idx].v4.naddrs = nv4;
blacklists[idx].v4.addrs = reallocarray(NULL, nv4,
sizeof(struct sdentry_v4));
if (blacklists[idx].v4.addrs == NULL)
goto misc_error;
for (i = 0; i < nv4; i++) {
struct in_addr *m, *n;
int j;
n = &blacklists[idx].v4.addrs[i].sda;
m = &blacklists[idx].v4.addrs[i].sdm;
addr = v4[i];
j = sscanf(addr, "%15[^/]/%u", astring, &maskbits);
if (j != 2)
goto parse_error;
/*
* sanity check! we don't allow a 0 mask -
* don't blacklist the entire net.
*/
if (maskbits == 0 || maskbits > 32)
goto parse_error;
j = inet_pton(AF_INET, astring, n);
if (j != 1)
goto parse_error;
if (debug > 0)
printf("added %s/%u\n", astring, maskbits);
/* set mask. */
m->s_addr = 0xffffffffU << (32 - maskbits);
m->s_addr = htonl(m->s_addr);
/* mask off address bits that won't ever be used */
n->s_addr = n->s_addr & m->s_addr;
}
}
if (nv6 != 0) {
blacklists[idx].v6.naddrs = nv6;
blacklists[idx].v6.addrs = reallocarray(NULL, nv6,
sizeof(struct sdentry_v6));
if (blacklists[idx].v6.addrs == NULL)
goto misc_error;
for (i = 0; i < nv6; i++) {
int j, k;
struct sdaddr_v6 *m, *n;
n = &blacklists[idx].v6.addrs[i].sda;
m = &blacklists[idx].v6.addrs[i].sdm;
addr = v6[i];
j = sscanf(addr, "%39[^/]/%u", astring, &maskbits);
if (j != 2)
goto parse_error;
/*
* sanity check! we don't allow a 0 mask -
* don't blacklist the entire net.
*/
if (maskbits == 0 || maskbits > 128)
goto parse_error;
j = inet_pton(AF_INET6, astring, n);
if (j != 1)
goto parse_error;
if (debug > 0)
printf("added %s/%u\n", astring, maskbits);
/* set mask, borrowed from pf */
k = 0;
for (j = 0; j < 4; j++)
m->addr32[j] = 0;
while (maskbits >= 32) {
m->addr32[k++] = 0xffffffffU;
maskbits -= 32;
}
for (j = 31; j > 31 - maskbits; --j)
m->addr32[k] |= (1 << j);
if (maskbits)
m->addr32[k] = htonl(m->addr32[k]);
/* mask off address bits that won't ever be used */
for (j = 0; j < 4; j++)
n->addr32[j] = n->addr32[j] & m->addr32[j];
}
}
if (idx == blu) {
blu++;
sdl_clear(&blacklists[blu]);
}
return (0);
parse_error:
if (debug > 0)
printf("sdl_add: parse error, \"%s\"\n", addr);
misc_error:
sdl_free(&blacklists[idx]);
if (idx != blu) {
memmove(&blacklists[idx], &blacklists[idx + 1],
(blu - idx) * sizeof(*blacklists));
blu--;
}
return (-1);
}
void
sdl_del(char *sdname)
{
int i, idx = -1;
for (i = 0; i < blu; i++) {
if (strcmp(blacklists[i].tag, sdname) == 0) {
idx = i;
break;
}
}
if (idx != -1) {
if (debug > 0)
printf("clearing list %s\n", sdname);
/* Must preserve tag. */
free(blacklists[idx].string);
free(blacklists[idx].v4.addrs);
free(blacklists[idx].v6.addrs);
blacklists[idx].string = NULL;
blacklists[idx].v4.addrs = NULL;
blacklists[idx].v6.addrs = NULL;
blacklists[idx].v4.naddrs = 0;
blacklists[idx].v6.naddrs = 0;
}
}
/*
* Return 1 if the addresses a (with mask m) matches address b
* otherwise return 0. It is assumed that address a has been
* pre-masked out, we only need to mask b.
*/
static int
match_addr_v4(struct in_addr *a, struct in_addr *m, struct in_addr *b)
{
if (a->s_addr == (b->s_addr & m->s_addr))
return (1);
return (0);
}
/*
* Return 1 if the addresses a (with mask m) matches address b
* otherwise return 0. It is assumed that address a has been
* pre-masked out, we only need to mask b.
*/
static int
match_addr_v6(struct sdaddr_v6 *a, struct sdaddr_v6 *m, struct sdaddr_v6 *b)
{
if (((a->addr32[0]) == (b->addr32[0] & m->addr32[0])) &&
((a->addr32[1]) == (b->addr32[1] & m->addr32[1])) &&
((a->addr32[2]) == (b->addr32[2] & m->addr32[2])) &&
((a->addr32[3]) == (b->addr32[3] & m->addr32[3])))
return (1);
return (0);
}
#define grow_sdlist(sd, c, l) do { \
if (c == l) { \
struct sdlist **tmp; \
\
tmp = reallocarray(sd, l + 128, sizeof(struct sdlist *)); \
if (tmp == NULL) { \
/* \
* XXX out of memory - return what we have \
*/ \
return (sdnew); \
} \
sd = tmp; \
l += 128; \
} \
} while (0)
static struct sdlist **
sdl_lookup_v4(struct sdlist *sdl, struct in_addr *src)
{
struct sdentry_v4 *entry;
int i, matches = 0;
int sdnewlen = 0;
struct sdlist **sdnew = NULL;
while (sdl->tag != NULL) {
for (i = 0; i < sdl->v4.naddrs; i++) {
entry = &sdl->v4.addrs[i];
if (match_addr_v4(&entry->sda, &entry->sdm, src)) {
grow_sdlist(sdnew, matches, sdnewlen);
sdnew[matches] = sdl;
matches++;
sdnew[matches] = NULL;
break;
}
}
sdl++;
}
return (sdnew);
}
static struct sdlist **
sdl_lookup_v6(struct sdlist *sdl, struct sdaddr_v6 *src)
{
struct sdentry_v6 *entry;
int i, matches = 0;
int sdnewlen = 0;
struct sdlist **sdnew = NULL;
while (sdl->tag != NULL) {
for (i = 0; i < sdl->v6.naddrs; i++) {
entry = &sdl->v6.addrs[i];
if (match_addr_v6(&entry->sda, &entry->sdm, src)) {
grow_sdlist(sdnew, matches, sdnewlen);
sdnew[matches] = sdl;
matches++;
sdnew[matches] = NULL;
break;
}
}
sdl++;
}
return (sdnew);
}
/*
* Given an address and address family
* return list of pointers to matching nodes. or NULL if none.
*/
struct sdlist **
sdl_lookup(struct sdlist *head, int af, void *src)
{
if (head == NULL)
return (NULL);
switch (af) {
case AF_INET:
return (sdl_lookup_v4(head, src));
case AF_INET6:
return (sdl_lookup_v6(head, src));
default:
return (NULL);
}
}
static void
sdl_free(struct sdlist *sdl)
{
free(sdl->tag);
free(sdl->string);
free(sdl->v4.addrs);
free(sdl->v6.addrs);
sdl_clear(sdl);
}
static void
sdl_clear(struct sdlist *sdl)
{
sdl->tag = NULL;
sdl->string = NULL;
sdl->v4.addrs = NULL;
sdl->v4.naddrs = 0;
sdl->v6.addrs = NULL;
sdl->v6.naddrs = 0;
}
|