89
|
1 /*
|
|
2
|
|
3 Copyright (c) 2004, 2005 Carl Byington - 510 Software Group, released
|
|
4 under the GPL version 2 or any later version at your choice available at
|
|
5 http://www.fsf.org/licenses/gpl.txt
|
|
6
|
|
7 Based on a sample milter Copyright (c) 2000-2003 Sendmail, Inc. and its
|
|
8 suppliers. Inspired by the DCC by Rhyolite Software
|
|
9
|
|
10 -r port The port used to talk to our internal dns resolver processes
|
|
11 -p port The port through which the MTA will connect to this milter.
|
|
12 -t sec The timeout value.
|
|
13 -c Check the config, and print a copy to stdout. Don't start the
|
|
14 milter or do anything with the socket.
|
|
15 -s Stress test by loading and deleting the current config in a loop.
|
|
16 -d increase debug level
|
|
17 -e f|t Print the results of looking up from address f and to address
|
|
18 t in the current config
|
|
19
|
|
20
|
|
21 TODO:
|
|
22
|
|
23 1) Add option for using smtp connections to verify addresses from backup
|
|
24 mx machines. This allows the backup mx to learn the valid addresses
|
|
25 on the primary machine.
|
|
26
|
|
27 */
|
|
28
|
|
29
|
|
30 // from sendmail sample
|
|
31 #include <sys/types.h>
|
|
32 #include <sys/stat.h>
|
|
33 #include <errno.h>
|
|
34 #include <sysexits.h>
|
|
35 #include <unistd.h>
|
|
36
|
|
37 // needed for socket io
|
|
38 #include <sys/ioctl.h>
|
|
39 #include <net/if.h>
|
|
40 #include <arpa/inet.h>
|
|
41 #include <netinet/in.h>
|
|
42 #include <netinet/tcp.h>
|
|
43 #include <netdb.h>
|
|
44 #include <sys/socket.h>
|
|
45 #include <sys/un.h>
|
|
46
|
|
47 // needed for thread
|
|
48 #include <pthread.h>
|
|
49
|
|
50 // needed for std c++ collections
|
|
51 #include <set>
|
|
52 #include <map>
|
|
53 #include <list>
|
|
54
|
|
55 // for the dns resolver
|
|
56 #include <netinet/in.h>
|
|
57 #include <arpa/nameser.h>
|
|
58 #include <resolv.h>
|
|
59
|
|
60 // misc stuff needed here
|
|
61 #include <ctype.h>
|
|
62 #include <syslog.h>
|
|
63 #include <pwd.h>
|
|
64 #include <sys/wait.h> /* header for waitpid() and various macros */
|
|
65 #include <signal.h> /* header for signal functions */
|
|
66
|
|
67 #include "includes.h"
|
|
68
|
|
69 static char* dnsbl_version="$Id$";
|
|
70
|
|
71
|
|
72 extern "C" {
|
|
73 #include "libmilter/mfapi.h"
|
|
74 sfsistat mlfi_connect(SMFICTX *ctx, char *hostname, _SOCK_ADDR *hostaddr);
|
|
75 sfsistat mlfi_envfrom(SMFICTX *ctx, char **argv);
|
|
76 sfsistat mlfi_envrcpt(SMFICTX *ctx, char **argv);
|
|
77 sfsistat mlfi_body(SMFICTX *ctx, u_char *data, size_t len);
|
|
78 sfsistat mlfi_eom(SMFICTX *ctx);
|
|
79 sfsistat mlfi_abort(SMFICTX *ctx);
|
|
80 sfsistat mlfi_close(SMFICTX *ctx);
|
|
81 void sig_chld(int signo);
|
|
82 }
|
|
83
|
|
84 int debug_syslog = 0;
|
|
85 bool syslog_opened = false;
|
|
86 bool use_syslog = true; // false to printf
|
|
87 bool loader_run = true; // used to stop the config loader thread
|
|
88 CONFIG *config = NULL; // protected by the config_mutex
|
|
89 int generation = 0; // protected by the config_mutex
|
|
90 const int maxlen = 1000; // used for snprintf buffers
|
|
91
|
|
92 pthread_mutex_t config_mutex;
|
|
93 pthread_mutex_t syslog_mutex;
|
|
94 pthread_mutex_t resolve_mutex;
|
|
95 pthread_mutex_t fd_pool_mutex;
|
|
96
|
|
97 std::set<int> fd_pool;
|
|
98 int NULL_SOCKET = -1;
|
|
99 char *resolver_port = NULL; // unix domain socket to talk to the dns resolver process
|
|
100 int resolver_socket = NULL_SOCKET; // socket used to listen for resolver requests
|
|
101 time_t ERROR_SOCKET_TIME = 60; // number of seconds between attempts to open the spam filter socket
|
|
102 time_t last_error_time;
|
|
103 int resolver_sock_count = 0; // protected with fd_pool_mutex
|
|
104 int resolver_pool_size = 0; // protected with fd_pool_mutex
|
|
105
|
|
106
|
|
107 struct ns_map {
|
|
108 // all the strings are owned by the keys/values in the ns_host string map
|
|
109 string_map ns_host; // nameserver name -> host name that uses this name server
|
|
110 ns_mapper ns_ip; // nameserver name -> ip address of the name server
|
|
111 ~ns_map();
|
|
112 void add(char *name, char *refer);
|
|
113 };
|
|
114
|
|
115
|
|
116 ns_map::~ns_map() {
|
|
117 for (string_map::iterator i=ns_host.begin(); i!=ns_host.end(); i++) {
|
|
118 char *x = (*i).first;
|
|
119 char *y = (*i).second;
|
|
120 free(x);
|
|
121 free(y);
|
|
122 }
|
|
123 ns_ip.clear();
|
|
124 ns_host.clear();
|
|
125 }
|
|
126
|
|
127
|
|
128 void ns_map::add(char *name, char *refer) {
|
|
129 string_map::iterator i = ns_host.find(name);
|
|
130 if (i != ns_host.end()) return;
|
|
131 char *x = strdup(name);
|
|
132 char *y = strdup(refer);
|
|
133 ns_ip[x] = 0;
|
|
134 ns_host[x] = y;
|
|
135
|
|
136 }
|
|
137
|
|
138 // packed structure to allow a single socket write to dump the
|
|
139 // length and the following answer. The packing attribute is gcc specific.
|
|
140 struct glommer {
|
|
141 int length;
|
|
142 #ifdef NS_PACKETSZ
|
|
143 u_char answer[NS_PACKETSZ]; // with a resolver, we return resolver answers
|
|
144 #else
|
|
145 int answer; // without a resolver, we return a single ip4 address, 0 == no answer
|
|
146 #endif
|
|
147 } __attribute__ ((packed));
|
|
148
|
|
149
|
|
150 ////////////////////////////////////////////////
|
|
151 // helper to discard the strings held by a context_map
|
|
152 //
|
|
153 void discard(context_map &cm);
|
|
154 void discard(context_map &cm) {
|
|
155 for (context_map::iterator i=cm.begin(); i!=cm.end(); i++) {
|
|
156 char *x = (*i).first;
|
|
157 free(x);
|
|
158 }
|
|
159 cm.clear();
|
|
160 }
|
|
161
|
|
162
|
|
163 ////////////////////////////////////////////////
|
|
164 // helper to register a string in a context_map
|
|
165 //
|
|
166 void register_string(context_map &cm, char *name, CONTEXT *con);
|
|
167 void register_string(context_map &cm, char *name, CONTEXT *con) {
|
|
168 context_map::iterator i = cm.find(name);
|
|
169 if (i != cm.end()) return;
|
|
170 char *x = strdup(name);
|
|
171 cm[x] = con;
|
|
172 }
|
|
173
|
|
174
|
|
175 ////////////////////////////////////////////////
|
|
176 // disconnect the fd from the dns resolver process
|
|
177 //
|
|
178 void my_disconnect(int sock, bool decrement = true);
|
|
179 void my_disconnect(int sock, bool decrement) {
|
|
180 if (sock != NULL_SOCKET) {
|
|
181 if (decrement) {
|
|
182 pthread_mutex_lock(&fd_pool_mutex);
|
|
183 resolver_sock_count--;
|
|
184 pthread_mutex_unlock(&fd_pool_mutex);
|
|
185 }
|
|
186 shutdown(sock, SHUT_RDWR);
|
|
187 close(sock);
|
|
188 }
|
|
189 }
|
|
190
|
|
191
|
|
192 ////////////////////////////////////////////////
|
|
193 // return fd connected to the dns resolver process
|
|
194 //
|
|
195 int my_connect();
|
|
196 int my_connect() {
|
|
197 // if we have had recent errors, don't even try to open the socket
|
|
198 time_t now = time(NULL);
|
|
199 if ((now - last_error_time) < ERROR_SOCKET_TIME) return NULL_SOCKET;
|
|
200
|
|
201 // nothing recent, maybe this time it will work
|
|
202 int sock = NULL_SOCKET;
|
|
203 sockaddr_un server;
|
|
204 memset(&server, '\0', sizeof(server));
|
|
205 server.sun_family = AF_UNIX;
|
|
206 strncpy(server.sun_path, resolver_port, sizeof(server.sun_path)-1);
|
|
207 sock = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
208 if (sock != NULL_SOCKET) {
|
|
209 bool rc = (connect(sock, (sockaddr *)&server, sizeof(server)) == 0);
|
|
210 if (!rc) {
|
|
211 my_disconnect(sock, false);
|
|
212 sock = NULL_SOCKET;
|
|
213 last_error_time = now;
|
|
214 }
|
|
215 }
|
|
216 else last_error_time = now;
|
|
217 if (sock != NULL_SOCKET) {
|
|
218 pthread_mutex_lock(&fd_pool_mutex);
|
|
219 resolver_sock_count++;
|
|
220 pthread_mutex_unlock(&fd_pool_mutex);
|
|
221 }
|
|
222 return sock;
|
|
223 }
|
|
224
|
|
225
|
|
226 mlfiPriv::mlfiPriv() {
|
|
227 pthread_mutex_lock(&config_mutex);
|
|
228 pc = config;
|
|
229 pc->reference_count++;
|
|
230 pthread_mutex_unlock(&config_mutex);
|
|
231 get_fd();
|
|
232 ip = 0;
|
|
233 mailaddr = NULL;
|
|
234 queueid = NULL;
|
|
235 authenticated = false;
|
|
236 have_whites = false;
|
|
237 only_whites = true;
|
|
238 memory = NULL;
|
|
239 scanner = NULL;
|
|
240 content_suffix = NULL;
|
|
241 content_message = NULL;
|
|
242 content_host_ignore = NULL;
|
|
243 }
|
|
244
|
|
245 mlfiPriv::~mlfiPriv() {
|
|
246 return_fd();
|
|
247 pthread_mutex_lock(&config_mutex);
|
|
248 pc->reference_count--;
|
|
249 pthread_mutex_unlock(&config_mutex);
|
|
250 reset(true);
|
|
251 }
|
|
252
|
|
253 void mlfiPriv::reset(bool final) {
|
|
254 if (mailaddr) free(mailaddr);
|
|
255 if (queueid) free(queueid);
|
|
256 discard(env_to);
|
|
257 if (memory) delete memory;
|
|
258 if (scanner) delete scanner;
|
|
259 if (!final) {
|
|
260 mailaddr = NULL;
|
|
261 queueid = NULL;
|
|
262 authenticated = false;
|
|
263 have_whites = false;
|
|
264 only_whites = true;
|
|
265 memory = NULL;
|
|
266 scanner = NULL;
|
|
267 content_suffix = NULL;
|
|
268 content_message = NULL;
|
|
269 content_host_ignore = NULL;
|
|
270 }
|
|
271 }
|
|
272
|
|
273 void mlfiPriv::get_fd() {
|
|
274 err = true;
|
|
275 fd = NULL_SOCKET;
|
|
276 int result = pthread_mutex_lock(&fd_pool_mutex);
|
|
277 if (!result) {
|
|
278 std::set<int>::iterator i;
|
|
279 i = fd_pool.begin();
|
|
280 if (i != fd_pool.end()) {
|
|
281 // have at least one fd in the pool
|
|
282 err = false;
|
|
283 fd = *i;
|
|
284 fd_pool.erase(fd);
|
|
285 resolver_pool_size--;
|
|
286 pthread_mutex_unlock(&fd_pool_mutex);
|
|
287 }
|
|
288 else {
|
|
289 // pool is empty, get a new fd
|
|
290 pthread_mutex_unlock(&fd_pool_mutex);
|
|
291 fd = my_connect();
|
|
292 err = (fd == NULL_SOCKET);
|
|
293 }
|
|
294 }
|
|
295 else {
|
|
296 // cannot lock the pool, just get a new fd
|
|
297 fd = my_connect();
|
|
298 err = (fd == NULL_SOCKET);
|
|
299 }
|
|
300 }
|
|
301
|
|
302 void mlfiPriv::return_fd() {
|
|
303 if (err) {
|
|
304 // this fd got a socket error, so close it, rather than returning it to the pool
|
|
305 my_disconnect(fd);
|
|
306 }
|
|
307 else {
|
|
308 int result = pthread_mutex_lock(&fd_pool_mutex);
|
|
309 if (!result) {
|
|
310 if ((resolver_sock_count > resolver_pool_size*5) || (resolver_pool_size < 5)) {
|
|
311 // return the fd to the pool
|
|
312 fd_pool.insert(fd);
|
|
313 resolver_pool_size++;
|
|
314 pthread_mutex_unlock(&fd_pool_mutex);
|
|
315 }
|
|
316 else {
|
|
317 // more than 20% of the open resolver sockets are in the pool, and the
|
|
318 // pool as at least 5 sockets. that is enough, so just close this one.
|
|
319 pthread_mutex_unlock(&fd_pool_mutex);
|
|
320 my_disconnect(fd);
|
|
321 }
|
|
322 }
|
|
323 else {
|
|
324 // could not lock the pool, so just close the fd
|
|
325 my_disconnect(fd);
|
|
326 }
|
|
327 }
|
|
328 }
|
|
329
|
|
330 int mlfiPriv::my_write(char *buf, int len) {
|
|
331 if (err) return 0;
|
|
332 int rs = 0;
|
|
333 while (len) {
|
|
334 int ws = write(fd, buf, len);
|
|
335 if (ws > 0) {
|
|
336 rs += ws;
|
|
337 len -= ws;
|
|
338 buf += ws;
|
|
339 }
|
|
340 else {
|
|
341 // peer closed the socket!
|
|
342 rs = 0;
|
|
343 err = true;
|
|
344 break;
|
|
345 }
|
|
346 }
|
|
347 return rs;
|
|
348 }
|
|
349
|
|
350 int mlfiPriv::my_read(char *buf, int len) {
|
|
351 if (err) return 0;
|
|
352 int rs = 0;
|
|
353 while (len > 1) {
|
|
354 int ws = read(fd, buf, len);
|
|
355 if (ws > 0) {
|
|
356 rs += ws;
|
|
357 len -= ws;
|
|
358 buf += ws;
|
|
359 }
|
|
360 else {
|
|
361 // peer closed the socket!
|
|
362 rs = 0;
|
|
363 err = true;
|
|
364 break;
|
|
365 }
|
|
366 }
|
|
367 return rs;
|
|
368 }
|
|
369
|
|
370 void mlfiPriv::need_content_filter(char *rcpt, CONTEXT &con) {
|
|
371 register_string(env_to, rcpt, &con);
|
|
372 if (!memory) {
|
|
373 // first recipient that needs content filtering sets all
|
|
374 // the content filtering parameters
|
|
375 memory = new recorder(this, con.get_html_tags(), con.get_content_tlds());
|
|
376 scanner = new url_scanner(memory);
|
|
377 content_suffix = con.get_content_suffix();
|
|
378 content_message = con.get_content_message();
|
|
379 content_host_ignore = &con.get_content_host_ignore();
|
|
380 }
|
|
381 }
|
|
382
|
|
383 #define MLFIPRIV ((struct mlfiPriv *) smfi_getpriv(ctx))
|
|
384
|
|
385
|
|
386 ////////////////////////////////////////////////
|
|
387 // syslog a message
|
|
388 //
|
|
389 void my_syslog(mlfiPriv *priv, char *text) {
|
|
390 char buf[maxlen];
|
|
391 if (priv) {
|
|
392 snprintf(buf, sizeof(buf), "%s: %s", priv->queueid, text);
|
|
393 text = buf;
|
|
394 }
|
|
395 if (use_syslog) {
|
|
396 pthread_mutex_lock(&syslog_mutex);
|
|
397 if (!syslog_opened) {
|
|
398 openlog("dnsbl", LOG_PID, LOG_MAIL);
|
|
399 syslog_opened = true;
|
|
400 }
|
|
401 syslog(LOG_NOTICE, "%s", text);
|
|
402 // closelog();
|
|
403 // syslog_opened = false;
|
|
404 pthread_mutex_unlock(&syslog_mutex);
|
|
405 }
|
|
406 else {
|
|
407 printf("%s \n", text);
|
|
408 }
|
|
409 }
|
|
410
|
|
411 void my_syslog(char *text) {
|
|
412 my_syslog(NULL, text);
|
|
413 }
|
|
414
|
|
415
|
|
416 ////////////////////////////////////////////////
|
|
417 // read a resolver request from the socket, process it, and
|
|
418 // write the result back to the socket.
|
|
419
|
|
420 void process_resolver_requests(int socket);
|
|
421 void process_resolver_requests(int socket) {
|
|
422 #ifdef NS_MAXDNAME
|
|
423 char question[NS_MAXDNAME];
|
|
424 #else
|
|
425 char question[1000];
|
|
426 #endif
|
|
427 glommer glom;
|
|
428
|
|
429 int maxq = sizeof(question);
|
|
430 while (true) {
|
|
431 // read a question
|
|
432 int rs = 0;
|
|
433 while (true) {
|
|
434 int ns = read(socket, question+rs, maxq-rs);
|
|
435 if (ns > 0) {
|
|
436 rs += ns;
|
|
437 if (question[rs-1] == '\0') {
|
|
438 // last byte read was the null terminator, we are done
|
|
439 break;
|
|
440 }
|
|
441 }
|
|
442 else {
|
|
443 // peer closed the socket
|
|
444 //my_syslog("!!child worker process, peer closed socket while reading question");
|
|
445 shutdown(socket, SHUT_RDWR);
|
|
446 close(socket);
|
|
447 return;
|
|
448 }
|
|
449 }
|
|
450
|
|
451 // find the answer
|
|
452 #ifdef NS_PACKETSZ
|
|
453 //char text[1000];
|
|
454 //snprintf(text, sizeof(text), "!!child worker process has a question %s", question);
|
|
455 //my_syslog(text);
|
|
456 glom.length = res_search(question, ns_c_in, ns_t_a, glom.answer, sizeof(glom.answer));
|
|
457 if (glom.length < 0) glom.length = 0; // represent all errors as zero length answers
|
|
458 #else
|
|
459 glom.length = sizeof(glom.answer);
|
|
460 glom.answer = 0;
|
|
461 struct hostent *host = gethostbyname(question);
|
|
462 if (host && (host->h_addrtype == AF_INET)) {
|
|
463 memcpy(&glom.answer, host->h_addr, sizeof(glom.answer));
|
|
464 }
|
|
465 #endif
|
|
466
|
|
467 // write the answer
|
|
468 char *buf = (char *)&glom;
|
|
469 int len = glom.length + sizeof(glom.length);
|
|
470 //snprintf(text, sizeof(text), "!!child worker process writing answer length %d for total %d", glom.length, len);
|
|
471 //my_syslog(text);
|
|
472 int ws = 0;
|
|
473 while (len > ws) {
|
|
474 int ns = write(socket, buf+ws, len-ws);
|
|
475 if (ns > 0) {
|
|
476 ws += ns;
|
|
477 }
|
|
478 else {
|
|
479 // peer closed the socket!
|
|
480 //my_syslog("!!child worker process, peer closed socket while writing answer");
|
|
481 shutdown(socket, SHUT_RDWR);
|
|
482 close(socket);
|
|
483 return;
|
|
484 }
|
|
485 }
|
|
486 }
|
|
487 }
|
|
488
|
|
489
|
|
490 ////////////////////////////////////////////////
|
|
491 // ask a dns question and get an A record answer - we don't try
|
|
492 // very hard, just using the default resolver retry settings.
|
|
493 // If we cannot get an answer, we just accept the mail.
|
|
494 //
|
|
495 //
|
|
496 int dns_interface(mlfiPriv &priv, char *question, bool maybe_ip, ns_map *nameservers);
|
|
497 int dns_interface(mlfiPriv &priv, char *question, bool maybe_ip, ns_map *nameservers) {
|
|
498 // this part can be done without locking the resolver mutex. Each
|
|
499 // milter thread is talking over its own socket to a separate resolver
|
|
500 // process, which does the actual dns resolution.
|
|
501 if (priv.err) return 0; // cannot ask more questions on this socket.
|
|
502 priv.my_write(question, strlen(question)+1); // write the question including the null terminator
|
|
503 glommer glom;
|
|
504 char *buf = (char *)&glom;
|
|
505 priv.my_read(buf, sizeof(glom.length));
|
|
506 buf += sizeof(glom.length);
|
|
507 ///char text[1000];
|
|
508 ///snprintf(text, sizeof(text), "!!milter thread wrote question %s and has answer length %d", question, glom.length);
|
|
509 ///my_syslog(text);
|
|
510 if ((glom.length < 0) || (glom.length > sizeof(glom.answer))) {
|
|
511 priv.err = true;
|
|
512 return 0; // cannot process overlarge answers
|
|
513 }
|
|
514 priv.my_read(buf, glom.length);
|
|
515
|
|
516 #ifdef NS_PACKETSZ
|
|
517 // now we need to lock the resolver mutex to keep the milter threads from
|
|
518 // stepping on each other while parsing the dns answer.
|
|
519 int ret_address = 0;
|
|
520 pthread_mutex_lock(&resolve_mutex);
|
|
521 if (glom.length > 0) {
|
|
522 // parse the answer
|
|
523 ns_msg handle;
|
|
524 ns_rr rr;
|
|
525 if (ns_initparse(glom.answer, glom.length, &handle) == 0) {
|
|
526 // look for ns names
|
|
527 if (nameservers) {
|
|
528 ns_map &ns = *nameservers;
|
|
529 int rrnum = 0;
|
|
530 while (ns_parserr(&handle, ns_s_ns, rrnum++, &rr) == 0) {
|
|
531 if (ns_rr_type(rr) == ns_t_ns) {
|
|
532 char nam[NS_MAXDNAME+1];
|
|
533 char *n = nam;
|
|
534 const u_char *p = ns_rr_rdata(rr);
|
|
535 while (((n-nam) < NS_MAXDNAME) && ((p-glom.answer) < glom.length) && *p) {
|
|
536 size_t s = *(p++);
|
|
537 if (s > 191) {
|
|
538 // compression pointer
|
|
539 s = (s-192)*256 + *(p++);
|
|
540 if (s >= glom.length) break; // pointer outside bounds of answer
|
|
541 p = glom.answer + s;
|
|
542 s = *(p++);
|
|
543 }
|
|
544 if (s > 0) {
|
|
545 if ((n-nam) >= (NS_MAXDNAME-s)) break; // destination would overflow name buffer
|
|
546 if ((p-glom.answer) >= (glom.length-s)) break; // source outside bounds of answer
|
|
547 memcpy(n, p, s);
|
|
548 n += s;
|
|
549 p += s;
|
|
550 *(n++) = '.';
|
|
551 }
|
|
552 }
|
|
553 if (n-nam) n--; // remove trailing .
|
|
554 *n = '\0'; // null terminate it
|
|
555 ns.add(nam, question); // ns host to lookup later
|
|
556 }
|
|
557 }
|
|
558 rrnum = 0;
|
|
559 while (ns_parserr(&handle, ns_s_ar, rrnum++, &rr) == 0) {
|
|
560 if (ns_rr_type(rr) == ns_t_a) {
|
|
561 char* nam = (char*)ns_rr_name(rr);
|
|
562 ns_mapper::iterator i = ns.ns_ip.find(nam);
|
|
563 if (i != ns.ns_ip.end()) {
|
|
564 // we want this ip address
|
|
565 int address;
|
|
566 memcpy(&address, ns_rr_rdata(rr), sizeof(address));
|
|
567 ns.ns_ip[nam] = address;
|
|
568 }
|
|
569 }
|
|
570 }
|
|
571 }
|
|
572 int rrnum = 0;
|
|
573 while (ns_parserr(&handle, ns_s_an, rrnum++, &rr) == 0) {
|
|
574 if (ns_rr_type(rr) == ns_t_a) {
|
|
575 int address;
|
|
576 memcpy(&address, ns_rr_rdata(rr), sizeof(address));
|
|
577 ret_address = address;
|
|
578 }
|
|
579 }
|
|
580 }
|
|
581 }
|
|
582 if (maybe_ip && !ret_address) {
|
|
583 // might be a bare ip address
|
|
584 in_addr ip;
|
|
585 if (inet_aton(question, &ip)) {
|
|
586 ret_address = ip.s_addr;
|
|
587 }
|
|
588 }
|
|
589 pthread_mutex_unlock(&resolve_mutex);
|
|
590 return ret_address;
|
|
591 #else
|
|
592 return glom.answer;
|
|
593 #endif
|
|
594 }
|
|
595
|
|
596
|
|
597 ////////////////////////////////////////////////
|
|
598 // check a single dnsbl
|
|
599 //
|
|
600 bool check_single(mlfiPriv &priv, int ip, char *suffix);
|
|
601 bool check_single(mlfiPriv &priv, int ip, char *suffix) {
|
|
602 // make a dns question
|
|
603 const u_char *src = (const u_char *)&ip;
|
|
604 if (src[0] == 127) return false; // don't do dns lookups on localhost
|
|
605 #ifdef NS_MAXDNAME
|
|
606 char question[NS_MAXDNAME];
|
|
607 #else
|
|
608 char question[1000];
|
|
609 #endif
|
|
610 snprintf(question, sizeof(question), "%u.%u.%u.%u.%s.", src[3], src[2], src[1], src[0], suffix);
|
|
611 // ask the question, if we get an A record it implies a blacklisted ip address
|
|
612 return dns_interface(priv, question, false, NULL);
|
|
613 }
|
|
614
|
|
615
|
|
616 ////////////////////////////////////////////////
|
|
617 // check a single dnsbl
|
|
618 //
|
|
619 bool check_single(mlfiPriv &priv, int ip, DNSBL &bl);
|
|
620 bool check_single(mlfiPriv &priv, int ip, DNSBL &bl) {
|
|
621 return check_single(priv, ip, bl.suffix);
|
|
622 }
|
|
623
|
|
624
|
|
625 ////////////////////////////////////////////////
|
|
626 // check the dnsbls specified for this recipient
|
|
627 //
|
|
628 bool check_dnsbl(mlfiPriv &priv, dnsblp_list &dnsbll, DNSBLP &rejectlist);
|
|
629 bool check_dnsbl(mlfiPriv &priv, dnsblp_list &dnsbll, DNSBLP &rejectlist) {
|
|
630 if (priv.authenticated) return false;
|
|
631 for (dnsblp_list::iterator i=dnsbll.begin(); i!=dnsbll.end(); i++) {
|
|
632 DNSBLP dp = *i; // non null by construction
|
|
633 bool st;
|
|
634 map<DNSBLP, bool>::iterator f = priv.checked.find(dp);
|
|
635 if (f == priv.checked.end()) {
|
|
636 // have not checked this list yet
|
|
637 st = check_single(priv, priv.ip, *dp);
|
|
638 rejectlist = dp;
|
|
639 priv.checked[dp] = st;
|
|
640 }
|
|
641 else {
|
|
642 st = (*f).second;
|
|
643 rejectlist = (*f).first;
|
|
644 }
|
|
645 if (st) return st;
|
|
646 }
|
|
647 return false;
|
|
648 }
|
|
649
|
|
650
|
|
651 ////////////////////////////////////////////////
|
|
652 // check the hosts from the body against the content dnsbl
|
|
653 //
|
|
654 bool check_hosts(mlfiPriv &priv, bool random, int limit, char *&host, int &ip);
|
|
655 bool check_hosts(mlfiPriv &priv, bool random, int limit, char *&host, int &ip) {
|
|
656 CONFIG &dc = *priv.pc;
|
|
657 string_set &hosts = priv.memory->get_hosts();
|
|
658 string_set &ignore = *priv.content_host_ignore;
|
|
659 char *suffix = priv.content_suffix;
|
|
660
|
|
661 int count = 0;
|
|
662 int cnt = hosts.size(); // number of hosts we could look at
|
|
663 int_set ips;
|
|
664 ns_map nameservers;
|
|
665 for (string_set::iterator i=hosts.begin(); i!=hosts.end(); i++) {
|
|
666 host = *i; // a reference into hosts, which will live until this smtp transaction is closed
|
|
667
|
|
668 // don't bother looking up hosts on the ignore list
|
|
669 string_set::iterator j = ignore.find(host);
|
|
670 if (j != ignore.end()) continue;
|
|
671
|
|
672 // try to only look at limit/cnt fraction of the available cnt host names in random mode
|
|
673 if ((cnt > limit) && (limit > 0) && random) {
|
|
674 int r = rand() % cnt;
|
|
675 if (r >= limit) {
|
|
676 if (debug_syslog > 2) {
|
|
677 char buf[maxlen];
|
|
678 snprintf(buf, sizeof(buf), "host %s skipped", host);
|
|
679 my_syslog(&priv, buf);
|
|
680 }
|
|
681 continue;
|
|
682 }
|
|
683 }
|
|
684 count++;
|
|
685 ip = dns_interface(priv, host, true, &nameservers);
|
|
686 if (debug_syslog > 2) {
|
|
687 char buf[maxlen];
|
|
688 if (ip) {
|
|
689 char adr[sizeof "255.255.255.255"];
|
|
690 adr[0] = '\0';
|
|
691 inet_ntop(AF_INET, (const u_char *)&ip, adr, sizeof(adr));
|
|
692 snprintf(buf, sizeof(buf), "host %s found at %s", host, adr);
|
|
693 }
|
|
694 else {
|
|
695 snprintf(buf, sizeof(buf), "host %s not found", host);
|
|
696 }
|
|
697 my_syslog(&priv, buf);
|
|
698 }
|
|
699 if (ip) {
|
|
700 int_set::iterator i = ips.find(ip);
|
|
701 if (i == ips.end()) {
|
|
702 ips.insert(ip);
|
|
703 if (check_single(priv, ip, suffix)) {
|
|
704 return true;
|
|
705 }
|
|
706 }
|
|
707 }
|
|
708 }
|
|
709 limit *= 4; // allow average of 3 ns per host name
|
|
710 for (ns_mapper::iterator i=nameservers.ns_ip.begin(); i!=nameservers.ns_ip.end(); i++) {
|
|
711 count++;
|
|
712 if ((count > limit) && (limit > 0)) {
|
|
713 if (random) continue; // don't complain
|
|
714 return true;
|
|
715 }
|
|
716 host = (*i).first; // a transient reference that needs to be replaced before we return it
|
|
717 ip = (*i).second;
|
|
718 if (!ip) ip = dns_interface(priv, host, false, NULL);
|
|
719 if (debug_syslog > 2) {
|
|
720 char buf[maxlen];
|
|
721 if (ip) {
|
|
722 char adr[sizeof "255.255.255.255"];
|
|
723 adr[0] = '\0';
|
|
724 inet_ntop(AF_INET, (const u_char *)&ip, adr, sizeof(adr));
|
|
725 snprintf(buf, sizeof(buf), "ns %s found at %s", host, adr);
|
|
726 }
|
|
727 else {
|
|
728 snprintf(buf, sizeof(buf), "ns %s not found", host);
|
|
729 }
|
|
730 my_syslog(&priv, buf);
|
|
731 }
|
|
732 if (ip) {
|
|
733 int_set::iterator i = ips.find(ip);
|
|
734 if (i == ips.end()) {
|
|
735 ips.insert(ip);
|
|
736 if (check_single(priv, ip, suffix)) {
|
|
737 string_map::iterator j = nameservers.ns_host.find(host);
|
|
738 if (j != nameservers.ns_host.end()) {
|
|
739 char *refer = (*j).second;
|
|
740 char buf[maxlen];
|
|
741 snprintf(buf, sizeof(buf), "%s with nameserver %s", refer, host);
|
|
742 host = register_string(hosts, buf); // put a copy into hosts, and return that reference
|
|
743 }
|
|
744 else {
|
|
745 host = register_string(hosts, host); // put a copy into hosts, and return that reference
|
|
746 }
|
|
747 return true;
|
|
748 }
|
|
749 }
|
|
750 }
|
|
751 }
|
|
752 return false;
|
|
753 }
|
|
754
|
|
755
|
|
756 ////////////////////////////////////////////////
|
|
757 // this email address is passed in from sendmail, and will
|
|
758 // always be enclosed in <>. It may have mixed case, just
|
|
759 // as the mail client sent it. We dup the string and convert
|
|
760 // the duplicate to lower case.
|
|
761 //
|
|
762 char *to_lower_string(char *email);
|
|
763 char *to_lower_string(char *email) {
|
|
764 int n = strlen(email)-2;
|
|
765 if (n < 1) return strdup(email);
|
|
766 char *key = strdup(email+1);
|
|
767 key[n] = '\0';
|
|
768 for (int i=0; i<n; i++) key[i] = tolower(key[i]);
|
|
769 return key;
|
|
770 }
|
|
771
|
|
772
|
|
773 ////////////////////////////////////////////////
|
|
774 // start of sendmail milter interfaces
|
|
775 //
|
|
776 sfsistat mlfi_connect(SMFICTX *ctx, char *hostname, _SOCK_ADDR *hostaddr)
|
|
777 {
|
|
778 // allocate some private memory
|
|
779 mlfiPriv *priv = new mlfiPriv;
|
|
780 if (hostaddr->sa_family == AF_INET) {
|
|
781 priv->ip = ((struct sockaddr_in *)hostaddr)->sin_addr.s_addr;
|
|
782 }
|
|
783
|
|
784 // save the private data
|
|
785 smfi_setpriv(ctx, (void*)priv);
|
|
786
|
|
787 // continue processing
|
|
788 return SMFIS_CONTINUE;
|
|
789 }
|
|
790
|
|
791 sfsistat mlfi_envfrom(SMFICTX *ctx, char **from)
|
|
792 {
|
|
793 mlfiPriv &priv = *MLFIPRIV;
|
|
794 priv.mailaddr = to_lower_string(from[0]);
|
|
795 priv.authenticated = (smfi_getsymval(ctx, "{auth_authen}") != NULL);
|
|
796 return SMFIS_CONTINUE;
|
|
797 }
|
|
798
|
|
799 sfsistat mlfi_envrcpt(SMFICTX *ctx, char **rcpt)
|
|
800 {
|
|
801 DNSBLP rejectlist = NULL; // list that caused the reject
|
|
802 mlfiPriv &priv = *MLFIPRIV;
|
|
803 CONFIG &dc = *priv.pc;
|
|
804 if (!priv.queueid) priv.queueid = strdup(smfi_getsymval(ctx, "i"));
|
|
805 char *rcptaddr = rcpt[0];
|
|
806 char *loto = to_lower_string(rcptaddr);
|
|
807 CONTEXT &con = *(dc.find_context(loto)->find_context(priv.mailaddr));
|
|
808 if (debug_syslog > 1) {
|
|
809 char buf[maxlen];
|
|
810 char msg[maxlen];
|
|
811 snprintf(msg, sizeof(msg), "from <%s> to <%s> using context %s", priv.mailaddr, loto, con.get_full_name(buf,maxlen));
|
|
812 my_syslog(&priv, msg);
|
|
813 }
|
|
814 char *fromvalue = con.find_from(priv.mailaddr);
|
|
815 free(loto);
|
|
816 status st;
|
|
817 if (fromvalue == token_black) {
|
|
818 st = black;
|
|
819 }
|
|
820 else if (fromvalue == token_white) {
|
|
821 st = white;
|
|
822 }
|
|
823 else {
|
|
824 // check the dns based lists
|
|
825 st = (check_dnsbl(priv, con.get_dnsbl_list(), rejectlist)) ? reject : oksofar;
|
|
826 }
|
|
827 if (st == reject) {
|
|
828 // reject the recipient based on some dnsbl
|
|
829 char adr[sizeof "255.255.255.255"];
|
|
830 adr[0] = '\0';
|
|
831 inet_ntop(AF_INET, (const u_char *)&priv.ip, adr, sizeof(adr));
|
|
832 char buf[maxlen];
|
|
833 snprintf(buf, sizeof(buf), rejectlist->message, adr, adr);
|
|
834 smfi_setreply(ctx, "550", "5.7.1", buf);
|
|
835 return SMFIS_REJECT;
|
|
836 }
|
|
837 else if (st == black) {
|
|
838 // reject the recipient based on blacklisting either from or to
|
|
839 smfi_setreply(ctx, "550", "5.7.1", "no such user");
|
|
840 return SMFIS_REJECT;
|
|
841 }
|
|
842 else {
|
|
843 // accept the recipient
|
|
844 if (!con.get_content_filtering()) st = white;
|
|
845 if (st == oksofar) {
|
|
846 // but remember the non-whites
|
|
847 priv.need_content_filter(rcptaddr, con);
|
|
848 priv.only_whites = false;
|
|
849 }
|
|
850 if (st == white) {
|
|
851 priv.have_whites = true;
|
|
852 }
|
|
853 return SMFIS_CONTINUE;
|
|
854 }
|
|
855 }
|
|
856
|
|
857 sfsistat mlfi_body(SMFICTX *ctx, u_char *data, size_t len)
|
|
858 {
|
|
859 mlfiPriv &priv = *MLFIPRIV;
|
|
860 if (priv.authenticated) return SMFIS_CONTINUE;
|
|
861 if (priv.only_whites) return SMFIS_CONTINUE;
|
|
862 priv.scanner->scan(data, len);
|
|
863 return SMFIS_CONTINUE;
|
|
864 }
|
|
865
|
|
866 sfsistat mlfi_eom(SMFICTX *ctx)
|
|
867 {
|
|
868 sfsistat rc;
|
|
869 mlfiPriv &priv = *MLFIPRIV;
|
|
870 CONFIG &dc = *priv.pc;
|
|
871 char *host = NULL;
|
|
872 int ip;
|
|
873 status st;
|
|
874 // process end of message
|
|
875 if (priv.authenticated || priv.only_whites) rc = SMFIS_CONTINUE;
|
|
876 else {
|
|
877 // assert env_to not empty
|
|
878 char buf[maxlen];
|
|
879 char *msg = NULL;
|
|
880 string_set alive;
|
|
881 bool random = false;
|
|
882 int limit = 0;
|
|
883 for (context_map::iterator i=priv.env_to.begin(); i!=priv.env_to.end(); i++) {
|
|
884 char *rcpt = (*i).first;
|
|
885 CONTEXT &con = *((*i).second);
|
|
886 if (!con.acceptable_content(*priv.memory, msg)) {
|
|
887 // bad html tags or excessive hosts
|
|
888 smfi_delrcpt(ctx, rcpt);
|
|
889 }
|
|
890 else {
|
|
891 alive.insert(rcpt);
|
|
892 random |= con.get_host_random();
|
|
893 limit = max(limit, con.get_host_limit());
|
|
894 }
|
|
895 }
|
|
896 bool rejecting = alive.empty(); // if alive is empty, we must have set msg above in acceptable_content()
|
|
897 if (!rejecting) {
|
|
898 if (check_hosts(priv, random, limit, host, ip)) {
|
|
899 char adr[sizeof "255.255.255.255"];
|
|
900 adr[0] = '\0';
|
|
901 inet_ntop(AF_INET, (const u_char *)&ip, adr, sizeof(adr));
|
|
902 snprintf(buf, sizeof(buf), priv.content_message, host, adr);
|
|
903 msg = buf;
|
|
904 rejecting = true;
|
|
905 }
|
|
906 }
|
|
907 if (!rejecting) {
|
|
908 rc = SMFIS_CONTINUE;
|
|
909 }
|
|
910 else if (!priv.have_whites) {
|
|
911 // can reject the entire message
|
|
912 smfi_setreply(ctx, "550", "5.7.1", msg);
|
|
913 rc = SMFIS_REJECT;
|
|
914 }
|
|
915 else {
|
|
916 // need to accept it but remove the recipients that don't want it
|
|
917 for (string_set::iterator i=alive.begin(); i!=alive.end(); i++) {
|
|
918 char *rcpt = *i;
|
|
919 smfi_delrcpt(ctx, rcpt);
|
|
920 }
|
|
921 rc = SMFIS_CONTINUE;
|
|
922 }
|
|
923 }
|
|
924 // reset for a new message on the same connection
|
|
925 mlfi_abort(ctx);
|
|
926 return rc;
|
|
927 }
|
|
928
|
|
929 sfsistat mlfi_abort(SMFICTX *ctx)
|
|
930 {
|
|
931 mlfiPriv &priv = *MLFIPRIV;
|
|
932 priv.reset();
|
|
933 return SMFIS_CONTINUE;
|
|
934 }
|
|
935
|
|
936 sfsistat mlfi_close(SMFICTX *ctx)
|
|
937 {
|
|
938 mlfiPriv *priv = MLFIPRIV;
|
|
939 if (!priv) return SMFIS_CONTINUE;
|
|
940 delete priv;
|
|
941 smfi_setpriv(ctx, NULL);
|
|
942 return SMFIS_CONTINUE;
|
|
943 }
|
|
944
|
|
945 struct smfiDesc smfilter =
|
|
946 {
|
|
947 "DNSBL", // filter name
|
|
948 SMFI_VERSION, // version code -- do not change
|
|
949 SMFIF_DELRCPT, // flags
|
|
950 mlfi_connect, // connection info filter
|
|
951 NULL, // SMTP HELO command filter
|
|
952 mlfi_envfrom, // envelope sender filter
|
|
953 mlfi_envrcpt, // envelope recipient filter
|
|
954 NULL, // header filter
|
|
955 NULL, // end of header
|
|
956 mlfi_body, // body block filter
|
|
957 mlfi_eom, // end of message
|
|
958 mlfi_abort, // message aborted
|
|
959 mlfi_close, // connection cleanup
|
|
960 };
|
|
961
|
|
962
|
|
963 ////////////////////////////////////////////////
|
|
964 // reload the config
|
|
965 //
|
|
966 CONFIG* new_conf();
|
|
967 CONFIG* new_conf() {
|
|
968 CONFIG *newc = new CONFIG;
|
|
969 pthread_mutex_lock(&config_mutex);
|
|
970 newc->generation = generation++;
|
|
971 pthread_mutex_unlock(&config_mutex);
|
|
972 if (debug_syslog) {
|
|
973 char buf[maxlen];
|
|
974 snprintf(buf, sizeof(buf), "loading configuration generation %d", newc->generation);
|
|
975 my_syslog(buf);
|
|
976 }
|
|
977 if (load_conf(*newc, "dnsbl.conf")) {
|
|
978 newc->load_time = time(NULL);
|
|
979 return newc;
|
|
980 }
|
|
981 delete newc;
|
|
982 return NULL;
|
|
983 }
|
|
984
|
|
985
|
|
986 ////////////////////////////////////////////////
|
|
987 // thread to watch the old config files for changes
|
|
988 // and reload when needed. we also cleanup old
|
|
989 // configs whose reference count has gone to zero.
|
|
990 //
|
|
991 void* config_loader(void *arg);
|
|
992 void* config_loader(void *arg) {
|
|
993 typedef set<CONFIG *> configp_set;
|
|
994 configp_set old_configs;
|
|
995 while (loader_run) {
|
|
996 sleep(180); // look for modifications every 3 minutes
|
|
997 if (!loader_run) break;
|
|
998 CONFIG &dc = *config;
|
|
999 time_t then = dc.load_time;
|
|
1000 struct stat st;
|
|
1001 bool reload = false;
|
|
1002 for (string_set::iterator i=dc.config_files.begin(); i!=dc.config_files.end(); i++) {
|
|
1003 char *fn = *i;
|
|
1004 if (stat(fn, &st)) reload = true; // file disappeared
|
|
1005 else if (st.st_mtime > then) reload = true; // file modified
|
|
1006 if (reload) break;
|
|
1007 }
|
|
1008 if (reload) {
|
|
1009 CONFIG *newc = new_conf();
|
|
1010 if (newc) {
|
|
1011 // replace the global config pointer
|
|
1012 pthread_mutex_lock(&config_mutex);
|
|
1013 CONFIG *old = config;
|
|
1014 config = newc;
|
|
1015 pthread_mutex_unlock(&config_mutex);
|
|
1016 if (old) old_configs.insert(old);
|
|
1017 }
|
|
1018 else {
|
|
1019 // failed to load new config
|
|
1020 my_syslog("failed to load new configuration");
|
|
1021 system("echo 'failed to load new dnsbl configuration from /etc/dnsbl' | mail -s 'error in /etc/dnsbl configuration' root");
|
|
1022 // update the load time on the current config to prevent complaining every 3 minutes
|
|
1023 dc.load_time = time(NULL);
|
|
1024 }
|
|
1025 }
|
|
1026 // now look for old configs with zero ref counts
|
|
1027 for (configp_set::iterator i=old_configs.begin(); i!=old_configs.end(); ) {
|
|
1028 CONFIG *old = *i;
|
|
1029 if (!old->reference_count) {
|
|
1030 if (debug_syslog) {
|
|
1031 char buf[maxlen];
|
|
1032 snprintf(buf, sizeof(buf), "freeing memory for old configuration generation %d", old->generation);
|
|
1033 my_syslog(buf);
|
|
1034 }
|
|
1035 delete old; // destructor does all the work
|
|
1036 old_configs.erase(i++);
|
|
1037 }
|
|
1038 else i++;
|
|
1039 }
|
|
1040 }
|
|
1041 return NULL;
|
|
1042 }
|
|
1043
|
|
1044
|
|
1045 void usage(char *prog);
|
|
1046 void usage(char *prog)
|
|
1047 {
|
|
1048 fprintf(stderr, "Usage: %s [-d [level]] [-c] [-s] [-e from|to] -r port -p sm-sock-addr [-t timeout]\n", prog);
|
|
1049 fprintf(stderr, "where port is for the connection to our own dns resolver processes\n");
|
|
1050 fprintf(stderr, " and should be local-domain-socket-file-name\n");
|
|
1051 fprintf(stderr, "where sm-sock-addr is for the connection to sendmail\n");
|
|
1052 fprintf(stderr, " and should be one of\n");
|
|
1053 fprintf(stderr, " inet:port@ip-address\n");
|
|
1054 fprintf(stderr, " local:local-domain-socket-file-name\n");
|
|
1055 fprintf(stderr, "-c will load and dump the config to stdout\n");
|
|
1056 fprintf(stderr, "-s will stress test the config loading code by repeating the load/free cycle\n");
|
|
1057 fprintf(stderr, " in an infinte loop.\n");
|
|
1058 fprintf(stderr, "-d will set the syslog message level, currently 0 to 3");
|
|
1059 fprintf(stderr, "-e will print the results of looking up the from and to addresses in the\n");
|
|
1060 fprintf(stderr, " current config. The | character is used to separate the from and to\n");
|
|
1061 fprintf(stderr, " addresses in the argument to the -e switch\n");
|
|
1062 }
|
|
1063
|
|
1064
|
|
1065
|
|
1066 void setup_socket(char *sock);
|
|
1067 void setup_socket(char *sock) {
|
|
1068 unlink(sock);
|
|
1069 // sockaddr_un addr;
|
|
1070 // memset(&addr, '\0', sizeof addr);
|
|
1071 // addr.sun_family = AF_UNIX;
|
|
1072 // strncpy(addr.sun_path, sock, sizeof(addr.sun_path)-1);
|
|
1073 // int s = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
1074 // bind(s, (sockaddr*)&addr, sizeof(addr));
|
|
1075 // close(s);
|
|
1076 }
|
|
1077
|
|
1078
|
|
1079 /*
|
|
1080 * The signal handler function -- only gets called when a SIGCHLD
|
|
1081 * is received, ie when a child terminates
|
|
1082 */
|
|
1083 void sig_chld(int signo)
|
|
1084 {
|
|
1085 int status;
|
|
1086 /* Wait for any child without blocking */
|
|
1087 while (waitpid(-1, &status, WNOHANG) > 0) {
|
|
1088 // ignore child exit status, we only do this to cleanup zombies
|
|
1089 }
|
|
1090 }
|
|
1091
|
|
1092
|
|
1093 int main(int argc, char**argv)
|
|
1094 {
|
|
1095 token_init();
|
|
1096 bool check = false;
|
|
1097 bool stress = false;
|
|
1098 bool setconn = false;
|
|
1099 bool setreso = false;
|
|
1100 char *email = NULL;
|
|
1101 int c;
|
|
1102 const char *args = "r:p:t:e:d:chs";
|
|
1103 extern char *optarg;
|
|
1104
|
|
1105 // Process command line options
|
|
1106 while ((c = getopt(argc, argv, args)) != -1) {
|
|
1107 switch (c) {
|
|
1108 case 'r':
|
|
1109 if (optarg == NULL || *optarg == '\0') {
|
|
1110 fprintf(stderr, "Illegal resolver socket: %s\n", optarg);
|
|
1111 exit(EX_USAGE);
|
|
1112 }
|
|
1113 resolver_port = strdup(optarg);
|
|
1114 setup_socket(resolver_port);
|
|
1115 setreso = true;
|
|
1116 break;
|
|
1117
|
|
1118 case 'p':
|
|
1119 if (optarg == NULL || *optarg == '\0') {
|
|
1120 fprintf(stderr, "Illegal sendmail socket: %s\n", optarg);
|
|
1121 exit(EX_USAGE);
|
|
1122 }
|
|
1123 if (smfi_setconn(optarg) == MI_FAILURE) {
|
|
1124 fprintf(stderr, "smfi_setconn failed\n");
|
|
1125 exit(EX_SOFTWARE);
|
|
1126 }
|
|
1127 if (strncasecmp(optarg, "unix:", 5) == 0) setup_socket(optarg + 5);
|
|
1128 else if (strncasecmp(optarg, "local:", 6) == 0) setup_socket(optarg + 6);
|
|
1129 setconn = true;
|
|
1130 break;
|
|
1131
|
|
1132 case 't':
|
|
1133 if (optarg == NULL || *optarg == '\0') {
|
|
1134 fprintf(stderr, "Illegal timeout: %s\n", optarg);
|
|
1135 exit(EX_USAGE);
|
|
1136 }
|
|
1137 if (smfi_settimeout(atoi(optarg)) == MI_FAILURE) {
|
|
1138 fprintf(stderr, "smfi_settimeout failed\n");
|
|
1139 exit(EX_SOFTWARE);
|
|
1140 }
|
|
1141 break;
|
|
1142
|
|
1143 case 'e':
|
|
1144 if (email) free(email);
|
|
1145 email = strdup(optarg);
|
|
1146 break;
|
|
1147
|
|
1148 case 'c':
|
|
1149 check = true;
|
|
1150 break;
|
|
1151
|
|
1152 case 's':
|
|
1153 stress = true;
|
|
1154 break;
|
|
1155
|
|
1156 case 'd':
|
|
1157 if (optarg == NULL || *optarg == '\0') debug_syslog = 1;
|
|
1158 else debug_syslog = atoi(optarg);
|
|
1159 break;
|
|
1160
|
|
1161 case 'h':
|
|
1162 default:
|
|
1163 usage(argv[0]);
|
|
1164 exit(EX_USAGE);
|
|
1165 }
|
|
1166 }
|
|
1167
|
|
1168 if (check) {
|
|
1169 use_syslog = false;
|
|
1170 debug_syslog = 10;
|
|
1171 CONFIG *conf = new_conf();
|
|
1172 if (conf) {
|
|
1173 conf->dump();
|
|
1174 delete conf;
|
|
1175 return 0;
|
|
1176 }
|
|
1177 else {
|
|
1178 return 1; // config failed to load
|
|
1179 }
|
|
1180 }
|
|
1181
|
|
1182 if (stress) {
|
|
1183 fprintf(stdout, "stress testing\n");
|
|
1184 while (1) {
|
|
1185 for (int i=0; i<10; i++) {
|
|
1186 CONFIG *conf = new_conf();
|
|
1187 if (conf) delete conf;
|
|
1188 }
|
|
1189 fprintf(stdout, ".");
|
|
1190 fflush(stdout);
|
|
1191 sleep(1);
|
|
1192 }
|
|
1193 }
|
|
1194
|
|
1195 if (email) {
|
|
1196 char *x = strchr(email, '|');
|
|
1197 if (x) {
|
|
1198 *x = '\0';
|
|
1199 char *from = strdup(email);
|
|
1200 char *to = strdup(x+1);
|
|
1201 use_syslog = false;
|
|
1202 CONFIG *conf = new_conf();
|
|
1203 if (conf) {
|
|
1204 CONTEXTP con = conf->find_context(to);
|
|
1205 char buf[maxlen];
|
|
1206 fprintf(stdout, "envelope to <%s> finds context %s\n", to, con->get_full_name(buf,maxlen));
|
|
1207 CONTEXTP fc = con->find_context(from);
|
|
1208 fprintf(stdout, "envelope from <%s> finds context %s\n", from, fc->get_full_name(buf,maxlen));
|
|
1209 char *st = fc->find_from(from);
|
|
1210 fprintf(stdout, "envelope from <%s> finds status %s\n", from, st);
|
|
1211 delete conf;
|
|
1212 }
|
|
1213 }
|
|
1214 return 0;
|
|
1215 }
|
|
1216
|
|
1217 if (!setconn) {
|
|
1218 fprintf(stderr, "%s: Missing required -p argument\n", argv[0]);
|
|
1219 usage(argv[0]);
|
|
1220 exit(EX_USAGE);
|
|
1221 }
|
|
1222
|
|
1223 if (!setreso) {
|
|
1224 fprintf(stderr, "%s: Missing required -r argument\n", argv[0]);
|
|
1225 usage(argv[0]);
|
|
1226 exit(EX_USAGE);
|
|
1227 }
|
|
1228
|
|
1229 if (smfi_register(smfilter) == MI_FAILURE) {
|
|
1230 fprintf(stderr, "smfi_register failed\n");
|
|
1231 exit(EX_UNAVAILABLE);
|
|
1232 }
|
|
1233
|
|
1234 // switch to background mode
|
|
1235 if (daemon(1,0) < 0) {
|
|
1236 fprintf(stderr, "daemon() call failed\n");
|
|
1237 exit(EX_UNAVAILABLE);
|
|
1238 }
|
|
1239
|
|
1240 // write the pid
|
|
1241 const char *pidpath = "/var/run/dnsbl.pid";
|
|
1242 unlink(pidpath);
|
|
1243 FILE *f = fopen(pidpath, "w");
|
|
1244 if (f) {
|
|
1245 #ifdef linux
|
|
1246 // from a comment in the DCC source code:
|
|
1247 // Linux threads are broken. Signals given the
|
|
1248 // original process are delivered to only the
|
|
1249 // thread that happens to have that PID. The
|
|
1250 // sendmail libmilter thread that needs to hear
|
|
1251 // SIGINT and other signals does not, and that breaks
|
|
1252 // scripts that need to stop milters.
|
|
1253 // However, signaling the process group works.
|
|
1254 fprintf(f, "-%d\n", (u_int)getpgrp());
|
|
1255 #else
|
|
1256 fprintf(f, "%d\n", (u_int)getpid());
|
|
1257 #endif
|
|
1258 fclose(f);
|
|
1259 }
|
|
1260
|
|
1261 // initialize the thread sync objects
|
|
1262 pthread_mutex_init(&config_mutex, 0);
|
|
1263 pthread_mutex_init(&syslog_mutex, 0);
|
|
1264 pthread_mutex_init(&resolve_mutex, 0);
|
|
1265 pthread_mutex_init(&fd_pool_mutex, 0);
|
|
1266
|
|
1267 // drop root privs
|
|
1268 struct passwd *pw = getpwnam("dnsbl");
|
|
1269 if (pw) {
|
|
1270 if (setgid(pw->pw_gid) == -1) {
|
|
1271 my_syslog("failed to switch to group dnsbl");
|
|
1272 }
|
|
1273 if (setuid(pw->pw_uid) == -1) {
|
|
1274 my_syslog("failed to switch to user dnsbl");
|
|
1275 }
|
|
1276 }
|
|
1277
|
|
1278 // load the initial config
|
|
1279 config = new_conf();
|
|
1280 if (!config) {
|
|
1281 my_syslog("failed to load initial configuration, quitting");
|
|
1282 exit(1);
|
|
1283 }
|
|
1284
|
|
1285 // fork off the resolver listener process
|
|
1286 pid_t child = fork();
|
|
1287 if (child < 0) {
|
|
1288 my_syslog("failed to create resolver listener process");
|
|
1289 exit(0);
|
|
1290 }
|
|
1291 if (child == 0) {
|
|
1292 // we are the child - dns resolver listener process
|
|
1293 resolver_socket = socket(AF_UNIX, SOCK_STREAM, 0);
|
|
1294 if (resolver_socket < 0) {
|
|
1295 my_syslog("child failed to create resolver socket");
|
|
1296 exit(0); // failed
|
|
1297 }
|
|
1298 sockaddr_un server;
|
|
1299 memset(&server, '\0', sizeof(server));
|
|
1300 server.sun_family = AF_UNIX;
|
|
1301 strncpy(server.sun_path, resolver_port, sizeof(server.sun_path)-1);
|
|
1302 //try to bind the address to the socket.
|
|
1303 if (bind(resolver_socket, (sockaddr *)&server, sizeof(server)) < 0) {
|
|
1304 // bind failed
|
|
1305 shutdown(resolver_socket, SHUT_RDWR);
|
|
1306 close(resolver_socket);
|
|
1307 my_syslog("child failed to bind resolver socket");
|
|
1308 exit(0); // failed
|
|
1309 }
|
|
1310 //listen on the socket.
|
|
1311 if (listen(resolver_socket, 10) < 0) {
|
|
1312 // listen failed
|
|
1313 shutdown(resolver_socket, SHUT_RDWR);
|
|
1314 close(resolver_socket);
|
|
1315 my_syslog("child failed to listen to resolver socket");
|
|
1316 exit(0); // failed
|
|
1317 }
|
|
1318 // setup sigchld handler to prevent zombies
|
|
1319 struct sigaction act;
|
|
1320 act.sa_handler = sig_chld; // Assign sig_chld as our SIGCHLD handler
|
|
1321 sigemptyset(&act.sa_mask); // We don't want to block any other signals in this example
|
|
1322 act.sa_flags = SA_NOCLDSTOP; // only want children that have terminated
|
|
1323 if (sigaction(SIGCHLD, &act, NULL) < 0) {
|
|
1324 my_syslog("child failed to setup SIGCHLD handler");
|
|
1325 exit(0); // failed
|
|
1326 }
|
|
1327 while (true) {
|
|
1328 sockaddr_un client;
|
|
1329 socklen_t clientlen = sizeof(client);
|
|
1330 int s = accept(resolver_socket, (sockaddr *)&client, &clientlen);
|
|
1331 if (s > 0) {
|
|
1332 // accept worked, it did not get cancelled before we could accept it
|
|
1333 // fork off a process to handle this connection
|
|
1334 int newchild = fork();
|
|
1335 if (newchild == 0) {
|
|
1336 // this is the worker process
|
|
1337 // child does not need the listening socket
|
|
1338 close(resolver_socket);
|
|
1339 process_resolver_requests(s);
|
|
1340 exit(0);
|
|
1341 }
|
|
1342 else {
|
|
1343 // this is the parent
|
|
1344 // parent does not need the accepted socket
|
|
1345 close(s);
|
|
1346 }
|
|
1347 }
|
|
1348 }
|
|
1349 exit(0); // make sure we don't fall thru.
|
|
1350 }
|
|
1351 else {
|
|
1352 sleep(2); // allow child to get started
|
|
1353 }
|
|
1354
|
|
1355 // only create threads after the fork() in daemon
|
|
1356 pthread_t tid;
|
|
1357 if (pthread_create(&tid, 0, config_loader, 0))
|
|
1358 my_syslog("failed to create config loader thread");
|
|
1359 if (pthread_detach(tid))
|
|
1360 my_syslog("failed to detach config loader thread");
|
|
1361
|
|
1362 time_t starting = time(NULL);
|
|
1363 int rc = smfi_main();
|
|
1364 if ((rc != MI_SUCCESS) && (time(NULL) > starting+5*60)) {
|
|
1365 my_syslog("trying to restart after smfi_main()");
|
|
1366 loader_run = false; // eventually the config loader thread will terminate
|
|
1367 execvp(argv[0], argv);
|
|
1368 }
|
|
1369 exit((rc == MI_SUCCESS) ? 0 : EX_UNAVAILABLE);
|
|
1370 }
|
|
1371
|