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