1 #define DNS_USE_GETTIMEOFDAY_FOR_ID 1
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 <iphlpapi.h>
102 #include <sys/socket.h>
103 #include <netinet/in.h>
104 #include <arpa/inet.h>
107 #ifdef HAVE_NETINET_IN6_H
108 #include <netinet/in6.h>
112 typedef int socklen_t;
115 #define EVDNS_LOG_DEBUG 0
116 #define EVDNS_LOG_WARN 1
118 #ifndef HOST_NAME_MAX
119 #define HOST_NAME_MAX 255
127 #define MIN(a,b) ((a)<(b)?(a):(b))
130 /* libevent doesn't work without this */
131 typedef uint8_t u_char;
132 typedef unsigned int uint;
141 #define MAX_ADDRS 4 /* maximum number of addresses from a single packet */
142 /* which we bother recording */
144 #define TYPE_A EVDNS_TYPE_A
146 #define TYPE_PTR EVDNS_TYPE_PTR
147 #define TYPE_AAAA EVDNS_TYPE_AAAA
149 #define CLASS_INET EVDNS_CLASS_INET
152 u8 *request; /* the dns packet data */
153 unsigned int request_len;
155 int tx_count; /* the number of times that this packet has been sent */
156 unsigned int request_type; /* TYPE_PTR or TYPE_A */
157 void *user_pointer; /* the pointer given to us for this request */
158 evdns_callback_type user_callback;
159 struct nameserver *ns; /* the server which we last sent it */
161 /* elements used by the searching code */
163 struct search_state *search_state;
164 char *search_origname; /* needs to be free()ed */
167 /* these objects are kept in a circular list */
168 struct request *next, *prev;
170 struct event timeout_event;
172 u16 trans_id; /* the transaction id */
173 char request_appended; /* true if the request pointer is data which follows this struct */
174 char transmit_me; /* needs to be transmitted */
177 #ifndef HAVE_STRUCT_IN6_ADDR
185 unsigned int have_answer;
189 u32 addresses[MAX_ADDRS];
193 struct xin6_addr addresses[MAX_ADDRS];
196 char name[HOST_NAME_MAX];
202 int socket; /* a connected UDP socket */
204 int failed_times; /* number of times which we have given this server a chance */
205 int timedout; /* number of times in a row a request has timed out */
207 /* these objects are kept in a circular list */
208 struct nameserver *next, *prev;
209 struct event timeout_event; /* used to keep the timeout for */
210 /* when we next probe this server. */
211 /* Valid if state == 0 */
212 char state; /* zero if we think that this server is down */
213 char choked; /* true if we have an EAGAIN from this server's socket */
214 char write_waiting; /* true if we are waiting for EV_WRITE events */
217 static struct request *req_head = NULL, *req_waiting_head = NULL;
218 static struct nameserver *server_head = NULL;
220 /* Represents a local port where we're listening for DNS requests. Right now, */
221 /* only UDP is supported. */
222 struct evdns_server_port {
223 int socket; /* socket we use to read queries and write replies. */
224 int refcnt; /* reference count. */
225 char choked; /* Are we currently blocked from writing? */
226 char closing; /* Are we trying to close this port, pending writes? */
227 evdns_request_callback_fn_type user_callback; /* Fn to handle requests */
228 void *user_data; /* Opaque pointer passed to user_callback */
229 struct event event; /* Read/write event */
230 /* circular list of replies that we want to write. */
231 struct server_request *pending_replies;
234 /* Represents part of a reply being built. (That is, a single RR.) */
235 struct server_reply_item {
236 struct server_reply_item *next; /* next item in sequence. */
237 char *name; /* name part of the RR */
238 u16 type : 16; /* The RR type */
239 u16 class : 16; /* The RR class (usually CLASS_INET) */
240 u32 ttl; /* The RR TTL */
241 char is_name; /* True iff data is a label */
242 u16 datalen; /* Length of data; -1 if data is a label */
243 void *data; /* The contents of the RR */
246 /* Represents a request that we've received as a DNS server, and holds */
247 /* the components of the reply as we're constructing it. */
248 struct server_request {
249 /* Pointers to the next and previous entries on the list of replies */
250 /* that we're waiting to write. Only set if we have tried to respond */
251 /* and gotten EAGAIN. */
252 struct server_request *next_pending;
253 struct server_request *prev_pending;
255 u16 trans_id; /* Transaction id. */
256 struct evdns_server_port *port; /* Which port received this request on? */
257 struct sockaddr_storage addr; /* Where to send the response */
258 socklen_t addrlen; /* length of addr */
260 int n_answer; /* how many answer RRs have been set? */
261 int n_authority; /* how many authority RRs have been set? */
262 int n_additional; /* how many additional RRs have been set? */
264 struct server_reply_item *answer; /* linked list of answer RRs */
265 struct server_reply_item *authority; /* linked list of authority RRs */
266 struct server_reply_item *additional; /* linked list of additional RRs */
268 /* Constructed response. Only set once we're ready to send a reply. */
269 /* Once this is set, the RR fields are cleared, and no more should be set. */
273 /* Caller-visible fields: flags, questions. */
274 struct evdns_server_request base;
278 #define OFFSET_OF(st, member) ((off_t) (((char*)&((st*)0)->member)-(char*)0))
280 /* Given a pointer to an evdns_server_request, get the corresponding */
281 /* server_request. */
282 #define TO_SERVER_REQUEST(base_ptr) \
283 ((struct server_request*) \
284 (((char*)(base_ptr) - OFFSET_OF(struct server_request, base))))
286 /* The number of good nameservers that we have */
287 static int global_good_nameservers = 0;
289 /* inflight requests are contained in the req_head list */
290 /* and are actually going out across the network */
291 static int global_requests_inflight = 0;
292 /* requests which aren't inflight are in the waiting list */
293 /* and are counted here */
294 static int global_requests_waiting = 0;
296 static int global_max_requests_inflight = 64;
298 static struct timeval global_timeout = {5, 0}; /* 5 seconds */
299 static int global_max_reissues = 1; /* a reissue occurs when we get some errors from the server */
300 static int global_max_retransmits = 3; /* number of times we'll retransmit a request which timed out */
301 /* number of timeouts in a row before we consider this server to be down */
302 static int global_max_nameserver_timeout = 3;
304 /* These are the timeout values for nameservers. If we find a nameserver is down */
305 /* we try to probe it at intervals as given below. Values are in seconds. */
306 static const struct timeval global_nameserver_timeouts[] = {{10, 0}, {60, 0}, {300, 0}, {900, 0}, {3600, 0}};
307 static const int global_nameserver_timeouts_length = sizeof(global_nameserver_timeouts)/sizeof(struct timeval);
309 static struct nameserver *nameserver_pick(void);
310 static void evdns_request_insert(struct request *req, struct request **head);
311 static void nameserver_ready_callback(int fd, short events, void *arg);
312 static int evdns_transmit(void);
313 static int evdns_request_transmit(struct request *req);
314 static void nameserver_send_probe(struct nameserver *const ns);
315 static void search_request_finished(struct request *const);
316 static int search_try_next(struct request *const req);
317 static int search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg);
318 static void evdns_requests_pump_waiting_queue(void);
319 static u16 transaction_id_pick(void);
320 static struct request *request_new(int type, const char *name, int flags, evdns_callback_type callback, void *ptr);
321 static void request_submit(struct request *req);
323 static int server_request_free(struct server_request *req);
324 static void server_request_free_answers(struct server_request *req);
325 static void server_port_free(struct evdns_server_port *port);
326 static void server_port_ready_callback(int fd, short events, void *arg);
328 static int strtoint(const char *const str);
334 int optval, optvallen=sizeof(optval);
335 int err = WSAGetLastError();
336 if (err == WSAEWOULDBLOCK && sock >= 0) {
337 if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (void*)&optval,
347 error_is_eagain(int err)
349 return err == EAGAIN || err == WSAEWOULDBLOCK;
352 inet_aton(const char *c, struct in_addr *addr)
355 if (strcmp(c, "255.255.255.255") == 0) {
356 addr->s_addr = 0xffffffffu;
359 if (r == INADDR_NONE)
365 #define CLOSE_SOCKET(x) closesocket(x)
367 #define last_error(sock) (errno)
368 #define error_is_eagain(err) ((err) == EAGAIN)
369 #define CLOSE_SOCKET(x) close(x)
372 #define ISSPACE(c) isspace((int)(unsigned char)(c))
373 #define ISDIGIT(c) isdigit((int)(unsigned char)(c))
377 debug_ntoa(u32 address)
380 u32 a = ntohl(address);
381 snprintf(buf, sizeof(buf), "%d.%d.%d.%d",
382 (int)(u8)((a>>24)&0xff),
383 (int)(u8)((a>>16)&0xff),
384 (int)(u8)((a>>8 )&0xff),
385 (int)(u8)((a )&0xff));
390 static evdns_debug_log_fn_type evdns_log_fn = NULL;
393 evdns_set_log_fn(evdns_debug_log_fn_type fn)
399 #define EVDNS_LOG_CHECK __attribute__ ((format(printf, 2, 3)))
401 #define EVDNS_LOG_CHECK
404 static void _evdns_log(int warn, const char *fmt, ...) EVDNS_LOG_CHECK;
406 _evdns_log(int warn, const char *fmt, ...)
409 static char buf[512];
414 _vsnprintf(buf, sizeof(buf), fmt, args);
416 vsnprintf(buf, sizeof(buf), fmt, args);
418 buf[sizeof(buf)-1] = '\0';
419 evdns_log_fn(warn, buf);
423 #define log _evdns_log
425 /* This walks the list of inflight requests to find the */
426 /* one with a matching transaction id. Returns NULL on */
428 static struct request *
429 request_find_from_trans_id(u16 trans_id) {
430 struct request *req = req_head, *const started_at = req_head;
434 if (req->trans_id == trans_id) return req;
436 } while (req != started_at);
442 /* a libevent callback function which is called when a nameserver */
443 /* has gone down and we want to test if it has came back to life yet */
445 nameserver_prod_callback(int fd, short events, void *arg) {
446 struct nameserver *const ns = (struct nameserver *) arg;
450 nameserver_send_probe(ns);
453 /* a libevent callback which is called when a nameserver probe (to see if */
454 /* it has come back to life) times out. We increment the count of failed_times */
455 /* and wait longer to send the next probe packet. */
457 nameserver_probe_failed(struct nameserver *const ns) {
458 const struct timeval * timeout;
459 (void) evtimer_del(&ns->timeout_event);
460 if (ns->state == 1) {
461 /* This can happen if the nameserver acts in a way which makes us mark */
462 /* it as bad and then starts sending good replies. */
467 &global_nameserver_timeouts[MIN(ns->failed_times,
468 global_nameserver_timeouts_length - 1)];
471 evtimer_set(&ns->timeout_event, nameserver_prod_callback, ns);
472 if (evtimer_add(&ns->timeout_event, (struct timeval *) timeout) < 0) {
474 "Error from libevent when adding timer event for %s",
475 debug_ntoa(ns->address));
480 /* called when a nameserver has been deemed to have failed. For example, too */
481 /* many packets have timed out etc */
483 nameserver_failed(struct nameserver *const ns, const char *msg) {
484 struct request *req, *started_at;
485 /* if this nameserver has already been marked as failed */
486 /* then don't do anything */
487 if (!ns->state) return;
489 log(EVDNS_LOG_WARN, "Nameserver %s has failed: %s",
490 debug_ntoa(ns->address), msg);
491 global_good_nameservers--;
492 assert(global_good_nameservers >= 0);
493 if (global_good_nameservers == 0) {
494 log(EVDNS_LOG_WARN, "All nameservers have failed");
498 ns->failed_times = 1;
500 evtimer_set(&ns->timeout_event, nameserver_prod_callback, ns);
501 if (evtimer_add(&ns->timeout_event, (struct timeval *) &global_nameserver_timeouts[0]) < 0) {
503 "Error from libevent when adding timer event for %s",
504 debug_ntoa(ns->address));
508 /* walk the list of inflight requests to see if any can be reassigned to */
509 /* a different server. Requests in the waiting queue don't have a */
510 /* nameserver assigned yet */
512 /* if we don't have *any* good nameservers then there's no point */
513 /* trying to reassign requests to one */
514 if (!global_good_nameservers) return;
517 started_at = req_head;
520 if (req->tx_count == 0 && req->ns == ns) {
521 /* still waiting to go out, can be moved */
522 /* to another server */
523 req->ns = nameserver_pick();
526 } while (req != started_at);
531 nameserver_up(struct nameserver *const ns) {
532 if (ns->state) return;
533 log(EVDNS_LOG_WARN, "Nameserver %s is back up",
534 debug_ntoa(ns->address));
535 evtimer_del(&ns->timeout_event);
537 ns->failed_times = 0;
539 global_good_nameservers++;
543 request_trans_id_set(struct request *const req, const u16 trans_id) {
544 req->trans_id = trans_id;
545 *((u16 *) req->request) = htons(trans_id);
548 /* Called to remove a request from a list and dealloc it. */
549 /* head is a pointer to the head of the list it should be */
550 /* removed from or NULL if the request isn't in a list. */
552 request_finished(struct request *const req, struct request **head) {
554 if (req->next == req) {
555 /* only item in the list */
558 req->next->prev = req->prev;
559 req->prev->next = req->next;
560 if (*head == req) *head = req->next;
564 log(EVDNS_LOG_DEBUG, "Removing timeout for request %lx",
565 (unsigned long) req);
566 evtimer_del(&req->timeout_event);
568 search_request_finished(req);
569 global_requests_inflight--;
571 if (!req->request_appended) {
572 /* need to free the request data on it's own */
575 /* the request data is appended onto the header */
576 /* so everything gets free()ed when we: */
581 evdns_requests_pump_waiting_queue();
584 /* This is called when a server returns a funny error code. */
585 /* We try the request again with another server. */
589 /* 1 failed/reissue is pointless */
591 request_reissue(struct request *req) {
592 const struct nameserver *const last_ns = req->ns;
593 /* the last nameserver should have been marked as failing */
594 /* by the caller of this function, therefore pick will try */
595 /* not to return it */
596 req->ns = nameserver_pick();
597 if (req->ns == last_ns) {
598 /* ... but pick did return it */
599 /* not a lot of point in trying again with the */
604 req->reissue_count++;
606 req->transmit_me = 1;
611 /* this function looks for space on the inflight queue and promotes */
612 /* requests from the waiting queue if it can. */
614 evdns_requests_pump_waiting_queue(void) {
615 while (global_requests_inflight < global_max_requests_inflight &&
616 global_requests_waiting) {
618 /* move a request from the waiting queue to the inflight queue */
619 assert(req_waiting_head);
620 if (req_waiting_head->next == req_waiting_head) {
621 /* only one item in the queue */
622 req = req_waiting_head;
623 req_waiting_head = NULL;
625 req = req_waiting_head;
626 req->next->prev = req->prev;
627 req->prev->next = req->next;
628 req_waiting_head = req->next;
631 global_requests_waiting--;
632 global_requests_inflight++;
634 req->ns = nameserver_pick();
635 request_trans_id_set(req, transaction_id_pick());
637 evdns_request_insert(req, &req_head);
638 evdns_request_transmit(req);
644 reply_callback(struct request *const req, u32 ttl, u32 err, struct reply *reply) {
645 switch (req->request_type) {
648 req->user_callback(DNS_ERR_NONE, DNS_IPv4_A,
649 reply->data.a.addrcount, ttl,
650 reply->data.a.addresses,
653 req->user_callback(err, 0, 0, 0, NULL, req->user_pointer);
657 char *name = reply->data.ptr.name;
658 req->user_callback(DNS_ERR_NONE, DNS_PTR, 1, ttl,
659 &name, req->user_pointer);
661 req->user_callback(err, 0, 0, 0, NULL,
667 req->user_callback(DNS_ERR_NONE, DNS_IPv6_AAAA,
668 reply->data.aaaa.addrcount, ttl,
669 reply->data.aaaa.addresses,
672 req->user_callback(err, 0, 0, 0, NULL, req->user_pointer);
678 /* this processes a parsed reply packet */
680 reply_handle(struct request *const req, u16 flags, u32 ttl, struct reply *reply) {
682 static const int error_codes[] = {DNS_ERR_FORMAT, DNS_ERR_SERVERFAILED, DNS_ERR_NOTEXIST, DNS_ERR_NOTIMPL, DNS_ERR_REFUSED};
684 if (flags & 0x020f || !reply || !reply->have_answer) {
685 /* there was an error */
686 if (flags & 0x0200) {
687 error = DNS_ERR_TRUNCATED;
689 u16 error_code = (flags & 0x000f) - 1;
690 if (error_code > 4) {
691 error = DNS_ERR_UNKNOWN;
693 error = error_codes[error_code];
698 case DNS_ERR_NOTIMPL:
699 case DNS_ERR_REFUSED:
700 /* we regard these errors as marking a bad nameserver */
701 if (req->reissue_count < global_max_reissues) {
703 snprintf(msg, sizeof(msg), "Bad response %d (%s)",
704 error, evdns_err_to_string(error));
705 nameserver_failed(req->ns, msg);
706 if (!request_reissue(req)) return;
709 case DNS_ERR_SERVERFAILED:
710 /* rcode 2 (servfailed) sometimes means "we are broken" and
711 * sometimes (with some binds) means "that request was very
712 * confusing." Treat this as a timeout, not a failure.
714 log(EVDNS_LOG_DEBUG, "Got a SERVERFAILED from nameserver %s; "
715 "will allow the request to time out.",
716 debug_ntoa(req->ns->address));
719 /* we got a good reply from the nameserver */
720 nameserver_up(req->ns);
723 if (req->search_state && req->request_type != TYPE_PTR) {
724 /* if we have a list of domains to search in, try the next one */
725 if (!search_try_next(req)) {
726 /* a new request was issued so this request is finished and */
727 /* the user callback will be made when that request (or a */
728 /* child of it) finishes. */
729 request_finished(req, &req_head);
734 /* all else failed. Pass the failure up */
735 reply_callback(req, 0, error, NULL);
736 request_finished(req, &req_head);
738 /* all ok, tell the user */
739 reply_callback(req, ttl, 0, reply);
740 nameserver_up(req->ns);
741 request_finished(req, &req_head);
746 name_parse(u8 *packet, int length, int *idx, char *name_out, int name_out_len) {
750 #define GET32(x) do { if (j + 4 > length) goto err; memcpy(&_t32, packet + j, 4); j += 4; x = ntohl(_t32); } while(0)
751 #define GET16(x) do { if (j + 2 > length) goto err; memcpy(&_t, packet + j, 2); j += 2; x = ntohs(_t); } while(0)
752 #define GET8(x) do { if (j >= length) goto err; x = packet[j++]; } while(0)
755 const char *const end = name_out + name_out_len;
757 /* Normally, names are a series of length prefixed strings terminated */
758 /* with a length of 0 (the lengths are u8's < 63). */
759 /* However, the length can start with a pair of 1 bits and that */
760 /* means that the next 14 bits are a pointer within the current */
765 if (j >= length) return -1;
767 if (!label_len) break;
768 if (label_len & 0xc0) {
771 if (name_end < 0) name_end = j;
772 j = (((int)label_len & 0x3f) << 8) + ptr_low;
773 /* Make sure that the target offset is in-bounds. */
774 if (j < 0 || j >= length) return -1;
775 /* If we've jumped more times than there are characters in the
776 * message, we must have a loop. */
777 if (++ptr_count > length) return -1;
780 if (label_len > 63) return -1;
781 if (cp != name_out) {
782 if (cp + 1 >= end) return -1;
785 if (cp + label_len >= end) return -1;
786 memcpy(cp, packet + j, label_len);
790 if (cp >= end) return -1;
801 /* parses a raw request from a nameserver */
803 reply_parse(u8 *packet, int length) {
804 int j = 0; /* index into packet */
805 u16 _t; /* used by the macros */
806 u32 _t32; /* used by the macros */
807 char tmp_name[256]; /* used by the macros */
809 u16 trans_id, questions, answers, authority, additional, datalength;
811 u32 ttl, ttl_r = 0xffffffff;
813 struct request *req = NULL;
822 (void) authority; /* suppress "unused variable" warnings. */
823 (void) additional; /* suppress "unused variable" warnings. */
825 req = request_find_from_trans_id(trans_id);
828 memset(&reply, 0, sizeof(reply));
830 /* If it's not an answer, it doesn't correspond to any request. */
831 if (!(flags & 0x8000)) return -1; /* must be an answer */
832 if (flags & 0x020f) {
833 /* there was an error */
836 /* if (!answers) return; */ /* must have an answer of some form */
838 /* This macro skips a name in the DNS reply. */
840 do { tmp_name[0] = '\0'; \
841 if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0) \
845 reply.type = req->request_type;
847 /* skip over each question in the reply */
848 for (i = 0; i < questions; ++i) {
849 /* the question looks like
850 * <label:name><u16:type><u16:class>
854 if (j >= length) goto err;
857 /* now we have the answer section which looks like
858 * <label:name><u16:type><u16:class><u32:ttl><u16:len><data...>
861 for (i = 0; i < answers; ++i) {
870 if (type == TYPE_A && class == CLASS_INET) {
871 int addrcount, addrtocopy;
872 if (req->request_type != TYPE_A) {
873 j += datalength; continue;
875 if ((datalength & 3) != 0) /* not an even number of As. */
877 addrcount = datalength >> 2;
878 addrtocopy = MIN(MAX_ADDRS - reply.data.a.addrcount, (unsigned)addrcount);
880 ttl_r = MIN(ttl_r, ttl);
881 /* we only bother with the first four addresses. */
882 if (j + 4*addrtocopy > length) goto err;
883 memcpy(&reply.data.a.addresses[reply.data.a.addrcount],
884 packet + j, 4*addrtocopy);
886 reply.data.a.addrcount += addrtocopy;
887 reply.have_answer = 1;
888 if (reply.data.a.addrcount == MAX_ADDRS) break;
889 } else if (type == TYPE_PTR && class == CLASS_INET) {
890 if (req->request_type != TYPE_PTR) {
891 j += datalength; continue;
893 if (name_parse(packet, length, &j, reply.data.ptr.name,
894 sizeof(reply.data.ptr.name))<0)
896 ttl_r = MIN(ttl_r, ttl);
897 reply.have_answer = 1;
899 } else if (type == TYPE_AAAA && class == CLASS_INET) {
900 int addrcount, addrtocopy;
901 if (req->request_type != TYPE_AAAA) {
902 j += datalength; continue;
904 if ((datalength & 15) != 0) /* not an even number of AAAAs. */
906 addrcount = datalength >> 4; /* each address is 16 bytes long */
907 addrtocopy = MIN(MAX_ADDRS - reply.data.aaaa.addrcount, (unsigned)addrcount);
908 ttl_r = MIN(ttl_r, ttl);
910 /* we only bother with the first four addresses. */
911 if (j + 16*addrtocopy > length) goto err;
912 memcpy(&reply.data.aaaa.addresses[reply.data.aaaa.addrcount],
913 packet + j, 16*addrtocopy);
914 reply.data.aaaa.addrcount += addrtocopy;
916 reply.have_answer = 1;
917 if (reply.data.aaaa.addrcount == MAX_ADDRS) break;
919 /* skip over any other type of resource */
924 reply_handle(req, flags, ttl_r, &reply);
928 reply_handle(req, flags, 0, NULL);
932 /* Parse a raw request (packet,length) sent to a nameserver port (port) from */
933 /* a DNS client (addr,addrlen), and if it's well-formed, call the corresponding */
936 request_parse(u8 *packet, int length, struct evdns_server_port *port, struct sockaddr *addr, socklen_t addrlen)
938 int j = 0; /* index into packet */
939 u16 _t; /* used by the macros */
940 char tmp_name[256]; /* used by the macros */
943 u16 trans_id, flags, questions, answers, authority, additional;
944 struct server_request *server_req = NULL;
946 /* Get the header fields */
954 if (flags & 0x8000) return -1; /* Must not be an answer. */
955 if (flags & 0x7800) return -1; /* only standard queries are supported */
956 flags &= 0x0300; /* Only TC and RD get preserved. */
958 server_req = malloc(sizeof(struct server_request));
959 if (server_req == NULL) return -1;
960 memset(server_req, 0, sizeof(struct server_request));
962 server_req->trans_id = trans_id;
963 memcpy(&server_req->addr, addr, addrlen);
964 server_req->addrlen = addrlen;
966 server_req->base.flags = flags;
967 server_req->base.nquestions = 0;
968 server_req->base.questions = malloc(sizeof(struct evdns_server_question *) * questions);
969 if (server_req->base.questions == NULL)
972 for (i = 0; i < questions; ++i) {
974 struct evdns_server_question *q;
976 if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0)
980 namelen = strlen(tmp_name);
981 q = malloc(sizeof(struct evdns_server_question) + namelen);
986 memcpy(q->name, tmp_name, namelen+1);
987 server_req->base.questions[server_req->base.nquestions++] = q;
990 /* Ignore answers, authority, and additional. */
992 server_req->port = port;
994 port->user_callback(&(server_req->base), port->user_data);
999 if (server_req->base.questions) {
1000 for (i = 0; i < server_req->base.nquestions; ++i)
1001 free(server_req->base.questions[i]);
1002 free(server_req->base.questions);
1014 /* Try to choose a strong transaction id which isn't already in flight */
1016 transaction_id_pick(void) {
1018 const struct request *req = req_head, *started_at;
1019 #ifdef DNS_USE_CPU_CLOCK_FOR_ID
1022 #ifdef CLOCK_MONOTONIC
1023 if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1)
1025 if (clock_gettime(CLOCK_REALTIME, &ts) == -1)
1027 event_err(1, "clock_gettime");
1028 trans_id = ts.tv_nsec & 0xffff;
1031 #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID
1034 gettimeofday(&tv, NULL);
1035 trans_id = tv.tv_usec & 0xffff;
1038 #ifdef DNS_USE_OPENSSL_FOR_ID
1040 if (RAND_pseudo_bytes((u8 *) &trans_id, 2) == -1) {
1041 /* in the case that the RAND call fails we back */
1042 /* down to using gettimeofday. */
1044 gettimeofday(&tv, NULL);
1045 trans_id = tv.tv_usec & 0xffff; */
1050 if (trans_id == 0xffff) continue;
1051 /* now check to see if that id is already inflight */
1052 req = started_at = req_head;
1055 if (req->trans_id == trans_id) break;
1057 } while (req != started_at);
1059 /* we didn't find it, so this is a good id */
1060 if (req == started_at) return trans_id;
1064 /* choose a namesever to use. This function will try to ignore */
1065 /* nameservers which we think are down and load balance across the rest */
1066 /* by updating the server_head global each time. */
1067 static struct nameserver *
1068 nameserver_pick(void) {
1069 struct nameserver *started_at = server_head, *picked;
1070 if (!server_head) return NULL;
1072 /* if we don't have any good nameservers then there's no */
1073 /* point in trying to find one. */
1074 if (!global_good_nameservers) {
1075 server_head = server_head->next;
1079 /* remember that nameservers are in a circular list */
1081 if (server_head->state) {
1082 /* we think this server is currently good */
1083 picked = server_head;
1084 server_head = server_head->next;
1088 server_head = server_head->next;
1089 if (server_head == started_at) {
1090 /* all the nameservers seem to be down */
1091 /* so we just return this one and hope for the */
1093 assert(global_good_nameservers == 0);
1094 picked = server_head;
1095 server_head = server_head->next;
1101 /* this is called when a namesever socket is ready for reading */
1103 nameserver_read(struct nameserver *ns) {
1107 const int r = recv(ns->socket, packet, sizeof(packet), 0);
1109 int err = last_error(ns->socket);
1110 if (error_is_eagain(err)) return;
1111 nameserver_failed(ns, strerror(err));
1115 reply_parse(packet, r);
1119 /* Read a packet from a DNS client on a server port s, parse it, and */
1120 /* act accordingly. */
1122 server_port_read(struct evdns_server_port *s) {
1124 struct sockaddr_storage addr;
1129 addrlen = sizeof(struct sockaddr_storage);
1130 r = recvfrom(s->socket, packet, sizeof(packet), 0,
1131 (struct sockaddr*) &addr, &addrlen);
1133 int err = last_error(s->socket);
1134 if (error_is_eagain(err)) return;
1135 log(EVDNS_LOG_WARN, "Error %s (%d) while reading request.",
1136 strerror(err), err);
1139 request_parse(packet, r, s, (struct sockaddr*) &addr, addrlen);
1143 /* Try to write all pending replies on a given DNS server port. */
1145 server_port_flush(struct evdns_server_port *port)
1147 while (port->pending_replies) {
1148 struct server_request *req = port->pending_replies;
1149 int r = sendto(port->socket, req->response, req->response_len, 0,
1150 (struct sockaddr*) &req->addr, req->addrlen);
1152 int err = last_error(port->socket);
1153 if (error_is_eagain(err))
1155 log(EVDNS_LOG_WARN, "Error %s (%d) while writing response to port; dropping", strerror(err), err);
1157 if (server_request_free(req)) {
1158 /* we released the last reference to req->port. */
1163 /* We have no more pending requests; stop listening for 'writeable' events. */
1164 (void) event_del(&port->event);
1165 event_set(&port->event, port->socket, EV_READ | EV_PERSIST,
1166 server_port_ready_callback, port);
1167 if (event_add(&port->event, NULL) < 0) {
1168 log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server.");
1173 /* set if we are waiting for the ability to write to this server. */
1174 /* if waiting is true then we ask libevent for EV_WRITE events, otherwise */
1175 /* we stop these events. */
1177 nameserver_write_waiting(struct nameserver *ns, char waiting) {
1178 if (ns->write_waiting == waiting) return;
1180 ns->write_waiting = waiting;
1181 (void) event_del(&ns->event);
1182 event_set(&ns->event, ns->socket, EV_READ | (waiting ? EV_WRITE : 0) | EV_PERSIST,
1183 nameserver_ready_callback, ns);
1184 if (event_add(&ns->event, NULL) < 0) {
1185 log(EVDNS_LOG_WARN, "Error from libevent when adding event for %s",
1186 debug_ntoa(ns->address));
1191 /* a callback function. Called by libevent when the kernel says that */
1192 /* a nameserver socket is ready for writing or reading */
1194 nameserver_ready_callback(int fd, short events, void *arg) {
1195 struct nameserver *ns = (struct nameserver *) arg;
1198 if (events & EV_WRITE) {
1200 if (!evdns_transmit()) {
1201 nameserver_write_waiting(ns, 0);
1204 if (events & EV_READ) {
1205 nameserver_read(ns);
1209 /* a callback function. Called by libevent when the kernel says that */
1210 /* a server socket is ready for writing or reading. */
1212 server_port_ready_callback(int fd, short events, void *arg) {
1213 struct evdns_server_port *port = (struct evdns_server_port *) arg;
1216 if (events & EV_WRITE) {
1218 server_port_flush(port);
1220 if (events & EV_READ) {
1221 server_port_read(port);
1225 /* This is an inefficient representation; only use it via the dnslabel_table_*
1226 * functions, so that is can be safely replaced with something smarter later. */
1227 #define MAX_LABELS 128
1228 /* Structures used to implement name compression */
1229 struct dnslabel_entry { char *v; off_t pos; };
1230 struct dnslabel_table {
1231 int n_labels; /* number of current entries */
1232 /* map from name to position in message */
1233 struct dnslabel_entry labels[MAX_LABELS];
1236 /* Initialize dnslabel_table. */
1238 dnslabel_table_init(struct dnslabel_table *table)
1240 table->n_labels = 0;
1243 /* Free all storage held by table, but not the table itself. */
1245 dnslabel_clear(struct dnslabel_table *table)
1248 for (i = 0; i < table->n_labels; ++i)
1249 free(table->labels[i].v);
1250 table->n_labels = 0;
1253 /* return the position of the label in the current message, or -1 if the label */
1254 /* hasn't been used yet. */
1256 dnslabel_table_get_pos(const struct dnslabel_table *table, const char *label)
1259 for (i = 0; i < table->n_labels; ++i) {
1260 if (!strcmp(label, table->labels[i].v))
1261 return table->labels[i].pos;
1266 /* remember that we've used the label at position pos */
1268 dnslabel_table_add(struct dnslabel_table *table, const char *label, off_t pos)
1272 if (table->n_labels == MAX_LABELS)
1277 p = table->n_labels++;
1278 table->labels[p].v = v;
1279 table->labels[p].pos = pos;
1284 /* Converts a string to a length-prefixed set of DNS labels, starting */
1285 /* at buf[j]. name and buf must not overlap. name_len should be the length */
1286 /* of name. table is optional, and is used for compression. */
1288 /* Input: abc.def */
1289 /* Output: <3>abc<3>def<0> */
1291 /* Returns the first index after the encoded name, or negative on error. */
1292 /* -1 label was > 63 bytes */
1293 /* -2 name too long to fit in buffer. */
1296 dnsname_to_labels(u8 *const buf, size_t buf_len, off_t j,
1297 const char *name, const int name_len,
1298 struct dnslabel_table *table) {
1299 const char *end = name + name_len;
1303 #define APPEND16(x) do { \
1304 if (j + 2 > (off_t)buf_len) \
1307 memcpy(buf + j, &_t, 2); \
1310 #define APPEND32(x) do { \
1311 if (j + 4 > (off_t)buf_len) \
1314 memcpy(buf + j, &_t32, 4); \
1318 if (name_len > 255) return -2;
1321 const char *const start = name;
1322 if (table && (ref = dnslabel_table_get_pos(table, name)) >= 0) {
1323 APPEND16(ref | 0xc000);
1326 name = strchr(name, '.');
1328 const unsigned int label_len = end - start;
1329 if (label_len > 63) return -1;
1330 if ((size_t)(j+label_len+1) > buf_len) return -2;
1331 if (table) dnslabel_table_add(table, start, j);
1332 buf[j++] = label_len;
1334 memcpy(buf + j, start, end - start);
1338 /* append length of the label. */
1339 const unsigned int label_len = name - start;
1340 if (label_len > 63) return -1;
1341 if ((size_t)(j+label_len+1) > buf_len) return -2;
1342 if (table) dnslabel_table_add(table, start, j);
1343 buf[j++] = label_len;
1345 memcpy(buf + j, start, name - start);
1347 /* hop over the '.' */
1352 /* the labels must be terminated by a 0. */
1353 /* It's possible that the name ended in a . */
1354 /* in which case the zero is already there */
1355 if (!j || buf[j-1]) buf[j++] = 0;
1361 /* Finds the length of a dns request for a DNS name of the given */
1362 /* length. The actual request may be smaller than the value returned */
1365 evdns_request_len(const int name_len) {
1366 return 96 + /* length of the DNS standard header */
1368 4; /* space for the resource type */
1371 /* build a dns request packet into buf. buf should be at least as long */
1372 /* as evdns_request_len told you it should be. */
1374 /* Returns the amount of space used. Negative on error. */
1376 evdns_request_data_build(const char *const name, const int name_len,
1377 const u16 trans_id, const u16 type, const u16 class,
1378 u8 *const buf, size_t buf_len) {
1379 off_t j = 0; /* current offset into buf */
1380 u16 _t; /* used by the macros */
1383 APPEND16(0x0100); /* standard query, recusion needed */
1384 APPEND16(1); /* one question */
1385 APPEND16(0); /* no answers */
1386 APPEND16(0); /* no authority */
1387 APPEND16(0); /* no additional */
1389 j = dnsname_to_labels(buf, buf_len, j, name, name_len, NULL);
1402 /* exported function */
1403 struct evdns_server_port *
1404 evdns_add_server_port(int socket, int is_tcp, evdns_request_callback_fn_type cb, void *user_data)
1406 struct evdns_server_port *port;
1407 if (!(port = malloc(sizeof(struct evdns_server_port))))
1409 memset(port, 0, sizeof(struct evdns_server_port));
1411 assert(!is_tcp); /* TCP sockets not yet implemented */
1412 port->socket = socket;
1416 port->user_callback = cb;
1417 port->user_data = user_data;
1418 port->pending_replies = NULL;
1420 event_set(&port->event, port->socket, EV_READ | EV_PERSIST,
1421 server_port_ready_callback, port);
1422 event_add(&port->event, NULL); /* check return. */
1426 /* exported function */
1428 evdns_close_server_port(struct evdns_server_port *port)
1430 if (--port->refcnt == 0)
1431 server_port_free(port);
1435 /* exported function */
1437 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)
1439 struct server_request *req = TO_SERVER_REQUEST(_req);
1440 struct server_reply_item **itemp, *item;
1443 if (req->response) /* have we already answered? */
1447 case EVDNS_ANSWER_SECTION:
1448 itemp = &req->answer;
1449 countp = &req->n_answer;
1451 case EVDNS_AUTHORITY_SECTION:
1452 itemp = &req->authority;
1453 countp = &req->n_authority;
1455 case EVDNS_ADDITIONAL_SECTION:
1456 itemp = &req->additional;
1457 countp = &req->n_additional;
1463 itemp = &((*itemp)->next);
1465 item = malloc(sizeof(struct server_reply_item));
1469 if (!(item->name = strdup(name))) {
1474 item->class = class;
1476 item->is_name = is_name != 0;
1480 if (item->is_name) {
1481 if (!(item->data = strdup(data))) {
1486 item->datalen = (u16)-1;
1488 if (!(item->data = malloc(datalen))) {
1493 item->datalen = datalen;
1494 memcpy(item->data, data, datalen);
1503 /* exported function */
1505 evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl)
1507 return evdns_server_request_add_reply(
1508 req, EVDNS_ANSWER_SECTION, name, TYPE_A, CLASS_INET,
1509 ttl, n*4, 0, addrs);
1512 /* exported function */
1514 evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, void *addrs, int ttl)
1516 return evdns_server_request_add_reply(
1517 req, EVDNS_ANSWER_SECTION, name, TYPE_AAAA, CLASS_INET,
1518 ttl, n*16, 0, addrs);
1521 /* exported function */
1523 evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl)
1527 assert(in || inaddr_name);
1528 assert(!(in && inaddr_name));
1530 a = ntohl(in->s_addr);
1531 snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa",
1532 (int)(u8)((a )&0xff),
1533 (int)(u8)((a>>8 )&0xff),
1534 (int)(u8)((a>>16)&0xff),
1535 (int)(u8)((a>>24)&0xff));
1538 return evdns_server_request_add_reply(
1539 req, EVDNS_ANSWER_SECTION, inaddr_name, TYPE_PTR, CLASS_INET,
1540 ttl, -1, 1, hostname);
1543 /* exported function */
1545 evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl)
1547 return evdns_server_request_add_reply(
1548 req, EVDNS_ANSWER_SECTION, name, TYPE_A, CLASS_INET,
1554 evdns_server_request_format_response(struct server_request *req, int err)
1556 unsigned char buf[1500];
1557 size_t buf_len = sizeof(buf);
1563 struct dnslabel_table table;
1565 if (err < 0 || err > 15) return -1;
1567 /* Set response bit and error code; copy OPCODE and RD fields from
1568 * question; copy RA and AA if set by caller. */
1569 flags = req->base.flags;
1570 flags |= (0x8000 | err);
1572 dnslabel_table_init(&table);
1573 APPEND16(req->trans_id);
1575 APPEND16(req->base.nquestions);
1576 APPEND16(req->n_answer);
1577 APPEND16(req->n_authority);
1578 APPEND16(req->n_additional);
1580 /* Add questions. */
1581 for (i=0; i < req->base.nquestions; ++i) {
1582 const char *s = req->base.questions[i]->name;
1583 j = dnsname_to_labels(buf, buf_len, j, s, strlen(s), &table);
1585 dnslabel_clear(&table);
1588 APPEND16(req->base.questions[i]->type);
1589 APPEND16(req->base.questions[i]->class);
1592 /* Add answer, authority, and additional sections. */
1593 for (i=0; i<3; ++i) {
1594 struct server_reply_item *item;
1598 item = req->authority;
1600 item = req->additional;
1602 r = dnsname_to_labels(buf, buf_len, j, item->name, strlen(item->name), &table);
1607 APPEND16(item->type);
1608 APPEND16(item->class);
1609 APPEND32(item->ttl);
1610 if (item->is_name) {
1611 off_t len_idx = j, name_start;
1614 r = dnsname_to_labels(buf, buf_len, j, item->data, strlen(item->data), &table);
1618 _t = htons( (j-name_start) );
1619 memcpy(buf+len_idx, &_t, 2);
1621 APPEND16(item->datalen);
1622 if (j+item->datalen > (off_t)buf_len)
1624 memcpy(buf+j, item->data, item->datalen);
1634 buf[3] |= 0x02; /* set the truncated bit. */
1637 req->response_len = j;
1639 if (!(req->response = malloc(req->response_len))) {
1640 server_request_free_answers(req);
1641 dnslabel_clear(&table);
1644 memcpy(req->response, buf, req->response_len);
1645 server_request_free_answers(req);
1646 dnslabel_clear(&table);
1650 /* exported function */
1652 evdns_server_request_respond(struct evdns_server_request *_req, int err)
1654 struct server_request *req = TO_SERVER_REQUEST(_req);
1655 struct evdns_server_port *port = req->port;
1657 if (!req->response) {
1658 if ((r = evdns_server_request_format_response(req, err))<0)
1662 r = sendto(port->socket, req->response, req->response_len, 0,
1663 (struct sockaddr*) &req->addr, req->addrlen);
1665 int err = last_error(port->socket);
1666 if (! error_is_eagain(err))
1669 if (port->pending_replies) {
1670 req->prev_pending = port->pending_replies->prev_pending;
1671 req->next_pending = port->pending_replies;
1672 req->prev_pending->next_pending =
1673 req->next_pending->prev_pending = req;
1675 req->prev_pending = req->next_pending = req;
1676 port->pending_replies = req;
1679 (void) event_del(&port->event);
1680 event_set(&port->event, port->socket, (port->closing?0:EV_READ) | EV_WRITE | EV_PERSIST, server_port_ready_callback, port);
1682 if (event_add(&port->event, NULL) < 0) {
1683 log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server");
1690 if (server_request_free(req))
1693 if (port->pending_replies)
1694 server_port_flush(port);
1699 /* Free all storage held by RRs in req. */
1701 server_request_free_answers(struct server_request *req)
1703 struct server_reply_item *victim, *next, **list;
1705 for (i = 0; i < 3; ++i) {
1707 list = &req->answer;
1709 list = &req->authority;
1711 list = &req->additional;
1715 next = victim->next;
1726 /* Free all storage held by req, and remove links to it. */
1727 /* return true iff we just wound up freeing the server_port. */
1729 server_request_free(struct server_request *req)
1732 if (req->base.questions) {
1733 for (i = 0; i < req->base.nquestions; ++i)
1734 free(req->base.questions[i]);
1735 free(req->base.questions);
1739 if (req->port->pending_replies == req) {
1740 if (req->next_pending)
1741 req->port->pending_replies = req->next_pending;
1743 req->port->pending_replies = NULL;
1745 rc = --req->port->refcnt;
1748 if (req->response) {
1749 free(req->response);
1752 server_request_free_answers(req);
1754 if (req->next_pending && req->next_pending != req) {
1755 req->next_pending->prev_pending = req->prev_pending;
1756 req->prev_pending->next_pending = req->next_pending;
1760 server_port_free(req->port);
1768 /* Free all storage held by an evdns_server_port. Only called when */
1770 server_port_free(struct evdns_server_port *port)
1773 assert(!port->refcnt);
1774 assert(!port->pending_replies);
1775 if (port->socket > 0) {
1776 CLOSE_SOCKET(port->socket);
1779 (void) event_del(&port->event);
1780 /* XXXX actually free the port? -NM */
1783 /* exported function */
1785 evdns_server_request_drop(struct evdns_server_request *_req)
1787 struct server_request *req = TO_SERVER_REQUEST(_req);
1788 server_request_free(req);
1792 /* exported function */
1794 evdns_server_request_get_requesting_addr(struct evdns_server_request *_req, struct sockaddr *sa, int addr_len)
1796 struct server_request *req = TO_SERVER_REQUEST(_req);
1797 if (addr_len < (int)req->addrlen)
1799 memcpy(sa, &(req->addr), req->addrlen);
1800 return req->addrlen;
1806 /* this is a libevent callback function which is called when a request */
1807 /* has timed out. */
1809 evdns_request_timeout_callback(int fd, short events, void *arg) {
1810 struct request *const req = (struct request *) arg;
1814 log(EVDNS_LOG_DEBUG, "Request %lx timed out", (unsigned long) arg);
1816 req->ns->timedout++;
1817 if (req->ns->timedout > global_max_nameserver_timeout) {
1818 req->ns->timedout = 0;
1819 nameserver_failed(req->ns, "request timed out.");
1822 (void) evtimer_del(&req->timeout_event);
1823 if (req->tx_count >= global_max_retransmits) {
1824 /* this request has failed */
1825 reply_callback(req, 0, DNS_ERR_TIMEOUT, NULL);
1826 request_finished(req, &req_head);
1829 evdns_request_transmit(req);
1833 /* try to send a request to a given server. */
1837 /* 1 temporary failure */
1838 /* 2 other failure */
1840 evdns_request_transmit_to(struct request *req, struct nameserver *server) {
1841 const int r = send(server->socket, req->request, req->request_len, 0);
1843 int err = last_error(server->socket);
1844 if (error_is_eagain(err)) return 1;
1845 nameserver_failed(req->ns, strerror(err));
1847 } else if (r != (int)req->request_len) {
1848 return 1; /* short write */
1854 /* try to send a request, updating the fields of the request */
1861 evdns_request_transmit(struct request *req) {
1864 /* if we fail to send this packet then this flag marks it */
1865 /* for evdns_transmit */
1866 req->transmit_me = 1;
1867 if (req->trans_id == 0xffff) abort();
1869 if (req->ns->choked) {
1870 /* don't bother trying to write to a socket */
1871 /* which we have had EAGAIN from */
1875 r = evdns_request_transmit_to(req, req->ns);
1879 req->ns->choked = 1;
1880 nameserver_write_waiting(req->ns, 1);
1883 /* failed in some other way */
1888 log(EVDNS_LOG_DEBUG,
1889 "Setting timeout for request %lx", (unsigned long) req);
1890 evtimer_set(&req->timeout_event, evdns_request_timeout_callback, req);
1891 if (evtimer_add(&req->timeout_event, &global_timeout) < 0) {
1893 "Error from libevent when adding timer for request %lx",
1894 (unsigned long) req);
1898 req->transmit_me = 0;
1904 nameserver_probe_callback(int result, char type, int count, int ttl, void *addresses, void *arg) {
1905 struct nameserver *const ns = (struct nameserver *) arg;
1911 if (result == DNS_ERR_NONE || result == DNS_ERR_NOTEXIST) {
1912 /* this is a good reply */
1914 } else nameserver_probe_failed(ns);
1918 nameserver_send_probe(struct nameserver *const ns) {
1919 struct request *req;
1920 /* here we need to send a probe to a given nameserver */
1921 /* in the hope that it is up now. */
1923 log(EVDNS_LOG_DEBUG, "Sending probe to %s", debug_ntoa(ns->address));
1925 req = request_new(TYPE_A, "www.google.com", DNS_QUERY_NO_SEARCH, nameserver_probe_callback, ns);
1927 /* we force this into the inflight queue no matter what */
1928 request_trans_id_set(req, transaction_id_pick());
1930 request_submit(req);
1934 /* 0 didn't try to transmit anything */
1935 /* 1 tried to transmit something */
1937 evdns_transmit(void) {
1938 char did_try_to_transmit = 0;
1941 struct request *const started_at = req_head, *req = req_head;
1942 /* first transmit all the requests which are currently waiting */
1944 if (req->transmit_me) {
1945 did_try_to_transmit = 1;
1946 evdns_request_transmit(req);
1950 } while (req != started_at);
1953 return did_try_to_transmit;
1956 /* exported function */
1958 evdns_count_nameservers(void)
1960 const struct nameserver *server = server_head;
1966 server = server->next;
1967 } while (server != server_head);
1971 /* exported function */
1973 evdns_clear_nameservers_and_suspend(void)
1975 struct nameserver *server = server_head, *started_at = server_head;
1976 struct request *req = req_head, *req_started_at = req_head;
1981 struct nameserver *next = server->next;
1982 (void) event_del(&server->event);
1983 (void) evtimer_del(&server->timeout_event);
1984 if (server->socket >= 0)
1985 CLOSE_SOCKET(server->socket);
1987 if (next == started_at)
1992 global_good_nameservers = 0;
1995 struct request *next = req->next;
1996 req->tx_count = req->reissue_count = 0;
1998 /* ???? What to do about searches? */
1999 (void) evtimer_del(&req->timeout_event);
2001 req->transmit_me = 0;
2003 global_requests_waiting++;
2004 evdns_request_insert(req, &req_waiting_head);
2005 /* We want to insert these suspended elements at the front of
2006 * the waiting queue, since they were pending before any of
2007 * the waiting entries were added. This is a circular list,
2008 * so we can just shift the start back by one.*/
2009 req_waiting_head = req_waiting_head->prev;
2011 if (next == req_started_at)
2016 global_requests_inflight = 0;
2022 /* exported function */
2026 evdns_requests_pump_waiting_queue();
2031 _evdns_nameserver_add_impl(unsigned long int address, int port) {
2032 /* first check to see if we already have this nameserver */
2034 const struct nameserver *server = server_head, *const started_at = server_head;
2035 struct nameserver *ns;
2036 struct sockaddr_in sin;
2040 if (server->address == address) return 3;
2041 server = server->next;
2042 } while (server != started_at);
2045 ns = (struct nameserver *) malloc(sizeof(struct nameserver));
2048 memset(ns, 0, sizeof(struct nameserver));
2050 ns->socket = socket(PF_INET, SOCK_DGRAM, 0);
2051 if (ns->socket < 0) { err = 1; goto out1; }
2054 u_long nonblocking = 1;
2055 ioctlsocket(ns->socket, FIONBIO, &nonblocking);
2058 fcntl(ns->socket, F_SETFL, O_NONBLOCK);
2060 sin.sin_addr.s_addr = address;
2061 sin.sin_port = htons(port);
2062 sin.sin_family = AF_INET;
2063 if (connect(ns->socket, (struct sockaddr *) &sin, sizeof(sin)) != 0) {
2068 ns->address = address;
2070 event_set(&ns->event, ns->socket, EV_READ | EV_PERSIST, nameserver_ready_callback, ns);
2071 if (event_add(&ns->event, NULL) < 0) {
2076 log(EVDNS_LOG_DEBUG, "Added nameserver %s", debug_ntoa(address));
2078 /* insert this nameserver into the list of them */
2080 ns->next = ns->prev = ns;
2083 ns->next = server_head->next;
2084 ns->prev = server_head;
2085 server_head->next = ns;
2086 if (server_head->prev == server_head) {
2087 server_head->prev = ns;
2091 global_good_nameservers++;
2096 CLOSE_SOCKET(ns->socket);
2099 log(EVDNS_LOG_WARN, "Unable to add nameserver %s: error %d", debug_ntoa(address), err);
2103 /* exported function */
2105 evdns_nameserver_add(unsigned long int address) {
2106 return _evdns_nameserver_add_impl(address, 53);
2109 /* exported function */
2111 evdns_nameserver_ip_add(const char *ip_as_string) {
2116 cp = strchr(ip_as_string, ':');
2121 port = strtoint(cp+1);
2122 if (port < 0 || port > 65535) {
2125 if ((cp-ip_as_string) >= (int)sizeof(buf)) {
2128 memcpy(buf, ip_as_string, cp-ip_as_string);
2129 buf[cp-ip_as_string] = '\0';
2132 if (!inet_aton(cp, &ina)) {
2135 return _evdns_nameserver_add_impl(ina.s_addr, port);
2138 /* insert into the tail of the queue */
2140 evdns_request_insert(struct request *req, struct request **head) {
2143 req->next = req->prev = req;
2147 req->prev = (*head)->prev;
2148 req->prev->next = req;
2150 (*head)->prev = req;
2154 string_num_dots(const char *s) {
2156 while ((s = strchr(s, '.'))) {
2163 static struct request *
2164 request_new(int type, const char *name, int flags,
2165 evdns_callback_type callback, void *user_ptr) {
2166 const char issuing_now =
2167 (global_requests_inflight < global_max_requests_inflight) ? 1 : 0;
2169 const int name_len = strlen(name);
2170 const int request_max_len = evdns_request_len(name_len);
2171 const u16 trans_id = issuing_now ? transaction_id_pick() : 0xffff;
2172 /* the request data is alloced in a single block with the header */
2173 struct request *const req =
2174 (struct request *) malloc(sizeof(struct request) + request_max_len);
2178 if (!req) return NULL;
2179 memset(req, 0, sizeof(struct request));
2181 /* request data lives just after the header */
2182 req->request = ((u8 *) req) + sizeof(struct request);
2183 /* denotes that the request data shouldn't be free()ed */
2184 req->request_appended = 1;
2185 rlen = evdns_request_data_build(name, name_len, trans_id,
2186 type, CLASS_INET, req->request, request_max_len);
2189 req->request_len = rlen;
2190 req->trans_id = trans_id;
2192 req->request_type = type;
2193 req->user_pointer = user_ptr;
2194 req->user_callback = callback;
2195 req->ns = issuing_now ? nameserver_pick() : NULL;
2196 req->next = req->prev = NULL;
2205 request_submit(struct request *const req) {
2207 /* if it has a nameserver assigned then this is going */
2208 /* straight into the inflight queue */
2209 evdns_request_insert(req, &req_head);
2210 global_requests_inflight++;
2211 evdns_request_transmit(req);
2213 evdns_request_insert(req, &req_waiting_head);
2214 global_requests_waiting++;
2218 /* exported function */
2219 int evdns_resolve_ipv4(const char *name, int flags,
2220 evdns_callback_type callback, void *ptr) {
2221 log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name);
2222 if (flags & DNS_QUERY_NO_SEARCH) {
2223 struct request *const req =
2224 request_new(TYPE_A, name, flags, callback, ptr);
2227 request_submit(req);
2230 return (search_request_new(TYPE_A, name, flags, callback, ptr));
2234 /* exported function */
2235 int evdns_resolve_ipv6(const char *name, int flags,
2236 evdns_callback_type callback, void *ptr) {
2237 log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name);
2238 if (flags & DNS_QUERY_NO_SEARCH) {
2239 struct request *const req =
2240 request_new(TYPE_AAAA, name, flags, callback, ptr);
2243 request_submit(req);
2246 return (search_request_new(TYPE_AAAA, name, flags, callback, ptr));
2250 int evdns_resolve_reverse(struct in_addr *in, int flags, evdns_callback_type callback, void *ptr) {
2252 struct request *req;
2255 a = ntohl(in->s_addr);
2256 snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa",
2257 (int)(u8)((a )&0xff),
2258 (int)(u8)((a>>8 )&0xff),
2259 (int)(u8)((a>>16)&0xff),
2260 (int)(u8)((a>>24)&0xff));
2261 log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf);
2262 req = request_new(TYPE_PTR, buf, flags, callback, ptr);
2264 request_submit(req);
2268 int evdns_resolve_reverse_ipv6(struct xin6_addr *in, int flags, evdns_callback_type callback, void *ptr) {
2271 struct request *req;
2275 for (i=15; i >= 0; --i) {
2276 u8 byte = in->s6_addr[i];
2277 *cp++ = "0123456789abcdef"[byte & 0x0f];
2279 *cp++ = "0123456789abcdef"[byte >> 4];
2282 assert(cp + strlen(".ip6.arpa") < buf+sizeof(buf));
2283 memcpy(cp, ".ip6.arpa", strlen(".ip6.arpa")+1);
2284 log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf);
2285 req = request_new(TYPE_PTR, buf, flags, callback, ptr);
2287 request_submit(req);
2291 /*/////////////////////////////////////////////////////////////////// */
2292 /* Search support */
2294 /* the libc resolver has support for searching a number of domains */
2295 /* to find a name. If nothing else then it takes the single domain */
2296 /* from the gethostname() call. */
2298 /* It can also be configured via the domain and search options in a */
2301 /* The ndots option controls how many dots it takes for the resolver */
2302 /* to decide that a name is non-local and so try a raw lookup first. */
2304 struct search_domain {
2306 struct search_domain *next;
2307 /* the text string is appended to this structure */
2310 struct search_state {
2314 struct search_domain *head;
2317 static struct search_state *global_search_state = NULL;
2320 search_state_decref(struct search_state *const state) {
2323 if (!state->refcount) {
2324 struct search_domain *next, *dom;
2325 for (dom = state->head; dom; dom = next) {
2333 static struct search_state *
2334 search_state_new(void) {
2335 struct search_state *state = (struct search_state *) malloc(sizeof(struct search_state));
2336 if (!state) return NULL;
2337 memset(state, 0, sizeof(struct search_state));
2338 state->refcount = 1;
2345 search_postfix_clear(void) {
2346 search_state_decref(global_search_state);
2348 global_search_state = search_state_new();
2351 /* exported function */
2353 evdns_search_clear(void) {
2354 search_postfix_clear();
2358 search_postfix_add(const char *domain) {
2360 struct search_domain *sdomain;
2361 while (domain[0] == '.') domain++;
2362 domain_len = strlen(domain);
2364 if (!global_search_state) global_search_state = search_state_new();
2365 if (!global_search_state) return;
2366 global_search_state->num_domains++;
2368 sdomain = (struct search_domain *) malloc(sizeof(struct search_domain) + domain_len);
2369 if (!sdomain) return;
2370 memcpy( ((u8 *) sdomain) + sizeof(struct search_domain), domain, domain_len);
2371 sdomain->next = global_search_state->head;
2372 sdomain->len = domain_len;
2374 global_search_state->head = sdomain;
2377 /* reverse the order of members in the postfix list. This is needed because, */
2378 /* when parsing resolv.conf we push elements in the wrong order */
2380 search_reverse(void) {
2381 struct search_domain *cur, *prev = NULL, *next;
2382 cur = global_search_state->head;
2390 global_search_state->head = prev;
2393 /* exported function */
2395 evdns_search_add(const char *domain) {
2396 search_postfix_add(domain);
2399 /* exported function */
2401 evdns_search_ndots_set(const int ndots) {
2402 if (!global_search_state) global_search_state = search_state_new();
2403 if (!global_search_state) return;
2404 global_search_state->ndots = ndots;
2408 search_set_from_hostname(void) {
2409 char hostname[HOST_NAME_MAX + 1], *domainname;
2411 search_postfix_clear();
2412 if (gethostname(hostname, sizeof(hostname))) return;
2413 domainname = strchr(hostname, '.');
2414 if (!domainname) return;
2415 search_postfix_add(domainname);
2418 /* warning: returns malloced string */
2420 search_make_new(const struct search_state *const state, int n, const char *const base_name) {
2421 const int base_len = strlen(base_name);
2422 const char need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1;
2423 struct search_domain *dom;
2425 for (dom = state->head; dom; dom = dom->next) {
2427 /* this is the postfix we want */
2428 /* the actual postfix string is kept at the end of the structure */
2429 const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain);
2430 const int postfix_len = dom->len;
2431 char *const newname = (char *) malloc(base_len + need_to_append_dot + postfix_len + 1);
2432 if (!newname) return NULL;
2433 memcpy(newname, base_name, base_len);
2434 if (need_to_append_dot) newname[base_len] = '.';
2435 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len);
2436 newname[base_len + need_to_append_dot + postfix_len] = 0;
2441 /* we ran off the end of the list and still didn't find the requested string */
2443 return NULL; /* unreachable; stops warnings in some compilers. */
2447 search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg) {
2448 assert(type == TYPE_A || type == TYPE_AAAA);
2449 if ( ((flags & DNS_QUERY_NO_SEARCH) == 0) &&
2450 global_search_state &&
2451 global_search_state->num_domains) {
2452 /* we have some domains to search */
2453 struct request *req;
2454 if (string_num_dots(name) >= global_search_state->ndots) {
2455 req = request_new(type, name, flags, user_callback, user_arg);
2457 req->search_index = -1;
2459 char *const new_name = search_make_new(global_search_state, 0, name);
2460 if (!new_name) return 1;
2461 req = request_new(type, new_name, flags, user_callback, user_arg);
2464 req->search_index = 0;
2466 req->search_origname = strdup(name);
2467 req->search_state = global_search_state;
2468 req->search_flags = flags;
2469 global_search_state->refcount++;
2470 request_submit(req);
2473 struct request *const req = request_new(type, name, flags, user_callback, user_arg);
2475 request_submit(req);
2480 /* this is called when a request has failed to find a name. We need to check */
2481 /* if it is part of a search and, if so, try the next name in the list */
2483 /* 0 another request has been submitted */
2484 /* 1 no more requests needed */
2486 search_try_next(struct request *const req) {
2487 if (req->search_state) {
2488 /* it is part of a search */
2490 struct request *newreq;
2491 req->search_index++;
2492 if (req->search_index >= req->search_state->num_domains) {
2493 /* no more postfixes to try, however we may need to try */
2494 /* this name without a postfix */
2495 if (string_num_dots(req->search_origname) < req->search_state->ndots) {
2496 /* yep, we need to try it raw */
2497 struct request *const newreq = request_new(req->request_type, req->search_origname, req->search_flags, req->user_callback, req->user_pointer);
2498 log(EVDNS_LOG_DEBUG, "Search: trying raw query %s", req->search_origname);
2500 request_submit(newreq);
2507 new_name = search_make_new(req->search_state, req->search_index, req->search_origname);
2508 if (!new_name) return 1;
2509 log(EVDNS_LOG_DEBUG, "Search: now trying %s (%d)", new_name, req->search_index);
2510 newreq = request_new(req->request_type, new_name, req->search_flags, req->user_callback, req->user_pointer);
2512 if (!newreq) return 1;
2513 newreq->search_origname = req->search_origname;
2514 req->search_origname = NULL;
2515 newreq->search_state = req->search_state;
2516 newreq->search_flags = req->search_flags;
2517 newreq->search_index = req->search_index;
2518 newreq->search_state->refcount++;
2519 request_submit(newreq);
2526 search_request_finished(struct request *const req) {
2527 if (req->search_state) {
2528 search_state_decref(req->search_state);
2529 req->search_state = NULL;
2531 if (req->search_origname) {
2532 free(req->search_origname);
2533 req->search_origname = NULL;
2537 /*/////////////////////////////////////////////////////////////////// */
2538 /* Parsing resolv.conf files */
2541 evdns_resolv_set_defaults(int flags) {
2542 /* if the file isn't found then we assume a local resolver */
2543 if (flags & DNS_OPTION_SEARCH) search_set_from_hostname();
2544 if (flags & DNS_OPTION_NAMESERVERS) evdns_nameserver_ip_add("127.0.0.1");
2548 /* helper version of atoi which returns -1 on error */
2550 strtoint(const char *const str) {
2552 const int r = strtol(str, &endptr, 10);
2553 if (*endptr) return -1;
2557 /* helper version of atoi that returns -1 on error and clips to bounds. */
2559 strtoint_clipped(const char *const str, int min, int max)
2561 int r = strtoint(str);
2572 /* exported function */
2574 evdns_set_option(const char *option, const char *val, int flags)
2576 if (!strncmp(option, "ndots:", 6)) {
2577 const int ndots = strtoint(val);
2578 if (ndots == -1) return -1;
2579 if (!(flags & DNS_OPTION_SEARCH)) return 0;
2580 log(EVDNS_LOG_DEBUG, "Setting ndots to %d", ndots);
2581 if (!global_search_state) global_search_state = search_state_new();
2582 if (!global_search_state) return -1;
2583 global_search_state->ndots = ndots;
2584 } else if (!strncmp(option, "timeout:", 8)) {
2585 const int timeout = strtoint(val);
2586 if (timeout == -1) return -1;
2587 if (!(flags & DNS_OPTION_MISC)) return 0;
2588 log(EVDNS_LOG_DEBUG, "Setting timeout to %d", timeout);
2589 global_timeout.tv_sec = timeout;
2590 } else if (!strncmp(option, "max-timeouts:", 12)) {
2591 const int maxtimeout = strtoint_clipped(val, 1, 255);
2592 if (maxtimeout == -1) return -1;
2593 if (!(flags & DNS_OPTION_MISC)) return 0;
2594 log(EVDNS_LOG_DEBUG, "Setting maximum allowed timeouts to %d",
2596 global_max_nameserver_timeout = maxtimeout;
2597 } else if (!strncmp(option, "max-inflight:", 13)) {
2598 const int maxinflight = strtoint_clipped(val, 1, 65000);
2599 if (maxinflight == -1) return -1;
2600 if (!(flags & DNS_OPTION_MISC)) return 0;
2601 log(EVDNS_LOG_DEBUG, "Setting maximum inflight requests to %d",
2603 global_max_requests_inflight = maxinflight;
2604 } else if (!strncmp(option, "attempts:", 9)) {
2605 int retries = strtoint(val);
2606 if (retries == -1) return -1;
2607 if (retries > 255) retries = 255;
2608 if (!(flags & DNS_OPTION_MISC)) return 0;
2609 log(EVDNS_LOG_DEBUG, "Setting retries to %d", retries);
2610 global_max_retransmits = retries;
2616 resolv_conf_parse_line(char *const start, int flags) {
2618 static const char *const delims = " \t";
2619 #define NEXT_TOKEN strtok(NULL, delims, &strtok_state)
2621 char *const first_token = strtok(start, delims, &strtok_state);
2622 if (!first_token) return;
2624 if (!strcmp(first_token, "nameserver") && (flags & DNS_OPTION_NAMESERVERS)) {
2625 const char *const nameserver = NEXT_TOKEN;
2628 if (inet_aton(nameserver, &ina)) {
2629 /* address is valid */
2630 evdns_nameserver_add(ina.s_addr);
2632 } else if (!strcmp(first_token, "domain") && (flags & DNS_OPTION_SEARCH)) {
2633 const char *const domain = NEXT_TOKEN;
2635 search_postfix_clear();
2636 search_postfix_add(domain);
2638 } else if (!strcmp(first_token, "search") && (flags & DNS_OPTION_SEARCH)) {
2640 search_postfix_clear();
2642 while ((domain = NEXT_TOKEN)) {
2643 search_postfix_add(domain);
2646 } else if (!strcmp(first_token, "options")) {
2648 while ((option = NEXT_TOKEN)) {
2649 const char *val = strchr(option, ':');
2650 evdns_set_option(option, val ? val+1 : "", flags);
2656 /* exported function */
2659 /* 1 failed to open file */
2660 /* 2 failed to stat file */
2661 /* 3 file too large */
2662 /* 4 out of memory */
2663 /* 5 short read from file */
2665 evdns_resolv_conf_parse(int flags, const char *const filename) {
2672 log(EVDNS_LOG_DEBUG, "Parsing resolv.conf file %s", filename);
2674 fd = open(filename, O_RDONLY);
2676 evdns_resolv_set_defaults(flags);
2680 if (fstat(fd, &st)) { err = 2; goto out1; }
2682 evdns_resolv_set_defaults(flags);
2683 err = (flags & DNS_OPTION_NAMESERVERS) ? 6 : 0;
2686 if (st.st_size > 65535) { err = 3; goto out1; } /* no resolv.conf should be any bigger */
2688 resolv = (u8 *) malloc((size_t)st.st_size + 1);
2689 if (!resolv) { err = 4; goto out1; }
2692 while ((r = read(fd, resolv+n, (size_t)st.st_size-n)) > 0) {
2694 if (n == st.st_size)
2696 assert(n < st.st_size);
2698 if (r < 0) { err = 5; goto out2; }
2699 resolv[n] = 0; /* we malloced an extra byte; this should be fine. */
2701 start = (char *) resolv;
2703 char *const newline = strchr(start, '\n');
2705 resolv_conf_parse_line(start, flags);
2709 resolv_conf_parse_line(start, flags);
2710 start = newline + 1;
2714 if (!server_head && (flags & DNS_OPTION_NAMESERVERS)) {
2715 /* no nameservers were configured. */
2716 evdns_nameserver_ip_add("127.0.0.1");
2719 if (flags & DNS_OPTION_SEARCH && (!global_search_state || global_search_state->num_domains == 0)) {
2720 search_set_from_hostname();
2731 /* Add multiple nameservers from a space-or-comma-separated list. */
2733 evdns_nameserver_ip_add_line(const char *ips) {
2738 while (ISSPACE(*ips) || *ips == ',' || *ips == '\t')
2741 while (ISDIGIT(*ips) || *ips == '.' || *ips == ':')
2743 buf = malloc(ips-addr+1);
2745 memcpy(buf, addr, ips-addr);
2746 buf[ips-addr] = '\0';
2747 r = evdns_nameserver_ip_add(buf);
2754 typedef DWORD(WINAPI *GetNetworkParams_fn_t)(FIXED_INFO *, DWORD*);
2756 /* Use the windows GetNetworkParams interface in iphlpapi.dll to */
2757 /* figure out what our nameservers are. */
2759 load_nameservers_with_getnetworkparams(void)
2761 /* Based on MSDN examples and inspection of c-ares code. */
2764 ULONG size = sizeof(FIXED_INFO);
2766 int status = 0, r, added_any;
2768 GetNetworkParams_fn_t fn;
2770 if (!(handle = LoadLibrary("iphlpapi.dll"))) {
2771 log(EVDNS_LOG_WARN, "Could not open iphlpapi.dll");
2775 if (!(fn = (GetNetworkParams_fn_t) GetProcAddress(handle, "GetNetworkParams"))) {
2776 log(EVDNS_LOG_WARN, "Could not get address of function.");
2782 if (!buf) { status = 4; goto done; }
2784 r = fn(fixed, &size);
2785 if (r != ERROR_SUCCESS && r != ERROR_BUFFER_OVERFLOW) {
2789 if (r != ERROR_SUCCESS) {
2792 if (!buf) { status = 4; goto done; }
2794 r = fn(fixed, &size);
2795 if (r != ERROR_SUCCESS) {
2796 log(EVDNS_LOG_DEBUG, "fn() failed.");
2804 ns = &(fixed->DnsServerList);
2806 r = evdns_nameserver_ip_add_line(ns->IpAddress.String);
2808 log(EVDNS_LOG_DEBUG,"Could not add nameserver %s to list,error: %d",
2809 (ns->IpAddress.String),(int)GetLastError());
2813 log(EVDNS_LOG_DEBUG,"Succesfully added %s as nameserver",ns->IpAddress.String);
2821 log(EVDNS_LOG_DEBUG, "No nameservers added.");
2829 FreeLibrary(handle);
2834 config_nameserver_from_reg_key(HKEY key, const char *subkey)
2837 DWORD bufsz = 0, type = 0;
2840 if (RegQueryValueEx(key, subkey, 0, &type, NULL, &bufsz)
2843 if (!(buf = malloc(bufsz)))
2846 if (RegQueryValueEx(key, subkey, 0, &type, (LPBYTE)buf, &bufsz)
2847 == ERROR_SUCCESS && bufsz > 1) {
2848 status = evdns_nameserver_ip_add_line(buf);
2855 #define SERVICES_KEY "System\\CurrentControlSet\\Services\\"
2856 #define WIN_NS_9X_KEY SERVICES_KEY "VxD\\MSTCP"
2857 #define WIN_NS_NT_KEY SERVICES_KEY "Tcpip\\Parameters"
2860 load_nameservers_from_registry(void)
2864 #define TRY(k, name) \
2865 if (!found && config_nameserver_from_reg_key(k,name) == 0) { \
2866 log(EVDNS_LOG_DEBUG,"Found nameservers in %s/%s",#k,name); \
2868 } else if (!found) { \
2869 log(EVDNS_LOG_DEBUG,"Didn't find nameservers in %s/%s", \
2873 if (((int)GetVersion()) > 0) { /* NT */
2874 HKEY nt_key = 0, interfaces_key = 0;
2876 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_NT_KEY, 0,
2877 KEY_READ, &nt_key) != ERROR_SUCCESS) {
2878 log(EVDNS_LOG_DEBUG,"Couldn't open nt key, %d",(int)GetLastError());
2881 r = RegOpenKeyEx(nt_key, "Interfaces", 0,
2882 KEY_QUERY_VALUE|KEY_ENUMERATE_SUB_KEYS,
2884 if (r != ERROR_SUCCESS) {
2885 log(EVDNS_LOG_DEBUG,"Couldn't open interfaces key, %d",(int)GetLastError());
2888 TRY(nt_key, "NameServer");
2889 TRY(nt_key, "DhcpNameServer");
2890 TRY(interfaces_key, "NameServer");
2891 TRY(interfaces_key, "DhcpNameServer");
2892 RegCloseKey(interfaces_key);
2893 RegCloseKey(nt_key);
2896 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_9X_KEY, 0,
2897 KEY_READ, &win_key) != ERROR_SUCCESS) {
2898 log(EVDNS_LOG_DEBUG, "Couldn't open registry key, %d", (int)GetLastError());
2901 TRY(win_key, "NameServer");
2902 RegCloseKey(win_key);
2906 log(EVDNS_LOG_WARN,"Didn't find any nameservers.");
2909 return found ? 0 : -1;
2914 evdns_config_windows_nameservers(void)
2916 if (load_nameservers_with_getnetworkparams() == 0)
2918 return load_nameservers_from_registry();
2927 evdns_config_windows_nameservers();
2929 res = evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf");
2936 evdns_err_to_string(int err)
2939 case DNS_ERR_NONE: return "no error";
2940 case DNS_ERR_FORMAT: return "misformatted query";
2941 case DNS_ERR_SERVERFAILED: return "server failed";
2942 case DNS_ERR_NOTEXIST: return "name does not exist";
2943 case DNS_ERR_NOTIMPL: return "query not implemented";
2944 case DNS_ERR_REFUSED: return "refused";
2946 case DNS_ERR_TRUNCATED: return "reply truncated or ill-formed";
2947 case DNS_ERR_UNKNOWN: return "unknown";
2948 case DNS_ERR_TIMEOUT: return "request timed out";
2949 case DNS_ERR_SHUTDOWN: return "dns subsystem shut down";
2950 default: return "[Unknown error code]";
2955 evdns_shutdown(int fail_requests)
2957 struct nameserver *server, *server_next;
2958 struct search_domain *dom, *dom_next;
2962 reply_callback(req_head, 0, DNS_ERR_SHUTDOWN, NULL);
2963 request_finished(req_head, &req_head);
2965 while (req_waiting_head) {
2967 reply_callback(req_waiting_head, 0, DNS_ERR_SHUTDOWN, NULL);
2968 request_finished(req_waiting_head, &req_waiting_head);
2970 global_requests_inflight = global_requests_waiting = 0;
2972 for (server = server_head; server; server = server_next) {
2973 server_next = server->next;
2974 if (server->socket >= 0)
2975 CLOSE_SOCKET(server->socket);
2976 (void) event_del(&server->event);
2977 if (server->state == 0)
2978 (void) event_del(&server->timeout_event);
2980 if (server_next == server_head)
2984 global_good_nameservers = 0;
2986 if (global_search_state) {
2987 for (dom = global_search_state->head; dom; dom = dom_next) {
2988 dom_next = dom->next;
2991 free(global_search_state);
2992 global_search_state = NULL;
2994 evdns_log_fn = NULL;
2999 main_callback(int result, char type, int count, int ttl,
3000 void *addrs, void *orig) {
3001 char *n = (char*)orig;
3003 for (i = 0; i < count; ++i) {
3004 if (type == DNS_IPv4_A) {
3005 printf("%s: %s\n", n, debug_ntoa(((u32*)addrs)[i]));
3006 } else if (type == DNS_PTR) {
3007 printf("%s: %s\n", n, ((char**)addrs)[i]);
3011 printf("%s: No answer (%d)\n", n, result);
3016 evdns_server_callback(struct evdns_server_request *req, void *data)
3020 /* dummy; give 192.168.11.11 as an answer for all A questions,
3021 * give foo.bar.example.com as an answer for all PTR questions. */
3022 for (i = 0; i < req->nquestions; ++i) {
3023 u32 ans = htonl(0xc0a80b0bUL);
3024 if (req->questions[i]->type == EVDNS_TYPE_A &&
3025 req->questions[i]->class == EVDNS_CLASS_INET) {
3026 printf(" -- replying for %s (A)\n", req->questions[i]->name);
3027 r = evdns_server_request_add_a_reply(req, req->questions[i]->name,
3030 printf("eeep, didn't work.\n");
3031 } else if (req->questions[i]->type == EVDNS_TYPE_PTR &&
3032 req->questions[i]->class == EVDNS_CLASS_INET) {
3033 printf(" -- replying for %s (PTR)\n", req->questions[i]->name);
3034 r = evdns_server_request_add_ptr_reply(req, NULL, req->questions[i]->name,
3035 "foo.bar.example.com", 10);
3037 printf(" -- skipping %s [%d %d]\n", req->questions[i]->name,
3038 req->questions[i]->type, req->questions[i]->class);
3042 r = evdns_request_respond(req, 0);
3044 printf("eeek, couldn't send reply.\n");
3048 logfn(int is_warn, const char *msg) {
3050 fprintf(stderr, "%s\n", msg);
3053 main(int c, char **v) {
3055 int reverse = 0, verbose = 1, servertest = 0;
3057 fprintf(stderr, "syntax: %s [-x] [-v] hostname\n", v[0]);
3058 fprintf(stderr, "syntax: %s [-servertest]\n", v[0]);
3062 while (idx < c && v[idx][0] == '-') {
3063 if (!strcmp(v[idx], "-x"))
3065 else if (!strcmp(v[idx], "-v"))
3067 else if (!strcmp(v[idx], "-servertest"))
3070 fprintf(stderr, "Unknown option %s\n", v[idx]);
3075 evdns_set_log_fn(logfn);
3076 evdns_resolv_conf_parse(DNS_OPTION_NAMESERVERS, "/etc/resolv.conf");
3079 struct sockaddr_in my_addr;
3080 sock = socket(PF_INET, SOCK_DGRAM, 0);
3081 fcntl(sock, F_SETFL, O_NONBLOCK);
3082 my_addr.sin_family = AF_INET;
3083 my_addr.sin_port = htons(10053);
3084 my_addr.sin_addr.s_addr = INADDR_ANY;
3085 if (bind(sock, (struct sockaddr*)&my_addr, sizeof(my_addr))<0) {
3089 evdns_add_server_port(sock, 0, evdns_server_callback, NULL);
3091 for (; idx < c; ++idx) {
3093 struct in_addr addr;
3094 if (!inet_aton(v[idx], &addr)) {
3095 fprintf(stderr, "Skipping non-IP %s\n", v[idx]);
3098 fprintf(stderr, "resolving %s...\n",v[idx]);
3099 evdns_resolve_reverse(&addr, 0, main_callback, v[idx]);
3101 fprintf(stderr, "resolving (fwd) %s...\n",v[idx]);
3102 evdns_resolve_ipv4(v[idx], 0, main_callback, v[idx]);