2 * Copyright (c) 2008-2009 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
26 * Permission to use, copy, modify, and distribute this software for any
27 * purpose with or without fee is hereby granted, provided that the above
28 * copyright notice and this permission notice appear in all copies.
30 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
31 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
33 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
34 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
35 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
36 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
40 * Copyright (c) 1988, 1993
41 * The Regents of the University of California. All rights reserved.
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 4. Neither the name of the University nor the names of its contributors
52 * may be used to endorse or promote products derived from this software
53 * without specific prior written permission.
55 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
56 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
59 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
70 * Permission to use, copy, modify, and distribute this software for any
71 * purpose with or without fee is hereby granted, provided that the above
72 * copyright notice and this permission notice appear in all copies, and that
73 * the name of Digital Equipment Corporation not be used in advertising or
74 * publicity pertaining to distribution of the document or software without
75 * specific, written prior permission.
77 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
78 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
79 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
80 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
81 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
82 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
83 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
89 #include "si_module.h"
92 #include <arpa/inet.h>
93 #include <arpa/nameser.h>
94 #include <arpa/nameser_compat.h>
95 #include <libkern/OSAtomic.h>
96 #include <netinet/in.h>
108 #include <sys/event.h>
109 #include <sys/param.h>
110 #include <sys/time.h>
111 #include <sys/types.h>
112 #include <sys/socket.h>
118 #include <dns_util.h>
119 #include <TargetConditionals.h>
121 __private_extern__
int si_inet_config(uint32_t *inet4
, uint32_t *inet6
);
123 /* from dns_util.c */
124 #define DNS_MAX_RECEIVE_SIZE 65536
126 #define INET_NTOP_AF_INET_OFFSET 4
127 #define INET_NTOP_AF_INET6_OFFSET 8
129 #define IPPROTO_UNSPEC 0
133 #define SHORT_AAAA_EXTRA 2
134 #define MEDIUM_AAAA_EXTRA 5
135 #define LONG_AAAA_EXTRA 10
137 static int _mdns_debug
= 0;
139 // mutex protects DNSServiceProcessResult and DNSServiceRefDeallocate
140 static pthread_mutex_t _mdns_mutex
= PTHREAD_MUTEX_INITIALIZER
;
143 // Options: timeout:n total_timeout attempts
145 /* _dns_config_token: notify token indicating dns config needs refresh
147 static int _dns_config_token
= -1;
152 dns_resolver_t
*primary
;
154 dns_resolver_t
**defaults
;
166 typedef struct mdns_srv_t mdns_srv_t
;
186 static uint32_t _mdns_generation
= 0;
187 DNSServiceRef _mdns_sdref
;
188 DNSServiceRef _mdns_old_sdref
;
190 static int _mdns_query_mDNSResponder(const char *name
, int class, int type
,
191 const char *interface
, DNSServiceFlags flags
,
192 uint8_t *answer
, uint32_t *anslen
,
193 mdns_reply_t
*reply
, uint32_t timeout
);
195 static int _mdns_resolver_get_option(dns_resolver_t
*resolver
, const char* option
);
196 static void _mdns_hostent_clear(mdns_hostent_t
*h
);
197 static void _mdns_reply_clear(mdns_reply_t
*r
);
199 static const char hexchar
[] = "0123456789abcdef";
201 #define BILLION 1000000000
203 /* length of a reverse DNS IPv6 address query name, e.g. "9.4.a.f.c.e.e.f.e.e.1.5.4.1.4.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.e.f.ip6.arpa" */
204 #define IPv6_REVERSE_LEN 72
206 /* index of the trailing char that must be "8", "9", "A", "a", "b", or "B" */
207 #define IPv6_REVERSE_LINK_LOCAL_TRAILING_CHAR 58
209 /* index of low-order nibble of embedded scope id */
210 #define IPv6_REVERSE_LINK_LOCAL_SCOPE_ID_LOW 48
212 const static uint8_t hexval
[128] = {
213 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0 - 15 */
214 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 16 - 31 */
215 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 32 - 47 */
216 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, /* 48 - 63 */
217 0, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 64 - 79 */
218 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 80 - 95 */
219 0, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 96 - 111 */
220 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 112 - 127 */
224 * _mdns_create_search_list
225 * Creates a NULL terminated array of strings from the specied resolver's
226 * search list, or from the components of the specified resolver's domain
227 * if search list is empty.
228 * Free the list and elements with free(3) when done.
231 _mdns_create_search_list(dns_resolver_t
*resolver
)
237 if (resolver
== NULL
) return NULL
;
239 // return the search list if present
240 if (resolver
->n_search
> 0) {
241 list
= (char **)calloc(resolver
->n_search
+1, sizeof(char *));
242 if (list
== NULL
) return NULL
;
243 for (n
= 0; n
< resolver
->n_search
; ++n
) {
244 list
[n
] = strdup(resolver
->search
[n
]);
249 if (resolver
->domain
== NULL
) return NULL
;
250 domain
= strdup(resolver
->domain
);
251 if (domain
== NULL
) return NULL
;
255 for (p
= domain
; *p
!= '\0'; p
++) {
259 // trim trailing dots
260 for (p
--; (p
>= domain
) && (*p
== '.'); p
--) {
265 // make sure the resulting string is not empty
271 // dots are separators, so number of components is one larger
275 list
= (char **)calloc(n
+1, sizeof(char *));
276 if (list
== NULL
) return NULL
;
277 // first item in list is domain itself
280 // include parent domains with at least LOCALDOMAINPARTS components
282 while (n
> LOCALDOMAINPARTS
) {
283 // find next component
284 while ((*p
!= '.') && (*p
!= '\0')) p
++;
285 if (*p
== '\0') break;
289 list
[m
++] = strdup(p
);
294 /* _mdns_resolver_get_option
295 * Determines whether the specified option is present in the resolver.
298 _mdns_resolver_get_option(dns_resolver_t
*resolver
, const char* option
)
300 if (resolver
== NULL
) return 0;
301 int len
= strlen(option
);
302 char *options
= resolver
->options
;
303 if (options
== NULL
) return 0;
304 // look for "(^| )option( |:|$)"
305 char *ptr
= strstr(options
, option
);
307 if (ptr
== options
|| ptr
[-1] == ' ') {
308 if (ptr
[len
] == ' ' || ptr
[len
] == 0) {
310 } else if (ptr
[len
] == ':') {
311 return strtol(&ptr
[len
+1], NULL
, 10);
314 ptr
= strstr(ptr
, option
);
319 /* _mdns_compare_resolvers
320 * Compares two dns_resolver_t pointers by search order ascending.
323 _mdns_compare_resolvers(const void *a
, const void *b
)
325 dns_resolver_t
**x
= (dns_resolver_t
**)a
, **y
= (dns_resolver_t
**)b
;
326 return ((*x
)->search_order
- (*y
)->search_order
);
329 /* _mdns_create_default_resolvers_list
330 * Returns an array of dns_resolver_t containing only default resolvers.
331 * A resolver is a default resolver if it is the primary resolver or if it
332 * contains the "default" configuration option.
335 _mdns_config_init_default_resolvers(mdns_config_t
*config
)
337 uint32_t count
= config
->dns
->n_resolver
;
338 if (count
== 0) return;
339 config
->defaults
= calloc(count
, sizeof(dns_resolver_t
*));
340 if (config
->defaults
== NULL
) return;
342 if (config
->primary
) config
->defaults
[m
++] = config
->primary
;
343 // iterate the resolvers, add any default resolvers that are not
344 // already in the list.
345 for (i
= 0; i
< count
; ++i
) {
346 dns_resolver_t
*resolver
= config
->dns
->resolver
[i
];
347 if (_mdns_resolver_get_option(resolver
, "default")) {
349 for (j
= 0; j
< m
; ++j
) {
350 if (config
->defaults
[j
] == resolver
) {
356 config
->defaults
[m
++] = resolver
;
360 config
->n_defaults
= m
;
361 // sort list by search order ascending
362 qsort(config
->defaults
, config
->n_defaults
, sizeof(dns_resolver_t
*), _mdns_compare_resolvers
);
367 _mdns_print_dns_resolver(dns_resolver_t
*resolver
)
369 printf("resolver = {\n");
370 printf("\tdomain = %s\n", resolver
->domain
);
372 for (j
= 0; j
< resolver
->n_nameserver
; ++j
) {
374 char host
[255], serv
[255];
375 res
= getnameinfo(resolver
->nameserver
[j
], resolver
->nameserver
[j
]->sa_len
, host
, sizeof(host
), serv
, sizeof(serv
), NI_NUMERICHOST
| NI_NUMERICSERV
);
377 printf("\tnameserver[%d] = %s:%s\n", j
, host
, serv
);
379 printf("\tnameserver[%d] = %s\n", j
, gai_strerror(res
));
382 printf("\tport = %d\n", resolver
->port
);
383 for (j
= 0; j
< resolver
->n_search
; ++j
) {
384 printf("\tsearch[%d] = %s\n", j
, resolver
->search
[j
]);
387 printf("\tn_sortaddr = %d\n", resolver
->n_sortaddr
);
389 printf("\toptions = %s\n", resolver
->options
);
390 printf("\ttimeout = %d\n", resolver
->timeout
);
391 printf("\tsearch_order = %d\n", resolver
->search_order
);
396 _mdns_print_dns_config(dns_config_t
*config
)
399 dns_resolver_t
**list
= _mdns_create_sorted_resolver_list(config
);
400 dns_resolver_t
**ptr
= list
;
402 _mdns_print_dns_resolver(*ptr
);
409 _mdns_print_hostent(mdns_hostent_t
* h
)
411 if (h
== NULL
) return;
412 printf("hostent[%p] = {\n", h
);
413 printf("\thost = {\n");
414 printf("\t\th_name = %s\n", h
->host
.h_name
);
415 printf("\t\th_length = %d\n", h
->host
.h_length
);
416 printf("\t\th_addrtype = %d\n", h
->host
.h_addrtype
);
417 char **alias
= h
->host
.h_aliases
;
418 while (alias
&& *alias
) {
419 printf("\t\th_aliases = %s\n", *alias
++);
421 char **addr
= h
->host
.h_addr_list
;
422 while (addr
&& *addr
) {
423 printf("\t\th_addr_list = %x\n", ntohl(*(uint32_t*)*addr
++));
426 printf("\talias_count = %d\n", h
->alias_count
);
427 printf("\taddr_count = %d\n", h
->addr_count
);
433 /* _mdns_config_retain
434 * Retain the mdns configuration.
436 static mdns_config_t
*
437 _mdns_config_retain(mdns_config_t
*config
)
441 if (config
== NULL
) return NULL
;
442 rc
= OSAtomicIncrement32Barrier(&config
->rc
);
447 /* _mdns_config_release
448 * Releases the mdns configuration structure and
449 * frees the data if no references remain.
452 _mdns_config_release(mdns_config_t
*config
)
456 if (config
== NULL
) return;
457 rc
= OSAtomicDecrement32Barrier(&config
->rc
);
460 if (config
->dns
) dns_configuration_free(config
->dns
);
461 free(config
->defaults
);
462 char **p
= config
->search_list
;
463 while (p
&& *p
) { free(*p
++); }
464 free(config
->search_list
);
469 /* _mdns_copy_system_config
470 * Retrieves DNS configuration from SystemConfiguration.framework.
471 * Checks notify notification to determine whether configuration is in need
474 static mdns_config_t
*
475 _mdns_copy_system_config(void)
477 // first call needs refresh
478 static mdns_config_t
*current_config
;
479 mdns_config_t
*config
= NULL
;
483 pthread_mutex_lock(&_mdns_mutex
);
485 // check whether the global configuration has changed
486 if (_dns_config_token
== -1) {
487 res
= notify_register_check(dns_configuration_notify_key(), &_dns_config_token
);
488 if (res
!= NOTIFY_STATUS_OK
) _dns_config_token
= -1;
491 if (_dns_config_token
!= -1) {
492 res
= notify_check(_dns_config_token
, &refresh
);
493 if (res
!= NOTIFY_STATUS_OK
) refresh
= 1;
496 // return the current configuration if still valid
498 mdns_config_t
*config
= _mdns_config_retain(current_config
);
499 pthread_mutex_unlock(&_mdns_mutex
);
503 // need to allocate a new configuration
505 config
= calloc(1, sizeof(mdns_config_t
));
506 if (config
!= NULL
) config
->dns
= dns_configuration_copy();
508 // failed to get new config, return previous config
509 if (config
== NULL
|| config
->dns
== NULL
) {
511 config
= _mdns_config_retain(current_config
);
512 pthread_mutex_unlock(&_mdns_mutex
);
517 if (config
->dns
->n_resolver
> 0) {
518 // primary resolver is always index 0 and contains the
520 config
->primary
= config
->dns
->resolver
[0];
521 config
->search_list
= _mdns_create_search_list(config
->primary
);
522 _mdns_config_init_default_resolvers(config
);
524 config
->ndots
= _mdns_resolver_get_option(config
->primary
, "ndots");
526 // promote the new configuration to current
527 _mdns_config_release(current_config
);
528 current_config
= config
;
530 // return the new configuration
531 config
= _mdns_config_retain(config
);
532 pthread_mutex_unlock(&_mdns_mutex
);
536 /* _mdns_timeout_for_name
537 * Returns the appropriate timeout for the specified name based on the
538 * sum of the timeouts of all resolvers that match the name.
541 _mdns_timeout_for_name(mdns_config_t
*config
, const char *name
)
544 uint32_t timeout
= 0;
546 if (name
== NULL
) return 0;
548 // use strncasecmp to ignore a trailing '.' in name
549 int len
= strlen(name
);
550 if ((len
- 1) >= 0 && name
[len
-1] == '.') --len
;
552 const char *p
= name
;
554 uint32_t count
= config
->dns
->n_resolver
;
555 for (i
= 0; i
< count
; ++i
) {
556 dns_resolver_t
*resolver
= config
->dns
->resolver
[i
];
557 if (resolver
->domain
== NULL
) continue;
558 if (strncasecmp(resolver
->domain
, p
, len
) == 0) {
559 timeout
+= resolver
->timeout
;
562 // discard the current label
566 if (p
[-1] == '.') break;
572 /* _mdns_query_unqualified
573 * Performs a query for the name as an unqualified name (appends each
574 * of the default resolver's domains).
577 _mdns_query_unqualified(mdns_config_t
*config
, const char *name
, uint32_t class, uint32_t type
, const char *interface
, DNSServiceFlags flags
, uint8_t *buf
, uint32_t *len
, mdns_reply_t
*reply
)
581 for (i
= 0; i
< config
->n_defaults
; ++i
) {
582 dns_resolver_t
*resolver
= config
->defaults
[i
];
585 asprintf(&qname
, "%s.%s", name
, resolver
->domain
? resolver
->domain
: "");
586 res
= _mdns_query_mDNSResponder(qname
, class, type
, interface
, flags
, buf
, len
, reply
, resolver
->timeout
);
590 else _mdns_reply_clear(reply
);
595 /* _mdns_query_absolute
596 * Performs a query for the name as an absolute name (does not qualify with any
597 * additional domains).
600 _mdns_query_absolute(mdns_config_t
*config
, const char *name
, uint32_t class, uint32_t type
, const char *interface
, DNSServiceFlags flags
, uint32_t fqdn
, uint8_t *buf
, uint32_t *len
, mdns_reply_t
*reply
)
603 char *qname
= (char *)name
;
605 uint32_t timeout
= _mdns_timeout_for_name(config
, name
);
607 if (fqdn
== 0) asprintf(&qname
, "%s.", name
);
608 res
= _mdns_query_mDNSResponder(qname
, class, type
, interface
, flags
, buf
, len
, reply
, timeout
);
609 if (fqdn
== 0) free(qname
);
610 if (res
!= 0) _mdns_reply_clear(reply
);
615 _mdns_search(const char *name
, uint32_t class, uint32_t type
, const char *interface
, DNSServiceFlags flags
, uint32_t fqdn
, uint32_t recurse
, uint8_t *buf
, uint32_t *len
, mdns_reply_t
*reply
)
621 if (name
== NULL
) return -1;
623 mdns_config_t
*config
= _mdns_copy_system_config();
624 if (config
== NULL
) return -1;
626 // NDOTS is the threshold for trying a qualified name "as is"
627 ndots
= config
->ndots
;
628 if (ndots
== 0) ndots
= 1;
630 // count the dots, and remember position of the last one
633 for (i
= 0; name
[i
] != '\0'; i
++) {
634 if (name
[i
] == '.') {
636 dot
= (char *)(name
+ i
);
639 // FQDN has dot for last character
640 if (fqdn
== 0 && dot
!= NULL
&& dot
[1] == '\0') fqdn
= 1;
642 // if the name has at least ndots, try first as an absolute query.
643 // FQDN and PTR queries are always absolute.
644 if (n
>= ndots
|| fqdn
== 1 || type
== ns_t_ptr
) {
645 res
= _mdns_query_absolute(config
, name
, class, type
, interface
, flags
, fqdn
, buf
, len
, reply
);
647 _mdns_config_release(config
);
652 // stop if FQDN, PTR, or no recursion requested
653 if (fqdn
== 1 || type
== ns_t_ptr
|| recurse
== 0) {
654 _mdns_config_release(config
);
658 // Qualify the name with each of the search domains looking for a match.
659 char **search
= config
->search_list
;
660 if (search
!= NULL
) {
662 for (i
= 0; i
< MAXDNSRCH
&& search
[i
] != NULL
; ++i
) {
664 asprintf(&qname
, "%s.%s", name
, search
[i
]);
665 res
= _mdns_search(qname
, class, type
, interface
, flags
, 0, 0, buf
, len
, reply
);
670 // The name is not fully qualified and there is no search list.
671 // Try each default resolver, qualifying the name with that
672 // resolver's domain.
673 res
= _mdns_query_unqualified(config
, name
, class, type
, interface
, flags
, buf
, len
, reply
);
675 _mdns_config_release(config
);
680 _mdns_reverse_ipv4(const char *addr
)
689 if (addr
== NULL
) return NULL
;
691 memcpy(&(ab
.a
), addr
, 4);
693 asprintf(&p
, "%u.%u.%u.%u.in-addr.arpa.", ab
.b
[3], ab
.b
[2], ab
.b
[1], ab
.b
[0]);
698 _mdns_reverse_ipv6(const char *addr
)
704 if (addr
== NULL
) return NULL
;
708 for (i
= 0; i
< 16; i
++)
714 x
[j
--] = hexchar
[hi
];
716 x
[j
--] = hexchar
[lo
];
719 asprintf(&p
, "%sip6.arpa.", x
);
724 /* _mdns_canonicalize
725 * Canonicalize the domain name by converting to lower case and removing the
726 * trailing '.' if present.
729 _mdns_canonicalize(const char *s
)
733 if (s
== NULL
) return NULL
;
735 if (t
== NULL
) return NULL
;
736 if (t
[0] == '\0') return t
;
737 for (i
= 0; t
[i
] != '\0'; i
++) {
738 if (t
[i
] >= 'A' && t
[i
] <= 'Z') t
[i
] += 32;
740 if (t
[i
-1] == '.') t
[i
-1] = '\0';
744 /* _mdns_hostent_append_alias
745 * Appends an alias to the mdns_hostent_t structure.
748 _mdns_hostent_append_alias(mdns_hostent_t
*h
, const char *alias
)
752 if (h
== NULL
|| alias
== NULL
) return 0;
753 name
= _mdns_canonicalize(alias
);
754 if (name
== NULL
) return -1;
756 // don't add the name if it matches an existing name
757 if (h
->host
.h_name
&& string_equal(h
->host
.h_name
, name
)) {
761 for (i
= 0; i
< h
->alias_count
; ++i
) {
762 if (string_equal(h
->host
.h_aliases
[i
], name
)) {
768 // add the alias and NULL terminate the list
769 h
->host
.h_aliases
= (char **)reallocf(h
->host
.h_aliases
, (h
->alias_count
+2) * sizeof(char *));
770 if (h
->host
.h_aliases
== NULL
) {
775 h
->host
.h_aliases
[h
->alias_count
] = name
;
777 h
->host
.h_aliases
[h
->alias_count
] = NULL
;
781 /* _mdns_hostent_append_addr
782 * Appends an alias to the mdns_hostent_t structure.
785 _mdns_hostent_append_addr(mdns_hostent_t
*h
, const uint8_t *addr
, uint32_t len
)
787 if (h
== NULL
|| addr
== NULL
|| len
== 0) return 0;
789 // copy the address buffer
790 uint8_t *buf
= malloc(len
);
791 if (buf
== NULL
) return -1;
792 memcpy(buf
, addr
, len
);
794 // add the address and NULL terminate the list
795 h
->host
.h_addr_list
= (char **)reallocf(h
->host
.h_addr_list
, (h
->addr_count
+2) * sizeof(char *));
796 if (h
->host
.h_addr_list
== NULL
) {
800 h
->host
.h_addr_list
[h
->addr_count
] = (char*)buf
;
802 h
->host
.h_addr_list
[h
->addr_count
] = NULL
;
807 _mdns_hostent_clear(mdns_hostent_t
*h
)
809 if (h
== NULL
) return;
810 free(h
->host
.h_name
);
811 h
->host
.h_name
= NULL
;
813 char **aliases
= h
->host
.h_aliases
;
814 while (aliases
&& *aliases
) {
817 free(h
->host
.h_aliases
);
818 h
->host
.h_aliases
= NULL
;
821 char **addrs
= h
->host
.h_addr_list
;
822 while (addrs
&& *addrs
) {
825 free(h
->host
.h_addr_list
);
826 h
->host
.h_addr_list
= NULL
;
832 _mdns_reply_clear(mdns_reply_t
*r
)
834 if (r
== NULL
) return;
836 _mdns_hostent_clear(r
->h4
);
837 _mdns_hostent_clear(r
->h6
);
838 mdns_srv_t
*srv
= r
->srv
;
841 mdns_srv_t
*next
= srv
->next
;
842 free(srv
->srv
.target
);
849 _mdns_hostbyname(si_mod_t
*si
, const char *name
, int af
, const char *interface
, uint32_t *err
)
854 si_item_t
*out
= NULL
;
857 DNSServiceFlags flags
= 0;
859 if (err
!= NULL
) *err
= SI_STATUS_NO_ERROR
;
862 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
866 memset(&h
, 0, sizeof(h
));
867 memset(&reply
, 0, sizeof(reply
));
877 h
.host
.h_length
= 16;
881 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
884 h
.host
.h_addrtype
= af
;
886 status
= _mdns_search(name
, ns_c_in
, type
, interface
, flags
, 0, 1, NULL
, NULL
, &reply
);
887 if (status
!= 0 || h
.addr_count
== 0) {
888 _mdns_reply_clear(&reply
);
889 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_HOST_NOT_FOUND
;
893 bb
= reply
.ttl
+ time(NULL
);
897 out
= (si_item_t
*)LI_ils_create("L4488s*44a", (unsigned long)si
, CATEGORY_HOST_IPV4
, 1, bb
, 0LL, h
.host
.h_name
, h
.host
.h_aliases
, h
.host
.h_addrtype
, h
.host
.h_length
, h
.host
.h_addr_list
);
900 out
= (si_item_t
*)LI_ils_create("L4488s*44c", (unsigned long)si
, CATEGORY_HOST_IPV6
, 1, bb
, 0LL, h
.host
.h_name
, h
.host
.h_aliases
, h
.host
.h_addrtype
, h
.host
.h_length
, h
.host
.h_addr_list
);
904 _mdns_reply_clear(&reply
);
906 if (out
== NULL
&& err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
912 _mdns_hostbyaddr(si_mod_t
*si
, const void *addr
, int af
, const char *interface
, uint32_t *err
)
921 DNSServiceFlags flags
= 0;
923 if (err
!= NULL
) *err
= SI_STATUS_NO_ERROR
;
925 if (addr
== NULL
|| si
== NULL
) {
926 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
930 memset(&h
, 0, sizeof(h
));
931 memset(&reply
, 0, sizeof(reply
));
937 name
= _mdns_reverse_ipv4(addr
);
938 cat
= CATEGORY_HOST_IPV4
;
941 h
.host
.h_length
= 16;
943 name
= _mdns_reverse_ipv6(addr
);
944 cat
= CATEGORY_HOST_IPV6
;
947 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
950 h
.host
.h_addrtype
= af
;
952 status
= _mdns_search(name
, ns_c_in
, ns_t_ptr
, interface
, flags
, 0, 1, NULL
, NULL
, &reply
);
955 _mdns_reply_clear(&reply
);
956 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_HOST_NOT_FOUND
;
960 status
= _mdns_hostent_append_addr(&h
, addr
, h
.host
.h_length
);
962 _mdns_hostent_clear(&h
);
963 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
967 bb
= reply
.ttl
+ time(NULL
);
968 out
= (si_item_t
*)LI_ils_create("L4488s*44a", (unsigned long)si
, cat
, 1, bb
, 0LL, h
.host
.h_name
, h
.host
.h_aliases
, h
.host
.h_addrtype
, h
.host
.h_length
, h
.host
.h_addr_list
);
970 _mdns_hostent_clear(&h
);
972 if (out
== NULL
&& err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
977 _mdns_addrinfo(si_mod_t
*si
, const void *node
, const void *serv
, uint32_t family
, uint32_t socktype
, uint32_t proto
, uint32_t flags
, const char *interface
, uint32_t *err
)
981 if (family
== AF_INET6
) wantv4
= 0;
982 else if (family
== AF_INET
) wantv6
= 0;
983 else if (family
!= AF_UNSPEC
) return NULL
;
993 if (err
!= NULL
) *err
= SI_STATUS_NO_ERROR
;
995 si_list_t
*out
= NULL
;
997 memset(&h4
, 0, sizeof(h4
));
998 memset(&h6
, 0, sizeof(h6
));
999 memset(&reply
, 0, sizeof(reply
));
1001 h4
.host
.h_addrtype
= AF_INET
;
1002 h4
.host
.h_length
= 4;
1003 h6
.host
.h_addrtype
= AF_INET6
;
1004 h6
.host
.h_length
= 16;
1006 if (wantv4
&& wantv6
) {
1010 } else if (wantv4
) {
1013 } else if (wantv6
) {
1017 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
1022 if ((flags
& AI_NUMERICSERV
) != 0) {
1023 port
= *(uint16_t *)serv
;
1025 if (_gai_serv_to_port(serv
, proto
, &port
) != 0) {
1026 if (err
) *err
= SI_STATUS_EAI_NONAME
;
1032 if ((flags
& AI_NUMERICHOST
) != 0) {
1034 struct in_addr
*p4
= NULL
;
1035 struct in6_addr
*p6
= NULL
;
1036 if (family
== AF_INET
) {
1038 memcpy(p4
, node
, sizeof(a4
));
1039 } else if (family
== AF_INET6
) {
1041 memcpy(p6
, node
, sizeof(a6
));
1043 out
= si_addrinfo_list(si
, socktype
, proto
, p4
, p6
, port
, 0, cname
, cname
);
1045 DNSServiceFlags dns_flags
= 0;
1046 if (flags
& AI_ADDRCONFIG
) {
1047 dns_flags
|= kDNSServiceFlagsSuppressUnusable
;
1050 res
= _mdns_search(node
, ns_c_in
, type
, interface
, dns_flags
, 0, 1, NULL
, NULL
, &reply
);
1051 if (res
== 0 && (h4
.addr_count
> 0 || h6
.addr_count
> 0)) {
1052 out
= si_addrinfo_list_from_hostent(si
, socktype
, proto
,
1054 (wantv4
? &h4
.host
: NULL
),
1055 (wantv6
? &h6
.host
: NULL
));
1056 } else if (err
!= NULL
) {
1057 *err
= SI_STATUS_EAI_NONAME
;
1059 _mdns_reply_clear(&reply
);
1065 _mdns_srv_byname(si_mod_t
* si
, const char *qname
, const char *interface
, uint32_t *err
)
1067 si_list_t
*out
= NULL
;
1071 const uint64_t unused
= 0;
1072 DNSServiceFlags flags
= 0;
1074 if (err
!= NULL
) *err
= SI_STATUS_NO_ERROR
;
1076 memset(&reply
, 0, sizeof(reply
));
1077 res
= _mdns_search(qname
, ns_c_in
, ns_t_srv
, interface
, flags
, 0, 1, NULL
, NULL
, &reply
);
1082 item
= (si_item_t
*)LI_ils_create("L4488222s", (unsigned long)si
, CATEGORY_SRV
, 1, unused
, unused
, srv
->srv
.priority
, srv
->srv
.weight
, srv
->srv
.port
, srv
->srv
.target
);
1083 out
= si_list_add(out
, item
);
1084 si_item_release(item
);
1088 _mdns_reply_clear(&reply
);
1093 * We support dns_async_start / cancel / handle_reply using dns_item_call
1096 _mdns_item_call(si_mod_t
*si
, int call
, const char *name
, const char *ignored
, const char *interface
, uint32_t class, uint32_t type
, uint32_t *err
)
1099 uint8_t buf
[DNS_MAX_RECEIVE_SIZE
];
1100 uint32_t len
= sizeof(buf
);
1106 DNSServiceFlags flags
= 0;
1108 if (err
!= NULL
) *err
= SI_STATUS_NO_ERROR
;
1111 case SI_CALL_DNS_QUERY
:
1114 case SI_CALL_DNS_SEARCH
:
1117 if (err
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
1123 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
1127 memset(&h4
, 0, sizeof(h4
));
1128 memset(&h6
, 0, sizeof(h6
));
1129 memset(&reply
, 0, sizeof(reply
));
1131 h4
.host
.h_addrtype
= AF_INET
;
1132 h4
.host
.h_length
= 4;
1133 h6
.host
.h_addrtype
= AF_INET6
;
1134 h6
.host
.h_length
= 16;
1138 res
= _mdns_search(name
, class, type
, interface
, flags
, norecurse
, 1, buf
, &len
, &reply
);
1139 if (res
!= 0 || len
<= 0 || len
> DNS_MAX_RECEIVE_SIZE
) {
1140 _mdns_reply_clear(&reply
);
1141 if (err
!= NULL
) *err
= SI_STATUS_H_ERRNO_HOST_NOT_FOUND
;
1145 struct sockaddr_in6 from
;
1146 uint32_t fromlen
= sizeof(from
);
1147 memset(&from
, 0, fromlen
);
1148 from
.sin6_len
= fromlen
;
1149 from
.sin6_family
= AF_INET6
;
1150 from
.sin6_addr
.__u6_addr
.__u6_addr8
[15] = 1;
1151 if (reply
.ifnum
!= 0) {
1152 from
.sin6_addr
.__u6_addr
.__u6_addr16
[0] = htons(0xfe80);
1153 from
.sin6_scope_id
= reply
.ifnum
;
1156 out
= (si_item_t
*)LI_ils_create("L4488@@", (unsigned long)si
, CATEGORY_DNSPACKET
, 1, 0LL, 0LL, len
, buf
, fromlen
, &from
);
1157 if (out
== NULL
&& err
!= NULL
) *err
= SI_STATUS_H_ERRNO_NO_RECOVERY
;
1159 _mdns_reply_clear(&reply
);
1165 _mdns_is_valid(si_mod_t
*si
, si_item_t
*item
)
1171 _mdns_close(si_mod_t
*si
)
1173 if (_dns_config_token
!= -1) notify_cancel(_dns_config_token
);
1178 _mdns_atfork_prepare(void)
1180 // acquire our lock so that we know all other threads have "drained"
1181 pthread_mutex_lock(&_mdns_mutex
);
1185 _mdns_atfork_parent(void)
1187 // parent can simply resume
1188 pthread_mutex_unlock(&_mdns_mutex
);
1192 _mdns_atfork_child(void)
1194 // child needs to force re-initialization
1195 _mdns_old_sdref
= _mdns_sdref
; // for later deallocation
1197 _dns_config_token
= -1;
1198 pthread_mutex_unlock(&_mdns_mutex
);
1201 __private_extern__ si_mod_t
*
1202 si_module_static_mdns(void)
1204 si_mod_t
*out
= (si_mod_t
*)calloc(1, sizeof(si_mod_t
));
1205 char *outname
= strdup("mdns");
1207 if ((out
== NULL
) || (outname
== NULL
))
1214 out
->name
= outname
;
1217 out
->private = NULL
;
1219 out
->sim_close
= _mdns_close
;
1220 out
->sim_is_valid
= _mdns_is_valid
;
1221 out
->sim_host_byname
= _mdns_hostbyname
;
1222 out
->sim_host_byaddr
= _mdns_hostbyaddr
;
1223 out
->sim_item_call
= _mdns_item_call
;
1224 out
->sim_addrinfo
= _mdns_addrinfo
;
1225 out
->sim_srv_byname
= _mdns_srv_byname
;
1229 res
= notify_register_check(dns_configuration_notify_key(), &_dns_config_token
);
1230 if (res
!= NOTIFY_STATUS_OK
) _dns_config_token
= -1;
1232 pthread_atfork(_mdns_atfork_prepare
, _mdns_atfork_parent
, _mdns_atfork_child
);
1234 _mdns_debug
= getenv("RES_DEBUG") != NULL
;
1240 * _mdns_parse_domain_name
1241 * Combine DNS labels to form a string.
1242 * DNSService API does not return compressed names.
1245 _mdns_parse_domain_name(const uint8_t *data
, uint32_t datalen
)
1249 uint32_t domainlen
= 0;
1250 char *domain
= NULL
;
1252 if ((data
== NULL
) || (datalen
== 0)) return NULL
;
1254 // i: index into input data
1255 // j: index into output string
1256 while (datalen
-- > 0) {
1258 domainlen
+= (len
+ 1);
1259 domain
= reallocf(domain
, domainlen
);
1260 if (domain
== NULL
) return NULL
;
1261 if (len
== 0) break; // DNS root (NUL)
1263 domain
[j
++] = datalen
? '.' : '\0';
1266 while ((len
-- > 0) && (datalen
--)) {
1267 if (data
[i
] == '.') {
1268 // special case: escape the '.' with a '\'
1269 domain
= reallocf(domain
, ++domainlen
);
1270 if (domain
== NULL
) return NULL
;
1273 domain
[j
++] = data
[i
++];
1282 * _mdns_pack_domain_name
1283 * Format the string as packed DNS labels.
1284 * Only used for one string at a time, therefore no need for compression.
1287 _mdns_pack_domain_name(const char* str
, uint8_t *buf
, size_t buflen
) {
1289 while (i
< buflen
) {
1291 // calculate length to next '.' or '\0'
1292 char *dot
= strchr(str
, '.');
1293 if (dot
== NULL
) dot
= strchr(str
, '\0');
1295 if (len
> NS_MAXLABEL
) return -1;
1296 // copy data for label
1301 // skip past '.', break if '\0'
1302 if (*str
++ == '\0') break;
1304 if (i
>= buflen
) return -1;
1310 _is_rev_link_local(const char *name
)
1314 if (name
== NULL
) return 0;
1317 if (len
== 0) return 0;
1319 /* check for trailing '.' */
1320 if (name
[len
- 1] == '.') len
--;
1322 if (len
!= IPv6_REVERSE_LEN
) return 0;
1324 i
= IPv6_REVERSE_LINK_LOCAL_TRAILING_CHAR
;
1325 if ((name
[i
] != '8') && (name
[i
] != '9') && (name
[i
] != 'A') && (name
[i
] != 'a') && (name
[i
] != 'B') && (name
[i
] != 'b')) return 0;
1327 i
= IPv6_REVERSE_LINK_LOCAL_TRAILING_CHAR
+ 1;
1328 if (strncasecmp(name
+ i
, ".e.f.ip6.arpa", 13)) return 0;
1330 for (i
= 0; i
< IPv6_REVERSE_LINK_LOCAL_TRAILING_CHAR
; i
+= 2)
1332 if (name
[i
] < '0') return 0;
1333 if ((name
[i
] > '9') && (name
[i
] < 'A')) return 0;
1334 if ((name
[i
] > 'F') && (name
[i
] < 'a')) return 0;
1335 if (name
[i
] > 'f') return 0;
1336 if (name
[i
+ 1] != '.') return 0;
1342 /* _mdns_ipv6_extract_scope_id
1343 * If the input string is a link local IPv6 address with an encoded scope id,
1344 * the scope id is extracted and a new string is constructed with the scope id removed.
1347 _mdns_ipv6_extract_scope_id(const char *name
, uint32_t *out_ifnum
)
1354 if (out_ifnum
!= NULL
) *out_ifnum
= 0;
1356 /* examine the address, extract the scope id if present */
1357 if ((name
!= NULL
) && (_is_rev_link_local(name
)))
1359 /* _is_rev_link_local rejects chars > 127 so it's safe to index into hexval */
1360 i
= IPv6_REVERSE_LINK_LOCAL_SCOPE_ID_LOW
;
1361 nibble
= hexval
[(uint32_t)name
[i
]];
1365 nibble
= hexval
[(uint32_t)name
[i
]];
1366 iface
+= (nibble
<< 4);
1369 nibble
= hexval
[(uint32_t)name
[i
]];
1370 iface
+= (nibble
<< 8);
1373 nibble
= hexval
[(uint32_t)name
[i
]];
1374 iface
+= (nibble
<< 12);
1378 qname
= strdup(name
);
1379 if (qname
== NULL
) return NULL
;
1381 i
= IPv6_REVERSE_LINK_LOCAL_SCOPE_ID_LOW
;
1387 if (out_ifnum
) *out_ifnum
= iface
;
1395 _mdns_make_query(const char* name
, int class, int type
, uint8_t *buf
, uint32_t buflen
)
1399 if (buf
== NULL
|| buflen
< (NS_HFIXEDSZ
+ NS_QFIXEDSZ
)) return -1;
1400 memset(buf
, 0, NS_HFIXEDSZ
);
1401 HEADER
*hp
= (HEADER
*)buf
;
1404 hp
->id
= arc4random();
1406 hp
->opcode
= ns_o_query
;
1408 hp
->rcode
= ns_r_noerror
;
1409 hp
->qdcount
= htons(1);
1411 int n
= _mdns_pack_domain_name(name
, &buf
[len
], buflen
- len
);
1412 if (n
< 0) return -1;
1417 memcpy(&buf
[len
], &word
, sizeof(word
));
1418 len
+= sizeof(word
);
1419 word
= htons(class);
1420 memcpy(&buf
[len
], &word
, sizeof(word
));
1421 len
+= sizeof(word
);
1426 mdns_reply_t
*reply
;
1427 mdns_hostent_t
*host
;
1428 uint8_t *answer
; // DNS packet buffer
1429 size_t anslen
; // DNS packet buffer current length
1430 size_t ansmaxlen
; // DNS packet buffer maximum length
1431 int type
; // type of query: A, AAAA, PTR, SRV...
1432 uint16_t last_type
; // last type received
1435 DNSServiceFlags flags
;
1436 DNSServiceErrorType error
;
1437 int kq
; // kqueue to notify when callback received
1438 } mdns_query_context_t
;
1441 _mdns_query_callback(DNSServiceRef
, DNSServiceFlags
, uint32_t, DNSServiceErrorType
, const char *, uint16_t, uint16_t, uint16_t, const void *, uint32_t, void *);
1443 /* _mdns_query_start
1444 * initializes the context and starts a DNS-SD query.
1446 static DNSServiceErrorType
1447 _mdns_query_start(mdns_query_context_t
*ctx
, mdns_reply_t
*reply
, uint8_t *answer
, uint32_t *anslen
, const char* name
, int class, int type
, const char *interface
, DNSServiceFlags flags
, int kq
)
1449 DNSServiceErrorType status
;
1451 flags
|= kDNSServiceFlagsShareConnection
;
1452 flags
|= kDNSServiceFlagsReturnIntermediates
;
1454 memset(ctx
, 0, sizeof(mdns_query_context_t
));
1456 if (answer
&& anslen
) {
1457 // build a dummy DNS header to return to the caller
1458 ctx
->answer
= answer
;
1459 ctx
->ansmaxlen
= *anslen
;
1460 ctx
->anslen
= _mdns_make_query(name
, class, type
, answer
, ctx
->ansmaxlen
);
1461 if (ctx
->anslen
<= 0) return -1;
1465 ctx
->sd
= _mdns_sdref
;
1466 ctx
->sd_gen
= _mdns_generation
;
1470 if (type
== ns_t_a
) ctx
->host
= reply
->h4
;
1471 else if (type
== ns_t_aaaa
) ctx
->host
= reply
->h6
;
1472 else if (type
== ns_t_ptr
&& reply
->h4
) ctx
->host
= reply
->h4
;
1473 else if (type
== ns_t_ptr
&& reply
->h6
) ctx
->host
= reply
->h6
;
1474 else if (type
!= ns_t_srv
&& type
!= ns_t_cname
) abort();
1478 char *qname
= _mdns_ipv6_extract_scope_id(name
, &iface
);
1479 if (qname
== NULL
) qname
= (char *)name
;
1481 if (interface
!= NULL
)
1483 /* get interface number from name */
1484 int iface2
= if_nametoindex(interface
);
1486 /* balk if interface name lookup failed */
1487 if (iface2
== 0) return -1;
1489 /* balk if scope id is set AND interface is given AND they don't match */
1490 if ((iface
!= 0) && (iface2
!= 0) && (iface
!= iface2
)) return -1;
1491 if (iface2
!= 0) iface
= iface2
;
1494 if (_mdns_debug
) printf(";; mdns query %s %d %d\n", qname
, type
, class);
1495 status
= DNSServiceQueryRecord(&ctx
->sd
, flags
, iface
, qname
, type
, class, _mdns_query_callback
, ctx
);
1496 if (qname
!= name
) free(qname
);
1500 /* _mdns_query_is_complete
1501 * Determines whether the specified query has sufficient information to be
1502 * considered complete.
1505 _mdns_query_is_complete(mdns_query_context_t
*ctx
)
1507 if (ctx
== NULL
) return 1;
1508 //if (ctx->flags & kDNSServiceFlagsMoreComing) return 0;
1509 if (ctx
->last_type
!= ctx
->type
) return 0;
1510 switch (ctx
->type
) {
1513 if (ctx
->host
!= NULL
&& ctx
->host
->addr_count
> 0) {
1518 if (ctx
->host
!= NULL
&& ctx
->host
->host
.h_name
!= NULL
) {
1523 if (ctx
->reply
!= NULL
&& ctx
->reply
->srv
!= NULL
) {
1533 /* _mdns_query_clear
1534 * Clear out the temporary fields of the context, and clear any result
1535 * structures that are incomplete. Retrns 1 if the query was complete.
1538 _mdns_query_clear(mdns_query_context_t
*ctx
)
1540 int complete
= _mdns_query_is_complete(ctx
);
1541 if (ctx
== NULL
) return complete
;
1543 /* only dealloc this DNSServiceRef if the "main" _mdns_sdref has not been deallocated */
1544 if (ctx
->sd
!= NULL
&& ctx
->sd_gen
== _mdns_generation
) {
1545 DNSServiceRefDeallocate(ctx
->sd
);
1554 _mdns_hostent_clear(ctx
->host
);
1561 _mdns_query_callback(DNSServiceRef sdRef
, DNSServiceFlags flags
, uint32_t ifIndex
, DNSServiceErrorType errorCode
, const char *fullname
, uint16_t rrtype
, uint16_t rrclass
, uint16_t rdlen
, const void *rdata
, uint32_t ttl
, void *ctx
)
1563 mdns_query_context_t
*context
;
1566 context
= (mdns_query_context_t
*)ctx
;
1568 context
->flags
= flags
;
1569 context
->error
= errorCode
;
1570 context
->last_type
= rrtype
;
1572 if (errorCode
!= kDNSServiceErr_NoError
) {
1573 if (_mdns_debug
) printf(";; [%s %hu %hu]: error %d\n", fullname
, rrtype
, rrclass
, errorCode
);
1577 // embed the scope ID into link-local IPv6 addresses
1578 if (rrtype
== ns_t_aaaa
&& rdlen
== sizeof(struct in6_addr
) &&
1579 IN6_IS_ADDR_LINKLOCAL((struct in6_addr
*)rdata
)) {
1580 memcpy(&a6
, rdata
, rdlen
);
1581 a6
.__u6_addr
.__u6_addr16
[1] = htons(ifIndex
);
1585 if (context
->reply
) {
1588 mdns_reply_t
*reply
= context
->reply
;
1590 if (reply
->ifnum
== 0) {
1591 reply
->ifnum
= ifIndex
;
1594 _mdns_hostent_append_alias(context
->host
, fullname
);
1595 if (reply
->ttl
== 0 || ttl
< reply
->ttl
) reply
->ttl
= ttl
;
1600 if (((rrtype
== ns_t_a
&& context
->host
->host
.h_addrtype
== AF_INET
) ||
1601 (rrtype
== ns_t_aaaa
&& context
->host
->host
.h_addrtype
== AF_INET6
)) &&
1602 rdlen
>= context
->host
->host
.h_length
) {
1603 if (context
->host
->host
.h_name
== NULL
) {
1605 mdns_hostent_t
*h
= context
->host
;
1606 char *h_name
= _mdns_canonicalize(fullname
);
1607 context
->host
->host
.h_name
= h_name
;
1609 // 6863416 remove h_name from h_aliases
1610 for (i
= 0; i
< h
->alias_count
; ++i
) {
1611 if (h_name
== NULL
) break;
1612 if (string_equal(h
->host
.h_aliases
[i
], h_name
)) {
1613 // includes trailing NULL pointer
1614 int sz
= sizeof(char *) * (h
->alias_count
- i
);
1615 free(h
->host
.h_aliases
[i
]);
1616 memmove(&h
->host
.h_aliases
[i
], &h
->host
.h_aliases
[i
+1], sz
);
1617 h
->alias_count
-= 1;
1622 _mdns_hostent_append_addr(context
->host
, rdata
, context
->host
->host
.h_length
);
1628 name
= _mdns_parse_domain_name(rdata
, rdlen
);
1629 if (!name
) malformed
= 1;
1630 _mdns_hostent_append_alias(context
->host
, name
);
1634 name
= _mdns_parse_domain_name(rdata
, rdlen
);
1635 if (!name
) malformed
= 1;
1636 if (context
->host
&& context
->host
->host
.h_name
== NULL
) {
1637 context
->host
->host
.h_name
= _mdns_canonicalize(name
);
1639 _mdns_hostent_append_alias(context
->host
, name
);
1643 mdns_rr_srv_t
*p
= (mdns_rr_srv_t
*)rdata
;
1644 mdns_srv_t
*srv
= calloc(1, sizeof(mdns_srv_t
));
1645 if (srv
== NULL
) break;
1646 if (rdlen
< sizeof(mdns_rr_srv_t
)) {
1650 srv
->srv
.priority
= ntohs(p
->priority
);
1651 srv
->srv
.weight
= ntohs(p
->weight
);
1652 srv
->srv
.port
= ntohs(p
->port
);
1653 srv
->srv
.target
= _mdns_parse_domain_name(&p
->target
[0], rdlen
- 3*sizeof(uint16_t));
1654 if (srv
->srv
.target
== NULL
) {
1658 // append to the end of the list
1659 if (reply
->srv
== NULL
) {
1662 mdns_srv_t
*iter
= reply
->srv
;
1663 while (iter
->next
) iter
= iter
->next
;
1669 malformed
= _mdns_debug
;
1672 if (malformed
&& _mdns_debug
) {
1673 printf(";; [%s %hu %hu]: malformed reply\n", fullname
, rrtype
, rrclass
);
1678 if (context
->answer
) {
1682 size_t buflen
= context
->ansmaxlen
- context
->anslen
;
1683 if (buflen
< NS_HFIXEDSZ
)
1685 if (_mdns_debug
) printf(";; [%s %hu %hu]: malformed reply\n", fullname
, rrtype
, rrclass
);
1689 cp
= context
->answer
+ context
->anslen
;
1691 n
= _mdns_pack_domain_name(fullname
, cp
, buflen
);
1693 if (_mdns_debug
) printf(";; [%s %hu %hu]: name mismatch\n", fullname
, rrtype
, rrclass
);
1697 // check that there is enough space in the buffer for the
1698 // resource name (n), the resource record data (rdlen) and
1699 // the resource record header (10).
1700 if (buflen
< n
+ rdlen
+ 10) {
1701 if (_mdns_debug
) printf(";; [%s %hu %hu]: insufficient buffer space for reply\n", fullname
, rrtype
, rrclass
);
1711 word
= htons(rrtype
);
1712 memcpy(cp
, &word
, sizeof(word
));
1715 word
= htons(rrclass
);
1716 memcpy(cp
, &word
, sizeof(word
));
1719 longword
= htonl(ttl
);
1720 memcpy(cp
, &longword
, sizeof(longword
));
1721 cp
+= sizeof(longword
);
1723 word
= htons(rdlen
);
1724 memcpy(cp
, &word
, sizeof(word
));
1727 memcpy(cp
, rdata
, rdlen
);
1730 ans
= (HEADER
*)context
->answer
;
1731 ans
->ancount
= htons(ntohs(ans
->ancount
) + 1);
1733 context
->anslen
= (size_t)(cp
- context
->answer
);
1736 if (_mdns_debug
) printf(";; [%s %hu %hu]\n", fullname
, rrtype
, rrclass
);
1739 // Ping the waiting thread in case this callback was invoked on another
1740 if (context
->kq
!= -1) {
1742 EV_SET(&ev
, 1, EVFILT_USER
, 0, NOTE_TRIGGER
, 0, 0);
1743 int res
= kevent(context
->kq
, &ev
, 1, NULL
, 0, NULL
);
1744 if (res
&& _mdns_debug
) printf(";; kevent EV_TRIGGER: %s\n", strerror(errno
));
1749 _mdns_now(struct timespec
*now
) {
1751 gettimeofday(&tv
, NULL
);
1752 now
->tv_sec
= tv
.tv_sec
;
1753 now
->tv_nsec
= tv
.tv_usec
* 1000;
1757 _mdns_add_time(struct timespec
*sum
, const struct timespec
*a
, const struct timespec
*b
)
1759 sum
->tv_sec
= a
->tv_sec
+ b
->tv_sec
;
1760 sum
->tv_nsec
= a
->tv_nsec
+ b
->tv_nsec
;
1761 if (sum
->tv_nsec
> 1000000000) {
1762 sum
->tv_sec
+= (sum
->tv_nsec
/ 1000000000);
1763 sum
->tv_nsec
%= 1000000000;
1767 // calculate a deadline from the current time based on the desired timeout
1769 _mdns_deadline(struct timespec
*deadline
, const struct timespec
*delta
)
1771 struct timespec now
;
1773 _mdns_add_time(deadline
, &now
, delta
);
1777 _mdns_sub_time(struct timespec
*delta
, const struct timespec
*a
, const struct timespec
*b
)
1779 delta
->tv_sec
= a
->tv_sec
- b
->tv_sec
;
1780 delta
->tv_nsec
= a
->tv_nsec
- b
->tv_nsec
;
1781 if (delta
->tv_nsec
< 0) {
1782 delta
->tv_nsec
+= 1000000000;
1787 // calculate a timeout remaining before the given deadline
1789 _mdns_timeout(struct timespec
*timeout
, const struct timespec
*deadline
)
1791 struct timespec now
;
1793 _mdns_sub_time(timeout
, deadline
, &now
);
1797 _mdns_query_mDNSResponder(const char *name
, int class, int type
, const char *interface
, DNSServiceFlags flags
, uint8_t *answer
, uint32_t *anslen
, mdns_reply_t
*reply
, uint32_t timeout_sec
)
1799 DNSServiceErrorType err
= 0;
1800 int kq
, n
, wait
= 1;
1802 struct timespec start
, finish
, delta
, timeout
;
1804 int i
, complete
, got_a_response
= 0;
1806 uint32_t n_iface_4
= 0;
1808 // determine number of IPv4 interfaces (ignore loopback)
1809 si_inet_config(&n_iface_4
, NULL
);
1810 if (n_iface_4
> 0) n_iface_4
--;
1812 // 2 for A and AAAA parallel queries
1814 mdns_query_context_t ctx
[2];
1816 if (name
== NULL
) return -1;
1818 #if TARGET_OS_EMBEDDED
1819 // log a warning for queries from the main thread
1820 if (pthread_main_np()) asl_log(NULL
, NULL
, ASL_LEVEL_WARNING
, "Warning: Libinfo call to mDNSResponder on main thread");
1821 #endif // TARGET_OS_EMBEDDED
1824 // The kevent(2) API timeout parameter is used to enforce the total
1825 // timeout of the DNS query. Each iteraion recalculates the relative
1826 // timeout based on the desired end time (total timeout from origin).
1828 // In order to workaround some DNS configurations that do not return
1829 // responses for AAAA queries, parallel queries modify the total
1830 // timeout upon receipt of the first response. The new total timeout is
1831 // set to an effective value of 2N where N is the time taken to receive
1832 // the A response (the original total timeout is preserved if 2N would
1833 // have exceeded it). However, since mDNSResponder caches values, a
1834 // minimum value of 50ms for N is enforced in order to give some time
1835 // for the receipt of a AAAA response.
1837 // determine the maximum time to wait for a result
1838 if (timeout_sec
== 0) timeout_sec
= RES_MAXRETRANS
;
1839 delta
.tv_sec
= timeout_sec
;
1841 _mdns_deadline(&finish
, &delta
);
1845 for (i
= 0; i
< 2; ++i
) {
1846 memset(&ctx
[i
], 0 , sizeof(mdns_query_context_t
));
1849 // set up the kqueue
1851 EV_SET(&ev
, 1, EVFILT_USER
, EV_ADD
| EV_CLEAR
, 0, 0, 0);
1852 n
= kevent(kq
, &ev
, 1, NULL
, 0, NULL
);
1853 if (n
!= 0) wait
= 0;
1858 pthread_mutex_lock(&_mdns_mutex
);
1859 // clear any stale contexts
1860 for (i
= 0; i
< n_ctx
; ++i
) {
1861 _mdns_query_clear(&ctx
[i
]);
1865 if (_mdns_sdref
== NULL
) {
1866 if (_mdns_old_sdref
!= NULL
) {
1868 DNSServiceRefDeallocate(_mdns_old_sdref
);
1869 _mdns_old_sdref
= NULL
;
1871 // (re)initialize the shared connection
1872 err
= DNSServiceCreateConnection(&_mdns_sdref
);
1875 pthread_mutex_unlock(&_mdns_mutex
);
1880 // issue (or reissue) the queries
1881 // unspecified type: do parallel A and AAAA
1883 err
= _mdns_query_start(&ctx
[n_ctx
++], reply
,
1886 (type
== 0) ? ns_t_a
: type
, interface
, flags
, kq
);
1888 if (err
== 0 && type
== 0) {
1889 err
= _mdns_query_start(&ctx
[n_ctx
++], reply
,
1891 name
, class, ns_t_aaaa
, interface
, flags
, kq
);
1893 if (err
&& _mdns_debug
) printf(";; initialization error %d\n", err
);
1894 // try to reinitialize
1895 if (err
== kDNSServiceErr_Unknown
||
1896 err
== kDNSServiceErr_ServiceNotRunning
||
1897 err
== kDNSServiceErr_BadReference
) {
1900 DNSServiceRefDeallocate(_mdns_sdref
);
1905 pthread_mutex_unlock(&_mdns_mutex
);
1907 } else if (err
!= 0) {
1908 pthread_mutex_unlock(&_mdns_mutex
);
1912 // (re)register the fd with kqueue
1913 int fd
= DNSServiceRefSockFD(_mdns_sdref
);
1914 EV_SET(&ev
, fd
, EVFILT_READ
, EV_ADD
, 0, 0, 0);
1915 n
= kevent(kq
, &ev
, 1, NULL
, 0, NULL
);
1916 pthread_mutex_unlock(&_mdns_mutex
);
1917 if (err
!= 0 || n
!= 0) break;
1920 if (_mdns_debug
) printf(";; kevent timeout %ld.%ld\n", timeout
.tv_sec
, timeout
.tv_nsec
);
1921 n
= kevent(kq
, NULL
, 0, &ev
, 1, &timeout
);
1922 if (n
< 0 && errno
!= EINTR
) {
1927 pthread_mutex_lock(&_mdns_mutex
);
1928 // DNSServiceProcessResult() is a blocking API
1929 // confirm that there is still data on the socket
1930 const struct timespec notimeout
= { 0, 0 };
1931 int m
= kevent(kq
, NULL
, 0, &ev
, 1, ¬imeout
);
1932 if (_mdns_sdref
== NULL
) {
1934 } else if (m
> 0 && ev
.filter
== EVFILT_READ
) {
1935 err
= DNSServiceProcessResult(_mdns_sdref
);
1936 if (err
== kDNSServiceErr_ServiceNotRunning
||
1937 err
== kDNSServiceErr_BadReference
) {
1938 if (_mdns_debug
) printf(";; DNSServiceProcessResult status %d\n", err
);
1940 // re-initialize the shared connection
1942 DNSServiceRefDeallocate(_mdns_sdref
);
1948 // Check if all queries are complete (including errors)
1950 for (i
= 0; i
< n_ctx
; ++i
) {
1951 if (_mdns_query_is_complete(&ctx
[i
]) || ctx
[i
].error
!= 0) {
1952 if (ctx
[i
].type
== ns_t_a
) {
1953 got_a_response
= GOT_DATA
;
1954 if (ctx
[i
].error
!= 0) got_a_response
= GOT_ERROR
;
1960 pthread_mutex_unlock(&_mdns_mutex
);
1963 if (_mdns_debug
) printf(";; DNSServiceProcessResult status %d\n", err
);
1965 } else if (complete
== 1) {
1966 if (_mdns_debug
) printf(";; done\n");
1968 } else if (got_a_response
!= 0) {
1969 // Got A record or NXERROR for A query, adjust deadline for AAAA.
1970 struct timespec now
, tn
, extra
;
1972 // delta = now - start
1974 _mdns_sub_time(&delta
, &now
, &start
);
1976 extra
.tv_sec
= SHORT_AAAA_EXTRA
;
1979 // if delta is really small, we probably got a result from mDNSResponder's cache
1980 if ((delta
.tv_sec
== 0) && (delta
.tv_nsec
<= 200000000)) {
1981 extra
.tv_sec
= LONG_AAAA_EXTRA
;
1983 else if (n_iface_4
== 0) {
1984 extra
.tv_sec
= LONG_AAAA_EXTRA
;
1985 } else if (got_a_response
== GOT_ERROR
) {
1986 extra
.tv_sec
= MEDIUM_AAAA_EXTRA
;
1989 _mdns_add_time(&tn
, &delta
, &delta
);
1991 // delta = tn + extra
1992 _mdns_add_time(&delta
, &tn
, &extra
);
1994 // check that delta doesn't exceed our total timeout
1995 _mdns_sub_time(&tn
, &timeout
, &delta
);
1996 if (tn
.tv_sec
>= 0) {
1997 if (_mdns_debug
) printf(";; new timeout (waiting for AAAA) %ld.%ld\n", delta
.tv_sec
, delta
.tv_nsec
);
1998 _mdns_deadline(&finish
, &delta
);
2002 // calculate remaining timeout
2003 _mdns_timeout(&timeout
, &finish
);
2005 // check for time remaining
2006 if (timeout
.tv_sec
< 0) {
2007 if (_mdns_debug
) printf(";; timeout\n");
2013 pthread_mutex_lock(&_mdns_mutex
);
2014 for (i
= 0; i
< n_ctx
; ++i
) {
2015 if (err
== 0) err
= ctx
[i
].error
;
2016 // Only clears hostents if result is incomplete.
2017 complete
= _mdns_query_clear(&ctx
[i
]) || complete
;
2019 pthread_mutex_unlock(&_mdns_mutex
);
2020 // Everything should be done with the kq by now.
2023 // Return error if everything is incomplete
2024 if (complete
== 0) {
2028 if (anslen
) *anslen
= ctx
[0].anslen
;