1 /*
2 * Copyright (c) 2002-2020 Apple Inc. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15
16 NOTE:
17 If you're building an application that uses DNS Service Discovery
18 this is probably NOT the header file you're looking for.
19 In most cases you will want to use /usr/include/dns_sd.h instead.
20
21 This header file defines the lowest level raw interface to mDNSCore,
22 which is appropriate *only* on tiny embedded systems where everything
23 runs in a single address space and memory is extremely constrained.
24 All the APIs here are malloc-free, which means that the caller is
25 responsible for passing in a pointer to the relevant storage that
26 will be used in the execution of that call, and (when called with
27 correct parameters) all the calls are guaranteed to succeed. There
28 is never a case where a call can suffer intermittent failures because
29 the implementation calls malloc() and sometimes malloc() returns NULL
30 because memory is so limited that no more is available.
31 This is primarily for devices that need to have precisely known fixed
32 memory requirements, with absolutely no uncertainty or run-time variation,
33 but that certainty comes at a cost of more difficult programming.
34
35 For applications running on general-purpose desktop operating systems
36 (Mac OS, Linux, Solaris, Windows, etc.) the API you should use is
37 /usr/include/dns_sd.h, which defines the API by which multiple
38 independent client processes communicate their DNS Service Discovery
39 requests to a single "mdnsd" daemon running in the background.
40
41 Even on platforms that don't run multiple independent processes in
42 multiple independent address spaces, you can still use the preferred
43 dns_sd.h APIs by linking in "dnssd_clientshim.c", which implements
44 the standard "dns_sd.h" API calls, allocates any required storage
45 using malloc(), and then calls through to the low-level malloc-free
46 mDNSCore routines defined here. This has the benefit that even though
47 you're running on a small embedded system with a single address space,
48 you can still use the exact same client C code as you'd use on a
49 general-purpose desktop system.
50
51 */
52
53 #ifndef __mDNSEmbeddedAPI_h
54 #define __mDNSEmbeddedAPI_h
55
56 #if defined(EFI32) || defined(EFI64) || defined(EFIX64)
57 // EFI doesn't have stdarg.h unless it's building with GCC.
58 #include "Tiano.h"
59 #if !defined(__GNUC__)
60 #define va_list VA_LIST
61 #define va_start(a, b) VA_START(a, b)
62 #define va_end(a) VA_END(a)
63 #define va_arg(a, b) VA_ARG(a, b)
64 #endif
65 #else
66 #include <stdarg.h> // stdarg.h is required for for va_list support for the mDNS_vsnprintf declaration
67 #endif
68
69 #if APPLE_OSX_mDNSResponder
70 #include <uuid/uuid.h>
71 #endif
72
73 #include "mDNSFeatures.h"
74 #include "mDNSDebug.h"
75
76 // ***************************************************************************
77 // Feature removal compile options & limited resource targets
78
79 // The following compile options are responsible for removing certain features from mDNSCore to reduce the
80 // memory footprint for use in embedded systems with limited resources.
81
82 // UNICAST_DISABLED - disables unicast DNS functionality, including Wide Area Bonjour
83 // SPC_DISABLED - disables Bonjour Sleep Proxy client
84 // IDLESLEEPCONTROL_DISABLED - disables sleep control for Bonjour Sleep Proxy clients
85
86 // In order to disable the above features pass the option to your compiler, e.g. -D UNICAST_DISABLED
87
88 #if MDNSRESPONDER_SUPPORTS(APPLE, WEB_CONTENT_FILTER)
89 #include <WebFilterDNS/WebFilterDNS.h>
90 #endif
91
92 #if MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
93 #include "dnssec_v2_embedded.h"
94 #endif // MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
95
96 // Additionally, the LIMITED_RESOURCES_TARGET compile option will reduce the maximum DNS message sizes.
97
98 #ifdef LIMITED_RESOURCES_TARGET
99 // Don't support jumbo frames
100 // 40 (IPv6 header) + 8 (UDP header) + 12 (DNS message header) + 1440 (DNS message body) = 1500 total
101 #define AbsoluteMaxDNSMessageData 1440
102 // StandardAuthRDSize is 264 (256+8), which is large enough to hold a maximum-sized SRV record (6 + 256 bytes)
103 #define MaximumRDSize 264
104 #endif
105
106 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
107 #include "mdns_private.h"
108 #endif
109
110 #ifdef __cplusplus
111 extern "C" {
112 #endif
113
114 // ***************************************************************************
115 // Function scope indicators
116
117 // If you see "mDNSlocal" before a function name in a C file, it means the function is not callable outside this file
118 #ifndef mDNSlocal
119 #define mDNSlocal static
120 #endif
121 // If you see "mDNSexport" before a symbol in a C file, it means the symbol is exported for use by clients
122 // For every "mDNSexport" in a C file, there needs to be a corresponding "extern" declaration in some header file
123 // (When a C file #includes a header file, the "extern" declarations tell the compiler:
124 // "This symbol exists -- but not necessarily in this C file.")
125 #ifndef mDNSexport
126 #define mDNSexport
127 #endif
128
129 // Explanation: These local/export markers are a little habit of mine for signaling the programmers' intentions.
130 // When "mDNSlocal" is just a synonym for "static", and "mDNSexport" is a complete no-op, you could be
131 // forgiven for asking what purpose they serve. The idea is that if you see "mDNSexport" in front of a
132 // function definition it means the programmer intended it to be exported and callable from other files
133 // in the project. If you see "mDNSlocal" in front of a function definition it means the programmer
134 // intended it to be private to that file. If you see neither in front of a function definition it
135 // means the programmer forgot (so you should work out which it is supposed to be, and fix it).
136 // Using "mDNSlocal" instead of "static" makes it easier to do a textual searches for one or the other.
137 // For example you can do a search for "static" to find if any functions declare any local variables as "static"
138 // (generally a bad idea unless it's also "const", because static storage usually risks being non-thread-safe)
139 // without the results being cluttered with hundreds of matches for functions declared static.
140 // - Stuart Cheshire
141
142 // ***************************************************************************
143 // Structure packing macro
144
145 // If we're not using GNUC, it's not fatal.
146 // Most compilers naturally pack the on-the-wire structures correctly anyway, so a plain "struct" is usually fine.
147 // In the event that structures are not packed correctly, mDNS_Init() will detect this and report an error, so the
148 // developer will know what's wrong, and can investigate what needs to be done on that compiler to provide proper packing.
149 #ifndef packedstruct
150 #if ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 9)))
151 #define packedstruct struct __attribute__((__packed__))
152 #define packedunion union __attribute__((__packed__))
153 #else
154 #define packedstruct struct
155 #define packedunion union
156 #endif
157 #endif
158
159 #ifndef fallthrough
160 #if __clang__
161 #if __has_c_attribute(fallthrough)
162 #define fallthrough() [[fallthrough]]
163 #else
164 #define fallthrough()
165 #endif
166 #elif __GNUC__
167 #define fallthrough() __attribute__((fallthrough))
168 #else
169 #define fallthrough()
170 #endif // __GNUC__
171 #endif // fallthrough
172
173 // ***************************************************************************
174 #if 0
175 #pragma mark - DNS Resource Record class and type constants
176 #endif
177
178 typedef enum // From RFC 1035
179 {
180 kDNSClass_IN = 1, // Internet
181 kDNSClass_CS = 2, // CSNET
182 kDNSClass_CH = 3, // CHAOS
183 kDNSClass_HS = 4, // Hesiod
184 kDNSClass_NONE = 254, // Used in DNS UPDATE [RFC 2136]
185
186 kDNSClass_Mask = 0x7FFF, // Multicast DNS uses the bottom 15 bits to identify the record class...
187 kDNSClass_UniqueRRSet = 0x8000, // ... and the top bit indicates that all other cached records are now invalid
188
189 kDNSQClass_ANY = 255, // Not a DNS class, but a DNS query class, meaning "all classes"
190 kDNSQClass_UnicastResponse = 0x8000 // Top bit set in a question means "unicast response acceptable"
191 } DNS_ClassValues;
192
193 typedef enum // From RFC 1035
194 {
195 kDNSType_A = 1, // 1 Address
196 kDNSType_NS, // 2 Name Server
197 kDNSType_MD, // 3 Mail Destination
198 kDNSType_MF, // 4 Mail Forwarder
199 kDNSType_CNAME, // 5 Canonical Name
200 kDNSType_SOA, // 6 Start of Authority
201 kDNSType_MB, // 7 Mailbox
202 kDNSType_MG, // 8 Mail Group
203 kDNSType_MR, // 9 Mail Rename
204 kDNSType_NULL, // 10 NULL RR
205 kDNSType_WKS, // 11 Well-known-service
206 kDNSType_PTR, // 12 Domain name pointer
207 kDNSType_HINFO, // 13 Host information
208 kDNSType_MINFO, // 14 Mailbox information
209 kDNSType_MX, // 15 Mail Exchanger
210 kDNSType_TXT, // 16 Arbitrary text string
211 kDNSType_RP, // 17 Responsible person
212 kDNSType_AFSDB, // 18 AFS cell database
213 kDNSType_X25, // 19 X_25 calling address
214 kDNSType_ISDN, // 20 ISDN calling address
215 kDNSType_RT, // 21 Router
216 kDNSType_NSAP, // 22 NSAP address
217 kDNSType_NSAP_PTR, // 23 Reverse NSAP lookup (deprecated)
218 kDNSType_SIG, // 24 Security signature
219 kDNSType_KEY, // 25 Security key
220 kDNSType_PX, // 26 X.400 mail mapping
221 kDNSType_GPOS, // 27 Geographical position (withdrawn)
222 kDNSType_AAAA, // 28 IPv6 Address
223 kDNSType_LOC, // 29 Location Information
224 kDNSType_NXT, // 30 Next domain (security)
225 kDNSType_EID, // 31 Endpoint identifier
226 kDNSType_NIMLOC, // 32 Nimrod Locator
227 kDNSType_SRV, // 33 Service record
228 kDNSType_ATMA, // 34 ATM Address
229 kDNSType_NAPTR, // 35 Naming Authority PoinTeR
230 kDNSType_KX, // 36 Key Exchange
231 kDNSType_CERT, // 37 Certification record
232 kDNSType_A6, // 38 IPv6 Address (deprecated)
233 kDNSType_DNAME, // 39 Non-terminal DNAME (for IPv6)
234 kDNSType_SINK, // 40 Kitchen sink (experimental)
235 kDNSType_OPT, // 41 EDNS0 option (meta-RR)
236 kDNSType_APL, // 42 Address Prefix List
237 kDNSType_DS, // 43 Delegation Signer
238 kDNSType_SSHFP, // 44 SSH Key Fingerprint
239 kDNSType_IPSECKEY, // 45 IPSECKEY
240 kDNSType_RRSIG, // 46 RRSIG
241 kDNSType_NSEC, // 47 Denial of Existence
242 kDNSType_DNSKEY, // 48 DNSKEY
243 kDNSType_DHCID, // 49 DHCP Client Identifier
244 kDNSType_NSEC3, // 50 Hashed Authenticated Denial of Existence
245 kDNSType_NSEC3PARAM, // 51 Hashed Authenticated Denial of Existence
246
247 kDNSType_HIP = 55, // 55 Host Identity Protocol
248
249 kDNSType_SVCB = 64, // 64 Service Binding
250 kDNSType_HTTPS, // 65 HTTPS Service Binding
251
252 kDNSType_SPF = 99, // 99 Sender Policy Framework for E-Mail
253 kDNSType_UINFO, // 100 IANA-Reserved
254 kDNSType_UID, // 101 IANA-Reserved
255 kDNSType_GID, // 102 IANA-Reserved
256 kDNSType_UNSPEC, // 103 IANA-Reserved
257
258 kDNSType_TKEY = 249, // 249 Transaction key
259 kDNSType_TSIG, // 250 Transaction signature
260 kDNSType_IXFR, // 251 Incremental zone transfer
261 kDNSType_AXFR, // 252 Transfer zone of authority
262 kDNSType_MAILB, // 253 Transfer mailbox records
263 kDNSType_MAILA, // 254 Transfer mail agent records
264 kDNSQType_ANY // Not a DNS type, but a DNS query type, meaning "all types"
265 } DNS_TypeValues;
266
267 // ***************************************************************************
268 #if 0
269 #pragma mark -
270 #pragma mark - Simple types
271 #endif
272
273 // mDNS defines its own names for these common types to simplify portability across
274 // multiple platforms that may each have their own (different) names for these types.
275 typedef unsigned char mDNSBool;
276 typedef signed char mDNSs8;
277 typedef unsigned char mDNSu8;
278 typedef signed short mDNSs16;
279 typedef unsigned short mDNSu16;
280
281 // Source: http://www.unix.org/version2/whatsnew/lp64_wp.html
282 // http://software.intel.com/sites/products/documentation/hpc/mkl/lin/MKL_UG_structure/Support_for_ILP64_Programming.htm
283 // It can be safely assumed that int is 32bits on the platform
284 #if defined(_ILP64) || defined(__ILP64__)
285 typedef signed int32 mDNSs32;
286 typedef unsigned int32 mDNSu32;
287 #else
288 typedef signed int mDNSs32;
289 typedef unsigned int mDNSu32;
290 #endif
291
292 // To enforce useful type checking, we make mDNSInterfaceID be a pointer to a dummy struct
293 // This way, mDNSInterfaceIDs can be assigned, and compared with each other, but not with other types
294 // Declaring the type to be the typical generic "void *" would lack this type checking
295 typedef const struct mDNSInterfaceID_dummystruct { void *dummy; } *mDNSInterfaceID;
296
297 // Use when printing interface IDs; the interface ID is actually a pointer, but we're only using
298 // the pointer as a unique identifier, and in special cases it's actually a small number. So there's
299 // little point in printing all 64 bits--the upper 32 bits in particular will not add information.
300 #define IIDPrintable(x) ((uint32_t)(uintptr_t)(x))
301
302 // These types are for opaque two- and four-byte identifiers.
303 // The "NotAnInteger" fields of the unions allow the value to be conveniently passed around in a
304 // register for the sake of efficiency, and compared for equality or inequality, but don't forget --
305 // just because it is in a register doesn't mean it is an integer. Operations like greater than,
306 // less than, add, multiply, increment, decrement, etc., are undefined for opaque identifiers,
307 // and if you make the mistake of trying to do those using the NotAnInteger field, then you'll
308 // find you get code that doesn't work consistently on big-endian and little-endian machines.
309 #if defined(_WIN32)
310 #pragma pack(push,2)
311 #endif
312 typedef union { mDNSu8 b[ 2]; mDNSu16 NotAnInteger; } mDNSOpaque16;
313 typedef union { mDNSu8 b[ 4]; mDNSu32 NotAnInteger; } mDNSOpaque32;
314 typedef packedunion { mDNSu8 b[ 6]; mDNSu16 w[3]; mDNSu32 l[1]; } mDNSOpaque48;
315 typedef union { mDNSu8 b[ 8]; mDNSu16 w[4]; mDNSu32 l[2]; } mDNSOpaque64;
316 typedef union { mDNSu8 b[16]; mDNSu16 w[8]; mDNSu32 l[4]; } mDNSOpaque128;
317 #if defined(_WIN32)
318 #pragma pack(pop)
319 #endif
320
321 typedef mDNSOpaque16 mDNSIPPort; // An IP port is a two-byte opaque identifier (not an integer)
322 typedef mDNSOpaque32 mDNSv4Addr; // An IP address is a four-byte opaque identifier (not an integer)
323 typedef mDNSOpaque128 mDNSv6Addr; // An IPv6 address is a 16-byte opaque identifier (not an integer)
324 typedef mDNSOpaque48 mDNSEthAddr; // An Ethernet address is a six-byte opaque identifier (not an integer)
325
326 // Bit operations for opaque 64 bit quantity. Uses the 32 bit quantity(l[2]) to set and clear bits
327 #define mDNSNBBY 8
328 #define bit_set_opaque64(op64, index) (op64.l[((index))/(sizeof(mDNSu32) * mDNSNBBY)] |= (1 << ((index) % (sizeof(mDNSu32) * mDNSNBBY))))
329 #define bit_clr_opaque64(op64, index) (op64.l[((index))/(sizeof(mDNSu32) * mDNSNBBY)] &= ~(1 << ((index) % (sizeof(mDNSu32) * mDNSNBBY))))
330 #define bit_get_opaque64(op64, index) (op64.l[((index))/(sizeof(mDNSu32) * mDNSNBBY)] & (1 << ((index) % (sizeof(mDNSu32) * mDNSNBBY))))
331
332 // Bit operations for opaque 128 bit quantity. Uses the 32 bit quantity(l[4]) to set and clear bits
333 #define bit_set_opaque128(op128, index) (op128.l[((index))/(sizeof(mDNSu32) * mDNSNBBY)] |= (1 << ((index) % (sizeof(mDNSu32) * mDNSNBBY))))
334 #define bit_clr_opaque128(op128, index) (op128.l[((index))/(sizeof(mDNSu32) * mDNSNBBY)] &= ~(1 << ((index) % (sizeof(mDNSu32) * mDNSNBBY))))
335 #define bit_get_opaque128(op128, index) (op128.l[((index))/(sizeof(mDNSu32) * mDNSNBBY)] & (1 << ((index) % (sizeof(mDNSu32) * mDNSNBBY))))
336
337 typedef enum
338 {
339 mDNSAddrType_None = 0,
340 mDNSAddrType_IPv4 = 4,
341 mDNSAddrType_IPv6 = 6,
342 mDNSAddrType_Unknown = ~0 // Special marker value used in known answer list recording
343 } mDNSAddr_Type;
344
345 typedef enum
346 {
347 mDNSTransport_None = 0,
348 mDNSTransport_UDP = 1,
349 mDNSTransport_TCP = 2
350 } mDNSTransport_Type;
351
352 typedef struct
353 {
354 mDNSs32 type;
355 union { mDNSv6Addr v6; mDNSv4Addr v4; } ip;
356 } mDNSAddr;
357
358 enum { mDNSfalse = 0, mDNStrue = 1 };
359
360 #define mDNSNULL 0L
361
362 enum
363 {
364 mStatus_Waiting = 1,
365 mStatus_NoError = 0,
366
367 // mDNS return values are in the range FFFE FF00 (-65792) to FFFE FFFF (-65537)
368 // The top end of the range (FFFE FFFF) is used for error codes;
369 // the bottom end of the range (FFFE FF00) is used for non-error values;
370
371 // Error codes:
372 mStatus_UnknownErr = -65537, // First value: 0xFFFE FFFF
373 mStatus_NoSuchNameErr = -65538,
374 mStatus_NoMemoryErr = -65539,
375 mStatus_BadParamErr = -65540,
376 mStatus_BadReferenceErr = -65541,
377 mStatus_BadStateErr = -65542,
378 mStatus_BadFlagsErr = -65543,
379 mStatus_UnsupportedErr = -65544,
380 mStatus_NotInitializedErr = -65545,
381 mStatus_NoCache = -65546,
382 mStatus_AlreadyRegistered = -65547,
383 mStatus_NameConflict = -65548,
384 mStatus_Invalid = -65549,
385 mStatus_Firewall = -65550,
386 mStatus_Incompatible = -65551,
387 mStatus_BadInterfaceErr = -65552,
388 mStatus_Refused = -65553,
389 mStatus_NoSuchRecord = -65554,
390 mStatus_NoAuth = -65555,
391 mStatus_NoSuchKey = -65556,
392 mStatus_NATTraversal = -65557,
393 mStatus_DoubleNAT = -65558,
394 mStatus_BadTime = -65559,
395 mStatus_BadSig = -65560, // while we define this per RFC 2845, BIND 9 returns Refused for bad/missing signatures
396 mStatus_BadKey = -65561,
397 mStatus_TransientErr = -65562, // transient failures, e.g. sending packets shortly after a network transition or wake from sleep
398 mStatus_ServiceNotRunning = -65563, // Background daemon not running
399 mStatus_NATPortMappingUnsupported = -65564, // NAT doesn't support PCP, NAT-PMP or UPnP
400 mStatus_NATPortMappingDisabled = -65565, // NAT supports PCP, NAT-PMP or UPnP, but it's disabled by the administrator
401 mStatus_NoRouter = -65566,
402 mStatus_PollingMode = -65567,
403 mStatus_Timeout = -65568,
404 mStatus_DefunctConnection = -65569,
405 mStatus_PolicyDenied = -65570,
406 // -65571 to -65785 currently unused; available for allocation
407
408 // udp connection status
409 mStatus_HostUnreachErr = -65786,
410
411 // tcp connection status
412 mStatus_ConnPending = -65787,
413 mStatus_ConnFailed = -65788,
414 mStatus_ConnEstablished = -65789,
415
416 // Non-error values:
417 mStatus_GrowCache = -65790,
418 mStatus_ConfigChanged = -65791,
419 mStatus_MemFree = -65792 // Last value: 0xFFFE FF00
420
421 // mStatus_MemFree is the last legal mDNS error code, at the end of the range allocated for mDNS
422 };
423
424 typedef mDNSs32 mStatus;
425
426 #define MaxIp 5 // Needs to be consistent with MaxInputIf in dns_services.h
427
428 typedef enum { q_stop = 0, q_start } q_state;
429 typedef enum { reg_stop = 0, reg_start } reg_state;
430
431 // RFC 1034/1035 specify that a domain label consists of a length byte plus up to 63 characters
432 #define MAX_DOMAIN_LABEL 63
433 typedef struct { mDNSu8 c[ 64]; } domainlabel; // One label: length byte and up to 63 characters
434
435 // RFC 1034/1035/2181 specify that a domain name (length bytes and data bytes) may be up to 255 bytes long,
436 // plus the terminating zero at the end makes 256 bytes total in the on-the-wire format.
437 #define MAX_DOMAIN_NAME 256
438 typedef struct { mDNSu8 c[256]; } domainname; // Up to 256 bytes of length-prefixed domainlabels
439
440 typedef struct { mDNSu8 c[256]; } UTF8str255; // Null-terminated C string
441
442 // The longest legal textual form of a DNS name is 1009 bytes, including the C-string terminating NULL at the end.
443 // Explanation:
444 // When a native domainname object is converted to printable textual form using ConvertDomainNameToCString(),
445 // non-printing characters are represented in the conventional DNS way, as '\ddd', where ddd is a three-digit decimal number.
446 // The longest legal domain name is 256 bytes, in the form of four labels as shown below:
447 // Length byte, 63 data bytes, length byte, 63 data bytes, length byte, 63 data bytes, length byte, 62 data bytes, zero byte.
448 // Each label is encoded textually as characters followed by a trailing dot.
449 // If every character has to be represented as a four-byte escape sequence, then this makes the maximum textual form four labels
450 // plus the C-string terminating NULL as shown below:
451 // 63*4+1 + 63*4+1 + 63*4+1 + 62*4+1 + 1 = 1009.
452 // Note that MAX_ESCAPED_DOMAIN_LABEL is not normally used: If you're only decoding a single label, escaping is usually not required.
453 // It is for domain names, where dots are used as label separators, that proper escaping is vital.
454 #define MAX_ESCAPED_DOMAIN_LABEL 254
455 #define MAX_ESCAPED_DOMAIN_NAME 1009
456
457 // MAX_REVERSE_MAPPING_NAME
458 // For IPv4: "123.123.123.123.in-addr.arpa." 30 bytes including terminating NUL
459 // For IPv6: "x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.x.ip6.arpa." 74 bytes including terminating NUL
460
461 #define MAX_REVERSE_MAPPING_NAME_V4 30
462 #define MAX_REVERSE_MAPPING_NAME_V6 74
463 #define MAX_REVERSE_MAPPING_NAME 74
464
465 // Most records have a TTL of 75 minutes, so that their 80% cache-renewal query occurs once per hour.
466 // For records containing a hostname (in the name on the left, or in the rdata on the right),
467 // like A, AAAA, reverse-mapping PTR, and SRV, we use a two-minute TTL by default, because we don't want
468 // them to hang around for too long in the cache if the host in question crashes or otherwise goes away.
469
470 #define kStandardTTL (3600UL * 100 / 80)
471 #define kHostNameTTL 120UL
472
473 // Multicast DNS uses announcements (gratuitous responses) to update peer caches.
474 // This means it is feasible to use relatively larger TTL values than we might otherwise
475 // use, because we have a cache coherency protocol to keep the peer caches up to date.
476 // With Unicast DNS, once an authoritative server gives a record with a certain TTL value to a client
477 // or caching server, that client or caching server is entitled to hold onto the record until its TTL
478 // expires, and has no obligation to contact the authoritative server again until that time arrives.
479 // This means that whereas Multicast DNS can use announcements to pre-emptively update stale data
480 // before it would otherwise have expired, standard Unicast DNS (not using LLQs) has no equivalent
481 // mechanism, and TTL expiry is the *only* mechanism by which stale data gets deleted. Because of this,
482 // we currently limit the TTL to ten seconds in such cases where no dynamic cache updating is possible.
483 #define kStaticCacheTTL 10
484
485 #define DefaultTTLforRRType(X) (((X) == kDNSType_A || (X) == kDNSType_AAAA || (X) == kDNSType_SRV) ? kHostNameTTL : kStandardTTL)
486 #define mDNS_KeepaliveRecord(rr) ((rr)->rrtype == kDNSType_NULL && SameDomainLabel(SecondLabel((rr)->name)->c, (mDNSu8 *)"\x0A_keepalive"))
487
488 // Number of times keepalives are sent if no ACK is received before waking up the system
489 // this is analogous to net.inet.tcp.keepcnt
490 #define kKeepaliveRetryCount 10
491 // The frequency at which keepalives are retried if no ACK is received
492 #define kKeepaliveRetryInterval 30
493
494 typedef struct AuthRecord_struct AuthRecord;
495 typedef struct ServiceRecordSet_struct ServiceRecordSet;
496 typedef struct CacheRecord_struct CacheRecord;
497 typedef struct CacheGroup_struct CacheGroup;
498 typedef struct AuthGroup_struct AuthGroup;
499 typedef struct DNSQuestion_struct DNSQuestion;
500 typedef struct ZoneData_struct ZoneData;
501 typedef struct mDNS_struct mDNS;
502 typedef struct mDNS_PlatformSupport_struct mDNS_PlatformSupport;
503 typedef struct NATTraversalInfo_struct NATTraversalInfo;
504 typedef struct ResourceRecord_struct ResourceRecord;
505
506 // Structure to abstract away the differences between TCP/SSL sockets, and one for UDP sockets
507 // The actual definition of these structures appear in the appropriate platform support code
508 typedef struct TCPListener_struct TCPListener;
509 typedef struct TCPSocket_struct TCPSocket;
510 typedef struct UDPSocket_struct UDPSocket;
511
512 // ***************************************************************************
513 #if 0
514 #pragma mark -
515 #pragma mark - DNS Message structures
516 #endif
517
518 #define mDNS_numZones numQuestions
519 #define mDNS_numPrereqs numAnswers
520 #define mDNS_numUpdates numAuthorities
521
522 typedef struct
523 {
524 mDNSOpaque16 id;
525 mDNSOpaque16 flags;
526 mDNSu16 numQuestions;
527 mDNSu16 numAnswers;
528 mDNSu16 numAuthorities;
529 mDNSu16 numAdditionals;
530 } DNSMessageHeader;
531
532 // We can send and receive packets up to 9000 bytes (Ethernet Jumbo Frame size, if that ever becomes widely used)
533 // However, in the normal case we try to limit packets to 1500 bytes so that we don't get IP fragmentation on standard Ethernet
534 // 40 (IPv6 header) + 8 (UDP header) + 12 (DNS message header) + 1440 (DNS message body) = 1500 total
535 #ifndef AbsoluteMaxDNSMessageData
536 #define AbsoluteMaxDNSMessageData 8940
537 #endif
538 #define NormalMaxDNSMessageData 1440
539 typedef struct
540 {
541 DNSMessageHeader h; // Note: Size 12 bytes
542 mDNSu8 data[AbsoluteMaxDNSMessageData]; // 40 (IPv6) + 8 (UDP) + 12 (DNS header) + 8940 (data) = 9000
543 } DNSMessage;
544
545 typedef struct tcpInfo_t
546 {
547 mDNS *m;
548 TCPSocket *sock;
549 DNSMessage request;
550 int requestLen;
551 DNSQuestion *question; // For queries
552 AuthRecord *rr; // For record updates
553 mDNSAddr Addr;
554 mDNSIPPort Port;
555 mDNSIPPort SrcPort;
556 DNSMessage *reply;
557 mDNSu16 replylen;
558 unsigned long nread;
559 int numReplies;
560 } tcpInfo_t;
561
562 // ***************************************************************************
563 #if 0
564 #pragma mark -
565 #pragma mark - Other Packet Format Structures
566 #endif
567
568 typedef packedstruct
569 {
570 mDNSEthAddr dst;
571 mDNSEthAddr src;
572 mDNSOpaque16 ethertype;
573 } EthernetHeader; // 14 bytes
574
575 typedef packedstruct
576 {
577 mDNSOpaque16 hrd;
578 mDNSOpaque16 pro;
579 mDNSu8 hln;
580 mDNSu8 pln;
581 mDNSOpaque16 op;
582 mDNSEthAddr sha;
583 mDNSv4Addr spa;
584 mDNSEthAddr tha;
585 mDNSv4Addr tpa;
586 } ARP_EthIP; // 28 bytes
587
588 typedef packedstruct
589 {
590 mDNSu8 vlen;
591 mDNSu8 tos;
592 mDNSOpaque16 totlen;
593 mDNSOpaque16 id;
594 mDNSOpaque16 flagsfrags;
595 mDNSu8 ttl;
596 mDNSu8 protocol; // Payload type: 0x06 = TCP, 0x11 = UDP
597 mDNSu16 checksum;
598 mDNSv4Addr src;
599 mDNSv4Addr dst;
600 } IPv4Header; // 20 bytes
601
602 typedef packedstruct
603 {
604 mDNSu32 vcf; // Version, Traffic Class, Flow Label
605 mDNSu16 len; // Payload Length
606 mDNSu8 pro; // Type of next header: 0x06 = TCP, 0x11 = UDP, 0x3A = ICMPv6
607 mDNSu8 ttl; // Hop Limit
608 mDNSv6Addr src;
609 mDNSv6Addr dst;
610 } IPv6Header; // 40 bytes
611
612 typedef packedstruct
613 {
614 mDNSv6Addr src;
615 mDNSv6Addr dst;
616 mDNSOpaque32 len;
617 mDNSOpaque32 pro;
618 } IPv6PseudoHeader; // 40 bytes
619
620 typedef union
621 {
622 mDNSu8 bytes[20];
623 ARP_EthIP arp;
624 IPv4Header v4;
625 IPv6Header v6;
626 } NetworkLayerPacket;
627
628 typedef packedstruct
629 {
630 mDNSIPPort src;
631 mDNSIPPort dst;
632 mDNSu32 seq;
633 mDNSu32 ack;
634 mDNSu8 offset;
635 mDNSu8 flags;
636 mDNSu16 window;
637 mDNSu16 checksum;
638 mDNSu16 urgent;
639 } TCPHeader; // 20 bytes; IP protocol type 0x06
640
641 typedef struct
642 {
643 mDNSInterfaceID IntfId;
644 mDNSu32 seq;
645 mDNSu32 ack;
646 mDNSu16 window;
647 } mDNSTCPInfo;
648
649 typedef packedstruct
650 {
651 mDNSIPPort src;
652 mDNSIPPort dst;
653 mDNSu16 len; // Length including UDP header (i.e. minimum value is 8 bytes)
654 mDNSu16 checksum;
655 } UDPHeader; // 8 bytes; IP protocol type 0x11
656
657 typedef struct
658 {
659 mDNSu8 type; // 0x87 == Neighbor Solicitation, 0x88 == Neighbor Advertisement
660 mDNSu8 code;
661 mDNSu16 checksum;
662 mDNSu32 flags_res; // R/S/O flags and reserved bits
663 mDNSv6Addr target;
664 // Typically 8 bytes of options are also present
665 } IPv6NDP; // 24 bytes or more; IP protocol type 0x3A
666
667 typedef struct
668 {
669 mDNSAddr ipaddr;
670 char ethaddr[18];
671 } IPAddressMACMapping;
672
673 #define NDP_Sol 0x87
674 #define NDP_Adv 0x88
675
676 #define NDP_Router 0x80
677 #define NDP_Solicited 0x40
678 #define NDP_Override 0x20
679
680 #define NDP_SrcLL 1
681 #define NDP_TgtLL 2
682
683 typedef union
684 {
685 mDNSu8 bytes[20];
686 TCPHeader tcp;
687 UDPHeader udp;
688 IPv6NDP ndp;
689 } TransportLayerPacket;
690
691 typedef packedstruct
692 {
693 mDNSOpaque64 InitiatorCookie;
694 mDNSOpaque64 ResponderCookie;
695 mDNSu8 NextPayload;
696 mDNSu8 Version;
697 mDNSu8 ExchangeType;
698 mDNSu8 Flags;
699 mDNSOpaque32 MessageID;
700 mDNSu32 Length;
701 } IKEHeader; // 28 bytes
702
703 // ***************************************************************************
704 #if 0
705 #pragma mark -
706 #pragma mark - Resource Record structures
707 #endif
708
709 // Authoritative Resource Records:
710 // There are four basic types: Shared, Advisory, Unique, Known Unique
711
712 // * Shared Resource Records do not have to be unique
713 // -- Shared Resource Records are used for DNS-SD service PTRs
714 // -- It is okay for several hosts to have RRs with the same name but different RDATA
715 // -- We use a random delay on responses to reduce collisions when all the hosts respond to the same query
716 // -- These RRs typically have moderately high TTLs (e.g. one hour)
717 // -- These records are announced on startup and topology changes for the benefit of passive listeners
718 // -- These records send a goodbye packet when deregistering
719 //
720 // * Advisory Resource Records are like Shared Resource Records, except they don't send a goodbye packet
721 //
722 // * Unique Resource Records should be unique among hosts within any given mDNS scope
723 // -- The majority of Resource Records are of this type
724 // -- If two entities on the network have RRs with the same name but different RDATA, this is a conflict
725 // -- Responses may be sent immediately, because only one host should be responding to any particular query
726 // -- These RRs typically have low TTLs (e.g. a few minutes)
727 // -- On startup and after topology changes, a host issues queries to verify uniqueness
728
729 // * Known Unique Resource Records are treated like Unique Resource Records, except that mDNS does
730 // not have to verify their uniqueness because this is already known by other means (e.g. the RR name
731 // is derived from the host's IP or Ethernet address, which is already known to be a unique identifier).
732
733 // Summary of properties of different record types:
734 // Probe? Does this record type send probes before announcing?
735 // Conflict? Does this record type react if we observe an apparent conflict?
736 // Goodbye? Does this record type send a goodbye packet on departure?
737 //
738 // Probe? Conflict? Goodbye? Notes
739 // Unregistered Should not appear in any list (sanity check value)
740 // Shared No No Yes e.g. Service PTR record
741 // Deregistering No No Yes Shared record about to announce its departure and leave the list
742 // Advisory No No No
743 // Unique Yes Yes No Record intended to be unique -- will probe to verify
744 // Verified Yes Yes No Record has completed probing, and is verified unique
745 // KnownUnique No Yes No Record is assumed by other means to be unique
746
747 // Valid lifecycle of a record:
748 // Unregistered -> Shared -> Deregistering -(goodbye)-> Unregistered
749 // Unregistered -> Advisory -> Unregistered
750 // Unregistered -> Unique -(probe)-> Verified -> Unregistered
751 // Unregistered -> KnownUnique -> Unregistered
752
753 // Each Authoritative kDNSRecordType has only one bit set. This makes it easy to quickly see if a record
754 // is one of a particular set of types simply by performing the appropriate bitwise masking operation.
755
756 // Cache Resource Records (received from the network):
757 // There are four basic types: Answer, Unique Answer, Additional, Unique Additional
758 // Bit 7 (the top bit) of kDNSRecordType is always set for Cache Resource Records; always clear for Authoritative Resource Records
759 // Bit 6 (value 0x40) is set for answer records; clear for authority/additional records
760 // Bit 5 (value 0x20) is set for records received with the kDNSClass_UniqueRRSet
761
762 typedef enum
763 {
764 kDNSRecordTypeUnregistered = 0x00, // Not currently in any list
765 kDNSRecordTypeDeregistering = 0x01, // Shared record about to announce its departure and leave the list
766
767 kDNSRecordTypeUnique = 0x02, // Will become a kDNSRecordTypeVerified when probing is complete
768
769 kDNSRecordTypeAdvisory = 0x04, // Like Shared, but no goodbye packet
770 kDNSRecordTypeShared = 0x08, // Shared means record name does not have to be unique -- use random delay on responses
771
772 kDNSRecordTypeVerified = 0x10, // Unique means mDNS should check that name is unique (and then send immediate responses)
773 kDNSRecordTypeKnownUnique = 0x20, // Known Unique means mDNS can assume name is unique without checking
774 // For Dynamic Update records, Known Unique means the record must already exist on the server.
775 kDNSRecordTypeUniqueMask = (kDNSRecordTypeUnique | kDNSRecordTypeVerified | kDNSRecordTypeKnownUnique),
776 kDNSRecordTypeActiveSharedMask = (kDNSRecordTypeAdvisory | kDNSRecordTypeShared),
777 kDNSRecordTypeActiveUniqueMask = (kDNSRecordTypeVerified | kDNSRecordTypeKnownUnique),
778 kDNSRecordTypeActiveMask = (kDNSRecordTypeActiveSharedMask | kDNSRecordTypeActiveUniqueMask),
779
780 kDNSRecordTypePacketAdd = 0x80, // Received in the Additional Section of a DNS Response
781 kDNSRecordTypePacketAddUnique = 0x90, // Received in the Additional Section of a DNS Response with kDNSClass_UniqueRRSet set
782 kDNSRecordTypePacketAuth = 0xA0, // Received in the Authorities Section of a DNS Response
783 kDNSRecordTypePacketAuthUnique = 0xB0, // Received in the Authorities Section of a DNS Response with kDNSClass_UniqueRRSet set
784 kDNSRecordTypePacketAns = 0xC0, // Received in the Answer Section of a DNS Response
785 kDNSRecordTypePacketAnsUnique = 0xD0, // Received in the Answer Section of a DNS Response with kDNSClass_UniqueRRSet set
786
787 kDNSRecordTypePacketNegative = 0xF0, // Pseudo-RR generated to cache non-existence results like NXDomain
788
789 kDNSRecordTypePacketUniqueMask = 0x10 // True for PacketAddUnique, PacketAnsUnique, PacketAuthUnique, kDNSRecordTypePacketNegative
790 } kDNSRecordTypes;
791
792 typedef packedstruct { mDNSu16 priority; mDNSu16 weight; mDNSIPPort port; domainname target; } rdataSRV;
793 typedef packedstruct { mDNSu16 preference; domainname exchange; } rdataMX;
794 typedef packedstruct { domainname mbox; domainname txt; } rdataRP;
795 typedef packedstruct { mDNSu16 preference; domainname map822; domainname mapx400; } rdataPX;
796
797 typedef packedstruct
798 {
799 domainname mname;
800 domainname rname;
801 mDNSs32 serial; // Modular counter; increases when zone changes
802 mDNSu32 refresh; // Time in seconds that a slave waits after successful replication of the database before it attempts replication again
803 mDNSu32 retry; // Time in seconds that a slave waits after an unsuccessful replication attempt before it attempts replication again
804 mDNSu32 expire; // Time in seconds that a slave holds on to old data while replication attempts remain unsuccessful
805 mDNSu32 min; // Nominally the minimum record TTL for this zone, in seconds; also used for negative caching.
806 } rdataSOA;
807
808 typedef enum
809 {
810 platform_OSX = 1, // OSX Platform
811 platform_iOS, // iOS Platform
812 platform_Atv, // Atv Platform
813 platform_NonApple // Non-Apple (Windows, POSIX) Platform
814 } Platform_t;
815
816 // EDNS Option Code registrations are recorded in the "DNS EDNS0 Options" section of
817 // <http://www.iana.org/assignments/dns-parameters>
818
819 #define kDNSOpt_LLQ 1
820 #define kDNSOpt_Lease 2
821 #define kDNSOpt_NSID 3
822 #define kDNSOpt_Owner 4
823 #define kDNSOpt_Trace 65001 // 65001-65534 Reserved for Local/Experimental Use
824
825 typedef struct
826 {
827 mDNSu16 vers;
828 mDNSu16 llqOp;
829 mDNSu16 err; // Or UDP reply port, in setup request
830 // Note: In the in-memory form, there's typically a two-byte space here, so that the following 64-bit id is word-aligned
831 mDNSOpaque64 id;
832 mDNSu32 llqlease;
833 } LLQOptData;
834
835 typedef struct
836 {
837 mDNSu8 vers; // Version number of this Owner OPT record
838 mDNSs8 seq; // Sleep/wake epoch
839 mDNSEthAddr HMAC; // Host's primary identifier (e.g. MAC of on-board Ethernet)
840 mDNSEthAddr IMAC; // Interface's MAC address (if different to primary MAC)
841 mDNSOpaque48 password; // Optional password
842 } OwnerOptData;
843
844 typedef struct
845 {
846 mDNSu8 platf; // Running platform (see enum Platform_t)
847 mDNSu32 mDNSv; // mDNSResponder Version (DNS_SD_H defined in dns_sd.h)
848 } TracerOptData;
849
850 // Note: rdataOPT format may be repeated an arbitrary number of times in a single resource record
851 typedef struct
852 {
853 mDNSu16 opt;
854 mDNSu16 optlen;
855 union { LLQOptData llq; mDNSu32 updatelease; OwnerOptData owner; TracerOptData tracer; } u;
856 } rdataOPT;
857
858 // Space needed to put OPT records into a packet:
859 // Header 11 bytes (name 1, type 2, class 2, TTL 4, length 2)
860 // LLQ rdata 18 bytes (opt 2, len 2, vers 2, op 2, err 2, id 8, lease 4)
861 // Lease rdata 8 bytes (opt 2, len 2, lease 4)
862 // Owner rdata 12-24 bytes (opt 2, len 2, owner 8-20)
863 // Trace rdata 9 bytes (opt 2, len 2, platf 1, mDNSv 4)
864
865
866 #define DNSOpt_Header_Space 11
867 #define DNSOpt_LLQData_Space (4 + 2 + 2 + 2 + 8 + 4)
868 #define DNSOpt_LeaseData_Space (4 + 4)
869 #define DNSOpt_OwnerData_ID_Space (4 + 2 + 6)
870 #define DNSOpt_OwnerData_ID_Wake_Space (4 + 2 + 6 + 6)
871 #define DNSOpt_OwnerData_ID_Wake_PW4_Space (4 + 2 + 6 + 6 + 4)
872 #define DNSOpt_OwnerData_ID_Wake_PW6_Space (4 + 2 + 6 + 6 + 6)
873 #define DNSOpt_TraceData_Space (4 + 1 + 4)
874
875 #define ValidOwnerLength(X) ( (X) == DNSOpt_OwnerData_ID_Space - 4 || \
876 (X) == DNSOpt_OwnerData_ID_Wake_Space - 4 || \
877 (X) == DNSOpt_OwnerData_ID_Wake_PW4_Space - 4 || \
878 (X) == DNSOpt_OwnerData_ID_Wake_PW6_Space - 4 )
879
880 #define DNSOpt_Owner_Space(A,B) (mDNSSameEthAddress((A),(B)) ? DNSOpt_OwnerData_ID_Space : DNSOpt_OwnerData_ID_Wake_Space)
881
882 #define DNSOpt_Data_Space(O) ( \
883 (O)->opt == kDNSOpt_LLQ ? DNSOpt_LLQData_Space : \
884 (O)->opt == kDNSOpt_Lease ? DNSOpt_LeaseData_Space : \
885 (O)->opt == kDNSOpt_Trace ? DNSOpt_TraceData_Space : \
886 (O)->opt == kDNSOpt_Owner ? DNSOpt_Owner_Space(&(O)->u.owner.HMAC, &(O)->u.owner.IMAC) : 0x10000)
887
888 // NSEC record is defined in RFC 4034.
889 // 16 bit RRTYPE space is split into 256 windows and each window has 256 bits (32 bytes).
890 // If we create a structure for NSEC, it's size would be:
891 //
892 // 256 bytes domainname 'nextname'
893 // + 256 * 34 = 8704 bytes of bitmap data
894 // = 8960 bytes total
895 //
896 // This would be a waste, as types about 256 are not very common. But it would be odd, if we receive
897 // a type above 256 (.US zone had TYPE65534 when this code was written) and not able to handle it.
898 // Hence, we handle any size by not fixing a strucure in place. The following is just a placeholder
899 // and never used anywhere.
900 //
901 #define NSEC_MCAST_WINDOW_SIZE 32
902 typedef struct
903 {
904 domainname *next; //placeholders are uncommented because C89 in Windows requires that a struct has at least a member.
905 char bitmap[32];
906 } rdataNSEC;
907
908 // StandardAuthRDSize is 264 (256+8), which is large enough to hold a maximum-sized SRV record (6 + 256 bytes)
909 // MaximumRDSize is 8K the absolute maximum we support (at least for now)
910 #define StandardAuthRDSize 264
911 #ifndef MaximumRDSize
912 #define MaximumRDSize 8192
913 #endif
914
915 // InlineCacheRDSize is 68
916 // Records received from the network with rdata this size or less have their rdata stored right in the CacheRecord object
917 // Records received from the network with rdata larger than this have additional storage allocated for the rdata
918 // A quick unscientific sample from a busy network at Apple with lots of machines revealed this:
919 // 1461 records in cache
920 // 292 were one-byte TXT records
921 // 136 were four-byte A records
922 // 184 were sixteen-byte AAAA records
923 // 780 were various PTR, TXT and SRV records from 12-64 bytes
924 // Only 69 records had rdata bigger than 64 bytes
925 // Note that since CacheRecord object and a CacheGroup object are allocated out of the same pool, it's sensible to
926 // have them both be the same size. Making one smaller without making the other smaller won't actually save any memory.
927 #define InlineCacheRDSize 68
928
929 // The RDataBody union defines the common rdata types that fit into our 264-byte limit
930 typedef union
931 {
932 mDNSu8 data[StandardAuthRDSize];
933 mDNSv4Addr ipv4; // For 'A' record
934 domainname name; // For PTR, NS, CNAME, DNAME
935 UTF8str255 txt;
936 rdataMX mx;
937 mDNSv6Addr ipv6; // For 'AAAA' record
938 rdataSRV srv;
939 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
940 } RDataBody;
941
942 // The RDataBody2 union is the same as above, except it includes fields for the larger types like soa, rp, px
943 typedef union
944 {
945 mDNSu8 data[StandardAuthRDSize];
946 mDNSv4Addr ipv4; // For 'A' record
947 domainname name; // For PTR, NS, CNAME, DNAME
948 rdataSOA soa; // This is large; not included in the normal RDataBody definition
949 UTF8str255 txt;
950 rdataMX mx;
951 rdataRP rp; // This is large; not included in the normal RDataBody definition
952 rdataPX px; // This is large; not included in the normal RDataBody definition
953 mDNSv6Addr ipv6; // For 'AAAA' record
954 rdataSRV srv;
955 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
956 } RDataBody2;
957
958 typedef struct
959 {
960 mDNSu16 MaxRDLength; // Amount of storage allocated for rdata (usually sizeof(RDataBody))
961 mDNSu16 padding; // So that RDataBody is aligned on 32-bit boundary
962 RDataBody u;
963 } RData;
964
965 // sizeofRDataHeader should be 4 bytes
966 #define sizeofRDataHeader (sizeof(RData) - sizeof(RDataBody))
967
968 // RData_small is a smaller version of the RData object, used for inline data storage embedded in a CacheRecord_struct
969 typedef struct
970 {
971 mDNSu16 MaxRDLength; // Storage allocated for data (may be greater than InlineCacheRDSize if additional storage follows this object)
972 mDNSu16 padding; // So that data is aligned on 32-bit boundary
973 mDNSu8 data[InlineCacheRDSize];
974 } RData_small;
975
976 // Note: Within an mDNSRecordCallback mDNS all API calls are legal except mDNS_Init(), mDNS_Exit(), mDNS_Execute()
977 typedef void mDNSRecordCallback (mDNS *const m, AuthRecord *const rr, mStatus result);
978
979 // Note:
980 // Restrictions: An mDNSRecordUpdateCallback may not make any mDNS API calls.
981 // The intent of this callback is to allow the client to free memory, if necessary.
982 // The internal data structures of the mDNS code may not be in a state where mDNS API calls may be made safely.
983 typedef void mDNSRecordUpdateCallback (mDNS *const m, AuthRecord *const rr, RData *OldRData, mDNSu16 OldRDLen);
984
985 // ***************************************************************************
986 #if 0
987 #pragma mark -
988 #pragma mark - NAT Traversal structures and constants
989 #endif
990
991 #define NATMAP_MAX_RETRY_INTERVAL ((mDNSPlatformOneSecond * 60) * 15) // Max retry interval is 15 minutes
992 #define NATMAP_MIN_RETRY_INTERVAL (mDNSPlatformOneSecond * 2) // Min retry interval is 2 seconds
993 #define NATMAP_INIT_RETRY (mDNSPlatformOneSecond / 4) // start at 250ms w/ exponential decay
994 #define NATMAP_DEFAULT_LEASE (60 * 60 * 2) // 2 hour lease life in seconds
995 #define NATMAP_VERS 0
996
997 typedef enum
998 {
999 NATOp_AddrRequest = 0,
1000 NATOp_MapUDP = 1,
1001 NATOp_MapTCP = 2,
1002
1003 NATOp_AddrResponse = 0x80 | 0,
1004 NATOp_MapUDPResponse = 0x80 | 1,
1005 NATOp_MapTCPResponse = 0x80 | 2,
1006 } NATOp_t;
1007
1008 enum
1009 {
1010 NATErr_None = 0,
1011 NATErr_Vers = 1,
1012 NATErr_Refused = 2,
1013 NATErr_NetFail = 3,
1014 NATErr_Res = 4,
1015 NATErr_Opcode = 5
1016 };
1017
1018 typedef mDNSu16 NATErr_t;
1019
1020 typedef packedstruct
1021 {
1022 mDNSu8 vers;
1023 mDNSu8 opcode;
1024 } NATAddrRequest;
1025
1026 typedef packedstruct
1027 {
1028 mDNSu8 vers;
1029 mDNSu8 opcode;
1030 mDNSu16 err;
1031 mDNSu32 upseconds; // Time since last NAT engine reboot, in seconds
1032 mDNSv4Addr ExtAddr;
1033 } NATAddrReply;
1034
1035 typedef packedstruct
1036 {
1037 mDNSu8 vers;
1038 mDNSu8 opcode;
1039 mDNSOpaque16 unused;
1040 mDNSIPPort intport;
1041 mDNSIPPort extport;
1042 mDNSu32 NATReq_lease;
1043 } NATPortMapRequest;
1044
1045 typedef packedstruct
1046 {
1047 mDNSu8 vers;
1048 mDNSu8 opcode;
1049 mDNSu16 err;
1050 mDNSu32 upseconds; // Time since last NAT engine reboot, in seconds
1051 mDNSIPPort intport;
1052 mDNSIPPort extport;
1053 mDNSu32 NATRep_lease;
1054 } NATPortMapReply;
1055
1056 // PCP Support for IPv4 mappings
1057
1058 #define PCP_VERS 0x02
1059 #define PCP_WAITSECS_AFTER_EPOCH_INVALID 5
1060
1061 typedef enum
1062 {
1063 PCPOp_Announce = 0,
1064 PCPOp_Map = 1
1065 } PCPOp_t;
1066
1067 typedef enum
1068 {
1069 PCPProto_All = 0,
1070 PCPProto_TCP = 6,
1071 PCPProto_UDP = 17
1072 } PCPProto_t;
1073
1074 typedef enum
1075 {
1076 PCPResult_Success = 0,
1077 PCPResult_UnsuppVersion = 1,
1078 PCPResult_NotAuthorized = 2,
1079 PCPResult_MalformedReq = 3,
1080 PCPResult_UnsuppOpcode = 4,
1081 PCPResult_UnsuppOption = 5,
1082 PCPResult_MalformedOption = 6,
1083 PCPResult_NetworkFailure = 7,
1084 PCPResult_NoResources = 8,
1085 PCPResult_UnsuppProtocol = 9,
1086 PCPResult_UserExQuota = 10,
1087 PCPResult_CantProvideExt = 11,
1088 PCPResult_AddrMismatch = 12,
1089 PCPResult_ExcesRemotePeer = 13
1090 } PCPResult_t;
1091
1092 typedef struct
1093 {
1094 mDNSu8 version;
1095 mDNSu8 opCode;
1096 mDNSOpaque16 reserved;
1097 mDNSu32 lifetime;
1098 mDNSv6Addr clientAddr;
1099 mDNSu32 nonce[3];
1100 mDNSu8 protocol;
1101 mDNSu8 reservedMapOp[3];
1102 mDNSIPPort intPort;
1103 mDNSIPPort extPort;
1104 mDNSv6Addr extAddress;
1105 } PCPMapRequest;
1106
1107 typedef struct
1108 {
1109 mDNSu8 version;
1110 mDNSu8 opCode;
1111 mDNSu8 reserved;
1112 mDNSu8 result;
1113 mDNSu32 lifetime;
1114 mDNSu32 epoch;
1115 mDNSu32 clientAddrParts[3];
1116 mDNSu32 nonce[3];
1117 mDNSu8 protocol;
1118 mDNSu8 reservedMapOp[3];
1119 mDNSIPPort intPort;
1120 mDNSIPPort extPort;
1121 mDNSv6Addr extAddress;
1122 } PCPMapReply;
1123
1124 // LNT Support
1125
1126 typedef enum
1127 {
1128 LNTDiscoveryOp = 1,
1129 LNTExternalAddrOp = 2,
1130 LNTPortMapOp = 3,
1131 LNTPortMapDeleteOp = 4
1132 } LNTOp_t;
1133
1134 #define LNT_MAXBUFSIZE 8192
1135 typedef struct tcpLNTInfo_struct tcpLNTInfo;
1136 struct tcpLNTInfo_struct
1137 {
1138 tcpLNTInfo *next;
1139 mDNS *m;
1140 NATTraversalInfo *parentNATInfo; // pointer back to the parent NATTraversalInfo
1141 TCPSocket *sock;
1142 LNTOp_t op; // operation performed using this connection
1143 mDNSAddr Address; // router address
1144 mDNSIPPort Port; // router port
1145 mDNSu8 *Request; // xml request to router
1146 int requestLen;
1147 mDNSu8 *Reply; // xml reply from router
1148 int replyLen;
1149 unsigned long nread; // number of bytes read so far
1150 int retries; // number of times we've tried to do this port mapping
1151 };
1152
1153 typedef void (*NATTraversalClientCallback)(mDNS *m, NATTraversalInfo *n);
1154
1155 // if m->timenow < ExpiryTime then we have an active mapping, and we'll renew halfway to expiry
1156 // if m->timenow >= ExpiryTime then our mapping has expired, and we're trying to create one
1157
1158 typedef enum
1159 {
1160 NATTProtocolNone = 0,
1161 NATTProtocolNATPMP = 1,
1162 NATTProtocolUPNPIGD = 2,
1163 NATTProtocolPCP = 3,
1164 } NATTProtocol;
1165
1166 struct NATTraversalInfo_struct
1167 {
1168 // Internal state fields. These are used internally by mDNSCore; the client layer needn't be concerned with them.
1169 NATTraversalInfo *next;
1170
1171 mDNSs32 ExpiryTime; // Time this mapping expires, or zero if no mapping
1172 mDNSs32 retryInterval; // Current interval, between last packet we sent and the next one
1173 mDNSs32 retryPortMap; // If Protocol is nonzero, time to send our next mapping packet
1174 mStatus NewResult; // New error code; will be copied to Result just prior to invoking callback
1175 NATTProtocol lastSuccessfulProtocol; // To send correct deletion request & update non-PCP external address operations
1176 mDNSBool sentNATPMP; // Whether we just sent a NAT-PMP packet, so we won't send another if
1177 // we receive another NAT-PMP "Unsupported Version" packet
1178
1179 #ifdef _LEGACY_NAT_TRAVERSAL_
1180 tcpLNTInfo tcpInfo; // Legacy NAT traversal (UPnP) TCP connection
1181 #endif
1182
1183 // Result fields: When the callback is invoked these fields contain the answers the client is looking for
1184 // When the callback is invoked ExternalPort is *usually* set to be the same the same as RequestedPort, except:
1185 // (a) When we're behind a NAT gateway with port mapping disabled, ExternalPort is reported as zero to
1186 // indicate that we don't currently have a working mapping (but RequestedPort retains the external port
1187 // we'd like to get, the next time we meet an accomodating NAT gateway willing to give us one).
1188 // (b) When we have a routable non-RFC1918 address, we don't *need* a port mapping, so ExternalPort
1189 // is reported as the same as our InternalPort, since that is effectively our externally-visible port too.
1190 // Again, RequestedPort retains the external port we'd like to get the next time we find ourself behind a NAT gateway.
1191 // To improve stability of port mappings, RequestedPort is updated any time we get a successful
1192 // mapping response from the PCP, NAT-PMP or UPnP gateway. For example, if we ask for port 80, and
1193 // get assigned port 81, then thereafter we'll contine asking for port 81.
1194 mDNSInterfaceID InterfaceID;
1195 mDNSv4Addr ExternalAddress; // Initially set to onesIPv4Addr, until first callback
1196 mDNSv4Addr NewAddress; // May be updated with actual value assigned by gateway
1197 mDNSIPPort ExternalPort;
1198 mDNSu32 Lifetime;
1199 mStatus Result;
1200
1201 // Client API fields: The client must set up these fields *before* making any NAT traversal API calls
1202 mDNSu8 Protocol; // NATOp_MapUDP or NATOp_MapTCP, or zero if just requesting the external IP address
1203 mDNSIPPort IntPort; // Client's internal port number (doesn't change)
1204 mDNSIPPort RequestedPort; // Requested external port; may be updated with actual value assigned by gateway
1205 mDNSu32 NATLease; // Requested lifetime in seconds (doesn't change)
1206 NATTraversalClientCallback clientCallback;
1207 void *clientContext;
1208 };
1209
1210 // ***************************************************************************
1211 #if 0
1212 #pragma mark -
1213 #pragma mark - DNSServer & McastResolver structures and constants
1214 #endif
1215
1216 enum
1217 {
1218 McastResolver_FlagDelete = 1,
1219 McastResolver_FlagNew = 2
1220 };
1221
1222 typedef struct McastResolver
1223 {
1224 struct McastResolver *next;
1225 mDNSInterfaceID interface;
1226 mDNSu32 flags; // Set when we're planning to delete this from the list
1227 domainname domain;
1228 mDNSu32 timeout; // timeout value for questions
1229 } McastResolver;
1230
1231 enum {
1232 Mortality_Mortal = 0, // This cache record can expire and get purged
1233 Mortality_Immortal = 1, // Allow this record to remain in the cache indefinitely
1234 Mortality_Ghost = 2 // An immortal record that has expired and can linger in the cache
1235 };
1236 typedef mDNSu8 MortalityState;
1237
1238 // ScopeType values for DNSServer matching
1239 typedef enum
1240 {
1241 kScopeNone = 0, // DNS server used by unscoped questions
1242 kScopeInterfaceID = 1, // Scoped DNS server used only by scoped questions
1243 kScopeServiceID = 2 // Service specific DNS server used only by questions
1244 // have a matching serviceID
1245 } ScopeType;
1246
1247 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
1248 typedef mDNSu32 DNSServerFlags;
1249 #define DNSServerFlag_Delete (1U << 0)
1250 #if MDNSRESPONDER_SUPPORTS(APPLE, SYMPTOMS)
1251 #define DNSServerFlag_Unreachable (1U << 1)
1252 #endif
1253
1254 typedef struct DNSServer
1255 {
1256 struct DNSServer *next;
1257 mDNSInterfaceID interface; // DNS requests should be sent on this interface
1258 mDNSs32 serviceID; // ServiceID from DNS configuration.
1259 mDNSAddr addr; // DNS server's IP address.
1260 DNSServerFlags flags; // Set when we're planning to delete this from the list.
1261 mDNSs32 penaltyTime; // amount of time this server is penalized
1262 ScopeType scopeType; // See the ScopeType enum above
1263 mDNSu32 timeout; // timeout value for questions
1264 mDNSu32 resGroupID; // ID of the resolver group that contains this DNSServer
1265 mDNSIPPort port; // DNS server's port number.
1266 mDNSBool usableA; // True if A query results are usable over the interface, i.e., interface has IPv4.
1267 mDNSBool usableAAAA; // True if AAAA query results are usable over the interface, i.e., interface has IPv6.
1268 mDNSBool isCell; // True if the interface to this server is cellular.
1269 mDNSBool isExpensive; // True if the interface to this server is expensive.
1270 mDNSBool isConstrained; // True if the interface to this server is constrained.
1271 mDNSBool isCLAT46; // True if the interface to this server supports CLAT46.
1272 domainname domain; // name->server matching for "split dns"
1273 } DNSServer;
1274 #endif
1275
1276 #define kNegativeRecordType_Unspecified 0 // Initializer of ResourceRecord didn't specify why the record is negative.
1277 #define kNegativeRecordType_NoData 1 // The record's name exists, but there are no records of this type.
1278
1279 struct ResourceRecord_struct
1280 {
1281 mDNSu8 RecordType; // See kDNSRecordTypes enum.
1282 mDNSu8 negativeRecordType; // If RecordType is kDNSRecordTypePacketNegative, specifies type of negative record.
1283 MortalityState mortality; // Mortality of this resource record (See MortalityState enum)
1284 mDNSu16 rrtype; // See DNS_TypeValues enum.
1285 mDNSu16 rrclass; // See DNS_ClassValues enum.
1286 mDNSu32 rroriginalttl; // In seconds
1287 mDNSu16 rdlength; // Size of the raw rdata, in bytes, in the on-the-wire format
1288 // (In-memory storage may be larger, for structures containing 'holes', like SOA)
1289 mDNSu16 rdestimate; // Upper bound on on-the-wire size of rdata after name compression
1290 mDNSu32 namehash; // Name-based (i.e. case-insensitive) hash of name
1291 mDNSu32 rdatahash; // For rdata containing domain name (e.g. PTR, SRV, CNAME etc.), case-insensitive name hash
1292 // else, for all other rdata, 32-bit hash of the raw rdata
1293 // Note: This requirement is important. Various routines like AddAdditionalsToResponseList(),
1294 // ReconfirmAntecedents(), etc., use rdatahash as a pre-flight check to see
1295 // whether it's worth doing a full SameDomainName() call. If the rdatahash
1296 // is not a correct case-insensitive name hash, they'll get false negatives.
1297 // Grouping pointers together at the end of the structure improves the memory layout efficiency
1298 mDNSInterfaceID InterfaceID; // Set if this RR is specific to one interface
1299 // For records received off the wire, InterfaceID is *always* set to the receiving interface
1300 // For our authoritative records, InterfaceID is usually zero, except for those few records
1301 // that are interface-specific (e.g. address records, especially linklocal addresses)
1302 const domainname *name;
1303 RData *rdata; // Pointer to storage for this rdata
1304 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
1305 mdns_dns_service_t dnsservice;
1306 mdns_resolver_type_t protocol;
1307 #else
1308 DNSServer *rDNSServer; // Unicast DNS server authoritative for this entry; null for multicast
1309 #endif
1310
1311 #if MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1312 dnssec_result_t dnssec_result; // DNSSEC validation result of the current resource record.
1313 // For all DNSSEC-disabled queries, the result would always be dnssec_indeterminate.
1314 // For DNSSEC-enabled queries, the result would be dnssec_indeterminate,
1315 // dnssec_secure, dnssec_insecure, or dnssec_bogus, see
1316 // <https://tools.ietf.org/html/rfc4033#section-5> for the detailed meaning of
1317 // each state.
1318 #endif
1319 };
1320
1321
1322 // Unless otherwise noted, states may apply to either independent record registrations or service registrations
1323 typedef enum
1324 {
1325 regState_Zero = 0,
1326 regState_Pending = 1, // update sent, reply not received
1327 regState_Registered = 2, // update sent, reply received
1328 regState_DeregPending = 3, // dereg sent, reply not received
1329 regState_Unregistered = 4, // not in any list
1330 regState_Refresh = 5, // outstanding refresh (or target change) message
1331 regState_NATMap = 6, // establishing NAT port mapping
1332 regState_UpdatePending = 7, // update in flight as result of mDNS_Update call
1333 regState_NoTarget = 8, // SRV Record registration pending registration of hostname
1334 regState_NATError = 9 // unable to complete NAT traversal
1335 } regState_t;
1336
1337 enum
1338 {
1339 Target_Manual = 0,
1340 Target_AutoHost = 1,
1341 Target_AutoHostAndNATMAP = 2
1342 };
1343
1344 typedef enum
1345 {
1346 mergeState_Zero = 0,
1347 mergeState_DontMerge = 1 // Set on fatal error conditions to disable merging
1348 } mergeState_t;
1349
1350 #define AUTH_GROUP_NAME_SIZE 128
1351 struct AuthGroup_struct // Header object for a list of AuthRecords with the same name
1352 {
1353 AuthGroup *next; // Next AuthGroup object in this hash table bucket
1354 mDNSu32 namehash; // Name-based (i.e. case insensitive) hash of name
1355 AuthRecord *members; // List of CacheRecords with this same name
1356 AuthRecord **rrauth_tail; // Tail end of that list
1357 domainname *name; // Common name for all AuthRecords in this list
1358 AuthRecord *NewLocalOnlyRecords;
1359 mDNSu8 namestorage[AUTH_GROUP_NAME_SIZE];
1360 };
1361
1362 #ifndef AUTH_HASH_SLOTS
1363 #define AUTH_HASH_SLOTS 499
1364 #endif
1365 #define FORALL_AUTHRECORDS(SLOT,AG,AR) \
1366 for ((SLOT) = 0; (SLOT) < AUTH_HASH_SLOTS; (SLOT)++) \
1367 for ((AG)=m->rrauth.rrauth_hash[(SLOT)]; (AG); (AG)=(AG)->next) \
1368 for ((AR) = (AG)->members; (AR); (AR)=(AR)->next)
1369
1370 typedef union AuthEntity_union AuthEntity;
1371 union AuthEntity_union { AuthEntity *next; AuthGroup ag; };
1372 typedef struct {
1373 mDNSu32 rrauth_size; // Total number of available auth entries
1374 mDNSu32 rrauth_totalused; // Number of auth entries currently occupied
1375 mDNSu32 rrauth_report;
1376 mDNSu8 rrauth_lock; // For debugging: Set at times when these lists may not be modified
1377 AuthEntity *rrauth_free;
1378 AuthGroup *rrauth_hash[AUTH_HASH_SLOTS];
1379 }AuthHash;
1380
1381 // AuthRecordAny includes mDNSInterface_Any and interface specific auth records.
1382 typedef enum
1383 {
1384 AuthRecordAny, // registered for *Any, NOT including P2P interfaces
1385 AuthRecordAnyIncludeP2P, // registered for *Any, including P2P interfaces
1386 AuthRecordAnyIncludeAWDL, // registered for *Any, including AWDL interface
1387 AuthRecordAnyIncludeAWDLandP2P, // registered for *Any, including AWDL and P2P interfaces
1388 AuthRecordLocalOnly,
1389 AuthRecordP2P, // discovered over D2D/P2P framework
1390 } AuthRecType;
1391
1392 #define AuthRecordIncludesAWDL(AR) \
1393 (((AR)->ARType == AuthRecordAnyIncludeAWDL) || ((AR)->ARType == AuthRecordAnyIncludeAWDLandP2P))
1394
1395 typedef enum
1396 {
1397 AuthFlagsWakeOnly = 0x1 // WakeOnly service
1398 } AuthRecordFlags;
1399
1400 struct AuthRecord_struct
1401 {
1402 // For examples of how to set up this structure for use in mDNS_Register(),
1403 // see mDNS_AdvertiseInterface() or mDNS_RegisterService().
1404 // Basically, resrec and persistent metadata need to be set up before calling mDNS_Register().
1405 // mDNS_SetupResourceRecord() is avaliable as a helper routine to set up most fields to sensible default values for you
1406
1407 AuthRecord *next; // Next in list; first element of structure for efficiency reasons
1408 // Field Group 1: Common ResourceRecord fields
1409 ResourceRecord resrec; // 36 bytes when compiling for 32-bit; 48 when compiling for 64-bit (now 44/64)
1410
1411 // Field Group 2: Persistent metadata for Authoritative Records
1412 AuthRecord *Additional1; // Recommended additional record to include in response (e.g. SRV for PTR record)
1413 AuthRecord *Additional2; // Another additional (e.g. TXT for PTR record)
1414 AuthRecord *DependentOn; // This record depends on another for its uniqueness checking
1415 AuthRecord *RRSet; // This unique record is part of an RRSet
1416 mDNSRecordCallback *RecordCallback; // Callback function to call for state changes, and to free memory asynchronously on deregistration
1417 void *RecordContext; // Context parameter for the callback function
1418 mDNSu8 AutoTarget; // Set if the target of this record (PTR, CNAME, SRV, etc.) is our host name
1419 mDNSu8 AllowRemoteQuery; // Set if we allow hosts not on the local link to query this record
1420 mDNSu8 ForceMCast; // Set by client to advertise solely via multicast, even for apparently unicast names
1421 mDNSu8 AuthFlags;
1422
1423 OwnerOptData WakeUp; // WakeUp.HMAC.l[0] nonzero indicates that this is a Sleep Proxy record
1424 mDNSAddr AddressProxy; // For reverse-mapping Sleep Proxy PTR records, address in question
1425 mDNSs32 TimeRcvd; // In platform time units
1426 mDNSs32 TimeExpire; // In platform time units
1427 AuthRecType ARType; // LocalOnly, P2P or Normal ?
1428 mDNSs32 KATimeExpire; // In platform time units: time to send keepalive packet for the proxy record
1429
1430 // Field Group 3: Transient state for Authoritative Records
1431 mDNSs32 ProbingConflictCount; // Number of conflicting records observed during probing.
1432 mDNSs32 LastConflictPktNum; // Number of the last received packet that caused a probing conflict.
1433 mDNSu8 Acknowledged; // Set if we've given the success callback to the client
1434 mDNSu8 ProbeRestartCount; // Number of times we have restarted probing
1435 mDNSu8 ProbeCount; // Number of probes remaining before this record is valid (kDNSRecordTypeUnique)
1436 mDNSu8 AnnounceCount; // Number of announcements remaining (kDNSRecordTypeShared)
1437 mDNSu8 RequireGoodbye; // Set if this RR has been announced on the wire and will require a goodbye packet
1438 mDNSu8 AnsweredLocalQ; // Set if this AuthRecord has been delivered to any local question (LocalOnly or mDNSInterface_Any)
1439 mDNSu8 IncludeInProbe; // Set if this RR is being put into a probe right now
1440 mDNSu8 ImmedUnicast; // Set if we may send our response directly via unicast to the requester
1441 mDNSInterfaceID SendNSECNow; // Set if we need to generate associated NSEC data for this rrname
1442 mDNSInterfaceID ImmedAnswer; // Someone on this interface issued a query we need to answer (all-ones for all interfaces)
1443 #if MDNS_LOG_ANSWER_SUPPRESSION_TIMES
1444 mDNSs32 ImmedAnswerMarkTime;
1445 #endif
1446 mDNSInterfaceID ImmedAdditional; // Hint that we might want to also send this record, just to be helpful
1447 mDNSInterfaceID SendRNow; // The interface this query is being sent on right now
1448 mDNSv4Addr v4Requester; // Recent v4 query for this record, or all-ones if more than one recent query
1449 mDNSv6Addr v6Requester; // Recent v6 query for this record, or all-ones if more than one recent query
1450 AuthRecord *NextResponse; // Link to the next element in the chain of responses to generate
1451 const mDNSu8 *NR_AnswerTo; // Set if this record was selected by virtue of being a direct answer to a question
1452 AuthRecord *NR_AdditionalTo; // Set if this record was selected by virtue of being additional to another
1453 mDNSs32 ThisAPInterval; // In platform time units: Current interval for announce/probe
1454 mDNSs32 LastAPTime; // In platform time units: Last time we sent announcement/probe
1455 mDNSs32 LastMCTime; // Last time we multicast this record (used to guard against packet-storm attacks)
1456 mDNSInterfaceID LastMCInterface; // Interface this record was multicast on at the time LastMCTime was recorded
1457 RData *NewRData; // Set if we are updating this record with new rdata
1458 mDNSu16 newrdlength; // ... and the length of the new RData
1459 mDNSRecordUpdateCallback *UpdateCallback;
1460 mDNSu32 UpdateCredits; // Token-bucket rate limiting of excessive updates
1461 mDNSs32 NextUpdateCredit; // Time next token is added to bucket
1462 mDNSs32 UpdateBlocked; // Set if update delaying is in effect
1463
1464 // Field Group 4: Transient uDNS state for Authoritative Records
1465 regState_t state; // Maybe combine this with resrec.RecordType state? Right now it's ambiguous and confusing.
1466 // e.g. rr->resrec.RecordType can be kDNSRecordTypeUnregistered,
1467 // and rr->state can be regState_Unregistered
1468 // What if we find one of those statements is true and the other false? What does that mean?
1469 mDNSBool uselease; // dynamic update contains (should contain) lease option
1470 mDNSs32 expire; // In platform time units: expiration of lease (-1 for static)
1471 mDNSBool Private; // If zone is private, DNS updates may have to be encrypted to prevent eavesdropping
1472 mDNSOpaque16 updateid; // Identifier to match update request and response -- also used when transferring records to Sleep Proxy
1473 mDNSOpaque64 updateIntID; // Interface IDs (one bit per interface index)to which updates have been sent
1474 const domainname *zone; // the zone that is updated
1475 ZoneData *nta;
1476 struct tcpInfo_t *tcp;
1477 NATTraversalInfo NATinfo;
1478 mDNSBool SRVChanged; // temporarily deregistered service because its SRV target or port changed
1479 mergeState_t mState; // Unicast Record Registrations merge state
1480 mDNSu8 refreshCount; // Number of refreshes to the server
1481 mStatus updateError; // Record update resulted in Error ?
1482
1483 // uDNS_UpdateRecord support fields
1484 // Do we really need all these in *addition* to NewRData and newrdlength above?
1485 void *UpdateContext; // Context parameter for the update callback function
1486 mDNSu16 OrigRDLen; // previously registered, being deleted
1487 mDNSu16 InFlightRDLen; // currently being registered
1488 mDNSu16 QueuedRDLen; // pending operation (re-transmitting if necessary) THEN register the queued update
1489 RData *OrigRData;
1490 RData *InFlightRData;
1491 RData *QueuedRData;
1492
1493 // Field Group 5: Large data objects go at the end
1494 domainname namestorage;
1495 RData rdatastorage; // Normally the storage is right here, except for oversized records
1496 // rdatastorage MUST be the last thing in the structure -- when using oversized AuthRecords, extra bytes
1497 // are appended after the end of the AuthRecord, logically augmenting the size of the rdatastorage
1498 // DO NOT ADD ANY MORE FIELDS HERE
1499 };
1500
1501 // IsLocalDomain alone is not sufficient to determine that a record is mDNS or uDNS. By default domain names within
1502 // the "local" pseudo-TLD (and within the IPv4 and IPv6 link-local reverse mapping domains) are automatically treated
1503 // as mDNS records, but it is also possible to force any record (even those not within one of the inherently local
1504 // domains) to be handled as an mDNS record by setting the ForceMCast flag, or by setting a non-zero InterfaceID.
1505 // For example, the reverse-mapping PTR record created in AdvertiseInterface sets the ForceMCast flag, since it points to
1506 // a dot-local hostname, and therefore it would make no sense to register this record with a wide-area Unicast DNS server.
1507 // The same applies to Sleep Proxy records, which we will answer for when queried via mDNS, but we never want to try
1508 // to register them with a wide-area Unicast DNS server -- and we probably don't have the required credentials anyway.
1509 // Currently we have no concept of a wide-area uDNS record scoped to a particular interface, so if the InterfaceID is
1510 // nonzero we treat this the same as ForceMCast.
1511 // Note: Question_uDNS(Q) is used in *only* one place -- on entry to mDNS_StartQuery_internal, to decide whether to set TargetQID.
1512 // Everywhere else in the code, the determination of whether a question is unicast is made by checking to see if TargetQID is nonzero.
1513 #define AuthRecord_uDNS(R) ((R)->resrec.InterfaceID == mDNSInterface_Any && !(R)->ForceMCast && !IsLocalDomain((R)->resrec.name))
1514 #define Question_uDNS(Q) ((Q)->IsUnicastDotLocal || (Q)->ProxyQuestion || \
1515 ((Q)->InterfaceID != mDNSInterface_LocalOnly && (Q)->InterfaceID != mDNSInterface_P2P && (Q)->InterfaceID != mDNSInterface_BLE && !(Q)->ForceMCast && !IsLocalDomain(&(Q)->qname)))
1516
1517 // AuthRecordLocalOnly records are registered using mDNSInterface_LocalOnly and
1518 // AuthRecordP2P records are created by D2DServiceFound events. Both record types are kept on the same list.
1519 #define RRLocalOnly(rr) ((rr)->ARType == AuthRecordLocalOnly || (rr)->ARType == AuthRecordP2P)
1520
1521 // All other auth records, not including those defined as RRLocalOnly().
1522 #define RRAny(rr) ((rr)->ARType == AuthRecordAny || (rr)->ARType == AuthRecordAnyIncludeP2P || (rr)->ARType == AuthRecordAnyIncludeAWDL || (rr)->ARType == AuthRecordAnyIncludeAWDLandP2P)
1523
1524 // Normally we always lookup the cache and /etc/hosts before sending the query on the wire. For single label
1525 // queries (A and AAAA) that are unqualified (indicated by AppendSearchDomains), we want to append search
1526 // domains before we try them as such
1527 #define ApplySearchDomainsFirst(q) ((q)->AppendSearchDomains && (CountLabels(&((q)->qname))) == 1)
1528
1529 // Wrapper struct for Auth Records for higher-level code that cannot use the AuthRecord's ->next pointer field
1530 typedef struct ARListElem
1531 {
1532 struct ARListElem *next;
1533 AuthRecord ar; // Note: Must be last element of structure, to accomodate oversized AuthRecords
1534 } ARListElem;
1535
1536 struct CacheRecord_struct
1537 {
1538 CacheRecord *next; // Next in list; first element of structure for efficiency reasons
1539 ResourceRecord resrec; // 36 bytes when compiling for 32-bit; 48 when compiling for 64-bit (now 44/64)
1540
1541 // Transient state for Cache Records
1542 CacheRecord *NextInKAList; // Link to the next element in the chain of known answers to send
1543 mDNSs32 TimeRcvd; // In platform time units
1544 mDNSs32 DelayDelivery; // Set if we want to defer delivery of this answer to local clients
1545 mDNSs32 NextRequiredQuery; // In platform time units
1546 #if MDNSRESPONDER_SUPPORTS(APPLE, CACHE_ANALYTICS)
1547 mDNSs32 LastCachedAnswerTime; // Last time this record was used as an answer from the cache (before a query)
1548 // In platform time units
1549 #else
1550 // Extra four bytes here (on 64bit)
1551 #endif
1552 DNSQuestion *CRActiveQuestion; // Points to an active question referencing this answer. Can never point to a NewQuestion.
1553 mDNSs32 LastUnansweredTime; // In platform time units; last time we incremented UnansweredQueries
1554 mDNSu8 UnansweredQueries; // Number of times we've issued a query for this record without getting an answer
1555 mDNSOpaque16 responseFlags; // Second 16 bit in the DNS response
1556 CacheRecord *NextInCFList; // Set if this is in the list of records we just received with the cache flush bit set
1557 CacheRecord *soa; // SOA record to return for proxy questions
1558 #if MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1559 void *denial_of_existence_records; // denial_of_existence_records_t
1560 #endif // MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1561
1562 mDNSAddr sourceAddress; // node from which we received this record
1563 // Size to here is 76 bytes when compiling 32-bit; 104 bytes when compiling 64-bit (now 160 bytes for 64-bit)
1564 RData_small smallrdatastorage; // Storage for small records is right here (4 bytes header + 68 bytes data = 72 bytes)
1565 };
1566
1567 // Should match the CacheGroup_struct members, except namestorage[]. Only used to calculate
1568 // the size of the namestorage array in CacheGroup_struct so that sizeof(CacheGroup) == sizeof(CacheRecord)
1569 struct CacheGroup_base
1570 {
1571 CacheGroup *next;
1572 mDNSu32 namehash;
1573 CacheRecord *members;
1574 CacheRecord **rrcache_tail;
1575 domainname *name;
1576 };
1577
1578 struct CacheGroup_struct // Header object for a list of CacheRecords with the same name
1579 {
1580 CacheGroup *next; // Next CacheGroup object in this hash table bucket
1581 mDNSu32 namehash; // Name-based (i.e. case insensitive) hash of name
1582 CacheRecord *members; // List of CacheRecords with this same name
1583 CacheRecord **rrcache_tail; // Tail end of that list
1584 domainname *name; // Common name for all CacheRecords in this list
1585 mDNSu8 namestorage[sizeof(CacheRecord) - sizeof(struct CacheGroup_base)]; // match sizeof(CacheRecord)
1586 };
1587
1588 // Storage sufficient to hold either a CacheGroup header or a CacheRecord
1589 // -- for best efficiency (to avoid wasted unused storage) they should be the same size
1590 typedef union CacheEntity_union CacheEntity;
1591 union CacheEntity_union { CacheEntity *next; CacheGroup cg; CacheRecord cr; };
1592
1593 typedef struct
1594 {
1595 CacheRecord r;
1596 mDNSu8 _extradata[MaximumRDSize-InlineCacheRDSize]; // Glue on the necessary number of extra bytes
1597 domainname namestorage; // Needs to go *after* the extra rdata bytes
1598 } LargeCacheRecord;
1599
1600 typedef struct HostnameInfo
1601 {
1602 struct HostnameInfo *next;
1603 NATTraversalInfo natinfo;
1604 domainname fqdn;
1605 AuthRecord arv4; // registered IPv4 address record
1606 AuthRecord arv6; // registered IPv6 address record
1607 mDNSRecordCallback *StatusCallback; // callback to deliver success or error code to client layer
1608 const void *StatusContext; // Client Context
1609 } HostnameInfo;
1610
1611 typedef struct ExtraResourceRecord_struct ExtraResourceRecord;
1612 struct ExtraResourceRecord_struct
1613 {
1614 ExtraResourceRecord *next;
1615 mDNSu32 ClientID; // Opaque ID field to be used by client to map an AddRecord call to a set of Extra records
1616 AuthRecord r;
1617 // Note: Add any additional fields *before* the AuthRecord in this structure, not at the end.
1618 // In some cases clients can allocate larger chunks of memory and set r->rdata->MaxRDLength to indicate
1619 // that this extra memory is available, which would result in any fields after the AuthRecord getting smashed
1620 };
1621
1622 // Note: Within an mDNSServiceCallback mDNS all API calls are legal except mDNS_Init(), mDNS_Exit(), mDNS_Execute()
1623 typedef void mDNSServiceCallback (mDNS *const m, ServiceRecordSet *const sr, mStatus result);
1624
1625 // A ServiceRecordSet has no special meaning to the core code of the Multicast DNS protocol engine;
1626 // it is just a convenience structure to group together the records that make up a standard service
1627 // registration so that they can be allocted and deallocted together as a single memory object.
1628 // It contains its own ServiceCallback+ServiceContext to report aggregate results up to the next layer of software above.
1629 // It also contains:
1630 // * the basic PTR/SRV/TXT triplet used to represent any DNS-SD service
1631 // * the "_services" PTR record for service enumeration
1632 // * the optional list of SubType PTR records
1633 // * the optional list of additional records attached to the service set (e.g. iChat pictures)
1634
1635 struct ServiceRecordSet_struct
1636 {
1637 // These internal state fields are used internally by mDNSCore; the client layer needn't be concerned with them.
1638 // No fields need to be set up by the client prior to calling mDNS_RegisterService();
1639 // all required data is passed as parameters to that function.
1640 mDNSServiceCallback *ServiceCallback;
1641 void *ServiceContext;
1642 mDNSBool Conflict; // Set if this record set was forcibly deregistered because of a conflict
1643
1644 ExtraResourceRecord *Extras; // Optional list of extra AuthRecords attached to this service registration
1645 mDNSu32 NumSubTypes;
1646 AuthRecord *SubTypes;
1647 mDNSu32 flags; // saved for subsequent calls to mDNS_RegisterService() if records
1648 // need to be re-registered.
1649 AuthRecord RR_ADV; // e.g. _services._dns-sd._udp.local. PTR _printer._tcp.local.
1650 AuthRecord RR_PTR; // e.g. _printer._tcp.local. PTR Name._printer._tcp.local.
1651 AuthRecord RR_SRV; // e.g. Name._printer._tcp.local. SRV 0 0 port target
1652 AuthRecord RR_TXT; // e.g. Name._printer._tcp.local. TXT PrintQueueName
1653 // Don't add any fields after AuthRecord RR_TXT.
1654 // This is where the implicit extra space goes if we allocate a ServiceRecordSet containing an oversized RR_TXT record
1655 };
1656
1657 // ***************************************************************************
1658 #if 0
1659 #pragma mark -
1660 #pragma mark - Question structures
1661 #endif
1662
1663 // We record the last eight instances of each duplicate query
1664 // This gives us v4/v6 on each of Ethernet, AirPort and Firewire, and two free slots "for future expansion"
1665 // If the host has more active interfaces that this it is not fatal -- duplicate question suppression will degrade gracefully.
1666 // Since we will still remember the last eight, the busiest interfaces will still get the effective duplicate question suppression.
1667 #define DupSuppressInfoSize 8
1668
1669 typedef struct
1670 {
1671 mDNSs32 Time;
1672 mDNSInterfaceID InterfaceID;
1673 mDNSs32 Type; // v4 or v6?
1674 } DupSuppressInfo;
1675
1676 typedef enum
1677 {
1678 // This is the initial state.
1679 LLQ_Init = 1,
1680
1681 // All of these states indicate that we are doing DNS Push, and haven't given up yet.
1682 LLQ_DNSPush_ServerDiscovery = 100,
1683 LLQ_DNSPush_Connecting = 101,
1684 LLQ_DNSPush_Established = 102,
1685
1686 // All of these states indicate that we are doing LLQ and haven't given up yet.
1687 LLQ_InitialRequest = 200,
1688 LLQ_SecondaryRequest = 201,
1689 LLQ_Established = 202,
1690
1691 // If we get here, it means DNS Push isn't available, so we're polling.
1692 LLQ_Poll = 300
1693 } LLQ_State;
1694
1695 // LLQ constants
1696 #define kLLQ_Vers 1
1697 #define kLLQ_DefLease 7200 // 2 hours
1698 #define kLLQ_MAX_TRIES 3 // retry an operation 3 times max
1699 #define kLLQ_INIT_RESEND 2 // resend an un-ack'd packet after 2 seconds, then double for each additional
1700 // LLQ Operation Codes
1701 #define kLLQOp_Setup 1
1702 #define kLLQOp_Refresh 2
1703 #define kLLQOp_Event 3
1704
1705 // LLQ Errror Codes
1706 enum
1707 {
1708 LLQErr_NoError = 0,
1709 LLQErr_ServFull = 1,
1710 LLQErr_Static = 2,
1711 LLQErr_FormErr = 3,
1712 LLQErr_NoSuchLLQ = 4,
1713 LLQErr_BadVers = 5,
1714 LLQErr_UnknownErr = 6
1715 };
1716
1717 enum { NoAnswer_Normal = 0, NoAnswer_Suspended = 1, NoAnswer_Fail = 2 };
1718
1719 typedef enum {
1720 DNSPushServerDisconnected,
1721 DNSPushServerConnectFailed,
1722 DNSPushServerConnectionInProgress,
1723 DNSPushServerConnected,
1724 DNSPushServerSessionEstablished,
1725 DNSPushServerNoDNSPush
1726 } DNSPushServer_ConnectState;
1727
1728 enum {
1729 AllowExpired_None = 0, // Don't allow expired answers or mark answers immortal (behave normally)
1730 AllowExpired_MakeAnswersImmortal = 1, // Any answers to this question get marked as immortal
1731 AllowExpired_AllowExpiredAnswers = 2 // Allow already expired answers from the cache
1732 };
1733 typedef mDNSu8 AllowExpiredState;
1734
1735 #define HMAC_LEN 64
1736 #define HMAC_IPAD 0x36
1737 #define HMAC_OPAD 0x5c
1738 #define MD5_LEN 16
1739
1740 // Internal data structure to maintain authentication information
1741 typedef struct DomainAuthInfo
1742 {
1743 struct DomainAuthInfo *next;
1744 mDNSs32 deltime; // If we're planning to delete this DomainAuthInfo, the time we want it deleted
1745 domainname domain;
1746 domainname keyname;
1747 domainname hostname;
1748 mDNSIPPort port;
1749 char b64keydata[32];
1750 mDNSu8 keydata_ipad[HMAC_LEN]; // padded key for inner hash rounds
1751 mDNSu8 keydata_opad[HMAC_LEN]; // padded key for outer hash rounds
1752 } DomainAuthInfo;
1753
1754 // Note: Within an mDNSQuestionCallback mDNS all API calls are legal except mDNS_Init(), mDNS_Exit(), mDNS_Execute()
1755 // Note: Any value other than QC_rmv i.e., any non-zero value will result in kDNSServiceFlagsAdd to the application
1756 // layer. These values are used within mDNSResponder and not sent across to the application. QC_addnocache is for
1757 // delivering a response without adding to the cache. QC_forceresponse is superset of QC_addnocache where in
1758 // addition to not entering in the cache, it also forces the negative response through.
1759 typedef enum { QC_rmv = 0, QC_add, QC_addnocache, QC_forceresponse, QC_suppressed } QC_result;
1760 typedef void mDNSQuestionCallback (mDNS *const m, DNSQuestion *question, const ResourceRecord *const answer, QC_result AddRecord);
1761 typedef void (*mDNSQuestionResetHandler)(DNSQuestion *question);
1762 typedef void AsyncDispatchFunc(mDNS *const m, void *context);
1763 extern void mDNSPlatformDispatchAsync(mDNS *const m, void *context, AsyncDispatchFunc func);
1764
1765 #define NextQSendTime(Q) ((Q)->LastQTime + (Q)->ThisQInterval)
1766 #define ActiveQuestion(Q) ((Q)->ThisQInterval > 0 && !(Q)->DuplicateOf)
1767 #define TimeToSendThisQuestion(Q,time) (ActiveQuestion(Q) && (time) - NextQSendTime(Q) >= 0)
1768
1769 #if MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1770 #define FollowCNAMEOptionDNSSEC(Q) !(Q)->DNSSECStatus.enable_dnssec
1771 #else // MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1772 #define FollowCNAMEOptionDNSSEC(Q) mDNStrue
1773 #endif // MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1774
1775 // Given the resource record and the question, should we follow the CNAME ?
1776 #define FollowCNAME(q, rr, AddRecord) (AddRecord && (q)->qtype != kDNSType_CNAME && \
1777 (rr)->RecordType != kDNSRecordTypePacketNegative && \
1778 (rr)->rrtype == kDNSType_CNAME \
1779 && FollowCNAMEOptionDNSSEC(q))
1780
1781 // RFC 4122 defines it to be 16 bytes
1782 #define UUID_SIZE 16
1783
1784 #if MDNSRESPONDER_SUPPORTS(APPLE, METRICS)
1785 enum
1786 {
1787 ExpiredAnswer_None = 0, // No expired answers used
1788 ExpiredAnswer_Allowed = 1, // An expired answer is allowed by this request
1789 ExpiredAnswer_AnsweredWithCache = 2, // Question was answered with a cached answer
1790 ExpiredAnswer_AnsweredWithExpired = 3, // Question was answered with an expired answer
1791 ExpiredAnswer_ExpiredAnswerChanged = 4, // Expired answer changed on refresh
1792
1793 ExpiredAnswer_EnumCount
1794 };
1795 typedef mDNSu8 ExpiredAnswerMetric;
1796
1797 enum
1798 {
1799 DNSOverTCP_None = 0, // DNS Over TCP not used
1800 DNSOverTCP_Truncated = 1, // DNS Over TCP used because UDP reply was truncated
1801 DNSOverTCP_Suspicious = 2, // DNS Over TCP used because we received a suspicious reply
1802 DNSOverTCP_SuspiciousDefense = 3, // DNS Over TCP used because we were within the timeframe of a previous suspicious response
1803
1804 DNSOverTCP_EnumCount
1805 };
1806 typedef mDNSu8 DNSOverTCPMetric;
1807
1808 typedef struct
1809 {
1810 domainname * originalQName; // Name of original A/AAAA record if this question is for a CNAME record.
1811 mDNSu32 querySendCount; // Number of queries that have been sent to DNS servers so far.
1812 mDNSs32 firstQueryTime; // The time when the first query was sent to a DNS server.
1813 mDNSBool answered; // Has this question been answered?
1814 ExpiredAnswerMetric expiredAnswerState; // Expired answer state (see ExpiredAnswerMetric above)
1815 DNSOverTCPMetric dnsOverTCPState; // DNS Over TCP state (see DNSOverTCPMetric above)
1816
1817 } uDNSMetrics;
1818 #endif
1819
1820 #if MDNSRESPONDER_SUPPORTS(APPLE, METRICS)
1821 extern mDNSu32 curr_num_regservices; // tracks the current number of services registered
1822 extern mDNSu32 max_num_regservices; // tracks the max number of simultaneous services registered by the device
1823 #endif
1824
1825 #if MDNSRESPONDER_SUPPORTS(APPLE, DNS64)
1826 #include "DNS64State.h"
1827 #endif
1828
1829 typedef struct mDNS_DNSPushNotificationServer DNSPushNotificationServer;
1830 typedef struct mDNS_DNSPushNotificationZone DNSPushNotificationZone;
1831
1832 struct DNSQuestion_struct
1833 {
1834 // Internal state fields. These are used internally by mDNSCore; the client layer needn't be concerned with them.
1835 DNSQuestion *next;
1836 mDNSu32 qnamehash;
1837 mDNSs32 DelayAnswering; // Set if we want to defer answering this question until the cache settles
1838 mDNSs32 LastQTime; // Last scheduled transmission of this Q on *all* applicable interfaces
1839 mDNSs32 ThisQInterval; // LastQTime + ThisQInterval is the next scheduled transmission of this Q
1840 // ThisQInterval > 0 for an active question;
1841 // ThisQInterval = 0 for a suspended question that's still in the list
1842 // ThisQInterval = -1 for a cancelled question (should not still be in list)
1843 mDNSs32 ExpectUnicastResp; // Set when we send a query with the kDNSQClass_UnicastResponse bit set
1844 mDNSs32 LastAnswerPktNum; // The sequence number of the last response packet containing an answer to this Q
1845 mDNSu32 RecentAnswerPkts; // Number of answers since the last time we sent this query
1846 mDNSu32 CurrentAnswers; // Number of records currently in the cache that answer this question
1847 mDNSu32 BrowseThreshold; // If we have received at least this number of answers,
1848 // set the next question interval to MaxQuestionInterval
1849 mDNSu32 LargeAnswers; // Number of answers with rdata > 1024 bytes
1850 mDNSu32 UniqueAnswers; // Number of answers received with kDNSClass_UniqueRRSet bit set
1851 mDNSInterfaceID FlappingInterface1; // Set when an interface goes away, to flag if remove events are delivered for this Q
1852 mDNSInterfaceID FlappingInterface2; // Set when an interface goes away, to flag if remove events are delivered for this Q
1853 DomainAuthInfo *AuthInfo; // Non-NULL if query is currently being done using Private DNS
1854 DNSQuestion *DuplicateOf;
1855 DNSQuestion *NextInDQList;
1856 DupSuppressInfo DupSuppress[DupSuppressInfoSize];
1857 mDNSInterfaceID SendQNow; // The interface this query is being sent on right now
1858 mDNSBool SendOnAll; // Set if we're sending this question on all active interfaces
1859 mDNSBool CachedAnswerNeedsUpdate; // See SendQueries(). Set if we're sending this question
1860 // because a cached answer needs to be refreshed.
1861 mDNSu32 RequestUnicast; // Non-zero if we want to send query with kDNSQClass_UnicastResponse bit set
1862 mDNSs32 LastQTxTime; // Last time this Q was sent on one (but not necessarily all) interfaces
1863 mDNSu32 CNAMEReferrals; // Count of how many CNAME redirections we've done
1864 mDNSBool Suppressed; // This query should be suppressed, i.e., not sent on the wire.
1865 mDNSu8 LOAddressAnswers; // Number of answers from the local only auth records that are
1866 // answering A, AAAA, CNAME, or PTR (/etc/hosts)
1867 mDNSu8 WakeOnResolveCount; // Number of wakes that should be sent on resolve
1868 mDNSBool InitialCacheMiss; // True after the question cannot be answered from the cache
1869 mDNSs32 StopTime; // Time this question should be stopped by giving them a negative answer
1870
1871 // Wide Area fields. These are used internally by the uDNS core (Unicast)
1872 UDPSocket *LocalSocket;
1873
1874 // |-> DNS Configuration related fields used in uDNS (Subset of Wide Area/Unicast fields)
1875 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
1876 mdns_dns_service_t dnsservice; // The current DNS service.
1877 mdns_dns_service_id_t lastDNSServiceID; // The ID of the previous DNS service before a CNAME restart.
1878 mdns_querier_t querier; // The current querier.
1879 #else
1880 DNSServer *qDNSServer; // Caching server for this query (in the absence of an SRV saying otherwise)
1881 mDNSOpaque128 validDNSServers; // Valid DNSServers for this question
1882 mDNSu16 noServerResponse; // At least one server did not respond.
1883 mDNSBool triedAllServersOnce; // True if all DNS servers have been tried once.
1884 mDNSu8 unansweredQueries; // The number of unanswered queries to this server
1885 #endif
1886 AllowExpiredState allowExpired; // Allow expired answers state (see enum AllowExpired_None, etc. above)
1887
1888 ZoneData *nta; // Used for getting zone data for private or LLQ query
1889 mDNSAddr servAddr; // Address and port learned from _dns-llq, _dns-llq-tls or _dns-query-tls SRV query
1890 mDNSIPPort servPort;
1891 struct tcpInfo_t *tcp;
1892 mDNSIPPort tcpSrcPort; // Local Port TCP packet received on;need this as tcp struct is disposed
1893 // by tcpCallback before calling into mDNSCoreReceive
1894 mDNSu8 NoAnswer; // Set if we want to suppress answers until tunnel setup has completed
1895 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
1896 mDNSBool Restart; // This question should be restarted soon.
1897 #endif
1898
1899 // LLQ-specific fields. These fields are only meaningful when LongLived flag is set
1900 LLQ_State state;
1901 mDNSu32 ReqLease; // seconds (relative)
1902 mDNSs32 expire; // ticks (absolute)
1903 mDNSs16 ntries; // for UDP: the number of packets sent for this LLQ state
1904 // for TCP: there is some ambiguity in the use of this variable, but in general, it is
1905 // the number of TCP/TLS connection attempts for this LLQ state, or
1906 // the number of packets sent for this TCP/TLS connection
1907
1908 // DNS Push Notification fields. These fields are only meaningful when LongLived flag is set
1909 DNSPushNotificationServer *dnsPushServer;
1910
1911 mDNSOpaque64 id;
1912
1913 // DNS Proxy fields
1914 mDNSOpaque16 responseFlags; // Temporary place holder for the error we get back from the DNS server
1915 // till we populate in the cache
1916 mDNSBool BlockedByPolicy; // True if the question is blocked by policy rule evaluation.
1917 mDNSs32 ServiceID; // Service identifier to match against the DNS server
1918 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
1919 mDNSu8 ResolverUUID[UUID_SIZE]; // Resolver UUID to match against the DNS server
1920 mdns_dns_service_id_t CustomID;
1921 #endif
1922
1923 // Client API fields: The client must set up these fields *before* calling mDNS_StartQuery()
1924 mDNSInterfaceID InterfaceID; // Non-zero if you want to issue queries only on a single specific IP interface
1925 mDNSu32 flags; // flags from original DNSService*() API request.
1926 mDNSOpaque16 TargetQID; // DNS or mDNS message ID.
1927 domainname qname;
1928 domainname firstExpiredQname; // first expired qname in request chain
1929 mDNSu16 qtype;
1930 mDNSu16 qclass;
1931 mDNSBool LongLived; // Set by client for calls to mDNS_StartQuery to indicate LLQs to unicast layer.
1932 mDNSBool ExpectUnique; // Set by client if it's expecting unique RR(s) for this question, not shared RRs
1933 mDNSBool ForceMCast; // Set by client to force mDNS query, even for apparently uDNS names
1934 mDNSBool ReturnIntermed; // Set by client to request callbacks for intermediate CNAME/NXDOMAIN results
1935 mDNSBool SuppressUnusable; // Set by client to suppress unusable queries to be sent on the wire
1936 mDNSBool TimeoutQuestion; // Timeout this question if there is no reply in configured time
1937 mDNSBool IsUnicastDotLocal; // True if this is a dot-local query that should be answered via unicast DNS.
1938 mDNSBool WakeOnResolve; // Send wakeup on resolve
1939 mDNSBool UseBackgroundTraffic; // Set by client to use background traffic class for request
1940 mDNSBool AppendSearchDomains; // Search domains can be appended for this query
1941 mDNSBool ForcePathEval; // Perform a path evaluation even if kDNSServiceFlagsPathEvaluationDone is set.
1942 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
1943 mDNSBool RequireEncryption; // Set by client to require encrypted queries
1944 #endif
1945 #if MDNSRESPONDER_SUPPORTS(APPLE, AUDIT_TOKEN)
1946 mDNSBool inAppBrowserRequest; // Is request associated with an in-app-browser
1947 audit_token_t peerAuditToken; // audit token of the peer requesting the question
1948 audit_token_t delegateAuditToken; // audit token of the delegated client the question is for
1949 #endif
1950 mDNSu8 ProxyQuestion; // Proxy Question
1951 mDNSs32 pid; // Process ID of the client that is requesting the question
1952 mDNSu8 uuid[UUID_SIZE]; // Unique ID of the client that is requesting the question (valid only if pid is zero)
1953 mDNSu32 euid; // Effective User Id of the client that is requesting the question
1954 mDNSu32 request_id; // The ID of request that generates the current question
1955 mDNSQuestionCallback *QuestionCallback;
1956 mDNSQuestionResetHandler ResetHandler;
1957 void *QuestionContext;
1958 #if MDNSRESPONDER_SUPPORTS(APPLE, METRICS)
1959 uDNSMetrics metrics; // Data used for collecting unicast DNS query metrics.
1960 #endif
1961 #if MDNSRESPONDER_SUPPORTS(APPLE, DNS64)
1962 DNS64 dns64; // DNS64 state for performing IPv6 address synthesis on networks with NAT64.
1963 #endif
1964 #if MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1965 dnssec_status_t DNSSECStatus; // DNSSEC state for fectching DNSSEC records and doing validation
1966 #endif // MDNSRESPONDER_SUPPORTS(APPLE, DNSSECv2)
1967 };
1968
1969 typedef enum { ZoneServiceUpdate, ZoneServiceQuery, ZoneServiceLLQ, ZoneServiceDNSPush } ZoneService;
1970
1971 typedef void ZoneDataCallback (mDNS *const m, mStatus err, const ZoneData *result);
1972
1973 struct ZoneData_struct
1974 {
1975 domainname ChildName; // Name for which we're trying to find the responsible server
1976 ZoneService ZoneService; // Which service we're seeking for this zone (update, query, or LLQ)
1977 domainname *CurrentSOA; // Points to somewhere within ChildName
1978 domainname ZoneName; // Discovered result: Left-hand-side of SOA record
1979 mDNSu16 ZoneClass; // Discovered result: DNS Class from SOA record
1980 domainname Host; // Discovered result: Target host from SRV record
1981 mDNSIPPort Port; // Discovered result: Update port, query port, or LLQ port from SRV record
1982 mDNSAddr Addr; // Discovered result: Address of Target host from SRV record
1983 mDNSBool ZonePrivate; // Discovered result: Does zone require encrypted queries?
1984 ZoneDataCallback *ZoneDataCallback; // Caller-specified function to be called upon completion
1985 void *ZoneDataContext;
1986 DNSQuestion question; // Storage for any active question
1987 };
1988
1989 extern ZoneData *StartGetZoneData(mDNS *const m, const domainname *const name, const ZoneService target, ZoneDataCallback callback, void *callbackInfo);
1990 extern void CancelGetZoneData(mDNS *const m, ZoneData *nta);
1991 extern mDNSBool IsGetZoneDataQuestion(DNSQuestion *q);
1992
1993 typedef struct DNameListElem
1994 {
1995 struct DNameListElem *next;
1996 mDNSu32 uid;
1997 domainname name;
1998 } DNameListElem;
1999
2000 #if APPLE_OSX_mDNSResponder
2001 // Different states that we go through locating the peer
2002 #define TC_STATE_AAAA_PEER 0x000000001 /* Peer's BTMM IPv6 address */
2003 #define TC_STATE_AAAA_PEER_RELAY 0x000000002 /* Peer's IPv6 Relay address */
2004 #define TC_STATE_SRV_PEER 0x000000003 /* Peer's SRV Record corresponding to IPv4 address */
2005 #define TC_STATE_ADDR_PEER 0x000000004 /* Peer's IPv4 address */
2006
2007 typedef struct ClientTunnel
2008 {
2009 struct ClientTunnel *next;
2010 domainname dstname;
2011 mDNSBool MarkedForDeletion;
2012 mDNSv6Addr loc_inner;
2013 mDNSv4Addr loc_outer;
2014 mDNSv6Addr loc_outer6;
2015 mDNSv6Addr rmt_inner;
2016 mDNSv4Addr rmt_outer;
2017 mDNSv6Addr rmt_outer6;
2018 mDNSIPPort rmt_outer_port;
2019 mDNSu16 tc_state;
2020 DNSQuestion q;
2021 } ClientTunnel;
2022 #endif
2023
2024 // ***************************************************************************
2025 #if 0
2026 #pragma mark -
2027 #pragma mark - NetworkInterfaceInfo_struct
2028 #endif
2029
2030 typedef struct NetworkInterfaceInfo_struct NetworkInterfaceInfo;
2031
2032 // A NetworkInterfaceInfo_struct serves two purposes:
2033 // 1. It holds the address, PTR and HINFO records to advertise a given IP address on a given physical interface
2034 // 2. It tells mDNSCore which physical interfaces are available; each physical interface has its own unique InterfaceID.
2035 // Since there may be multiple IP addresses on a single physical interface,
2036 // there may be multiple NetworkInterfaceInfo_structs with the same InterfaceID.
2037 // In this case, to avoid sending the same packet n times, when there's more than one
2038 // struct with the same InterfaceID, mDNSCore picks one member of the set to be the
2039 // active representative of the set; all others have the 'InterfaceActive' flag unset.
2040
2041 struct NetworkInterfaceInfo_struct
2042 {
2043 // Internal state fields. These are used internally by mDNSCore; the client layer needn't be concerned with them.
2044 NetworkInterfaceInfo *next;
2045
2046 mDNSu8 InterfaceActive; // Set if interface is sending & receiving packets (see comment above)
2047 mDNSu8 IPv4Available; // If InterfaceActive, set if v4 available on this InterfaceID
2048 mDNSu8 IPv6Available; // If InterfaceActive, set if v6 available on this InterfaceID
2049
2050 DNSQuestion NetWakeBrowse;
2051 DNSQuestion NetWakeResolve[3]; // For fault-tolerance, we try up to three Sleep Proxies
2052 mDNSAddr SPSAddr[3];
2053 mDNSIPPort SPSPort[3];
2054 mDNSs32 NextSPSAttempt; // -1 if we're not currently attempting to register with any Sleep Proxy
2055 mDNSs32 NextSPSAttemptTime;
2056
2057 // Standard AuthRecords that every Responder host should have (one per active IP address)
2058 AuthRecord RR_A; // 'A' or 'AAAA' (address) record for our ".local" name
2059 AuthRecord RR_PTR; // PTR (reverse lookup) record
2060 #if MDNSRESPONDER_SUPPORTS(APPLE, RANDOM_AWDL_HOSTNAME)
2061 AuthRecord RR_AddrRand; // For non-AWDL interfaces, this is the A or AAAA record of the randomized hostname.
2062 #endif
2063
2064 // Client API fields: The client must set up these fields *before* calling mDNS_RegisterInterface()
2065 mDNSInterfaceID InterfaceID; // Identifies physical interface; MUST NOT be 0, -1, or -2
2066 mDNSAddr ip; // The IPv4 or IPv6 address to advertise
2067 mDNSAddr mask;
2068 mDNSEthAddr MAC;
2069 char ifname[64]; // Windows uses a GUID string for the interface name, which doesn't fit in 16 bytes
2070 mDNSu8 Advertise; // False if you are only searching on this interface
2071 mDNSu8 McastTxRx; // Send/Receive multicast on this { InterfaceID, address family } ?
2072 mDNSu8 NetWake; // Set if Wake-On-Magic-Packet is enabled on this interface
2073 mDNSu8 Loopback; // Set if this is the loopback interface
2074 mDNSu8 IgnoreIPv4LL; // Set if IPv4 Link-Local addresses have to be ignored.
2075 mDNSu8 SendGoodbyes; // Send goodbyes on this interface while sleeping
2076 mDNSBool DirectLink; // a direct link, indicating we can skip the probe for
2077 // address records
2078 mDNSBool SupportsUnicastMDNSResponse; // Indicates that the interface supports unicast responses
2079 // to Bonjour queries. Generally true for an interface.
2080 };
2081
2082 #define SLE_DELETE 0x00000001
2083 #define SLE_WAB_BROWSE_QUERY_STARTED 0x00000002
2084 #define SLE_WAB_LBROWSE_QUERY_STARTED 0x00000004
2085 #define SLE_WAB_REG_QUERY_STARTED 0x00000008
2086
2087 typedef struct SearchListElem
2088 {
2089 struct SearchListElem *next;
2090 domainname domain;
2091 int flag;
2092 mDNSInterfaceID InterfaceID;
2093 DNSQuestion BrowseQ;
2094 DNSQuestion DefBrowseQ;
2095 DNSQuestion AutomaticBrowseQ;
2096 DNSQuestion RegisterQ;
2097 DNSQuestion DefRegisterQ;
2098 int numCfAnswers;
2099 ARListElem *AuthRecs;
2100 } SearchListElem;
2101
2102 // For domain enumeration and automatic browsing
2103 // This is the user's DNS search list.
2104 // In each of these domains we search for our special pointer records (lb._dns-sd._udp.<domain>, etc.)
2105 // to discover recommended domains for domain enumeration (browse, default browse, registration,
2106 // default registration) and possibly one or more recommended automatic browsing domains.
2107 extern SearchListElem *SearchList; // This really ought to be part of mDNS_struct -- SC
2108
2109 // ***************************************************************************
2110 #if 0
2111 #pragma mark -
2112 #pragma mark - Main mDNS object, used to hold all the mDNS state
2113 #endif
2114
2115 typedef void mDNSCallback (mDNS *const m, mStatus result);
2116
2117 #ifndef CACHE_HASH_SLOTS
2118 #define CACHE_HASH_SLOTS 499
2119 #endif
2120
2121 enum
2122 {
2123 SleepState_Awake = 0,
2124 SleepState_Transferring = 1,
2125 SleepState_Sleeping = 2
2126 };
2127
2128 typedef struct
2129 {
2130 mDNSu32 NameConflicts; // Normal Name conflicts
2131 mDNSu32 KnownUniqueNameConflicts; // Name Conflicts for KnownUnique Records
2132 mDNSu32 DupQuerySuppressions; // Duplicate query suppressions
2133 mDNSu32 KnownAnswerSuppressions; // Known Answer suppressions
2134 mDNSu32 KnownAnswerMultiplePkts; // Known Answer in queries spannign multiple packets
2135 mDNSu32 PoofCacheDeletions; // Number of times the cache was deleted due to POOF
2136 mDNSu32 UnicastBitInQueries; // Queries with QU bit set
2137 mDNSu32 NormalQueries; // Queries with QU bit not set
2138 mDNSu32 MatchingAnswersForQueries; // Queries for which we had a response
2139 mDNSu32 UnicastResponses; // Unicast responses to queries
2140 mDNSu32 MulticastResponses; // Multicast responses to queries
2141 mDNSu32 UnicastDemotedToMulticast; // Number of times unicast demoted to multicast
2142 mDNSu32 Sleeps; // Total sleeps
2143 mDNSu32 Wakes; // Total wakes
2144 mDNSu32 InterfaceUp; // Total Interface UP events
2145 mDNSu32 InterfaceUpFlap; // Total Interface UP events with flaps
2146 mDNSu32 InterfaceDown; // Total Interface Down events
2147 mDNSu32 InterfaceDownFlap; // Total Interface Down events with flaps
2148 mDNSu32 CacheRefreshQueries; // Number of queries that we sent for refreshing cache
2149 mDNSu32 CacheRefreshed; // Number of times the cache was refreshed due to a response
2150 mDNSu32 WakeOnResolves; // Number of times we did a wake on resolve
2151 } mDNSStatistics;
2152
2153 extern void LogMDNSStatisticsToFD(int fd, mDNS *const m);
2154
2155 // Time constant (~= 260 hours ~= 10 days and 21 hours) used to set
2156 // various time values to a point well into the future.
2157 #define FutureTime 0x38000000
2158
2159 struct mDNS_struct
2160 {
2161 // Internal state fields. These hold the main internal state of mDNSCore;
2162 // the client layer needn't be concerned with them.
2163 // No fields need to be set up by the client prior to calling mDNS_Init();
2164 // all required data is passed as parameters to that function.
2165
2166 mDNS_PlatformSupport *p; // Pointer to platform-specific data of indeterminite size
2167 mDNSs32 NetworkChanged;
2168 mDNSBool CanReceiveUnicastOn5353;
2169 mDNSBool AdvertiseLocalAddresses;
2170 mDNSBool DivertMulticastAdvertisements; // from interfaces that do not advertise local addresses to local-only
2171 mStatus mDNSPlatformStatus;
2172 mDNSIPPort UnicastPort4;
2173 mDNSIPPort UnicastPort6;
2174 mDNSEthAddr PrimaryMAC; // Used as unique host ID
2175 mDNSCallback *MainCallback;
2176 void *MainContext;
2177
2178 // For debugging: To catch and report locking failures
2179 mDNSu32 mDNS_busy; // Incremented between mDNS_Lock/mDNS_Unlock section
2180 mDNSu32 mDNS_reentrancy; // Incremented when calling a client callback
2181 mDNSu8 lock_rrcache; // For debugging: Set at times when these lists may not be modified
2182 mDNSu8 lock_Questions;
2183 mDNSu8 lock_Records;
2184
2185 // Task Scheduling variables
2186 mDNSs32 timenow_adjust; // Correction applied if we ever discover time went backwards
2187 mDNSs32 timenow; // The time that this particular activation of the mDNS code started
2188 mDNSs32 timenow_last; // The time the last time we ran
2189 mDNSs32 NextScheduledEvent; // Derived from values below
2190 mDNSs32 ShutdownTime; // Set when we're shutting down; allows us to skip some unnecessary steps
2191 mDNSs32 SuppressSending; // Don't send local-link mDNS packets during this time
2192 mDNSs32 NextCacheCheck; // Next time to refresh cache record before it expires
2193 mDNSs32 NextScheduledQuery; // Next time to send query in its exponential backoff sequence
2194 mDNSs32 NextScheduledProbe; // Next time to probe for new authoritative record
2195 mDNSs32 NextScheduledResponse; // Next time to send authoritative record(s) in responses
2196 mDNSs32 NextScheduledNATOp; // Next time to send NAT-traversal packets
2197 mDNSs32 NextScheduledSPS; // Next time to purge expiring Sleep Proxy records
2198 mDNSs32 NextScheduledKA; // Next time to send Keepalive packets (SPS)
2199 #if MDNSRESPONDER_SUPPORTS(APPLE, BONJOUR_ON_DEMAND)
2200 mDNSs32 NextBonjourDisableTime; // Next time to leave multicast group if Bonjour on Demand is enabled
2201 mDNSu8 BonjourEnabled; // Non zero if Bonjour is currently enabled by the Bonjour on Demand logic
2202 #endif
2203 mDNSs32 RandomQueryDelay; // For de-synchronization of query packets on the wire
2204 mDNSu32 RandomReconfirmDelay; // For de-synchronization of reconfirmation queries on the wire
2205 mDNSs32 PktNum; // Unique sequence number assigned to each received packet
2206 mDNSs32 MPktNum; // Unique sequence number assigned to each received Multicast packet
2207 mDNSu8 LocalRemoveEvents; // Set if we may need to deliver remove events for local-only questions and/or local-only records
2208 mDNSu8 SleepState; // Set if we're sleeping
2209 mDNSu8 SleepSeqNum; // "Epoch number" of our current period of wakefulness
2210 mDNSu8 SystemWakeOnLANEnabled; // Set if we want to register with a Sleep Proxy before going to sleep
2211 mDNSu8 SentSleepProxyRegistration; // Set if we registered (or tried to register) with a Sleep Proxy
2212 mDNSu8 SystemSleepOnlyIfWakeOnLAN; // Set if we may only sleep if we managed to register with a Sleep Proxy
2213 mDNSs32 AnnounceOwner; // After waking from sleep, include OWNER option in packets until this time
2214 mDNSs32 DelaySleep; // To inhibit re-sleeping too quickly right after wake
2215 mDNSs32 SleepLimit; // Time window to allow deregistrations, etc.,
2216 // during which underying platform layer should inhibit system sleep
2217 mDNSs32 TimeSlept; // Time we went to sleep.
2218
2219 mDNSs32 UnicastPacketsSent; // Number of unicast packets sent.
2220 mDNSs32 MulticastPacketsSent; // Number of multicast packets sent.
2221 mDNSs32 RemoteSubnet; // Multicast packets received from outside our subnet.
2222
2223 mDNSs32 NextScheduledSPRetry; // Time next sleep proxy registration action is required.
2224 // Only valid if SleepLimit is nonzero and DelaySleep is zero.
2225
2226 mDNSs32 NextScheduledStopTime; // Next time to stop a question
2227
2228 mDNSs32 NextBLEServiceTime; // Next time to call the BLE discovery management layer. Non zero when active.
2229
2230 // These fields only required for mDNS Searcher...
2231 DNSQuestion *Questions; // List of all registered questions, active and inactive
2232 DNSQuestion *NewQuestions; // Fresh questions not yet answered from cache
2233 DNSQuestion *CurrentQuestion; // Next question about to be examined in AnswerLocalQuestions()
2234 DNSQuestion *LocalOnlyQuestions; // Questions with InterfaceID set to mDNSInterface_LocalOnly or mDNSInterface_P2P
2235 DNSQuestion *NewLocalOnlyQuestions; // Fresh local-only or P2P questions not yet answered
2236 DNSQuestion *RestartQuestion; // Questions that are being restarted (stop followed by start)
2237 mDNSu32 rrcache_size; // Total number of available cache entries
2238 mDNSu32 rrcache_totalused; // Number of cache entries currently occupied
2239 mDNSu32 rrcache_totalused_unicast; // Number of cache entries currently occupied by unicast
2240 mDNSu32 rrcache_active; // Number of cache entries currently occupied by records that answer active questions
2241 mDNSu32 rrcache_report;
2242 CacheEntity *rrcache_free;
2243 CacheGroup *rrcache_hash[CACHE_HASH_SLOTS];
2244 mDNSs32 rrcache_nextcheck[CACHE_HASH_SLOTS];
2245
2246 AuthHash rrauth;
2247
2248 // Fields below only required for mDNS Responder...
2249 domainlabel nicelabel; // Rich text label encoded using canonically precomposed UTF-8
2250 domainlabel hostlabel; // Conforms to RFC 1034 "letter-digit-hyphen" ARPANET host name rules
2251 domainname MulticastHostname; // Fully Qualified "dot-local" Host Name, e.g. "Foo.local."
2252 #if MDNSRESPONDER_SUPPORTS(APPLE, RANDOM_AWDL_HOSTNAME)
2253 domainname RandomizedHostname; // Randomized hostname to use for services involving AWDL interfaces. This is to
2254 // avoid using a hostname derived from the device's name, which may contain the
2255 // owner's real name, (e.g., "Steve's iPhone" -> "Steves-iPhone.local"), which is a
2256 // privacy concern.
2257 mDNSu32 AutoTargetAWDLIncludedCount;// Number of registered AWDL-included auto-target records.
2258 mDNSu32 AutoTargetAWDLOnlyCount; // Number of registered AWDL-only auto-target records.
2259 #endif
2260 UTF8str255 HIHardware;
2261 UTF8str255 HISoftware;
2262 AuthRecord DeviceInfo;
2263 AuthRecord *ResourceRecords;
2264 AuthRecord *DuplicateRecords; // Records currently 'on hold' because they are duplicates of existing records
2265 AuthRecord *NewLocalRecords; // Fresh AuthRecords (public) not yet delivered to our local-only questions
2266 AuthRecord *CurrentRecord; // Next AuthRecord about to be examined
2267 mDNSBool NewLocalOnlyRecords; // Fresh AuthRecords (local only) not yet delivered to our local questions
2268 NetworkInterfaceInfo *HostInterfaces;
2269 mDNSs32 ProbeFailTime;
2270 mDNSu32 NumFailedProbes;
2271 mDNSs32 SuppressProbes;
2272 Platform_t mDNS_plat; // Why is this here in the “only required for mDNS Responder” section? -- SC
2273
2274 // Unicast-specific data
2275 mDNSs32 NextuDNSEvent; // uDNS next event
2276 mDNSs32 NextSRVUpdate; // Time to perform delayed update
2277
2278 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
2279 DNSServer *DNSServers; // list of DNS servers
2280 #endif
2281 McastResolver *McastResolvers; // list of Mcast Resolvers
2282
2283 mDNSAddr Router;
2284 mDNSAddr AdvertisedV4; // IPv4 address pointed to by hostname
2285 mDNSAddr AdvertisedV6; // IPv6 address pointed to by hostname
2286
2287 DomainAuthInfo *AuthInfoList; // list of domains requiring authentication for updates
2288
2289 DNSQuestion ReverseMap; // Reverse-map query to find static hostname for service target
2290 DNSQuestion AutomaticBrowseDomainQ;
2291 domainname StaticHostname; // Current answer to reverse-map query
2292 domainname FQDN;
2293 HostnameInfo *Hostnames; // List of registered hostnames + hostname metadata
2294
2295 mDNSu32 WABBrowseQueriesCount; // Number of WAB Browse domain enumeration queries (b, db) callers
2296 mDNSu32 WABLBrowseQueriesCount; // Number of legacy WAB Browse domain enumeration queries (lb) callers
2297 mDNSu32 WABRegQueriesCount; // Number of WAB Registration domain enumeration queries (r, dr) callers
2298 mDNSu8 SearchDomainsHash[MD5_LEN];
2299
2300 // NAT-Traversal fields
2301 NATTraversalInfo LLQNAT; // Single shared NAT Traversal to receive inbound LLQ notifications
2302 NATTraversalInfo *NATTraversals;
2303 NATTraversalInfo *CurrentNATTraversal;
2304 mDNSs32 retryIntervalGetAddr; // delta between time sent and retry for NAT-PMP & UPnP/IGD external address request
2305 mDNSs32 retryGetAddr; // absolute time when we retry for NAT-PMP & UPnP/IGD external address request
2306 mDNSv4Addr ExtAddress; // the external address discovered via NAT-PMP or UPnP/IGD
2307 mDNSu32 PCPNonce[3]; // the nonce if using PCP
2308
2309 UDPSocket *NATMcastRecvskt; // For receiving PCP & NAT-PMP announcement multicasts from router on port 5350
2310 mDNSu32 LastNATupseconds; // NAT engine uptime in seconds, from most recent NAT packet
2311 mDNSs32 LastNATReplyLocalTime; // Local time in ticks when most recent NAT packet was received
2312 mDNSu16 LastNATMapResultCode; // Most recent error code for mappings
2313
2314 tcpLNTInfo tcpAddrInfo; // legacy NAT traversal TCP connection info for external address
2315 tcpLNTInfo tcpDeviceInfo; // legacy NAT traversal TCP connection info for device info
2316 tcpLNTInfo *tcpInfoUnmapList; // list of pending unmap requests
2317 mDNSInterfaceID UPnPInterfaceID;
2318 UDPSocket *SSDPSocket; // For SSDP request/response
2319 mDNSBool SSDPWANPPPConnection; // whether we should send the SSDP query for WANIPConnection or WANPPPConnection
2320 mDNSIPPort UPnPRouterPort; // port we send discovery messages to
2321 mDNSIPPort UPnPSOAPPort; // port we send SOAP messages to
2322 char *UPnPRouterURL; // router's URL string
2323 mDNSBool UPnPWANPPPConnection; // whether we're using WANIPConnection or WANPPPConnection
2324 char *UPnPSOAPURL; // router's SOAP control URL string
2325 char *UPnPRouterAddressString; // holds both the router's address and port
2326 char *UPnPSOAPAddressString; // holds both address and port for SOAP messages
2327
2328 // DNS Push Notification fields
2329 DNSPushNotificationServer *DNSPushServers; // DNS Push Notification Servers
2330 DNSPushNotificationZone *DNSPushZones;
2331
2332 // Sleep Proxy client fields
2333 AuthRecord *SPSRRSet; // To help the client keep track of the records registered with the sleep proxy
2334
2335 // Sleep Proxy Server fields
2336 mDNSu8 SPSType; // 0 = off, 10-99 encodes desirability metric
2337 mDNSu8 SPSPortability; // 10-99
2338 mDNSu8 SPSMarginalPower; // 10-99
2339 mDNSu8 SPSTotalPower; // 10-99
2340 mDNSu8 SPSFeatureFlags; // Features supported. Currently 1 = TCP KeepAlive supported.
2341 mDNSu8 SPSState; // 0 = off, 1 = running, 2 = shutting down, 3 = suspended during sleep
2342 mDNSInterfaceID SPSProxyListChanged;
2343 UDPSocket *SPSSocket;
2344 #ifndef SPC_DISABLED
2345 ServiceRecordSet SPSRecords;
2346 #endif
2347 mDNSQuestionCallback *SPSBrowseCallback; // So the platform layer can do something useful with SPS browse results
2348 int ProxyRecords; // Total number of records we're holding as proxy
2349 #define MAX_PROXY_RECORDS 10000 /* DOS protection: 400 machines at 25 records each */
2350
2351 #if MDNSRESPONDER_SUPPORTS(APPLE, WEB_CONTENT_FILTER)
2352 WCFConnection *WCF;
2353 #endif
2354 // DNS Proxy fields
2355 mDNSu32 dp_ipintf[MaxIp]; // input interface index list from the DNS Proxy Client
2356 mDNSu32 dp_opintf; // output interface index from the DNS Proxy Client
2357
2358 int notifyToken;
2359 int uds_listener_skt; // Listening socket for incoming UDS clients. This should not be here -- it's private to uds_daemon.c and nothing to do with mDNSCore -- SC
2360 mDNSu32 AutoTargetServices; // # of services that have AutoTarget set
2361
2362 #if MDNSRESPONDER_SUPPORTS(APPLE, BONJOUR_ON_DEMAND)
2363 // Counters used in Bonjour on Demand logic.
2364 mDNSu32 NumAllInterfaceRecords; // Right now we count *all* multicast records here. Later we may want to change to count interface-specific records separately. (This count includes records on the DuplicateRecords list too.)
2365 mDNSu32 NumAllInterfaceQuestions; // Right now we count *all* multicast questions here. Later we may want to change to count interface-specific questions separately.
2366 #endif
2367
2368 mDNSStatistics mDNSStats;
2369
2370 // Fixed storage, to avoid creating large objects on the stack
2371 // The imsg is declared as a union with a pointer type to enforce CPU-appropriate alignment
2372 union { DNSMessage m; void *p; } imsg; // Incoming message received from wire
2373 DNSMessage omsg; // Outgoing message we're building
2374 LargeCacheRecord rec; // Resource Record extracted from received message
2375
2376 #ifndef MaxMsg
2377 #define MaxMsg 512
2378 #endif
2379 char MsgBuffer[MaxMsg]; // Temp storage used while building error log messages (keep at end of struct)
2380 };
2381
2382 #define FORALL_CACHERECORDS(SLOT,CG,CR) \
2383 for ((SLOT) = 0; (SLOT) < CACHE_HASH_SLOTS; (SLOT)++) \
2384 for ((CG)=m->rrcache_hash[(SLOT)]; (CG); (CG)=(CG)->next) \
2385 for ((CR) = (CG)->members; (CR); (CR)=(CR)->next)
2386
2387 // ***************************************************************************
2388 #if 0
2389 #pragma mark -
2390 #pragma mark - Useful Static Constants
2391 #endif
2392
2393 extern const mDNSInterfaceID mDNSInterface_Any; // Zero
2394 extern const mDNSInterfaceID mDNSInterface_LocalOnly; // Special value
2395 extern const mDNSInterfaceID mDNSInterfaceMark; // Special value
2396 extern const mDNSInterfaceID mDNSInterface_P2P; // Special value
2397 extern const mDNSInterfaceID uDNSInterfaceMark; // Special value
2398 extern const mDNSInterfaceID mDNSInterface_BLE; // Special value
2399
2400 #define LocalOnlyOrP2PInterface(INTERFACE) (((INTERFACE) == mDNSInterface_LocalOnly) || ((INTERFACE) == mDNSInterface_P2P) || ((INTERFACE) == mDNSInterface_BLE))
2401
2402 extern const mDNSIPPort DiscardPort;
2403 extern const mDNSIPPort SSHPort;
2404 extern const mDNSIPPort UnicastDNSPort;
2405 extern const mDNSIPPort SSDPPort;
2406 extern const mDNSIPPort IPSECPort;
2407 extern const mDNSIPPort NSIPCPort;
2408 extern const mDNSIPPort NATPMPAnnouncementPort;
2409 extern const mDNSIPPort NATPMPPort;
2410 extern const mDNSIPPort DNSEXTPort;
2411 extern const mDNSIPPort MulticastDNSPort;
2412 extern const mDNSIPPort LoopbackIPCPort;
2413 extern const mDNSIPPort PrivateDNSPort;
2414
2415 extern const OwnerOptData zeroOwner;
2416
2417 extern const mDNSIPPort zeroIPPort;
2418 extern const mDNSv4Addr zerov4Addr;
2419 extern const mDNSv6Addr zerov6Addr;
2420 extern const mDNSEthAddr zeroEthAddr;
2421 extern const mDNSv4Addr onesIPv4Addr;
2422 extern const mDNSv6Addr onesIPv6Addr;
2423 extern const mDNSEthAddr onesEthAddr;
2424 extern const mDNSAddr zeroAddr;
2425
2426 extern const mDNSv4Addr AllDNSAdminGroup;
2427 extern const mDNSv4Addr AllHosts_v4;
2428 extern const mDNSv6Addr AllHosts_v6;
2429 extern const mDNSv6Addr NDP_prefix;
2430 extern const mDNSEthAddr AllHosts_v6_Eth;
2431 extern const mDNSAddr AllDNSLinkGroup_v4;
2432 extern const mDNSAddr AllDNSLinkGroup_v6;
2433
2434 extern const mDNSOpaque16 zeroID;
2435 extern const mDNSOpaque16 onesID;
2436 extern const mDNSOpaque16 QueryFlags;
2437 extern const mDNSOpaque16 uQueryFlags;
2438 extern const mDNSOpaque16 ResponseFlags;
2439 extern const mDNSOpaque16 UpdateReqFlags;
2440 extern const mDNSOpaque16 UpdateRespFlags;
2441 extern const mDNSOpaque16 SubscribeFlags;
2442 extern const mDNSOpaque16 UnSubscribeFlags;
2443 extern const mDNSOpaque16 uDNSSecQueryFlags;
2444
2445 extern const mDNSOpaque64 zeroOpaque64;
2446 extern const mDNSOpaque128 zeroOpaque128;
2447
2448 extern mDNSBool StrictUnicastOrdering;
2449
2450 #define localdomain (*(const domainname *)"\x5" "local")
2451 #define DeviceInfoName (*(const domainname *)"\xC" "_device-info" "\x4" "_tcp")
2452 #define LocalDeviceInfoName (*(const domainname *)"\xC" "_device-info" "\x4" "_tcp" "\x5" "local")
2453 #define SleepProxyServiceType (*(const domainname *)"\xC" "_sleep-proxy" "\x4" "_udp")
2454
2455 // ***************************************************************************
2456 #if 0
2457 #pragma mark -
2458 #pragma mark - Inline functions
2459 #endif
2460
2461 #if (defined(_MSC_VER))
2462 #define mDNSinline static __inline
2463 #elif ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 9)))
2464 #define mDNSinline static inline
2465 #endif
2466
2467 // If we're not doing inline functions, then this header needs to have the extern declarations
2468 #if !defined(mDNSinline)
2469 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
2470 extern int CountOfUnicastDNSServers(mDNS *const m);
2471 #endif
2472 extern mDNSs32 NonZeroTime(mDNSs32 t);
2473 extern mDNSu16 mDNSVal16(mDNSOpaque16 x);
2474 extern mDNSOpaque16 mDNSOpaque16fromIntVal(mDNSu16 v);
2475 #endif
2476
2477 // If we're compiling the particular C file that instantiates our inlines, then we
2478 // define "mDNSinline" (to empty string) so that we generate code in the following section
2479 #if (!defined(mDNSinline) && mDNS_InstantiateInlines)
2480 #define mDNSinline
2481 #endif
2482
2483 #ifdef mDNSinline
2484
2485 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
CountOfUnicastDNSServers(mDNS * const m)2486 mDNSinline int CountOfUnicastDNSServers(mDNS *const m)
2487 {
2488 int count = 0;
2489 DNSServer *ptr = m->DNSServers;
2490 while(ptr) { if(!(ptr->flags & DNSServerFlag_Delete)) count++; ptr = ptr->next; }
2491 return (count);
2492 }
2493 #endif
2494
NonZeroTime(mDNSs32 t)2495 mDNSinline mDNSs32 NonZeroTime(mDNSs32 t) { if (t) return(t);else return(1);}
2496
mDNSVal16(mDNSOpaque16 x)2497 mDNSinline mDNSu16 mDNSVal16(mDNSOpaque16 x) { return((mDNSu16)((mDNSu16)x.b[0] << 8 | (mDNSu16)x.b[1])); }
2498
mDNSOpaque16fromIntVal(mDNSu16 v)2499 mDNSinline mDNSOpaque16 mDNSOpaque16fromIntVal(mDNSu16 v)
2500 {
2501 mDNSOpaque16 x;
2502 x.b[0] = (mDNSu8)(v >> 8);
2503 x.b[1] = (mDNSu8)(v & 0xFF);
2504 return(x);
2505 }
2506
2507 #endif
2508
2509 // ***************************************************************************
2510 #if 0
2511 #pragma mark -
2512 #pragma mark - Main Client Functions
2513 #endif
2514
2515 // Every client should call mDNS_Init, passing in storage for the mDNS object and the mDNS_PlatformSupport object.
2516 //
2517 // Clients that are only advertising services should use mDNS_Init_NoCache and mDNS_Init_ZeroCacheSize.
2518 // Clients that plan to perform queries (mDNS_StartQuery, mDNS_StartBrowse, etc.)
2519 // need to provide storage for the resource record cache, or the query calls will return 'mStatus_NoCache'.
2520 // The rrcachestorage parameter is the address of memory for the resource record cache, and
2521 // the rrcachesize parameter is the number of entries in the CacheRecord array passed in.
2522 // (i.e. the size of the cache memory needs to be sizeof(CacheRecord) * rrcachesize).
2523 // OS X 10.3 Panther uses an initial cache size of 64 entries, and then mDNSCore sends an
2524 // mStatus_GrowCache message if it needs more.
2525 //
2526 // Most clients should use mDNS_Init_AdvertiseLocalAddresses. This causes mDNSCore to automatically
2527 // create the correct address records for all the hosts interfaces. If you plan to advertise
2528 // services being offered by the local machine, this is almost always what you want.
2529 // There are two cases where you might use mDNS_Init_DontAdvertiseLocalAddresses:
2530 // 1. A client-only device, that browses for services but doesn't advertise any of its own.
2531 // 2. A proxy-registration service, that advertises services being offered by other machines, and takes
2532 // the appropriate steps to manually create the correct address records for those other machines.
2533 // In principle, a proxy-like registration service could manually create address records for its own machine too,
2534 // but this would be pointless extra effort when using mDNS_Init_AdvertiseLocalAddresses does that for you.
2535 //
2536 // Note that a client-only device that wishes to prohibit multicast advertisements (e.g. from
2537 // higher-layer API calls) must also set DivertMulticastAdvertisements in the mDNS structure and
2538 // advertise local address(es) on a loopback interface.
2539 //
2540 // When mDNS has finished setting up the client's callback is called
2541 // A client can also spin and poll the mDNSPlatformStatus field to see when it changes from mStatus_Waiting to mStatus_NoError
2542 //
2543 // Call mDNS_StartExit to tidy up before exiting
2544 // Because exiting may be an asynchronous process (e.g. if unicast records need to be deregistered)
2545 // client layer may choose to wait until mDNS_ExitNow() returns true before calling mDNS_FinalExit().
2546 //
2547 // Call mDNS_Register with a completed AuthRecord object to register a resource record
2548 // If the resource record type is kDNSRecordTypeUnique (or kDNSknownunique) then if a conflicting resource record is discovered,
2549 // the resource record's mDNSRecordCallback will be called with error code mStatus_NameConflict. The callback should deregister
2550 // the record, and may then try registering the record again after picking a new name (e.g. by automatically appending a number).
2551 // Following deregistration, the RecordCallback will be called with result mStatus_MemFree to signal that it is safe to deallocate
2552 // the record's storage (memory must be freed asynchronously to allow for goodbye packets and dynamic update deregistration).
2553 //
2554 // Call mDNS_StartQuery to initiate a query. mDNS will proceed to issue Multicast DNS query packets, and any time a response
2555 // is received containing a record which matches the question, the DNSQuestion's mDNSAnswerCallback function will be called
2556 // Call mDNS_StopQuery when no more answers are required
2557 //
2558 // Care should be taken on multi-threaded or interrupt-driven environments.
2559 // The main mDNS routines call mDNSPlatformLock() on entry and mDNSPlatformUnlock() on exit;
2560 // each platform layer needs to implement these appropriately for its respective platform.
2561 // For example, if the support code on a particular platform implements timer callbacks at interrupt time, then
2562 // mDNSPlatformLock/Unlock need to disable interrupts or do similar concurrency control to ensure that the mDNS
2563 // code is not entered by an interrupt-time timer callback while in the middle of processing a client call.
2564
2565 extern mStatus mDNS_Init (mDNS *const m, mDNS_PlatformSupport *const p,
2566 CacheEntity *rrcachestorage, mDNSu32 rrcachesize,
2567 mDNSBool AdvertiseLocalAddresses,
2568 mDNSCallback *Callback, void *Context);
2569 // See notes above on use of NoCache/ZeroCacheSize
2570 #define mDNS_Init_NoCache mDNSNULL
2571 #define mDNS_Init_ZeroCacheSize 0
2572 // See notes above on use of Advertise/DontAdvertiseLocalAddresses
2573 #define mDNS_Init_AdvertiseLocalAddresses mDNStrue
2574 #define mDNS_Init_DontAdvertiseLocalAddresses mDNSfalse
2575 #define mDNS_Init_NoInitCallback mDNSNULL
2576 #define mDNS_Init_NoInitCallbackContext mDNSNULL
2577
2578 extern void mDNS_ConfigChanged(mDNS *const m);
2579 extern void mDNS_GrowCache (mDNS *const m, CacheEntity *storage, mDNSu32 numrecords);
2580 extern void mDNS_StartExit (mDNS *const m);
2581 extern void mDNS_FinalExit (mDNS *const m);
2582 #define mDNS_Close(m) do { mDNS_StartExit(m); mDNS_FinalExit(m); } while(0)
2583 #define mDNS_ExitNow(m, now) ((now) - (m)->ShutdownTime >= 0 || (!(m)->ResourceRecords))
2584
2585 extern mDNSs32 mDNS_Execute (mDNS *const m);
2586
2587 extern mStatus mDNS_Register (mDNS *const m, AuthRecord *const rr);
2588 extern mStatus mDNS_Update (mDNS *const m, AuthRecord *const rr, mDNSu32 newttl,
2589 const mDNSu16 newrdlength, RData *const newrdata, mDNSRecordUpdateCallback *Callback);
2590 extern mStatus mDNS_Deregister(mDNS *const m, AuthRecord *const rr);
2591
2592 extern mStatus mDNS_StartQuery(mDNS *const m, DNSQuestion *const question);
2593 extern mStatus mDNS_StopQuery (mDNS *const m, DNSQuestion *const question);
2594 extern mStatus mDNS_StopQueryWithRemoves(mDNS *const m, DNSQuestion *const question);
2595 extern mStatus mDNS_Reconfirm (mDNS *const m, CacheRecord *const cacherr);
2596 extern mStatus mDNS_Reconfirm_internal(mDNS *const m, CacheRecord *const rr, mDNSu32 interval);
2597 extern mStatus mDNS_ReconfirmByValue(mDNS *const m, ResourceRecord *const rr);
2598 extern void mDNS_PurgeCacheResourceRecord(mDNS *const m, CacheRecord *rr);
2599 extern mDNSs32 mDNS_TimeNow(const mDNS *const m);
2600
2601 extern mStatus mDNS_StartNATOperation(mDNS *const m, NATTraversalInfo *traversal);
2602 extern mStatus mDNS_StopNATOperation(mDNS *const m, NATTraversalInfo *traversal);
2603 extern mStatus mDNS_StopNATOperation_internal(mDNS *m, NATTraversalInfo *traversal);
2604
2605 extern DomainAuthInfo *GetAuthInfoForName(mDNS *m, const domainname *const name);
2606
2607 extern void mDNS_UpdateAllowSleep(mDNS *const m);
2608
2609 // ***************************************************************************
2610 #if 0
2611 #pragma mark -
2612 #pragma mark - Platform support functions that are accessible to the client layer too
2613 #endif
2614
2615 extern mDNSs32 mDNSPlatformOneSecond;
2616
2617 // ***************************************************************************
2618 #if 0
2619 #pragma mark -
2620 #pragma mark - General utility and helper functions
2621 #endif
2622
2623 // mDNS_Dereg_normal is used for most calls to mDNS_Deregister_internal
2624 // mDNS_Dereg_rapid is used to send one goodbye instead of three, when we want the memory available for reuse sooner
2625 // mDNS_Dereg_conflict is used to indicate that this record is being forcibly deregistered because of a conflict
2626 // mDNS_Dereg_repeat is used when cleaning up, for records that may have already been forcibly deregistered
2627 typedef enum { mDNS_Dereg_normal, mDNS_Dereg_rapid, mDNS_Dereg_conflict, mDNS_Dereg_repeat } mDNS_Dereg_type;
2628
2629 // mDNS_RegisterService is a single call to register the set of resource records associated with a given named service.
2630 //
2631 //
2632 // mDNS_AddRecordToService adds an additional record to a Service Record Set. This record may be deregistered
2633 // via mDNS_RemoveRecordFromService, or by deregistering the service. mDNS_RemoveRecordFromService is passed a
2634 // callback to free the memory associated with the extra RR when it is safe to do so. The ExtraResourceRecord
2635 // object can be found in the record's context pointer.
2636
2637 // mDNS_GetBrowseDomains is a special case of the mDNS_StartQuery call, where the resulting answers
2638 // are a list of PTR records indicating (in the rdata) domains that are recommended for browsing.
2639 // After getting the list of domains to browse, call mDNS_StopQuery to end the search.
2640 // mDNS_GetDefaultBrowseDomain returns the name of the domain that should be highlighted by default.
2641 //
2642 // mDNS_GetRegistrationDomains and mDNS_GetDefaultRegistrationDomain are the equivalent calls to get the list
2643 // of one or more domains that should be offered to the user as choices for where they may register their service,
2644 // and the default domain in which to register in the case where the user has made no selection.
2645
2646 extern void mDNS_SetupResourceRecord(AuthRecord *rr, RData *RDataStorage, mDNSInterfaceID InterfaceID,
2647 mDNSu16 rrtype, mDNSu32 ttl, mDNSu8 RecordType, AuthRecType artype, mDNSRecordCallback Callback, void *Context);
2648
2649 extern mStatus mDNS_RegisterService (mDNS *const m, ServiceRecordSet *sr,
2650 const domainlabel *const name, const domainname *const type, const domainname *const domain,
2651 const domainname *const host, mDNSIPPort port, RData *txtrdata, const mDNSu8 txtinfo[], mDNSu16 txtlen,
2652 AuthRecord *SubTypes, mDNSu32 NumSubTypes,
2653 mDNSInterfaceID InterfaceID, mDNSServiceCallback Callback, void *Context, mDNSu32 flags);
2654 extern mStatus mDNS_AddRecordToService(mDNS *const m, ServiceRecordSet *sr, ExtraResourceRecord *extra, RData *rdata, mDNSu32 ttl, mDNSu32 flags);
2655 extern mStatus mDNS_RemoveRecordFromService(mDNS *const m, ServiceRecordSet *sr, ExtraResourceRecord *extra, mDNSRecordCallback MemFreeCallback, void *Context);
2656 extern mStatus mDNS_RenameAndReregisterService(mDNS *const m, ServiceRecordSet *const sr, const domainlabel *newname);
2657 extern mStatus mDNS_DeregisterService_drt(mDNS *const m, ServiceRecordSet *sr, mDNS_Dereg_type drt);
2658 #define mDNS_DeregisterService(M,S) mDNS_DeregisterService_drt((M), (S), mDNS_Dereg_normal)
2659
2660 extern mStatus mDNS_RegisterNoSuchService(mDNS *const m, AuthRecord *const rr,
2661 const domainlabel *const name, const domainname *const type, const domainname *const domain,
2662 const domainname *const host,
2663 const mDNSInterfaceID InterfaceID, mDNSRecordCallback Callback, void *Context, mDNSu32 flags);
2664 #define mDNS_DeregisterNoSuchService mDNS_Deregister
2665
2666 extern void mDNS_SetupQuestion(DNSQuestion *const q, const mDNSInterfaceID InterfaceID, const domainname *const name,
2667 const mDNSu16 qtype, mDNSQuestionCallback *const callback, void *const context);
2668
2669 extern mStatus mDNS_StartBrowse(mDNS *const m, DNSQuestion *const question,
2670 const domainname *const srv, const domainname *const domain,
2671 const mDNSInterfaceID InterfaceID, mDNSu32 flags,
2672 mDNSBool ForceMCast, mDNSBool useBackgroundTrafficClass,
2673 mDNSQuestionCallback *Callback, void *Context);
2674 #define mDNS_StopBrowse mDNS_StopQuery
2675
2676
2677 typedef enum
2678 {
2679 mDNS_DomainTypeBrowse = 0,
2680 mDNS_DomainTypeBrowseDefault = 1,
2681 mDNS_DomainTypeBrowseAutomatic = 2,
2682 mDNS_DomainTypeRegistration = 3,
2683 mDNS_DomainTypeRegistrationDefault = 4,
2684
2685 mDNS_DomainTypeMax = 4
2686 } mDNS_DomainType;
2687
2688 extern const char *const mDNS_DomainTypeNames[];
2689
2690 extern mStatus mDNS_GetDomains(mDNS *const m, DNSQuestion *const question, mDNS_DomainType DomainType, const domainname *dom,
2691 const mDNSInterfaceID InterfaceID, mDNSQuestionCallback *Callback, void *Context);
2692 #define mDNS_StopGetDomains mDNS_StopQuery
2693 extern mStatus mDNS_AdvertiseDomains(mDNS *const m, AuthRecord *rr, mDNS_DomainType DomainType, const mDNSInterfaceID InterfaceID, char *domname);
2694 #define mDNS_StopAdvertiseDomains mDNS_Deregister
2695
2696 extern mDNSOpaque16 mDNS_NewMessageID(mDNS *const m);
2697 extern mDNSBool mDNS_AddressIsLocalSubnet(mDNS *const m, const mDNSInterfaceID InterfaceID, const mDNSAddr *addr);
2698
2699 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
2700 extern DNSServer *GetServerForQuestion(mDNS *m, DNSQuestion *question);
2701 #endif
2702 extern mDNSu32 SetValidDNSServers(mDNS *m, DNSQuestion *question);
2703 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
2704 extern mDNSBool ShouldSuppressUnicastQuery(const DNSQuestion *q, mdns_dns_service_t dnsservice);
2705 extern mDNSBool LocalRecordRmvEventsForQuestion(mDNS *m, DNSQuestion *q);
2706 #endif
2707
2708 // ***************************************************************************
2709 #if 0
2710 #pragma mark -
2711 #pragma mark - DNS name utility functions
2712 #endif
2713
2714 // In order to expose the full capabilities of the DNS protocol (which allows any arbitrary eight-bit values
2715 // in domain name labels, including unlikely characters like ascii nulls and even dots) all the mDNS APIs
2716 // work with DNS's native length-prefixed strings. For convenience in C, the following utility functions
2717 // are provided for converting between C's null-terminated strings and DNS's length-prefixed strings.
2718
2719 // Assignment
2720 // A simple C structure assignment of a domainname can cause a protection fault by accessing unmapped memory,
2721 // because that object is defined to be 256 bytes long, but not all domainname objects are truly the full size.
2722 // This macro uses mDNSPlatformMemCopy() to make sure it only touches the actual bytes that are valid.
2723 #define AssignDomainName(DST, SRC) do { mDNSu16 len__ = DomainNameLength((SRC)); \
2724 if (len__ <= MAX_DOMAIN_NAME) mDNSPlatformMemCopy((DST)->c, (SRC)->c, len__); else (DST)->c[0] = 0; } while(0)
2725 #define AssignConstStringDomainName(DST, SRC) do { \
2726 mDNSu16 len__ = DomainNameLengthLimit((domainname *)(SRC), (mDNSu8 *)(SRC) + sizeof (SRC)); \
2727 if (len__ <= MAX_DOMAIN_NAME) \
2728 mDNSPlatformMemCopy((DST)->c, (SRC), len__); else (DST)->c[0] = 0; } while(0)
2729
2730 // Comparison functions
2731 #define SameDomainLabelCS(A,B) ((A)[0] == (B)[0] && mDNSPlatformMemSame((A)+1, (B)+1, (A)[0]))
2732 extern mDNSBool SameDomainLabel(const mDNSu8 *a, const mDNSu8 *b);
2733 extern mDNSBool SameDomainName(const domainname *const d1, const domainname *const d2);
2734 extern mDNSBool SameDomainNameCS(const domainname *const d1, const domainname *const d2);
2735 typedef mDNSBool DomainNameComparisonFn (const domainname *const d1, const domainname *const d2);
2736 extern mDNSBool IsLocalDomain(const domainname *d); // returns true for domains that by default should be looked up using link-local multicast
2737
2738 #define StripFirstLabel(X) ((const domainname *)& (X)->c[(X)->c[0] ? 1 + (X)->c[0] : 0])
2739
2740 #define FirstLabel(X) ((const domainlabel *)(X))
2741 #define SecondLabel(X) ((const domainlabel *)StripFirstLabel(X))
2742 #define ThirdLabel(X) ((const domainlabel *)StripFirstLabel(StripFirstLabel(X)))
2743
2744 extern const mDNSu8 *LastLabel(const domainname *d);
2745
2746 // Get total length of domain name, in native DNS format, including terminal root label
2747 // (e.g. length of "com." is 5 (length byte, three data bytes, final zero)
2748 extern mDNSu16 DomainNameLengthLimit(const domainname *const name, const mDNSu8 *limit);
2749 #define DomainNameLength(name) DomainNameLengthLimit((name), (name)->c + MAX_DOMAIN_NAME)
2750
2751 // Append functions to append one or more labels to an existing native format domain name:
2752 // AppendLiteralLabelString adds a single label from a literal C string, with no escape character interpretation.
2753 // AppendDNSNameString adds zero or more labels from a C string using conventional DNS dots-and-escaping interpretation
2754 // AppendDomainLabel adds a single label from a native format domainlabel
2755 // AppendDomainName adds zero or more labels from a native format domainname
2756 extern mDNSu8 *AppendLiteralLabelString(domainname *const name, const char *cstr);
2757 extern mDNSu8 *AppendDNSNameString (domainname *const name, const char *cstr);
2758 extern mDNSu8 *AppendDomainLabel (domainname *const name, const domainlabel *const label);
2759 extern mDNSu8 *AppendDomainName (domainname *const name, const domainname *const append);
2760
2761 // Convert from null-terminated string to native DNS format:
2762 // The DomainLabel form makes a single label from a literal C string, with no escape character interpretation.
2763 // The DomainName form makes native format domain name from a C string using conventional DNS interpretation:
2764 // dots separate labels, and within each label, '\.' represents a literal dot, '\\' represents a literal
2765 // backslash and backslash with three decimal digits (e.g. \000) represents an arbitrary byte value.
2766 extern mDNSBool MakeDomainLabelFromLiteralString(domainlabel *const label, const char *cstr);
2767 extern mDNSu8 *MakeDomainNameFromDNSNameString (domainname *const name, const char *cstr);
2768
2769 // Convert native format domainlabel or domainname back to C string format
2770 // IMPORTANT:
2771 // When using ConvertDomainLabelToCString, the target buffer must be MAX_ESCAPED_DOMAIN_LABEL (254) bytes long
2772 // to guarantee there will be no buffer overrun. It is only safe to use a buffer shorter than this in rare cases
2773 // where the label is known to be constrained somehow (for example, if the label is known to be either "_tcp" or "_udp").
2774 // Similarly, when using ConvertDomainNameToCString, the target buffer must be MAX_ESCAPED_DOMAIN_NAME (1009) bytes long.
2775 // See definitions of MAX_ESCAPED_DOMAIN_LABEL and MAX_ESCAPED_DOMAIN_NAME for more detailed explanation.
2776 extern char *ConvertDomainLabelToCString_withescape(const domainlabel *const name, char *cstr, char esc);
2777 #define ConvertDomainLabelToCString_unescaped(D,C) ConvertDomainLabelToCString_withescape((D), (C), 0)
2778 #define ConvertDomainLabelToCString(D,C) ConvertDomainLabelToCString_withescape((D), (C), '\\')
2779 extern char *ConvertDomainNameToCString_withescape(const domainname *const name, char *cstr, char esc);
2780 #define ConvertDomainNameToCString_unescaped(D,C) ConvertDomainNameToCString_withescape((D), (C), 0)
2781 #define ConvertDomainNameToCString(D,C) ConvertDomainNameToCString_withescape((D), (C), '\\')
2782
2783 extern void ConvertUTF8PstringToRFC1034HostLabel(const mDNSu8 UTF8Name[], domainlabel *const hostlabel);
2784
2785 #define ValidTransportProtocol(X) ( (X)[0] == 4 && (X)[1] == '_' && \
2786 ((((X)[2] | 0x20) == 'u' && ((X)[3] | 0x20) == 'd') || (((X)[2] | 0x20) == 't' && ((X)[3] | 0x20) == 'c')) && \
2787 ((X)[4] | 0x20) == 'p')
2788
2789 extern mDNSu8 *ConstructServiceName(domainname *const fqdn, const domainlabel *name, const domainname *type, const domainname *const domain);
2790 extern mDNSBool DeconstructServiceName(const domainname *const fqdn, domainlabel *const name, domainname *const type, domainname *const domain);
2791
2792 // Note: Some old functions have been replaced by more sensibly-named versions.
2793 // You can uncomment the hash-defines below if you don't want to have to change your source code right away.
2794 // When updating your code, note that (unlike the old versions) *all* the new routines take the target object
2795 // as their first parameter.
2796 //#define ConvertCStringToDomainName(SRC,DST) MakeDomainNameFromDNSNameString((DST),(SRC))
2797 //#define ConvertCStringToDomainLabel(SRC,DST) MakeDomainLabelFromLiteralString((DST),(SRC))
2798 //#define AppendStringLabelToName(DST,SRC) AppendLiteralLabelString((DST),(SRC))
2799 //#define AppendStringNameToName(DST,SRC) AppendDNSNameString((DST),(SRC))
2800 //#define AppendDomainLabelToName(DST,SRC) AppendDomainLabel((DST),(SRC))
2801 //#define AppendDomainNameToName(DST,SRC) AppendDomainName((DST),(SRC))
2802
2803 // ***************************************************************************
2804 #if 0
2805 #pragma mark -
2806 #pragma mark - Other utility functions and macros
2807 #endif
2808
2809 // mDNS_vsnprintf/snprintf return the number of characters written, excluding the final terminating null.
2810 // The output is always null-terminated: for example, if the output turns out to be exactly buflen long,
2811 // then the output will be truncated by one character to allow space for the terminating null.
2812 // Unlike standard C vsnprintf/snprintf, they return the number of characters *actually* written,
2813 // not the number of characters that *would* have been printed were buflen unlimited.
2814 extern mDNSu32 mDNS_vsnprintf(char *sbuffer, mDNSu32 buflen, const char *fmt, va_list arg) IS_A_PRINTF_STYLE_FUNCTION(3,0);
2815 extern mDNSu32 mDNS_snprintf(char *sbuffer, mDNSu32 buflen, const char *fmt, ...) IS_A_PRINTF_STYLE_FUNCTION(3,4);
2816 extern void mDNS_snprintf_add(char **dst, const char *lim, const char *fmt, ...) IS_A_PRINTF_STYLE_FUNCTION(3,4);
2817 extern mDNSu32 NumCacheRecordsForInterfaceID(const mDNS *const m, mDNSInterfaceID id);
2818 extern char *DNSTypeName(mDNSu16 rrtype);
2819 extern const char *mStatusDescription(mStatus error);
2820 extern char *GetRRDisplayString_rdb(const ResourceRecord *const rr, const RDataBody *const rd1, char *const buffer);
2821 #define RRDisplayString(m, rr) GetRRDisplayString_rdb(rr, &(rr)->rdata->u, (m)->MsgBuffer)
2822 #define ARDisplayString(m, rr) GetRRDisplayString_rdb(&(rr)->resrec, &(rr)->resrec.rdata->u, (m)->MsgBuffer)
2823 #define CRDisplayString(m, rr) GetRRDisplayString_rdb(&(rr)->resrec, &(rr)->resrec.rdata->u, (m)->MsgBuffer)
2824 #define MortalityDisplayString(M) (M == Mortality_Mortal ? "mortal" : (M == Mortality_Immortal ? "immortal" : "ghost"))
2825 extern mDNSBool mDNSSameAddress(const mDNSAddr *ip1, const mDNSAddr *ip2);
2826 extern void IncrementLabelSuffix(domainlabel *name, mDNSBool RichText);
2827 extern mDNSBool mDNSv4AddrIsRFC1918(const mDNSv4Addr * const addr); // returns true for RFC1918 private addresses
2828 #define mDNSAddrIsRFC1918(X) ((X)->type == mDNSAddrType_IPv4 && mDNSv4AddrIsRFC1918(&(X)->ip.v4))
2829 extern const char *DNSScopeToString(mDNSu32 scope);
2830
2831 // For PCP
2832 extern void mDNSAddrMapIPv4toIPv6(mDNSv4Addr* in, mDNSv6Addr* out);
2833 extern mDNSBool mDNSAddrIPv4FromMappedIPv6(mDNSv6Addr *in, mDNSv4Addr *out);
2834
2835 #define mDNSSameIPPort(A,B) ((A).NotAnInteger == (B).NotAnInteger)
2836 #define mDNSSameOpaque16(A,B) ((A).NotAnInteger == (B).NotAnInteger)
2837 #define mDNSSameOpaque32(A,B) ((A).NotAnInteger == (B).NotAnInteger)
2838 #define mDNSSameOpaque64(A,B) ((A)->l[0] == (B)->l[0] && (A)->l[1] == (B)->l[1])
2839
2840 #define mDNSSameIPv4Address(A,B) ((A).NotAnInteger == (B).NotAnInteger)
2841 #define mDNSSameIPv6Address(A,B) ((A).l[0] == (B).l[0] && (A).l[1] == (B).l[1] && (A).l[2] == (B).l[2] && (A).l[3] == (B).l[3])
2842 #define mDNSSameIPv6NetworkPart(A,B) ((A).l[0] == (B).l[0] && (A).l[1] == (B).l[1])
2843 #define mDNSSameEthAddress(A,B) ((A)->w[0] == (B)->w[0] && (A)->w[1] == (B)->w[1] && (A)->w[2] == (B)->w[2])
2844
2845 #define mDNSIPPortIsZero(A) ((A).NotAnInteger == 0)
2846 #define mDNSOpaque16IsZero(A) ((A).NotAnInteger == 0)
2847 #define mDNSOpaque64IsZero(A) (((A)->l[0] | (A)->l[1] ) == 0)
2848 #define mDNSOpaque128IsZero(A) (((A)->l[0] | (A)->l[1] | (A)->l[2] | (A)->l[3]) == 0)
2849 #define mDNSIPv4AddressIsZero(A) ((A).NotAnInteger == 0)
2850 #define mDNSIPv6AddressIsZero(A) (((A).l[0] | (A).l[1] | (A).l[2] | (A).l[3]) == 0)
2851 #define mDNSEthAddressIsZero(A) (((A).w[0] | (A).w[1] | (A).w[2] ) == 0)
2852
2853 #define mDNSIPv4AddressIsOnes(A) ((A).NotAnInteger == 0xFFFFFFFF)
2854 #define mDNSIPv6AddressIsOnes(A) (((A).l[0] & (A).l[1] & (A).l[2] & (A).l[3]) == 0xFFFFFFFF)
2855
2856 #define mDNSAddressIsAllDNSLinkGroup(X) ( \
2857 ((X)->type == mDNSAddrType_IPv4 && mDNSSameIPv4Address((X)->ip.v4, AllDNSLinkGroup_v4.ip.v4)) || \
2858 ((X)->type == mDNSAddrType_IPv6 && mDNSSameIPv6Address((X)->ip.v6, AllDNSLinkGroup_v6.ip.v6)) )
2859
2860 #define mDNSAddressIsZero(X) ( \
2861 ((X)->type == mDNSAddrType_IPv4 && mDNSIPv4AddressIsZero((X)->ip.v4)) || \
2862 ((X)->type == mDNSAddrType_IPv6 && mDNSIPv6AddressIsZero((X)->ip.v6)) )
2863
2864 #define mDNSAddressIsValidNonZero(X) ( \
2865 ((X)->type == mDNSAddrType_IPv4 && !mDNSIPv4AddressIsZero((X)->ip.v4)) || \
2866 ((X)->type == mDNSAddrType_IPv6 && !mDNSIPv6AddressIsZero((X)->ip.v6)) )
2867
2868 #define mDNSAddressIsOnes(X) ( \
2869 ((X)->type == mDNSAddrType_IPv4 && mDNSIPv4AddressIsOnes((X)->ip.v4)) || \
2870 ((X)->type == mDNSAddrType_IPv6 && mDNSIPv6AddressIsOnes((X)->ip.v6)) )
2871
2872 #define mDNSAddressIsValid(X) ( \
2873 ((X)->type == mDNSAddrType_IPv4) ? !(mDNSIPv4AddressIsZero((X)->ip.v4) || mDNSIPv4AddressIsOnes((X)->ip.v4)) : \
2874 ((X)->type == mDNSAddrType_IPv6) ? !(mDNSIPv6AddressIsZero((X)->ip.v6) || mDNSIPv6AddressIsOnes((X)->ip.v6)) : mDNSfalse)
2875
2876 #define mDNSv4AddressIsLinkLocal(X) ((X)->b[0] == 169 && (X)->b[1] == 254)
2877 #define mDNSv6AddressIsLinkLocal(X) ((X)->b[0] == 0xFE && ((X)->b[1] & 0xC0) == 0x80)
2878
2879 #define mDNSAddressIsLinkLocal(X) ( \
2880 ((X)->type == mDNSAddrType_IPv4) ? mDNSv4AddressIsLinkLocal(&(X)->ip.v4) : \
2881 ((X)->type == mDNSAddrType_IPv6) ? mDNSv6AddressIsLinkLocal(&(X)->ip.v6) : mDNSfalse)
2882
2883
2884 // ***************************************************************************
2885 #if 0
2886 #pragma mark -
2887 #pragma mark - Authentication Support
2888 #endif
2889
2890 // Unicast DNS and Dynamic Update specific Client Calls
2891 //
2892 // mDNS_SetSecretForDomain tells the core to authenticate (via TSIG with an HMAC_MD5 hash of the shared secret)
2893 // when dynamically updating a given zone (and its subdomains). The key used in authentication must be in
2894 // domain name format. The shared secret must be a null-terminated base64 encoded string. A minimum size of
2895 // 16 bytes (128 bits) is recommended for an MD5 hash as per RFC 2485.
2896 // Calling this routine multiple times for a zone replaces previously entered values. Call with a NULL key
2897 // to disable authentication for the zone. A non-NULL autoTunnelPrefix means this is an AutoTunnel domain,
2898 // and the value is prepended to the IPSec identifier (used for key lookup)
2899
2900 extern mStatus mDNS_SetSecretForDomain(mDNS *m, DomainAuthInfo *info,
2901 const domainname *domain, const domainname *keyname, const char *b64keydata, const domainname *hostname, mDNSIPPort *port);
2902
2903 extern void RecreateNATMappings(mDNS *const m, const mDNSu32 waitTicks);
2904
2905 // Hostname/Unicast Interface Configuration
2906
2907 // All hostnames advertised point to one IPv4 address and/or one IPv6 address, set via SetPrimaryInterfaceInfo. Invoking this routine
2908 // updates all existing hostnames to point to the new address.
2909
2910 // A hostname is added via AddDynDNSHostName, which points to the primary interface's v4 and/or v6 addresss
2911
2912 // The status callback is invoked to convey success or failure codes - the callback should not modify the AuthRecord or free memory.
2913 // Added hostnames may be removed (deregistered) via mDNS_RemoveDynDNSHostName.
2914
2915 // Host domains added prior to specification of the primary interface address and computer name will be deferred until
2916 // these values are initialized.
2917
2918 // DNS servers used to resolve unicast queries are specified by mDNS_AddDNSServer.
2919 // For "split" DNS configurations, in which queries for different domains are sent to different servers (e.g. VPN and external),
2920 // a domain may be associated with a DNS server. For standard configurations, specify the root label (".") or NULL.
2921
2922 extern void mDNS_AddDynDNSHostName(mDNS *m, const domainname *fqdn, mDNSRecordCallback *StatusCallback, const void *StatusContext);
2923 extern void mDNS_RemoveDynDNSHostName(mDNS *m, const domainname *fqdn);
2924 extern void mDNS_SetPrimaryInterfaceInfo(mDNS *m, const mDNSAddr *v4addr, const mDNSAddr *v6addr, const mDNSAddr *router);
2925 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
2926 extern DNSServer *mDNS_AddDNSServer(mDNS *const m, const domainname *d, const mDNSInterfaceID interface, mDNSs32 serviceID, const mDNSAddr *addr,
2927 const mDNSIPPort port, ScopeType scopeType, mDNSu32 timeout, mDNSBool cellIntf, mDNSBool isExpensive, mDNSBool isConstrained, mDNSBool isCLAT46,
2928 mDNSu32 resGroupID, mDNSBool reqA, mDNSBool reqAAAA, mDNSBool reqDO);
2929 extern void PenalizeDNSServer(mDNS *const m, DNSQuestion *q, mDNSOpaque16 responseFlags);
2930 #endif
2931 extern void mDNS_AddSearchDomain(const domainname *const domain, mDNSInterfaceID InterfaceID);
2932
2933 extern McastResolver *mDNS_AddMcastResolver(mDNS *const m, const domainname *d, const mDNSInterfaceID interface, mDNSu32 timeout);
2934
2935 // We use ((void *)0) here instead of mDNSNULL to avoid compile warnings on gcc 4.2
2936 #define mDNS_AddSearchDomain_CString(X, I) \
2937 do { domainname d__; if (((X) != (void*)0) && MakeDomainNameFromDNSNameString(&d__, (X)) && d__.c[0]) mDNS_AddSearchDomain(&d__, I);} while(0)
2938
2939 // Routines called by the core, exported by DNSDigest.c
2940
2941 // Convert an arbitrary base64 encoded key key into an HMAC key (stored in AuthInfo struct)
2942 extern mDNSs32 DNSDigest_ConstructHMACKeyfromBase64(DomainAuthInfo *info, const char *b64key);
2943
2944 // sign a DNS message. The message must be complete, with all values in network byte order. end points to the end
2945 // of the message, and is modified by this routine. numAdditionals is a pointer to the number of additional
2946 // records in HOST byte order, which is incremented upon successful completion of this routine. The function returns
2947 // the new end pointer on success, and NULL on failure.
2948 extern void DNSDigest_SignMessage(DNSMessage *msg, mDNSu8 **end, DomainAuthInfo *info, mDNSu16 tcode);
2949
2950 #define SwapDNSHeaderBytes(M) do { \
2951 (M)->h.numQuestions = (mDNSu16)((mDNSu8 *)&(M)->h.numQuestions )[0] << 8 | ((mDNSu8 *)&(M)->h.numQuestions )[1]; \
2952 (M)->h.numAnswers = (mDNSu16)((mDNSu8 *)&(M)->h.numAnswers )[0] << 8 | ((mDNSu8 *)&(M)->h.numAnswers )[1]; \
2953 (M)->h.numAuthorities = (mDNSu16)((mDNSu8 *)&(M)->h.numAuthorities)[0] << 8 | ((mDNSu8 *)&(M)->h.numAuthorities)[1]; \
2954 (M)->h.numAdditionals = (mDNSu16)((mDNSu8 *)&(M)->h.numAdditionals)[0] << 8 | ((mDNSu8 *)&(M)->h.numAdditionals)[1]; \
2955 } while (0)
2956
2957 // verify a DNS message. The message must be complete, with all values in network byte order. end points to the
2958 // end of the record. tsig is a pointer to the resource record that contains the TSIG OPT record. info is
2959 // the matching key to use for verifying the message. This function expects that the additionals member
2960 // of the DNS message header has already had one subtracted from it.
2961 extern mDNSBool DNSDigest_VerifyMessage(DNSMessage *msg, mDNSu8 *end, LargeCacheRecord *tsig, DomainAuthInfo *info, mDNSu16 *rcode, mDNSu16 *tcode);
2962
2963 // ***************************************************************************
2964 #if 0
2965 #pragma mark -
2966 #pragma mark - PlatformSupport interface
2967 #endif
2968
2969 // This section defines the interface to the Platform Support layer.
2970 // Normal client code should not use any of types defined here, or directly call any of the functions defined here.
2971 // The definitions are placed here because sometimes clients do use these calls indirectly, via other supported client operations.
2972 // For example, AssignDomainName is a macro defined using mDNSPlatformMemCopy()
2973
2974 // Every platform support module must provide the following functions.
2975 // mDNSPlatformInit() typically opens a communication endpoint, and starts listening for mDNS packets.
2976 // When Setup is complete, the platform support layer calls mDNSCoreInitComplete().
2977 // mDNSPlatformSendUDP() sends one UDP packet
2978 // When a packet is received, the PlatformSupport code calls mDNSCoreReceive()
2979 // mDNSPlatformClose() tidies up on exit
2980 //
2981 // Note: mDNSPlatformMemAllocate/mDNSPlatformMemFree are only required for handling oversized resource records and unicast DNS.
2982 // If your target platform has a well-defined specialized application, and you know that all the records it uses
2983 // are InlineCacheRDSize or less, then you can just make a simple mDNSPlatformMemAllocate() stub that always returns
2984 // NULL. InlineCacheRDSize is a compile-time constant, which is set by default to 68. If you need to handle records
2985 // a little larger than this and you don't want to have to implement run-time allocation and freeing, then you
2986 // can raise the value of this constant to a suitable value (at the expense of increased memory usage).
2987 //
2988 // USE CAUTION WHEN CALLING mDNSPlatformRawTime: The m->timenow_adjust correction factor needs to be added
2989 // Generally speaking:
2990 // Code that's protected by the main mDNS lock should just use the m->timenow value
2991 // Code outside the main mDNS lock should use mDNS_TimeNow(m) to get properly adjusted time
2992 // In certain cases there may be reasons why it's necessary to get the time without taking the lock first
2993 // (e.g. inside the routines that are doing the locking and unlocking, where a call to get the lock would result in a
2994 // recursive loop); in these cases use mDNS_TimeNow_NoLock(m) to get mDNSPlatformRawTime with the proper correction factor added.
2995 //
2996 // mDNSPlatformUTC returns the time, in seconds, since Jan 1st 1970 UTC and is required for generating TSIG records
2997
2998 #ifdef MDNS_MALLOC_DEBUGGING
2999 typedef void mDNSListValidationFunction(void *);
3000 typedef struct listValidator mDNSListValidator;
3001 struct listValidator {
3002 struct listValidator *next;
3003 const char *validationFunctionName;
3004 mDNSListValidationFunction *validator;
3005 void *context;
3006 };
3007 #endif // MDNS_MALLOC_DEBUGGING
3008
3009 extern mStatus mDNSPlatformInit (mDNS *const m);
3010 extern void mDNSPlatformClose (mDNS *const m);
3011 extern mStatus mDNSPlatformSendUDP(const mDNS *const m, const void *const msg, const mDNSu8 *const end,
3012 mDNSInterfaceID InterfaceID, UDPSocket *src, const mDNSAddr *dst,
3013 mDNSIPPort dstport, mDNSBool useBackgroundTrafficClass);
3014
3015 extern void mDNSPlatformLock (const mDNS *const m);
3016 extern void mDNSPlatformUnlock (const mDNS *const m);
3017
3018 extern mDNSu32 mDNSPlatformStrLCopy ( void *dst, const void *src, mDNSu32 len);
3019 extern mDNSu32 mDNSPlatformStrLen ( const void *src);
3020 extern void mDNSPlatformMemCopy ( void *dst, const void *src, mDNSu32 len);
3021 extern mDNSBool mDNSPlatformMemSame (const void *dst, const void *src, mDNSu32 len);
3022 extern int mDNSPlatformMemCmp (const void *dst, const void *src, mDNSu32 len);
3023 extern void mDNSPlatformMemZero ( void *dst, mDNSu32 len);
3024 extern void mDNSPlatformQsort (void *base, int nel, int width, int (*compar)(const void *, const void *));
3025 #if MDNS_MALLOC_DEBUGGING
3026 #define mDNSPlatformMemAllocate(X) mallocL(# X, X)
3027 #define mDNSPlatformMemAllocateClear(X) callocL(# X, X)
3028 #define mDNSPlatformMemFree(X) freeL(# X, X)
3029 extern void mDNSPlatformValidateLists (void);
3030 extern void mDNSPlatformAddListValidator(mDNSListValidator *validator,
3031 mDNSListValidationFunction *vf, const char *vfName, void *context);
3032 #else
3033 extern void * mDNSPlatformMemAllocate(mDNSu32 len);
3034 extern void * mDNSPlatformMemAllocateClear(mDNSu32 len);
3035 extern void mDNSPlatformMemFree(void *mem);
3036 #endif // MDNS_MALLOC_DEBUGGING
3037
3038 // If the platform doesn't have a strong PRNG, we define a naive multiply-and-add based on a seed
3039 // from the platform layer. Long-term, we should embed an arc4 implementation, but the strength
3040 // will still depend on the randomness of the seed.
3041 #if !defined(_PLATFORM_HAS_STRONG_PRNG_) && (_BUILDING_XCODE_PROJECT_ || defined(_WIN32))
3042 #define _PLATFORM_HAS_STRONG_PRNG_ 1
3043 #endif
3044 #if _PLATFORM_HAS_STRONG_PRNG_
3045 extern mDNSu32 mDNSPlatformRandomNumber(void);
3046 #else
3047 extern mDNSu32 mDNSPlatformRandomSeed (void);
3048 #endif // _PLATFORM_HAS_STRONG_PRNG_
3049
3050 extern mStatus mDNSPlatformTimeInit (void);
3051 extern mDNSs32 mDNSPlatformRawTime (void);
3052 extern mDNSs32 mDNSPlatformUTC (void);
3053 #define mDNS_TimeNow_NoLock(m) (mDNSPlatformRawTime() + (m)->timenow_adjust)
3054
3055 #if MDNS_DEBUGMSGS
3056 extern void mDNSPlatformWriteDebugMsg(const char *msg);
3057 #endif
3058 extern void mDNSPlatformWriteLogMsg(const char *ident, const char *msg, mDNSLogLevel_t loglevel);
3059
3060 // Platform support modules should provide the following functions to map between opaque interface IDs
3061 // and interface indexes in order to support the DNS-SD API. If your target platform does not support
3062 // multiple interfaces and/or does not support the DNS-SD API, these functions can be empty.
3063 extern mDNSInterfaceID mDNSPlatformInterfaceIDfromInterfaceIndex(mDNS *const m, mDNSu32 ifindex);
3064 extern mDNSu32 mDNSPlatformInterfaceIndexfromInterfaceID(mDNS *const m, mDNSInterfaceID id, mDNSBool suppressNetworkChange);
3065
3066 // Every platform support module must provide the following functions if it is to support unicast DNS
3067 // and Dynamic Update.
3068 // All TCP socket operations implemented by the platform layer MUST NOT BLOCK.
3069 // mDNSPlatformTCPConnect initiates a TCP connection with a peer, adding the socket descriptor to the
3070 // main event loop. The return value indicates whether the connection succeeded, failed, or is pending
3071 // (i.e. the call would block.) On return, the descriptor parameter is set to point to the connected socket.
3072 // The TCPConnectionCallback is subsequently invoked when the connection
3073 // completes (in which case the ConnectionEstablished parameter is true), or data is available for
3074 // reading on the socket (indicated by the ConnectionEstablished parameter being false.) If the connection
3075 // asynchronously fails, the TCPConnectionCallback should be invoked as usual, with the error being
3076 // returned in subsequent calls to PlatformReadTCP or PlatformWriteTCP. (This allows for platforms
3077 // with limited asynchronous error detection capabilities.) PlatformReadTCP and PlatformWriteTCP must
3078 // return the number of bytes read/written, 0 if the call would block, and -1 if an error. PlatformReadTCP
3079 // should set the closed argument if the socket has been closed.
3080 // PlatformTCPCloseConnection must close the connection to the peer and remove the descriptor from the
3081 // event loop. CloseConnectin may be called at any time, including in a ConnectionCallback.
3082
3083 typedef enum
3084 {
3085 kTCPSocketFlags_Zero = 0,
3086 kTCPSocketFlags_UseTLS = (1 << 0)
3087 } TCPSocketFlags;
3088
3089 typedef void (*TCPConnectionCallback)(TCPSocket *sock, void *context, mDNSBool ConnectionEstablished, mStatus err);
3090 typedef void (*TCPAcceptedCallback)(TCPSocket *sock, mDNSAddr *addr, mDNSIPPort *port,
3091 const char *remoteName, void *context);
3092 extern TCPSocket *mDNSPlatformTCPSocket(TCPSocketFlags flags, mDNSAddr_Type addrtype, mDNSIPPort *port, domainname *hostname, mDNSBool useBackgroundTrafficClass); // creates a TCP socket
3093 extern TCPListener *mDNSPlatformTCPListen(mDNSAddr_Type addrtype, mDNSIPPort *port, mDNSAddr *addr,
3094 TCPSocketFlags socketFlags, mDNSBool reuseAddr, int queueLength,
3095 TCPAcceptedCallback callback, void *context); // Listen on a port
3096 extern mStatus mDNSPlatformTCPSocketSetCallback(TCPSocket *sock, TCPConnectionCallback callback, void *context);
3097 extern TCPSocket *mDNSPlatformTCPAccept(TCPSocketFlags flags, int sd);
3098 extern int mDNSPlatformTCPGetFD(TCPSocket *sock);
3099 extern mDNSBool mDNSPlatformTCPWritable(TCPSocket *sock);
3100 extern mStatus mDNSPlatformTCPConnect(TCPSocket *sock, const mDNSAddr *dst, mDNSOpaque16 dstport,
3101 mDNSInterfaceID InterfaceID, TCPConnectionCallback callback, void *context);
3102 extern void mDNSPlatformTCPCloseConnection(TCPSocket *sock);
3103 extern long mDNSPlatformReadTCP(TCPSocket *sock, void *buf, unsigned long buflen, mDNSBool *closed);
3104 extern long mDNSPlatformWriteTCP(TCPSocket *sock, const char *msg, unsigned long len);
3105 extern UDPSocket *mDNSPlatformUDPSocket(const mDNSIPPort requestedport);
3106 extern mDNSu16 mDNSPlatformGetUDPPort(UDPSocket *sock);
3107 extern void mDNSPlatformUDPClose(UDPSocket *sock);
3108 extern mDNSBool mDNSPlatformUDPSocketEncounteredEOF(const UDPSocket *sock);
3109 extern void mDNSPlatformReceiveBPF_fd(int fd);
3110 extern void mDNSPlatformUpdateProxyList(const mDNSInterfaceID InterfaceID);
3111 extern void mDNSPlatformSendRawPacket(const void *const msg, const mDNSu8 *const end, mDNSInterfaceID InterfaceID);
3112 extern void mDNSPlatformSetLocalAddressCacheEntry(const mDNSAddr *const tpa, const mDNSEthAddr *const tha, mDNSInterfaceID InterfaceID);
3113 extern void mDNSPlatformSourceAddrForDest(mDNSAddr *const src, const mDNSAddr *const dst);
3114 extern void mDNSPlatformSendKeepalive(mDNSAddr *sadd, mDNSAddr *dadd, mDNSIPPort *lport, mDNSIPPort *rport, mDNSu32 seq, mDNSu32 ack, mDNSu16 win);
3115 extern mStatus mDNSPlatformRetrieveTCPInfo(mDNSAddr *laddr, mDNSIPPort *lport, mDNSAddr *raddr, mDNSIPPort *rport, mDNSTCPInfo *mti);
3116 extern mStatus mDNSPlatformGetRemoteMacAddr(mDNSAddr *raddr);
3117 extern mStatus mDNSPlatformStoreSPSMACAddr(mDNSAddr *spsaddr, char *ifname);
3118 extern mStatus mDNSPlatformClearSPSData(void);
3119 extern mStatus mDNSPlatformStoreOwnerOptRecord(char *ifname, DNSMessage *msg, int length);
3120
3121 // mDNSPlatformTLSSetupCerts/mDNSPlatformTLSTearDownCerts used by dnsextd
3122 extern mStatus mDNSPlatformTLSSetupCerts(void);
3123 extern void mDNSPlatformTLSTearDownCerts(void);
3124
3125 // Platforms that support unicast browsing and dynamic update registration for clients who do not specify a domain
3126 // in browse/registration calls must implement these routines to get the "default" browse/registration list.
3127
3128 extern mDNSBool mDNSPlatformSetDNSConfig(mDNSBool setservers, mDNSBool setsearch, domainname *const fqdn, DNameListElem **RegDomains,
3129 DNameListElem **BrowseDomains, mDNSBool ackConfig);
3130 extern mStatus mDNSPlatformGetPrimaryInterface(mDNSAddr *v4, mDNSAddr *v6, mDNSAddr *router);
3131 extern void mDNSPlatformDynDNSHostNameStatusChanged(const domainname *const dname, const mStatus status);
3132
3133 extern void mDNSPlatformSetAllowSleep(mDNSBool allowSleep, const char *reason);
3134 extern void mDNSPlatformPreventSleep(mDNSu32 timeout, const char *reason);
3135 extern void mDNSPlatformSendWakeupPacket(mDNSInterfaceID InterfaceID, char *EthAddr, char *IPAddr, int iteration);
3136
3137 extern mDNSBool mDNSPlatformInterfaceIsD2D(mDNSInterfaceID InterfaceID);
3138 #if MDNSRESPONDER_SUPPORTS(APPLE, RANDOM_AWDL_HOSTNAME)
3139 extern mDNSBool mDNSPlatformInterfaceIsAWDL(mDNSInterfaceID interfaceID);
3140 #endif
3141 extern mDNSBool mDNSPlatformValidRecordForQuestion(const ResourceRecord *const rr, const DNSQuestion *const q);
3142 extern mDNSBool mDNSPlatformValidRecordForInterface(const AuthRecord *rr, mDNSInterfaceID InterfaceID);
3143 extern mDNSBool mDNSPlatformValidQuestionForInterface(DNSQuestion *q, const NetworkInterfaceInfo *intf);
3144
3145 extern void mDNSPlatformFormatTime(unsigned long t, mDNSu8 *buf, int bufsize);
3146
3147 // Platform event API
3148
3149 #ifdef _LEGACY_NAT_TRAVERSAL_
3150 // Support for legacy NAT traversal protocols, implemented by the platform layer and callable by the core.
3151 extern void LNT_SendDiscoveryMsg(mDNS *m);
3152 extern void LNT_ConfigureRouterInfo(mDNS *m, const mDNSInterfaceID InterfaceID, const mDNSu8 *const data, const mDNSu16 len);
3153 extern mStatus LNT_GetExternalAddress(mDNS *m);
3154 extern mStatus LNT_MapPort(mDNS *m, NATTraversalInfo *const n);
3155 extern mStatus LNT_UnmapPort(mDNS *m, NATTraversalInfo *const n);
3156 extern void LNT_ClearState(mDNS *const m);
3157 #endif // _LEGACY_NAT_TRAVERSAL_
3158
3159 // The core mDNS code provides these functions, for the platform support code to call at appropriate times
3160 //
3161 // mDNS_SetFQDN() is called once on startup (typically from mDNSPlatformInit())
3162 // and then again on each subsequent change of the host name.
3163 //
3164 // mDNS_RegisterInterface() is used by the platform support layer to inform mDNSCore of what
3165 // physical and/or logical interfaces are available for sending and receiving packets.
3166 // Typically it is called on startup for each available interface, but register/deregister may be
3167 // called again later, on multiple occasions, to inform the core of interface configuration changes.
3168 // If set->Advertise is set non-zero, then mDNS_RegisterInterface() also registers the standard
3169 // resource records that should be associated with every publicised IP address/interface:
3170 // -- Name-to-address records (A/AAAA)
3171 // -- Address-to-name records (PTR)
3172 // -- Host information (HINFO)
3173 // IMPORTANT: The specified mDNSInterfaceID MUST NOT be 0, -1, or -2; these values have special meaning
3174 // mDNS_RegisterInterface does not result in the registration of global hostnames via dynamic update -
3175 // see mDNS_SetPrimaryInterfaceInfo, mDNS_AddDynDNSHostName, etc. for this purpose.
3176 // Note that the set may be deallocated immediately after it is deregistered via mDNS_DeegisterInterface.
3177 //
3178 // mDNS_RegisterDNS() is used by the platform support layer to provide the core with the addresses of
3179 // available domain name servers for unicast queries/updates. RegisterDNS() should be called once for
3180 // each name server, typically at startup, or when a new name server becomes available. DeregiterDNS()
3181 // must be called whenever a registered name server becomes unavailable. DeregisterDNSList deregisters
3182 // all registered servers. mDNS_DNSRegistered() returns true if one or more servers are registered in the core.
3183 //
3184 // mDNSCoreInitComplete() is called when the platform support layer is finished.
3185 // Typically this is at the end of mDNSPlatformInit(), but may be later
3186 // (on platforms like OT that allow asynchronous initialization of the networking stack).
3187 //
3188 // mDNSCoreReceive() is called when a UDP packet is received
3189 //
3190 // mDNSCoreMachineSleep() is called when the machine sleeps or wakes
3191 // (This refers to heavyweight laptop-style sleep/wake that disables network access,
3192 // not lightweight second-by-second CPU power management modes.)
3193
3194 extern void mDNS_SetFQDN(mDNS *const m);
3195 extern void mDNS_ActivateNetWake_internal (mDNS *const m, NetworkInterfaceInfo *set);
3196 extern void mDNS_DeactivateNetWake_internal(mDNS *const m, NetworkInterfaceInfo *set);
3197
3198 // Attributes that controls the Bonjour operation initiation and response speed for an interface.
3199 typedef enum
3200 {
3201 FastActivation, // For p2p* and DirectLink type interfaces
3202 NormalActivation, // For standard interface timing
3203 SlowActivation // For flapping interfaces
3204 } InterfaceActivationSpeed;
3205
3206 extern mStatus mDNS_RegisterInterface (mDNS *const m, NetworkInterfaceInfo *set, InterfaceActivationSpeed probeDelay);
3207 extern void mDNS_DeregisterInterface(mDNS *const m, NetworkInterfaceInfo *set, InterfaceActivationSpeed probeDelay);
3208 extern void mDNSCoreInitComplete(mDNS *const m, mStatus result);
3209 extern void mDNSCoreReceive(mDNS *const m, DNSMessage *const msg, const mDNSu8 *const end,
3210 const mDNSAddr *const srcaddr, const mDNSIPPort srcport,
3211 const mDNSAddr *dstaddr, const mDNSIPPort dstport, const mDNSInterfaceID InterfaceID);
3212 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
3213 extern void mDNSCoreReceiveForQuerier(mDNS *m, DNSMessage *msg, const mDNSu8 *end, mdns_querier_t querier, mdns_dns_service_t service);
3214 #endif
3215 extern CacheRecord *mDNSCheckCacheFlushRecords(mDNS *m, CacheRecord *CacheFlushRecords, mDNSBool id_is_zero, int numAnswers,
3216 DNSQuestion *unicastQuestion, CacheRecord *NSECCachePtr, CacheRecord *NSECRecords,
3217 mDNSu8 rcode);
3218 extern void mDNSCoreRestartQueries(mDNS *const m);
3219 extern void mDNSCoreRestartQuestion(mDNS *const m, DNSQuestion *q);
3220 extern void mDNSCoreRestartRegistration(mDNS *const m, AuthRecord *rr, int announceCount);
3221 typedef void (*FlushCache)(mDNS *const m);
3222 typedef void (*CallbackBeforeStartQuery)(mDNS *const m, void *context);
3223 extern void mDNSCoreRestartAddressQueries(mDNS *const m, mDNSBool SearchDomainsChanged, FlushCache flushCacheRecords,
3224 CallbackBeforeStartQuery beforeQueryStart, void *context);
3225 extern mDNSBool mDNSCoreHaveAdvertisedMulticastServices(mDNS *const m);
3226 extern void mDNSCoreMachineSleep(mDNS *const m, mDNSBool wake);
3227 extern mDNSBool mDNSCoreReadyForSleep(mDNS *m, mDNSs32 now);
3228
3229 typedef enum
3230 {
3231 mDNSNextWakeReason_Null = 0,
3232 mDNSNextWakeReason_NATPortMappingRenewal = 1,
3233 mDNSNextWakeReason_RecordRegistrationRenewal = 2,
3234 mDNSNextWakeReason_UpkeepWake = 3,
3235 mDNSNextWakeReason_DHCPLeaseRenewal = 4,
3236 mDNSNextWakeReason_SleepProxyRegistrationRetry = 5
3237 } mDNSNextWakeReason;
3238
3239 extern mDNSs32 mDNSCoreIntervalToNextWake(mDNS *const m, mDNSs32 now, mDNSNextWakeReason *outReason);
3240
3241 extern void mDNSCoreReceiveRawPacket (mDNS *const m, const mDNSu8 *const p, const mDNSu8 *const end, const mDNSInterfaceID InterfaceID);
3242
3243 extern mDNSBool mDNSAddrIsDNSMulticast(const mDNSAddr *ip);
3244
3245 extern CacheRecord *CreateNewCacheEntry(mDNS *const m, const mDNSu32 slot, CacheGroup *cg, mDNSs32 delay, mDNSBool Add, const mDNSAddr *sourceAddress);
3246 extern CacheGroup *CacheGroupForName(const mDNS *const m, const mDNSu32 namehash, const domainname *const name);
3247 extern void ReleaseCacheRecord(mDNS *const m, CacheRecord *r);
3248 extern void ScheduleNextCacheCheckTime(mDNS *const m, const mDNSu32 slot, const mDNSs32 event);
3249 extern void SetNextCacheCheckTimeForRecord(mDNS *const m, CacheRecord *const rr);
3250 extern void GrantCacheExtensions(mDNS *const m, DNSQuestion *q, mDNSu32 lease);
3251 extern void MakeNegativeCacheRecord(mDNS *const m, CacheRecord *const cr, const domainname *const name,
3252 const mDNSu32 namehash, const mDNSu16 rrtype, const mDNSu16 rrclass, mDNSu32 ttl_seconds, mDNSInterfaceID InterfaceID,
3253 #if MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
3254 mdns_dns_service_t service);
3255 #else
3256 DNSServer *dnsserver);
3257 #endif
3258 extern void CompleteDeregistration(mDNS *const m, AuthRecord *rr);
3259 extern void AnswerCurrentQuestionWithResourceRecord(mDNS *const m, CacheRecord *const rr, const QC_result AddRecord);
3260 extern void AnswerQuestionByFollowingCNAME(mDNS *const m, DNSQuestion *q, ResourceRecord *rr);
3261 extern char *InterfaceNameForID(mDNS *const m, const mDNSInterfaceID InterfaceID);
3262 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
3263 extern void DNSServerChangeForQuestion(mDNS *const m, DNSQuestion *q, DNSServer *newServer);
3264 #endif
3265 extern void ActivateUnicastRegistration(mDNS *const m, AuthRecord *const rr);
3266 extern void CheckSuppressUnusableQuestions(mDNS *const m);
3267 extern void RetrySearchDomainQuestions(mDNS *const m);
3268 extern mDNSBool DomainEnumQuery(const domainname *qname);
3269 extern mStatus UpdateKeepaliveRData(mDNS *const m, AuthRecord *rr, NetworkInterfaceInfo *const intf, mDNSBool updateMac, char *ethAddr);
3270 extern void UpdateKeepaliveRMACAsync(mDNS *const m, void *context);
3271 extern void UpdateRMAC(mDNS *const m, void *context);
3272
3273 // Used only in logging to restrict the number of /etc/hosts entries printed
3274 extern void FreeEtcHosts(mDNS *const m, AuthRecord *const rr, mStatus result);
3275 // exported for using the hash for /etc/hosts AuthRecords
3276 extern AuthGroup *AuthGroupForName(AuthHash *r, const mDNSu32 namehash, const domainname *const name);
3277 extern AuthGroup *AuthGroupForRecord(AuthHash *r, const ResourceRecord *const rr);
3278 extern AuthGroup *InsertAuthRecord(mDNS *const m, AuthHash *r, AuthRecord *rr);
3279 extern AuthGroup *RemoveAuthRecord(mDNS *const m, AuthHash *r, AuthRecord *rr);
3280
3281 #if APPLE_OSX_mDNSResponder
3282 // For now this LocalSleepProxy stuff is specific to Mac OS X.
3283 // In the future, if there's demand, we may see if we can abstract it out cleanly into the platform layer
3284 extern mStatus ActivateLocalProxy(NetworkInterfaceInfo *const intf, mDNSBool offloadKeepAlivesOnly, mDNSBool *keepaliveOnly);
3285 extern mDNSBool SupportsInNICProxy(NetworkInterfaceInfo *const intf);
3286 #endif
3287
3288 typedef void ProxyCallback (void *socket, DNSMessage *const msg, const mDNSu8 *const end, const mDNSAddr *const srcaddr,
3289 const mDNSIPPort srcport, const mDNSAddr *dstaddr, const mDNSIPPort dstport, const mDNSInterfaceID InterfaceID, void *context);
3290 extern void mDNSPlatformInitDNSProxySkts(ProxyCallback *UDPCallback, ProxyCallback *TCPCallback);
3291 extern void mDNSPlatformCloseDNSProxySkts(mDNS *const m);
3292 extern void mDNSPlatformDisposeProxyContext(void *context);
3293 extern mDNSu8 *DNSProxySetAttributes(DNSQuestion *q, DNSMessageHeader *h, DNSMessage *msg, mDNSu8 *start, mDNSu8 *limit);
3294
3295 #if APPLE_OSX_mDNSResponder
3296 extern void mDNSPlatformGetDNSRoutePolicy(DNSQuestion *q);
3297 #endif
3298 extern void mDNSPlatformSetSocktOpt(void *sock, mDNSTransport_Type transType, mDNSAddr_Type addrType, const DNSQuestion *q);
3299 extern mDNSs32 mDNSPlatformGetPID(void);
3300 extern mDNSBool mDNSValidKeepAliveRecord(AuthRecord *rr);
3301 extern mDNSBool CacheRecordRmvEventsForQuestion(mDNS *const m, DNSQuestion *q);
3302 #if MDNSRESPONDER_SUPPORTS(APPLE, RANDOM_AWDL_HOSTNAME)
3303 extern void GetRandomUUIDLabel(domainlabel *label);
3304 extern void GetRandomUUIDLocalHostname(domainname *hostname);
3305 #endif
3306 #if MDNSRESPONDER_SUPPORTS(APPLE, METRICS)
3307 extern void uDNSMetricsClear(uDNSMetrics *metrics);
3308 #endif
3309
3310 // ***************************************************************************
3311 #if 0
3312 #pragma mark -
3313 #pragma mark - Sleep Proxy
3314 #endif
3315
3316 // Sleep Proxy Server Property Encoding
3317 //
3318 // Sleep Proxy Servers are advertised using a structured service name, consisting of four
3319 // metrics followed by a human-readable name. The metrics assist clients in deciding which
3320 // Sleep Proxy Server(s) to use when multiple are available on the network. Each metric
3321 // is a two-digit decimal number in the range 10-99. Lower metrics are generally better.
3322 //
3323 // AA-BB-CC-DD.FF Name
3324 //
3325 // Metrics:
3326 //
3327 // AA = Intent
3328 // BB = Portability
3329 // CC = Marginal Power
3330 // DD = Total Power
3331 // FF = Features Supported (Currently TCP Keepalive only)
3332 //
3333 //
3334 // ** Intent Metric **
3335 //
3336 // 20 = Dedicated Sleep Proxy Server -- a device, permanently powered on,
3337 // installed for the express purpose of providing Sleep Proxy Service.
3338 //
3339 // 30 = Primary Network Infrastructure Hardware -- a router, DHCP server, NAT gateway,
3340 // or similar permanently installed device which is permanently powered on.
3341 // This is hardware designed for the express purpose of being network
3342 // infrastructure, and for most home users is typically a single point
3343 // of failure for the local network -- e.g. most home users only have
3344 // a single NAT gateway / DHCP server. Even though in principle the
3345 // hardware might technically be capable of running different software,
3346 // a typical user is unlikely to do that. e.g. AirPort base station.
3347 //
3348 // 40 = Primary Network Infrastructure Software -- a general-purpose computer
3349 // (e.g. Mac, Windows, Linux, etc.) which is currently running DHCP server
3350 // or NAT gateway software, but the user could choose to turn that off
3351 // fairly easily. e.g. iMac running Internet Sharing
3352 //
3353 // 50 = Secondary Network Infrastructure Hardware -- like primary infrastructure
3354 // hardware, except not a single point of failure for the entire local network.
3355 // For example, an AirPort base station in bridge mode. This may have clients
3356 // associated with it, and if it goes away those clients will be inconvenienced,
3357 // but unlike the NAT gateway / DHCP server, the entire local network is not
3358 // dependent on it.
3359 //
3360 // 60 = Secondary Network Infrastructure Software -- like 50, but in a general-
3361 // purpose CPU.
3362 //
3363 // 70 = Incidentally Available Hardware -- a device which has no power switch
3364 // and is generally left powered on all the time. Even though it is not a
3365 // part of what we conventionally consider network infrastructure (router,
3366 // DHCP, NAT, DNS, etc.), and the rest of the network can operate fine
3367 // without it, since it's available and unlikely to be turned off, it is a
3368 // reasonable candidate for providing Sleep Proxy Service e.g. Apple TV,
3369 // or an AirPort base station in client mode, associated with an existing
3370 // wireless network (e.g. AirPort Express connected to a music system, or
3371 // being used to share a USB printer).
3372 //
3373 // 80 = Incidentally Available Software -- a general-purpose computer which
3374 // happens at this time to be set to "never sleep", and as such could be
3375 // useful as a Sleep Proxy Server, but has not been intentionally provided
3376 // for this purpose. Of all the Intent Metric categories this is the
3377 // one most likely to be shut down or put to sleep without warning.
3378 // However, if nothing else is availalable, it may be better than nothing.
3379 // e.g. Office computer in the workplace which has been set to "never sleep"
3380 //
3381 //
3382 // ** Portability Metric **
3383 //
3384 // Inversely related to mass of device, on the basis that, all other things
3385 // being equal, heavier devices are less likely to be moved than lighter devices.
3386 // E.g. A MacBook running Internet Sharing is probably more likely to be
3387 // put to sleep and taken away than a Mac Pro running Internet Sharing.
3388 // The Portability Metric is a logarithmic decibel scale, computed by taking the
3389 // (approximate) mass of the device in milligrammes, taking the base 10 logarithm
3390 // of that, multiplying by 10, and subtracting the result from 100:
3391 //
3392 // Portability Metric = 100 - (log10(mg) * 10)
3393 //
3394 // The Portability Metric is not necessarily computed literally from the actual
3395 // mass of the device; the intent is just that lower numbers indicate more
3396 // permanent devices, and higher numbers indicate devices more likely to be
3397 // removed from the network, e.g., in order of increasing portability:
3398 //
3399 // Mac Pro < iMac < Laptop < iPhone
3400 //
3401 // Example values:
3402 //
3403 // 10 = 1 metric tonne
3404 // 40 = 1kg
3405 // 70 = 1g
3406 // 90 = 10mg
3407 //
3408 //
3409 // ** Marginal Power and Total Power Metrics **
3410 //
3411 // The Marginal Power Metric is the power difference between sleeping and staying awake
3412 // to be a Sleep Proxy Server.
3413 //
3414 // The Total Power Metric is the total power consumption when being Sleep Proxy Server.
3415 //
3416 // The Power Metrics use a logarithmic decibel scale, computed as ten times the
3417 // base 10 logarithm of the (approximate) power in microwatts:
3418 //
3419 // Power Metric = log10(uW) * 10
3420 //
3421 // Higher values indicate higher power consumption. Example values:
3422 //
3423 // 10 = 10 uW
3424 // 20 = 100 uW
3425 // 30 = 1 mW
3426 // 60 = 1 W
3427 // 90 = 1 kW
3428
3429 typedef enum
3430 {
3431 mDNSSleepProxyMetric_Dedicated = 20,
3432 mDNSSleepProxyMetric_PrimaryHardware = 30,
3433 mDNSSleepProxyMetric_PrimarySoftware = 40,
3434 mDNSSleepProxyMetric_SecondaryHardware = 50,
3435 mDNSSleepProxyMetric_SecondarySoftware = 60,
3436 mDNSSleepProxyMetric_IncidentalHardware = 70,
3437 mDNSSleepProxyMetric_IncidentalSoftware = 80
3438 } mDNSSleepProxyMetric;
3439
3440 typedef enum
3441 {
3442 mDNS_NoWake = 0, // System does not support Wake on LAN
3443 mDNS_WakeOnAC = 1, // System supports Wake on LAN when connected to AC power only
3444 mDNS_WakeOnBattery = 2 // System supports Wake on LAN on battery
3445 } mDNSWakeForNetworkAccess;
3446
3447 extern void mDNSCoreBeSleepProxyServer_internal(mDNS *const m, mDNSu8 sps, mDNSu8 port, mDNSu8 marginalpower, mDNSu8 totpower, mDNSu8 features);
3448 #define mDNSCoreBeSleepProxyServer(M,S,P,MP,TP,F) \
3449 do { mDNS_Lock(m); mDNSCoreBeSleepProxyServer_internal((M),(S),(P),(MP),(TP),(F)); mDNS_Unlock(m); } while(0)
3450
3451 extern void FindSPSInCache(mDNS *const m, const DNSQuestion *const q, const CacheRecord *sps[3]);
3452 #define PrototypeSPSName(X) ((X)[0] >= 11 && (X)[3] == '-' && (X)[ 4] == '9' && (X)[ 5] == '9' && \
3453 (X)[6] == '-' && (X)[ 7] == '9' && (X)[ 8] == '9' && \
3454 (X)[9] == '-' && (X)[10] == '9' && (X)[11] == '9' )
3455 #define ValidSPSName(X) ((X)[0] >= 5 && mDNSIsDigit((X)[1]) && mDNSIsDigit((X)[2]) && mDNSIsDigit((X)[4]) && mDNSIsDigit((X)[5]))
3456 #define SPSMetric(X) (!ValidSPSName(X) || PrototypeSPSName(X) ? 1000000 : \
3457 ((X)[1]-'0') * 100000 + ((X)[2]-'0') * 10000 + ((X)[4]-'0') * 1000 + ((X)[5]-'0') * 100 + ((X)[7]-'0') * 10 + ((X)[8]-'0'))
3458 #define LocalSPSMetric(X) ( (X)->SPSType * 10000 + (X)->SPSPortability * 100 + (X)->SPSMarginalPower)
3459 #define SPSFeatures(X) ((X)[0] >= 13 && (X)[12] =='.' ? ((X)[13]-'0') : 0 )
3460
3461 #define MD5_DIGEST_LENGTH 16 /* digest length in bytes */
3462 #define MD5_BLOCK_BYTES 64 /* block size in bytes */
3463 #define MD5_BLOCK_LONG (MD5_BLOCK_BYTES / sizeof(mDNSu32))
3464
3465 typedef struct MD5state_st
3466 {
3467 mDNSu32 A,B,C,D;
3468 mDNSu32 Nl,Nh;
3469 mDNSu32 data[MD5_BLOCK_LONG];
3470 mDNSu32 num;
3471 } MD5_CTX;
3472
3473 extern int MD5_Init(MD5_CTX *c);
3474 extern int MD5_Update(MD5_CTX *c, const void *data, unsigned long len);
3475 extern int MD5_Final(unsigned char *md, MD5_CTX *c);
3476
3477 // ***************************************************************************
3478 #if 0
3479 #pragma mark -
3480 #pragma mark - Compile-Time assertion checks
3481 #endif
3482
3483 // Some C compiler cleverness. We can make the compiler check certain things for
3484 // us, and report compile-time errors if anything is wrong. The usual way to do
3485 // this would be to use a run-time "if" statement, but then you don't find out
3486 // what's wrong until you run the software. This way, if the assertion condition
3487 // is false, the array size is negative, and the complier complains immediately.
3488
3489 struct CompileTimeAssertionChecks_mDNS
3490 {
3491 // Check that the compiler generated our on-the-wire packet format structure definitions
3492 // properly packed, without adding padding bytes to align fields on 32-bit or 64-bit boundaries.
3493 char assert0[(sizeof(rdataSRV) == 262 ) ? 1 : -1];
3494 char assert1[(sizeof(DNSMessageHeader) == 12 ) ? 1 : -1];
3495 char assert2[(sizeof(DNSMessage) == 12+AbsoluteMaxDNSMessageData) ? 1 : -1];
3496 char assert3[(sizeof(mDNSs8) == 1 ) ? 1 : -1];
3497 char assert4[(sizeof(mDNSu8) == 1 ) ? 1 : -1];
3498 char assert5[(sizeof(mDNSs16) == 2 ) ? 1 : -1];
3499 char assert6[(sizeof(mDNSu16) == 2 ) ? 1 : -1];
3500 char assert7[(sizeof(mDNSs32) == 4 ) ? 1 : -1];
3501 char assert8[(sizeof(mDNSu32) == 4 ) ? 1 : -1];
3502 char assert9[(sizeof(mDNSOpaque16) == 2 ) ? 1 : -1];
3503 char assertA[(sizeof(mDNSOpaque32) == 4 ) ? 1 : -1];
3504 char assertB[(sizeof(mDNSOpaque128) == 16 ) ? 1 : -1];
3505 char assertC[(sizeof(CacheRecord ) == sizeof(CacheGroup) ) ? 1 : -1];
3506 char assertD[(sizeof(int) >= 4 ) ? 1 : -1];
3507 char assertE[(StandardAuthRDSize >= 256 ) ? 1 : -1];
3508 char assertF[(sizeof(EthernetHeader) == 14 ) ? 1 : -1];
3509 char assertG[(sizeof(ARP_EthIP ) == 28 ) ? 1 : -1];
3510 char assertH[(sizeof(IPv4Header ) == 20 ) ? 1 : -1];
3511 char assertI[(sizeof(IPv6Header ) == 40 ) ? 1 : -1];
3512 char assertJ[(sizeof(IPv6NDP ) == 24 ) ? 1 : -1];
3513 char assertK[(sizeof(UDPHeader ) == 8 ) ? 1 : -1];
3514 char assertL[(sizeof(IKEHeader ) == 28 ) ? 1 : -1];
3515 char assertM[(sizeof(TCPHeader ) == 20 ) ? 1 : -1];
3516 char assertN[(sizeof(rdataOPT) == 24 ) ? 1 : -1];
3517 char assertP[(sizeof(PCPMapRequest) == 60 ) ? 1 : -1];
3518 char assertQ[(sizeof(PCPMapReply) == 60 ) ? 1 : -1];
3519
3520
3521 // Check our structures are reasonable sizes. Including overly-large buffers, or embedding
3522 // other overly-large structures instead of having a pointer to them, can inadvertently
3523 // cause structure sizes (and therefore memory usage) to balloon unreasonably.
3524 char sizecheck_RDataBody [(sizeof(RDataBody) == 264) ? 1 : -1];
3525 char sizecheck_ResourceRecord [(sizeof(ResourceRecord) <= 72) ? 1 : -1];
3526 char sizecheck_AuthRecord [(sizeof(AuthRecord) <= 1176) ? 1 : -1];
3527 char sizecheck_CacheRecord [(sizeof(CacheRecord) <= 232) ? 1 : -1];
3528 char sizecheck_CacheGroup [(sizeof(CacheGroup) <= 232) ? 1 : -1];
3529 char sizecheck_DNSQuestion [(sizeof(DNSQuestion) <= 1216) ? 1 : -1];
3530 char sizecheck_ZoneData [(sizeof(ZoneData) <= 2048) ? 1 : -1];
3531 char sizecheck_NATTraversalInfo [(sizeof(NATTraversalInfo) <= 200) ? 1 : -1];
3532 char sizecheck_HostnameInfo [(sizeof(HostnameInfo) <= 3050) ? 1 : -1];
3533 #if !MDNSRESPONDER_SUPPORTS(APPLE, QUERIER)
3534 char sizecheck_DNSServer [(sizeof(DNSServer) <= 328) ? 1 : -1];
3535 #endif
3536 char sizecheck_NetworkInterfaceInfo[(sizeof(NetworkInterfaceInfo) <= 9000) ? 1 : -1];
3537 char sizecheck_ServiceRecordSet [(sizeof(ServiceRecordSet) <= 4760) ? 1 : -1];
3538 char sizecheck_DomainAuthInfo [(sizeof(DomainAuthInfo) <= 944) ? 1 : -1];
3539 #if APPLE_OSX_mDNSResponder
3540 char sizecheck_ClientTunnel [(sizeof(ClientTunnel) <= 1560) ? 1 : -1];
3541 #endif
3542 #if MDNSRESPONDER_SUPPORTS(APPLE, OS_LOG)
3543 // structure size is assumed by LogRedact routine.
3544 char sizecheck_mDNSAddr [(sizeof(mDNSAddr) == 20) ? 1 : -1];
3545 char sizecheck_mDNSv4Addr [(sizeof(mDNSv4Addr) == 4) ? 1 : -1];
3546 char sizecheck_mDNSv6Addr [(sizeof(mDNSv6Addr) == 16) ? 1 : -1];
3547 #endif
3548 };
3549
3550 // Routine to initialize device-info TXT record contents
3551 mDNSu32 initializeDeviceInfoTXT(mDNS *m, mDNSu8 *ptr);
3552
3553 // ***************************************************************************
3554
3555 #ifdef __cplusplus
3556 }
3557 #endif
3558
3559 #endif
3560