1 /* $Id: evdns.c 6979 2006-08-04 18:31:13Z nickm $ */
3 /* The original version of this module was written by Adam Langley; for
4 * a history of modifications, check out the subversion logs.
6 * When editing this module, try to keep it re-mergeable by Adam. Don't
7 * reformat the whitespace, add Tor dependencies, or so on.
10 * - Support IPv6 and PTR records.
11 * - Replace all externally visible magic numbers with #defined constants.
12 * - Write doccumentation for APIs of all external functions.
16 * Adam Langley <agl@imperialviolet.org>
17 * http://www.imperialviolet.org/eventdns.html
20 * This software is Public Domain. To view a copy of the public domain dedication,
21 * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to
22 * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
24 * I ask and expect, but do not require, that all derivative works contain an
25 * attribution similar to:
26 * Parts developed by Adam Langley <agl@imperialviolet.org>
28 * You may wish to replace the word "Parts" with something else depending on
29 * the amount of original code.
31 * (Derivative works does not include programs which link against, run or include
32 * the source verbatim in their source distributions)
37 #include <sys/types.h>
48 #ifndef DNS_USE_CPU_CLOCK_FOR_ID
49 #ifndef DNS_USE_GETTIMEOFDAY_FOR_ID
50 #ifndef DNS_USE_OPENSSL_FOR_ID
51 #error Must configure at least one id generation method.
52 #error Please see the documentation.
57 /* #define _POSIX_C_SOURCE 200507 */
60 #ifdef DNS_USE_CPU_CLOCK_FOR_ID
61 #ifdef DNS_USE_OPENSSL_FOR_ID
62 #error Multiple id options selected
64 #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID
65 #error Multiple id options selected
70 #ifdef DNS_USE_OPENSSL_FOR_ID
71 #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID
72 #error Multiple id options selected
74 #include <openssl/rand.h>
77 #define _FORTIFY_SOURCE 3
100 #include <winsock2.h>
101 #include <iphlpapi.h>
103 #include <sys/socket.h>
104 #include <netinet/in.h>
105 #include <arpa/inet.h>
108 #ifdef HAVE_NETINET_IN6_H
109 #include <netinet/in6.h>
113 typedef int socklen_t
;
116 #define EVDNS_LOG_DEBUG 0
117 #define EVDNS_LOG_WARN 1
119 #ifndef HOST_NAME_MAX
120 #define HOST_NAME_MAX 255
128 #define MIN(a,b) ((a)<(b)?(a):(b))
131 /* libevent doesn't work without this */
132 typedef uint8_t u_char
;
133 typedef unsigned int uint
;
142 #define MAX_ADDRS 4 /* maximum number of addresses from a single packet */
143 /* which we bother recording */
145 #define TYPE_A EVDNS_TYPE_A
147 #define TYPE_PTR EVDNS_TYPE_PTR
148 #define TYPE_AAAA EVDNS_TYPE_AAAA
150 #define CLASS_INET EVDNS_CLASS_INET
153 u8
*request
; /* the dns packet data */
154 unsigned int request_len
;
156 int tx_count
; /* the number of times that this packet has been sent */
157 unsigned int request_type
; /* TYPE_PTR or TYPE_A */
158 void *user_pointer
; /* the pointer given to us for this request */
159 evdns_callback_type user_callback
;
160 struct nameserver
*ns
; /* the server which we last sent it */
162 /* elements used by the searching code */
164 struct search_state
*search_state
;
165 char *search_origname
; /* needs to be free()ed */
168 /* these objects are kept in a circular list */
169 struct request
*next
, *prev
;
171 struct event timeout_event
;
173 u16 trans_id
; /* the transaction id */
174 char request_appended
; /* true if the request pointer is data which follows this struct */
175 char transmit_me
; /* needs to be transmitted */
178 #ifndef HAVE_STRUCT_IN6_ADDR
186 unsigned int have_answer
;
190 u32 addresses
[MAX_ADDRS
];
194 struct in6_addr addresses
[MAX_ADDRS
];
197 char name
[HOST_NAME_MAX
];
203 int socket
; /* a connected UDP socket */
205 int failed_times
; /* number of times which we have given this server a chance */
206 int timedout
; /* number of times in a row a request has timed out */
208 /* these objects are kept in a circular list */
209 struct nameserver
*next
, *prev
;
210 struct event timeout_event
; /* used to keep the timeout for */
211 /* when we next probe this server. */
212 /* Valid if state == 0 */
213 char state
; /* zero if we think that this server is down */
214 char choked
; /* true if we have an EAGAIN from this server's socket */
215 char write_waiting
; /* true if we are waiting for EV_WRITE events */
218 static struct request
*req_head
= NULL
, *req_waiting_head
= NULL
;
219 static struct nameserver
*server_head
= NULL
;
221 /* Represents a local port where we're listening for DNS requests. Right now, */
222 /* only UDP is supported. */
223 struct evdns_server_port
{
224 int socket
; /* socket we use to read queries and write replies. */
225 int refcnt
; /* reference count. */
226 char choked
; /* Are we currently blocked from writing? */
227 char closing
; /* Are we trying to close this port, pending writes? */
228 evdns_request_callback_fn_type user_callback
; /* Fn to handle requests */
229 void *user_data
; /* Opaque pointer passed to user_callback */
230 struct event event
; /* Read/write event */
231 /* circular list of replies that we want to write. */
232 struct server_request
*pending_replies
;
235 /* Represents part of a reply being built. (That is, a single RR.) */
236 struct server_reply_item
{
237 struct server_reply_item
*next
; /* next item in sequence. */
238 char *name
; /* name part of the RR */
239 u16 type
: 16; /* The RR type */
240 u16
class : 16; /* The RR class (usually CLASS_INET) */
241 u32 ttl
; /* The RR TTL */
242 char is_name
; /* True iff data is a label */
243 u16 datalen
; /* Length of data; -1 if data is a label */
244 void *data
; /* The contents of the RR */
247 /* Represents a request that we've received as a DNS server, and holds */
248 /* the components of the reply as we're constructing it. */
249 struct server_request
{
250 /* Pointers to the next and previous entries on the list of replies */
251 /* that we're waiting to write. Only set if we have tried to respond */
252 /* and gotten EAGAIN. */
253 struct server_request
*next_pending
;
254 struct server_request
*prev_pending
;
256 u16 trans_id
; /* Transaction id. */
257 struct evdns_server_port
*port
; /* Which port received this request on? */
258 struct sockaddr_storage addr
; /* Where to send the response */
259 socklen_t addrlen
; /* length of addr */
261 int n_answer
; /* how many answer RRs have been set? */
262 int n_authority
; /* how many authority RRs have been set? */
263 int n_additional
; /* how many additional RRs have been set? */
265 struct server_reply_item
*answer
; /* linked list of answer RRs */
266 struct server_reply_item
*authority
; /* linked list of authority RRs */
267 struct server_reply_item
*additional
; /* linked list of additional RRs */
269 /* Constructed response. Only set once we're ready to send a reply. */
270 /* Once this is set, the RR fields are cleared, and no more should be set. */
274 /* Caller-visible fields: flags, questions. */
275 struct evdns_server_request base
;
279 #define OFFSET_OF(st, member) ((off_t) (((char*)&((st*)0)->member)-(char*)0))
281 /* Given a pointer to an evdns_server_request, get the corresponding */
282 /* server_request. */
283 #define TO_SERVER_REQUEST(base_ptr) \
284 ((struct server_request*) \
285 (((char*)(base_ptr) - OFFSET_OF(struct server_request, base))))
287 /* The number of good nameservers that we have */
288 static int global_good_nameservers
= 0;
290 /* inflight requests are contained in the req_head list */
291 /* and are actually going out across the network */
292 static int global_requests_inflight
= 0;
293 /* requests which aren't inflight are in the waiting list */
294 /* and are counted here */
295 static int global_requests_waiting
= 0;
297 static int global_max_requests_inflight
= 64;
299 static struct timeval global_timeout
= {5, 0}; /* 5 seconds */
300 static int global_max_reissues
= 1; /* a reissue occurs when we get some errors from the server */
301 static int global_max_retransmits
= 3; /* number of times we'll retransmit a request which timed out */
302 /* number of timeouts in a row before we consider this server to be down */
303 static int global_max_nameserver_timeout
= 3;
305 /* These are the timeout values for nameservers. If we find a nameserver is down */
306 /* we try to probe it at intervals as given below. Values are in seconds. */
307 static const struct timeval global_nameserver_timeouts
[] = {{10, 0}, {60, 0}, {300, 0}, {900, 0}, {3600, 0}};
308 static const int global_nameserver_timeouts_length
= sizeof(global_nameserver_timeouts
)/sizeof(struct timeval
);
310 static struct nameserver
*nameserver_pick(void);
311 static void evdns_request_insert(struct request
*req
, struct request
**head
);
312 static void nameserver_ready_callback(int fd
, short events
, void *arg
);
313 static int evdns_transmit(void);
314 static int evdns_request_transmit(struct request
*req
);
315 static void nameserver_send_probe(struct nameserver
*const ns
);
316 static void search_request_finished(struct request
*const);
317 static int search_try_next(struct request
*const req
);
318 static int search_request_new(int type
, const char *const name
, int flags
, evdns_callback_type user_callback
, void *user_arg
);
319 static void evdns_requests_pump_waiting_queue(void);
320 static u16
transaction_id_pick(void);
321 static struct request
*request_new(int type
, const char *name
, int flags
, evdns_callback_type callback
, void *ptr
);
322 static void request_submit(struct request
*req
);
324 static int server_request_free(struct server_request
*req
);
325 static void server_request_free_answers(struct server_request
*req
);
326 static void server_port_free(struct evdns_server_port
*port
);
327 static void server_port_ready_callback(int fd
, short events
, void *arg
);
329 static int strtoint(const char *const str
);
335 int optval
, optvallen
=sizeof(optval
);
336 int err
= WSAGetLastError();
337 if (err
== WSAEWOULDBLOCK
&& sock
>= 0) {
338 if (getsockopt(sock
, SOL_SOCKET
, SO_ERROR
, (void*)&optval
,
348 error_is_eagain(int err
)
350 return err
== EAGAIN
|| err
== WSAEWOULDBLOCK
;
353 inet_aton(const char *c
, struct in_addr
*addr
)
356 if (strcmp(c
, "255.255.255.255") == 0) {
357 addr
->s_addr
= 0xffffffffu
;
360 if (r
== INADDR_NONE
)
366 #define CLOSE_SOCKET(x) closesocket(x)
368 #define last_error(sock) (errno)
369 #define error_is_eagain(err) ((err) == EAGAIN)
370 #define CLOSE_SOCKET(x) close(x)
373 #define ISSPACE(c) isspace((int)(unsigned char)(c))
374 #define ISDIGIT(c) isdigit((int)(unsigned char)(c))
378 debug_ntoa(u32 address
)
381 u32 a
= ntohl(address
);
382 snprintf(buf
, sizeof(buf
), "%d.%d.%d.%d",
383 (int)(u8
)((a
>>24)&0xff),
384 (int)(u8
)((a
>>16)&0xff),
385 (int)(u8
)((a
>>8 )&0xff),
386 (int)(u8
)((a
)&0xff));
391 static evdns_debug_log_fn_type evdns_log_fn
= NULL
;
394 evdns_set_log_fn(evdns_debug_log_fn_type fn
)
400 #define EVDNS_LOG_CHECK __attribute__ ((format(printf, 2, 3)))
402 #define EVDNS_LOG_CHECK
405 static void _evdns_log(int warn
, const char *fmt
, ...) EVDNS_LOG_CHECK
;
407 _evdns_log(int warn
, const char *fmt
, ...)
410 static char buf
[512];
415 _vsnprintf(buf
, sizeof(buf
), fmt
, args
);
417 vsnprintf(buf
, sizeof(buf
), fmt
, args
);
419 buf
[sizeof(buf
)-1] = '\0';
420 evdns_log_fn(warn
, buf
);
424 #define log _evdns_log
426 /* This walks the list of inflight requests to find the */
427 /* one with a matching transaction id. Returns NULL on */
429 static struct request
*
430 request_find_from_trans_id(u16 trans_id
) {
431 struct request
*req
= req_head
, *const started_at
= req_head
;
435 if (req
->trans_id
== trans_id
) return req
;
437 } while (req
!= started_at
);
443 /* a libevent callback function which is called when a nameserver */
444 /* has gone down and we want to test if it has came back to life yet */
446 nameserver_prod_callback(int fd
, short events
, void *arg
) {
447 struct nameserver
*const ns
= (struct nameserver
*) arg
;
451 nameserver_send_probe(ns
);
454 /* a libevent callback which is called when a nameserver probe (to see if */
455 /* it has come back to life) times out. We increment the count of failed_times */
456 /* and wait longer to send the next probe packet. */
458 nameserver_probe_failed(struct nameserver
*const ns
) {
459 const struct timeval
* timeout
;
460 (void) evtimer_del(&ns
->timeout_event
);
461 if (ns
->state
== 1) {
462 /* This can happen if the nameserver acts in a way which makes us mark */
463 /* it as bad and then starts sending good replies. */
468 &global_nameserver_timeouts
[MIN(ns
->failed_times
,
469 global_nameserver_timeouts_length
- 1)];
472 evtimer_set(&ns
->timeout_event
, nameserver_prod_callback
, ns
);
473 if (evtimer_add(&ns
->timeout_event
, (struct timeval
*) timeout
) < 0) {
475 "Error from libevent when adding timer event for %s",
476 debug_ntoa(ns
->address
));
481 /* called when a nameserver has been deemed to have failed. For example, too */
482 /* many packets have timed out etc */
484 nameserver_failed(struct nameserver
*const ns
, const char *msg
) {
485 struct request
*req
, *started_at
;
486 /* if this nameserver has already been marked as failed */
487 /* then don't do anything */
488 if (!ns
->state
) return;
490 log(EVDNS_LOG_WARN
, "Nameserver %s has failed: %s",
491 debug_ntoa(ns
->address
), msg
);
492 global_good_nameservers
--;
493 assert(global_good_nameservers
>= 0);
494 if (global_good_nameservers
== 0) {
495 log(EVDNS_LOG_WARN
, "All nameservers have failed");
499 ns
->failed_times
= 1;
501 evtimer_set(&ns
->timeout_event
, nameserver_prod_callback
, ns
);
502 if (evtimer_add(&ns
->timeout_event
, (struct timeval
*) &global_nameserver_timeouts
[0]) < 0) {
504 "Error from libevent when adding timer event for %s",
505 debug_ntoa(ns
->address
));
509 /* walk the list of inflight requests to see if any can be reassigned to */
510 /* a different server. Requests in the waiting queue don't have a */
511 /* nameserver assigned yet */
513 /* if we don't have *any* good nameservers then there's no point */
514 /* trying to reassign requests to one */
515 if (!global_good_nameservers
) return;
518 started_at
= req_head
;
521 if (req
->tx_count
== 0 && req
->ns
== ns
) {
522 /* still waiting to go out, can be moved */
523 /* to another server */
524 req
->ns
= nameserver_pick();
527 } while (req
!= started_at
);
532 nameserver_up(struct nameserver
*const ns
) {
533 if (ns
->state
) return;
534 log(EVDNS_LOG_WARN
, "Nameserver %s is back up",
535 debug_ntoa(ns
->address
));
536 evtimer_del(&ns
->timeout_event
);
538 ns
->failed_times
= 0;
540 global_good_nameservers
++;
544 request_trans_id_set(struct request
*const req
, const u16 trans_id
) {
545 req
->trans_id
= trans_id
;
546 *((u16
*) req
->request
) = htons(trans_id
);
549 /* Called to remove a request from a list and dealloc it. */
550 /* head is a pointer to the head of the list it should be */
551 /* removed from or NULL if the request isn't in a list. */
553 request_finished(struct request
*const req
, struct request
**head
) {
555 if (req
->next
== req
) {
556 /* only item in the list */
559 req
->next
->prev
= req
->prev
;
560 req
->prev
->next
= req
->next
;
561 if (*head
== req
) *head
= req
->next
;
565 log(EVDNS_LOG_DEBUG
, "Removing timeout for request %lx",
566 (unsigned long) req
);
567 evtimer_del(&req
->timeout_event
);
569 search_request_finished(req
);
570 global_requests_inflight
--;
572 if (!req
->request_appended
) {
573 /* need to free the request data on it's own */
576 /* the request data is appended onto the header */
577 /* so everything gets free()ed when we: */
582 evdns_requests_pump_waiting_queue();
585 /* This is called when a server returns a funny error code. */
586 /* We try the request again with another server. */
590 /* 1 failed/reissue is pointless */
592 request_reissue(struct request
*req
) {
593 const struct nameserver
*const last_ns
= req
->ns
;
594 /* the last nameserver should have been marked as failing */
595 /* by the caller of this function, therefore pick will try */
596 /* not to return it */
597 req
->ns
= nameserver_pick();
598 if (req
->ns
== last_ns
) {
599 /* ... but pick did return it */
600 /* not a lot of point in trying again with the */
605 req
->reissue_count
++;
607 req
->transmit_me
= 1;
612 /* this function looks for space on the inflight queue and promotes */
613 /* requests from the waiting queue if it can. */
615 evdns_requests_pump_waiting_queue(void) {
616 while (global_requests_inflight
< global_max_requests_inflight
&&
617 global_requests_waiting
) {
619 /* move a request from the waiting queue to the inflight queue */
620 assert(req_waiting_head
);
621 if (req_waiting_head
->next
== req_waiting_head
) {
622 /* only one item in the queue */
623 req
= req_waiting_head
;
624 req_waiting_head
= NULL
;
626 req
= req_waiting_head
;
627 req
->next
->prev
= req
->prev
;
628 req
->prev
->next
= req
->next
;
629 req_waiting_head
= req
->next
;
632 global_requests_waiting
--;
633 global_requests_inflight
++;
635 req
->ns
= nameserver_pick();
636 request_trans_id_set(req
, transaction_id_pick());
638 evdns_request_insert(req
, &req_head
);
639 evdns_request_transmit(req
);
645 reply_callback(struct request
*const req
, u32 ttl
, u32 err
, struct reply
*reply
) {
646 switch (req
->request_type
) {
649 req
->user_callback(DNS_ERR_NONE
, DNS_IPv4_A
,
650 reply
->data
.a
.addrcount
, ttl
,
651 reply
->data
.a
.addresses
,
654 req
->user_callback(err
, 0, 0, 0, NULL
, req
->user_pointer
);
658 char *name
= reply
->data
.ptr
.name
;
659 req
->user_callback(DNS_ERR_NONE
, DNS_PTR
, 1, ttl
,
660 &name
, req
->user_pointer
);
662 req
->user_callback(err
, 0, 0, 0, NULL
,
668 req
->user_callback(DNS_ERR_NONE
, DNS_IPv6_AAAA
,
669 reply
->data
.aaaa
.addrcount
, ttl
,
670 reply
->data
.aaaa
.addresses
,
673 req
->user_callback(err
, 0, 0, 0, NULL
, req
->user_pointer
);
679 /* this processes a parsed reply packet */
681 reply_handle(struct request
*const req
, u16 flags
, u32 ttl
, struct reply
*reply
) {
683 static const int error_codes
[] = {DNS_ERR_FORMAT
, DNS_ERR_SERVERFAILED
, DNS_ERR_NOTEXIST
, DNS_ERR_NOTIMPL
, DNS_ERR_REFUSED
};
685 if (flags
& 0x020f || !reply
|| !reply
->have_answer
) {
686 /* there was an error */
687 if (flags
& 0x0200) {
688 error
= DNS_ERR_TRUNCATED
;
690 u16 error_code
= (flags
& 0x000f) - 1;
691 if (error_code
> 4) {
692 error
= DNS_ERR_UNKNOWN
;
694 error
= error_codes
[error_code
];
699 case DNS_ERR_NOTIMPL
:
700 case DNS_ERR_REFUSED
:
701 /* we regard these errors as marking a bad nameserver */
702 if (req
->reissue_count
< global_max_reissues
) {
704 snprintf(msg
, sizeof(msg
), "Bad response %d (%s)",
705 error
, evdns_err_to_string(error
));
706 nameserver_failed(req
->ns
, msg
);
707 if (!request_reissue(req
)) return;
710 case DNS_ERR_SERVERFAILED
:
711 /* rcode 2 (servfailed) sometimes means "we are broken" and
712 * sometimes (with some binds) means "that request was very
713 * confusing." Treat this as a timeout, not a failure.
715 log(EVDNS_LOG_DEBUG
, "Got a SERVERFAILED from nameserver %s; "
716 "will allow the request to time out.",
717 debug_ntoa(req
->ns
->address
));
720 /* we got a good reply from the nameserver */
721 nameserver_up(req
->ns
);
724 if (req
->search_state
&& req
->request_type
!= TYPE_PTR
) {
725 /* if we have a list of domains to search in, try the next one */
726 if (!search_try_next(req
)) {
727 /* a new request was issued so this request is finished and */
728 /* the user callback will be made when that request (or a */
729 /* child of it) finishes. */
730 request_finished(req
, &req_head
);
735 /* all else failed. Pass the failure up */
736 reply_callback(req
, 0, error
, NULL
);
737 request_finished(req
, &req_head
);
739 /* all ok, tell the user */
740 reply_callback(req
, ttl
, 0, reply
);
741 nameserver_up(req
->ns
);
742 request_finished(req
, &req_head
);
747 name_parse(u8
*packet
, int length
, int *idx
, char *name_out
, int name_out_len
) {
751 #define GET32(x) do { if (j + 4 > length) goto err; memcpy(&_t32, packet + j, 4); j += 4; x = ntohl(_t32); } while(0)
752 #define GET16(x) do { if (j + 2 > length) goto err; memcpy(&_t, packet + j, 2); j += 2; x = ntohs(_t); } while(0)
753 #define GET8(x) do { if (j >= length) goto err; x = packet[j++]; } while(0)
756 const char *const end
= name_out
+ name_out_len
;
758 /* Normally, names are a series of length prefixed strings terminated */
759 /* with a length of 0 (the lengths are u8's < 63). */
760 /* However, the length can start with a pair of 1 bits and that */
761 /* means that the next 14 bits are a pointer within the current */
766 if (j
>= length
) return -1;
768 if (!label_len
) break;
769 if (label_len
& 0xc0) {
772 if (name_end
< 0) name_end
= j
;
773 j
= (((int)label_len
& 0x3f) << 8) + ptr_low
;
774 /* Make sure that the target offset is in-bounds. */
775 if (j
< 0 || j
>= length
) return -1;
776 /* If we've jumped more times than there are characters in the
777 * message, we must have a loop. */
778 if (++ptr_count
> length
) return -1;
781 if (label_len
> 63) return -1;
782 if (cp
!= name_out
) {
783 if (cp
+ 1 >= end
) return -1;
786 if (cp
+ label_len
>= end
) return -1;
787 memcpy(cp
, packet
+ j
, label_len
);
791 if (cp
>= end
) return -1;
802 /* parses a raw request from a nameserver */
804 reply_parse(u8
*packet
, int length
) {
805 int j
= 0; /* index into packet */
806 u16 _t
; /* used by the macros */
807 u32 _t32
; /* used by the macros */
808 char tmp_name
[256]; /* used by the macros */
810 u16 trans_id
, questions
, answers
, authority
, additional
, datalength
;
812 u32 ttl
, ttl_r
= 0xffffffff;
814 struct request
*req
= NULL
;
823 (void) authority
; /* suppress "unused variable" warnings. */
824 (void) additional
; /* suppress "unused variable" warnings. */
826 req
= request_find_from_trans_id(trans_id
);
829 memset(&reply
, 0, sizeof(reply
));
831 /* If it's not an answer, it doesn't correspond to any request. */
832 if (!(flags
& 0x8000)) return -1; /* must be an answer */
833 if (flags
& 0x020f) {
834 /* there was an error */
837 /* if (!answers) return; */ /* must have an answer of some form */
839 /* This macro skips a name in the DNS reply. */
841 do { tmp_name[0] = '\0'; \
842 if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0) \
846 reply
.type
= req
->request_type
;
848 /* skip over each question in the reply */
849 for (i
= 0; i
< questions
; ++i
) {
850 /* the question looks like
851 * <label:name><u16:type><u16:class>
855 if (j
>= length
) goto err
;
858 /* now we have the answer section which looks like
859 * <label:name><u16:type><u16:class><u32:ttl><u16:len><data...>
862 for (i
= 0; i
< answers
; ++i
) {
871 if (type
== TYPE_A
&& class == CLASS_INET
) {
872 int addrcount
, addrtocopy
;
873 if (req
->request_type
!= TYPE_A
) {
874 j
+= datalength
; continue;
876 if ((datalength
& 3) != 0) /* not an even number of As. */
878 addrcount
= datalength
>> 2;
879 addrtocopy
= MIN(MAX_ADDRS
- reply
.data
.a
.addrcount
, (unsigned)addrcount
);
881 ttl_r
= MIN(ttl_r
, ttl
);
882 /* we only bother with the first four addresses. */
883 if (j
+ 4*addrtocopy
> length
) goto err
;
884 memcpy(&reply
.data
.a
.addresses
[reply
.data
.a
.addrcount
],
885 packet
+ j
, 4*addrtocopy
);
887 reply
.data
.a
.addrcount
+= addrtocopy
;
888 reply
.have_answer
= 1;
889 if (reply
.data
.a
.addrcount
== MAX_ADDRS
) break;
890 } else if (type
== TYPE_PTR
&& class == CLASS_INET
) {
891 if (req
->request_type
!= TYPE_PTR
) {
892 j
+= datalength
; continue;
894 if (name_parse(packet
, length
, &j
, reply
.data
.ptr
.name
,
895 sizeof(reply
.data
.ptr
.name
))<0)
897 ttl_r
= MIN(ttl_r
, ttl
);
898 reply
.have_answer
= 1;
900 } else if (type
== TYPE_AAAA
&& class == CLASS_INET
) {
901 int addrcount
, addrtocopy
;
902 if (req
->request_type
!= TYPE_AAAA
) {
903 j
+= datalength
; continue;
905 if ((datalength
& 15) != 0) /* not an even number of AAAAs. */
907 addrcount
= datalength
>> 4; /* each address is 16 bytes long */
908 addrtocopy
= MIN(MAX_ADDRS
- reply
.data
.aaaa
.addrcount
, (unsigned)addrcount
);
909 ttl_r
= MIN(ttl_r
, ttl
);
911 /* we only bother with the first four addresses. */
912 if (j
+ 16*addrtocopy
> length
) goto err
;
913 memcpy(&reply
.data
.aaaa
.addresses
[reply
.data
.aaaa
.addrcount
],
914 packet
+ j
, 16*addrtocopy
);
915 reply
.data
.aaaa
.addrcount
+= addrtocopy
;
917 reply
.have_answer
= 1;
918 if (reply
.data
.aaaa
.addrcount
== MAX_ADDRS
) break;
920 /* skip over any other type of resource */
925 reply_handle(req
, flags
, ttl_r
, &reply
);
929 reply_handle(req
, flags
, 0, NULL
);
933 /* Parse a raw request (packet,length) sent to a nameserver port (port) from */
934 /* a DNS client (addr,addrlen), and if it's well-formed, call the corresponding */
937 request_parse(u8
*packet
, int length
, struct evdns_server_port
*port
, struct sockaddr
*addr
, socklen_t addrlen
)
939 int j
= 0; /* index into packet */
940 u16 _t
; /* used by the macros */
941 char tmp_name
[256]; /* used by the macros */
944 u16 trans_id
, flags
, questions
, answers
, authority
, additional
;
945 struct server_request
*server_req
= NULL
;
947 /* Get the header fields */
955 if (flags
& 0x8000) return -1; /* Must not be an answer. */
956 if (flags
& 0x7800) return -1; /* only standard queries are supported */
957 flags
&= 0x0300; /* Only TC and RD get preserved. */
959 server_req
= malloc(sizeof(struct server_request
));
960 if (server_req
== NULL
) return -1;
961 memset(server_req
, 0, sizeof(struct server_request
));
963 server_req
->trans_id
= trans_id
;
964 memcpy(&server_req
->addr
, addr
, addrlen
);
965 server_req
->addrlen
= addrlen
;
967 server_req
->base
.flags
= flags
;
968 server_req
->base
.nquestions
= 0;
969 server_req
->base
.questions
= malloc(sizeof(struct evdns_server_question
*) * questions
);
970 if (server_req
->base
.questions
== NULL
)
973 for (i
= 0; i
< questions
; ++i
) {
975 struct evdns_server_question
*q
;
977 if (name_parse(packet
, length
, &j
, tmp_name
, sizeof(tmp_name
))<0)
981 namelen
= strlen(tmp_name
);
982 q
= malloc(sizeof(struct evdns_server_question
) + namelen
);
987 memcpy(q
->name
, tmp_name
, namelen
+1);
988 server_req
->base
.questions
[server_req
->base
.nquestions
++] = q
;
991 /* Ignore answers, authority, and additional. */
993 server_req
->port
= port
;
995 port
->user_callback(&(server_req
->base
), port
->user_data
);
1000 if (server_req
->base
.questions
) {
1001 for (i
= 0; i
< server_req
->base
.nquestions
; ++i
)
1002 free(server_req
->base
.questions
[i
]);
1003 free(server_req
->base
.questions
);
1015 /* Try to choose a strong transaction id which isn't already in flight */
1017 transaction_id_pick(void) {
1019 const struct request
*req
= req_head
, *started_at
;
1020 #ifdef DNS_USE_CPU_CLOCK_FOR_ID
1023 #ifdef CLOCK_MONOTONIC
1024 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == -1)
1026 if (clock_gettime(CLOCK_REALTIME
, &ts
) == -1)
1028 event_err(1, "clock_gettime");
1029 trans_id
= ts
.tv_nsec
& 0xffff;
1032 #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID
1035 gettimeofday(&tv
, NULL
);
1036 trans_id
= tv
.tv_usec
& 0xffff;
1039 #ifdef DNS_USE_OPENSSL_FOR_ID
1041 if (RAND_pseudo_bytes((u8
*) &trans_id
, 2) == -1) {
1042 /* in the case that the RAND call fails we back */
1043 /* down to using gettimeofday. */
1045 gettimeofday(&tv
, NULL
);
1046 trans_id
= tv
.tv_usec
& 0xffff; */
1051 if (trans_id
== 0xffff) continue;
1052 /* now check to see if that id is already inflight */
1053 req
= started_at
= req_head
;
1056 if (req
->trans_id
== trans_id
) break;
1058 } while (req
!= started_at
);
1060 /* we didn't find it, so this is a good id */
1061 if (req
== started_at
) return trans_id
;
1065 /* choose a namesever to use. This function will try to ignore */
1066 /* nameservers which we think are down and load balance across the rest */
1067 /* by updating the server_head global each time. */
1068 static struct nameserver
*
1069 nameserver_pick(void) {
1070 struct nameserver
*started_at
= server_head
, *picked
;
1071 if (!server_head
) return NULL
;
1073 /* if we don't have any good nameservers then there's no */
1074 /* point in trying to find one. */
1075 if (!global_good_nameservers
) {
1076 server_head
= server_head
->next
;
1080 /* remember that nameservers are in a circular list */
1082 if (server_head
->state
) {
1083 /* we think this server is currently good */
1084 picked
= server_head
;
1085 server_head
= server_head
->next
;
1089 server_head
= server_head
->next
;
1090 if (server_head
== started_at
) {
1091 /* all the nameservers seem to be down */
1092 /* so we just return this one and hope for the */
1094 assert(global_good_nameservers
== 0);
1095 picked
= server_head
;
1096 server_head
= server_head
->next
;
1102 /* this is called when a namesever socket is ready for reading */
1104 nameserver_read(struct nameserver
*ns
) {
1108 const int r
= recv(ns
->socket
, packet
, sizeof(packet
), 0);
1110 int err
= last_error(ns
->socket
);
1111 if (error_is_eagain(err
)) return;
1112 nameserver_failed(ns
, strerror(err
));
1116 reply_parse(packet
, r
);
1120 /* Read a packet from a DNS client on a server port s, parse it, and */
1121 /* act accordingly. */
1123 server_port_read(struct evdns_server_port
*s
) {
1125 struct sockaddr_storage addr
;
1130 addrlen
= sizeof(struct sockaddr_storage
);
1131 r
= recvfrom(s
->socket
, packet
, sizeof(packet
), 0,
1132 (struct sockaddr
*) &addr
, &addrlen
);
1134 int err
= last_error(s
->socket
);
1135 if (error_is_eagain(err
)) return;
1136 log(EVDNS_LOG_WARN
, "Error %s (%d) while reading request.",
1137 strerror(err
), err
);
1140 request_parse(packet
, r
, s
, (struct sockaddr
*) &addr
, addrlen
);
1144 /* Try to write all pending replies on a given DNS server port. */
1146 server_port_flush(struct evdns_server_port
*port
)
1148 while (port
->pending_replies
) {
1149 struct server_request
*req
= port
->pending_replies
;
1150 int r
= sendto(port
->socket
, req
->response
, req
->response_len
, 0,
1151 (struct sockaddr
*) &req
->addr
, req
->addrlen
);
1153 int err
= last_error(port
->socket
);
1154 if (error_is_eagain(err
))
1156 log(EVDNS_LOG_WARN
, "Error %s (%d) while writing response to port; dropping", strerror(err
), err
);
1158 if (server_request_free(req
)) {
1159 /* we released the last reference to req->port. */
1164 /* We have no more pending requests; stop listening for 'writeable' events. */
1165 (void) event_del(&port
->event
);
1166 event_set(&port
->event
, port
->socket
, EV_READ
| EV_PERSIST
,
1167 server_port_ready_callback
, port
);
1168 if (event_add(&port
->event
, NULL
) < 0) {
1169 log(EVDNS_LOG_WARN
, "Error from libevent when adding event for DNS server.");
1174 /* set if we are waiting for the ability to write to this server. */
1175 /* if waiting is true then we ask libevent for EV_WRITE events, otherwise */
1176 /* we stop these events. */
1178 nameserver_write_waiting(struct nameserver
*ns
, char waiting
) {
1179 if (ns
->write_waiting
== waiting
) return;
1181 ns
->write_waiting
= waiting
;
1182 (void) event_del(&ns
->event
);
1183 event_set(&ns
->event
, ns
->socket
, EV_READ
| (waiting
? EV_WRITE
: 0) | EV_PERSIST
,
1184 nameserver_ready_callback
, ns
);
1185 if (event_add(&ns
->event
, NULL
) < 0) {
1186 log(EVDNS_LOG_WARN
, "Error from libevent when adding event for %s",
1187 debug_ntoa(ns
->address
));
1192 /* a callback function. Called by libevent when the kernel says that */
1193 /* a nameserver socket is ready for writing or reading */
1195 nameserver_ready_callback(int fd
, short events
, void *arg
) {
1196 struct nameserver
*ns
= (struct nameserver
*) arg
;
1199 if (events
& EV_WRITE
) {
1201 if (!evdns_transmit()) {
1202 nameserver_write_waiting(ns
, 0);
1205 if (events
& EV_READ
) {
1206 nameserver_read(ns
);
1210 /* a callback function. Called by libevent when the kernel says that */
1211 /* a server socket is ready for writing or reading. */
1213 server_port_ready_callback(int fd
, short events
, void *arg
) {
1214 struct evdns_server_port
*port
= (struct evdns_server_port
*) arg
;
1217 if (events
& EV_WRITE
) {
1219 server_port_flush(port
);
1221 if (events
& EV_READ
) {
1222 server_port_read(port
);
1226 /* This is an inefficient representation; only use it via the dnslabel_table_*
1227 * functions, so that is can be safely replaced with something smarter later. */
1228 #define MAX_LABELS 128
1229 /* Structures used to implement name compression */
1230 struct dnslabel_entry
{ char *v
; off_t pos
; };
1231 struct dnslabel_table
{
1232 int n_labels
; /* number of current entries */
1233 /* map from name to position in message */
1234 struct dnslabel_entry labels
[MAX_LABELS
];
1237 /* Initialize dnslabel_table. */
1239 dnslabel_table_init(struct dnslabel_table
*table
)
1241 table
->n_labels
= 0;
1244 /* Free all storage held by table, but not the table itself. */
1246 dnslabel_clear(struct dnslabel_table
*table
)
1249 for (i
= 0; i
< table
->n_labels
; ++i
)
1250 free(table
->labels
[i
].v
);
1251 table
->n_labels
= 0;
1254 /* return the position of the label in the current message, or -1 if the label */
1255 /* hasn't been used yet. */
1257 dnslabel_table_get_pos(const struct dnslabel_table
*table
, const char *label
)
1260 for (i
= 0; i
< table
->n_labels
; ++i
) {
1261 if (!strcmp(label
, table
->labels
[i
].v
))
1262 return table
->labels
[i
].pos
;
1267 /* remember that we've used the label at position pos */
1269 dnslabel_table_add(struct dnslabel_table
*table
, const char *label
, off_t pos
)
1273 if (table
->n_labels
== MAX_LABELS
)
1278 p
= table
->n_labels
++;
1279 table
->labels
[p
].v
= v
;
1280 table
->labels
[p
].pos
= pos
;
1285 /* Converts a string to a length-prefixed set of DNS labels, starting */
1286 /* at buf[j]. name and buf must not overlap. name_len should be the length */
1287 /* of name. table is optional, and is used for compression. */
1289 /* Input: abc.def */
1290 /* Output: <3>abc<3>def<0> */
1292 /* Returns the first index after the encoded name, or negative on error. */
1293 /* -1 label was > 63 bytes */
1294 /* -2 name too long to fit in buffer. */
1297 dnsname_to_labels(u8
*const buf
, size_t buf_len
, off_t j
,
1298 const char *name
, const int name_len
,
1299 struct dnslabel_table
*table
) {
1300 const char *end
= name
+ name_len
;
1304 #define APPEND16(x) do { \
1305 if (j + 2 > (off_t)buf_len) \
1308 memcpy(buf + j, &_t, 2); \
1311 #define APPEND32(x) do { \
1312 if (j + 4 > (off_t)buf_len) \
1315 memcpy(buf + j, &_t32, 4); \
1319 if (name_len
> 255) return -2;
1322 const char *const start
= name
;
1323 if (table
&& (ref
= dnslabel_table_get_pos(table
, name
)) >= 0) {
1324 APPEND16(ref
| 0xc000);
1327 name
= strchr(name
, '.');
1329 const unsigned int label_len
= end
- start
;
1330 if (label_len
> 63) return -1;
1331 if ((size_t)(j
+label_len
+1) > buf_len
) return -2;
1332 if (table
) dnslabel_table_add(table
, start
, j
);
1333 buf
[j
++] = label_len
;
1335 memcpy(buf
+ j
, start
, end
- start
);
1339 /* append length of the label. */
1340 const unsigned int label_len
= name
- start
;
1341 if (label_len
> 63) return -1;
1342 if ((size_t)(j
+label_len
+1) > buf_len
) return -2;
1343 if (table
) dnslabel_table_add(table
, start
, j
);
1344 buf
[j
++] = label_len
;
1346 memcpy(buf
+ j
, start
, name
- start
);
1348 /* hop over the '.' */
1353 /* the labels must be terminated by a 0. */
1354 /* It's possible that the name ended in a . */
1355 /* in which case the zero is already there */
1356 if (!j
|| buf
[j
-1]) buf
[j
++] = 0;
1362 /* Finds the length of a dns request for a DNS name of the given */
1363 /* length. The actual request may be smaller than the value returned */
1366 evdns_request_len(const int name_len
) {
1367 return 96 + /* length of the DNS standard header */
1369 4; /* space for the resource type */
1372 /* build a dns request packet into buf. buf should be at least as long */
1373 /* as evdns_request_len told you it should be. */
1375 /* Returns the amount of space used. Negative on error. */
1377 evdns_request_data_build(const char *const name
, const int name_len
,
1378 const u16 trans_id
, const u16 type
, const u16
class,
1379 u8
*const buf
, size_t buf_len
) {
1380 off_t j
= 0; /* current offset into buf */
1381 u16 _t
; /* used by the macros */
1384 APPEND16(0x0100); /* standard query, recusion needed */
1385 APPEND16(1); /* one question */
1386 APPEND16(0); /* no answers */
1387 APPEND16(0); /* no authority */
1388 APPEND16(0); /* no additional */
1390 j
= dnsname_to_labels(buf
, buf_len
, j
, name
, name_len
, NULL
);
1403 /* exported function */
1404 struct evdns_server_port
*
1405 evdns_add_server_port(int socket
, int is_tcp
, evdns_request_callback_fn_type cb
, void *user_data
)
1407 struct evdns_server_port
*port
;
1408 if (!(port
= malloc(sizeof(struct evdns_server_port
))))
1410 memset(port
, 0, sizeof(struct evdns_server_port
));
1412 assert(!is_tcp
); /* TCP sockets not yet implemented */
1413 port
->socket
= socket
;
1417 port
->user_callback
= cb
;
1418 port
->user_data
= user_data
;
1419 port
->pending_replies
= NULL
;
1421 event_set(&port
->event
, port
->socket
, EV_READ
| EV_PERSIST
,
1422 server_port_ready_callback
, port
);
1423 event_add(&port
->event
, NULL
); /* check return. */
1427 /* exported function */
1429 evdns_close_server_port(struct evdns_server_port
*port
)
1431 if (--port
->refcnt
== 0)
1432 server_port_free(port
);
1436 /* exported function */
1438 evdns_server_request_add_reply(struct evdns_server_request
*_req
, int section
, const char *name
, int type
, int class, int ttl
, int datalen
, int is_name
, const char *data
)
1440 struct server_request
*req
= TO_SERVER_REQUEST(_req
);
1441 struct server_reply_item
**itemp
, *item
;
1444 if (req
->response
) /* have we already answered? */
1448 case EVDNS_ANSWER_SECTION
:
1449 itemp
= &req
->answer
;
1450 countp
= &req
->n_answer
;
1452 case EVDNS_AUTHORITY_SECTION
:
1453 itemp
= &req
->authority
;
1454 countp
= &req
->n_authority
;
1456 case EVDNS_ADDITIONAL_SECTION
:
1457 itemp
= &req
->additional
;
1458 countp
= &req
->n_additional
;
1464 itemp
= &((*itemp
)->next
);
1466 item
= malloc(sizeof(struct server_reply_item
));
1470 if (!(item
->name
= strdup(name
))) {
1475 item
->class = class;
1477 item
->is_name
= is_name
!= 0;
1481 if (item
->is_name
) {
1482 if (!(item
->data
= strdup(data
))) {
1487 item
->datalen
= (u16
)-1;
1489 if (!(item
->data
= malloc(datalen
))) {
1494 item
->datalen
= datalen
;
1495 memcpy(item
->data
, data
, datalen
);
1504 /* exported function */
1506 evdns_server_request_add_a_reply(struct evdns_server_request
*req
, const char *name
, int n
, void *addrs
, int ttl
)
1508 return evdns_server_request_add_reply(
1509 req
, EVDNS_ANSWER_SECTION
, name
, TYPE_A
, CLASS_INET
,
1510 ttl
, n
*4, 0, addrs
);
1513 /* exported function */
1515 evdns_server_request_add_aaaa_reply(struct evdns_server_request
*req
, const char *name
, int n
, void *addrs
, int ttl
)
1517 return evdns_server_request_add_reply(
1518 req
, EVDNS_ANSWER_SECTION
, name
, TYPE_AAAA
, CLASS_INET
,
1519 ttl
, n
*16, 0, addrs
);
1522 /* exported function */
1524 evdns_server_request_add_ptr_reply(struct evdns_server_request
*req
, struct in_addr
*in
, const char *inaddr_name
, const char *hostname
, int ttl
)
1528 assert(in
|| inaddr_name
);
1529 assert(!(in
&& inaddr_name
));
1531 a
= ntohl(in
->s_addr
);
1532 snprintf(buf
, sizeof(buf
), "%d.%d.%d.%d.in-addr.arpa",
1533 (int)(u8
)((a
)&0xff),
1534 (int)(u8
)((a
>>8 )&0xff),
1535 (int)(u8
)((a
>>16)&0xff),
1536 (int)(u8
)((a
>>24)&0xff));
1539 return evdns_server_request_add_reply(
1540 req
, EVDNS_ANSWER_SECTION
, inaddr_name
, TYPE_PTR
, CLASS_INET
,
1541 ttl
, -1, 1, hostname
);
1544 /* exported function */
1546 evdns_server_request_add_cname_reply(struct evdns_server_request
*req
, const char *name
, const char *cname
, int ttl
)
1548 return evdns_server_request_add_reply(
1549 req
, EVDNS_ANSWER_SECTION
, name
, TYPE_A
, CLASS_INET
,
1555 evdns_server_request_format_response(struct server_request
*req
, int err
)
1557 unsigned char buf
[1500];
1558 size_t buf_len
= sizeof(buf
);
1564 struct dnslabel_table table
;
1566 if (err
< 0 || err
> 15) return -1;
1568 /* Set response bit and error code; copy OPCODE and RD fields from
1569 * question; copy RA and AA if set by caller. */
1570 flags
= req
->base
.flags
;
1571 flags
|= (0x8000 | err
);
1573 dnslabel_table_init(&table
);
1574 APPEND16(req
->trans_id
);
1576 APPEND16(req
->base
.nquestions
);
1577 APPEND16(req
->n_answer
);
1578 APPEND16(req
->n_authority
);
1579 APPEND16(req
->n_additional
);
1581 /* Add questions. */
1582 for (i
=0; i
< req
->base
.nquestions
; ++i
) {
1583 const char *s
= req
->base
.questions
[i
]->name
;
1584 j
= dnsname_to_labels(buf
, buf_len
, j
, s
, strlen(s
), &table
);
1586 dnslabel_clear(&table
);
1589 APPEND16(req
->base
.questions
[i
]->type
);
1590 APPEND16(req
->base
.questions
[i
]->class);
1593 /* Add answer, authority, and additional sections. */
1594 for (i
=0; i
<3; ++i
) {
1595 struct server_reply_item
*item
;
1599 item
= req
->authority
;
1601 item
= req
->additional
;
1603 r
= dnsname_to_labels(buf
, buf_len
, j
, item
->name
, strlen(item
->name
), &table
);
1608 APPEND16(item
->type
);
1609 APPEND16(item
->class);
1610 APPEND32(item
->ttl
);
1611 if (item
->is_name
) {
1612 off_t len_idx
= j
, name_start
;
1615 r
= dnsname_to_labels(buf
, buf_len
, j
, item
->data
, strlen(item
->data
), &table
);
1619 _t
= htons( (j
-name_start
) );
1620 memcpy(buf
+len_idx
, &_t
, 2);
1622 APPEND16(item
->datalen
);
1623 if (j
+item
->datalen
> (off_t
)buf_len
)
1625 memcpy(buf
+j
, item
->data
, item
->datalen
);
1635 buf
[3] |= 0x02; /* set the truncated bit. */
1638 req
->response_len
= j
;
1640 if (!(req
->response
= malloc(req
->response_len
))) {
1641 server_request_free_answers(req
);
1642 dnslabel_clear(&table
);
1645 memcpy(req
->response
, buf
, req
->response_len
);
1646 server_request_free_answers(req
);
1647 dnslabel_clear(&table
);
1651 /* exported function */
1653 evdns_server_request_respond(struct evdns_server_request
*_req
, int err
)
1655 struct server_request
*req
= TO_SERVER_REQUEST(_req
);
1656 struct evdns_server_port
*port
= req
->port
;
1658 if (!req
->response
) {
1659 if ((r
= evdns_server_request_format_response(req
, err
))<0)
1663 r
= sendto(port
->socket
, req
->response
, req
->response_len
, 0,
1664 (struct sockaddr
*) &req
->addr
, req
->addrlen
);
1666 int err
= last_error(port
->socket
);
1667 if (! error_is_eagain(err
))
1670 if (port
->pending_replies
) {
1671 req
->prev_pending
= port
->pending_replies
->prev_pending
;
1672 req
->next_pending
= port
->pending_replies
;
1673 req
->prev_pending
->next_pending
=
1674 req
->next_pending
->prev_pending
= req
;
1676 req
->prev_pending
= req
->next_pending
= req
;
1677 port
->pending_replies
= req
;
1680 (void) event_del(&port
->event
);
1681 event_set(&port
->event
, port
->socket
, (port
->closing
?0:EV_READ
) | EV_WRITE
| EV_PERSIST
, server_port_ready_callback
, port
);
1683 if (event_add(&port
->event
, NULL
) < 0) {
1684 log(EVDNS_LOG_WARN
, "Error from libevent when adding event for DNS server");
1691 if (server_request_free(req
))
1694 if (port
->pending_replies
)
1695 server_port_flush(port
);
1700 /* Free all storage held by RRs in req. */
1702 server_request_free_answers(struct server_request
*req
)
1704 struct server_reply_item
*victim
, *next
, **list
;
1706 for (i
= 0; i
< 3; ++i
) {
1708 list
= &req
->answer
;
1710 list
= &req
->authority
;
1712 list
= &req
->additional
;
1716 next
= victim
->next
;
1727 /* Free all storage held by req, and remove links to it. */
1728 /* return true iff we just wound up freeing the server_port. */
1730 server_request_free(struct server_request
*req
)
1733 if (req
->base
.questions
) {
1734 for (i
= 0; i
< req
->base
.nquestions
; ++i
)
1735 free(req
->base
.questions
[i
]);
1736 free(req
->base
.questions
);
1740 if (req
->port
->pending_replies
== req
) {
1741 if (req
->next_pending
)
1742 req
->port
->pending_replies
= req
->next_pending
;
1744 req
->port
->pending_replies
= NULL
;
1746 rc
= --req
->port
->refcnt
;
1749 if (req
->response
) {
1750 free(req
->response
);
1753 server_request_free_answers(req
);
1755 if (req
->next_pending
&& req
->next_pending
!= req
) {
1756 req
->next_pending
->prev_pending
= req
->prev_pending
;
1757 req
->prev_pending
->next_pending
= req
->next_pending
;
1761 server_port_free(req
->port
);
1769 /* Free all storage held by an evdns_server_port. Only called when */
1771 server_port_free(struct evdns_server_port
*port
)
1774 assert(!port
->refcnt
);
1775 assert(!port
->pending_replies
);
1776 if (port
->socket
> 0) {
1777 CLOSE_SOCKET(port
->socket
);
1780 (void) event_del(&port
->event
);
1781 /* XXXX actually free the port? -NM */
1784 /* exported function */
1786 evdns_server_request_drop(struct evdns_server_request
*_req
)
1788 struct server_request
*req
= TO_SERVER_REQUEST(_req
);
1789 server_request_free(req
);
1793 /* exported function */
1795 evdns_server_request_get_requesting_addr(struct evdns_server_request
*_req
, struct sockaddr
*sa
, int addr_len
)
1797 struct server_request
*req
= TO_SERVER_REQUEST(_req
);
1798 if (addr_len
< (int)req
->addrlen
)
1800 memcpy(sa
, &(req
->addr
), req
->addrlen
);
1801 return req
->addrlen
;
1807 /* this is a libevent callback function which is called when a request */
1808 /* has timed out. */
1810 evdns_request_timeout_callback(int fd
, short events
, void *arg
) {
1811 struct request
*const req
= (struct request
*) arg
;
1815 log(EVDNS_LOG_DEBUG
, "Request %lx timed out", (unsigned long) arg
);
1817 req
->ns
->timedout
++;
1818 if (req
->ns
->timedout
> global_max_nameserver_timeout
) {
1819 req
->ns
->timedout
= 0;
1820 nameserver_failed(req
->ns
, "request timed out.");
1823 (void) evtimer_del(&req
->timeout_event
);
1824 if (req
->tx_count
>= global_max_retransmits
) {
1825 /* this request has failed */
1826 reply_callback(req
, 0, DNS_ERR_TIMEOUT
, NULL
);
1827 request_finished(req
, &req_head
);
1830 evdns_request_transmit(req
);
1834 /* try to send a request to a given server. */
1838 /* 1 temporary failure */
1839 /* 2 other failure */
1841 evdns_request_transmit_to(struct request
*req
, struct nameserver
*server
) {
1842 const int r
= send(server
->socket
, req
->request
, req
->request_len
, 0);
1844 int err
= last_error(server
->socket
);
1845 if (error_is_eagain(err
)) return 1;
1846 nameserver_failed(req
->ns
, strerror(err
));
1848 } else if (r
!= (int)req
->request_len
) {
1849 return 1; /* short write */
1855 /* try to send a request, updating the fields of the request */
1862 evdns_request_transmit(struct request
*req
) {
1865 /* if we fail to send this packet then this flag marks it */
1866 /* for evdns_transmit */
1867 req
->transmit_me
= 1;
1868 if (req
->trans_id
== 0xffff) abort();
1870 if (req
->ns
->choked
) {
1871 /* don't bother trying to write to a socket */
1872 /* which we have had EAGAIN from */
1876 r
= evdns_request_transmit_to(req
, req
->ns
);
1880 req
->ns
->choked
= 1;
1881 nameserver_write_waiting(req
->ns
, 1);
1884 /* failed in some other way */
1889 log(EVDNS_LOG_DEBUG
,
1890 "Setting timeout for request %lx", (unsigned long) req
);
1891 evtimer_set(&req
->timeout_event
, evdns_request_timeout_callback
, req
);
1892 if (evtimer_add(&req
->timeout_event
, &global_timeout
) < 0) {
1894 "Error from libevent when adding timer for request %lx",
1895 (unsigned long) req
);
1899 req
->transmit_me
= 0;
1905 nameserver_probe_callback(int result
, char type
, int count
, int ttl
, void *addresses
, void *arg
) {
1906 struct nameserver
*const ns
= (struct nameserver
*) arg
;
1912 if (result
== DNS_ERR_NONE
|| result
== DNS_ERR_NOTEXIST
) {
1913 /* this is a good reply */
1915 } else nameserver_probe_failed(ns
);
1919 nameserver_send_probe(struct nameserver
*const ns
) {
1920 struct request
*req
;
1921 /* here we need to send a probe to a given nameserver */
1922 /* in the hope that it is up now. */
1924 log(EVDNS_LOG_DEBUG
, "Sending probe to %s", debug_ntoa(ns
->address
));
1926 req
= request_new(TYPE_A
, "www.google.com", DNS_QUERY_NO_SEARCH
, nameserver_probe_callback
, ns
);
1928 /* we force this into the inflight queue no matter what */
1929 request_trans_id_set(req
, transaction_id_pick());
1931 request_submit(req
);
1935 /* 0 didn't try to transmit anything */
1936 /* 1 tried to transmit something */
1938 evdns_transmit(void) {
1939 char did_try_to_transmit
= 0;
1942 struct request
*const started_at
= req_head
, *req
= req_head
;
1943 /* first transmit all the requests which are currently waiting */
1945 if (req
->transmit_me
) {
1946 did_try_to_transmit
= 1;
1947 evdns_request_transmit(req
);
1951 } while (req
!= started_at
);
1954 return did_try_to_transmit
;
1957 /* exported function */
1959 evdns_count_nameservers(void)
1961 const struct nameserver
*server
= server_head
;
1967 server
= server
->next
;
1968 } while (server
!= server_head
);
1972 /* exported function */
1974 evdns_clear_nameservers_and_suspend(void)
1976 struct nameserver
*server
= server_head
, *started_at
= server_head
;
1977 struct request
*req
= req_head
, *req_started_at
= req_head
;
1982 struct nameserver
*next
= server
->next
;
1983 (void) event_del(&server
->event
);
1984 (void) evtimer_del(&server
->timeout_event
);
1985 if (server
->socket
>= 0)
1986 CLOSE_SOCKET(server
->socket
);
1988 if (next
== started_at
)
1993 global_good_nameservers
= 0;
1996 struct request
*next
= req
->next
;
1997 req
->tx_count
= req
->reissue_count
= 0;
1999 /* ???? What to do about searches? */
2000 (void) evtimer_del(&req
->timeout_event
);
2002 req
->transmit_me
= 0;
2004 global_requests_waiting
++;
2005 evdns_request_insert(req
, &req_waiting_head
);
2006 /* We want to insert these suspended elements at the front of
2007 * the waiting queue, since they were pending before any of
2008 * the waiting entries were added. This is a circular list,
2009 * so we can just shift the start back by one.*/
2010 req_waiting_head
= req_waiting_head
->prev
;
2012 if (next
== req_started_at
)
2017 global_requests_inflight
= 0;
2023 /* exported function */
2027 evdns_requests_pump_waiting_queue();
2032 _evdns_nameserver_add_impl(unsigned long int address
, int port
) {
2033 /* first check to see if we already have this nameserver */
2035 const struct nameserver
*server
= server_head
, *const started_at
= server_head
;
2036 struct nameserver
*ns
;
2037 struct sockaddr_in sin
;
2041 if (server
->address
== address
) return 3;
2042 server
= server
->next
;
2043 } while (server
!= started_at
);
2046 ns
= (struct nameserver
*) malloc(sizeof(struct nameserver
));
2049 memset(ns
, 0, sizeof(struct nameserver
));
2051 ns
->socket
= socket(PF_INET
, SOCK_DGRAM
, 0);
2052 if (ns
->socket
< 0) { err
= 1; goto out1
; }
2055 u_long nonblocking
= 1;
2056 ioctlsocket(ns
->socket
, FIONBIO
, &nonblocking
);
2059 fcntl(ns
->socket
, F_SETFL
, O_NONBLOCK
);
2061 sin
.sin_addr
.s_addr
= address
;
2062 sin
.sin_port
= htons(port
);
2063 sin
.sin_family
= AF_INET
;
2064 if (connect(ns
->socket
, (struct sockaddr
*) &sin
, sizeof(sin
)) != 0) {
2069 ns
->address
= address
;
2071 event_set(&ns
->event
, ns
->socket
, EV_READ
| EV_PERSIST
, nameserver_ready_callback
, ns
);
2072 if (event_add(&ns
->event
, NULL
) < 0) {
2077 log(EVDNS_LOG_DEBUG
, "Added nameserver %s", debug_ntoa(address
));
2079 /* insert this nameserver into the list of them */
2081 ns
->next
= ns
->prev
= ns
;
2084 ns
->next
= server_head
->next
;
2085 ns
->prev
= server_head
;
2086 server_head
->next
= ns
;
2087 if (server_head
->prev
== server_head
) {
2088 server_head
->prev
= ns
;
2092 global_good_nameservers
++;
2097 CLOSE_SOCKET(ns
->socket
);
2100 log(EVDNS_LOG_WARN
, "Unable to add nameserver %s: error %d", debug_ntoa(address
), err
);
2104 /* exported function */
2106 evdns_nameserver_add(unsigned long int address
) {
2107 return _evdns_nameserver_add_impl(address
, 53);
2110 /* exported function */
2112 evdns_nameserver_ip_add(const char *ip_as_string
) {
2117 cp
= strchr(ip_as_string
, ':');
2122 port
= strtoint(cp
+1);
2123 if (port
< 0 || port
> 65535) {
2126 if ((cp
-ip_as_string
) >= (int)sizeof(buf
)) {
2129 memcpy(buf
, ip_as_string
, cp
-ip_as_string
);
2130 buf
[cp
-ip_as_string
] = '\0';
2133 if (!inet_aton(cp
, &ina
)) {
2136 return _evdns_nameserver_add_impl(ina
.s_addr
, port
);
2139 /* insert into the tail of the queue */
2141 evdns_request_insert(struct request
*req
, struct request
**head
) {
2144 req
->next
= req
->prev
= req
;
2148 req
->prev
= (*head
)->prev
;
2149 req
->prev
->next
= req
;
2151 (*head
)->prev
= req
;
2155 string_num_dots(const char *s
) {
2157 while ((s
= strchr(s
, '.'))) {
2164 static struct request
*
2165 request_new(int type
, const char *name
, int flags
,
2166 evdns_callback_type callback
, void *user_ptr
) {
2167 const char issuing_now
=
2168 (global_requests_inflight
< global_max_requests_inflight
) ? 1 : 0;
2170 const int name_len
= strlen(name
);
2171 const int request_max_len
= evdns_request_len(name_len
);
2172 const u16 trans_id
= issuing_now
? transaction_id_pick() : 0xffff;
2173 /* the request data is alloced in a single block with the header */
2174 struct request
*const req
=
2175 (struct request
*) malloc(sizeof(struct request
) + request_max_len
);
2179 if (!req
) return NULL
;
2180 memset(req
, 0, sizeof(struct request
));
2182 /* request data lives just after the header */
2183 req
->request
= ((u8
*) req
) + sizeof(struct request
);
2184 /* denotes that the request data shouldn't be free()ed */
2185 req
->request_appended
= 1;
2186 rlen
= evdns_request_data_build(name
, name_len
, trans_id
,
2187 type
, CLASS_INET
, req
->request
, request_max_len
);
2190 req
->request_len
= rlen
;
2191 req
->trans_id
= trans_id
;
2193 req
->request_type
= type
;
2194 req
->user_pointer
= user_ptr
;
2195 req
->user_callback
= callback
;
2196 req
->ns
= issuing_now
? nameserver_pick() : NULL
;
2197 req
->next
= req
->prev
= NULL
;
2206 request_submit(struct request
*const req
) {
2208 /* if it has a nameserver assigned then this is going */
2209 /* straight into the inflight queue */
2210 evdns_request_insert(req
, &req_head
);
2211 global_requests_inflight
++;
2212 evdns_request_transmit(req
);
2214 evdns_request_insert(req
, &req_waiting_head
);
2215 global_requests_waiting
++;
2219 /* exported function */
2220 int evdns_resolve_ipv4(const char *name
, int flags
,
2221 evdns_callback_type callback
, void *ptr
) {
2222 log(EVDNS_LOG_DEBUG
, "Resolve requested for %s", name
);
2223 if (flags
& DNS_QUERY_NO_SEARCH
) {
2224 struct request
*const req
=
2225 request_new(TYPE_A
, name
, flags
, callback
, ptr
);
2228 request_submit(req
);
2231 return (search_request_new(TYPE_A
, name
, flags
, callback
, ptr
));
2235 /* exported function */
2236 int evdns_resolve_ipv6(const char *name
, int flags
,
2237 evdns_callback_type callback
, void *ptr
) {
2238 log(EVDNS_LOG_DEBUG
, "Resolve requested for %s", name
);
2239 if (flags
& DNS_QUERY_NO_SEARCH
) {
2240 struct request
*const req
=
2241 request_new(TYPE_AAAA
, name
, flags
, callback
, ptr
);
2244 request_submit(req
);
2247 return (search_request_new(TYPE_AAAA
, name
, flags
, callback
, ptr
));
2251 int evdns_resolve_reverse(struct in_addr
*in
, int flags
, evdns_callback_type callback
, void *ptr
) {
2253 struct request
*req
;
2256 a
= ntohl(in
->s_addr
);
2257 snprintf(buf
, sizeof(buf
), "%d.%d.%d.%d.in-addr.arpa",
2258 (int)(u8
)((a
)&0xff),
2259 (int)(u8
)((a
>>8 )&0xff),
2260 (int)(u8
)((a
>>16)&0xff),
2261 (int)(u8
)((a
>>24)&0xff));
2262 log(EVDNS_LOG_DEBUG
, "Resolve requested for %s (reverse)", buf
);
2263 req
= request_new(TYPE_PTR
, buf
, flags
, callback
, ptr
);
2265 request_submit(req
);
2269 int evdns_resolve_reverse_ipv6(struct in6_addr
*in
, int flags
, evdns_callback_type callback
, void *ptr
) {
2272 struct request
*req
;
2276 for (i
=15; i
>= 0; --i
) {
2277 u8 byte
= in
->s6_addr
[i
];
2278 *cp
++ = "0123456789abcdef"[byte
& 0x0f];
2280 *cp
++ = "0123456789abcdef"[byte
>> 4];
2283 assert(cp
+ strlen(".ip6.arpa") < buf
+sizeof(buf
));
2284 memcpy(cp
, ".ip6.arpa", strlen(".ip6.arpa")+1);
2285 log(EVDNS_LOG_DEBUG
, "Resolve requested for %s (reverse)", buf
);
2286 req
= request_new(TYPE_PTR
, buf
, flags
, callback
, ptr
);
2288 request_submit(req
);
2292 /*/////////////////////////////////////////////////////////////////// */
2293 /* Search support */
2295 /* the libc resolver has support for searching a number of domains */
2296 /* to find a name. If nothing else then it takes the single domain */
2297 /* from the gethostname() call. */
2299 /* It can also be configured via the domain and search options in a */
2302 /* The ndots option controls how many dots it takes for the resolver */
2303 /* to decide that a name is non-local and so try a raw lookup first. */
2305 struct search_domain
{
2307 struct search_domain
*next
;
2308 /* the text string is appended to this structure */
2311 struct search_state
{
2315 struct search_domain
*head
;
2318 static struct search_state
*global_search_state
= NULL
;
2321 search_state_decref(struct search_state
*const state
) {
2324 if (!state
->refcount
) {
2325 struct search_domain
*next
, *dom
;
2326 for (dom
= state
->head
; dom
; dom
= next
) {
2334 static struct search_state
*
2335 search_state_new(void) {
2336 struct search_state
*state
= (struct search_state
*) malloc(sizeof(struct search_state
));
2337 if (!state
) return NULL
;
2338 memset(state
, 0, sizeof(struct search_state
));
2339 state
->refcount
= 1;
2346 search_postfix_clear(void) {
2347 search_state_decref(global_search_state
);
2349 global_search_state
= search_state_new();
2352 /* exported function */
2354 evdns_search_clear(void) {
2355 search_postfix_clear();
2359 search_postfix_add(const char *domain
) {
2361 struct search_domain
*sdomain
;
2362 while (domain
[0] == '.') domain
++;
2363 domain_len
= strlen(domain
);
2365 if (!global_search_state
) global_search_state
= search_state_new();
2366 if (!global_search_state
) return;
2367 global_search_state
->num_domains
++;
2369 sdomain
= (struct search_domain
*) malloc(sizeof(struct search_domain
) + domain_len
);
2370 if (!sdomain
) return;
2371 memcpy( ((u8
*) sdomain
) + sizeof(struct search_domain
), domain
, domain_len
);
2372 sdomain
->next
= global_search_state
->head
;
2373 sdomain
->len
= domain_len
;
2375 global_search_state
->head
= sdomain
;
2378 /* reverse the order of members in the postfix list. This is needed because, */
2379 /* when parsing resolv.conf we push elements in the wrong order */
2381 search_reverse(void) {
2382 struct search_domain
*cur
, *prev
= NULL
, *next
;
2383 cur
= global_search_state
->head
;
2391 global_search_state
->head
= prev
;
2394 /* exported function */
2396 evdns_search_add(const char *domain
) {
2397 search_postfix_add(domain
);
2400 /* exported function */
2402 evdns_search_ndots_set(const int ndots
) {
2403 if (!global_search_state
) global_search_state
= search_state_new();
2404 if (!global_search_state
) return;
2405 global_search_state
->ndots
= ndots
;
2409 search_set_from_hostname(void) {
2410 char hostname
[HOST_NAME_MAX
+ 1], *domainname
;
2412 search_postfix_clear();
2413 if (gethostname(hostname
, sizeof(hostname
))) return;
2414 domainname
= strchr(hostname
, '.');
2415 if (!domainname
) return;
2416 search_postfix_add(domainname
);
2419 /* warning: returns malloced string */
2421 search_make_new(const struct search_state
*const state
, int n
, const char *const base_name
) {
2422 const int base_len
= strlen(base_name
);
2423 const char need_to_append_dot
= base_name
[base_len
- 1] == '.' ? 0 : 1;
2424 struct search_domain
*dom
;
2426 for (dom
= state
->head
; dom
; dom
= dom
->next
) {
2428 /* this is the postfix we want */
2429 /* the actual postfix string is kept at the end of the structure */
2430 const u8
*const postfix
= ((u8
*) dom
) + sizeof(struct search_domain
);
2431 const int postfix_len
= dom
->len
;
2432 char *const newname
= (char *) malloc(base_len
+ need_to_append_dot
+ postfix_len
+ 1);
2433 if (!newname
) return NULL
;
2434 memcpy(newname
, base_name
, base_len
);
2435 if (need_to_append_dot
) newname
[base_len
] = '.';
2436 memcpy(newname
+ base_len
+ need_to_append_dot
, postfix
, postfix_len
);
2437 newname
[base_len
+ need_to_append_dot
+ postfix_len
] = 0;
2442 /* we ran off the end of the list and still didn't find the requested string */
2444 return NULL
; /* unreachable; stops warnings in some compilers. */
2448 search_request_new(int type
, const char *const name
, int flags
, evdns_callback_type user_callback
, void *user_arg
) {
2449 assert(type
== TYPE_A
|| type
== TYPE_AAAA
);
2450 if ( ((flags
& DNS_QUERY_NO_SEARCH
) == 0) &&
2451 global_search_state
&&
2452 global_search_state
->num_domains
) {
2453 /* we have some domains to search */
2454 struct request
*req
;
2455 if (string_num_dots(name
) >= global_search_state
->ndots
) {
2456 req
= request_new(type
, name
, flags
, user_callback
, user_arg
);
2458 req
->search_index
= -1;
2460 char *const new_name
= search_make_new(global_search_state
, 0, name
);
2461 if (!new_name
) return 1;
2462 req
= request_new(type
, new_name
, flags
, user_callback
, user_arg
);
2465 req
->search_index
= 0;
2467 req
->search_origname
= strdup(name
);
2468 req
->search_state
= global_search_state
;
2469 req
->search_flags
= flags
;
2470 global_search_state
->refcount
++;
2471 request_submit(req
);
2474 struct request
*const req
= request_new(type
, name
, flags
, user_callback
, user_arg
);
2476 request_submit(req
);
2481 /* this is called when a request has failed to find a name. We need to check */
2482 /* if it is part of a search and, if so, try the next name in the list */
2484 /* 0 another request has been submitted */
2485 /* 1 no more requests needed */
2487 search_try_next(struct request
*const req
) {
2488 if (req
->search_state
) {
2489 /* it is part of a search */
2491 struct request
*newreq
;
2492 req
->search_index
++;
2493 if (req
->search_index
>= req
->search_state
->num_domains
) {
2494 /* no more postfixes to try, however we may need to try */
2495 /* this name without a postfix */
2496 if (string_num_dots(req
->search_origname
) < req
->search_state
->ndots
) {
2497 /* yep, we need to try it raw */
2498 struct request
*const newreq
= request_new(req
->request_type
, req
->search_origname
, req
->search_flags
, req
->user_callback
, req
->user_pointer
);
2499 log(EVDNS_LOG_DEBUG
, "Search: trying raw query %s", req
->search_origname
);
2501 request_submit(newreq
);
2508 new_name
= search_make_new(req
->search_state
, req
->search_index
, req
->search_origname
);
2509 if (!new_name
) return 1;
2510 log(EVDNS_LOG_DEBUG
, "Search: now trying %s (%d)", new_name
, req
->search_index
);
2511 newreq
= request_new(req
->request_type
, new_name
, req
->search_flags
, req
->user_callback
, req
->user_pointer
);
2513 if (!newreq
) return 1;
2514 newreq
->search_origname
= req
->search_origname
;
2515 req
->search_origname
= NULL
;
2516 newreq
->search_state
= req
->search_state
;
2517 newreq
->search_flags
= req
->search_flags
;
2518 newreq
->search_index
= req
->search_index
;
2519 newreq
->search_state
->refcount
++;
2520 request_submit(newreq
);
2527 search_request_finished(struct request
*const req
) {
2528 if (req
->search_state
) {
2529 search_state_decref(req
->search_state
);
2530 req
->search_state
= NULL
;
2532 if (req
->search_origname
) {
2533 free(req
->search_origname
);
2534 req
->search_origname
= NULL
;
2538 /*/////////////////////////////////////////////////////////////////// */
2539 /* Parsing resolv.conf files */
2542 evdns_resolv_set_defaults(int flags
) {
2543 /* if the file isn't found then we assume a local resolver */
2544 if (flags
& DNS_OPTION_SEARCH
) search_set_from_hostname();
2545 if (flags
& DNS_OPTION_NAMESERVERS
) evdns_nameserver_ip_add("127.0.0.1");
2548 #ifndef HAVE_STRTOK_R
2550 strtok_r(char *s
, const char *delim
, char **state
) {
2551 return strtok(s
, delim
);
2555 /* helper version of atoi which returns -1 on error */
2557 strtoint(const char *const str
) {
2559 const int r
= strtol(str
, &endptr
, 10);
2560 if (*endptr
) return -1;
2564 /* helper version of atoi that returns -1 on error and clips to bounds. */
2566 strtoint_clipped(const char *const str
, int min
, int max
)
2568 int r
= strtoint(str
);
2579 /* exported function */
2581 evdns_set_option(const char *option
, const char *val
, int flags
)
2583 if (!strncmp(option
, "ndots:", 6)) {
2584 const int ndots
= strtoint(val
);
2585 if (ndots
== -1) return -1;
2586 if (!(flags
& DNS_OPTION_SEARCH
)) return 0;
2587 log(EVDNS_LOG_DEBUG
, "Setting ndots to %d", ndots
);
2588 if (!global_search_state
) global_search_state
= search_state_new();
2589 if (!global_search_state
) return -1;
2590 global_search_state
->ndots
= ndots
;
2591 } else if (!strncmp(option
, "timeout:", 8)) {
2592 const int timeout
= strtoint(val
);
2593 if (timeout
== -1) return -1;
2594 if (!(flags
& DNS_OPTION_MISC
)) return 0;
2595 log(EVDNS_LOG_DEBUG
, "Setting timeout to %d", timeout
);
2596 global_timeout
.tv_sec
= timeout
;
2597 } else if (!strncmp(option
, "max-timeouts:", 12)) {
2598 const int maxtimeout
= strtoint_clipped(val
, 1, 255);
2599 if (maxtimeout
== -1) return -1;
2600 if (!(flags
& DNS_OPTION_MISC
)) return 0;
2601 log(EVDNS_LOG_DEBUG
, "Setting maximum allowed timeouts to %d",
2603 global_max_nameserver_timeout
= maxtimeout
;
2604 } else if (!strncmp(option
, "max-inflight:", 13)) {
2605 const int maxinflight
= strtoint_clipped(val
, 1, 65000);
2606 if (maxinflight
== -1) return -1;
2607 if (!(flags
& DNS_OPTION_MISC
)) return 0;
2608 log(EVDNS_LOG_DEBUG
, "Setting maximum inflight requests to %d",
2610 global_max_requests_inflight
= maxinflight
;
2611 } else if (!strncmp(option
, "attempts:", 9)) {
2612 int retries
= strtoint(val
);
2613 if (retries
== -1) return -1;
2614 if (retries
> 255) retries
= 255;
2615 if (!(flags
& DNS_OPTION_MISC
)) return 0;
2616 log(EVDNS_LOG_DEBUG
, "Setting retries to %d", retries
);
2617 global_max_retransmits
= retries
;
2623 resolv_conf_parse_line(char *const start
, int flags
) {
2625 static const char *const delims
= " \t";
2626 #define NEXT_TOKEN strtok_r(NULL, delims, &strtok_state)
2628 char *const first_token
= strtok_r(start
, delims
, &strtok_state
);
2629 if (!first_token
) return;
2631 if (!strcmp(first_token
, "nameserver") && (flags
& DNS_OPTION_NAMESERVERS
)) {
2632 const char *const nameserver
= NEXT_TOKEN
;
2635 if (inet_aton(nameserver
, &ina
)) {
2636 /* address is valid */
2637 evdns_nameserver_add(ina
.s_addr
);
2639 } else if (!strcmp(first_token
, "domain") && (flags
& DNS_OPTION_SEARCH
)) {
2640 const char *const domain
= NEXT_TOKEN
;
2642 search_postfix_clear();
2643 search_postfix_add(domain
);
2645 } else if (!strcmp(first_token
, "search") && (flags
& DNS_OPTION_SEARCH
)) {
2647 search_postfix_clear();
2649 while ((domain
= NEXT_TOKEN
)) {
2650 search_postfix_add(domain
);
2653 } else if (!strcmp(first_token
, "options")) {
2655 while ((option
= NEXT_TOKEN
)) {
2656 const char *val
= strchr(option
, ':');
2657 evdns_set_option(option
, val
? val
+1 : "", flags
);
2663 /* exported function */
2666 /* 1 failed to open file */
2667 /* 2 failed to stat file */
2668 /* 3 file too large */
2669 /* 4 out of memory */
2670 /* 5 short read from file */
2672 evdns_resolv_conf_parse(int flags
, const char *const filename
) {
2679 log(EVDNS_LOG_DEBUG
, "Parsing resolv.conf file %s", filename
);
2681 fd
= open(filename
, O_RDONLY
);
2683 evdns_resolv_set_defaults(flags
);
2687 if (fstat(fd
, &st
)) { err
= 2; goto out1
; }
2689 evdns_resolv_set_defaults(flags
);
2690 err
= (flags
& DNS_OPTION_NAMESERVERS
) ? 6 : 0;
2693 if (st
.st_size
> 65535) { err
= 3; goto out1
; } /* no resolv.conf should be any bigger */
2695 resolv
= (u8
*) malloc((size_t)st
.st_size
+ 1);
2696 if (!resolv
) { err
= 4; goto out1
; }
2699 while ((r
= read(fd
, resolv
+n
, (size_t)st
.st_size
-n
)) > 0) {
2701 if (n
== st
.st_size
)
2703 assert(n
< st
.st_size
);
2705 if (r
< 0) { err
= 5; goto out2
; }
2706 resolv
[n
] = 0; /* we malloced an extra byte; this should be fine. */
2708 start
= (char *) resolv
;
2710 char *const newline
= strchr(start
, '\n');
2712 resolv_conf_parse_line(start
, flags
);
2716 resolv_conf_parse_line(start
, flags
);
2717 start
= newline
+ 1;
2721 if (!server_head
&& (flags
& DNS_OPTION_NAMESERVERS
)) {
2722 /* no nameservers were configured. */
2723 evdns_nameserver_ip_add("127.0.0.1");
2726 if (flags
& DNS_OPTION_SEARCH
&& (!global_search_state
|| global_search_state
->num_domains
== 0)) {
2727 search_set_from_hostname();
2738 /* Add multiple nameservers from a space-or-comma-separated list. */
2740 evdns_nameserver_ip_add_line(const char *ips
) {
2745 while (ISSPACE(*ips
) || *ips
== ',' || *ips
== '\t')
2748 while (ISDIGIT(*ips
) || *ips
== '.' || *ips
== ':')
2750 buf
= malloc(ips
-addr
+1);
2752 memcpy(buf
, addr
, ips
-addr
);
2753 buf
[ips
-addr
] = '\0';
2754 r
= evdns_nameserver_ip_add(buf
);
2761 typedef DWORD(WINAPI
*GetNetworkParams_fn_t
)(FIXED_INFO
*, DWORD
*);
2763 /* Use the windows GetNetworkParams interface in iphlpapi.dll to */
2764 /* figure out what our nameservers are. */
2766 load_nameservers_with_getnetworkparams(void)
2768 /* Based on MSDN examples and inspection of c-ares code. */
2771 ULONG size
= sizeof(FIXED_INFO
);
2773 int status
= 0, r
, added_any
;
2775 GetNetworkParams_fn_t fn
;
2777 if (!(handle
= LoadLibrary("iphlpapi.dll"))) {
2778 log(EVDNS_LOG_WARN
, "Could not open iphlpapi.dll");
2782 if (!(fn
= (GetNetworkParams_fn_t
) GetProcAddress(handle
, "GetNetworkParams"))) {
2783 log(EVDNS_LOG_WARN
, "Could not get address of function.");
2789 if (!buf
) { status
= 4; goto done
; }
2791 r
= fn(fixed
, &size
);
2792 if (r
!= ERROR_SUCCESS
&& r
!= ERROR_BUFFER_OVERFLOW
) {
2796 if (r
!= ERROR_SUCCESS
) {
2799 if (!buf
) { status
= 4; goto done
; }
2801 r
= fn(fixed
, &size
);
2802 if (r
!= ERROR_SUCCESS
) {
2803 log(EVDNS_LOG_DEBUG
, "fn() failed.");
2811 ns
= &(fixed
->DnsServerList
);
2813 r
= evdns_nameserver_ip_add_line(ns
->IpAddress
.String
);
2815 log(EVDNS_LOG_DEBUG
,"Could not add nameserver %s to list,error: %d",
2816 (ns
->IpAddress
.String
),(int)GetLastError());
2820 log(EVDNS_LOG_DEBUG
,"Succesfully added %s as nameserver",ns
->IpAddress
.String
);
2828 log(EVDNS_LOG_DEBUG
, "No nameservers added.");
2836 FreeLibrary(handle
);
2841 config_nameserver_from_reg_key(HKEY key
, const char *subkey
)
2844 DWORD bufsz
= 0, type
= 0;
2847 if (RegQueryValueEx(key
, subkey
, 0, &type
, NULL
, &bufsz
)
2850 if (!(buf
= malloc(bufsz
)))
2853 if (RegQueryValueEx(key
, subkey
, 0, &type
, (LPBYTE
)buf
, &bufsz
)
2854 == ERROR_SUCCESS
&& bufsz
> 1) {
2855 status
= evdns_nameserver_ip_add_line(buf
);
2862 #define SERVICES_KEY "System\\CurrentControlSet\\Services\\"
2863 #define WIN_NS_9X_KEY SERVICES_KEY "VxD\\MSTCP"
2864 #define WIN_NS_NT_KEY SERVICES_KEY "Tcpip\\Parameters"
2867 load_nameservers_from_registry(void)
2871 #define TRY(k, name) \
2872 if (!found && config_nameserver_from_reg_key(k,name) == 0) { \
2873 log(EVDNS_LOG_DEBUG,"Found nameservers in %s/%s",#k,name); \
2875 } else if (!found) { \
2876 log(EVDNS_LOG_DEBUG,"Didn't find nameservers in %s/%s", \
2880 if (((int)GetVersion()) > 0) { /* NT */
2881 HKEY nt_key
= 0, interfaces_key
= 0;
2883 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE
, WIN_NS_NT_KEY
, 0,
2884 KEY_READ
, &nt_key
) != ERROR_SUCCESS
) {
2885 log(EVDNS_LOG_DEBUG
,"Couldn't open nt key, %d",(int)GetLastError());
2888 r
= RegOpenKeyEx(nt_key
, "Interfaces", 0,
2889 KEY_QUERY_VALUE
|KEY_ENUMERATE_SUB_KEYS
,
2891 if (r
!= ERROR_SUCCESS
) {
2892 log(EVDNS_LOG_DEBUG
,"Couldn't open interfaces key, %d",(int)GetLastError());
2895 TRY(nt_key
, "NameServer");
2896 TRY(nt_key
, "DhcpNameServer");
2897 TRY(interfaces_key
, "NameServer");
2898 TRY(interfaces_key
, "DhcpNameServer");
2899 RegCloseKey(interfaces_key
);
2900 RegCloseKey(nt_key
);
2903 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE
, WIN_NS_9X_KEY
, 0,
2904 KEY_READ
, &win_key
) != ERROR_SUCCESS
) {
2905 log(EVDNS_LOG_DEBUG
, "Couldn't open registry key, %d", (int)GetLastError());
2908 TRY(win_key
, "NameServer");
2909 RegCloseKey(win_key
);
2913 log(EVDNS_LOG_WARN
,"Didn't find any nameservers.");
2916 return found
? 0 : -1;
2921 evdns_config_windows_nameservers(void)
2923 if (load_nameservers_with_getnetworkparams() == 0)
2925 return load_nameservers_from_registry();
2934 evdns_config_windows_nameservers();
2936 res
= evdns_resolv_conf_parse(DNS_OPTIONS_ALL
, "/etc/resolv.conf");
2943 evdns_err_to_string(int err
)
2946 case DNS_ERR_NONE
: return "no error";
2947 case DNS_ERR_FORMAT
: return "misformatted query";
2948 case DNS_ERR_SERVERFAILED
: return "server failed";
2949 case DNS_ERR_NOTEXIST
: return "name does not exist";
2950 case DNS_ERR_NOTIMPL
: return "query not implemented";
2951 case DNS_ERR_REFUSED
: return "refused";
2953 case DNS_ERR_TRUNCATED
: return "reply truncated or ill-formed";
2954 case DNS_ERR_UNKNOWN
: return "unknown";
2955 case DNS_ERR_TIMEOUT
: return "request timed out";
2956 case DNS_ERR_SHUTDOWN
: return "dns subsystem shut down";
2957 default: return "[Unknown error code]";
2962 evdns_shutdown(int fail_requests
)
2964 struct nameserver
*server
, *server_next
;
2965 struct search_domain
*dom
, *dom_next
;
2969 reply_callback(req_head
, 0, DNS_ERR_SHUTDOWN
, NULL
);
2970 request_finished(req_head
, &req_head
);
2972 while (req_waiting_head
) {
2974 reply_callback(req_waiting_head
, 0, DNS_ERR_SHUTDOWN
, NULL
);
2975 request_finished(req_waiting_head
, &req_waiting_head
);
2977 global_requests_inflight
= global_requests_waiting
= 0;
2979 for (server
= server_head
; server
; server
= server_next
) {
2980 server_next
= server
->next
;
2981 if (server
->socket
>= 0)
2982 CLOSE_SOCKET(server
->socket
);
2983 (void) event_del(&server
->event
);
2984 if (server
->state
== 0)
2985 (void) event_del(&server
->timeout_event
);
2987 if (server_next
== server_head
)
2991 global_good_nameservers
= 0;
2993 if (global_search_state
) {
2994 for (dom
= global_search_state
->head
; dom
; dom
= dom_next
) {
2995 dom_next
= dom
->next
;
2998 free(global_search_state
);
2999 global_search_state
= NULL
;
3001 evdns_log_fn
= NULL
;
3006 main_callback(int result
, char type
, int count
, int ttl
,
3007 void *addrs
, void *orig
) {
3008 char *n
= (char*)orig
;
3010 for (i
= 0; i
< count
; ++i
) {
3011 if (type
== DNS_IPv4_A
) {
3012 printf("%s: %s\n", n
, debug_ntoa(((u32
*)addrs
)[i
]));
3013 } else if (type
== DNS_PTR
) {
3014 printf("%s: %s\n", n
, ((char**)addrs
)[i
]);
3018 printf("%s: No answer (%d)\n", n
, result
);
3023 evdns_server_callback(struct evdns_server_request
*req
, void *data
)
3027 /* dummy; give 192.168.11.11 as an answer for all A questions,
3028 * give foo.bar.example.com as an answer for all PTR questions. */
3029 for (i
= 0; i
< req
->nquestions
; ++i
) {
3030 u32 ans
= htonl(0xc0a80b0bUL
);
3031 if (req
->questions
[i
]->type
== EVDNS_TYPE_A
&&
3032 req
->questions
[i
]->class == EVDNS_CLASS_INET
) {
3033 printf(" -- replying for %s (A)\n", req
->questions
[i
]->name
);
3034 r
= evdns_server_request_add_a_reply(req
, req
->questions
[i
]->name
,
3037 printf("eeep, didn't work.\n");
3038 } else if (req
->questions
[i
]->type
== EVDNS_TYPE_PTR
&&
3039 req
->questions
[i
]->class == EVDNS_CLASS_INET
) {
3040 printf(" -- replying for %s (PTR)\n", req
->questions
[i
]->name
);
3041 r
= evdns_server_request_add_ptr_reply(req
, NULL
, req
->questions
[i
]->name
,
3042 "foo.bar.example.com", 10);
3044 printf(" -- skipping %s [%d %d]\n", req
->questions
[i
]->name
,
3045 req
->questions
[i
]->type
, req
->questions
[i
]->class);
3049 r
= evdns_request_respond(req
, 0);
3051 printf("eeek, couldn't send reply.\n");
3055 logfn(int is_warn
, const char *msg
) {
3057 fprintf(stderr
, "%s\n", msg
);
3060 main(int c
, char **v
) {
3062 int reverse
= 0, verbose
= 1, servertest
= 0;
3064 fprintf(stderr
, "syntax: %s [-x] [-v] hostname\n", v
[0]);
3065 fprintf(stderr
, "syntax: %s [-servertest]\n", v
[0]);
3069 while (idx
< c
&& v
[idx
][0] == '-') {
3070 if (!strcmp(v
[idx
], "-x"))
3072 else if (!strcmp(v
[idx
], "-v"))
3074 else if (!strcmp(v
[idx
], "-servertest"))
3077 fprintf(stderr
, "Unknown option %s\n", v
[idx
]);
3082 evdns_set_log_fn(logfn
);
3083 evdns_resolv_conf_parse(DNS_OPTION_NAMESERVERS
, "/etc/resolv.conf");
3086 struct sockaddr_in my_addr
;
3087 sock
= socket(PF_INET
, SOCK_DGRAM
, 0);
3088 fcntl(sock
, F_SETFL
, O_NONBLOCK
);
3089 my_addr
.sin_family
= AF_INET
;
3090 my_addr
.sin_port
= htons(10053);
3091 my_addr
.sin_addr
.s_addr
= INADDR_ANY
;
3092 if (bind(sock
, (struct sockaddr
*)&my_addr
, sizeof(my_addr
))<0) {
3096 evdns_add_server_port(sock
, 0, evdns_server_callback
, NULL
);
3098 for (; idx
< c
; ++idx
) {
3100 struct in_addr addr
;
3101 if (!inet_aton(v
[idx
], &addr
)) {
3102 fprintf(stderr
, "Skipping non-IP %s\n", v
[idx
]);
3105 fprintf(stderr
, "resolving %s...\n",v
[idx
]);
3106 evdns_resolve_reverse(&addr
, 0, main_callback
, v
[idx
]);
3108 fprintf(stderr
, "resolving (fwd) %s...\n",v
[idx
]);
3109 evdns_resolve_ipv4(v
[idx
], 0, main_callback
, v
[idx
]);