]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/resolve.c
Allow pre-defined server local channels ("&").
[ngircd-alex.git] / src / ngircd / resolve.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Asynchronous resolver
12  */
13
14
15 #include "portab.h"
16
17 static char UNUSED id[] = "$Id: resolve.c,v 1.29 2008/02/26 22:04:17 fw Exp $";
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <errno.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <netdb.h>
28
29 #ifdef IDENTAUTH
30 #ifdef HAVE_IDENT_H
31 #include <ident.h>
32 #endif
33 #endif
34
35 #include "conn.h"
36 #include "defines.h"
37 #include "log.h"
38
39 #include "exp.h"
40 #include "resolve.h"
41 #include "io.h"
42
43
44 static void Do_ResolveAddr PARAMS(( const ng_ipaddr_t *Addr, int Sock, int w_fd ));
45 static void Do_ResolveName PARAMS(( const char *Host, int w_fd ));
46 static bool register_callback PARAMS((RES_STAT *s, void (*cbfunc)(int, short)));
47
48 #ifdef WANT_IPV6
49 extern bool Conf_ConnectIPv4;
50 extern bool Conf_ConnectIPv6;
51 #endif
52
53 static pid_t
54 Resolver_fork(int *pipefds)
55 {
56         pid_t pid;
57
58         if (pipe(pipefds) != 0) {
59                 Log( LOG_ALERT, "Resolver: Can't create output pipe: %s!", strerror( errno ));
60                 return -1;
61         }
62
63         pid = fork();
64         switch(pid) {
65                 case -1:
66                         Log( LOG_CRIT, "Resolver: Can't fork: %s!", strerror( errno ));
67                         close(pipefds[0]);
68                         close(pipefds[1]);
69                         return -1;
70                 case 0: /* child */
71                         close(pipefds[0]);
72                         Log_Init_Resolver( );
73                         return 0;
74         }
75         /* parent */
76         close(pipefds[1]);
77         return pid; 
78 }
79
80
81 /**
82  * Resolve IP (asynchronous!).
83  */
84 GLOBAL bool
85 Resolve_Addr(RES_STAT * s, const ng_ipaddr_t *Addr, int identsock,
86              void (*cbfunc) (int, short))
87 {
88         int pipefd[2];
89         pid_t pid;
90
91         assert(s != NULL);
92
93         pid = Resolver_fork(pipefd);
94         if (pid > 0) {
95                 Log(LOG_DEBUG, "Resolver for %s created (PID %d).", ng_ipaddr_tostr(Addr), pid);
96
97                 s->pid = pid;
98                 s->resolver_fd = pipefd[0];
99                 return register_callback(s, cbfunc);
100         } else if( pid == 0 ) {
101                 /* Sub process */
102                 Do_ResolveAddr( Addr, identsock, pipefd[1]);
103                 Log_Exit_Resolver( );
104                 exit(0);
105         }
106         return false;
107 } /* Resolve_Addr */
108
109
110 /**
111  * Resolve hostname (asynchronous!).
112  */
113 GLOBAL bool
114 Resolve_Name( RES_STAT *s, const char *Host, void (*cbfunc)(int, short))
115 {
116         int pipefd[2];
117         pid_t pid;
118
119         assert(s != NULL);
120
121         pid = Resolver_fork(pipefd);
122         if (pid > 0) {
123                 /* Main process */
124 #ifdef DEBUG
125                 Log( LOG_DEBUG, "Resolver for \"%s\" created (PID %d).", Host, pid );
126 #endif
127                 s->pid = pid;
128                 s->resolver_fd = pipefd[0];
129                 return register_callback(s, cbfunc);
130         } else if( pid == 0 ) {
131                 /* Sub process */
132                 Do_ResolveName(Host, pipefd[1]);
133                 Log_Exit_Resolver( );
134                 exit(0);
135         }
136         return false;
137 } /* Resolve_Name */
138
139
140 GLOBAL void
141 Resolve_Init(RES_STAT *s)
142 {
143         assert(s != NULL);
144         s->resolver_fd = -1;
145         s->pid = 0;
146 }
147
148
149 #ifndef WANT_IPV6
150 #ifdef h_errno
151 static char *
152 Get_Error( int H_Error )
153 {
154         /* Get error message for H_Error */
155         switch( H_Error ) {
156         case HOST_NOT_FOUND:
157                 return "host not found";
158         case NO_DATA:
159                 return "name valid but no IP address defined";
160         case NO_RECOVERY:
161                 return "name server error";
162         case TRY_AGAIN:
163                 return "name server temporary not available";
164         }
165         return "unknown error";
166 }
167 #endif /* h_errno */
168 #endif /* WANT_IPV6 */
169
170
171 /* Do "IDENT" (aka "AUTH") lookup and append result to resolved_addr array */
172 static void
173 Do_IdentQuery(int identsock, array *resolved_addr)
174 {
175 #ifdef IDENTAUTH
176         char *res;
177
178         if (identsock < 0)
179                 return;
180
181 #ifdef DEBUG
182         Log_Resolver(LOG_DEBUG, "Doing IDENT lookup on socket %d ...", identsock);
183 #endif
184         res = ident_id( identsock, 10 );
185 #ifdef DEBUG
186         Log_Resolver(LOG_DEBUG, "Ok, IDENT lookup on socket %d done: \"%s\"",
187                                                 identsock, res ? res : "(NULL)" );
188 #endif
189         if (!res) /* no result */
190                 return;
191         if (!array_cats(resolved_addr, res))
192                 Log_Resolver(LOG_WARNING, "Resolver: Cannot copy IDENT result: %s!", strerror(errno));
193
194         free(res);
195 #else
196         (void) identsock;
197         (void) resolved_addr;
198 #endif
199 }
200
201
202 /**
203  * perform reverse DNS lookup and put result string into resbuf.
204  * If no hostname could be obtained, this function stores the string representation of
205  * the IP address in resbuf and returns false.
206  * @param IpAddr ip address to resolve
207  * @param resbuf result buffer to store DNS name/string representation of ip address
208  * @reslen size of result buffer (must be >= NGT_INET_ADDRSTRLEN)
209  * @return true if reverse lookup successful, false otherwise
210  */
211 static bool
212 ReverseLookup(const ng_ipaddr_t *IpAddr, char *resbuf, size_t reslen)
213 {
214         char tmp_ip_str[NG_INET_ADDRSTRLEN];
215         const char *errmsg;
216 #ifdef HAVE_GETNAMEINFO
217         static const char funcname[]="getnameinfo";
218         int res;
219
220         *resbuf = 0;
221
222         res = getnameinfo((struct sockaddr *) IpAddr, ng_ipaddr_salen(IpAddr),
223                                 resbuf, reslen, NULL, 0, NI_NAMEREQD);
224         if (res == 0)
225                 return true;
226
227         if (res == EAI_SYSTEM)
228                 errmsg = strerror(errno);
229         else
230                 errmsg = gai_strerror(res);
231 #else
232         const struct sockaddr_in *Addr = (const struct sockaddr_in *) IpAddr;
233         struct hostent *h;
234         static const char funcname[]="gethostbyaddr";
235
236         h = gethostbyaddr((char *)&Addr->sin_addr, sizeof(Addr->sin_addr), AF_INET);
237         if (h) {
238                 if (strlcpy(resbuf, h->h_name, reslen) < reslen)
239                         return true;
240                 errmsg = "hostname too long";
241         } else {
242 # ifdef h_errno
243                 errmsg = Get_Error(h_errno);
244 # else
245                 errmsg = "unknown error";
246 # endif /* h_errno */
247         }
248 #endif  /* HAVE_GETNAMEINFO */
249
250         assert(errmsg);
251         assert(reslen >= NG_INET_ADDRSTRLEN);
252         ng_ipaddr_tostr_r(IpAddr, tmp_ip_str);
253
254         Log_Resolver(LOG_WARNING, "%s: Can't resolve address \"%s\": %s",
255                                 funcname, tmp_ip_str, errmsg);
256         strlcpy(resbuf, tmp_ip_str, reslen);
257         return false;
258 }
259
260
261 /**
262  * perform DNS lookup of given host name and fill IpAddr with a list of
263  * ip addresses associated with that name.
264  * ip addresses found are stored in the "array *IpAddr" argument (type ng_ipaddr_t)
265  * @param hostname The domain name to look up.
266  * @param IpAddr pointer to empty and initialized array to store results
267  * @return true if lookup successful, false if domain name not found
268  */
269 static bool
270 ForwardLookup(const char *hostname, array *IpAddr)
271 {
272         ng_ipaddr_t addr;
273
274 #ifdef HAVE_GETADDRINFO
275         int res;
276         struct addrinfo *a, *ai_results;
277         static struct addrinfo hints;
278
279 #ifndef WANT_IPV6
280         hints.ai_family = AF_INET;
281 #endif
282 #ifdef AI_ADDRCONFIG    /* glibc has this, but not e.g. netbsd 4.0 */
283         hints.ai_flags = AI_ADDRCONFIG;
284 #endif
285         hints.ai_socktype = SOCK_STREAM;
286         hints.ai_protocol = IPPROTO_TCP;
287
288 #ifdef WANT_IPV6
289         assert(Conf_ConnectIPv6 || Conf_ConnectIPv4);
290
291         if (!Conf_ConnectIPv6)
292                 hints.ai_family = AF_INET;
293         if (!Conf_ConnectIPv4)
294                 hints.ai_family = AF_INET6;
295 #endif
296         res = getaddrinfo(hostname, NULL, &hints, &ai_results);
297         switch (res) {
298         case 0: break;
299         case EAI_SYSTEM:
300                 Log_Resolver(LOG_WARNING, "Can't resolve \"%s\": %s", hostname, strerror(errno));
301                 return false;
302         default:
303                 Log_Resolver(LOG_WARNING, "Can't resolve \"%s\": %s", hostname, gai_strerror(res));
304                 return false;
305         }
306
307         for (a = ai_results; a != NULL; a = a->ai_next) {
308                 assert(a->ai_addrlen <= sizeof(addr));
309
310                 if (a->ai_addrlen > sizeof(addr))
311                         continue;
312
313                 memcpy(&addr, a->ai_addr, a->ai_addrlen);
314
315                 if (!array_catb(IpAddr, (char *)&addr, sizeof(addr)))
316                         break;
317         }
318
319         freeaddrinfo(ai_results);
320         return a == NULL;
321 #else
322         struct hostent *h = gethostbyname(hostname);
323
324         if (!h) {
325 #ifdef h_errno
326                 Log_Resolver(LOG_WARNING, "Can't resolve \"%s\": %s", hostname, Get_Error(h_errno));
327 #else
328                 Log_Resolver(LOG_WARNING, "Can't resolve \"%s\"", hostname);
329 #endif
330                 return false;
331         }
332         memset(&addr, 0, sizeof(addr));
333
334         addr.sin4.sin_family = AF_INET;
335         memcpy(&addr.sin4.sin_addr, h->h_addr, sizeof(struct in_addr));
336
337         return array_copyb(IpAddr, (char *)&addr, sizeof(addr));
338 #endif /* HAVE_GETADDRINFO */
339 }
340
341
342 static bool
343 Addr_in_list(const array *resolved_addr, const ng_ipaddr_t *Addr)
344 {
345         char tmp_ip_str[NG_INET_ADDRSTRLEN];
346         const ng_ipaddr_t *tmpAddrs = array_start(resolved_addr);
347         size_t len = array_length(resolved_addr, sizeof(*tmpAddrs));
348
349         assert(len > 0);
350         assert(tmpAddrs);
351
352         while (len > 0) {
353                 if (ng_ipaddr_ipequal(Addr, tmpAddrs))
354                         return true;
355                 tmpAddrs++;
356                 len--;
357         }
358         /* failed; print list of addresses */
359         ng_ipaddr_tostr_r(Addr, tmp_ip_str);
360         len = array_length(resolved_addr, sizeof(*tmpAddrs));
361         tmpAddrs = array_start(resolved_addr);
362
363         while (len > 0) {
364                 Log_Resolver(LOG_WARNING, "Address mismatch: %s != %s",
365                         tmp_ip_str, ng_ipaddr_tostr(tmpAddrs));
366                 tmpAddrs++;
367                 len--;
368         }
369
370         return false;
371 }
372
373
374 static void
375 Log_Forgery_NoIP(const char *ip, const char *host)
376 {
377         Log_Resolver(LOG_WARNING, "Possible forgery: %s resolved to %s "
378                 "(which has no ip address)", ip, host);
379 }
380
381 static void
382 Log_Forgery_WrongIP(const char *ip, const char *host)
383 {
384         Log_Resolver(LOG_WARNING,"Possible forgery: %s resolved to %s "
385                 "(which points to different address)", ip, host);
386 }
387
388
389 static void
390 ArrayWrite(int fd, const array *a)
391 {
392         size_t len = array_bytes(a);
393         const char *data = array_start(a);
394
395         assert(data);
396
397         if( (size_t)write(fd, data, len) != len )
398                 Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent: %s!",
399                                                         strerror(errno));
400 }
401
402
403 static void
404 Do_ResolveAddr(const ng_ipaddr_t *Addr, int identsock, int w_fd)
405 {
406         /* Resolver sub-process: resolve IP address and write result into
407          * pipe to parent. */
408         char hostname[CLIENT_HOST_LEN];
409         char tmp_ip_str[NG_INET_ADDRSTRLEN];
410         size_t len;
411         array resolved_addr;
412
413         array_init(&resolved_addr);
414         ng_ipaddr_tostr_r(Addr, tmp_ip_str);
415 #ifdef DEBUG
416         Log_Resolver(LOG_DEBUG, "Now resolving %s ...", tmp_ip_str);
417 #endif
418         if (!ReverseLookup(Addr, hostname, sizeof(hostname)))
419                 goto dns_done;
420
421         if (ForwardLookup(hostname, &resolved_addr)) {
422                 if (!Addr_in_list(&resolved_addr, Addr)) {
423                         Log_Forgery_WrongIP(tmp_ip_str, hostname);
424                         strlcpy(hostname, tmp_ip_str, sizeof(hostname));
425                 }
426         } else {
427                 Log_Forgery_NoIP(tmp_ip_str, hostname);
428                 strlcpy(hostname, tmp_ip_str, sizeof(hostname));
429         }
430 #ifdef DEBUG
431         Log_Resolver(LOG_DEBUG, "Ok, translated %s to \"%s\".", tmp_ip_str, hostname);
432 #endif
433  dns_done:
434         len = strlen(hostname);
435         hostname[len] = '\n';
436         if (!array_copyb(&resolved_addr, hostname, ++len)) {
437                 Log_Resolver(LOG_CRIT, "Resolver: Can't copy resolved name: %s!", strerror(errno));
438                 array_free(&resolved_addr);
439                 return;
440         }
441
442         Do_IdentQuery(identsock, &resolved_addr);
443
444         ArrayWrite(w_fd, &resolved_addr);
445
446         array_free(&resolved_addr);
447 } /* Do_ResolveAddr */
448
449
450 static void
451 Do_ResolveName( const char *Host, int w_fd )
452 {
453         /* Resolver sub-process: resolve name and write result into pipe
454          * to parent. */
455         array IpAddrs;
456 #ifdef DEBUG
457         ng_ipaddr_t *addr;
458         size_t len;
459 #endif
460         Log_Resolver(LOG_DEBUG, "Now resolving \"%s\" ...", Host);
461
462         array_init(&IpAddrs);
463         /* Resolve hostname */
464         if (!ForwardLookup(Host, &IpAddrs)) {
465                 close(w_fd);
466                 return;
467         }
468 #ifdef DEBUG
469         len = array_length(&IpAddrs, sizeof(*addr));
470         assert(len > 0);
471         addr = array_start(&IpAddrs);
472         assert(addr);
473         for (; len > 0; --len,addr++) {
474                 Log_Resolver(LOG_DEBUG, "translated \"%s\" to %s.",
475                                         Host, ng_ipaddr_tostr(addr));
476         }
477 #endif
478         /* Write result into pipe to parent */
479         ArrayWrite(w_fd, &IpAddrs);
480
481         array_free(&IpAddrs);
482 } /* Do_ResolveName */
483
484
485 static bool
486 register_callback( RES_STAT *s, void (*cbfunc)(int, short))
487 {
488         assert(cbfunc != NULL);
489         assert(s != NULL);
490         assert(s->resolver_fd >= 0);
491
492         if (io_setnonblock(s->resolver_fd) &&
493                 io_event_create(s->resolver_fd, IO_WANTREAD, cbfunc))
494                         return true;
495
496         Log( LOG_CRIT, "Resolver: Could not register callback function: %s!", strerror(errno));
497         close(s->resolver_fd);
498         Resolve_Init(s);
499         return false;
500 }
501
502
503 GLOBAL bool
504 Resolve_Shutdown( RES_STAT *s)
505 {
506         bool ret = false;
507
508         assert(s != NULL);
509         assert(s->resolver_fd >= 0);
510
511         if (s->resolver_fd >= 0)
512                 ret = io_close(s->resolver_fd);
513
514         Resolve_Init(s);
515         return ret;
516 }
517
518
519 /**
520  * Read result of resolver sub-process from pipe
521  */
522 GLOBAL size_t
523 Resolve_Read( RES_STAT *s, void* readbuf, size_t buflen)
524 {
525         ssize_t bytes_read;
526
527         assert(buflen > 0);
528
529         /* Read result from pipe */
530         bytes_read = read(s->resolver_fd, readbuf, buflen);
531         if (bytes_read < 0) {
532                 if (errno == EAGAIN)
533                         return 0;
534
535                 Log( LOG_CRIT, "Resolver: Can't read result: %s!", strerror(errno));
536                 bytes_read = 0;
537         }
538 #ifdef DEBUG
539         else if (bytes_read == 0)
540                 Log( LOG_DEBUG, "Resolver: Can't read result: EOF");
541 #endif
542         Resolve_Shutdown(s);
543         return (size_t)bytes_read;
544 }
545 /* -eof- */
546