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