s4-resolver: do not use all the A and AAAA records, those after a NS are not the...
[Samba/gebeck_regimport.git] / source4 / libcli / resolve / dns_ex.c
blob9467521394efb2afa5f4b9dcd11e9ed1d69a03dc
1 /*
2 Unix SMB/CIFS implementation.
4 async getaddrinfo()/dns_lookup() name resolution module
6 Copyright (C) Andrew Tridgell 2005
7 Copyright (C) Stefan Metzmacher 2008
8 Copyright (C) Matthieu Patou 2011
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 this module uses a fork() per getaddrinfo() or dns_looup() call.
26 At first that might seem crazy, but it is actually very fast,
27 and solves many of the tricky problems of keeping a child
28 hanging around in a librar (like what happens when the parent forks).
29 We use a talloc destructor to ensure that the child is cleaned up
30 when we have finished with this name resolution.
33 #include "includes.h"
34 #include "lib/events/events.h"
35 #include "system/network.h"
36 #include "system/filesys.h"
37 #include "lib/socket/socket.h"
38 #include "libcli/composite/composite.h"
39 #include "librpc/gen_ndr/ndr_nbt.h"
40 #include "libcli/resolve/resolve.h"
41 #include "lib/util/util_net.h"
43 #ifdef class
44 #undef class
45 #endif
47 #include "heimdal/lib/roken/resolve.h"
49 struct dns_ex_state {
50 bool do_fallback;
51 uint32_t flags;
52 uint16_t port;
53 struct nbt_name name;
54 struct socket_address **addrs;
55 char **names;
56 pid_t child;
57 int child_fd;
58 struct tevent_fd *fde;
59 struct tevent_context *event_ctx;
63 kill off a wayward child if needed. This allows us to stop an async
64 name resolution without leaving a potentially blocking call running
65 in a child
67 static int dns_ex_destructor(struct dns_ex_state *state)
69 int status;
71 kill(state->child, SIGTERM);
72 if (waitpid(state->child, &status, WNOHANG) == 0) {
73 kill(state->child, SIGKILL);
74 waitpid(state->child, &status, 0);
77 return 0;
80 static uint32_t count_dns_rr(struct rk_resource_record *head, unsigned record_type)
82 uint32_t count = 0;
83 struct rk_resource_record *rr;
85 for (rr=head; rr; rr=rr->next) {
87 /* we are only interested in the IN class */
88 if (rr->class != rk_ns_c_in) {
89 continue;
92 if (rr->type == rk_ns_t_ns) {
94 * Record that will follow will be related to the NS
95 * not what we are really interested with.
96 * It's a good idea not to count them
98 break;
100 /* we are only interested by requested record */
101 if (rr->type != record_type) {
102 continue;
105 switch(record_type) {
106 case rk_ns_t_srv:
108 /* verify we actually have a SRV record here */
109 if (!rr->u.srv) {
110 continue;
113 /* Verify we got a port */
114 if (rr->u.srv->port == 0) {
115 continue;
117 count++;
118 break;
119 case rk_ns_t_a:
120 case rk_ns_t_aaaa:
121 /* verify we actually have a record here */
122 if (!rr->u.data) {
123 continue;
125 count++;
126 break;
127 default:
128 count++;
129 break;
133 return count;
136 struct dns_records_container {
137 char **list;
138 uint32_t count;
141 static char* rr_to_string(TALLOC_CTX *mem_ctx,
142 struct rk_resource_record *rr,
143 uint16_t port)
145 char addrstr[INET6_ADDRSTRLEN];
146 char *addr;
148 switch (rr->type) {
149 case rk_ns_t_a:
150 if (inet_ntop(AF_INET, rr->u.a,
151 addrstr, sizeof(addrstr)) == NULL) {
152 return NULL;
154 break;
155 #ifdef HAVE_IPV6
156 case rk_ns_t_aaaa:
157 if (inet_ntop(AF_INET6, (struct in6_addr *)rr->u.data,
158 addrstr, sizeof(addrstr)) == NULL) {
159 return NULL;
161 break;
162 #endif
163 default:
164 return NULL;
167 addr = talloc_asprintf(mem_ctx, "%s@%u/%s", addrstr,
168 port, rr->domain);
170 return addr;
173 static struct dns_records_container get_a_aaaa_records(TALLOC_CTX *mem_ctx,
174 const char* name,
175 int port)
177 struct rk_dns_reply *reply, *reply2, *rep, *tmp[3];
178 struct rk_resource_record *rr;
179 struct dns_records_container ret;
180 char **addrs = NULL;
181 uint32_t count, count2, total;
182 uint32_t i;
184 memset(&ret, 0, sizeof(struct dns_records_container));
185 /* this is the blocking call we are going to lots of trouble
186 to avoid them in the parent */
187 reply = rk_dns_lookup(name, "AAAA");
189 count = count2 = 0;
191 if (reply) {
193 count = count_dns_rr(reply->head, rk_ns_t_aaaa);
194 count2 = count_dns_rr(reply->head, rk_ns_t_a);
196 if (!count2) {
198 * DNS server didn't returned A when asked for AAAA records.
199 * Most of the server do it, let's ask for A specificaly.
201 reply2 = rk_dns_lookup(name, "A");
203 if (!reply2) {
204 return ret;
207 /* Some servers (Microsoft at least return here AAAA records .... */
208 count += count_dns_rr(reply2->head, rk_ns_t_aaaa);
209 count2 = count_dns_rr(reply2->head, rk_ns_t_a);
210 } else {
211 reply2 = NULL;
213 } else {
215 reply = rk_dns_lookup(name, "A");
216 if (!reply) {
217 return ret;
220 reply2 = NULL;
221 count = count_dns_rr(reply->head, rk_ns_t_a);
223 count += count2;
225 if (count == 0) {
226 goto done;
229 addrs = talloc_zero_array(mem_ctx, char*, count);
230 total = 0;
232 tmp[0] = reply;
233 tmp[1] = reply2;
234 tmp[2] = NULL;
236 /* Loop over all returned records and pick the records */
237 for (i=0; tmp[i] != NULL; i++) {
238 rep = tmp[i];
239 for (rr=rep->head; rr; rr=rr->next) {
240 /* we are only interested in the IN class */
241 if (rr->class != rk_ns_c_in) {
242 continue;
245 if (rr->type == rk_ns_t_ns) {
247 * After the record for NS will come the A or AAAA
248 * record of the NS.
250 break;
253 /* we are only interested in A and AAAA records */
254 if (rr->type != rk_ns_t_a && rr->type != rk_ns_t_aaaa) {
255 continue;
258 /* verify we actually have a record here */
259 if (!rr->u.data) {
260 continue;
263 addrs[total] = rr_to_string(addrs, rr, port);
264 if (addrs[total]) {
265 total++;
269 if (total) {
270 ret.count = total;
271 ret.list = addrs;
274 done:
275 if (reply != NULL)
276 rk_dns_free_data(reply);
278 if (reply2 != NULL)
279 rk_dns_free_data(reply2);
281 return ret;
284 static struct dns_records_container get_srv_records(TALLOC_CTX *mem_ctx,
285 const char* name)
287 struct rk_dns_reply *reply;
288 struct rk_resource_record *rr;
289 struct dns_records_container ret;
290 char **addrs = NULL;
291 uint32_t count, total;
293 memset(&ret, 0, sizeof(struct dns_records_container));
294 /* this is the blocking call we are going to lots of trouble
295 to avoid them in the parent */
296 reply = rk_dns_lookup(name, "SRV");
298 if (!reply) {
299 return ret;
302 rk_dns_srv_order(reply);
303 count = count_dns_rr(reply->head, rk_ns_t_srv);
305 total = 0;
306 if (count == 0) {
307 goto done;
310 /* Loop over all returned records and pick the records */
311 for (rr=reply->head; rr; rr=rr->next) {
312 struct dns_records_container c;
313 char* tmp_str;
314 /* we are only interested in the IN class */
315 if (rr->class != rk_ns_c_in) {
316 continue;
319 /* we are only interested in SRV records */
320 if (rr->type != rk_ns_t_srv) {
321 continue;
324 /* verify we actually have a srv record here */
325 if (!rr->u.srv) {
326 continue;
329 /* Verify we got a port */
330 if (rr->u.srv->port == 0) {
331 continue;
334 tmp_str = rr->u.srv->target;
335 if (strchr(tmp_str, '.') && tmp_str[strlen(tmp_str)-1] != '.') {
336 /* we are asking for a fully qualified name, but the
337 name doesn't end in a '.'. We need to prevent the
338 DNS library trying the search domains configured in
339 resolv.conf */
340 tmp_str = talloc_asprintf(mem_ctx, "%s.", tmp_str);
343 c = get_a_aaaa_records(mem_ctx, tmp_str, rr->u.srv->port);
344 total += c.count;
345 if (addrs == NULL) {
346 addrs = c.list;
347 } else {
348 unsigned j;
350 addrs = talloc_realloc(mem_ctx, addrs, char*, total);
351 for (j=0; j < c.count; j++) {
352 addrs[total - j - 1] = talloc_steal(addrs, c.list[j]);
357 if (total) {
358 ret.count = total;
359 ret.list = addrs;
363 done:
364 if (reply != NULL)
365 rk_dns_free_data(reply);
367 return ret;
370 the blocking child
372 static void run_child_dns_lookup(struct dns_ex_state *state, int fd)
374 bool first;
375 bool do_srv = (state->flags & RESOLVE_NAME_FLAG_DNS_SRV);
376 struct dns_records_container c;
377 char* addrs = NULL;
378 unsigned int i;
380 if (strchr(state->name.name, '.') && state->name.name[strlen(state->name.name)-1] != '.') {
381 /* we are asking for a fully qualified name, but the
382 name doesn't end in a '.'. We need to prevent the
383 DNS library trying the search domains configured in
384 resolv.conf */
385 state->name.name = talloc_strdup_append(discard_const_p(char, state->name.name),
386 ".");
390 if (do_srv) {
391 c = get_srv_records(state, state->name.name);
392 } else {
393 c = get_a_aaaa_records(state, state->name.name, state->port);
396 addrs = talloc_strdup(state, "");
397 if (!addrs) {
398 goto done;
400 first = true;
402 for (i=0; i < c.count; i++) {
403 addrs = talloc_asprintf_append_buffer(addrs, "%s%s",
404 first?"":",",
405 c.list[i]);
406 first = false;
409 if (addrs) {
410 DEBUG(11, ("Addrs = %s\n", addrs));
411 write(fd, addrs, talloc_get_size(addrs));
414 done:
415 close(fd);
419 the blocking child
421 static void run_child_getaddrinfo(struct dns_ex_state *state, int fd)
423 int ret;
424 struct addrinfo hints;
425 struct addrinfo *res;
426 struct addrinfo *res_list = NULL;
427 char *addrs;
428 bool first;
430 ZERO_STRUCT(hints);
431 hints.ai_socktype = SOCK_STREAM;
432 hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
434 ret = getaddrinfo(state->name.name, "0", &hints, &res_list);
435 /* try to fallback in case of error */
436 if (state->do_fallback) {
437 switch (ret) {
438 #ifdef EAI_NODATA
439 case EAI_NODATA:
440 #endif
441 case EAI_NONAME:
442 /* getaddrinfo() doesn't handle CNAME records */
443 run_child_dns_lookup(state, fd);
444 return;
445 default:
446 break;
449 if (ret != 0) {
450 goto done;
453 addrs = talloc_strdup(state, "");
454 if (!addrs) {
455 goto done;
457 first = true;
458 for (res = res_list; res; res = res->ai_next) {
459 char addrstr[INET6_ADDRSTRLEN];
460 if (!print_sockaddr_len(addrstr, sizeof(addrstr), (struct sockaddr *)res->ai_addr, res->ai_addrlen)) {
461 continue;
463 addrs = talloc_asprintf_append_buffer(addrs, "%s%s@%u/%s",
464 first?"":",",
465 addrstr,
466 state->port,
467 state->name.name);
468 if (!addrs) {
469 goto done;
471 first = false;
474 if (addrs) {
475 write(fd, addrs, talloc_get_size(addrs));
477 done:
478 if (res_list) {
479 freeaddrinfo(res_list);
481 close(fd);
485 handle a read event on the pipe
487 static void pipe_handler(struct tevent_context *ev, struct tevent_fd *fde,
488 uint16_t flags, void *private_data)
490 struct composite_context *c = talloc_get_type(private_data, struct composite_context);
491 struct dns_ex_state *state = talloc_get_type(c->private_data,
492 struct dns_ex_state);
493 char *address;
494 uint32_t num_addrs, i;
495 char **addrs;
496 int ret;
497 int status;
498 int value = 0;
500 /* if we get any event from the child then we know that we
501 won't need to kill it off */
502 talloc_set_destructor(state, NULL);
504 if (ioctl(state->child_fd, FIONREAD, &value) != 0) {
505 value = 8192;
508 address = talloc_array(state, char, value+1);
509 if (address) {
510 /* yes, we don't care about EAGAIN or other niceities
511 here. They just can't happen with this parent/child
512 relationship, and even if they did then giving an error is
513 the right thing to do */
514 ret = read(state->child_fd, address, value);
515 } else {
516 ret = -1;
518 if (waitpid(state->child, &status, WNOHANG) == 0) {
519 kill(state->child, SIGKILL);
520 waitpid(state->child, &status, 0);
523 if (ret <= 0) {
524 DEBUG(3,("dns child failed to find name '%s' of type %s\n",
525 state->name.name, (state->flags & RESOLVE_NAME_FLAG_DNS_SRV)?"SRV":"A"));
526 composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND);
527 return;
530 /* enusre the address looks good */
531 address[ret] = 0;
533 addrs = str_list_make(state, address, ",");
534 if (composite_nomem(addrs, c)) return;
536 num_addrs = str_list_length((const char * const *)addrs);
538 state->addrs = talloc_array(state, struct socket_address *,
539 num_addrs+1);
540 if (composite_nomem(state->addrs, c)) return;
542 state->names = talloc_array(state, char *, num_addrs+1);
543 if (composite_nomem(state->names, c)) return;
545 for (i=0; i < num_addrs; i++) {
546 uint32_t port = 0;
547 char *p = strrchr(addrs[i], '@');
548 char *n;
550 if (!p) {
551 composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND);
552 return;
555 *p = '\0';
556 p++;
558 n = strrchr(p, '/');
559 if (!n) {
560 composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND);
561 return;
564 *n = '\0';
565 n++;
567 if (strcmp(addrs[i], "0.0.0.0") == 0) {
568 composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND);
569 return;
571 port = strtoul(p, NULL, 10);
572 if (port > UINT16_MAX) {
573 composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND);
574 return;
576 state->addrs[i] = socket_address_from_strings(state->addrs,
577 "ip",
578 addrs[i],
579 port);
580 if (composite_nomem(state->addrs[i], c)) return;
582 state->names[i] = talloc_strdup(state->names, n);
583 if (composite_nomem(state->names[i], c)) return;
585 state->addrs[i] = NULL;
586 state->names[i] = NULL;
588 composite_done(c);
592 getaddrinfo() or dns_lookup() name resolution method - async send
594 struct composite_context *resolve_name_dns_ex_send(TALLOC_CTX *mem_ctx,
595 struct tevent_context *event_ctx,
596 void *privdata,
597 uint32_t flags,
598 uint16_t port,
599 struct nbt_name *name,
600 bool do_fallback)
602 struct composite_context *c;
603 struct dns_ex_state *state;
604 int fd[2] = { -1, -1 };
605 int ret;
607 c = composite_create(mem_ctx, event_ctx);
608 if (c == NULL) return NULL;
610 if (flags & RESOLVE_NAME_FLAG_FORCE_NBT) {
611 composite_error(c, NT_STATUS_OBJECT_NAME_NOT_FOUND);
612 return c;
615 state = talloc_zero(c, struct dns_ex_state);
616 if (composite_nomem(state, c)) return c;
617 c->private_data = state;
619 c->status = nbt_name_dup(state, name, &state->name);
620 if (!composite_is_ok(c)) return c;
622 /* setup a pipe to chat to our child */
623 ret = pipe(fd);
624 if (ret == -1) {
625 composite_error(c, map_nt_error_from_unix_common(errno));
626 return c;
629 state->do_fallback = do_fallback;
630 state->flags = flags;
631 state->port = port;
633 state->child_fd = fd[0];
634 state->event_ctx = c->event_ctx;
636 /* we need to put the child in our event context so
637 we know when the dns_lookup() has finished */
638 state->fde = tevent_add_fd(c->event_ctx, c, state->child_fd, TEVENT_FD_READ,
639 pipe_handler, c);
640 if (composite_nomem(state->fde, c)) {
641 close(fd[0]);
642 close(fd[1]);
643 return c;
645 tevent_fd_set_auto_close(state->fde);
647 state->child = fork();
648 if (state->child == (pid_t)-1) {
649 composite_error(c, map_nt_error_from_unix_common(errno));
650 return c;
653 if (state->child == 0) {
654 close(fd[0]);
655 if (state->flags & RESOLVE_NAME_FLAG_FORCE_DNS) {
656 run_child_dns_lookup(state, fd[1]);
657 } else {
658 run_child_getaddrinfo(state, fd[1]);
660 _exit(0);
662 close(fd[1]);
664 /* cleanup wayward children */
665 talloc_set_destructor(state, dns_ex_destructor);
667 return c;
671 getaddrinfo() or dns_lookup() name resolution method - recv side
673 NTSTATUS resolve_name_dns_ex_recv(struct composite_context *c,
674 TALLOC_CTX *mem_ctx,
675 struct socket_address ***addrs,
676 char ***names)
678 NTSTATUS status;
680 status = composite_wait(c);
682 if (NT_STATUS_IS_OK(status)) {
683 struct dns_ex_state *state = talloc_get_type(c->private_data,
684 struct dns_ex_state);
685 *addrs = talloc_steal(mem_ctx, state->addrs);
686 if (names) {
687 *names = talloc_steal(mem_ctx, state->names);
691 talloc_free(c);
692 return status;