1 /* -*- Mode: C; tab-width: 4 -*-
3 * Copyright (c) 2003-2013 Apple Computer, Inc. All rights reserved.
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 #define usleep(X) Sleep(((X)+999)/1000)
24 #include <sys/ioctl.h>
25 #include <sys/types.h>
27 #include <sys/resource.h>
33 #include "mDNSEmbeddedAPI.h"
34 #include "DNSCommon.h"
36 #include "uds_daemon.h"
38 // Normally we append search domains only for queries with a single label that are not
39 // fully qualified. This can be overridden to apply search domains for queries (that are
40 // not fully qualified) with any number of labels e.g., moon, moon.cs, moon.cs.be, etc.
41 mDNSBool AlwaysAppendSearchDomains
= mDNSfalse
;
43 // Apple-specific functionality, not required for other platforms
44 #if APPLE_OSX_mDNSResponder
45 #include <sys/ucred.h>
52 #include <sys/un.h> // for LOCAL_PEERPID
53 #include <sys/socket.h> // for getsockopt
54 #include <sys/proc_info.h> // for struct proc_bsdshortinfo
55 #include <libproc.h> // for proc_pidinfo()
56 #endif //LOCAL_PEERPID
57 //upto 16 characters of process name (defined in <sys/proc.h> but we do not want to include that file)
60 #if APPLE_OSX_mDNSResponder
61 #include <WebFilterDNS/WebFilterDNS.h>
65 int WCFIsServerRunning(WCFConnection
*conn
) __attribute__((weak_import
));
66 int WCFNameResolvesToAddr(WCFConnection
*conn
, char* domainName
, struct sockaddr
* address
, uid_t userid
) __attribute__((weak_import
));
67 int WCFNameResolvesToName(WCFConnection
*conn
, char* fromName
, char* toName
, uid_t userid
) __attribute__((weak_import
));
69 // Do we really need to define a macro for "if"?
70 #define CHECK_WCF_FUNCTION(X) if (X)
75 #endif // APPLE_OSX_mDNSResponder
77 // User IDs 0-500 are system-wide processes, not actual users in the usual sense
78 // User IDs for real user accounts start at 501 and count up from there
79 #define SystemUID(X) ((X) <= 500)
81 #define MAX_ANONYMOUS_DATA 256
83 // ***************************************************************************
84 #if COMPILER_LIKES_PRAGMA_MARK
86 #pragma mark - Types and Data Structures
98 typedef struct request_state request_state
;
100 typedef void (*req_termination_fn
)(request_state
*request
);
102 typedef struct registered_record_entry
104 struct registered_record_entry
*next
;
106 client_context_t regrec_client_context
;
107 request_state
*request
;
108 mDNSBool external_advertise
;
109 mDNSInterfaceID origInterfaceID
;
110 AuthRecord
*rr
; // Pointer to variable-sized AuthRecord (Why a pointer? Why not just embed it here?)
111 } registered_record_entry
;
113 // A single registered service: ServiceRecordSet + bookkeeping
114 // Note that we duplicate some fields from parent service_info object
115 // to facilitate cleanup, when instances and parent may be deallocated at different times.
116 typedef struct service_instance
118 struct service_instance
*next
;
119 request_state
*request
;
120 AuthRecord
*subtypes
;
121 mDNSBool renameonmemfree
; // Set on config change when we deregister original name
122 mDNSBool clientnotified
; // Has client been notified of successful registration yet?
123 mDNSBool default_local
; // is this the "local." from an empty-string registration?
124 mDNSBool external_advertise
; // is this is being advertised externally?
126 ServiceRecordSet srs
; // note -- variable-sized object -- must be last field in struct
129 // for multi-domain default browsing
130 typedef struct browser_t
132 struct browser_t
*next
;
138 typedef unsigned int pid_t
;
139 typedef unsigned int socklen_t
;
145 request_state
*primary
; // If this operation is on a shared socket, pointer to primary
146 // request_state for the original DNSServiceCreateConnection() operation
148 pid_t process_id
; // Client's PID value
149 char pid_name
[MAXCOMLEN
]; // Client's process name
150 char uuid
[UUID_SIZE
];
154 void * platform_data
;
156 // Note: On a shared connection these fields in the primary structure, including hdr, are re-used
157 // for each new request. This is because, until we've read the ipc_msg_hdr to find out what the
158 // operation is, we don't know if we're going to need to allocate a new request_state or not.
160 mDNSu32 hdr_bytes
; // bytes of header already read
162 mDNSu32 data_bytes
; // bytes of message data already read
163 char *msgbuf
; // pointer to data storage to pass to free()
164 const char *msgptr
; // pointer to data to be read from (may be modified)
165 char *msgend
; // pointer to byte after last byte of message
167 // reply, termination, error, and client context info
168 int no_reply
; // don't send asynchronous replies to client
169 mDNSs32 time_blocked
; // record time of a blocked client
170 int unresponsiveness_reports
;
171 struct reply_state
*replies
; // corresponding (active) reply list
172 req_termination_fn terminate
;
173 DNSServiceFlags flags
;
177 registered_record_entry
*reg_recs
; // list of registrations for a connection-oriented request
180 mDNSInterfaceID interface_id
;
181 mDNSBool default_domain
;
185 const mDNSu8
*AnonData
;
189 mDNSInterfaceID InterfaceID
;
194 char type_as_string
[MAX_ESCAPED_DOMAIN_NAME
];
196 mDNSBool default_domain
;
198 mDNSBool autoname
; // Set if this name is tied to the Computer Name
199 mDNSBool autorename
; // Set if this client wants us to automatically rename on conflict
200 mDNSBool allowremotequery
; // Respond to unicast queries from outside the local link?
203 service_instance
*instances
;
207 mDNSInterfaceID interface_id
;
219 mDNSIPPort ReqExt
; // External port we originally requested, for logging purposes
220 NATTraversalInfo NATinfo
;
224 DNSServiceFlags flags
;
226 DNSQuestion q_default
;
238 const ResourceRecord
*txt
;
239 const ResourceRecord
*srv
;
241 mDNSBool external_advertise
;
246 // struct physically sits between ipc message header and call-specific fields in the message buffer
249 DNSServiceFlags flags
; // Note: This field is in NETWORK byte order
250 mDNSu32 ifi
; // Note: This field is in NETWORK byte order
251 DNSServiceErrorType error
; // Note: This field is in NETWORK byte order
254 typedef struct reply_state
256 struct reply_state
*next
; // If there are multiple unsent replies
263 // ***************************************************************************
264 #if COMPILER_LIKES_PRAGMA_MARK
266 #pragma mark - Globals
270 mDNSexport mDNS mDNSStorage
;
271 mDNSexport
const char ProgramName
[] = "mDNSResponder";
273 static dnssd_sock_t listenfd
= dnssd_InvalidSocket
;
274 static request_state
*all_requests
= NULL
;
276 struct proc_bsdshortinfo proc
;
277 #endif //LOCAL_PEERPID
278 mDNSlocal
void set_peer_pid(request_state
*request
);
279 mDNSlocal
void LogMcastClientInfo(request_state
*req
);
280 mDNSlocal
void GetMcastClients(request_state
*req
);
281 static mDNSu32 mcount
; // tracks the current active mcast operations for McastLogging
282 static mDNSu32 i_mcount
; // sets mcount when McastLogging is enabled(PROF signal is sent)
283 static mDNSu32 n_mrecords
; // tracks the current active mcast records for McastLogging
284 static mDNSu32 n_mquests
; // tracks the current active mcast questions for McastLogging
286 // Note asymmetry here between registration and browsing.
287 // For service registrations we only automatically register in domains that explicitly appear in local configuration data
288 // (so AutoRegistrationDomains could equally well be called SCPrefRegDomains)
289 // For service browsing we also learn automatic browsing domains from the network, so for that case we have:
290 // 1. SCPrefBrowseDomains (local configuration data)
291 // 2. LocalDomainEnumRecords (locally-generated local-only PTR records -- equivalent to slElem->AuthRecs in uDNS.c)
292 // 3. AutoBrowseDomains, which is populated by tracking add/rmv events in AutomaticBrowseDomainChange, the callback function for our mDNS_GetDomains call.
293 // By creating and removing our own LocalDomainEnumRecords, we trigger AutomaticBrowseDomainChange callbacks just like domains learned from the network would.
295 mDNSexport DNameListElem
*AutoRegistrationDomains
; // Domains where we automatically register for empty-string registrations
297 static DNameListElem
*SCPrefBrowseDomains
; // List of automatic browsing domains read from SCPreferences for "empty string" browsing
298 static ARListElem
*LocalDomainEnumRecords
; // List of locally-generated PTR records to augment those we learn from the network
299 mDNSexport DNameListElem
*AutoBrowseDomains
; // List created from those local-only PTR records plus records we get from the network
301 #define MSG_PAD_BYTES 5 // pad message buffer (read from client) with n zero'd bytes to guarantee
302 // n get_string() calls w/o buffer overrun
303 // initialization, setup/teardown functions
305 // If a platform specifies its own PID file name, we use that
307 #define PID_FILE "/var/run/mDNSResponder.pid"
310 mDNSlocal
char *AnonDataToString(const mDNSu8
*ad
, int adlen
, char *adstr
, int adstrlen
);
312 // ***************************************************************************
313 #if COMPILER_LIKES_PRAGMA_MARK
315 #pragma mark - General Utility Functions
318 mDNSlocal
void FatalError(char *errmsg
)
321 LogMsg("%s: %s", errmsg
, dnssd_strerror(dnssd_errno
));
322 *ptr
= 0; // On OS X abort() doesn't generate a crash log, but writing to zero does
323 abort(); // On platforms where writing to zero doesn't generate an exception, abort instead
326 mDNSlocal mDNSu32
dnssd_htonl(mDNSu32 l
)
329 char *data
= (char*) &ret
;
330 put_uint32(l
, &data
);
334 // hack to search-replace perror's to LogMsg's
335 mDNSlocal
void my_perror(char *errmsg
)
337 LogMsg("%s: %d (%s)", errmsg
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
340 // Throttled version of my_perror: Logs once every 250 msgs
341 mDNSlocal
void my_throttled_perror(char *err_msg
)
343 static int uds_throttle_count
= 0;
344 if ((uds_throttle_count
++ % 250) == 0)
348 // LogMcastQuestion/LogMcastQ should be called after the DNSQuestion struct is initialized(especially for q->TargetQID)
349 // Hence all calls are made after mDNS_StartQuery()/mDNS_StopQuery()/mDNS_StopBrowse() is called.
350 mDNSlocal
void LogMcastQuestion(mDNS
*const m
, const DNSQuestion
*const q
, request_state
*req
, q_state status
)
352 if (mDNSOpaque16IsZero(q
->TargetQID
)) // Check for Mcast Query
354 mDNSBool mflag
= mDNSfalse
;
355 if (status
== q_start
)
364 LogMcast("%s: %##s (%s) (%s) Client(%d)[%s]", status
? "+Question" : "-Question", q
->qname
.c
, DNSTypeName(q
->qtype
),
365 q
->InterfaceID
== mDNSInterface_LocalOnly
? "lo" : q
->InterfaceID
== mDNSInterface_P2P
? "p2p" :
366 q
->InterfaceID
== mDNSInterface_Any
? "any" : InterfaceNameForID(m
, q
->InterfaceID
),
367 req
->process_id
, req
->pid_name
);
368 LogMcastStateInfo(m
, mflag
, mDNSfalse
, mDNSfalse
);
373 // LogMcastService/LogMcastS should be called after the AuthRecord struct is initialized
374 // Hence all calls are made after mDNS_Register()/ just before mDNS_Deregister()
375 mDNSlocal
void LogMcastService(mDNS
*const m
, const AuthRecord
*const ar
, request_state
*req
, reg_state status
)
377 if (!AuthRecord_uDNS(ar
)) // Check for Mcast Service
379 mDNSBool mflag
= mDNSfalse
;
380 if (status
== reg_start
)
389 LogMcast("%s: %##s (%s) (%s) Client(%d)[%s]", status
? "+Service" : "-Service", ar
->resrec
.name
->c
, DNSTypeName(ar
->resrec
.rrtype
),
390 ar
->resrec
.InterfaceID
== mDNSInterface_LocalOnly
? "lo" : ar
->resrec
.InterfaceID
== mDNSInterface_P2P
? "p2p" :
391 ar
->resrec
.InterfaceID
== mDNSInterface_Any
? "all" : InterfaceNameForID(m
, ar
->resrec
.InterfaceID
),
392 req
->process_id
, req
->pid_name
);
393 LogMcastStateInfo(m
, mflag
, mDNSfalse
, mDNSfalse
);
398 // For complete Mcast State Log, pass mDNStrue to mstatelog in LogMcastStateInfo()
399 mDNSexport
void LogMcastStateInfo(mDNS
*const m
, mDNSBool mflag
, mDNSBool start
, mDNSBool mstatelog
)
405 LogMcastNoIdent("<None>");
409 request_state
*req
, *r
;
410 for (req
= all_requests
; req
; req
=req
->next
)
412 if (req
->primary
) // If this is a subbordinate operation, check that the parent is in the list
414 for (r
= all_requests
; r
&& r
!= req
; r
=r
->next
)
415 if (r
== req
->primary
)
418 // For non-subbordinate operations, and subbordinate operations that have lost their parent, write out their info
419 GetMcastClients(req
);
422 LogMcastNoIdent("--- MCAST RECORDS COUNT[%d] MCAST QUESTIONS COUNT[%d] ---", n_mrecords
, n_mquests
);
423 n_mrecords
= n_mquests
= 0; // Reset the values
428 static mDNSu32 i_mpktnum
;
432 // mcount is initialized to 0 when the PROF signal is sent since mcount could have
433 // wrong value if MulticastLogging is disabled and then re-enabled
434 LogMcastNoIdent("--- START MCAST STATE LOG ---");
438 LogMcastNoIdent("<None>");
442 request_state
*req
, *r
;
443 for (req
= all_requests
; req
; req
=req
->next
)
445 if (req
->primary
) // If this is a subbordinate operation, check that the parent is in the list
447 for (r
= all_requests
; r
&& r
!= req
; r
=r
->next
)
448 if (r
== req
->primary
)
450 LogMcastNoIdent("%3d: Orphan operation; parent not found in request list", req
->sd
);
452 // For non-subbordinate operations, and subbordinate operations that have lost their parent, write out their info
453 LogMcastClientInfo(req
);
456 if(!mcount
) // To initially set mcount
461 i_mpktnum
= m
->MPktNum
;
462 LogMcastNoIdent("--- MCOUNT[%d]: IMPKTNUM[%d] ---", mcount
, i_mpktnum
);
465 LogMcastNoIdent("--- MCOUNT[%d]: CMPKTNUM[%d] - IMPKTNUM[%d] = [%d]PKTS ---", mcount
, m
->MPktNum
, i_mpktnum
, (m
->MPktNum
- i_mpktnum
));
466 LogMcastNoIdent("--- END MCAST STATE LOG ---");
470 mDNSlocal
void abort_request(request_state
*req
)
472 if (req
->terminate
== (req_termination_fn
) ~0)
473 { LogMsg("abort_request: ERROR: Attempt to abort operation %p with req->terminate %p", req
, req
->terminate
); return; }
475 // First stop whatever mDNSCore operation we were doing
476 // If this is actually a shared connection operation, then its req->terminate function will scan
477 // the all_requests list and terminate any subbordinate operations sharing this file descriptor
478 if (req
->terminate
) req
->terminate(req
);
480 if (!dnssd_SocketValid(req
->sd
))
481 { LogMsg("abort_request: ERROR: Attempt to abort operation %p with invalid fd %d", req
, req
->sd
); return; }
483 // Now, if this request_state is not subordinate to some other primary, close file descriptor and discard replies
486 if (req
->errsd
!= req
->sd
) LogOperation("%3d: Removing FD and closing errsd %d", req
->sd
, req
->errsd
);
487 else LogOperation("%3d: Removing FD", req
->sd
);
488 udsSupportRemoveFDFromEventLoop(req
->sd
, req
->platform_data
); // Note: This also closes file descriptor req->sd for us
489 if (req
->errsd
!= req
->sd
) { dnssd_close(req
->errsd
); req
->errsd
= req
->sd
; }
491 while (req
->replies
) // free pending replies
493 reply_state
*ptr
= req
->replies
;
494 req
->replies
= req
->replies
->next
;
495 freeL("reply_state (abort)", ptr
);
499 // Set req->sd to something invalid, so that udsserver_idle knows to unlink and free this structure
500 #if APPLE_OSX_mDNSResponder && MACOSX_MDNS_MALLOC_DEBUGGING
501 // Don't use dnssd_InvalidSocket (-1) because that's the sentinel value MACOSX_MDNS_MALLOC_DEBUGGING uses
502 // for detecting when the memory for an object is inadvertently freed while the object is still on some list
503 req
->sd
= req
->errsd
= -2;
505 req
->sd
= req
->errsd
= dnssd_InvalidSocket
;
507 // We also set req->terminate to a bogus value so we know if abort_request() gets called again for this request
508 req
->terminate
= (req_termination_fn
) ~0;
511 mDNSlocal
void AbortUnlinkAndFree(request_state
*req
)
513 request_state
**p
= &all_requests
;
515 while (*p
&& *p
!= req
) p
=&(*p
)->next
;
516 if (*p
) { *p
= req
->next
; freeL("request_state/AbortUnlinkAndFree", req
); }
517 else LogMsg("AbortUnlinkAndFree: ERROR: Attempt to abort operation %p not in list", req
);
520 mDNSlocal reply_state
*create_reply(const reply_op_t op
, const size_t datalen
, request_state
*const request
)
524 if ((unsigned)datalen
< sizeof(reply_hdr
))
526 LogMsg("ERROR: create_reply - data length less than length of required fields");
530 reply
= mallocL("reply_state", sizeof(reply_state
) + datalen
- sizeof(reply_hdr
));
531 if (!reply
) FatalError("ERROR: malloc");
533 reply
->next
= mDNSNULL
;
534 reply
->totallen
= (mDNSu32
)datalen
+ sizeof(ipc_msg_hdr
);
537 reply
->mhdr
->version
= VERSION
;
538 reply
->mhdr
->datalen
= (mDNSu32
)datalen
;
539 reply
->mhdr
->ipc_flags
= 0;
540 reply
->mhdr
->op
= op
;
541 reply
->mhdr
->client_context
= request
->hdr
.client_context
;
542 reply
->mhdr
->reg_index
= 0;
547 // Append a reply to the list in a request object
548 // If our request is sharing a connection, then we append our reply_state onto the primary's list
549 mDNSlocal
void append_reply(request_state
*req
, reply_state
*rep
)
551 request_state
*r
= req
->primary
? req
->primary
: req
;
552 reply_state
**ptr
= &r
->replies
;
553 while (*ptr
) ptr
= &(*ptr
)->next
;
558 // Generates a response message giving name, type, domain, plus interface index,
559 // suitable for a browse result or service registration result.
560 // On successful completion rep is set to point to a malloc'd reply_state struct
561 mDNSlocal mStatus
GenerateNTDResponse(const domainname
*const servicename
, const mDNSInterfaceID id
,
562 request_state
*const request
, reply_state
**const rep
, reply_op_t op
, DNSServiceFlags flags
, mStatus err
)
565 domainname type
, dom
;
567 if (!DeconstructServiceName(servicename
, &name
, &type
, &dom
))
568 return kDNSServiceErr_Invalid
;
571 char namestr
[MAX_DOMAIN_LABEL
+1];
572 char typestr
[MAX_ESCAPED_DOMAIN_NAME
];
573 char domstr
[MAX_ESCAPED_DOMAIN_NAME
];
577 ConvertDomainLabelToCString_unescaped(&name
, namestr
);
578 ConvertDomainNameToCString(&type
, typestr
);
579 ConvertDomainNameToCString(&dom
, domstr
);
581 // Calculate reply data length
582 len
= sizeof(DNSServiceFlags
);
583 len
+= sizeof(mDNSu32
); // if index
584 len
+= sizeof(DNSServiceErrorType
);
585 len
+= (int) (strlen(namestr
) + 1);
586 len
+= (int) (strlen(typestr
) + 1);
587 len
+= (int) (strlen(domstr
) + 1);
589 // Build reply header
590 *rep
= create_reply(op
, len
, request
);
591 (*rep
)->rhdr
->flags
= dnssd_htonl(flags
);
592 (*rep
)->rhdr
->ifi
= dnssd_htonl(mDNSPlatformInterfaceIndexfromInterfaceID(&mDNSStorage
, id
, mDNSfalse
));
593 (*rep
)->rhdr
->error
= dnssd_htonl(err
);
596 data
= (char *)&(*rep
)->rhdr
[1];
597 put_string(namestr
, &data
);
598 put_string(typestr
, &data
);
599 put_string(domstr
, &data
);
601 return mStatus_NoError
;
605 // Special support to enable the DNSServiceBrowse call made by Bonjour Browser
606 // Remove after Bonjour Browser is updated to use DNSServiceQueryRecord instead of DNSServiceBrowse
607 mDNSlocal
void GenerateBonjourBrowserResponse(const domainname
*const servicename
, const mDNSInterfaceID id
,
608 request_state
*const request
, reply_state
**const rep
, reply_op_t op
, DNSServiceFlags flags
, mStatus err
)
610 char namestr
[MAX_DOMAIN_LABEL
+1];
611 char typestr
[MAX_ESCAPED_DOMAIN_NAME
];
612 static const char domstr
[] = ".";
618 // 1. Put first label in namestr
619 ConvertDomainLabelToCString_unescaped((const domainlabel
*)servicename
, namestr
);
621 // 2. Put second label and "local" into typestr
622 mDNS_snprintf(typestr
, sizeof(typestr
), "%#s.local.", SecondLabel(servicename
));
624 // Calculate reply data length
625 len
= sizeof(DNSServiceFlags
);
626 len
+= sizeof(mDNSu32
); // if index
627 len
+= sizeof(DNSServiceErrorType
);
628 len
+= (int) (strlen(namestr
) + 1);
629 len
+= (int) (strlen(typestr
) + 1);
630 len
+= (int) (strlen(domstr
) + 1);
632 // Build reply header
633 *rep
= create_reply(op
, len
, request
);
634 (*rep
)->rhdr
->flags
= dnssd_htonl(flags
);
635 (*rep
)->rhdr
->ifi
= dnssd_htonl(mDNSPlatformInterfaceIndexfromInterfaceID(&mDNSStorage
, id
, mDNSfalse
));
636 (*rep
)->rhdr
->error
= dnssd_htonl(err
);
639 data
= (char *)&(*rep
)->rhdr
[1];
640 put_string(namestr
, &data
);
641 put_string(typestr
, &data
);
642 put_string(domstr
, &data
);
645 // Returns a resource record (allocated w/ malloc) containing the data found in an IPC message
646 // Data must be in the following format: flags, interfaceIndex, name, rrtype, rrclass, rdlen, rdata, (optional) ttl
647 // (ttl only extracted/set if ttl argument is non-zero). Returns NULL for a bad-parameter error
648 mDNSlocal AuthRecord
*read_rr_from_ipc_msg(request_state
*request
, int GetTTL
, int validate_flags
)
650 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
651 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
653 int str_err
= get_string(&request
->msgptr
, request
->msgend
, name
, sizeof(name
));
654 mDNSu16 type
= get_uint16(&request
->msgptr
, request
->msgend
);
655 mDNSu16
class = get_uint16(&request
->msgptr
, request
->msgend
);
656 mDNSu16 rdlen
= get_uint16(&request
->msgptr
, request
->msgend
);
657 const char *rdata
= get_rdata (&request
->msgptr
, request
->msgend
, rdlen
);
658 mDNSu32 ttl
= GetTTL
? get_uint32(&request
->msgptr
, request
->msgend
) : 0;
659 int storage_size
= rdlen
> sizeof(RDataBody
) ? rdlen
: sizeof(RDataBody
);
661 mDNSInterfaceID InterfaceID
;
664 request
->flags
= flags
;
666 if (str_err
) { LogMsg("ERROR: read_rr_from_ipc_msg - get_string"); return NULL
; }
668 if (!request
->msgptr
) { LogMsg("Error reading Resource Record from client"); return NULL
; }
670 if (validate_flags
&&
671 !((flags
& kDNSServiceFlagsShared
) == kDNSServiceFlagsShared
) &&
672 !((flags
& kDNSServiceFlagsUnique
) == kDNSServiceFlagsUnique
))
674 LogMsg("ERROR: Bad resource record flags (must be kDNSServiceFlagsShared or kDNSServiceFlagsUnique)");
678 rr
= mallocL("AuthRecord/read_rr_from_ipc_msg", sizeof(AuthRecord
) - sizeof(RDataBody
) + storage_size
);
679 if (!rr
) FatalError("ERROR: malloc");
681 InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
682 if (InterfaceID
== mDNSInterface_LocalOnly
)
683 artype
= AuthRecordLocalOnly
;
684 else if (InterfaceID
== mDNSInterface_P2P
)
685 artype
= AuthRecordP2P
;
686 else if ((InterfaceID
== mDNSInterface_Any
) && (flags
& kDNSServiceFlagsIncludeP2P
)
687 && (flags
& kDNSServiceFlagsIncludeAWDL
))
688 artype
= AuthRecordAnyIncludeAWDLandP2P
;
689 else if ((InterfaceID
== mDNSInterface_Any
) && (flags
& kDNSServiceFlagsIncludeP2P
))
690 artype
= AuthRecordAnyIncludeP2P
;
691 else if ((InterfaceID
== mDNSInterface_Any
) && (flags
& kDNSServiceFlagsIncludeAWDL
))
692 artype
= AuthRecordAnyIncludeAWDL
;
694 artype
= AuthRecordAny
;
696 mDNS_SetupResourceRecord(rr
, mDNSNULL
, InterfaceID
, type
, 0,
697 (mDNSu8
) ((flags
& kDNSServiceFlagsShared
) ? kDNSRecordTypeShared
: kDNSRecordTypeUnique
), artype
, mDNSNULL
, mDNSNULL
);
699 if (!MakeDomainNameFromDNSNameString(&rr
->namestorage
, name
))
701 LogMsg("ERROR: bad name: %s", name
);
702 freeL("AuthRecord/read_rr_from_ipc_msg", rr
);
706 if (flags
& kDNSServiceFlagsAllowRemoteQuery
) rr
->AllowRemoteQuery
= mDNStrue
;
707 rr
->resrec
.rrclass
= class;
708 rr
->resrec
.rdlength
= rdlen
;
709 rr
->resrec
.rdata
->MaxRDLength
= rdlen
;
710 mDNSPlatformMemCopy(rr
->resrec
.rdata
->u
.data
, rdata
, rdlen
);
711 if (GetTTL
) rr
->resrec
.rroriginalttl
= ttl
;
712 rr
->resrec
.namehash
= DomainNameHashValue(rr
->resrec
.name
);
713 SetNewRData(&rr
->resrec
, mDNSNULL
, 0); // Sets rr->rdatahash for us
717 mDNSlocal
int build_domainname_from_strings(domainname
*srv
, char *name
, char *regtype
, char *domain
)
722 if (!MakeDomainLabelFromLiteralString(&n
, name
)) return -1;
723 if (!MakeDomainNameFromDNSNameString(&t
, regtype
)) return -1;
724 if (!MakeDomainNameFromDNSNameString(&d
, domain
)) return -1;
725 if (!ConstructServiceName(srv
, &n
, &t
, &d
)) return -1;
729 mDNSlocal
void send_all(dnssd_sock_t s
, const char *ptr
, int len
)
731 int n
= send(s
, ptr
, len
, 0);
732 // On a freshly-created Unix Domain Socket, the kernel should *never* fail to buffer a small write for us
733 // (four bytes for a typical error code return, 12 bytes for DNSServiceGetProperty(DaemonVersion)).
734 // If it does fail, we don't attempt to handle this failure, but we do log it so we know something is wrong.
736 LogMsg("ERROR: send_all(%d) wrote %d of %d errno %d (%s)",
737 s
, n
, len
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
741 mDNSlocal mDNSBool
AuthorizedDomain(const request_state
* const request
, const domainname
* const d
, const DNameListElem
* const doms
)
743 const DNameListElem
*delem
= mDNSNULL
;
744 int bestDelta
= -1; // the delta of the best match, lower is better
746 mDNSBool allow
= mDNSfalse
;
748 if (SystemUID(request
->uid
)) return mDNStrue
;
750 dLabels
= CountLabels(d
);
751 for (delem
= doms
; delem
; delem
= delem
->next
)
755 int delemLabels
= CountLabels(&delem
->name
);
756 int delta
= dLabels
- delemLabels
;
757 if ((bestDelta
== -1 || delta
<= bestDelta
) && SameDomainName(&delem
->name
, SkipLeadingLabels(d
, delta
)))
760 allow
= (allow
|| (delem
->uid
== request
->uid
));
765 return bestDelta
== -1 ? mDNStrue
: allow
;
769 // ***************************************************************************
770 #if COMPILER_LIKES_PRAGMA_MARK
772 #pragma mark - external helpers
775 mDNSlocal mDNSBool
callExternalHelpers(mDNSInterfaceID InterfaceID
, const domainname
*const domain
, DNSServiceFlags flags
)
777 #if APPLE_OSX_mDNSResponder
779 if ( ((InterfaceID
== mDNSInterface_Any
) && (flags
& (kDNSServiceFlagsIncludeP2P
| kDNSServiceFlagsIncludeAWDL
)) && IsLocalDomain(domain
))
780 || mDNSPlatformInterfaceIsD2D(InterfaceID
))
793 #endif // APPLE_OSX_mDNSResponder
796 mDNSlocal
void external_start_advertising_helper(service_instance
*const instance
)
798 AuthRecord
*st
= instance
->subtypes
;
799 ExtraResourceRecord
*e
;
802 if (mDNSIPPortIsZero(instance
->request
->u
.servicereg
.port
))
804 LogInfo("external_start_advertising_helper: Not registering service with port number zero");
808 if (instance
->external_advertise
) LogMsg("external_start_advertising_helper: external_advertise already set!");
810 for ( i
= 0; i
< instance
->request
->u
.servicereg
.num_subtypes
; i
++)
811 external_start_advertising_service(&st
[i
].resrec
, instance
->request
->flags
);
813 external_start_advertising_service(&instance
->srs
.RR_PTR
.resrec
, instance
->request
->flags
);
814 external_start_advertising_service(&instance
->srs
.RR_SRV
.resrec
, instance
->request
->flags
);
815 external_start_advertising_service(&instance
->srs
.RR_TXT
.resrec
, instance
->request
->flags
);
817 for (e
= instance
->srs
.Extras
; e
; e
= e
->next
)
818 external_start_advertising_service(&e
->r
.resrec
, instance
->request
->flags
);
820 instance
->external_advertise
= mDNStrue
;
823 mDNSlocal
void external_stop_advertising_helper(service_instance
*const instance
)
825 AuthRecord
*st
= instance
->subtypes
;
826 ExtraResourceRecord
*e
;
829 if (!instance
->external_advertise
) return;
831 LogInfo("external_stop_advertising_helper: calling external_stop_advertising_service");
833 for ( i
= 0; i
< instance
->request
->u
.servicereg
.num_subtypes
; i
++)
834 external_stop_advertising_service(&st
[i
].resrec
, instance
->request
->flags
);
836 external_stop_advertising_service(&instance
->srs
.RR_PTR
.resrec
, instance
->request
->flags
);
837 external_stop_advertising_service(&instance
->srs
.RR_SRV
.resrec
, instance
->request
->flags
);
838 external_stop_advertising_service(&instance
->srs
.RR_TXT
.resrec
, instance
->request
->flags
);
840 for (e
= instance
->srs
.Extras
; e
; e
= e
->next
)
841 external_stop_advertising_service(&e
->r
.resrec
, instance
->request
->flags
);
843 instance
->external_advertise
= mDNSfalse
;
846 // ***************************************************************************
847 #if COMPILER_LIKES_PRAGMA_MARK
849 #pragma mark - DNSServiceRegister
852 mDNSexport
void FreeExtraRR(mDNS
*const m
, AuthRecord
*const rr
, mStatus result
)
854 ExtraResourceRecord
*extra
= (ExtraResourceRecord
*)rr
->RecordContext
;
857 if (result
!= mStatus_MemFree
) { LogMsg("Error: FreeExtraRR invoked with unexpected error %d", result
); return; }
859 LogInfo(" FreeExtraRR %s", RRDisplayString(m
, &rr
->resrec
));
861 if (rr
->resrec
.rdata
!= &rr
->rdatastorage
)
862 freeL("Extra RData", rr
->resrec
.rdata
);
863 freeL("ExtraResourceRecord/FreeExtraRR", extra
);
866 mDNSlocal
void unlink_and_free_service_instance(service_instance
*srv
)
868 ExtraResourceRecord
*e
= srv
->srs
.Extras
, *tmp
;
870 external_stop_advertising_helper(srv
);
872 // clear pointers from parent struct
875 service_instance
**p
= &srv
->request
->u
.servicereg
.instances
;
878 if (*p
== srv
) { *p
= (*p
)->next
; break; }
885 e
->r
.RecordContext
= e
;
888 FreeExtraRR(&mDNSStorage
, &tmp
->r
, mStatus_MemFree
);
891 if (srv
->srs
.RR_TXT
.resrec
.rdata
!= &srv
->srs
.RR_TXT
.rdatastorage
)
892 freeL("TXT RData", srv
->srs
.RR_TXT
.resrec
.rdata
);
896 freeL("ServiceSubTypes", srv
->subtypes
);
897 srv
->subtypes
= NULL
;
899 if (srv
->srs
.AnonData
)
901 freeL("Anonymous", (void *)srv
->srs
.AnonData
);
902 srv
->srs
.AnonData
= NULL
;
904 freeL("service_instance", srv
);
907 // Count how many other service records we have locally with the same name, but different rdata.
908 // For auto-named services, we can have at most one per machine -- if we allowed two auto-named services of
909 // the same type on the same machine, we'd get into an infinite autoimmune-response loop of continuous renaming.
910 mDNSexport
int CountPeerRegistrations(mDNS
*const m
, ServiceRecordSet
*const srs
)
913 ResourceRecord
*r
= &srs
->RR_SRV
.resrec
;
916 for (rr
= m
->ResourceRecords
; rr
; rr
=rr
->next
)
917 if (rr
->resrec
.rrtype
== kDNSType_SRV
&& SameDomainName(rr
->resrec
.name
, r
->name
) && !IdenticalSameNameRecord(&rr
->resrec
, r
))
920 verbosedebugf("%d peer registrations for %##s", count
, r
->name
->c
);
924 mDNSexport
int CountExistingRegistrations(domainname
*srv
, mDNSIPPort port
)
928 for (rr
= mDNSStorage
.ResourceRecords
; rr
; rr
=rr
->next
)
929 if (rr
->resrec
.rrtype
== kDNSType_SRV
&&
930 mDNSSameIPPort(rr
->resrec
.rdata
->u
.srv
.port
, port
) &&
931 SameDomainName(rr
->resrec
.name
, srv
))
936 mDNSlocal
void SendServiceRemovalNotification(ServiceRecordSet
*const srs
)
939 service_instance
*instance
= srs
->ServiceContext
;
940 if (GenerateNTDResponse(srs
->RR_SRV
.resrec
.name
, srs
->RR_SRV
.resrec
.InterfaceID
, instance
->request
, &rep
, reg_service_reply_op
, 0, mStatus_NoError
) != mStatus_NoError
)
941 LogMsg("%3d: SendServiceRemovalNotification: %##s is not valid DNS-SD SRV name", instance
->request
->sd
, srs
->RR_SRV
.resrec
.name
->c
);
942 else { append_reply(instance
->request
, rep
); instance
->clientnotified
= mDNSfalse
; }
945 // service registration callback performs three duties - frees memory for deregistered services,
946 // handles name conflicts, and delivers completed registration information to the client
947 mDNSlocal
void regservice_callback(mDNS
*const m
, ServiceRecordSet
*const srs
, mStatus result
)
950 mDNSBool SuppressError
= mDNSfalse
;
951 service_instance
*instance
;
955 if (!srs
) { LogMsg("regservice_callback: srs is NULL %d", result
); return; }
957 instance
= srs
->ServiceContext
;
958 if (!instance
) { LogMsg("regservice_callback: srs->ServiceContext is NULL %d", result
); return; }
960 // don't send errors up to client for wide-area, empty-string registrations
961 if (instance
->request
&&
962 instance
->request
->u
.servicereg
.default_domain
&&
963 !instance
->default_local
)
964 SuppressError
= mDNStrue
;
966 if (mDNS_LoggingEnabled
)
968 const char *const fmt
=
969 (result
== mStatus_NoError
) ? "%s DNSServiceRegister(%##s, %u) REGISTERED" :
970 (result
== mStatus_MemFree
) ? "%s DNSServiceRegister(%##s, %u) DEREGISTERED" :
971 (result
== mStatus_NameConflict
) ? "%s DNSServiceRegister(%##s, %u) NAME CONFLICT" :
972 "%s DNSServiceRegister(%##s, %u) %s %d";
973 char prefix
[16] = "---:";
974 if (instance
->request
) mDNS_snprintf(prefix
, sizeof(prefix
), "%3d:", instance
->request
->sd
);
975 LogOperation(fmt
, prefix
, srs
->RR_SRV
.resrec
.name
->c
, mDNSVal16(srs
->RR_SRV
.resrec
.rdata
->u
.srv
.port
),
976 SuppressError
? "suppressed error" : "CALLBACK", result
);
979 if (!instance
->request
&& result
!= mStatus_MemFree
) { LogMsg("regservice_callback: instance->request is NULL %d", result
); return; }
981 if (result
== mStatus_NoError
)
983 if (instance
->request
->u
.servicereg
.allowremotequery
)
985 ExtraResourceRecord
*e
;
986 srs
->RR_ADV
.AllowRemoteQuery
= mDNStrue
;
987 srs
->RR_PTR
.AllowRemoteQuery
= mDNStrue
;
988 srs
->RR_SRV
.AllowRemoteQuery
= mDNStrue
;
989 srs
->RR_TXT
.AllowRemoteQuery
= mDNStrue
;
990 for (e
= instance
->srs
.Extras
; e
; e
= e
->next
) e
->r
.AllowRemoteQuery
= mDNStrue
;
993 if (GenerateNTDResponse(srs
->RR_SRV
.resrec
.name
, srs
->RR_SRV
.resrec
.InterfaceID
, instance
->request
, &rep
, reg_service_reply_op
, kDNSServiceFlagsAdd
, result
) != mStatus_NoError
)
994 LogMsg("%3d: regservice_callback: %##s is not valid DNS-SD SRV name", instance
->request
->sd
, srs
->RR_SRV
.resrec
.name
->c
);
995 else { append_reply(instance
->request
, rep
); instance
->clientnotified
= mDNStrue
; }
997 if (callExternalHelpers(instance
->request
->u
.servicereg
.InterfaceID
, &instance
->domain
, instance
->request
->flags
))
999 LogInfo("regservice_callback: calling external_start_advertising_helper()");
1000 external_start_advertising_helper(instance
);
1002 if (instance
->request
->u
.servicereg
.autoname
&& CountPeerRegistrations(m
, srs
) == 0)
1003 RecordUpdatedNiceLabel(m
, 0); // Successfully got new name, tell user immediately
1005 else if (result
== mStatus_MemFree
)
1007 if (instance
->request
&& instance
->renameonmemfree
)
1009 external_stop_advertising_helper(instance
);
1010 instance
->renameonmemfree
= 0;
1011 err
= mDNS_RenameAndReregisterService(m
, srs
, &instance
->request
->u
.servicereg
.name
);
1012 if (err
) LogMsg("ERROR: regservice_callback - RenameAndReregisterService returned %d", err
);
1013 // error should never happen - safest to log and continue
1016 unlink_and_free_service_instance(instance
);
1018 else if (result
== mStatus_NameConflict
)
1020 if (instance
->request
->u
.servicereg
.autorename
)
1022 external_stop_advertising_helper(instance
);
1023 if (instance
->request
->u
.servicereg
.autoname
&& CountPeerRegistrations(m
, srs
) == 0)
1025 // On conflict for an autoname service, rename and reregister *all* autoname services
1026 IncrementLabelSuffix(&m
->nicelabel
, mDNStrue
);
1027 mDNS_ConfigChanged(m
); // Will call back into udsserver_handle_configchange()
1029 else // On conflict for a non-autoname service, rename and reregister just that one service
1031 if (instance
->clientnotified
) SendServiceRemovalNotification(srs
);
1032 mDNS_RenameAndReregisterService(m
, srs
, mDNSNULL
);
1039 if (GenerateNTDResponse(srs
->RR_SRV
.resrec
.name
, srs
->RR_SRV
.resrec
.InterfaceID
, instance
->request
, &rep
, reg_service_reply_op
, kDNSServiceFlagsAdd
, result
) != mStatus_NoError
)
1040 LogMsg("%3d: regservice_callback: %##s is not valid DNS-SD SRV name", instance
->request
->sd
, srs
->RR_SRV
.resrec
.name
->c
);
1041 else { append_reply(instance
->request
, rep
); instance
->clientnotified
= mDNStrue
; }
1043 unlink_and_free_service_instance(instance
);
1046 else // Not mStatus_NoError, mStatus_MemFree, or mStatus_NameConflict
1050 if (GenerateNTDResponse(srs
->RR_SRV
.resrec
.name
, srs
->RR_SRV
.resrec
.InterfaceID
, instance
->request
, &rep
, reg_service_reply_op
, kDNSServiceFlagsAdd
, result
) != mStatus_NoError
)
1051 LogMsg("%3d: regservice_callback: %##s is not valid DNS-SD SRV name", instance
->request
->sd
, srs
->RR_SRV
.resrec
.name
->c
);
1052 else { append_reply(instance
->request
, rep
); instance
->clientnotified
= mDNStrue
; }
1057 mDNSlocal
void regrecord_callback(mDNS
*const m
, AuthRecord
*rr
, mStatus result
)
1060 if (!rr
->RecordContext
) // parent struct already freed by termination callback
1062 if (result
== mStatus_NoError
)
1063 LogMsg("Error: regrecord_callback: successful registration of orphaned record %s", ARDisplayString(m
, rr
));
1066 if (result
!= mStatus_MemFree
) LogMsg("regrecord_callback: error %d received after parent termination", result
);
1068 // We come here when the record is being deregistered either from DNSServiceRemoveRecord or connection_termination.
1069 // If the record has been updated, we need to free the rdata. Everytime we call mDNS_Update, it calls update_callback
1070 // with the old rdata (so that we can free it) and stores the new rdata in "rr->resrec.rdata". This means, we need
1071 // to free the latest rdata for which the update_callback was never called with.
1072 if (rr
->resrec
.rdata
!= &rr
->rdatastorage
) freeL("RData/regrecord_callback", rr
->resrec
.rdata
);
1073 freeL("AuthRecord/regrecord_callback", rr
);
1078 registered_record_entry
*re
= rr
->RecordContext
;
1079 request_state
*request
= re
->request
;
1081 if (mDNS_LoggingEnabled
)
1083 char *fmt
= (result
== mStatus_NoError
) ? "%3d: DNSServiceRegisterRecord(%u %s) REGISTERED" :
1084 (result
== mStatus_MemFree
) ? "%3d: DNSServiceRegisterRecord(%u %s) DEREGISTERED" :
1085 (result
== mStatus_NameConflict
) ? "%3d: DNSServiceRegisterRecord(%u %s) NAME CONFLICT" :
1086 "%3d: DNSServiceRegisterRecord(%u %s) %d";
1087 LogOperation(fmt
, request
->sd
, re
->key
, RRDisplayString(m
, &rr
->resrec
), result
);
1090 if (result
!= mStatus_MemFree
)
1092 int len
= sizeof(DNSServiceFlags
) + sizeof(mDNSu32
) + sizeof(DNSServiceErrorType
);
1093 reply_state
*reply
= create_reply(reg_record_reply_op
, len
, request
);
1094 reply
->mhdr
->client_context
= re
->regrec_client_context
;
1095 reply
->rhdr
->flags
= dnssd_htonl(0);
1096 reply
->rhdr
->ifi
= dnssd_htonl(mDNSPlatformInterfaceIndexfromInterfaceID(m
, rr
->resrec
.InterfaceID
, mDNSfalse
));
1097 reply
->rhdr
->error
= dnssd_htonl(result
);
1098 append_reply(request
, reply
);
1103 // If this is a callback to a keepalive record, do not free it.
1104 if (result
== mStatus_BadStateErr
)
1106 LogInfo("regrecord_callback: Callback with error code mStatus_BadStateErr - not freeing the record.");
1110 // unlink from list, free memory
1111 registered_record_entry
**ptr
= &request
->u
.reg_recs
;
1112 while (*ptr
&& (*ptr
) != re
) ptr
= &(*ptr
)->next
;
1113 if (!*ptr
) { LogMsg("regrecord_callback - record not in list!"); return; }
1114 *ptr
= (*ptr
)->next
;
1115 freeL("registered_record_entry AuthRecord regrecord_callback", re
->rr
);
1116 freeL("registered_record_entry regrecord_callback", re
);
1121 if (re
->external_advertise
) LogMsg("regrecord_callback: external_advertise already set!");
1123 if (callExternalHelpers(re
->origInterfaceID
, &rr
->namestorage
, request
->flags
))
1125 LogInfo("regrecord_callback: calling external_start_advertising_service");
1126 external_start_advertising_service(&rr
->resrec
, request
->flags
);
1127 re
->external_advertise
= mDNStrue
;
1133 // set_peer_pid() is called after mem is allocated for each new request in NewRequest()
1134 // This accounts for 2 places (connect_callback, request_callback)
1135 mDNSlocal
void set_peer_pid(request_state
*request
)
1137 pid_t p
= (pid_t
) -1;
1138 socklen_t len
= sizeof(p
);
1139 request
->pid_name
[0] = '\0';
1140 request
->process_id
= -1;
1141 #ifdef LOCAL_PEERPID
1142 if (request
->sd
< 0)
1144 // to extract the pid value
1145 if (getsockopt(request
->sd
, SOL_LOCAL
, LOCAL_PEERPID
, &p
, &len
) != 0)
1147 // to extract the process name from the pid value
1148 if (proc_pidinfo(p
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0)
1150 mDNSPlatformStrCopy(request
->pid_name
, proc
.pbsi_comm
);
1151 request
->process_id
= p
;
1152 #else // !LOCAL_PEERPID
1154 if (request
->sd
< 0)
1156 LogInfo("set_peer_pid: Not Supported on this version of OS");
1157 #endif // LOCAL_PEERPID
1160 mDNSlocal
void connection_termination(request_state
*request
)
1162 // When terminating a shared connection, we need to scan the all_requests list
1163 // and terminate any subbordinate operations sharing this file descriptor
1164 request_state
**req
= &all_requests
;
1166 LogOperation("%3d: DNSServiceCreateConnection STOP PID[%d](%s)", request
->sd
, request
->process_id
, request
->pid_name
);
1170 if ((*req
)->primary
== request
)
1172 // Since we're already doing a list traversal, we unlink the request directly instead of using AbortUnlinkAndFree()
1173 request_state
*tmp
= *req
;
1174 if (tmp
->primary
== tmp
) LogMsg("connection_termination ERROR (*req)->primary == *req for %p %d", tmp
, tmp
->sd
);
1175 if (tmp
->replies
) LogMsg("connection_termination ERROR How can subordinate req %p %d have replies queued?", tmp
, tmp
->sd
);
1178 freeL("request_state/connection_termination", tmp
);
1181 req
= &(*req
)->next
;
1184 while (request
->u
.reg_recs
)
1186 registered_record_entry
*ptr
= request
->u
.reg_recs
;
1187 LogOperation("%3d: DNSServiceRegisterRecord(%u %s) STOP PID[%d](%s)", request
->sd
, ptr
->key
, RRDisplayString(&mDNSStorage
, &ptr
->rr
->resrec
), request
->process_id
, request
->pid_name
);
1188 request
->u
.reg_recs
= request
->u
.reg_recs
->next
;
1189 ptr
->rr
->RecordContext
= NULL
;
1190 if (ptr
->external_advertise
)
1192 ptr
->external_advertise
= mDNSfalse
;
1193 external_stop_advertising_service(&ptr
->rr
->resrec
, request
->flags
);
1195 LogMcastS(&mDNSStorage
, ptr
->rr
, request
, reg_stop
);
1196 mDNS_Deregister(&mDNSStorage
, ptr
->rr
); // Will free ptr->rr for us
1197 freeL("registered_record_entry/connection_termination", ptr
);
1201 mDNSlocal
void handle_cancel_request(request_state
*request
)
1203 request_state
**req
= &all_requests
;
1204 LogOperation("%3d: Cancel %08X %08X", request
->sd
, request
->hdr
.client_context
.u32
[1], request
->hdr
.client_context
.u32
[0]);
1207 if ((*req
)->primary
== request
&&
1208 (*req
)->hdr
.client_context
.u32
[0] == request
->hdr
.client_context
.u32
[0] &&
1209 (*req
)->hdr
.client_context
.u32
[1] == request
->hdr
.client_context
.u32
[1])
1211 // Since we're already doing a list traversal, we unlink the request directly instead of using AbortUnlinkAndFree()
1212 request_state
*tmp
= *req
;
1215 freeL("request_state/handle_cancel_request", tmp
);
1218 req
= &(*req
)->next
;
1222 mDNSlocal mStatus
handle_regrecord_request(request_state
*request
)
1224 mStatus err
= mStatus_BadParamErr
;
1225 AuthRecord
*rr
= read_rr_from_ipc_msg(request
, 1, 1);
1228 registered_record_entry
*re
;
1229 // Don't allow non-local domains to be regsitered as LocalOnly. Allowing this would permit
1230 // clients to register records such as www.bigbank.com A w.x.y.z to redirect Safari.
1231 if (rr
->resrec
.InterfaceID
== mDNSInterface_LocalOnly
&& !IsLocalDomain(rr
->resrec
.name
) &&
1232 rr
->resrec
.rrclass
== kDNSClass_IN
&& (rr
->resrec
.rrtype
== kDNSType_A
|| rr
->resrec
.rrtype
== kDNSType_AAAA
||
1233 rr
->resrec
.rrtype
== kDNSType_CNAME
))
1235 freeL("AuthRecord/handle_regrecord_request", rr
);
1236 return (mStatus_BadParamErr
);
1238 // allocate registration entry, link into list
1239 re
= mallocL("registered_record_entry", sizeof(registered_record_entry
));
1241 FatalError("ERROR: malloc");
1242 re
->key
= request
->hdr
.reg_index
;
1244 re
->regrec_client_context
= request
->hdr
.client_context
;
1245 re
->request
= request
;
1246 re
->external_advertise
= mDNSfalse
;
1247 rr
->RecordContext
= re
;
1248 rr
->RecordCallback
= regrecord_callback
;
1250 re
->origInterfaceID
= rr
->resrec
.InterfaceID
;
1251 if (rr
->resrec
.InterfaceID
== mDNSInterface_P2P
)
1252 rr
->resrec
.InterfaceID
= mDNSInterface_Any
;
1254 if (!AuthorizedDomain(request
, rr
->resrec
.name
, AutoRegistrationDomains
)) return (mStatus_NoError
);
1256 if (rr
->resrec
.rroriginalttl
== 0)
1257 rr
->resrec
.rroriginalttl
= DefaultTTLforRRType(rr
->resrec
.rrtype
);
1259 LogOperation("%3d: DNSServiceRegisterRecord(%u %s) START PID[%d](%s)", request
->sd
, re
->key
, RRDisplayString(&mDNSStorage
, &rr
->resrec
),
1260 request
->process_id
, request
->pid_name
);
1262 err
= mDNS_Register(&mDNSStorage
, rr
);
1265 LogOperation("%3d: DNSServiceRegisterRecord(%u %s) ERROR (%d)", request
->sd
, re
->key
, RRDisplayString(&mDNSStorage
, &rr
->resrec
), err
);
1266 freeL("registered_record_entry", re
);
1267 freeL("registered_record_entry/AuthRecord", rr
);
1271 LogMcastS(&mDNSStorage
, rr
, request
, reg_start
);
1272 re
->next
= request
->u
.reg_recs
;
1273 request
->u
.reg_recs
= re
;
1279 mDNSlocal
void UpdateDeviceInfoRecord(mDNS
*const m
);
1281 mDNSlocal
void regservice_termination_callback(request_state
*request
)
1285 LogMsg("regservice_termination_callback context is NULL");
1288 while (request
->u
.servicereg
.instances
)
1290 service_instance
*p
= request
->u
.servicereg
.instances
;
1291 request
->u
.servicereg
.instances
= request
->u
.servicereg
.instances
->next
;
1292 // only safe to free memory if registration is not valid, i.e. deregister fails (which invalidates p)
1293 LogOperation("%3d: DNSServiceRegister(%##s, %u) STOP PID[%d](%s)", request
->sd
, p
->srs
.RR_SRV
.resrec
.name
->c
,
1294 mDNSVal16(p
->srs
.RR_SRV
.resrec
.rdata
->u
.srv
.port
), request
->process_id
, request
->pid_name
);
1296 external_stop_advertising_helper(p
);
1298 // Clear backpointer *before* calling mDNS_DeregisterService/unlink_and_free_service_instance
1299 // We don't need unlink_and_free_service_instance to cut its element from the list, because we're already advancing
1300 // request->u.servicereg.instances as we work our way through the list, implicitly cutting one element at a time
1301 // We can't clear p->request *after* the calling mDNS_DeregisterService/unlink_and_free_service_instance
1302 // because by then we might have already freed p
1304 LogMcastS(&mDNSStorage
, &p
->srs
.RR_SRV
, request
, reg_stop
);
1305 if (mDNS_DeregisterService(&mDNSStorage
, &p
->srs
))
1307 unlink_and_free_service_instance(p
);
1308 // Don't touch service_instance *p after this -- it's likely to have been freed already
1311 if (request
->u
.servicereg
.txtdata
)
1313 freeL("service_info txtdata", request
->u
.servicereg
.txtdata
);
1314 request
->u
.servicereg
.txtdata
= NULL
;
1316 if (request
->u
.servicereg
.autoname
)
1318 // Clear autoname before calling UpdateDeviceInfoRecord() so it doesn't mistakenly include this in its count of active autoname registrations
1319 request
->u
.servicereg
.autoname
= mDNSfalse
;
1320 UpdateDeviceInfoRecord(&mDNSStorage
);
1324 mDNSlocal request_state
*LocateSubordinateRequest(request_state
*request
)
1327 for (req
= all_requests
; req
; req
= req
->next
)
1328 if (req
->primary
== request
&&
1329 req
->hdr
.client_context
.u32
[0] == request
->hdr
.client_context
.u32
[0] &&
1330 req
->hdr
.client_context
.u32
[1] == request
->hdr
.client_context
.u32
[1]) return(req
);
1334 mDNSlocal mStatus
add_record_to_service(request_state
*request
, service_instance
*instance
, mDNSu16 rrtype
, mDNSu16 rdlen
, const char *rdata
, mDNSu32 ttl
)
1336 ServiceRecordSet
*srs
= &instance
->srs
;
1338 mDNSu32 coreFlags
= 0; // translate to corresponding mDNSCore flag definitions
1339 int size
= rdlen
> sizeof(RDataBody
) ? rdlen
: sizeof(RDataBody
);
1340 ExtraResourceRecord
*extra
= mallocL("ExtraResourceRecord", sizeof(*extra
) - sizeof(RDataBody
) + size
);
1341 if (!extra
) { my_perror("ERROR: malloc"); return mStatus_NoMemoryErr
; }
1343 mDNSPlatformMemZero(extra
, sizeof(ExtraResourceRecord
)); // OK if oversized rdata not zero'd
1344 extra
->r
.resrec
.rrtype
= rrtype
;
1345 extra
->r
.rdatastorage
.MaxRDLength
= (mDNSu16
) size
;
1346 extra
->r
.resrec
.rdlength
= rdlen
;
1347 mDNSPlatformMemCopy(&extra
->r
.rdatastorage
.u
.data
, rdata
, rdlen
);
1348 // use InterfaceID value from DNSServiceRegister() call that created the original service
1349 extra
->r
.resrec
.InterfaceID
= request
->u
.servicereg
.InterfaceID
;
1351 if (request
->flags
& kDNSServiceFlagsIncludeP2P
)
1352 coreFlags
|= coreFlagIncludeP2P
;
1353 if (request
->flags
& kDNSServiceFlagsIncludeAWDL
)
1354 coreFlags
|= coreFlagIncludeAWDL
;
1356 result
= mDNS_AddRecordToService(&mDNSStorage
, srs
, extra
, &extra
->r
.rdatastorage
, ttl
, coreFlags
);
1359 freeL("ExtraResourceRecord/add_record_to_service", extra
);
1362 LogMcastS(&mDNSStorage
, &srs
->RR_PTR
, request
, reg_start
);
1364 extra
->ClientID
= request
->hdr
.reg_index
;
1365 if ( instance
->external_advertise
1366 && callExternalHelpers(request
->u
.servicereg
.InterfaceID
, &instance
->domain
, request
->flags
))
1368 LogInfo("add_record_to_service: calling external_start_advertising_service");
1369 external_start_advertising_service(&extra
->r
.resrec
, request
->flags
);
1374 mDNSlocal mStatus
handle_add_request(request_state
*request
)
1376 service_instance
*i
;
1377 mStatus result
= mStatus_UnknownErr
;
1378 DNSServiceFlags flags
= get_flags (&request
->msgptr
, request
->msgend
);
1379 mDNSu16 rrtype
= get_uint16(&request
->msgptr
, request
->msgend
);
1380 mDNSu16 rdlen
= get_uint16(&request
->msgptr
, request
->msgend
);
1381 const char *rdata
= get_rdata (&request
->msgptr
, request
->msgend
, rdlen
);
1382 mDNSu32 ttl
= get_uint32(&request
->msgptr
, request
->msgend
);
1383 if (!ttl
) ttl
= DefaultTTLforRRType(rrtype
);
1384 (void)flags
; // Unused
1386 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceAddRecord(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
1388 // If this is a shared connection, check if the operation actually applies to a subordinate request_state object
1389 if (request
->terminate
== connection_termination
) request
= LocateSubordinateRequest(request
);
1391 if (request
->terminate
!= regservice_termination_callback
)
1392 { LogMsg("%3d: DNSServiceAddRecord(not a registered service ref)", request
->sd
); return(mStatus_BadParamErr
); }
1394 // For a service registered with zero port, don't allow adding records. This mostly happens due to a bug
1395 // in the application. See radar://9165807.
1396 if (mDNSIPPortIsZero(request
->u
.servicereg
.port
))
1397 { LogMsg("%3d: DNSServiceAddRecord: adding record to a service registered with zero port", request
->sd
); return(mStatus_BadParamErr
); }
1399 LogOperation("%3d: DNSServiceAddRecord(%X, %##s, %s, %d)", request
->sd
, flags
,
1400 (request
->u
.servicereg
.instances
) ? request
->u
.servicereg
.instances
->srs
.RR_SRV
.resrec
.name
->c
: NULL
, DNSTypeName(rrtype
), rdlen
);
1402 for (i
= request
->u
.servicereg
.instances
; i
; i
= i
->next
)
1404 result
= add_record_to_service(request
, i
, rrtype
, rdlen
, rdata
, ttl
);
1405 if (result
&& i
->default_local
) break;
1406 else result
= mStatus_NoError
; // suppress non-local default errors
1412 mDNSlocal
void update_callback(mDNS
*const m
, AuthRecord
*const rr
, RData
*oldrd
, mDNSu16 oldrdlen
)
1414 mDNSBool external_advertise
= (rr
->UpdateContext
) ? *((mDNSBool
*)rr
->UpdateContext
) : mDNSfalse
;
1417 // There are three cases.
1419 // 1. We have updated the primary TXT record of the service
1420 // 2. We have updated the TXT record that was added to the service using DNSServiceAddRecord
1421 // 3. We have updated the TXT record that was registered using DNSServiceRegisterRecord
1423 // external_advertise is set if we have advertised at least once during the initial addition
1424 // of the record in all of the three cases above. We should have checked for InterfaceID/LocalDomain
1425 // checks during the first time and hence we don't do any checks here
1426 if (external_advertise
)
1428 ResourceRecord ext
= rr
->resrec
;
1429 DNSServiceFlags flags
= 0;
1431 // Since we don't have a copy of the flags value used when the record was registered,
1432 // we'll have to derive it from the ARType field.
1433 if (rr
->ARType
== AuthRecordAnyIncludeP2P
)
1434 flags
|= kDNSServiceFlagsIncludeP2P
;
1435 else if (rr
->ARType
== AuthRecordAnyIncludeAWDL
)
1436 flags
|= kDNSServiceFlagsIncludeAWDL
;
1438 if (ext
.rdlength
== oldrdlen
&& mDNSPlatformMemSame(&ext
.rdata
->u
, &oldrd
->u
, oldrdlen
)) goto exit
;
1439 SetNewRData(&ext
, oldrd
, oldrdlen
);
1440 external_stop_advertising_service(&ext
, flags
);
1441 LogInfo("update_callback: calling external_start_advertising_service");
1442 external_start_advertising_service(&rr
->resrec
, flags
);
1445 if (oldrd
!= &rr
->rdatastorage
) freeL("RData/update_callback", oldrd
);
1448 mDNSlocal mStatus
update_record(AuthRecord
*rr
, mDNSu16 rdlen
, const char *rdata
, mDNSu32 ttl
, const mDNSBool
*const external_advertise
)
1451 const int rdsize
= rdlen
> sizeof(RDataBody
) ? rdlen
: sizeof(RDataBody
);
1452 RData
*newrd
= mallocL("RData/update_record", sizeof(RData
) - sizeof(RDataBody
) + rdsize
);
1453 if (!newrd
) FatalError("ERROR: malloc");
1454 newrd
->MaxRDLength
= (mDNSu16
) rdsize
;
1455 mDNSPlatformMemCopy(&newrd
->u
, rdata
, rdlen
);
1457 // BIND named (name daemon) doesn't allow TXT records with zero-length rdata. This is strictly speaking correct,
1458 // since RFC 1035 specifies a TXT record as "One or more <character-string>s", not "Zero or more <character-string>s".
1459 // Since some legacy apps try to create zero-length TXT records, we'll silently correct it here.
1460 if (rr
->resrec
.rrtype
== kDNSType_TXT
&& rdlen
== 0) { rdlen
= 1; newrd
->u
.txt
.c
[0] = 0; }
1462 if (external_advertise
) rr
->UpdateContext
= (void *)external_advertise
;
1464 result
= mDNS_Update(&mDNSStorage
, rr
, ttl
, rdlen
, newrd
, update_callback
);
1465 if (result
) { LogMsg("update_record: Error %d for %s", (int)result
, ARDisplayString(&mDNSStorage
, rr
)); freeL("RData/update_record", newrd
); }
1469 mDNSlocal mStatus
handle_update_request(request_state
*request
)
1471 const ipc_msg_hdr
*const hdr
= &request
->hdr
;
1472 mStatus result
= mStatus_BadReferenceErr
;
1473 service_instance
*i
;
1474 AuthRecord
*rr
= NULL
;
1476 // get the message data
1477 DNSServiceFlags flags
= get_flags (&request
->msgptr
, request
->msgend
); // flags unused
1478 mDNSu16 rdlen
= get_uint16(&request
->msgptr
, request
->msgend
);
1479 const char *rdata
= get_rdata (&request
->msgptr
, request
->msgend
, rdlen
);
1480 mDNSu32 ttl
= get_uint32(&request
->msgptr
, request
->msgend
);
1481 (void)flags
; // Unused
1483 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceUpdateRecord(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
1485 // If this is a shared connection, check if the operation actually applies to a subordinate request_state object
1486 if (request
->terminate
== connection_termination
) request
= LocateSubordinateRequest(request
);
1488 if (request
->terminate
== connection_termination
)
1490 // update an individually registered record
1491 registered_record_entry
*reptr
;
1492 for (reptr
= request
->u
.reg_recs
; reptr
; reptr
= reptr
->next
)
1494 if (reptr
->key
== hdr
->reg_index
)
1496 result
= update_record(reptr
->rr
, rdlen
, rdata
, ttl
, &reptr
->external_advertise
);
1497 LogOperation("%3d: DNSServiceUpdateRecord(%##s, %s)",
1498 request
->sd
, reptr
->rr
->resrec
.name
->c
, reptr
->rr
? DNSTypeName(reptr
->rr
->resrec
.rrtype
) : "<NONE>");
1502 result
= mStatus_BadReferenceErr
;
1506 if (request
->terminate
!= regservice_termination_callback
)
1507 { LogMsg("%3d: DNSServiceUpdateRecord(not a registered service ref)", request
->sd
); return(mStatus_BadParamErr
); }
1509 // For a service registered with zero port, only SRV record is initialized. Don't allow any updates.
1510 if (mDNSIPPortIsZero(request
->u
.servicereg
.port
))
1511 { LogMsg("%3d: DNSServiceUpdateRecord: updating the record of a service registered with zero port", request
->sd
); return(mStatus_BadParamErr
); }
1513 // update the saved off TXT data for the service
1514 if (hdr
->reg_index
== TXT_RECORD_INDEX
)
1516 if (request
->u
.servicereg
.txtdata
)
1517 { freeL("service_info txtdata", request
->u
.servicereg
.txtdata
); request
->u
.servicereg
.txtdata
= NULL
; }
1520 request
->u
.servicereg
.txtdata
= mallocL("service_info txtdata", rdlen
);
1521 if (!request
->u
.servicereg
.txtdata
) FatalError("ERROR: handle_update_request - malloc");
1522 mDNSPlatformMemCopy(request
->u
.servicereg
.txtdata
, rdata
, rdlen
);
1524 request
->u
.servicereg
.txtlen
= rdlen
;
1527 // update a record from a service record set
1528 for (i
= request
->u
.servicereg
.instances
; i
; i
= i
->next
)
1530 if (hdr
->reg_index
== TXT_RECORD_INDEX
) rr
= &i
->srs
.RR_TXT
;
1533 ExtraResourceRecord
*e
;
1534 for (e
= i
->srs
.Extras
; e
; e
= e
->next
)
1535 if (e
->ClientID
== hdr
->reg_index
) { rr
= &e
->r
; break; }
1538 if (!rr
) { result
= mStatus_BadReferenceErr
; goto end
; }
1539 result
= update_record(rr
, rdlen
, rdata
, ttl
, &i
->external_advertise
);
1540 if (result
&& i
->default_local
) goto end
;
1541 else result
= mStatus_NoError
; // suppress non-local default errors
1545 if (request
->terminate
== regservice_termination_callback
)
1546 LogOperation("%3d: DNSServiceUpdateRecord(%##s, %s)", request
->sd
,
1547 (request
->u
.servicereg
.instances
) ? request
->u
.servicereg
.instances
->srs
.RR_SRV
.resrec
.name
->c
: NULL
,
1548 rr
? DNSTypeName(rr
->resrec
.rrtype
) : "<NONE>");
1553 // remove a resource record registered via DNSServiceRegisterRecord()
1554 mDNSlocal mStatus
remove_record(request_state
*request
)
1556 mStatus err
= mStatus_UnknownErr
;
1557 registered_record_entry
*e
, **ptr
= &request
->u
.reg_recs
;
1559 while (*ptr
&& (*ptr
)->key
!= request
->hdr
.reg_index
) ptr
= &(*ptr
)->next
;
1560 if (!*ptr
) { LogMsg("%3d: DNSServiceRemoveRecord(%u) not found", request
->sd
, request
->hdr
.reg_index
); return mStatus_BadReferenceErr
; }
1562 *ptr
= e
->next
; // unlink
1564 LogOperation("%3d: DNSServiceRemoveRecord(%u %s)", request
->sd
, e
->key
, RRDisplayString(&mDNSStorage
, &e
->rr
->resrec
));
1565 e
->rr
->RecordContext
= NULL
;
1566 if (e
->external_advertise
)
1568 external_stop_advertising_service(&e
->rr
->resrec
, request
->flags
);
1569 e
->external_advertise
= mDNSfalse
;
1571 LogMcastS(&mDNSStorage
, e
->rr
, request
, reg_stop
);
1572 err
= mDNS_Deregister(&mDNSStorage
, e
->rr
); // Will free e->rr for us; we're responsible for freeing e
1575 LogMsg("ERROR: remove_record, mDNS_Deregister: %d", err
);
1576 freeL("registered_record_entry AuthRecord remove_record", e
->rr
);
1578 freeL("registered_record_entry remove_record", e
);
1582 mDNSlocal mStatus
remove_extra(const request_state
*const request
, service_instance
*const serv
, mDNSu16
*const rrtype
)
1584 mStatus err
= mStatus_BadReferenceErr
;
1585 ExtraResourceRecord
*ptr
;
1587 for (ptr
= serv
->srs
.Extras
; ptr
; ptr
= ptr
->next
)
1589 if (ptr
->ClientID
== request
->hdr
.reg_index
) // found match
1591 *rrtype
= ptr
->r
.resrec
.rrtype
;
1592 if (serv
->external_advertise
) external_stop_advertising_service(&ptr
->r
.resrec
, request
->flags
);
1593 err
= mDNS_RemoveRecordFromService(&mDNSStorage
, &serv
->srs
, ptr
, FreeExtraRR
, ptr
);
1600 mDNSlocal mStatus
handle_removerecord_request(request_state
*request
)
1602 mStatus err
= mStatus_BadReferenceErr
;
1603 get_flags(&request
->msgptr
, request
->msgend
); // flags unused
1605 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceRemoveRecord(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
1607 // If this is a shared connection, check if the operation actually applies to a subordinate request_state object
1608 if (request
->terminate
== connection_termination
) request
= LocateSubordinateRequest(request
);
1610 if (request
->terminate
== connection_termination
)
1611 err
= remove_record(request
); // remove individually registered record
1612 else if (request
->terminate
!= regservice_termination_callback
)
1613 { LogMsg("%3d: DNSServiceRemoveRecord(not a registered service ref)", request
->sd
); return(mStatus_BadParamErr
); }
1616 service_instance
*i
;
1618 LogOperation("%3d: DNSServiceRemoveRecord(%##s, %s)", request
->sd
,
1619 (request
->u
.servicereg
.instances
) ? request
->u
.servicereg
.instances
->srs
.RR_SRV
.resrec
.name
->c
: NULL
,
1620 rrtype
? DNSTypeName(rrtype
) : "<NONE>");
1621 for (i
= request
->u
.servicereg
.instances
; i
; i
= i
->next
)
1623 err
= remove_extra(request
, i
, &rrtype
);
1624 if (err
&& i
->default_local
) break;
1625 else err
= mStatus_NoError
; // suppress non-local default errors
1632 // If there's a comma followed by another character,
1633 // FindFirstSubType overwrites the comma with a nul and returns the pointer to the next character.
1634 // Otherwise, it returns a pointer to the final nul at the end of the string
1635 mDNSlocal
char *FindFirstSubType(char *p
, char **AnonData
)
1639 if (p
[0] == '\\' && p
[1])
1643 else if (p
[0] == ',' && p
[1])
1648 else if (p
[0] == ':' && p
[1])
1661 // If there's a comma followed by another character,
1662 // FindNextSubType overwrites the comma with a nul and returns the pointer to the next character.
1663 // If it finds an illegal unescaped dot in the subtype name, it returns mDNSNULL
1664 // Otherwise, it returns a pointer to the final nul at the end of the string
1665 mDNSlocal
char *FindNextSubType(char *p
)
1669 if (p
[0] == '\\' && p
[1]) // If escape character
1670 p
+= 2; // ignore following character
1671 else if (p
[0] == ',') // If we found a comma
1676 else if (p
[0] == '.')
1683 // Returns -1 if illegal subtype found
1684 mDNSexport mDNSs32
ChopSubTypes(char *regtype
, char **AnonData
)
1686 mDNSs32 NumSubTypes
= 0;
1687 char *stp
= FindFirstSubType(regtype
, AnonData
);
1688 while (stp
&& *stp
) // If we found a comma...
1690 if (*stp
== ',') return(-1);
1692 stp
= FindNextSubType(stp
);
1694 if (!stp
) return(-1);
1695 return(NumSubTypes
);
1698 mDNSexport AuthRecord
*AllocateSubTypes(mDNSs32 NumSubTypes
, char *p
, char **AnonData
)
1700 AuthRecord
*st
= mDNSNULL
;
1702 // "p" is pointing at the regtype e.g., _http._tcp followed by ":<AnonData>" indicated
1703 // by AnonData being non-NULL which is in turn follwed by ",<SubTypes>" indicated by
1704 // NumSubTypes being non-zero. We need to skip the initial regtype to get to the actual
1705 // data that we want. When we come here, ChopSubTypes has null terminated like this e.g.,
1707 // _http._tcp<NULL><AnonData><NULL><SubType1><NULL><SubType2><NULL> etc.
1709 // 1. If we have Anonymous data and subtypes, skip the regtype (e.g., "_http._tcp")
1710 // to get the AnonData and then skip the AnonData to get to the SubType.
1712 // 2. If we have only SubTypes, skip the regtype to get to the SubType data.
1714 // 3. If we have only AnonData, skip the regtype to get to the AnonData.
1716 // 4. If we don't have AnonData or NumStypes, it is a noop.
1726 len
= strlen(p
) + 1;
1727 *AnonData
= mallocL("Anonymous", len
);
1732 mDNSPlatformMemCopy(*AnonData
, p
, len
);
1737 st
= mallocL("ServiceSubTypes", NumSubTypes
* sizeof(AuthRecord
));
1738 if (!st
) return(mDNSNULL
);
1739 for (i
= 0; i
< NumSubTypes
; i
++)
1741 mDNS_SetupResourceRecord(&st
[i
], mDNSNULL
, mDNSInterface_Any
, kDNSQType_ANY
, kStandardTTL
, 0, AuthRecordAny
, mDNSNULL
, mDNSNULL
);
1742 // First time through we skip the regtype or AnonData. Subsequently, the
1743 // previous subtype.
1746 if (!MakeDomainNameFromDNSNameString(&st
[i
].namestorage
, p
))
1748 freeL("ServiceSubTypes", st
);
1750 freeL("AnonymousData", *AnonData
);
1755 // If NumSubTypes is zero and AnonData is non-NULL, we still return NULL but AnonData has been
1756 // initialized. The caller knows how to handle this.
1760 mDNSlocal mStatus
register_service_instance(request_state
*request
, const domainname
*domain
)
1762 service_instance
**ptr
, *instance
;
1763 const int extra_size
= (request
->u
.servicereg
.txtlen
> sizeof(RDataBody
)) ? (request
->u
.servicereg
.txtlen
- sizeof(RDataBody
)) : 0;
1764 const mDNSBool DomainIsLocal
= SameDomainName(domain
, &localdomain
);
1766 mDNSInterfaceID interfaceID
= request
->u
.servicereg
.InterfaceID
;
1767 mDNSu32 coreFlags
= 0;
1769 if (request
->flags
& kDNSServiceFlagsIncludeP2P
)
1770 coreFlags
|= coreFlagIncludeP2P
;
1771 if (request
->flags
& kDNSServiceFlagsIncludeAWDL
)
1772 coreFlags
|= coreFlagIncludeAWDL
;
1774 // Client guarantees that record names are unique, so we can skip sending out initial
1775 // probe messages. Standard name conflict resolution is still done if a conflict is discovered.
1776 if (request
->flags
& kDNSServiceFlagsKnownUnique
)
1777 coreFlags
|= coreFlagKnownUnique
;
1779 if (request
->flags
& kDNSServiceFlagsWakeOnlyService
)
1780 coreFlags
|= coreFlagWakeOnly
;
1782 // If the client specified an interface, but no domain, then we honor the specified interface for the "local" (mDNS)
1783 // registration but for the wide-area registrations we don't (currently) have any concept of a wide-area unicast
1784 // registrations scoped to a specific interface, so for the automatic domains we add we must *not* specify an interface.
1785 // (Specifying an interface with an apparently wide-area domain (i.e. something other than "local")
1786 // currently forces the registration to use mDNS multicast despite the apparently wide-area domain.)
1787 if (request
->u
.servicereg
.default_domain
&& !DomainIsLocal
) interfaceID
= mDNSInterface_Any
;
1789 for (ptr
= &request
->u
.servicereg
.instances
; *ptr
; ptr
= &(*ptr
)->next
)
1791 if (SameDomainName(&(*ptr
)->domain
, domain
))
1793 LogMsg("register_service_instance: domain %##s already registered for %#s.%##s",
1794 domain
->c
, &request
->u
.servicereg
.name
, &request
->u
.servicereg
.type
);
1795 return mStatus_AlreadyRegistered
;
1799 instance
= mallocL("service_instance", sizeof(*instance
) + extra_size
);
1800 if (!instance
) { my_perror("ERROR: malloc"); return mStatus_NoMemoryErr
; }
1802 instance
->next
= mDNSNULL
;
1803 instance
->request
= request
;
1804 instance
->renameonmemfree
= 0;
1805 instance
->clientnotified
= mDNSfalse
;
1806 instance
->default_local
= (request
->u
.servicereg
.default_domain
&& DomainIsLocal
);
1807 instance
->external_advertise
= mDNSfalse
;
1808 AssignDomainName(&instance
->domain
, domain
);
1810 instance
->srs
.AnonData
= mDNSNULL
;
1811 if (!request
->u
.servicereg
.AnonData
)
1813 instance
->subtypes
= AllocateSubTypes(request
->u
.servicereg
.num_subtypes
, request
->u
.servicereg
.type_as_string
, mDNSNULL
);
1817 char *AnonData
= mDNSNULL
;
1818 instance
->subtypes
= AllocateSubTypes(request
->u
.servicereg
.num_subtypes
, request
->u
.servicereg
.type_as_string
, &AnonData
);
1820 instance
->srs
.AnonData
= (const mDNSu8
*)AnonData
;
1823 if (request
->u
.servicereg
.num_subtypes
&& !instance
->subtypes
)
1825 unlink_and_free_service_instance(instance
);
1827 FatalError("ERROR: malloc");
1830 result
= mDNS_RegisterService(&mDNSStorage
, &instance
->srs
,
1831 &request
->u
.servicereg
.name
, &request
->u
.servicereg
.type
, domain
,
1832 request
->u
.servicereg
.host
.c
[0] ? &request
->u
.servicereg
.host
: NULL
,
1833 request
->u
.servicereg
.port
,
1834 request
->u
.servicereg
.txtdata
, request
->u
.servicereg
.txtlen
,
1835 instance
->subtypes
, request
->u
.servicereg
.num_subtypes
,
1836 interfaceID
, regservice_callback
, instance
, coreFlags
);
1840 *ptr
= instance
; // Append this to the end of our request->u.servicereg.instances list
1841 LogOperation("%3d: DNSServiceRegister(%##s, %u) ADDED", instance
->request
->sd
,
1842 instance
->srs
.RR_SRV
.resrec
.name
->c
, mDNSVal16(request
->u
.servicereg
.port
));
1843 LogMcastS(&mDNSStorage
, &instance
->srs
.RR_SRV
, request
, reg_start
);
1847 LogMsg("register_service_instance %#s.%##s%##s error %d",
1848 &request
->u
.servicereg
.name
, &request
->u
.servicereg
.type
, domain
->c
, result
);
1849 unlink_and_free_service_instance(instance
);
1855 mDNSlocal
void udsserver_default_reg_domain_changed(const DNameListElem
*const d
, const mDNSBool add
)
1857 request_state
*request
;
1859 #if APPLE_OSX_mDNSResponder
1860 machserver_automatic_registration_domain_changed(&d
->name
, add
);
1861 #endif // APPLE_OSX_mDNSResponder
1863 LogMsg("%s registration domain %##s", add
? "Adding" : "Removing", d
->name
.c
);
1864 for (request
= all_requests
; request
; request
= request
->next
)
1866 if (request
->terminate
!= regservice_termination_callback
) continue;
1867 if (!request
->u
.servicereg
.default_domain
) continue;
1868 if (!d
->uid
|| SystemUID(request
->uid
) || request
->uid
== d
->uid
)
1870 service_instance
**ptr
= &request
->u
.servicereg
.instances
;
1871 while (*ptr
&& !SameDomainName(&(*ptr
)->domain
, &d
->name
)) ptr
= &(*ptr
)->next
;
1874 // If we don't already have this domain in our list for this registration, add it now
1875 if (!*ptr
) register_service_instance(request
, &d
->name
);
1876 else debugf("udsserver_default_reg_domain_changed %##s already in list, not re-adding", &d
->name
);
1880 // Normally we should not fail to find the specified instance
1881 // One case where this can happen is if a uDNS update fails for some reason,
1882 // and regservice_callback then calls unlink_and_free_service_instance and disposes of that instance.
1884 LogMsg("udsserver_default_reg_domain_changed domain %##s not found for service %#s type %s",
1885 &d
->name
, request
->u
.servicereg
.name
.c
, request
->u
.servicereg
.type_as_string
);
1889 for (p
= AutoRegistrationDomains
; p
; p
=p
->next
)
1890 if (!p
->uid
|| SystemUID(request
->uid
) || request
->uid
== p
->uid
)
1891 if (SameDomainName(&d
->name
, &p
->name
)) break;
1892 if (p
) debugf("udsserver_default_reg_domain_changed %##s still in list, not removing", &d
->name
);
1896 service_instance
*si
= *ptr
;
1898 if (si
->clientnotified
) SendServiceRemovalNotification(&si
->srs
); // Do this *before* clearing si->request backpointer
1899 // Now that we've cut this service_instance from the list, we MUST clear the si->request backpointer.
1900 // Otherwise what can happen is this: While our mDNS_DeregisterService is in the
1901 // process of completing asynchronously, the client cancels the entire operation, so
1902 // regservice_termination_callback then runs through the whole list deregistering each
1903 // instance, clearing the backpointers, and then disposing the parent request_state object.
1904 // However, because this service_instance isn't in the list any more, regservice_termination_callback
1905 // has no way to find it and clear its backpointer, and then when our mDNS_DeregisterService finally
1906 // completes later with a mStatus_MemFree message, it calls unlink_and_free_service_instance() with
1907 // a service_instance with a stale si->request backpointer pointing to memory that's already been freed.
1909 err
= mDNS_DeregisterService(&mDNSStorage
, &si
->srs
);
1910 if (err
) { LogMsg("udsserver_default_reg_domain_changed err %d", err
); unlink_and_free_service_instance(si
); }
1918 // Don't allow normal and anonymous registration to coexist.
1919 mDNSlocal mDNSBool
CheckForMixedRegistrations(domainname
*regtype
, domainname
*domain
, mDNSBool AnonData
)
1921 request_state
*request
;
1923 // We only care about local domains where the anonymous extension is
1925 if (!SameDomainName(domain
, (const domainname
*) "\x5" "local"))
1930 for (request
= all_requests
; request
; request
= request
->next
)
1932 service_instance
*ptr
;
1934 if (request
->terminate
!= regservice_termination_callback
) continue;
1935 for (ptr
= request
->u
.servicereg
.instances
; ptr
; ptr
= ptr
->next
)
1937 if (!SameDomainName(&ptr
->domain
, (const domainname
*)"\x5" "local") ||
1938 !SameDomainName(&request
->u
.servicereg
.type
, regtype
))
1943 // If we are about to register a anonymous registraion, we dont't want to
1944 // allow the regular ones and vice versa.
1947 if (!ptr
->srs
.AnonData
)
1949 LogMsg("CheckForMixedRegistrations: Normal registration already exists for %##s", regtype
->c
);
1955 // Allow multiple regular registrations
1956 if (ptr
->srs
.AnonData
)
1958 LogMsg("CheckForMixedRegistrations: Anonymous registration already exists for %##s", regtype
->c
);
1967 // Returns true if the interfaceIndex value matches one of the pre-defined
1968 // special values listed in the switch statement below.
1969 mDNSlocal mDNSBool
PreDefinedInterfaceIndex(mDNSu32 interfaceIndex
)
1971 switch(interfaceIndex
)
1973 case kDNSServiceInterfaceIndexAny
:
1974 case kDNSServiceInterfaceIndexLocalOnly
:
1975 case kDNSServiceInterfaceIndexUnicast
:
1976 case kDNSServiceInterfaceIndexP2P
:
1984 mDNSlocal mStatus
handle_regservice_request(request_state
*request
)
1986 char name
[256]; // Lots of spare space for extra-long names that we'll auto-truncate down to 63 bytes
1987 char domain
[MAX_ESCAPED_DOMAIN_NAME
], host
[MAX_ESCAPED_DOMAIN_NAME
];
1988 char type_as_string
[MAX_ESCAPED_DOMAIN_NAME
];
1991 char *AnonData
= mDNSNULL
;
1993 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
1994 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
1995 mDNSInterfaceID InterfaceID
;
1997 // Map kDNSServiceInterfaceIndexP2P to kDNSServiceInterfaceIndexAny with the
1998 // kDNSServiceFlagsIncludeP2P flag set.
1999 if (interfaceIndex
== kDNSServiceInterfaceIndexP2P
)
2001 LogOperation("handle_regservice_request: mapping kDNSServiceInterfaceIndexP2P to kDNSServiceInterfaceIndexAny + kDNSServiceFlagsIncludeP2P");
2002 flags
|= kDNSServiceFlagsIncludeP2P
;
2003 interfaceIndex
= kDNSServiceInterfaceIndexAny
;
2006 InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
2008 // The registration is scoped to a specific interface index, but the
2009 // interface is not currently in our list.
2010 if (interfaceIndex
&& !InterfaceID
)
2012 // If it's one of the specially defined inteface index values, just return an error.
2013 if (PreDefinedInterfaceIndex(interfaceIndex
))
2015 LogMsg("ERROR: handle_regservice_request: bad interfaceIndex %d", interfaceIndex
);
2016 return(mStatus_BadParamErr
);
2019 // Otherwise, use the specified interface index value and the registration will
2020 // be applied to that interface when it comes up.
2021 InterfaceID
= (mDNSInterfaceID
)(uintptr_t)interfaceIndex
;
2022 LogInfo("handle_regservice_request: registration pending for interface index %d", interfaceIndex
);
2025 if (get_string(&request
->msgptr
, request
->msgend
, name
, sizeof(name
)) < 0 ||
2026 get_string(&request
->msgptr
, request
->msgend
, type_as_string
, MAX_ESCAPED_DOMAIN_NAME
) < 0 ||
2027 get_string(&request
->msgptr
, request
->msgend
, domain
, MAX_ESCAPED_DOMAIN_NAME
) < 0 ||
2028 get_string(&request
->msgptr
, request
->msgend
, host
, MAX_ESCAPED_DOMAIN_NAME
) < 0)
2029 { LogMsg("ERROR: handle_regservice_request - Couldn't read name/regtype/domain"); return(mStatus_BadParamErr
); }
2031 request
->flags
= flags
;
2032 request
->u
.servicereg
.InterfaceID
= InterfaceID
;
2033 request
->u
.servicereg
.instances
= NULL
;
2034 request
->u
.servicereg
.txtlen
= 0;
2035 request
->u
.servicereg
.txtdata
= NULL
;
2036 mDNSPlatformStrCopy(request
->u
.servicereg
.type_as_string
, type_as_string
);
2038 if (request
->msgptr
+ 2 > request
->msgend
) request
->msgptr
= NULL
;
2041 request
->u
.servicereg
.port
.b
[0] = *request
->msgptr
++;
2042 request
->u
.servicereg
.port
.b
[1] = *request
->msgptr
++;
2045 request
->u
.servicereg
.txtlen
= get_uint16(&request
->msgptr
, request
->msgend
);
2046 if (request
->u
.servicereg
.txtlen
)
2048 request
->u
.servicereg
.txtdata
= mallocL("service_info txtdata", request
->u
.servicereg
.txtlen
);
2049 if (!request
->u
.servicereg
.txtdata
) FatalError("ERROR: handle_regservice_request - malloc");
2050 mDNSPlatformMemCopy(request
->u
.servicereg
.txtdata
, get_rdata(&request
->msgptr
, request
->msgend
, request
->u
.servicereg
.txtlen
), request
->u
.servicereg
.txtlen
);
2053 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceRegister(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
2055 // Check for sub-types after the service type
2056 request
->u
.servicereg
.num_subtypes
= ChopSubTypes(request
->u
.servicereg
.type_as_string
, &AnonData
); // Note: Modifies regtype string to remove trailing subtypes
2057 if (request
->u
.servicereg
.num_subtypes
< 0)
2059 LogMsg("ERROR: handle_regservice_request - ChopSubTypes failed %s", request
->u
.servicereg
.type_as_string
);
2060 return(mStatus_BadParamErr
);
2064 int AnonDataLen
= strlen(AnonData
);
2065 if (AnonDataLen
> MAX_ANONYMOUS_DATA
)
2067 LogMsg("ERROR: handle_regservice_request: AnonDataLen %d", AnonDataLen
);
2068 return(mStatus_BadParamErr
);
2070 request
->u
.servicereg
.AnonData
= mDNStrue
;
2074 request
->u
.servicereg
.AnonData
= mDNSfalse
;
2077 // Don't try to construct "domainname t" until *after* ChopSubTypes has worked its magic
2078 if (!*request
->u
.servicereg
.type_as_string
|| !MakeDomainNameFromDNSNameString(&request
->u
.servicereg
.type
, request
->u
.servicereg
.type_as_string
))
2079 { LogMsg("ERROR: handle_regservice_request - type_as_string bad %s", request
->u
.servicereg
.type_as_string
); return(mStatus_BadParamErr
); }
2083 request
->u
.servicereg
.name
= mDNSStorage
.nicelabel
;
2084 request
->u
.servicereg
.autoname
= mDNStrue
;
2088 // If the client is allowing AutoRename, then truncate name to legal length before converting it to a DomainLabel
2089 if ((flags
& kDNSServiceFlagsNoAutoRename
) == 0)
2091 int newlen
= TruncateUTF8ToLength((mDNSu8
*)name
, mDNSPlatformStrLen(name
), MAX_DOMAIN_LABEL
);
2094 if (!MakeDomainLabelFromLiteralString(&request
->u
.servicereg
.name
, name
))
2095 { LogMsg("ERROR: handle_regservice_request - name bad %s", name
); return(mStatus_BadParamErr
); }
2096 request
->u
.servicereg
.autoname
= mDNSfalse
;
2101 request
->u
.servicereg
.default_domain
= mDNSfalse
;
2102 if (!MakeDomainNameFromDNSNameString(&d
, domain
))
2103 { LogMsg("ERROR: handle_regservice_request - domain bad %s", domain
); return(mStatus_BadParamErr
); }
2107 request
->u
.servicereg
.default_domain
= mDNStrue
;
2108 MakeDomainNameFromDNSNameString(&d
, "local.");
2111 // We don't allow the anonymous and the regular ones to coexist
2112 if (!CheckForMixedRegistrations(&request
->u
.servicereg
.type
, &d
, request
->u
.servicereg
.AnonData
))
2114 return(mStatus_BadParamErr
);
2117 if (!ConstructServiceName(&srv
, &request
->u
.servicereg
.name
, &request
->u
.servicereg
.type
, &d
))
2119 LogMsg("ERROR: handle_regservice_request - Couldn't ConstructServiceName from, “%#s” “%##s” “%##s”",
2120 request
->u
.servicereg
.name
.c
, request
->u
.servicereg
.type
.c
, d
.c
); return(mStatus_BadParamErr
);
2123 if (!MakeDomainNameFromDNSNameString(&request
->u
.servicereg
.host
, host
))
2124 { LogMsg("ERROR: handle_regservice_request - host bad %s", host
); return(mStatus_BadParamErr
); }
2125 request
->u
.servicereg
.autorename
= (flags
& kDNSServiceFlagsNoAutoRename
) == 0;
2126 request
->u
.servicereg
.allowremotequery
= (flags
& kDNSServiceFlagsAllowRemoteQuery
) != 0;
2128 // Some clients use mDNS for lightweight copy protection, registering a pseudo-service with
2129 // a port number of zero. When two instances of the protected client are allowed to run on one
2130 // machine, we don't want to see misleading "Bogus client" messages in syslog and the console.
2131 if (!mDNSIPPortIsZero(request
->u
.servicereg
.port
))
2133 int count
= CountExistingRegistrations(&srv
, request
->u
.servicereg
.port
);
2135 LogMsg("Client application[%d](%s) registered %d identical instances of service %##s port %u.", request
->process_id
,
2136 request
->pid_name
, count
+1, srv
.c
, mDNSVal16(request
->u
.servicereg
.port
));
2139 LogOperation("%3d: DNSServiceRegister(%X, %d, \"%s\", \"%s\", \"%s\", \"%s\", %u) START PID[%d](%s)",
2140 request
->sd
, flags
, interfaceIndex
, name
, request
->u
.servicereg
.type_as_string
, domain
, host
,
2141 mDNSVal16(request
->u
.servicereg
.port
), request
->process_id
, request
->pid_name
);
2143 // We need to unconditionally set request->terminate, because even if we didn't successfully
2144 // start any registrations right now, subsequent configuration changes may cause successful
2145 // registrations to be added, and we'll need to cancel them before freeing this memory.
2146 // We also need to set request->terminate first, before adding additional service instances,
2147 // because the uds_validatelists uses the request->terminate function pointer to determine
2148 // what kind of request this is, and therefore what kind of list validation is required.
2149 request
->terminate
= regservice_termination_callback
;
2151 err
= register_service_instance(request
, &d
);
2154 err
= AuthorizedDomain(request
, &d
, AutoRegistrationDomains
) ? register_service_instance(request
, &d
) : mStatus_NoError
;
2158 if (request
->u
.servicereg
.autoname
) UpdateDeviceInfoRecord(&mDNSStorage
);
2163 // Note that we don't report errors for non-local, non-explicit domains
2164 for (ptr
= AutoRegistrationDomains
; ptr
; ptr
= ptr
->next
)
2165 if (!ptr
->uid
|| SystemUID(request
->uid
) || request
->uid
== ptr
->uid
)
2166 register_service_instance(request
, &ptr
->name
);
2173 // ***************************************************************************
2174 #if COMPILER_LIKES_PRAGMA_MARK
2176 #pragma mark - DNSServiceBrowse
2179 mDNSlocal
void FoundInstance(mDNS
*const m
, DNSQuestion
*question
, const ResourceRecord
*const answer
, QC_result AddRecord
)
2181 DNSServiceFlags flags
= AddRecord
? kDNSServiceFlagsAdd
: 0;
2182 request_state
*req
= question
->QuestionContext
;
2186 if (answer
->rrtype
!= kDNSType_PTR
)
2187 { LogMsg("%3d: FoundInstance: Should not be called with rrtype %d (not a PTR record)", req
->sd
, answer
->rrtype
); return; }
2189 if (mDNSOpaque16IsZero(question
->TargetQID
) && (question
->BrowseThreshold
> 0) && (question
->CurrentAnswers
>= question
->BrowseThreshold
))
2191 flags
|= kDNSServiceFlagsThresholdReached
;
2194 if (GenerateNTDResponse(&answer
->rdata
->u
.name
, answer
->InterfaceID
, req
, &rep
, browse_reply_op
, flags
, mStatus_NoError
) != mStatus_NoError
)
2196 if (SameDomainName(&req
->u
.browser
.regtype
, (const domainname
*)"\x09_services\x07_dns-sd\x04_udp"))
2198 // Special support to enable the DNSServiceBrowse call made by Bonjour Browser
2199 // Remove after Bonjour Browser is updated to use DNSServiceQueryRecord instead of DNSServiceBrowse
2200 GenerateBonjourBrowserResponse(&answer
->rdata
->u
.name
, answer
->InterfaceID
, req
, &rep
, browse_reply_op
, flags
, mStatus_NoError
);
2201 goto bonjourbrowserhack
;
2204 LogMsg("%3d: FoundInstance: %##s PTR %##s received from network is not valid DNS-SD service pointer",
2205 req
->sd
, answer
->name
->c
, answer
->rdata
->u
.name
.c
);
2211 LogOperation("%3d: DNSServiceBrowse(%##s, %s) RESULT %s %d: %s",
2212 req
->sd
, question
->qname
.c
, DNSTypeName(question
->qtype
), AddRecord
? "Add" : "Rmv",
2213 mDNSPlatformInterfaceIndexfromInterfaceID(m
, answer
->InterfaceID
, mDNSfalse
), RRDisplayString(m
, answer
));
2215 append_reply(req
, rep
);
2218 mDNSlocal mStatus
add_domain_to_browser(request_state
*info
, const domainname
*d
)
2223 for (p
= info
->u
.browser
.browsers
; p
; p
= p
->next
)
2225 if (SameDomainName(&p
->domain
, d
))
2226 { debugf("add_domain_to_browser %##s already in list", d
->c
); return mStatus_AlreadyRegistered
; }
2229 b
= mallocL("browser_t", sizeof(*b
));
2230 if (!b
) return mStatus_NoMemoryErr
;
2231 AssignDomainName(&b
->domain
, d
);
2232 err
= mDNS_StartBrowse(&mDNSStorage
, &b
->q
, &info
->u
.browser
.regtype
, d
, info
->u
.browser
.AnonData
, info
->u
.browser
.interface_id
, info
->flags
,
2233 info
->u
.browser
.ForceMCast
, (info
->flags
& kDNSServiceFlagsBackgroundTrafficClass
) != 0, FoundInstance
, info
);
2236 LogMsg("mDNS_StartBrowse returned %d for type %##s domain %##s", err
, info
->u
.browser
.regtype
.c
, d
->c
);
2237 freeL("browser_t/add_domain_to_browser", b
);
2241 b
->next
= info
->u
.browser
.browsers
;
2242 info
->u
.browser
.browsers
= b
;
2243 LogOperation("%3d: DNSServiceBrowse(%##s) START PID[%d](%s)", info
->sd
, b
->q
.qname
.c
, info
->process_id
,
2245 LogMcastQ(&mDNSStorage
, &b
->q
, info
, q_start
);
2246 if (callExternalHelpers(info
->u
.browser
.interface_id
, &b
->domain
, info
->flags
))
2249 ConstructServiceName(&tmp
, NULL
, &info
->u
.browser
.regtype
, &b
->domain
);
2250 LogInfo("add_domain_to_browser: calling external_start_browsing_for_service()");
2251 external_start_browsing_for_service(info
->u
.browser
.interface_id
, &tmp
, kDNSType_PTR
, info
->flags
);
2257 mDNSlocal
void browse_termination_callback(request_state
*info
)
2259 if (info
->u
.browser
.default_domain
)
2261 // Stop the domain enumeration queries to discover the WAB legacy browse domains
2262 LogInfo("%3d: DNSServiceBrowse Cancel WAB PID[%d](%s)", info
->sd
, info
->process_id
, info
->pid_name
);
2263 uDNS_StopWABQueries(&mDNSStorage
, UDNS_WAB_LBROWSE_QUERY
);
2265 if (info
->u
.browser
.AnonData
)
2266 freeL("Anonymous", (void *)info
->u
.browser
.AnonData
);
2267 while (info
->u
.browser
.browsers
)
2269 browser_t
*ptr
= info
->u
.browser
.browsers
;
2271 if (callExternalHelpers(info
->u
.browser
.interface_id
, &ptr
->domain
, info
->flags
))
2274 ConstructServiceName(&tmp
, NULL
, &info
->u
.browser
.regtype
, &ptr
->domain
);
2275 LogInfo("browse_termination_callback: calling external_stop_browsing_for_service()");
2276 external_stop_browsing_for_service(info
->u
.browser
.interface_id
, &tmp
, kDNSType_PTR
, info
->flags
);
2279 info
->u
.browser
.browsers
= ptr
->next
;
2280 LogOperation("%3d: DNSServiceBrowse(%##s) STOP PID[%d](%s)", info
->sd
, ptr
->q
.qname
.c
, info
->process_id
, info
->pid_name
);
2281 mDNS_StopBrowse(&mDNSStorage
, &ptr
->q
); // no need to error-check result
2282 LogMcastQ(&mDNSStorage
, &ptr
->q
, info
, q_stop
);
2283 freeL("browser_t/browse_termination_callback", ptr
);
2287 mDNSlocal
void udsserver_automatic_browse_domain_changed(const DNameListElem
*const d
, const mDNSBool add
)
2289 request_state
*request
;
2290 debugf("udsserver_automatic_browse_domain_changed: %s default browse domain %##s", add
? "Adding" : "Removing", d
->name
.c
);
2292 #if APPLE_OSX_mDNSResponder
2293 machserver_automatic_browse_domain_changed(&d
->name
, add
);
2294 #endif // APPLE_OSX_mDNSResponder
2296 for (request
= all_requests
; request
; request
= request
->next
)
2298 if (request
->terminate
!= browse_termination_callback
) continue; // Not a browse operation
2299 if (!request
->u
.browser
.default_domain
) continue; // Not an auto-browse operation
2300 if (!d
->uid
|| SystemUID(request
->uid
) || request
->uid
== d
->uid
)
2302 browser_t
**ptr
= &request
->u
.browser
.browsers
;
2303 while (*ptr
&& !SameDomainName(&(*ptr
)->domain
, &d
->name
)) ptr
= &(*ptr
)->next
;
2306 // If we don't already have this domain in our list for this browse operation, add it now
2307 if (!*ptr
) add_domain_to_browser(request
, &d
->name
);
2308 else debugf("udsserver_automatic_browse_domain_changed %##s already in list, not re-adding", &d
->name
);
2312 if (!*ptr
) LogMsg("udsserver_automatic_browse_domain_changed ERROR %##s not found", &d
->name
);
2316 for (p
= AutoBrowseDomains
; p
; p
=p
->next
)
2317 if (!p
->uid
|| SystemUID(request
->uid
) || request
->uid
== p
->uid
)
2318 if (SameDomainName(&d
->name
, &p
->name
)) break;
2319 if (p
) debugf("udsserver_automatic_browse_domain_changed %##s still in list, not removing", &d
->name
);
2322 browser_t
*rem
= *ptr
;
2323 *ptr
= (*ptr
)->next
;
2324 mDNS_StopQueryWithRemoves(&mDNSStorage
, &rem
->q
);
2325 freeL("browser_t/udsserver_automatic_browse_domain_changed", rem
);
2333 mDNSlocal
void FreeARElemCallback(mDNS
*const m
, AuthRecord
*const rr
, mStatus result
)
2336 if (result
== mStatus_MemFree
)
2338 // On shutdown, mDNS_Close automatically deregisters all records
2339 // Since in this case no one has called DeregisterLocalOnlyDomainEnumPTR to cut the record
2340 // from the LocalDomainEnumRecords list, we do this here before we free the memory.
2341 // (This should actually no longer be necessary, now that we do the proper cleanup in
2342 // udsserver_exit. To confirm this, we'll log an error message if we do find a record that
2343 // hasn't been cut from the list yet. If these messages don't appear, we can delete this code.)
2344 ARListElem
**ptr
= &LocalDomainEnumRecords
;
2345 while (*ptr
&& &(*ptr
)->ar
!= rr
) ptr
= &(*ptr
)->next
;
2346 if (*ptr
) { *ptr
= (*ptr
)->next
; LogMsg("FreeARElemCallback: Have to cut %s", ARDisplayString(m
, rr
)); }
2347 mDNSPlatformMemFree(rr
->RecordContext
);
2351 // RegisterLocalOnlyDomainEnumPTR and DeregisterLocalOnlyDomainEnumPTR largely duplicate code in
2352 // "FoundDomain" in uDNS.c for creating and destroying these special mDNSInterface_LocalOnly records.
2353 // We may want to turn the common code into a subroutine.
2355 mDNSlocal
void RegisterLocalOnlyDomainEnumPTR(mDNS
*m
, const domainname
*d
, int type
)
2357 // allocate/register legacy and non-legacy _browse PTR record
2359 ARListElem
*ptr
= mDNSPlatformMemAllocate(sizeof(*ptr
));
2361 debugf("Incrementing %s refcount for %##s",
2362 (type
== mDNS_DomainTypeBrowse
) ? "browse domain " :
2363 (type
== mDNS_DomainTypeRegistration
) ? "registration dom" :
2364 (type
== mDNS_DomainTypeBrowseAutomatic
) ? "automatic browse" : "?", d
->c
);
2366 mDNS_SetupResourceRecord(&ptr
->ar
, mDNSNULL
, mDNSInterface_LocalOnly
, kDNSType_PTR
, 7200, kDNSRecordTypeShared
, AuthRecordLocalOnly
, FreeARElemCallback
, ptr
);
2367 MakeDomainNameFromDNSNameString(&ptr
->ar
.namestorage
, mDNS_DomainTypeNames
[type
]);
2368 AppendDNSNameString (&ptr
->ar
.namestorage
, "local");
2369 AssignDomainName(&ptr
->ar
.resrec
.rdata
->u
.name
, d
);
2370 err
= mDNS_Register(m
, &ptr
->ar
);
2373 LogMsg("SetSCPrefsBrowseDomain: mDNS_Register returned error %d", err
);
2374 mDNSPlatformMemFree(ptr
);
2378 ptr
->next
= LocalDomainEnumRecords
;
2379 LocalDomainEnumRecords
= ptr
;
2383 mDNSlocal
void DeregisterLocalOnlyDomainEnumPTR(mDNS
*m
, const domainname
*d
, int type
)
2385 ARListElem
**ptr
= &LocalDomainEnumRecords
;
2386 domainname lhs
; // left-hand side of PTR, for comparison
2388 debugf("Decrementing %s refcount for %##s",
2389 (type
== mDNS_DomainTypeBrowse
) ? "browse domain " :
2390 (type
== mDNS_DomainTypeRegistration
) ? "registration dom" :
2391 (type
== mDNS_DomainTypeBrowseAutomatic
) ? "automatic browse" : "?", d
->c
);
2393 MakeDomainNameFromDNSNameString(&lhs
, mDNS_DomainTypeNames
[type
]);
2394 AppendDNSNameString (&lhs
, "local");
2398 if (SameDomainName(&(*ptr
)->ar
.resrec
.rdata
->u
.name
, d
) && SameDomainName((*ptr
)->ar
.resrec
.name
, &lhs
))
2400 ARListElem
*rem
= *ptr
;
2401 *ptr
= (*ptr
)->next
;
2402 mDNS_Deregister(m
, &rem
->ar
);
2405 else ptr
= &(*ptr
)->next
;
2409 mDNSlocal
void AddAutoBrowseDomain(const mDNSu32 uid
, const domainname
*const name
)
2411 DNameListElem
*new = mDNSPlatformMemAllocate(sizeof(DNameListElem
));
2412 if (!new) { LogMsg("ERROR: malloc"); return; }
2413 AssignDomainName(&new->name
, name
);
2415 new->next
= AutoBrowseDomains
;
2416 AutoBrowseDomains
= new;
2417 udsserver_automatic_browse_domain_changed(new, mDNStrue
);
2420 mDNSlocal
void RmvAutoBrowseDomain(const mDNSu32 uid
, const domainname
*const name
)
2422 DNameListElem
**p
= &AutoBrowseDomains
;
2423 while (*p
&& (!SameDomainName(&(*p
)->name
, name
) || (*p
)->uid
!= uid
)) p
= &(*p
)->next
;
2424 if (!*p
) LogMsg("RmvAutoBrowseDomain: Got remove event for domain %##s not in list", name
->c
);
2427 DNameListElem
*ptr
= *p
;
2429 udsserver_automatic_browse_domain_changed(ptr
, mDNSfalse
);
2430 mDNSPlatformMemFree(ptr
);
2434 mDNSlocal
void SetPrefsBrowseDomains(mDNS
*m
, DNameListElem
*browseDomains
, mDNSBool add
)
2437 for (d
= browseDomains
; d
; d
= d
->next
)
2441 RegisterLocalOnlyDomainEnumPTR(m
, &d
->name
, mDNS_DomainTypeBrowse
);
2442 AddAutoBrowseDomain(d
->uid
, &d
->name
);
2446 DeregisterLocalOnlyDomainEnumPTR(m
, &d
->name
, mDNS_DomainTypeBrowse
);
2447 RmvAutoBrowseDomain(d
->uid
, &d
->name
);
2452 #if APPLE_OSX_mDNSResponder
2454 mDNSlocal
void UpdateDeviceInfoRecord(mDNS
*const m
)
2456 int num_autoname
= 0;
2458 for (req
= all_requests
; req
; req
= req
->next
)
2459 if (req
->terminate
== regservice_termination_callback
&& req
->u
.servicereg
.autoname
)
2462 // If DeviceInfo record is currently registered, see if we need to deregister it
2463 if (m
->DeviceInfo
.resrec
.RecordType
!= kDNSRecordTypeUnregistered
)
2464 if (num_autoname
== 0 || !SameDomainLabelCS(m
->DeviceInfo
.resrec
.name
->c
, m
->nicelabel
.c
))
2466 LogOperation("UpdateDeviceInfoRecord Deregister %##s", m
->DeviceInfo
.resrec
.name
);
2467 mDNS_Deregister(m
, &m
->DeviceInfo
);
2470 // If DeviceInfo record is not currently registered, see if we need to register it
2471 if (m
->DeviceInfo
.resrec
.RecordType
== kDNSRecordTypeUnregistered
)
2472 if (num_autoname
> 0)
2474 mDNS_SetupResourceRecord(&m
->DeviceInfo
, mDNSNULL
, mDNSNULL
, kDNSType_TXT
, kStandardTTL
, kDNSRecordTypeAdvisory
, AuthRecordAny
, mDNSNULL
, mDNSNULL
);
2475 ConstructServiceName(&m
->DeviceInfo
.namestorage
, &m
->nicelabel
, &DeviceInfoName
, &localdomain
);
2476 m
->DeviceInfo
.resrec
.rdlength
= initializeDeviceInfoTXT(m
, m
->DeviceInfo
.resrec
.rdata
->u
.data
);
2477 LogOperation("UpdateDeviceInfoRecord Register %##s", m
->DeviceInfo
.resrec
.name
);
2478 mDNS_Register(m
, &m
->DeviceInfo
);
2481 #else // APPLE_OSX_mDNSResponder
2482 mDNSlocal
void UpdateDeviceInfoRecord(mDNS
*const m
)
2486 #endif // APPLE_OSX_mDNSResponder
2488 mDNSexport
void udsserver_handle_configchange(mDNS
*const m
)
2491 service_instance
*ptr
;
2492 DNameListElem
*RegDomains
= NULL
;
2493 DNameListElem
*BrowseDomains
= NULL
;
2496 UpdateDeviceInfoRecord(m
);
2498 // For autoname services, see if the default service name has changed, necessitating an automatic update
2499 for (req
= all_requests
; req
; req
= req
->next
)
2500 if (req
->terminate
== regservice_termination_callback
)
2501 if (req
->u
.servicereg
.autoname
&& !SameDomainLabelCS(req
->u
.servicereg
.name
.c
, m
->nicelabel
.c
))
2503 req
->u
.servicereg
.name
= m
->nicelabel
;
2504 for (ptr
= req
->u
.servicereg
.instances
; ptr
; ptr
= ptr
->next
)
2506 ptr
->renameonmemfree
= 1;
2507 if (ptr
->clientnotified
) SendServiceRemovalNotification(&ptr
->srs
);
2508 LogInfo("udsserver_handle_configchange: Calling deregister for Service %##s", ptr
->srs
.RR_PTR
.resrec
.name
->c
);
2509 if (mDNS_DeregisterService_drt(m
, &ptr
->srs
, mDNS_Dereg_rapid
))
2510 regservice_callback(m
, &ptr
->srs
, mStatus_MemFree
); // If service deregistered already, we can re-register immediately
2514 // Let the platform layer get the current DNS information
2516 mDNSPlatformSetDNSConfig(m
, mDNSfalse
, mDNSfalse
, mDNSNULL
, &RegDomains
, &BrowseDomains
, mDNSfalse
);
2519 // Any automatic registration domains are also implicitly automatic browsing domains
2520 if (RegDomains
) SetPrefsBrowseDomains(m
, RegDomains
, mDNStrue
); // Add the new list first
2521 if (AutoRegistrationDomains
) SetPrefsBrowseDomains(m
, AutoRegistrationDomains
, mDNSfalse
); // Then clear the old list
2523 // Add any new domains not already in our AutoRegistrationDomains list
2524 for (p
=RegDomains
; p
; p
=p
->next
)
2526 DNameListElem
**pp
= &AutoRegistrationDomains
;
2527 while (*pp
&& ((*pp
)->uid
!= p
->uid
|| !SameDomainName(&(*pp
)->name
, &p
->name
))) pp
= &(*pp
)->next
;
2528 if (!*pp
) // If not found in our existing list, this is a new default registration domain
2530 RegisterLocalOnlyDomainEnumPTR(m
, &p
->name
, mDNS_DomainTypeRegistration
);
2531 udsserver_default_reg_domain_changed(p
, mDNStrue
);
2533 else // else found same domainname in both old and new lists, so no change, just delete old copy
2535 DNameListElem
*del
= *pp
;
2537 mDNSPlatformMemFree(del
);
2541 // Delete any domains in our old AutoRegistrationDomains list that are now gone
2542 while (AutoRegistrationDomains
)
2544 DNameListElem
*del
= AutoRegistrationDomains
;
2545 AutoRegistrationDomains
= AutoRegistrationDomains
->next
; // Cut record from list FIRST,
2546 DeregisterLocalOnlyDomainEnumPTR(m
, &del
->name
, mDNS_DomainTypeRegistration
);
2547 udsserver_default_reg_domain_changed(del
, mDNSfalse
); // before calling udsserver_default_reg_domain_changed()
2548 mDNSPlatformMemFree(del
);
2551 // Now we have our new updated automatic registration domain list
2552 AutoRegistrationDomains
= RegDomains
;
2554 // Add new browse domains to internal list
2555 if (BrowseDomains
) SetPrefsBrowseDomains(m
, BrowseDomains
, mDNStrue
);
2557 // Remove old browse domains from internal list
2558 if (SCPrefBrowseDomains
)
2560 SetPrefsBrowseDomains(m
, SCPrefBrowseDomains
, mDNSfalse
);
2561 while (SCPrefBrowseDomains
)
2563 DNameListElem
*fptr
= SCPrefBrowseDomains
;
2564 SCPrefBrowseDomains
= SCPrefBrowseDomains
->next
;
2565 mDNSPlatformMemFree(fptr
);
2569 // Replace the old browse domains array with the new array
2570 SCPrefBrowseDomains
= BrowseDomains
;
2573 mDNSlocal
void AutomaticBrowseDomainChange(mDNS
*const m
, DNSQuestion
*q
, const ResourceRecord
*const answer
, QC_result AddRecord
)
2578 LogOperation("AutomaticBrowseDomainChange: %s automatic browse domain %##s",
2579 AddRecord
? "Adding" : "Removing", answer
->rdata
->u
.name
.c
);
2581 if (AddRecord
) AddAutoBrowseDomain(0, &answer
->rdata
->u
.name
);
2582 else RmvAutoBrowseDomain(0, &answer
->rdata
->u
.name
);
2585 mDNSlocal mStatus
handle_browse_request(request_state
*request
)
2587 char regtype
[MAX_ESCAPED_DOMAIN_NAME
], domain
[MAX_ESCAPED_DOMAIN_NAME
];
2588 domainname typedn
, d
, temp
;
2589 mDNSs32 NumSubTypes
;
2590 char *AnonData
= mDNSNULL
;
2591 mStatus err
= mStatus_NoError
;
2594 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
2595 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
2596 mDNSInterfaceID InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
2598 // The browse is scoped to a specific interface index, but the
2599 // interface is not currently in our list.
2600 if (interfaceIndex
&& !InterfaceID
)
2602 // If it's one of the specially defined inteface index values, just return an error.
2603 if (PreDefinedInterfaceIndex(interfaceIndex
))
2605 LogMsg("ERROR: handle_browse_request: bad interfaceIndex %d", interfaceIndex
);
2606 return(mStatus_BadParamErr
);
2609 // Otherwise, use the specified interface index value and the browse will
2610 // be applied to that interface when it comes up.
2611 InterfaceID
= (mDNSInterfaceID
)(uintptr_t)interfaceIndex
;
2612 LogInfo("handle_browse_request: browse pending for interface index %d", interfaceIndex
);
2615 if (get_string(&request
->msgptr
, request
->msgend
, regtype
, MAX_ESCAPED_DOMAIN_NAME
) < 0 ||
2616 get_string(&request
->msgptr
, request
->msgend
, domain
, MAX_ESCAPED_DOMAIN_NAME
) < 0) return(mStatus_BadParamErr
);
2618 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceBrowse(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
2620 request
->flags
= flags
;
2622 NumSubTypes
= ChopSubTypes(regtype
, &AnonData
); // Note: Modifies regtype string to remove trailing subtypes
2623 if (NumSubTypes
< 0 || NumSubTypes
> 1)
2624 return(mStatus_BadParamErr
);
2628 AnonDataLen
= strlen(AnonData
);
2629 if (AnonDataLen
> MAX_ANONYMOUS_DATA
)
2631 LogMsg("handle_browse_request: AnonDataLen %d", AnonDataLen
);
2632 return(mStatus_BadParamErr
);
2634 // Account for the null byte
2637 if (NumSubTypes
== 1)
2639 if (!AppendDNSNameString(&typedn
, regtype
+ strlen(regtype
) + 1 + AnonDataLen
))
2640 return(mStatus_BadParamErr
);
2643 if (!regtype
[0] || !AppendDNSNameString(&typedn
, regtype
)) return(mStatus_BadParamErr
);
2645 if (!MakeDomainNameFromDNSNameString(&temp
, regtype
)) return(mStatus_BadParamErr
);
2646 // For over-long service types, we only allow domain "local"
2647 if (temp
.c
[0] > 15 && domain
[0] == 0) mDNSPlatformStrCopy(domain
, "local.");
2649 // Set up browser info
2650 request
->u
.browser
.ForceMCast
= (flags
& kDNSServiceFlagsForceMulticast
) != 0;
2651 request
->u
.browser
.interface_id
= InterfaceID
;
2652 AssignDomainName(&request
->u
.browser
.regtype
, &typedn
);
2653 request
->u
.browser
.default_domain
= !domain
[0];
2654 request
->u
.browser
.browsers
= NULL
;
2656 LogOperation("%3d: DNSServiceBrowse(%X, %d, \"%##s\", \"%s\") START PID[%d](%s)",
2657 request
->sd
, request
->flags
, interfaceIndex
, request
->u
.browser
.regtype
.c
, domain
, request
->process_id
, request
->pid_name
);
2659 if (request
->u
.browser
.default_domain
)
2661 // Start the domain enumeration queries to discover the WAB browse domains
2662 LogInfo("%3d: DNSServiceBrowse Start WAB PID[%d](%s)", request
->sd
, request
->process_id
, request
->pid_name
);
2663 uDNS_StartWABQueries(&mDNSStorage
, UDNS_WAB_LBROWSE_QUERY
);
2665 request
->u
.browser
.AnonData
= mDNSNULL
;
2668 int len
= strlen(AnonData
) + 1;
2669 request
->u
.browser
.AnonData
= mallocL("Anonymous", len
);
2670 if (!request
->u
.browser
.AnonData
)
2671 return mStatus_NoMemoryErr
;
2673 mDNSPlatformMemCopy((void *)request
->u
.browser
.AnonData
, AnonData
, len
);
2675 // We need to unconditionally set request->terminate, because even if we didn't successfully
2676 // start any browses right now, subsequent configuration changes may cause successful
2677 // browses to be added, and we'll need to cancel them before freeing this memory.
2678 request
->terminate
= browse_termination_callback
;
2682 if (!MakeDomainNameFromDNSNameString(&d
, domain
)) return(mStatus_BadParamErr
);
2683 err
= add_domain_to_browser(request
, &d
);
2687 DNameListElem
*sdom
;
2688 for (sdom
= AutoBrowseDomains
; sdom
; sdom
= sdom
->next
)
2689 if (!sdom
->uid
|| SystemUID(request
->uid
) || request
->uid
== sdom
->uid
)
2691 err
= add_domain_to_browser(request
, &sdom
->name
);
2694 if (SameDomainName(&sdom
->name
, &localdomain
)) break;
2695 else err
= mStatus_NoError
; // suppress errors for non-local "default" domains
2703 // ***************************************************************************
2704 #if COMPILER_LIKES_PRAGMA_MARK
2706 #pragma mark - DNSServiceResolve
2709 mDNSlocal
void resolve_result_callback(mDNS
*const m
, DNSQuestion
*question
, const ResourceRecord
*const answer
, QC_result AddRecord
)
2712 char fullname
[MAX_ESCAPED_DOMAIN_NAME
], target
[MAX_ESCAPED_DOMAIN_NAME
];
2715 request_state
*req
= question
->QuestionContext
;
2718 LogOperation("%3d: DNSServiceResolve(%##s) %s %s", req
->sd
, question
->qname
.c
, AddRecord
? "ADD" : "RMV", RRDisplayString(m
, answer
));
2722 if (req
->u
.resolve
.srv
== answer
) req
->u
.resolve
.srv
= mDNSNULL
;
2723 if (req
->u
.resolve
.txt
== answer
) req
->u
.resolve
.txt
= mDNSNULL
;
2727 if (answer
->rrtype
== kDNSType_SRV
) req
->u
.resolve
.srv
= answer
;
2728 if (answer
->rrtype
== kDNSType_TXT
) req
->u
.resolve
.txt
= answer
;
2730 if (!req
->u
.resolve
.txt
|| !req
->u
.resolve
.srv
) return; // only deliver result to client if we have both answers
2732 ConvertDomainNameToCString(answer
->name
, fullname
);
2733 ConvertDomainNameToCString(&req
->u
.resolve
.srv
->rdata
->u
.srv
.target
, target
);
2735 // calculate reply length
2736 len
+= sizeof(DNSServiceFlags
);
2737 len
+= sizeof(mDNSu32
); // interface index
2738 len
+= sizeof(DNSServiceErrorType
);
2739 len
+= strlen(fullname
) + 1;
2740 len
+= strlen(target
) + 1;
2741 len
+= 2 * sizeof(mDNSu16
); // port, txtLen
2742 len
+= req
->u
.resolve
.txt
->rdlength
;
2744 // allocate/init reply header
2745 rep
= create_reply(resolve_reply_op
, len
, req
);
2746 rep
->rhdr
->flags
= dnssd_htonl(0);
2747 rep
->rhdr
->ifi
= dnssd_htonl(mDNSPlatformInterfaceIndexfromInterfaceID(m
, answer
->InterfaceID
, mDNSfalse
));
2748 rep
->rhdr
->error
= dnssd_htonl(kDNSServiceErr_NoError
);
2750 data
= (char *)&rep
->rhdr
[1];
2752 // write reply data to message
2753 put_string(fullname
, &data
);
2754 put_string(target
, &data
);
2755 *data
++ = req
->u
.resolve
.srv
->rdata
->u
.srv
.port
.b
[0];
2756 *data
++ = req
->u
.resolve
.srv
->rdata
->u
.srv
.port
.b
[1];
2757 put_uint16(req
->u
.resolve
.txt
->rdlength
, &data
);
2758 put_rdata (req
->u
.resolve
.txt
->rdlength
, req
->u
.resolve
.txt
->rdata
->u
.data
, &data
);
2760 LogOperation("%3d: DNSServiceResolve(%s) RESULT %s:%d", req
->sd
, fullname
, target
, mDNSVal16(req
->u
.resolve
.srv
->rdata
->u
.srv
.port
));
2761 append_reply(req
, rep
);
2764 mDNSlocal
void resolve_termination_callback(request_state
*request
)
2766 LogOperation("%3d: DNSServiceResolve(%##s) STOP PID[%d](%s)", request
->sd
, request
->u
.resolve
.qtxt
.qname
.c
, request
->process_id
, request
->pid_name
);
2767 mDNS_StopQuery(&mDNSStorage
, &request
->u
.resolve
.qtxt
);
2768 mDNS_StopQuery(&mDNSStorage
, &request
->u
.resolve
.qsrv
);
2769 LogMcastQ(&mDNSStorage
, &request
->u
.resolve
.qsrv
, request
, q_stop
);
2770 if (request
->u
.resolve
.external_advertise
)
2771 external_stop_resolving_service(request
->u
.resolve
.qsrv
.InterfaceID
, &request
->u
.resolve
.qsrv
.qname
, request
->flags
);
2774 mDNSlocal mStatus
handle_resolve_request(request_state
*request
)
2776 char name
[256], regtype
[MAX_ESCAPED_DOMAIN_NAME
], domain
[MAX_ESCAPED_DOMAIN_NAME
];
2780 // extract the data from the message
2781 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
2782 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
2783 mDNSInterfaceID InterfaceID
;
2785 // Map kDNSServiceInterfaceIndexP2P to kDNSServiceInterfaceIndexAny with the kDNSServiceFlagsIncludeP2P
2786 // flag set so that the resolve will run over P2P interfaces that are not yet created.
2787 if (interfaceIndex
== kDNSServiceInterfaceIndexP2P
)
2789 LogOperation("handle_resolve_request: mapping kDNSServiceInterfaceIndexP2P to kDNSServiceInterfaceIndexAny + kDNSServiceFlagsIncludeP2P");
2790 flags
|= kDNSServiceFlagsIncludeP2P
;
2791 interfaceIndex
= kDNSServiceInterfaceIndexAny
;
2794 InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
2796 // The operation is scoped to a specific interface index, but the
2797 // interface is not currently in our list.
2798 if (interfaceIndex
&& !InterfaceID
)
2800 // If it's one of the specially defined inteface index values, just return an error.
2801 if (PreDefinedInterfaceIndex(interfaceIndex
))
2803 LogMsg("ERROR: handle_resolve_request: bad interfaceIndex %d", interfaceIndex
);
2804 return(mStatus_BadParamErr
);
2807 // Otherwise, use the specified interface index value and the operation will
2808 // be applied to that interface when it comes up.
2809 InterfaceID
= (mDNSInterfaceID
)(uintptr_t)interfaceIndex
;
2810 LogInfo("handle_resolve_request: resolve pending for interface index %d", interfaceIndex
);
2813 if (get_string(&request
->msgptr
, request
->msgend
, name
, 256) < 0 ||
2814 get_string(&request
->msgptr
, request
->msgend
, regtype
, MAX_ESCAPED_DOMAIN_NAME
) < 0 ||
2815 get_string(&request
->msgptr
, request
->msgend
, domain
, MAX_ESCAPED_DOMAIN_NAME
) < 0)
2816 { LogMsg("ERROR: handle_resolve_request - Couldn't read name/regtype/domain"); return(mStatus_BadParamErr
); }
2818 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceResolve(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
2820 if (build_domainname_from_strings(&fqdn
, name
, regtype
, domain
) < 0)
2821 { LogMsg("ERROR: handle_resolve_request bad “%s” “%s” “%s”", name
, regtype
, domain
); return(mStatus_BadParamErr
); }
2823 mDNSPlatformMemZero(&request
->u
.resolve
, sizeof(request
->u
.resolve
));
2825 request
->flags
= flags
;
2828 request
->u
.resolve
.qsrv
.InterfaceID
= InterfaceID
;
2829 request
->u
.resolve
.qsrv
.flags
= flags
;
2830 request
->u
.resolve
.qsrv
.Target
= zeroAddr
;
2831 AssignDomainName(&request
->u
.resolve
.qsrv
.qname
, &fqdn
);
2832 request
->u
.resolve
.qsrv
.qtype
= kDNSType_SRV
;
2833 request
->u
.resolve
.qsrv
.qclass
= kDNSClass_IN
;
2834 request
->u
.resolve
.qsrv
.LongLived
= (flags
& kDNSServiceFlagsLongLivedQuery
) != 0;
2835 request
->u
.resolve
.qsrv
.ExpectUnique
= mDNStrue
;
2836 request
->u
.resolve
.qsrv
.ForceMCast
= (flags
& kDNSServiceFlagsForceMulticast
) != 0;
2837 request
->u
.resolve
.qsrv
.ReturnIntermed
= (flags
& kDNSServiceFlagsReturnIntermediates
) != 0;
2838 request
->u
.resolve
.qsrv
.SuppressUnusable
= mDNSfalse
;
2839 request
->u
.resolve
.qsrv
.DenyOnCellInterface
= mDNSfalse
;
2840 request
->u
.resolve
.qsrv
.DenyOnExpInterface
= mDNSfalse
;
2841 request
->u
.resolve
.qsrv
.SearchListIndex
= 0;
2842 request
->u
.resolve
.qsrv
.AppendSearchDomains
= 0;
2843 request
->u
.resolve
.qsrv
.RetryWithSearchDomains
= mDNSfalse
;
2844 request
->u
.resolve
.qsrv
.TimeoutQuestion
= 0;
2845 request
->u
.resolve
.qsrv
.WakeOnResolve
= (flags
& kDNSServiceFlagsWakeOnResolve
) != 0;
2846 request
->u
.resolve
.qsrv
.UseBackgroundTrafficClass
= (flags
& kDNSServiceFlagsBackgroundTrafficClass
) != 0;
2847 request
->u
.resolve
.qsrv
.ValidationRequired
= 0;
2848 request
->u
.resolve
.qsrv
.ValidatingResponse
= 0;
2849 request
->u
.resolve
.qsrv
.ProxyQuestion
= 0;
2850 request
->u
.resolve
.qsrv
.qnameOrig
= mDNSNULL
;
2851 request
->u
.resolve
.qsrv
.AnonInfo
= mDNSNULL
;
2852 request
->u
.resolve
.qsrv
.pid
= request
->process_id
;
2853 request
->u
.resolve
.qsrv
.QuestionCallback
= resolve_result_callback
;
2854 request
->u
.resolve
.qsrv
.QuestionContext
= request
;
2856 request
->u
.resolve
.qtxt
.InterfaceID
= InterfaceID
;
2857 request
->u
.resolve
.qtxt
.flags
= flags
;
2858 request
->u
.resolve
.qtxt
.Target
= zeroAddr
;
2859 AssignDomainName(&request
->u
.resolve
.qtxt
.qname
, &fqdn
);
2860 request
->u
.resolve
.qtxt
.qtype
= kDNSType_TXT
;
2861 request
->u
.resolve
.qtxt
.qclass
= kDNSClass_IN
;
2862 request
->u
.resolve
.qtxt
.LongLived
= (flags
& kDNSServiceFlagsLongLivedQuery
) != 0;
2863 request
->u
.resolve
.qtxt
.ExpectUnique
= mDNStrue
;
2864 request
->u
.resolve
.qtxt
.ForceMCast
= (flags
& kDNSServiceFlagsForceMulticast
) != 0;
2865 request
->u
.resolve
.qtxt
.ReturnIntermed
= (flags
& kDNSServiceFlagsReturnIntermediates
) != 0;
2866 request
->u
.resolve
.qtxt
.SuppressUnusable
= mDNSfalse
;
2867 request
->u
.resolve
.qtxt
.DenyOnCellInterface
= mDNSfalse
;
2868 request
->u
.resolve
.qtxt
.DenyOnExpInterface
= mDNSfalse
;
2869 request
->u
.resolve
.qtxt
.SearchListIndex
= 0;
2870 request
->u
.resolve
.qtxt
.AppendSearchDomains
= 0;
2871 request
->u
.resolve
.qtxt
.RetryWithSearchDomains
= mDNSfalse
;
2872 request
->u
.resolve
.qtxt
.TimeoutQuestion
= 0;
2873 request
->u
.resolve
.qtxt
.WakeOnResolve
= 0;
2874 request
->u
.resolve
.qtxt
.UseBackgroundTrafficClass
= (flags
& kDNSServiceFlagsBackgroundTrafficClass
) != 0;
2875 request
->u
.resolve
.qtxt
.ValidationRequired
= 0;
2876 request
->u
.resolve
.qtxt
.ValidatingResponse
= 0;
2877 request
->u
.resolve
.qtxt
.ProxyQuestion
= 0;
2878 request
->u
.resolve
.qtxt
.qnameOrig
= mDNSNULL
;
2879 request
->u
.resolve
.qtxt
.AnonInfo
= mDNSNULL
;
2880 request
->u
.resolve
.qtxt
.pid
= request
->process_id
;
2881 request
->u
.resolve
.qtxt
.QuestionCallback
= resolve_result_callback
;
2882 request
->u
.resolve
.qtxt
.QuestionContext
= request
;
2884 request
->u
.resolve
.ReportTime
= NonZeroTime(mDNS_TimeNow(&mDNSStorage
) + 130 * mDNSPlatformOneSecond
);
2886 request
->u
.resolve
.external_advertise
= mDNSfalse
;
2889 if (!AuthorizedDomain(request
, &fqdn
, AutoBrowseDomains
)) return(mStatus_NoError
);
2892 // ask the questions
2893 LogOperation("%3d: DNSServiceResolve(%X %d %##s) START PID[%d](%s)", request
->sd
, flags
, interfaceIndex
,
2894 request
->u
.resolve
.qsrv
.qname
.c
, request
->process_id
, request
->pid_name
);
2895 err
= mDNS_StartQuery(&mDNSStorage
, &request
->u
.resolve
.qsrv
);
2899 err
= mDNS_StartQuery(&mDNSStorage
, &request
->u
.resolve
.qtxt
);
2902 mDNS_StopQuery(&mDNSStorage
, &request
->u
.resolve
.qsrv
);
2906 request
->terminate
= resolve_termination_callback
;
2907 LogMcastQ(&mDNSStorage
, &request
->u
.resolve
.qsrv
, request
, q_start
);
2908 if (callExternalHelpers(InterfaceID
, &fqdn
, flags
))
2910 request
->u
.resolve
.external_advertise
= mDNStrue
;
2911 LogInfo("handle_resolve_request: calling external_start_resolving_service()");
2912 external_start_resolving_service(InterfaceID
, &fqdn
, flags
);
2920 // ***************************************************************************
2921 #if COMPILER_LIKES_PRAGMA_MARK
2923 #pragma mark - DNSServiceQueryRecord
2926 // mDNS operation functions. Each operation has 3 associated functions - a request handler that parses
2927 // the client's request and makes the appropriate mDNSCore call, a result handler (passed as a callback
2928 // to the mDNSCore routine) that sends results back to the client, and a termination routine that aborts
2929 // the mDNSCore operation if the client dies or closes its socket.
2931 // Returns -1 to tell the caller that it should not try to reissue the query anymore
2932 // Returns 1 on successfully appending a search domain and the caller should reissue the new query
2933 // Returns 0 when there are no more search domains and the caller should reissue the query
2934 mDNSlocal
int AppendNewSearchDomain(mDNS
*const m
, DNSQuestion
*question
)
2939 // Sanity check: The caller already checks this. We use -1 to indicate that we have searched all
2940 // the domains and should try the single label query directly on the wire.
2941 if (question
->SearchListIndex
== -1)
2943 LogMsg("AppendNewSearchDomain: question %##s (%s) SearchListIndex is -1", question
->qname
.c
, DNSTypeName(question
->qtype
));
2947 if (!question
->AppendSearchDomains
)
2949 LogMsg("AppendNewSearchDomain: question %##s (%s) AppendSearchDoamins is 0", question
->qname
.c
, DNSTypeName(question
->qtype
));
2953 // Save the original name, before we modify them below.
2954 if (!question
->qnameOrig
)
2956 question
->qnameOrig
= mallocL("AppendNewSearchDomain", sizeof(domainname
));
2957 if (!question
->qnameOrig
) { LogMsg("AppendNewSearchDomain: ERROR!! malloc failure"); return -1; }
2958 question
->qnameOrig
->c
[0] = 0;
2959 AssignDomainName(question
->qnameOrig
, &question
->qname
);
2960 LogInfo("AppendSearchDomain: qnameOrig %##s", question
->qnameOrig
->c
);
2963 sd
= uDNS_GetNextSearchDomain(m
, question
->InterfaceID
, &question
->SearchListIndex
, !question
->AppendLocalSearchDomains
);
2964 // We use -1 to indicate that we have searched all the domains and should try the single label
2965 // query directly on the wire. uDNS_GetNextSearchDomain should never return a negative value
2966 if (question
->SearchListIndex
== -1)
2968 LogMsg("AppendNewSearchDomain: ERROR!! uDNS_GetNextSearchDomain returned -1");
2972 // Not a common case. Perhaps, we should try the next search domain if it exceeds ?
2973 if (sd
&& (DomainNameLength(question
->qnameOrig
) + DomainNameLength(sd
)) > MAX_DOMAIN_NAME
)
2975 LogMsg("AppendNewSearchDomain: ERROR!! exceeding max domain length for %##s (%s) SearchDomain %##s length %d, Question name length %d", question
->qnameOrig
->c
, DNSTypeName(question
->qtype
), sd
->c
, DomainNameLength(question
->qnameOrig
), DomainNameLength(sd
));
2979 // if there are no more search domains and we have already tried this question
2980 // without appending search domains, then we are done.
2981 if (!sd
&& !ApplySearchDomainsFirst(question
))
2983 LogInfo("AppnedNewSearchDomain: No more search domains for question with name %##s (%s), not trying anymore", question
->qname
.c
, DNSTypeName(question
->qtype
));
2987 // Stop the question before changing the name as negative cache entries could be pointing at this question.
2988 // Even if we don't change the question in the case of returning 0, the caller is going to restart the
2990 err
= mDNS_StopQuery(&mDNSStorage
, question
);
2991 if (err
) { LogMsg("AppendNewSearchDomain: ERROR!! %##s %s mDNS_StopQuery: %d, while retrying with search domains", question
->qname
.c
, DNSTypeName(question
->qtype
), (int)err
); }
2993 AssignDomainName(&question
->qname
, question
->qnameOrig
);
2996 AppendDomainName(&question
->qname
, sd
);
2997 LogInfo("AppnedNewSearchDomain: Returning question with name %##s, SearchListIndex %d", question
->qname
.c
, question
->SearchListIndex
);
3001 // Try the question as single label
3002 LogInfo("AppnedNewSearchDomain: No more search domains for question with name %##s (%s), trying one last time", question
->qname
.c
, DNSTypeName(question
->qtype
));
3006 #if APPLE_OSX_mDNSResponder
3008 mDNSlocal mDNSBool
DomainInSearchList(const domainname
*domain
, mDNSBool excludeLocal
)
3010 const SearchListElem
*s
;
3013 qcount
= CountLabels(domain
);
3014 for (s
=SearchList
; s
; s
=s
->next
)
3016 if (excludeLocal
&& SameDomainName(&s
->domain
, &localdomain
))
3018 scount
= CountLabels(&s
->domain
);
3019 if (qcount
>= scount
)
3021 // Note: When qcount == scount, we do a complete match of the domain
3022 // which is expected by the callers.
3023 const domainname
*d
= SkipLeadingLabels(domain
, (qcount
- scount
));
3024 if (SameDomainName(&s
->domain
, d
))
3033 // The caller already checks that this is a dotlocal question.
3034 mDNSlocal mDNSBool
ShouldDeliverNegativeResponse(mDNS
*const m
, DNSQuestion
*question
)
3038 // If the question matches the search domain exactly or the search domain is a
3039 // subdomain of the question, it is most likely a valid unicast domain and hence
3040 // don't suppress negative responses.
3042 // If the user has configured ".local" as a search domain, we don't want
3043 // to deliver a negative response for names ending in ".local" as that would
3044 // prevent bonjour discovery. Passing mDNStrue for the last argument excludes
3045 // ".local" search domains.
3046 if (DomainInSearchList(&question
->qname
, mDNStrue
))
3048 LogOperation("ShouldDeliverNegativeResponse: Question %##s (%s) in SearchList", question
->qname
.c
, DNSTypeName(question
->qtype
));
3052 // Deliver negative response for A/AAAA if there was a positive response for AAAA/A respectively.
3053 if (question
->qtype
!= kDNSType_A
&& question
->qtype
!= kDNSType_AAAA
)
3055 LogOperation("ShouldDeliverNegativeResponse: Question %##s (%s) not answering local question with negative unicast response",
3056 question
->qname
.c
, DNSTypeName(question
->qtype
));
3059 qtype
= (question
->qtype
== kDNSType_A
? kDNSType_AAAA
: kDNSType_A
);
3060 if (!mDNS_CheckForCacheRecord(m
, question
, qtype
))
3062 LogOperation("ShouldDeliverNegativeResponse:Question %##s (%s) not answering local question with negative unicast response"
3063 " (can't find positive record)", question
->qname
.c
, DNSTypeName(question
->qtype
));
3066 LogOperation("ShouldDeliverNegativeResponse:Question %##s (%s) answering local with negative unicast response (found positive record)",
3067 question
->qname
.c
, DNSTypeName(question
->qtype
));
3071 // Workaround for networks using Microsoft Active Directory using "local" as a private internal
3073 mDNSlocal mStatus
SendAdditionalQuery(DNSQuestion
*q
, request_state
*request
, mStatus err
)
3075 #ifndef UNICAST_DISABLED
3076 extern domainname ActiveDirectoryPrimaryDomain
;
3077 DNSQuestion
**question2
;
3078 #define VALID_MSAD_SRV_TRANSPORT(T) (SameDomainLabel((T)->c, (const mDNSu8 *)"\x4_tcp") || SameDomainLabel((T)->c, (const mDNSu8 *)"\x4_udp"))
3079 #define VALID_MSAD_SRV(Q) ((Q)->qtype == kDNSType_SRV && VALID_MSAD_SRV_TRANSPORT(SecondLabel(&(Q)->qname)))
3081 question2
= mDNSNULL
;
3082 if (request
->hdr
.op
== query_request
)
3083 question2
= &request
->u
.queryrecord
.q2
;
3084 else if (request
->hdr
.op
== addrinfo_request
)
3086 if (q
->qtype
== kDNSType_A
)
3087 question2
= &request
->u
.addrinfo
.q42
;
3088 else if (q
->qtype
== kDNSType_AAAA
)
3089 question2
= &request
->u
.addrinfo
.q62
;
3093 LogMsg("SendAdditionalQuery: question2 NULL for %##s (%s)", q
->qname
.c
, DNSTypeName(q
->qtype
));
3094 return mStatus_BadParamErr
;
3097 // Sanity check: If we already sent an additonal query, we don't need to send one more.
3099 // 1. When the application calls DNSServiceQueryRecord or DNSServiceGetAddrInfo with a .local name, this function
3100 // is called to see whether a unicast query should be sent or not.
3102 // 2. As a result of appending search domains, the question may be end up with a .local suffix even though it
3103 // was not a .local name to start with. In that case, queryrecord_result_callback calls this function to
3104 // send the additional query.
3106 // Thus, it should not be called more than once.
3109 LogInfo("SendAdditionalQuery: question2 already sent for %##s (%s), no more q2", q
->qname
.c
, DNSTypeName(q
->qtype
));
3113 if (!q
->ForceMCast
&& SameDomainLabel(LastLabel(&q
->qname
), (const mDNSu8
*)&localdomain
))
3114 if (q
->qtype
== kDNSType_A
|| q
->qtype
== kDNSType_AAAA
|| VALID_MSAD_SRV(q
))
3117 int labels
= CountLabels(&q
->qname
);
3118 q2
= mallocL("DNSQuestion", sizeof(DNSQuestion
));
3119 if (!q2
) FatalError("ERROR: SendAdditionalQuery malloc");
3122 q2
->InterfaceID
= mDNSInterface_Unicast
;
3123 q2
->ExpectUnique
= mDNStrue
;
3124 // Always set the QuestionContext to indicate that this question should be stopped
3125 // before freeing. Don't rely on "q".
3126 q2
->QuestionContext
= request
;
3127 // If the query starts as a single label e.g., somehost, and we have search domains with .local,
3128 // queryrecord_result_callback calls this function when .local is appended to "somehost".
3129 // At that time, the name in "q" is pointing at somehost.local and its qnameOrig pointing at
3130 // "somehost". We need to copy that information so that when we retry with a different search
3131 // domain e.g., mycompany.local, we get "somehost.mycompany.local".
3134 (*question2
)->qnameOrig
= mallocL("SendAdditionalQuery", DomainNameLength(q
->qnameOrig
));
3135 if (!(*question2
)->qnameOrig
) { LogMsg("SendAdditionalQuery: ERROR!! malloc failure"); return mStatus_NoMemoryErr
; }
3136 (*question2
)->qnameOrig
->c
[0] = 0;
3137 AssignDomainName((*question2
)->qnameOrig
, q
->qnameOrig
);
3138 LogInfo("SendAdditionalQuery: qnameOrig %##s", (*question2
)->qnameOrig
->c
);
3140 // For names of the form "<one-or-more-labels>.bar.local." we always do a second unicast query in parallel.
3141 // For names of the form "<one-label>.local." it's less clear whether we should do a unicast query.
3142 // If the name being queried is exactly the same as the name in the DHCP "domain" option (e.g. the DHCP
3143 // "domain" is my-small-company.local, and the user types "my-small-company.local" into their web browser)
3144 // then that's a hint that it's worth doing a unicast query. Otherwise, we first check to see if the
3145 // site's DNS server claims there's an SOA record for "local", and if so, that's also a hint that queries
3146 // for names in the "local" domain will be safely answered privately before they hit the root name servers.
3147 // Note that in the "my-small-company.local" example above there will typically be an SOA record for
3148 // "my-small-company.local" but *not* for "local", which is why the "local SOA" check would fail in that case.
3149 // We need to check against both ActiveDirectoryPrimaryDomain and SearchList. If it matches against either
3150 // of those, we don't want do the SOA check for the local
3151 if (labels
== 2 && !SameDomainName(&q
->qname
, &ActiveDirectoryPrimaryDomain
) && !DomainInSearchList(&q
->qname
, mDNSfalse
))
3153 AssignDomainName(&q2
->qname
, &localdomain
);
3154 q2
->qtype
= kDNSType_SOA
;
3155 q2
->LongLived
= mDNSfalse
;
3156 q2
->ForceMCast
= mDNSfalse
;
3157 q2
->ReturnIntermed
= mDNStrue
;
3158 // Don't append search domains for the .local SOA query
3159 q2
->AppendSearchDomains
= 0;
3160 q2
->AppendLocalSearchDomains
= 0;
3161 q2
->RetryWithSearchDomains
= mDNSfalse
;
3162 q2
->SearchListIndex
= 0;
3163 q2
->TimeoutQuestion
= 0;
3164 q2
->AnonInfo
= mDNSNULL
;
3165 q2
->pid
= request
->process_id
;
3167 LogOperation("%3d: DNSServiceQueryRecord(%##s, %s) unicast", request
->sd
, q2
->qname
.c
, DNSTypeName(q2
->qtype
));
3168 err
= mDNS_StartQuery(&mDNSStorage
, q2
);
3169 if (err
) LogMsg("%3d: ERROR: DNSServiceQueryRecord %##s %s mDNS_StartQuery: %d", request
->sd
, q2
->qname
.c
, DNSTypeName(q2
->qtype
), (int)err
);
3172 #else // !UNICAST_DISABLED
3177 return mStatus_NoError
;
3178 #endif // !UNICAST_DISABLED
3180 #endif // APPLE_OSX_mDNSResponder
3182 // This function tries to append a search domain if valid and possible. If so, returns true.
3183 mDNSlocal mDNSBool
RetryQuestionWithSearchDomains(mDNS
*const m
, DNSQuestion
*question
, request_state
*req
, QC_result AddRecord
)
3186 // RetryWithSearchDomains tells the core to call us back so that we can retry with search domains if there is no
3187 // answer in the cache or /etc/hosts. In the first call back from the core, we clear RetryWithSearchDomains so
3188 // that we don't get called back repeatedly. If we got an answer from the cache or /etc/hosts, we don't touch
3189 // RetryWithSearchDomains which may or may not be set.
3191 // If we get e.g., NXDOMAIN and the query is neither suppressed nor exhausted the domain search list and
3192 // is a valid question for appending search domains, retry by appending domains
3194 if ((AddRecord
!= QC_suppressed
) && question
->SearchListIndex
!= -1 && question
->AppendSearchDomains
)
3196 question
->RetryWithSearchDomains
= 0;
3197 result
= AppendNewSearchDomain(m
, question
);
3198 // As long as the result is either zero or 1, we retry the question. If we exahaust the search
3199 // domains (result is zero) we try the original query (as it was before appending the search
3200 // domains) as such on the wire as a last resort if we have not tried them before. For queries
3201 // with more than one label, we have already tried them before appending search domains and
3202 // hence don't retry again
3206 err
= mDNS_StartQuery(m
, question
);
3209 LogOperation("%3d: RetryQuestionWithSearchDomains(%##s, %s), retrying after appending search domain", req
->sd
, question
->qname
.c
, DNSTypeName(question
->qtype
));
3210 // If the result was zero, it meant that there are no search domains and we just retried the question
3211 // as a single label and we should not retry with search domains anymore.
3212 if (!result
) question
->SearchListIndex
= -1;
3217 LogMsg("%3d: ERROR: RetryQuestionWithSearchDomains %##s %s mDNS_StartQuery: %d, while retrying with search domains", req
->sd
, question
->qname
.c
, DNSTypeName(question
->qtype
), (int)err
);
3218 // We have already stopped the query and could not restart. Reset the appropriate pointers
3219 // so that we don't call stop again when the question terminates
3220 question
->QuestionContext
= mDNSNULL
;
3226 LogInfo("%3d: RetryQuestionWithSearchDomains: Not appending search domains - SuppressQuery %d, SearchListIndex %d, AppendSearchDomains %d", req
->sd
, AddRecord
, question
->SearchListIndex
, question
->AppendSearchDomains
);
3231 mDNSlocal
void queryrecord_result_reply(mDNS
*const m
, request_state
*req
, DNSQuestion
*question
, const ResourceRecord
*const answer
, QC_result AddRecord
,
3232 DNSServiceErrorType error
)
3234 char name
[MAX_ESCAPED_DOMAIN_NAME
];
3236 DNSServiceFlags flags
= 0;
3240 ConvertDomainNameToCString(answer
->name
, name
);
3242 LogOperation("%3d: %s(%##s, %s) %s %s", req
->sd
,
3243 req
->hdr
.op
== query_request
? "DNSServiceQueryRecord" : "DNSServiceGetAddrInfo",
3244 question
->qname
.c
, DNSTypeName(question
->qtype
), AddRecord
? "ADD" : "RMV", RRDisplayString(m
, answer
));
3246 len
= sizeof(DNSServiceFlags
); // calculate reply data length
3247 len
+= sizeof(mDNSu32
); // interface index
3248 len
+= sizeof(DNSServiceErrorType
);
3249 len
+= strlen(name
) + 1;
3250 len
+= 3 * sizeof(mDNSu16
); // type, class, rdlen
3251 len
+= answer
->rdlength
;
3252 len
+= sizeof(mDNSu32
); // TTL
3254 rep
= create_reply(req
->hdr
.op
== query_request
? query_reply_op
: addrinfo_reply_op
, len
, req
);
3257 flags
|= kDNSServiceFlagsAdd
;
3258 if (question
->ValidationStatus
!= 0)
3260 error
= kDNSServiceErr_NoError
;
3261 if (question
->ValidationRequired
&& question
->ValidationState
== DNSSECValDone
)
3263 switch (question
->ValidationStatus
) //Set the dnssec flags to be passed on to the Apps here
3266 flags
|= kDNSServiceFlagsSecure
;
3268 case DNSSEC_Insecure
:
3269 flags
|= kDNSServiceFlagsInsecure
;
3271 case DNSSEC_Indeterminate
:
3272 flags
|= kDNSServiceFlagsIndeterminate
;
3275 flags
|= kDNSServiceFlagsBogus
;
3278 LogMsg("queryrecord_result_reply unknown status %d for %##s", question
->ValidationStatus
, question
->qname
.c
);
3283 rep
->rhdr
->flags
= dnssd_htonl(flags
);
3284 // Call mDNSPlatformInterfaceIndexfromInterfaceID, but suppressNetworkChange (last argument). Otherwise, if the
3285 // InterfaceID is not valid, then it simulates a "NetworkChanged" which in turn makes questions
3286 // to be stopped and started including *this* one. Normally the InterfaceID is valid. But when we
3287 // are using the /etc/hosts entries to answer a question, the InterfaceID may not be known to the
3288 // mDNS core . Eventually, we should remove the calls to "NetworkChanged" in
3289 // mDNSPlatformInterfaceIndexfromInterfaceID when it can't find InterfaceID as ResourceRecords
3290 // should not have existed to answer this question if the corresponding interface is not valid.
3291 rep
->rhdr
->ifi
= dnssd_htonl(mDNSPlatformInterfaceIndexfromInterfaceID(m
, answer
->InterfaceID
, mDNStrue
));
3292 rep
->rhdr
->error
= dnssd_htonl(error
);
3294 data
= (char *)&rep
->rhdr
[1];
3296 put_string(name
, &data
);
3297 put_uint16(answer
->rrtype
, &data
);
3298 put_uint16(answer
->rrclass
, &data
);
3299 put_uint16(answer
->rdlength
, &data
);
3300 // We need to use putRData here instead of the crude put_rdata function, because the crude put_rdata
3301 // function just does a blind memory copy without regard to structures that may have holes in them.
3302 if (answer
->rdlength
)
3303 if (!putRData(mDNSNULL
, (mDNSu8
*)data
, (mDNSu8
*)rep
->rhdr
+ len
, answer
))
3304 LogMsg("queryrecord_result_reply putRData failed %d", (mDNSu8
*)rep
->rhdr
+ len
- (mDNSu8
*)data
);
3305 data
+= answer
->rdlength
;
3306 put_uint32(AddRecord
? answer
->rroriginalttl
: 0, &data
);
3308 append_reply(req
, rep
);
3309 // Stop the question, if we just timed out
3310 if (error
== kDNSServiceErr_Timeout
)
3312 mDNS_StopQuery(m
, question
);
3313 // Reset the pointers so that we don't call stop on termination
3314 question
->QuestionContext
= mDNSNULL
;
3316 else if ((AddRecord
== QC_add
) && req
->hdr
.op
== addrinfo_request
)
3318 // Note: We count all answers including LocalOnly e.g., /etc/hosts. If we
3319 // exclude that, v4ans/v6ans will be zero and we would wrongly think that
3320 // we did not answer questions and setup the status to deliver triggers.
3321 if (question
->qtype
== kDNSType_A
)
3322 req
->u
.addrinfo
.v4ans
= 1;
3323 if (question
->qtype
== kDNSType_AAAA
)
3324 req
->u
.addrinfo
.v6ans
= 1;
3326 else if ((AddRecord
== QC_add
) && req
->hdr
.op
== query_request
)
3328 if (question
->qtype
== kDNSType_A
|| question
->qtype
== kDNSType_AAAA
)
3329 req
->u
.queryrecord
.ans
= 1;
3332 #if APPLE_OSX_mDNSResponder
3334 CHECK_WCF_FUNCTION(WCFIsServerRunning
)
3337 socklen_t xucredlen
= sizeof(x
);
3339 if (WCFIsServerRunning((WCFConnection
*)m
->WCF
) && answer
->rdlength
!= 0)
3341 if (getsockopt(req
->sd
, 0, LOCAL_PEERCRED
, &x
, &xucredlen
) >= 0 &&
3342 (x
.cr_version
== XUCRED_VERSION
))
3344 struct sockaddr_storage addr
;
3345 const RDataBody2
*const rdb
= (RDataBody2
*)answer
->rdata
->u
.data
;
3347 if (answer
->rrtype
== kDNSType_A
|| answer
->rrtype
== kDNSType_AAAA
)
3349 if (answer
->rrtype
== kDNSType_A
)
3351 struct sockaddr_in
*sin
= (struct sockaddr_in
*)&addr
;
3353 if (!putRData(mDNSNULL
, (mDNSu8
*)&sin
->sin_addr
, (mDNSu8
*)(&sin
->sin_addr
+ sizeof(rdb
->ipv4
)), answer
))
3354 LogMsg("queryrecord_result_reply: WCF AF_INET putRData failed");
3357 addr
.ss_len
= sizeof (struct sockaddr_in
);
3358 addr
.ss_family
= AF_INET
;
3361 else if (answer
->rrtype
== kDNSType_AAAA
)
3363 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)&addr
;
3364 sin6
->sin6_port
= 0;
3365 if (!putRData(mDNSNULL
, (mDNSu8
*)&sin6
->sin6_addr
, (mDNSu8
*)(&sin6
->sin6_addr
+ sizeof(rdb
->ipv6
)), answer
))
3366 LogMsg("queryrecord_result_reply: WCF AF_INET6 putRData failed");
3369 addr
.ss_len
= sizeof (struct sockaddr_in6
);
3370 addr
.ss_family
= AF_INET6
;
3375 debugf("queryrecord_result_reply: Name %s, uid %u, addr length %d", name
, x
.cr_uid
, addr
.ss_len
);
3376 CHECK_WCF_FUNCTION((WCFConnection
*)WCFNameResolvesToAddr
)
3378 WCFNameResolvesToAddr(m
->WCF
, name
, (struct sockaddr
*)&addr
, x
.cr_uid
);
3382 else if (answer
->rrtype
== kDNSType_CNAME
)
3385 char cname_cstr
[MAX_ESCAPED_DOMAIN_NAME
];
3386 if (!putRData(mDNSNULL
, cname
.c
, (mDNSu8
*)(cname
.c
+ MAX_DOMAIN_NAME
), answer
))
3387 LogMsg("queryrecord_result_reply: WCF CNAME putRData failed");
3390 ConvertDomainNameToCString(&cname
, cname_cstr
);
3391 CHECK_WCF_FUNCTION((WCFConnection
*)WCFNameResolvesToAddr
)
3393 WCFNameResolvesToName(m
->WCF
, name
, cname_cstr
, x
.cr_uid
);
3398 else my_perror("queryrecord_result_reply: ERROR: getsockopt LOCAL_PEERCRED");
3405 mDNSlocal
void queryrecord_result_callback(mDNS
*const m
, DNSQuestion
*question
, const ResourceRecord
*const answer
, QC_result AddRecord
)
3407 request_state
*req
= question
->QuestionContext
;
3408 DNSServiceErrorType error
= kDNSServiceErr_NoError
;
3409 DNSQuestion
*q
= mDNSNULL
;
3411 #if APPLE_OSX_mDNSResponder
3413 // Sanity check: QuestionContext is set to NULL after we stop the question and hence we should not
3414 // get any callbacks from the core after this.
3417 LogMsg("queryrecord_result_callback: ERROR!! QuestionContext NULL for %##s (%s)", question
->qname
.c
, DNSTypeName(question
->qtype
));
3420 if (req
->hdr
.op
== query_request
&& question
== req
->u
.queryrecord
.q2
)
3421 q
= &req
->u
.queryrecord
.q
;
3422 else if (req
->hdr
.op
== addrinfo_request
&& question
== req
->u
.addrinfo
.q42
)
3423 q
= &req
->u
.addrinfo
.q4
;
3424 else if (req
->hdr
.op
== addrinfo_request
&& question
== req
->u
.addrinfo
.q62
)
3425 q
= &req
->u
.addrinfo
.q6
;
3427 if (q
&& question
->qtype
!= q
->qtype
&& !SameDomainName(&question
->qname
, &q
->qname
))
3430 domainname
*orig
= question
->qnameOrig
;
3432 LogInfo("queryrecord_result_callback: Stopping q2 local %##s", question
->qname
.c
);
3433 mDNS_StopQuery(m
, question
);
3434 question
->QuestionContext
= mDNSNULL
;
3436 // We got a negative response for the SOA record indicating that .local does not exist.
3437 // But we might have other search domains (that does not end in .local) that can be
3438 // appended to this question. In that case, we want to retry the question. Otherwise,
3439 // we don't want to try this question as unicast.
3440 if (answer
->RecordType
== kDNSRecordTypePacketNegative
&& !q
->AppendSearchDomains
)
3442 LogInfo("queryrecord_result_callback: question %##s AppendSearchDomains zero", q
->qname
.c
);
3446 // If we got a non-negative answer for our "local SOA" test query, start an additional parallel unicast query
3448 // Note: When we copy the original question, we copy everything including the AppendSearchDomains,
3449 // RetryWithSearchDomains except for qnameOrig which can be non-NULL if the original question is
3450 // e.g., somehost and then we appended e.g., ".local" and retried that question. See comment in
3451 // SendAdditionalQuery as to how qnameOrig gets initialized.
3453 question
->InterfaceID
= mDNSInterface_Unicast
;
3454 question
->ExpectUnique
= mDNStrue
;
3455 question
->qnameOrig
= orig
;
3457 LogOperation("%3d: DNSServiceQueryRecord(%##s, %s) unicast, context %p", req
->sd
, question
->qname
.c
, DNSTypeName(question
->qtype
), question
->QuestionContext
);
3459 // If the original question timed out, its QuestionContext would already be set to NULL and that's what we copied above.
3460 // Hence, we need to set it explicitly here.
3461 question
->QuestionContext
= req
;
3462 err
= mDNS_StartQuery(m
, question
);
3463 if (err
) LogMsg("%3d: ERROR: queryrecord_result_callback %##s %s mDNS_StartQuery: %d", req
->sd
, question
->qname
.c
, DNSTypeName(question
->qtype
), (int)err
);
3465 // If we got a positive response to local SOA, then try the .local question as unicast
3466 if (answer
->RecordType
!= kDNSRecordTypePacketNegative
) return;
3468 // Fall through and get the next search domain. The question is pointing at .local
3469 // and we don't want to try that. Try the next search domain. Don't try with local
3470 // search domains for the unicast question anymore.
3472 // Note: we started the question above which will be stopped immediately (never sent on the wire)
3473 // before we pick the next search domain below. RetryQuestionWithSearchDomains assumes that the
3474 // question has already started.
3475 question
->AppendLocalSearchDomains
= 0;
3478 if (q
&& AddRecord
&& AddRecord
!= QC_dnssec
&& (question
->InterfaceID
== mDNSInterface_Unicast
) && !answer
->rdlength
)
3480 // If we get a negative response to the unicast query that we sent above, retry after appending search domains
3481 // Note: We could have appended search domains below (where do it for regular unicast questions) instead of doing it here.
3482 // As we ignore negative unicast answers below, we would never reach the code where the search domains are appended.
3483 // To keep things simple, we handle unicast ".local" separately here.
3484 LogInfo("queryrecord_result_callback: Retrying .local question %##s (%s) as unicast after appending search domains", question
->qname
.c
, DNSTypeName(question
->qtype
));
3485 if (RetryQuestionWithSearchDomains(m
, question
, req
, AddRecord
))
3487 if (question
->AppendSearchDomains
&& !question
->AppendLocalSearchDomains
&& IsLocalDomain(&question
->qname
))
3489 // If "local" is the last search domain, we need to stop the question so that we don't send the "local"
3490 // question on the wire as we got a negative response for the local SOA. But, we can't stop the question
3491 // yet as we may have to timeout the question (done by the "core") for which we need to leave the question
3492 // in the list. We leave it disabled so that it does not hit the wire.
3493 LogInfo("queryrecord_result_callback: Disabling .local question %##s (%s)", question
->qname
.c
, DNSTypeName(question
->qtype
));
3494 question
->ThisQInterval
= 0;
3497 // If we are here it means that either "question" is not "q2" OR we got a positive response for "q2" OR we have no more search
3498 // domains to append for "q2". In all cases, fall through and deliver the response
3500 #endif // APPLE_OSX_mDNSResponder
3502 // If a query is being suppressed for some reason, we don't have to do any other
3505 // Note: We don't check for "SuppressQuery" and instead use QC_suppressed because
3506 // the "core" needs to temporarily turn off SuppressQuery to answer this query.
3507 if (AddRecord
== QC_suppressed
)
3509 LogInfo("queryrecord_result_callback: Suppressed question %##s (%s)", question
->qname
.c
, DNSTypeName(question
->qtype
));
3510 queryrecord_result_reply(m
, req
, question
, answer
, AddRecord
, kDNSServiceErr_NoSuchRecord
);
3514 if (answer
->RecordType
== kDNSRecordTypePacketNegative
)
3516 // If this question needs to be timed out and we have reached the stop time, mark
3517 // the error as timeout. It is possible that we might get a negative response from an
3518 // external DNS server at the same time when this question reaches its stop time. We
3519 // can't tell the difference as there is no indication in the callback. This should
3520 // be okay as we will be timing out this query anyway.
3522 if (question
->TimeoutQuestion
)
3524 if ((m
->timenow
- question
->StopTime
) >= 0)
3526 LogInfo("queryrecord_result_callback:Question %##s (%s) timing out, InterfaceID %p", question
->qname
.c
, DNSTypeName(question
->qtype
), question
->InterfaceID
);
3527 error
= kDNSServiceErr_Timeout
;
3531 // When we're doing parallel unicast and multicast queries for dot-local names (for supporting Microsoft
3532 // Active Directory sites) we need to ignore negative unicast answers. Otherwise we'll generate negative
3533 // answers for just about every single multicast name we ever look up, since the Microsoft Active Directory
3534 // server is going to assert that pretty much every single multicast name doesn't exist.
3536 // If we are timing out this query, we need to deliver the negative answer to the application
3537 if (error
!= kDNSServiceErr_Timeout
)
3539 if (!answer
->InterfaceID
&& IsLocalDomain(answer
->name
))
3541 // Sanity check: "q" will be set only if "question" is the .local unicast query.
3544 LogMsg("queryrecord_result_callback: ERROR!! answering multicast question %s with unicast cache record",
3545 RRDisplayString(m
, answer
));
3548 #if APPLE_OSX_mDNSResponder
3549 if (!ShouldDeliverNegativeResponse(m
, question
))
3553 #endif // APPLE_OSX_mDNSResponder
3554 LogInfo("queryrecord_result_callback:Question %##s (%s) answering local with negative unicast response", question
->qname
.c
,
3555 DNSTypeName(question
->qtype
));
3557 error
= kDNSServiceErr_NoSuchRecord
;
3560 // If we get a negative answer, try appending search domains. Don't append search domains
3561 // - if we are timing out this question
3562 // - if the negative response was received as a result of a multicast query
3563 // - if this is an additional query (q2), we already appended search domains above (indicated by "!q" below)
3564 // - if this response is forced e.g., dnssec validation result
3565 if (error
!= kDNSServiceErr_Timeout
)
3567 if (!q
&& !answer
->InterfaceID
&& !answer
->rdlength
&& AddRecord
&& AddRecord
!= QC_dnssec
)
3569 // If the original question did not end in .local, we did not send an SOA query
3570 // to figure out whether we should send an additional unicast query or not. If we just
3571 // appended .local, we need to see if we need to send an additional query. This should
3572 // normally happen just once because after we append .local, we ignore all negative
3573 // responses for .local above.
3574 LogInfo("queryrecord_result_callback: Retrying question %##s (%s) after appending search domains", question
->qname
.c
, DNSTypeName(question
->qtype
));
3575 if (RetryQuestionWithSearchDomains(m
, question
, req
, AddRecord
))
3577 // Note: We need to call SendAdditionalQuery every time after appending a search domain as .local could
3578 // be anywhere in the search domain list.
3579 #if APPLE_OSX_mDNSResponder
3580 mStatus err
= mStatus_NoError
;
3581 err
= SendAdditionalQuery(question
, req
, err
);
3582 if (err
) LogMsg("queryrecord_result_callback: Sending .local SOA query failed, after appending domains");
3583 #endif // APPLE_OSX_mDNSResponder
3588 queryrecord_result_reply(m
, req
, question
, answer
, AddRecord
, error
);
3591 mDNSlocal
void queryrecord_termination_callback(request_state
*request
)
3593 LogOperation("%3d: DNSServiceQueryRecord(%##s, %s) STOP PID[%d](%s)",
3594 request
->sd
, request
->u
.queryrecord
.q
.qname
.c
, DNSTypeName(request
->u
.queryrecord
.q
.qtype
), request
->process_id
, request
->pid_name
);
3595 if (request
->u
.queryrecord
.q
.QuestionContext
)
3597 mDNS_StopQuery(&mDNSStorage
, &request
->u
.queryrecord
.q
); // no need to error check
3598 LogMcastQ(&mDNSStorage
, &request
->u
.queryrecord
.q
, request
, q_stop
);
3599 request
->u
.queryrecord
.q
.QuestionContext
= mDNSNULL
;
3603 DNSQuestion
*question
= &request
->u
.queryrecord
.q
;
3604 LogInfo("queryrecord_termination_callback: question %##s (%s) already stopped, InterfaceID %p", question
->qname
.c
, DNSTypeName(question
->qtype
), question
->InterfaceID
);
3607 if (request
->u
.queryrecord
.q
.qnameOrig
)
3609 freeL("QueryTermination", request
->u
.queryrecord
.q
.qnameOrig
);
3610 request
->u
.queryrecord
.q
.qnameOrig
= mDNSNULL
;
3613 if (callExternalHelpers(request
->u
.queryrecord
.q
.InterfaceID
, &request
->u
.queryrecord
.q
.qname
, request
->flags
))
3615 LogInfo("queryrecord_termination_callback: calling external_stop_browsing_for_service()");
3616 external_stop_browsing_for_service(request
->u
.queryrecord
.q
.InterfaceID
, &request
->u
.queryrecord
.q
.qname
, request
->u
.queryrecord
.q
.qtype
, request
->flags
);
3618 if (request
->u
.queryrecord
.q2
)
3620 if (request
->u
.queryrecord
.q2
->QuestionContext
)
3622 LogInfo("queryrecord_termination_callback: Stopping q2 %##s", request
->u
.queryrecord
.q2
->qname
.c
);
3623 mDNS_StopQuery(&mDNSStorage
, request
->u
.queryrecord
.q2
);
3624 LogMcastQ(&mDNSStorage
, request
->u
.queryrecord
.q2
, request
, q_stop
);
3628 DNSQuestion
*question
= request
->u
.queryrecord
.q2
;
3629 LogInfo("queryrecord_termination_callback: q2 %##s (%s) already stopped, InterfaceID %p", question
->qname
.c
, DNSTypeName(question
->qtype
), question
->InterfaceID
);
3631 if (request
->u
.queryrecord
.q2
->qnameOrig
)
3633 LogInfo("queryrecord_termination_callback: freeing q2 qnameOrig %##s", request
->u
.queryrecord
.q2
->qnameOrig
->c
);
3634 freeL("QueryTermination q2", request
->u
.queryrecord
.q2
->qnameOrig
);
3635 request
->u
.queryrecord
.q2
->qnameOrig
= mDNSNULL
;
3637 freeL("queryrecord Q2", request
->u
.queryrecord
.q2
);
3638 request
->u
.queryrecord
.q2
= mDNSNULL
;
3640 #if APPLE_OSX_mDNSResponder
3642 if (request
->u
.queryrecord
.ans
)
3644 DNSQuestion
*v4q
, *v6q
;
3645 // If we are receiving poisitive answers, provide the hint to the
3647 v4q
= v6q
= mDNSNULL
;
3648 if (request
->u
.queryrecord
.q
.qtype
== kDNSType_A
)
3649 v4q
= &request
->u
.queryrecord
.q
;
3650 else if (request
->u
.queryrecord
.q
.qtype
== kDNSType_AAAA
)
3651 v6q
= &request
->u
.queryrecord
.q
;
3652 mDNSPlatformTriggerDNSRetry(&mDNSStorage
, v4q
, v6q
);
3655 #endif // APPLE_OSX_mDNSResponder
3658 mDNSlocal
void SetQuestionPolicy(DNSQuestion
*q
, request_state
*req
)
3662 // The policy is either based on pid or UUID. Pass a zero pid
3663 // to the "core" if the UUID is valid. If we always pass the pid,
3664 // then the "core" needs to determine whether the uuid is valid
3665 // by examining all the 16 bytes at the time of the policy
3666 // check and also when setting the delegate socket option. Also, it
3667 // requires that we zero out the uuid wherever the question is
3668 // initialized to make sure that it is not interpreted as valid.
3669 // To prevent these intrusive changes, just pass a zero pid to indicate
3670 // that pid is not valid when uuid is valid. In future if we need the
3671 // pid in the question, we will reevaluate this strategy.
3674 for (i
= 0; i
< UUID_SIZE
; i
++)
3676 q
->uuid
[i
] = req
->uuid
[i
];
3682 q
->pid
= req
->process_id
;
3686 mDNSlocal mStatus
handle_queryrecord_request(request_state
*request
)
3688 DNSQuestion
*const q
= &request
->u
.queryrecord
.q
;
3690 mDNSu16 rrtype
, rrclass
;
3693 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
3694 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
3695 mDNSInterfaceID InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
3697 // The request is scoped to a specific interface index, but the
3698 // interface is not currently in our list.
3699 if (interfaceIndex
&& !InterfaceID
)
3701 // If it's one of the specially defined inteface index values, just return an error.
3702 if (PreDefinedInterfaceIndex(interfaceIndex
))
3704 LogMsg("ERROR: handle_queryrecord_request: bad interfaceIndex %d", interfaceIndex
);
3705 return(mStatus_BadParamErr
);
3708 // Otherwise, use the specified interface index value and the request will
3709 // be applied to that interface when it comes up.
3710 InterfaceID
= (mDNSInterfaceID
)(uintptr_t)interfaceIndex
;
3711 LogInfo("handle_queryrecord_request: query pending for interface index %d", interfaceIndex
);
3714 if (get_string(&request
->msgptr
, request
->msgend
, name
, 256) < 0) return(mStatus_BadParamErr
);
3715 rrtype
= get_uint16(&request
->msgptr
, request
->msgend
);
3716 rrclass
= get_uint16(&request
->msgptr
, request
->msgend
);
3718 if (!request
->msgptr
)
3719 { LogMsg("%3d: DNSServiceQueryRecord(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
3721 request
->flags
= flags
;
3722 mDNSPlatformMemZero(&request
->u
.queryrecord
, sizeof(request
->u
.queryrecord
));
3724 q
->InterfaceID
= InterfaceID
;
3726 q
->Target
= zeroAddr
;
3727 if (!MakeDomainNameFromDNSNameString(&q
->qname
, name
)) return(mStatus_BadParamErr
);
3729 if (!AuthorizedDomain(request
, &q
->qname
, AutoBrowseDomains
)) return (mStatus_NoError
);
3732 q
->qclass
= rrclass
;
3733 q
->LongLived
= (flags
& kDNSServiceFlagsLongLivedQuery
) != 0;
3734 q
->ExpectUnique
= mDNSfalse
;
3735 q
->ForceMCast
= (flags
& kDNSServiceFlagsForceMulticast
) != 0;
3736 q
->ReturnIntermed
= (flags
& kDNSServiceFlagsReturnIntermediates
) != 0;
3737 q
->SuppressUnusable
= (flags
& kDNSServiceFlagsSuppressUnusable
) != 0;
3738 q
->TimeoutQuestion
= (flags
& kDNSServiceFlagsTimeout
) != 0;
3739 q
->WakeOnResolve
= 0;
3740 q
->UseBackgroundTrafficClass
= (flags
& kDNSServiceFlagsBackgroundTrafficClass
) != 0;
3741 q
->DenyOnCellInterface
= (flags
& kDNSServiceFlagsDenyCellular
) != 0;
3742 q
->DenyOnExpInterface
= (flags
& kDNSServiceFlagsDenyExpensive
) != 0;
3743 if ((flags
& kDNSServiceFlagsValidate
) != 0)
3744 q
->ValidationRequired
= DNSSEC_VALIDATION_SECURE
;
3745 else if ((flags
& kDNSServiceFlagsValidateOptional
) != 0)
3746 q
->ValidationRequired
= DNSSEC_VALIDATION_SECURE_OPTIONAL
;
3747 q
->ValidatingResponse
= 0;
3748 q
->ProxyQuestion
= 0;
3749 q
->AnonInfo
= mDNSNULL
;
3750 q
->QuestionCallback
= queryrecord_result_callback
;
3751 q
->QuestionContext
= request
;
3752 q
->SearchListIndex
= 0;
3754 q
->DNSSECAuthInfo
= mDNSNULL
;
3755 q
->DAIFreeCallback
= mDNSNULL
;
3757 //Turn off dnssec validation for local domains and Question Types: RRSIG/ANY(ANY Type is not supported yet)
3758 if ((IsLocalDomain(&q
->qname
)) || (q
->qtype
== kDNSServiceType_RRSIG
) || (q
->qtype
== kDNSServiceType_ANY
))
3759 q
->ValidationRequired
= 0;
3761 // Don't append search domains for fully qualified domain names including queries
3762 // such as e.g., "abc." that has only one label. We convert all names to FQDNs as internally
3763 // we only deal with FQDNs. Hence, we cannot look at qname to figure out whether we should
3764 // append search domains or not. So, we record that information in AppendSearchDomains.
3766 // We append search domains only for queries that are a single label. If overriden using command line
3767 // argument "AlwaysAppendSearchDomains", then we do it for any query which is not fully qualified.
3768 // For DNSSEC questions, append search domains only if kDNSServiceFlagsValidateOptional is set.
3770 if ((!(q
->ValidationRequired
== DNSSEC_VALIDATION_SECURE
)) && (!(q
->ValidationRequired
== DNSSEC_VALIDATION_INSECURE
))
3771 && (rrtype
== kDNSType_A
|| rrtype
== kDNSType_AAAA
) && name
[strlen(name
) - 1] != '.' &&
3772 (AlwaysAppendSearchDomains
|| CountLabels(&q
->qname
) == 1))
3774 q
->AppendSearchDomains
= 1;
3775 q
->AppendLocalSearchDomains
= 1;
3779 q
->AppendSearchDomains
= 0;
3780 q
->AppendLocalSearchDomains
= 0;
3783 // For single label queries that are not fully qualified, look at /etc/hosts, cache and try
3784 // search domains before trying them on the wire as a single label query. RetryWithSearchDomains
3785 // tell the core to call back into the UDS layer if there is no valid response in /etc/hosts or
3787 q
->RetryWithSearchDomains
= ApplySearchDomainsFirst(q
) ? 1 : 0;
3788 q
->qnameOrig
= mDNSNULL
;
3789 SetQuestionPolicy(q
, request
);
3791 LogOperation("%3d: DNSServiceQueryRecord(%X, %d, %##s, %s) START PID[%d](%s)",
3792 request
->sd
, flags
, interfaceIndex
, q
->qname
.c
, DNSTypeName(q
->qtype
), request
->process_id
, request
->pid_name
);
3793 err
= mDNS_StartQuery(&mDNSStorage
, q
);
3796 LogMsg("%3d: ERROR: DNSServiceQueryRecord %##s %s mDNS_StartQuery: %d", request
->sd
, q
->qname
.c
, DNSTypeName(q
->qtype
), (int)err
);
3799 request
->terminate
= queryrecord_termination_callback
;
3800 LogMcastQ(&mDNSStorage
, q
, request
, q_start
);
3801 if (callExternalHelpers(q
->InterfaceID
, &q
->qname
, flags
))
3803 LogInfo("handle_queryrecord_request: calling external_start_browsing_for_service()");
3804 external_start_browsing_for_service(q
->InterfaceID
, &q
->qname
, q
->qtype
, flags
);
3808 #if APPLE_OSX_mDNSResponder
3809 err
= SendAdditionalQuery(q
, request
, err
);
3810 #endif // APPLE_OSX_mDNSResponder
3815 // ***************************************************************************
3816 #if COMPILER_LIKES_PRAGMA_MARK
3818 #pragma mark - DNSServiceEnumerateDomains
3821 mDNSlocal reply_state
*format_enumeration_reply(request_state
*request
,
3822 const char *domain
, DNSServiceFlags flags
, mDNSu32 ifi
, DNSServiceErrorType err
)
3828 len
= sizeof(DNSServiceFlags
);
3829 len
+= sizeof(mDNSu32
);
3830 len
+= sizeof(DNSServiceErrorType
);
3831 len
+= strlen(domain
) + 1;
3833 reply
= create_reply(enumeration_reply_op
, len
, request
);
3834 reply
->rhdr
->flags
= dnssd_htonl(flags
);
3835 reply
->rhdr
->ifi
= dnssd_htonl(ifi
);
3836 reply
->rhdr
->error
= dnssd_htonl(err
);
3837 data
= (char *)&reply
->rhdr
[1];
3838 put_string(domain
, &data
);
3842 mDNSlocal
void enum_termination_callback(request_state
*request
)
3844 // Stop the domain enumeration queries to discover the WAB Browse/Registration domains
3845 if (request
->u
.enumeration
.flags
& kDNSServiceFlagsRegistrationDomains
)
3847 LogInfo("%3d: DNSServiceEnumeration Cancel WAB Registration PID[%d](%s)", request
->sd
, request
->process_id
, request
->pid_name
);
3848 uDNS_StopWABQueries(&mDNSStorage
, UDNS_WAB_REG_QUERY
);
3852 LogInfo("%3d: DNSServiceEnumeration Cancel WAB Browse PID[%d](%s)", request
->sd
, request
->process_id
, request
->pid_name
);
3853 uDNS_StopWABQueries(&mDNSStorage
, UDNS_WAB_BROWSE_QUERY
);
3855 mDNS_StopGetDomains(&mDNSStorage
, &request
->u
.enumeration
.q_all
);
3856 mDNS_StopGetDomains(&mDNSStorage
, &request
->u
.enumeration
.q_default
);
3859 mDNSlocal
void enum_result_callback(mDNS
*const m
,
3860 DNSQuestion
*const question
, const ResourceRecord
*const answer
, QC_result AddRecord
)
3862 char domain
[MAX_ESCAPED_DOMAIN_NAME
];
3863 request_state
*request
= question
->QuestionContext
;
3864 DNSServiceFlags flags
= 0;
3868 if (answer
->rrtype
!= kDNSType_PTR
) return;
3871 if (!AuthorizedDomain(request
, &answer
->rdata
->u
.name
, request
->u
.enumeration
.flags
? AutoRegistrationDomains
: AutoBrowseDomains
)) return;
3874 // We only return add/remove events for the browse and registration lists
3875 // For the default browse and registration answers, we only give an "ADD" event
3876 if (question
== &request
->u
.enumeration
.q_default
&& !AddRecord
) return;
3880 flags
|= kDNSServiceFlagsAdd
;
3881 if (question
== &request
->u
.enumeration
.q_default
) flags
|= kDNSServiceFlagsDefault
;
3884 ConvertDomainNameToCString(&answer
->rdata
->u
.name
, domain
);
3885 // Note that we do NOT propagate specific interface indexes to the client - for example, a domain we learn from
3886 // a machine's system preferences may be discovered on the LocalOnly interface, but should be browsed on the
3887 // network, so we just pass kDNSServiceInterfaceIndexAny
3888 reply
= format_enumeration_reply(request
, domain
, flags
, kDNSServiceInterfaceIndexAny
, kDNSServiceErr_NoError
);
3889 if (!reply
) { LogMsg("ERROR: enum_result_callback, format_enumeration_reply"); return; }
3891 LogOperation("%3d: DNSServiceEnumerateDomains(%#2s) RESULT %s: %s", request
->sd
, question
->qname
.c
, AddRecord
? "Add" : "Rmv", domain
);
3893 append_reply(request
, reply
);
3896 mDNSlocal mStatus
handle_enum_request(request_state
*request
)
3899 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
3900 DNSServiceFlags reg
= flags
& kDNSServiceFlagsRegistrationDomains
;
3901 mDNS_DomainType t_all
= reg
? mDNS_DomainTypeRegistration
: mDNS_DomainTypeBrowse
;
3902 mDNS_DomainType t_default
= reg
? mDNS_DomainTypeRegistrationDefault
: mDNS_DomainTypeBrowseDefault
;
3903 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
3904 mDNSInterfaceID InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
3905 if (interfaceIndex
&& !InterfaceID
) return(mStatus_BadParamErr
);
3907 if (!request
->msgptr
)
3908 { LogMsg("%3d: DNSServiceEnumerateDomains(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
3910 // mark which kind of enumeration we're doing so that we know what domain enumeration queries to stop
3911 request
->u
.enumeration
.flags
= reg
;
3913 // enumeration requires multiple questions, so we must link all the context pointers so that
3914 // necessary context can be reached from the callbacks
3915 request
->u
.enumeration
.q_all
.QuestionContext
= request
;
3916 request
->u
.enumeration
.q_default
.QuestionContext
= request
;
3918 // if the caller hasn't specified an explicit interface, we use local-only to get the system-wide list.
3919 if (!InterfaceID
) InterfaceID
= mDNSInterface_LocalOnly
;
3922 LogOperation("%3d: DNSServiceEnumerateDomains(%X=%s)", request
->sd
, flags
,
3923 (flags
& kDNSServiceFlagsBrowseDomains
) ? "kDNSServiceFlagsBrowseDomains" :
3924 (flags
& kDNSServiceFlagsRegistrationDomains
) ? "kDNSServiceFlagsRegistrationDomains" : "<<Unknown>>");
3925 err
= mDNS_GetDomains(&mDNSStorage
, &request
->u
.enumeration
.q_all
, t_all
, NULL
, InterfaceID
, enum_result_callback
, request
);
3928 err
= mDNS_GetDomains(&mDNSStorage
, &request
->u
.enumeration
.q_default
, t_default
, NULL
, InterfaceID
, enum_result_callback
, request
);
3929 if (err
) mDNS_StopGetDomains(&mDNSStorage
, &request
->u
.enumeration
.q_all
);
3930 else request
->terminate
= enum_termination_callback
;
3934 // Start the domain enumeration queries to discover the WAB Browse/Registration domains
3937 LogInfo("%3d: DNSServiceEnumerateDomains Start WAB Registration PID[%d](%s)", request
->sd
, request
->process_id
, request
->pid_name
);
3938 uDNS_StartWABQueries(&mDNSStorage
, UDNS_WAB_REG_QUERY
);
3942 LogInfo("%3d: DNSServiceEnumerateDomains Start WAB Browse PID[%d](%s)", request
->sd
, request
->process_id
, request
->pid_name
);
3943 uDNS_StartWABQueries(&mDNSStorage
, UDNS_WAB_BROWSE_QUERY
);
3950 // ***************************************************************************
3951 #if COMPILER_LIKES_PRAGMA_MARK
3953 #pragma mark - DNSServiceReconfirmRecord & Misc
3956 mDNSlocal mStatus
handle_reconfirm_request(request_state
*request
)
3958 mStatus status
= mStatus_BadParamErr
;
3959 AuthRecord
*rr
= read_rr_from_ipc_msg(request
, 0, 0);
3962 status
= mDNS_ReconfirmByValue(&mDNSStorage
, &rr
->resrec
);
3964 (status
== mStatus_NoError
) ?
3965 "%3d: DNSServiceReconfirmRecord(%s) interface %d initiated" :
3966 "%3d: DNSServiceReconfirmRecord(%s) interface %d failed: %d",
3967 request
->sd
, RRDisplayString(&mDNSStorage
, &rr
->resrec
),
3968 mDNSPlatformInterfaceIndexfromInterfaceID(&mDNSStorage
, rr
->resrec
.InterfaceID
, mDNSfalse
), status
);
3969 freeL("AuthRecord/handle_reconfirm_request", rr
);
3974 #if APPLE_OSX_mDNSResponder
3976 mDNSlocal mStatus
handle_release_request(request_state
*request
)
3979 char name
[256], regtype
[MAX_ESCAPED_DOMAIN_NAME
], domain
[MAX_ESCAPED_DOMAIN_NAME
];
3980 domainname instance
;
3982 // extract the data from the message
3983 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
3985 if (get_string(&request
->msgptr
, request
->msgend
, name
, 256) < 0 ||
3986 get_string(&request
->msgptr
, request
->msgend
, regtype
, MAX_ESCAPED_DOMAIN_NAME
) < 0 ||
3987 get_string(&request
->msgptr
, request
->msgend
, domain
, MAX_ESCAPED_DOMAIN_NAME
) < 0)
3989 LogMsg("ERROR: handle_release_request - Couldn't read name/regtype/domain");
3990 return(mStatus_BadParamErr
);
3993 if (!request
->msgptr
)
3995 LogMsg("%3d: PeerConnectionRelease(unreadable parameters)", request
->sd
);
3996 return(mStatus_BadParamErr
);
3999 if (build_domainname_from_strings(&instance
, name
, regtype
, domain
) < 0)
4001 LogMsg("ERROR: handle_release_request bad “%s” “%s” “%s”", name
, regtype
, domain
);
4002 return(mStatus_BadParamErr
);
4005 LogOperation("%3d: PeerConnectionRelease(%X %##s) START PID[%d](%s)",
4006 request
->sd
, flags
, instance
.c
, request
->process_id
, request
->pid_name
);
4008 external_connection_release(&instance
);
4012 #else // APPLE_OSX_mDNSResponder
4014 mDNSlocal mStatus
handle_release_request(request_state
*request
)
4017 return mStatus_UnsupportedErr
;
4020 #endif // APPLE_OSX_mDNSResponder
4022 mDNSlocal mStatus
handle_setdomain_request(request_state
*request
)
4024 char domainstr
[MAX_ESCAPED_DOMAIN_NAME
];
4026 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
4027 (void)flags
; // Unused
4028 if (get_string(&request
->msgptr
, request
->msgend
, domainstr
, MAX_ESCAPED_DOMAIN_NAME
) < 0 ||
4029 !MakeDomainNameFromDNSNameString(&domain
, domainstr
))
4030 { LogMsg("%3d: DNSServiceSetDefaultDomainForUser(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
4032 LogOperation("%3d: DNSServiceSetDefaultDomainForUser(%##s)", request
->sd
, domain
.c
);
4033 return(mStatus_NoError
);
4036 typedef packedstruct
4041 } DaemonVersionReply
;
4043 mDNSlocal
void handle_getproperty_request(request_state
*request
)
4045 const mStatus BadParamErr
= dnssd_htonl((mDNSu32
)mStatus_BadParamErr
);
4047 if (get_string(&request
->msgptr
, request
->msgend
, prop
, sizeof(prop
)) >= 0)
4049 LogOperation("%3d: DNSServiceGetProperty(%s)", request
->sd
, prop
);
4050 if (!strcmp(prop
, kDNSServiceProperty_DaemonVersion
))
4052 DaemonVersionReply x
= { 0, dnssd_htonl(4), dnssd_htonl(_DNS_SD_H
) };
4053 send_all(request
->sd
, (const char *)&x
, sizeof(x
));
4058 // If we didn't recogize the requested property name, return BadParamErr
4059 send_all(request
->sd
, (const char *)&BadParamErr
, sizeof(BadParamErr
));
4062 #ifdef APPLE_OSX_mDNSResponder
4063 // The caller can specify either the pid or the uuid. If the pid is not specified,
4064 // update the effective uuid. Don't overwrite the pid which is used for debugging
4065 // purposes and initialized when the socket is opened.
4066 mDNSlocal
void handle_connection_delegate_request(request_state
*request
)
4072 pid
= get_uint32(&request
->msgptr
, request
->msgend
);
4073 #ifdef LOCAL_PEEREPID
4077 if (getsockopt(request
->sd
, SOL_LOCAL
, LOCAL_PEEREPID
, &request
->process_id
, &len
) != 0)
4079 // to extract the process name from the pid value
4080 if (proc_pidinfo(request
->process_id
, PROC_PIDT_SHORTBSDINFO
, 1, &proc
, PROC_PIDT_SHORTBSDINFO_SIZE
) == 0)
4082 mDNSPlatformStrCopy(request
->pid_name
, proc
.pbsi_comm
);
4083 //LogMsg("handle_connection_delegate_request: process id %d, name %s", request->process_id, request->pid_name);
4086 #ifdef LOCAL_PEEREUUID
4090 if (getsockopt(request
->sd
, SOL_LOCAL
, LOCAL_PEEREUUID
, request
->uuid
, &len
) != 0)
4092 request
->validUUID
= mDNStrue
;
4097 mDNSlocal
void handle_connection_delegate_request(request_state
*request
)
4103 typedef packedstruct
4109 mDNSlocal
void handle_getpid_request(request_state
*request
)
4111 const request_state
*req
;
4113 mDNSu16 srcport
= get_uint16(&request
->msgptr
, request
->msgend
);
4114 const DNSQuestion
*q
= NULL
;
4117 LogOperation("%3d: DNSServiceGetPID START", request
->sd
);
4119 for (req
= all_requests
; req
; req
=req
->next
)
4121 if (req
->hdr
.op
== query_request
)
4122 q
= &req
->u
.queryrecord
.q
;
4123 else if (req
->hdr
.op
== addrinfo_request
)
4124 q
= &req
->u
.addrinfo
.q4
;
4125 else if (req
->hdr
.op
== addrinfo_request
)
4126 q
= &req
->u
.addrinfo
.q6
;
4128 if (q
&& q
->LocalSocket
!= NULL
)
4130 mDNSu16 port
= mDNSPlatformGetUDPPort(q
->LocalSocket
);
4131 if (port
== srcport
)
4133 pid
= req
->process_id
;
4134 LogInfo("DNSServiceGetPID: srcport %d, pid %d [%s] question %##s", htons(srcport
), pid
, req
->pid_name
, q
->qname
.c
);
4139 // If we cannot find in the client requests, look to see if this was
4140 // started by mDNSResponder.
4143 for (q
= mDNSStorage
.Questions
; q
; q
= q
->next
)
4145 if (q
&& q
->LocalSocket
!= NULL
)
4147 mDNSu16 port
= mDNSPlatformGetUDPPort(q
->LocalSocket
);
4148 if (port
== srcport
)
4150 #if APPLE_OSX_mDNSResponder
4152 #endif // APPLE_OSX_mDNSResponder
4153 LogInfo("DNSServiceGetPID: srcport %d, pid %d [%s], question %##s", htons(srcport
), pid
, "_mDNSResponder", q
->qname
.c
);
4162 send_all(request
->sd
, (const char *)&pi
, sizeof(PIDInfo
));
4163 LogOperation("%3d: DNSServiceGetPID STOP", request
->sd
);
4166 // ***************************************************************************
4167 #if COMPILER_LIKES_PRAGMA_MARK
4169 #pragma mark - DNSServiceNATPortMappingCreate
4172 #define DNSServiceProtocol(X) ((X) == NATOp_AddrRequest ? 0 : (X) == NATOp_MapUDP ? kDNSServiceProtocol_UDP : kDNSServiceProtocol_TCP)
4174 mDNSlocal
void port_mapping_termination_callback(request_state
*request
)
4176 LogOperation("%3d: DNSServiceNATPortMappingCreate(%X, %u, %u, %d) STOP PID[%d](%s)", request
->sd
,
4177 DNSServiceProtocol(request
->u
.pm
.NATinfo
.Protocol
),
4178 mDNSVal16(request
->u
.pm
.NATinfo
.IntPort
), mDNSVal16(request
->u
.pm
.ReqExt
), request
->u
.pm
.NATinfo
.NATLease
,
4179 request
->process_id
, request
->pid_name
);
4180 mDNS_StopNATOperation(&mDNSStorage
, &request
->u
.pm
.NATinfo
);
4183 // Called via function pointer when we get a NAT Traversal (address request or port mapping) response
4184 mDNSlocal
void port_mapping_create_request_callback(mDNS
*m
, NATTraversalInfo
*n
)
4186 request_state
*request
= (request_state
*)n
->clientContext
;
4191 if (!request
) { LogMsg("port_mapping_create_request_callback called with unknown request_state object"); return; }
4193 // calculate reply data length
4194 replyLen
= sizeof(DNSServiceFlags
);
4195 replyLen
+= 3 * sizeof(mDNSu32
); // if index + addr + ttl
4196 replyLen
+= sizeof(DNSServiceErrorType
);
4197 replyLen
+= 2 * sizeof(mDNSu16
); // Internal Port + External Port
4198 replyLen
+= sizeof(mDNSu8
); // protocol
4200 rep
= create_reply(port_mapping_reply_op
, replyLen
, request
);
4202 rep
->rhdr
->flags
= dnssd_htonl(0);
4203 rep
->rhdr
->ifi
= dnssd_htonl(mDNSPlatformInterfaceIndexfromInterfaceID(m
, n
->InterfaceID
, mDNSfalse
));
4204 rep
->rhdr
->error
= dnssd_htonl(n
->Result
);
4206 data
= (char *)&rep
->rhdr
[1];
4208 *data
++ = request
->u
.pm
.NATinfo
.ExternalAddress
.b
[0];
4209 *data
++ = request
->u
.pm
.NATinfo
.ExternalAddress
.b
[1];
4210 *data
++ = request
->u
.pm
.NATinfo
.ExternalAddress
.b
[2];
4211 *data
++ = request
->u
.pm
.NATinfo
.ExternalAddress
.b
[3];
4212 *data
++ = DNSServiceProtocol(request
->u
.pm
.NATinfo
.Protocol
);
4213 *data
++ = request
->u
.pm
.NATinfo
.IntPort
.b
[0];
4214 *data
++ = request
->u
.pm
.NATinfo
.IntPort
.b
[1];
4215 *data
++ = request
->u
.pm
.NATinfo
.ExternalPort
.b
[0];
4216 *data
++ = request
->u
.pm
.NATinfo
.ExternalPort
.b
[1];
4217 put_uint32(request
->u
.pm
.NATinfo
.Lifetime
, &data
);
4219 LogOperation("%3d: DNSServiceNATPortMappingCreate(%X, %u, %u, %d) RESULT %.4a:%u TTL %u", request
->sd
,
4220 DNSServiceProtocol(request
->u
.pm
.NATinfo
.Protocol
),
4221 mDNSVal16(request
->u
.pm
.NATinfo
.IntPort
), mDNSVal16(request
->u
.pm
.ReqExt
), request
->u
.pm
.NATinfo
.NATLease
,
4222 &request
->u
.pm
.NATinfo
.ExternalAddress
, mDNSVal16(request
->u
.pm
.NATinfo
.ExternalPort
), request
->u
.pm
.NATinfo
.Lifetime
);
4224 append_reply(request
, rep
);
4227 mDNSlocal mStatus
handle_port_mapping_request(request_state
*request
)
4230 mStatus err
= mStatus_NoError
;
4232 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
4233 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
4234 mDNSInterfaceID InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
4235 mDNSu8 protocol
= (mDNSu8
)get_uint32(&request
->msgptr
, request
->msgend
);
4236 (void)flags
; // Unused
4237 if (interfaceIndex
&& !InterfaceID
) return(mStatus_BadParamErr
);
4238 if (request
->msgptr
+ 8 > request
->msgend
) request
->msgptr
= NULL
;
4241 request
->u
.pm
.NATinfo
.IntPort
.b
[0] = *request
->msgptr
++;
4242 request
->u
.pm
.NATinfo
.IntPort
.b
[1] = *request
->msgptr
++;
4243 request
->u
.pm
.ReqExt
.b
[0] = *request
->msgptr
++;
4244 request
->u
.pm
.ReqExt
.b
[1] = *request
->msgptr
++;
4245 ttl
= get_uint32(&request
->msgptr
, request
->msgend
);
4248 if (!request
->msgptr
)
4249 { LogMsg("%3d: DNSServiceNATPortMappingCreate(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
4251 if (protocol
== 0) // If protocol == 0 (i.e. just request public address) then IntPort, ExtPort, ttl must be zero too
4253 if (!mDNSIPPortIsZero(request
->u
.pm
.NATinfo
.IntPort
) || !mDNSIPPortIsZero(request
->u
.pm
.ReqExt
) || ttl
) return(mStatus_BadParamErr
);
4257 if (mDNSIPPortIsZero(request
->u
.pm
.NATinfo
.IntPort
)) return(mStatus_BadParamErr
);
4258 if (!(protocol
& (kDNSServiceProtocol_UDP
| kDNSServiceProtocol_TCP
))) return(mStatus_BadParamErr
);
4261 request
->u
.pm
.NATinfo
.Protocol
= !protocol
? NATOp_AddrRequest
: (protocol
== kDNSServiceProtocol_UDP
) ? NATOp_MapUDP
: NATOp_MapTCP
;
4262 // u.pm.NATinfo.IntPort = already set above
4263 request
->u
.pm
.NATinfo
.RequestedPort
= request
->u
.pm
.ReqExt
;
4264 request
->u
.pm
.NATinfo
.NATLease
= ttl
;
4265 request
->u
.pm
.NATinfo
.clientCallback
= port_mapping_create_request_callback
;
4266 request
->u
.pm
.NATinfo
.clientContext
= request
;
4268 LogOperation("%3d: DNSServiceNATPortMappingCreate(%X, %u, %u, %d) START PID[%d](%s)", request
->sd
,
4269 protocol
, mDNSVal16(request
->u
.pm
.NATinfo
.IntPort
), mDNSVal16(request
->u
.pm
.ReqExt
), request
->u
.pm
.NATinfo
.NATLease
,
4270 request
->process_id
, request
->pid_name
);
4271 err
= mDNS_StartNATOperation(&mDNSStorage
, &request
->u
.pm
.NATinfo
);
4272 if (err
) LogMsg("ERROR: mDNS_StartNATOperation: %d", (int)err
);
4273 else request
->terminate
= port_mapping_termination_callback
;
4278 // ***************************************************************************
4279 #if COMPILER_LIKES_PRAGMA_MARK
4281 #pragma mark - DNSServiceGetAddrInfo
4284 mDNSlocal
void addrinfo_termination_callback(request_state
*request
)
4286 LogOperation("%3d: DNSServiceGetAddrInfo(%##s) STOP PID[%d](%s)", request
->sd
, request
->u
.addrinfo
.q4
.qname
.c
,
4287 request
->process_id
, request
->pid_name
);
4289 if (request
->u
.addrinfo
.q4
.QuestionContext
)
4291 mDNS_StopQuery(&mDNSStorage
, &request
->u
.addrinfo
.q4
);
4292 LogMcastQ(&mDNSStorage
, &request
->u
.addrinfo
.q4
, request
, q_stop
);
4293 request
->u
.addrinfo
.q4
.QuestionContext
= mDNSNULL
;
4295 if (request
->u
.addrinfo
.q4
.qnameOrig
)
4297 freeL("QueryTermination", request
->u
.addrinfo
.q4
.qnameOrig
);
4298 request
->u
.addrinfo
.q4
.qnameOrig
= mDNSNULL
;
4300 if (request
->u
.addrinfo
.q42
)
4302 if (request
->u
.addrinfo
.q42
->QuestionContext
)
4304 LogInfo("addrinfo_termination_callback: Stopping q42 %##s", request
->u
.addrinfo
.q42
->qname
.c
);
4305 mDNS_StopQuery(&mDNSStorage
, request
->u
.addrinfo
.q42
);
4306 LogMcastQ(&mDNSStorage
, request
->u
.addrinfo
.q42
, request
, q_stop
);
4308 if (request
->u
.addrinfo
.q42
->qnameOrig
)
4310 LogInfo("addrinfo_termination_callback: freeing q42 qnameOrig %##s", request
->u
.addrinfo
.q42
->qnameOrig
->c
);
4311 freeL("QueryTermination q42", request
->u
.addrinfo
.q42
->qnameOrig
);
4312 request
->u
.addrinfo
.q42
->qnameOrig
= mDNSNULL
;
4314 freeL("addrinfo Q42", request
->u
.addrinfo
.q42
);
4315 request
->u
.addrinfo
.q42
= mDNSNULL
;
4318 if (request
->u
.addrinfo
.q6
.QuestionContext
)
4320 mDNS_StopQuery(&mDNSStorage
, &request
->u
.addrinfo
.q6
);
4321 LogMcastQ(&mDNSStorage
, &request
->u
.addrinfo
.q6
, request
, q_stop
);
4322 request
->u
.addrinfo
.q6
.QuestionContext
= mDNSNULL
;
4324 if (request
->u
.addrinfo
.q6
.qnameOrig
)
4326 freeL("QueryTermination", request
->u
.addrinfo
.q6
.qnameOrig
);
4327 request
->u
.addrinfo
.q6
.qnameOrig
= mDNSNULL
;
4329 if (request
->u
.addrinfo
.q62
)
4331 if (request
->u
.addrinfo
.q62
->QuestionContext
)
4333 LogInfo("addrinfo_termination_callback: Stopping q62 %##s", request
->u
.addrinfo
.q62
->qname
.c
);
4334 mDNS_StopQuery(&mDNSStorage
, request
->u
.addrinfo
.q62
);
4335 LogMcastQ(&mDNSStorage
, request
->u
.addrinfo
.q62
, request
, q_stop
);
4337 if (request
->u
.addrinfo
.q62
->qnameOrig
)
4339 LogInfo("addrinfo_termination_callback: freeing q62 qnameOrig %##s", request
->u
.addrinfo
.q62
->qnameOrig
->c
);
4340 freeL("QueryTermination q62", request
->u
.addrinfo
.q62
->qnameOrig
);
4341 request
->u
.addrinfo
.q62
->qnameOrig
= mDNSNULL
;
4343 freeL("addrinfo Q62", request
->u
.addrinfo
.q62
);
4344 request
->u
.addrinfo
.q62
= mDNSNULL
;
4346 #if APPLE_OSX_mDNSResponder
4348 DNSQuestion
*v4q
, *v6q
;
4349 v4q
= v6q
= mDNSNULL
;
4350 if (request
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv4
)
4352 // If we are not delivering answers, we may be timing out prematurely.
4353 // Note down the current state so that we know to retry when we see a
4354 // valid response again.
4355 if (request
->u
.addrinfo
.q4
.TimeoutQuestion
&& !request
->u
.addrinfo
.v4ans
)
4357 mDNSPlatformUpdateDNSStatus(&mDNSStorage
, &request
->u
.addrinfo
.q4
);
4359 // If we have a v4 answer and if we timed out prematurely before, provide
4360 // a trigger to the upper layer so that it can retry questions if needed.
4361 if (request
->u
.addrinfo
.v4ans
)
4362 v4q
= &request
->u
.addrinfo
.q4
;
4364 if (request
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv6
)
4366 if (request
->u
.addrinfo
.q6
.TimeoutQuestion
&& !request
->u
.addrinfo
.v6ans
)
4368 mDNSPlatformUpdateDNSStatus(&mDNSStorage
, &request
->u
.addrinfo
.q6
);
4370 if (request
->u
.addrinfo
.v6ans
)
4371 v6q
= &request
->u
.addrinfo
.q6
;
4373 mDNSPlatformTriggerDNSRetry(&mDNSStorage
, v4q
, v6q
);
4375 #endif // APPLE_OSX_mDNSResponder
4378 mDNSlocal mStatus
handle_addrinfo_request(request_state
*request
)
4383 mDNSs32 serviceIndex
= -1; // default unscoped value for ServiceID is -1
4385 DNSServiceFlags flags
= get_flags(&request
->msgptr
, request
->msgend
);
4387 mDNSu32 interfaceIndex
= get_uint32(&request
->msgptr
, request
->msgend
);
4389 if (flags
& kDNSServiceFlagsServiceIndex
)
4391 // NOTE: kDNSServiceFlagsServiceIndex flag can only be set for DNSServiceGetAddrInfo()
4392 LogInfo("DNSServiceGetAddrInfo: kDNSServiceFlagsServiceIndex is SET by the client");
4393 // if kDNSServiceFlagsServiceIndex is SET,
4394 // interpret the interfaceID as the serviceId and set the interfaceID to 0.
4395 serviceIndex
= interfaceIndex
;
4399 mDNSPlatformMemZero(&request
->u
.addrinfo
, sizeof(request
->u
.addrinfo
));
4401 mDNSInterfaceID InterfaceID
= mDNSPlatformInterfaceIDfromInterfaceIndex(&mDNSStorage
, interfaceIndex
);
4403 // The request is scoped to a specific interface index, but the
4404 // interface is not currently in our list.
4405 if (interfaceIndex
&& !InterfaceID
)
4407 // If it's one of the specially defined inteface index values, just return an error.
4408 if (PreDefinedInterfaceIndex(interfaceIndex
))
4410 LogMsg("ERROR: handle_addrinfo_request: bad interfaceIndex %d", interfaceIndex
);
4411 return(mStatus_BadParamErr
);
4414 // Otherwise, use the specified interface index value and the registration will
4415 // be applied to that interface when it comes up.
4416 InterfaceID
= (mDNSInterfaceID
)(uintptr_t)interfaceIndex
;
4417 LogInfo("handle_addrinfo_request: query pending for interface index %d", interfaceIndex
);
4419 request
->u
.addrinfo
.interface_id
= InterfaceID
;
4420 request
->u
.addrinfo
.flags
= flags
;
4421 request
->u
.addrinfo
.protocol
= get_uint32(&request
->msgptr
, request
->msgend
);
4423 if (request
->u
.addrinfo
.protocol
> (kDNSServiceProtocol_IPv4
|kDNSServiceProtocol_IPv6
)) return(mStatus_BadParamErr
);
4425 if (get_string(&request
->msgptr
, request
->msgend
, hostname
, 256) < 0) return(mStatus_BadParamErr
);
4427 if (!request
->msgptr
) { LogMsg("%3d: DNSServiceGetAddrInfo(unreadable parameters)", request
->sd
); return(mStatus_BadParamErr
); }
4429 if (!MakeDomainNameFromDNSNameString(&d
, hostname
))
4430 { LogMsg("ERROR: handle_addrinfo_request: bad hostname: %s", hostname
); return(mStatus_BadParamErr
); }
4433 if (!AuthorizedDomain(request
, &d
, AutoBrowseDomains
)) return (mStatus_NoError
);
4436 if (!request
->u
.addrinfo
.protocol
)
4438 flags
|= kDNSServiceFlagsSuppressUnusable
;
4439 request
->u
.addrinfo
.protocol
= (kDNSServiceProtocol_IPv4
| kDNSServiceProtocol_IPv6
);
4442 request
->u
.addrinfo
.q4
.InterfaceID
= request
->u
.addrinfo
.q6
.InterfaceID
= request
->u
.addrinfo
.interface_id
;
4443 request
->u
.addrinfo
.q4
.ServiceID
= request
->u
.addrinfo
.q6
.ServiceID
= serviceIndex
;
4444 request
->u
.addrinfo
.q4
.flags
= request
->u
.addrinfo
.q6
.flags
= flags
;
4445 request
->u
.addrinfo
.q4
.Target
= request
->u
.addrinfo
.q6
.Target
= zeroAddr
;
4446 request
->u
.addrinfo
.q4
.qname
= request
->u
.addrinfo
.q6
.qname
= d
;
4447 request
->u
.addrinfo
.q4
.qclass
= request
->u
.addrinfo
.q6
.qclass
= kDNSServiceClass_IN
;
4448 request
->u
.addrinfo
.q4
.LongLived
= request
->u
.addrinfo
.q6
.LongLived
= (flags
& kDNSServiceFlagsLongLivedQuery
) != 0;
4449 request
->u
.addrinfo
.q4
.ExpectUnique
= request
->u
.addrinfo
.q6
.ExpectUnique
= mDNSfalse
;
4450 request
->u
.addrinfo
.q4
.ForceMCast
= request
->u
.addrinfo
.q6
.ForceMCast
= (flags
& kDNSServiceFlagsForceMulticast
) != 0;
4451 request
->u
.addrinfo
.q4
.ReturnIntermed
= request
->u
.addrinfo
.q6
.ReturnIntermed
= (flags
& kDNSServiceFlagsReturnIntermediates
) != 0;
4452 request
->u
.addrinfo
.q4
.SuppressUnusable
= request
->u
.addrinfo
.q6
.SuppressUnusable
= (flags
& kDNSServiceFlagsSuppressUnusable
) != 0;
4453 request
->u
.addrinfo
.q4
.TimeoutQuestion
= request
->u
.addrinfo
.q6
.TimeoutQuestion
= (flags
& kDNSServiceFlagsTimeout
) != 0;
4454 request
->u
.addrinfo
.q4
.WakeOnResolve
= request
->u
.addrinfo
.q6
.WakeOnResolve
= 0;
4455 request
->u
.addrinfo
.q4
.UseBackgroundTrafficClass
= request
->u
.addrinfo
.q6
.UseBackgroundTrafficClass
= (flags
& kDNSServiceFlagsBackgroundTrafficClass
) != 0;
4456 request
->u
.addrinfo
.q4
.DenyOnCellInterface
= request
->u
.addrinfo
.q6
.DenyOnCellInterface
= (flags
& kDNSServiceFlagsDenyCellular
) != 0;
4457 request
->u
.addrinfo
.q4
.DenyOnExpInterface
= request
->u
.addrinfo
.q6
.DenyOnExpInterface
= (flags
& kDNSServiceFlagsDenyExpensive
) != 0;
4458 if ((flags
& kDNSServiceFlagsValidate
) != 0)
4459 request
->u
.addrinfo
.q4
.ValidationRequired
= request
->u
.addrinfo
.q6
.ValidationRequired
= DNSSEC_VALIDATION_SECURE
;
4460 else if ((flags
& kDNSServiceFlagsValidateOptional
) != 0)
4461 request
->u
.addrinfo
.q4
.ValidationRequired
= request
->u
.addrinfo
.q6
.ValidationRequired
= DNSSEC_VALIDATION_SECURE_OPTIONAL
;
4462 request
->u
.addrinfo
.q4
.ValidatingResponse
= request
->u
.addrinfo
.q6
.ValidatingResponse
= 0;
4463 request
->u
.addrinfo
.q4
.ProxyQuestion
= request
->u
.addrinfo
.q6
.ProxyQuestion
= 0;
4464 request
->u
.addrinfo
.q4
.qnameOrig
= request
->u
.addrinfo
.q6
.qnameOrig
= mDNSNULL
;
4465 request
->u
.addrinfo
.q4
.AnonInfo
= request
->u
.addrinfo
.q6
.AnonInfo
= mDNSNULL
;
4467 SetQuestionPolicy(&request
->u
.addrinfo
.q4
, request
);
4468 SetQuestionPolicy(&request
->u
.addrinfo
.q6
, request
);
4470 request
->u
.addrinfo
.q4
.DNSSECAuthInfo
= request
->u
.addrinfo
.q6
.DNSSECAuthInfo
= mDNSNULL
;
4471 request
->u
.addrinfo
.q4
.DAIFreeCallback
= request
->u
.addrinfo
.q6
.DAIFreeCallback
= mDNSNULL
;
4473 //Turn off dnssec validation for local domains
4474 if (IsLocalDomain(&d
))
4475 request
->u
.addrinfo
.q4
.ValidationRequired
= request
->u
.addrinfo
.q6
.ValidationRequired
= 0;
4477 if (request
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv6
)
4479 request
->u
.addrinfo
.q6
.qtype
= kDNSServiceType_AAAA
;
4480 request
->u
.addrinfo
.q6
.SearchListIndex
= 0;
4481 // For DNSSEC questions, append search domains only if kDNSServiceFlagsValidateOptional is set
4482 if ((!(request
->u
.addrinfo
.q6
.ValidationRequired
== DNSSEC_VALIDATION_SECURE
)) && (!(request
->u
.addrinfo
.q6
.ValidationRequired
== DNSSEC_VALIDATION_INSECURE
))
4483 && hostname
[strlen(hostname
) - 1] != '.' && (AlwaysAppendSearchDomains
|| CountLabels(&d
) == 1))
4485 request
->u
.addrinfo
.q6
.AppendSearchDomains
= 1;
4486 request
->u
.addrinfo
.q6
.AppendLocalSearchDomains
= 1;
4490 request
->u
.addrinfo
.q6
.AppendSearchDomains
= 0;
4491 request
->u
.addrinfo
.q6
.AppendLocalSearchDomains
= 0;
4493 request
->u
.addrinfo
.q6
.RetryWithSearchDomains
= (ApplySearchDomainsFirst(&request
->u
.addrinfo
.q6
) ? 1 : 0);
4494 request
->u
.addrinfo
.q6
.QuestionCallback
= queryrecord_result_callback
;
4495 request
->u
.addrinfo
.q6
.QuestionContext
= request
;
4496 err
= mDNS_StartQuery(&mDNSStorage
, &request
->u
.addrinfo
.q6
);
4497 if (err
!= mStatus_NoError
)
4499 LogMsg("ERROR: mDNS_StartQuery: %d", (int)err
);
4500 request
->u
.addrinfo
.q6
.QuestionContext
= mDNSNULL
;
4502 #if APPLE_OSX_mDNSResponder
4503 err
= SendAdditionalQuery(&request
->u
.addrinfo
.q6
, request
, err
);
4504 #endif // APPLE_OSX_mDNSResponder
4507 request
->terminate
= addrinfo_termination_callback
;
4508 LogMcastQ(&mDNSStorage
, &request
->u
.addrinfo
.q6
, request
, q_start
);
4512 if (!err
&& (request
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv4
))
4514 request
->u
.addrinfo
.q4
.qtype
= kDNSServiceType_A
;
4515 request
->u
.addrinfo
.q4
.SearchListIndex
= 0;
4517 // We append search domains only for queries that are a single label. If overriden using cmd line arg
4518 // "AlwaysAppendSearchDomains", then we do it for any query which is not fully qualified.
4519 // For DNSSEC questions, append search domains only if kDNSServiceFlagsValidateOptional is set.
4521 if ((!(request
->u
.addrinfo
.q4
.ValidationRequired
== DNSSEC_VALIDATION_SECURE
)) && (!(request
->u
.addrinfo
.q4
.ValidationRequired
== DNSSEC_VALIDATION_INSECURE
))
4522 && hostname
[strlen(hostname
) - 1] != '.' && (AlwaysAppendSearchDomains
|| CountLabels(&d
) == 1))
4524 request
->u
.addrinfo
.q4
.AppendSearchDomains
= 1;
4525 request
->u
.addrinfo
.q4
.AppendLocalSearchDomains
= 1;
4529 request
->u
.addrinfo
.q4
.AppendSearchDomains
= 0;
4530 request
->u
.addrinfo
.q4
.AppendLocalSearchDomains
= 0;
4532 request
->u
.addrinfo
.q4
.RetryWithSearchDomains
= (ApplySearchDomainsFirst(&request
->u
.addrinfo
.q4
) ? 1 : 0);
4533 request
->u
.addrinfo
.q4
.QuestionCallback
= queryrecord_result_callback
;
4534 request
->u
.addrinfo
.q4
.QuestionContext
= request
;
4535 err
= mDNS_StartQuery(&mDNSStorage
, &request
->u
.addrinfo
.q4
);
4536 if (err
!= mStatus_NoError
)
4538 LogMsg("ERROR: mDNS_StartQuery: %d", (int)err
);
4539 request
->u
.addrinfo
.q4
.QuestionContext
= mDNSNULL
;
4540 if (request
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv6
)
4542 // If we started a query for IPv6, we need to cancel it
4543 mDNS_StopQuery(&mDNSStorage
, &request
->u
.addrinfo
.q6
);
4544 request
->u
.addrinfo
.q6
.QuestionContext
= mDNSNULL
;
4547 #if APPLE_OSX_mDNSResponder
4548 err
= SendAdditionalQuery(&request
->u
.addrinfo
.q4
, request
, err
);
4549 #endif // APPLE_OSX_mDNSResponder
4552 request
->terminate
= addrinfo_termination_callback
;
4553 LogMcastQ(&mDNSStorage
, &request
->u
.addrinfo
.q4
, request
, q_start
);
4557 LogOperation("%3d: DNSServiceGetAddrInfo(%X, %d, %d, %##s) START PID[%d](%s)", request
->sd
, flags
, interfaceIndex
,
4558 request
->u
.addrinfo
.protocol
, d
.c
, request
->process_id
, request
->pid_name
);
4562 // ***************************************************************************
4563 #if COMPILER_LIKES_PRAGMA_MARK
4565 #pragma mark - Main Request Handler etc.
4568 mDNSlocal request_state
*NewRequest(void)
4570 request_state
**p
= &all_requests
;
4573 *p
= mallocL("request_state", sizeof(request_state
));
4575 FatalError("ERROR: malloc");
4576 mDNSPlatformMemZero(*p
, sizeof(request_state
));
4580 // read_msg may be called any time when the transfer state (req->ts) is t_morecoming.
4581 // if there is no data on the socket, the socket will be closed and t_terminated will be returned
4582 mDNSlocal
void read_msg(request_state
*req
)
4584 if (req
->ts
== t_terminated
|| req
->ts
== t_error
)
4585 { LogMsg("%3d: ERROR: read_msg called with transfer state terminated or error", req
->sd
); req
->ts
= t_error
; return; }
4587 if (req
->ts
== t_complete
) // this must be death or something is wrong
4589 char buf
[4]; // dummy for death notification
4590 int nread
= udsSupportReadFD(req
->sd
, buf
, 4, 0, req
->platform_data
);
4591 if (!nread
) { req
->ts
= t_terminated
; return; }
4592 if (nread
< 0) goto rerror
;
4593 LogMsg("%3d: ERROR: read data from a completed request", req
->sd
);
4598 if (req
->ts
!= t_morecoming
)
4599 { LogMsg("%3d: ERROR: read_msg called with invalid transfer state (%d)", req
->sd
, req
->ts
); req
->ts
= t_error
; return; }
4601 if (req
->hdr_bytes
< sizeof(ipc_msg_hdr
))
4603 mDNSu32 nleft
= sizeof(ipc_msg_hdr
) - req
->hdr_bytes
;
4604 int nread
= udsSupportReadFD(req
->sd
, (char *)&req
->hdr
+ req
->hdr_bytes
, nleft
, 0, req
->platform_data
);
4605 if (nread
== 0) { req
->ts
= t_terminated
; return; }
4606 if (nread
< 0) goto rerror
;
4607 req
->hdr_bytes
+= nread
;
4608 if (req
->hdr_bytes
> sizeof(ipc_msg_hdr
))
4609 { LogMsg("%3d: ERROR: read_msg - read too many header bytes", req
->sd
); req
->ts
= t_error
; return; }
4611 // only read data if header is complete
4612 if (req
->hdr_bytes
== sizeof(ipc_msg_hdr
))
4614 ConvertHeaderBytes(&req
->hdr
);
4615 if (req
->hdr
.version
!= VERSION
)
4616 { LogMsg("%3d: ERROR: client version 0x%08X daemon version 0x%08X", req
->sd
, req
->hdr
.version
, VERSION
); req
->ts
= t_error
; return; }
4618 // Largest conceivable single request is a DNSServiceRegisterRecord() or DNSServiceAddRecord()
4619 // with 64kB of rdata. Adding 1009 byte for a maximal domain name, plus a safety margin
4620 // for other overhead, this means any message above 70kB is definitely bogus.
4621 if (req
->hdr
.datalen
> 70000)
4622 { LogMsg("%3d: ERROR: read_msg: hdr.datalen %u (0x%X) > 70000", req
->sd
, req
->hdr
.datalen
, req
->hdr
.datalen
); req
->ts
= t_error
; return; }
4623 req
->msgbuf
= mallocL("request_state msgbuf", req
->hdr
.datalen
+ MSG_PAD_BYTES
);
4624 if (!req
->msgbuf
) { my_perror("ERROR: malloc"); req
->ts
= t_error
; return; }
4625 req
->msgptr
= req
->msgbuf
;
4626 req
->msgend
= req
->msgbuf
+ req
->hdr
.datalen
;
4627 mDNSPlatformMemZero(req
->msgbuf
, req
->hdr
.datalen
+ MSG_PAD_BYTES
);
4631 // If our header is complete, but we're still needing more body data, then try to read it now
4632 // Note: For cancel_request req->hdr.datalen == 0, but there's no error return socket for cancel_request
4633 // Any time we need to get the error return socket we know we'll have at least one data byte
4634 // (even if only the one-byte empty C string placeholder for the old ctrl_path parameter)
4635 if (req
->hdr_bytes
== sizeof(ipc_msg_hdr
) && req
->data_bytes
< req
->hdr
.datalen
)
4637 mDNSu32 nleft
= req
->hdr
.datalen
- req
->data_bytes
;
4639 #if !defined(_WIN32)
4640 struct iovec vec
= { req
->msgbuf
+ req
->data_bytes
, nleft
}; // Tell recvmsg where we want the bytes put
4642 struct cmsghdr
*cmsg
;
4643 char cbuf
[CMSG_SPACE(4 * sizeof(dnssd_sock_t
))];
4645 msg
.msg_namelen
= 0;
4648 msg
.msg_control
= cbuf
;
4649 msg
.msg_controllen
= sizeof(cbuf
);
4651 nread
= recvmsg(req
->sd
, &msg
, 0);
4653 nread
= udsSupportReadFD(req
->sd
, (char *)req
->msgbuf
+ req
->data_bytes
, nleft
, 0, req
->platform_data
);
4655 if (nread
== 0) { req
->ts
= t_terminated
; return; }
4656 if (nread
< 0) goto rerror
;
4657 req
->data_bytes
+= nread
;
4658 if (req
->data_bytes
> req
->hdr
.datalen
)
4659 { LogMsg("%3d: ERROR: read_msg - read too many data bytes", req
->sd
); req
->ts
= t_error
; return; }
4660 #if !defined(_WIN32)
4661 cmsg
= CMSG_FIRSTHDR(&msg
);
4662 #if DEBUG_64BIT_SCM_RIGHTS
4663 LogMsg("%3d: Expecting %d %d %d %d", req
->sd
, sizeof(cbuf
), sizeof(cbuf
), SOL_SOCKET
, SCM_RIGHTS
);
4664 LogMsg("%3d: Got %d %d %d %d", req
->sd
, msg
.msg_controllen
, cmsg
->cmsg_len
, cmsg
->cmsg_level
, cmsg
->cmsg_type
);
4665 #endif // DEBUG_64BIT_SCM_RIGHTS
4666 if (msg
.msg_controllen
!= 0 &&
4667 cmsg
->cmsg_level
== SOL_SOCKET
&&
4668 cmsg
->cmsg_type
== SCM_RIGHTS
)
4670 #if APPLE_OSX_mDNSResponder
4671 // Strictly speaking BPF_fd belongs solely in the platform support layer, but because
4672 // of privilege separation on Mac OS X we need to get BPF_fd from mDNSResponderHelper,
4673 // and it's convenient to repurpose the existing fd-passing code here for that task
4674 if (req
->hdr
.op
== send_bpf
)
4676 dnssd_sock_t x
= *(dnssd_sock_t
*)CMSG_DATA(cmsg
);
4677 LogOperation("%3d: Got len %d, BPF %d", req
->sd
, cmsg
->cmsg_len
, x
);
4678 mDNSPlatformReceiveBPF_fd(&mDNSStorage
, x
);
4681 #endif // APPLE_OSX_mDNSResponder
4682 req
->errsd
= *(dnssd_sock_t
*)CMSG_DATA(cmsg
);
4683 #if DEBUG_64BIT_SCM_RIGHTS
4684 LogMsg("%3d: read req->errsd %d", req
->sd
, req
->errsd
);
4685 #endif // DEBUG_64BIT_SCM_RIGHTS
4686 if (req
->data_bytes
< req
->hdr
.datalen
)
4688 LogMsg("%3d: Client(PID [%d](%s)) sent error socket %d via SCM_RIGHTS with req->data_bytes %d < req->hdr.datalen %d",
4689 req
->sd
, req
->process_id
, req
->pid_name
, req
->errsd
, req
->data_bytes
, req
->hdr
.datalen
);
4697 // If our header and data are both complete, see if we need to make our separate error return socket
4698 if (req
->hdr_bytes
== sizeof(ipc_msg_hdr
) && req
->data_bytes
== req
->hdr
.datalen
)
4700 if (req
->terminate
&& req
->hdr
.op
!= cancel_request
)
4702 dnssd_sockaddr_t cliaddr
;
4703 #if defined(USE_TCP_LOOPBACK)
4706 port
.b
[0] = req
->msgptr
[0];
4707 port
.b
[1] = req
->msgptr
[1];
4709 cliaddr
.sin_family
= AF_INET
;
4710 cliaddr
.sin_port
= port
.NotAnInteger
;
4711 cliaddr
.sin_addr
.s_addr
= inet_addr(MDNS_TCP_SERVERADDR
);
4713 char ctrl_path
[MAX_CTLPATH
];
4714 get_string(&req
->msgptr
, req
->msgend
, ctrl_path
, MAX_CTLPATH
); // path is first element in message buffer
4715 mDNSPlatformMemZero(&cliaddr
, sizeof(cliaddr
));
4716 cliaddr
.sun_family
= AF_LOCAL
;
4717 mDNSPlatformStrCopy(cliaddr
.sun_path
, ctrl_path
);
4718 // If the error return path UDS name is empty string, that tells us
4719 // that this is a new version of the library that's going to pass us
4720 // the error return path socket via sendmsg/recvmsg
4721 if (ctrl_path
[0] == 0)
4723 if (req
->errsd
== req
->sd
)
4724 { LogMsg("%3d: read_msg: ERROR failed to get errsd via SCM_RIGHTS", req
->sd
); req
->ts
= t_error
; return; }
4729 req
->errsd
= socket(AF_DNSSD
, SOCK_STREAM
, 0);
4730 if (!dnssd_SocketValid(req
->errsd
))
4732 my_throttled_perror("ERROR: socket");
4737 if (connect(req
->errsd
, (struct sockaddr
*)&cliaddr
, sizeof(cliaddr
)) < 0)
4739 #if !defined(USE_TCP_LOOPBACK)
4741 LogMsg("%3d: read_msg: Couldn't connect to error return path socket “%s” errno %d (%s)",
4742 req
->sd
, cliaddr
.sun_path
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
4743 if (stat(cliaddr
.sun_path
, &sb
) < 0)
4744 LogMsg("%3d: read_msg: stat failed “%s” errno %d (%s)", req
->sd
, cliaddr
.sun_path
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
4746 LogMsg("%3d: read_msg: file “%s” mode %o (octal) uid %d gid %d", req
->sd
, cliaddr
.sun_path
, sb
.st_mode
, sb
.st_uid
, sb
.st_gid
);
4752 #if !defined(USE_TCP_LOOPBACK)
4755 LogOperation("%3d: Error socket %d created %08X %08X", req
->sd
, req
->errsd
, req
->hdr
.client_context
.u32
[1], req
->hdr
.client_context
.u32
[0]);
4757 if (ioctlsocket(req
->errsd
, FIONBIO
, &opt
) != 0)
4759 if (fcntl(req
->errsd
, F_SETFL
, fcntl(req
->errsd
, F_GETFL
, 0) | O_NONBLOCK
) != 0)
4762 LogMsg("%3d: ERROR: could not set control socket to non-blocking mode errno %d (%s)",
4763 req
->sd
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
4769 req
->ts
= t_complete
;
4775 if (dnssd_errno
== dnssd_EWOULDBLOCK
|| dnssd_errno
== dnssd_EINTR
) return;
4776 LogMsg("%3d: ERROR: read_msg errno %d (%s)", req
->sd
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
4780 #define RecordOrientedOp(X) \
4781 ((X) == reg_record_request || (X) == add_record_request || (X) == update_record_request || (X) == remove_record_request)
4783 // The lightweight operations are the ones that don't need a dedicated request_state structure allocated for them
4784 #define LightweightOp(X) (RecordOrientedOp(X) || (X) == cancel_request)
4786 mDNSlocal
void request_callback(int fd
, short filter
, void *info
)
4789 request_state
*req
= info
;
4790 mDNSs32 min_size
= sizeof(DNSServiceFlags
);
4792 (void)filter
; // Unused
4797 if (req
->ts
== t_morecoming
)
4799 if (req
->ts
== t_terminated
|| req
->ts
== t_error
)
4801 AbortUnlinkAndFree(req
);
4804 if (req
->ts
!= t_complete
)
4806 LogMsg("request_callback: req->ts %d != t_complete PID[%d][%s]", req
->ts
, req
->process_id
, req
->pid_name
);
4807 AbortUnlinkAndFree(req
);
4810 if (req
->hdr
.version
!= VERSION
)
4812 LogMsg("request_callback: ERROR: client IPC version %d incompatible with daemon IPC version %d PID[%d][%s]",
4813 req
->hdr
.version
, VERSION
, req
->process_id
, req
->pid_name
);
4814 AbortUnlinkAndFree(req
);
4818 switch(req
->hdr
.op
) // Interface + other data
4820 case connection_request
: min_size
= 0; break;
4821 case connection_delegate_request
: min_size
= 4; /* pid */ break;
4822 case reg_service_request
: min_size
+= sizeof(mDNSu32
) + 4 /* name, type, domain, host */ + 4 /* port, textlen */; break;
4823 case add_record_request
: min_size
+= 4 /* type, rdlen */ + 4 /* ttl */; break;
4824 case update_record_request
: min_size
+= 2 /* rdlen */ + 4 /* ttl */; break;
4825 case remove_record_request
: break;
4826 case browse_request
: min_size
+= sizeof(mDNSu32
) + 2 /* type, domain */; break;
4827 case resolve_request
: min_size
+= sizeof(mDNSu32
) + 3 /* type, type, domain */; break;
4828 case query_request
: min_size
+= sizeof(mDNSu32
) + 1 /* name */ + 4 /* type, class*/; break;
4829 case enumeration_request
: min_size
+= sizeof(mDNSu32
); break;
4830 case reg_record_request
: min_size
+= sizeof(mDNSu32
) + 1 /* name */ + 6 /* type, class, rdlen */ + 4 /* ttl */; break;
4831 case reconfirm_record_request
: min_size
+= sizeof(mDNSu32
) + 1 /* name */ + 6 /* type, class, rdlen */; break;
4832 case setdomain_request
: min_size
+= 1 /* domain */; break;
4833 case getproperty_request
: min_size
= 2; break;
4834 case getpid_request
: min_size
= 2; break;
4835 case port_mapping_request
: min_size
+= sizeof(mDNSu32
) + 4 /* udp/tcp */ + 4 /* int/ext port */ + 4 /* ttl */; break;
4836 case addrinfo_request
: min_size
+= sizeof(mDNSu32
) + 4 /* v4/v6 */ + 1 /* hostname */; break;
4837 case send_bpf
: // Same as cancel_request below
4838 case cancel_request
: min_size
= 0; break;
4839 case release_request
: min_size
+= sizeof(mDNSu32
) + 3 /* type, type, domain */; break;
4840 default: LogMsg("request_callback: ERROR: validate_message - unsupported req type: %d PID[%d][%s]",
4841 req
->hdr
.op
, req
->process_id
, req
->pid_name
);
4842 min_size
= -1; break;
4845 if ((mDNSs32
)req
->data_bytes
< min_size
)
4847 LogMsg("request_callback: Invalid message %d bytes; min for %d is %d PID[%d][%s]",
4848 req
->data_bytes
, req
->hdr
.op
, min_size
, req
->process_id
, req
->pid_name
);
4849 AbortUnlinkAndFree(req
);
4852 if (LightweightOp(req
->hdr
.op
) && !req
->terminate
)
4854 LogMsg("request_callback: Reg/Add/Update/Remove %d require existing connection PID[%d][%s]",
4855 req
->hdr
.op
, req
->process_id
, req
->pid_name
);
4856 AbortUnlinkAndFree(req
);
4860 // check if client wants silent operation
4861 if (req
->hdr
.ipc_flags
& IPC_FLAGS_NOREPLY
) req
->no_reply
= 1;
4863 // If req->terminate is already set, this means this operation is sharing an existing connection
4864 if (req
->terminate
&& !LightweightOp(req
->hdr
.op
))
4866 request_state
*newreq
= NewRequest();
4867 newreq
->primary
= req
;
4868 newreq
->sd
= req
->sd
;
4869 newreq
->errsd
= req
->errsd
;
4870 newreq
->uid
= req
->uid
;
4871 newreq
->hdr
= req
->hdr
;
4872 newreq
->msgbuf
= req
->msgbuf
;
4873 newreq
->msgptr
= req
->msgptr
;
4874 newreq
->msgend
= req
->msgend
;
4875 // if the parent request is a delegate connection, copy the
4880 newreq
->validUUID
= mDNStrue
;
4881 for (i
= 0; i
< UUID_SIZE
; i
++)
4883 newreq
->uuid
[i
] = req
->uuid
[i
];
4888 if (req
->process_id
)
4890 newreq
->process_id
= req
->process_id
;
4894 set_peer_pid(newreq
);
4900 // If we're shutting down, don't allow new client requests
4901 // We do allow "cancel" and "getproperty" during shutdown
4902 if (mDNSStorage
.ShutdownTime
&& req
->hdr
.op
!= cancel_request
&& req
->hdr
.op
!= getproperty_request
)
4904 err
= mStatus_ServiceNotRunning
;
4910 // These are all operations that have their own first-class request_state object
4911 case connection_request
:
4912 LogOperation("%3d: DNSServiceCreateConnection START PID[%d](%s)",
4913 req
->sd
, req
->process_id
, req
->pid_name
);
4914 req
->terminate
= connection_termination
;
4916 case connection_delegate_request
:
4917 LogOperation("%3d: DNSServiceCreateDelegateConnection START PID[%d](%s)",
4918 req
->sd
, req
->process_id
, req
->pid_name
);
4919 req
->terminate
= connection_termination
;
4920 handle_connection_delegate_request(req
);
4922 case resolve_request
: err
= handle_resolve_request (req
); break;
4923 case query_request
: err
= handle_queryrecord_request (req
); break;
4924 case browse_request
: err
= handle_browse_request (req
); break;
4925 case reg_service_request
: err
= handle_regservice_request (req
); break;
4926 case enumeration_request
: err
= handle_enum_request (req
); break;
4927 case reconfirm_record_request
: err
= handle_reconfirm_request (req
); break;
4928 case setdomain_request
: err
= handle_setdomain_request (req
); break;
4929 case getproperty_request
: handle_getproperty_request (req
); break;
4930 case getpid_request
: handle_getpid_request (req
); break;
4931 case port_mapping_request
: err
= handle_port_mapping_request(req
); break;
4932 case addrinfo_request
: err
= handle_addrinfo_request (req
); break;
4933 case send_bpf
: /* Do nothing for send_bpf */ break;
4935 // These are all operations that work with an existing request_state object
4936 case reg_record_request
: err
= handle_regrecord_request (req
); break;
4937 case add_record_request
: err
= handle_add_request (req
); break;
4938 case update_record_request
: err
= handle_update_request (req
); break;
4939 case remove_record_request
: err
= handle_removerecord_request(req
); break;
4940 case cancel_request
: handle_cancel_request (req
); break;
4941 case release_request
: err
= handle_release_request (req
); break;
4942 default: LogMsg("request_callback: %3d:ERROR: Unsupported UDS req:%d PID[%d][%s]",
4943 req
->sd
, req
->hdr
.op
, req
->process_id
, req
->pid_name
); break;
4946 // req->msgbuf may be NULL, e.g. for connection_request or remove_record_request
4947 if (req
->msgbuf
) freeL("request_state msgbuf", req
->msgbuf
);
4949 // There's no return data for a cancel request (DNSServiceRefDeallocate returns no result)
4950 // For a DNSServiceGetProperty call, the handler already generated the response, so no need to do it again here
4951 if (req
->hdr
.op
!= cancel_request
&& req
->hdr
.op
!= getproperty_request
&& req
->hdr
.op
!= send_bpf
&& req
->hdr
.op
!= getpid_request
)
4953 const mStatus err_netorder
= dnssd_htonl(err
);
4954 send_all(req
->errsd
, (const char *)&err_netorder
, sizeof(err_netorder
));
4955 if (req
->errsd
!= req
->sd
)
4957 LogOperation("%3d: Error socket %d closed %08X %08X (%d)",
4958 req
->sd
, req
->errsd
, req
->hdr
.client_context
.u32
[1], req
->hdr
.client_context
.u32
[0], err
);
4959 dnssd_close(req
->errsd
);
4960 req
->errsd
= req
->sd
;
4961 // Also need to reset the parent's errsd, if this is a subordinate operation
4962 if (req
->primary
) req
->primary
->errsd
= req
->primary
->sd
;
4966 // Reset ready to accept the next req on this pipe
4967 if (req
->primary
) req
= req
->primary
;
4968 req
->ts
= t_morecoming
;
4970 req
->data_bytes
= 0;
4971 req
->msgbuf
= mDNSNULL
;
4972 req
->msgptr
= mDNSNULL
;
4977 mDNSlocal
void connect_callback(int fd
, short filter
, void *info
)
4979 dnssd_sockaddr_t cliaddr
;
4980 dnssd_socklen_t len
= (dnssd_socklen_t
) sizeof(cliaddr
);
4981 dnssd_sock_t sd
= accept(fd
, (struct sockaddr
*) &cliaddr
, &len
);
4982 #if defined(SO_NOSIGPIPE) || defined(_WIN32)
4983 unsigned long optval
= 1;
4986 (void)filter
; // Unused
4987 (void)info
; // Unused
4989 if (!dnssd_SocketValid(sd
))
4991 if (dnssd_errno
!= dnssd_EWOULDBLOCK
)
4992 my_throttled_perror("ERROR: accept");
4997 // Some environments (e.g. OS X) support turning off SIGPIPE for a socket
4998 if (setsockopt(sd
, SOL_SOCKET
, SO_NOSIGPIPE
, &optval
, sizeof(optval
)) < 0)
4999 LogMsg("%3d: WARNING: setsockopt - SO_NOSIGPIPE %d (%s)", sd
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
5003 if (ioctlsocket(sd
, FIONBIO
, &optval
) != 0)
5005 if (fcntl(sd
, F_SETFL
, fcntl(sd
, F_GETFL
, 0) | O_NONBLOCK
) != 0)
5008 my_perror("ERROR: fcntl(sd, F_SETFL, O_NONBLOCK) - aborting client");
5014 request_state
*request
= NewRequest();
5015 request
->ts
= t_morecoming
;
5017 request
->errsd
= sd
;
5018 set_peer_pid(request
);
5019 #if APPLE_OSX_mDNSResponder
5021 socklen_t xucredlen
= sizeof(x
);
5022 if (getsockopt(sd
, 0, LOCAL_PEERCRED
, &x
, &xucredlen
) >= 0 && x
.cr_version
== XUCRED_VERSION
) request
->uid
= x
.cr_uid
;
5023 else my_perror("ERROR: getsockopt, LOCAL_PEERCRED");
5024 debugf("LOCAL_PEERCRED %d %u %u %d", xucredlen
, x
.cr_version
, x
.cr_uid
, x
.cr_ngroups
);
5025 #endif // APPLE_OSX_mDNSResponder
5026 LogOperation("%3d: Adding FD for uid %u", request
->sd
, request
->uid
);
5027 udsSupportAddFDToEventLoop(sd
, request_callback
, request
, &request
->platform_data
);
5031 mDNSlocal mDNSBool
uds_socket_setup(dnssd_sock_t skt
)
5033 #if defined(SO_NP_EXTENSIONS)
5034 struct so_np_extensions sonpx
;
5035 socklen_t optlen
= sizeof(struct so_np_extensions
);
5036 sonpx
.npx_flags
= SONPX_SETOPTSHUT
;
5037 sonpx
.npx_mask
= SONPX_SETOPTSHUT
;
5038 if (setsockopt(skt
, SOL_SOCKET
, SO_NP_EXTENSIONS
, &sonpx
, optlen
) < 0)
5039 my_perror("WARNING: could not set sockopt - SO_NP_EXTENSIONS");
5042 // SEH: do we even need to do this on windows?
5043 // This socket will be given to WSAEventSelect which will automatically set it to non-blocking
5045 if (ioctlsocket(skt
, FIONBIO
, &opt
) != 0)
5047 if (fcntl(skt
, F_SETFL
, fcntl(skt
, F_GETFL
, 0) | O_NONBLOCK
) != 0)
5050 my_perror("ERROR: could not set listen socket to non-blocking mode");
5054 if (listen(skt
, LISTENQ
) != 0)
5056 my_perror("ERROR: could not listen on listen socket");
5060 if (mStatus_NoError
!= udsSupportAddFDToEventLoop(skt
, connect_callback
, (void *) NULL
, (void **) NULL
))
5062 my_perror("ERROR: could not add listen socket to event loop");
5067 LogMsg("%3d: Listening for incoming Unix Domain Socket client requests", skt
);
5068 mDNSStorage
.uds_listener_skt
= skt
;
5073 mDNSexport
int udsserver_init(dnssd_sock_t skts
[], mDNSu32 count
)
5075 dnssd_sockaddr_t laddr
;
5079 LogInfo("udsserver_init: %d %d", _DNS_SD_H
, mDNSStorage
.mDNS_plat
);
5081 // If a particular platform wants to opt out of having a PID file, define PID_FILE to be ""
5084 FILE *fp
= fopen(PID_FILE
, "w");
5087 fprintf(fp
, "%d\n", getpid());
5094 for (i
= 0; i
< count
; i
++)
5095 if (dnssd_SocketValid(skts
[i
]) && !uds_socket_setup(skts
[i
]))
5100 listenfd
= socket(AF_DNSSD
, SOCK_STREAM
, 0);
5101 if (!dnssd_SocketValid(listenfd
))
5103 my_perror("ERROR: socket(AF_DNSSD, SOCK_STREAM, 0); failed");
5107 mDNSPlatformMemZero(&laddr
, sizeof(laddr
));
5109 #if defined(USE_TCP_LOOPBACK)
5111 laddr
.sin_family
= AF_INET
;
5112 laddr
.sin_port
= htons(MDNS_TCP_SERVERPORT
);
5113 laddr
.sin_addr
.s_addr
= inet_addr(MDNS_TCP_SERVERADDR
);
5114 ret
= bind(listenfd
, (struct sockaddr
*) &laddr
, sizeof(laddr
));
5117 my_perror("ERROR: bind(listenfd, (struct sockaddr *) &laddr, sizeof(laddr)); failed");
5123 mode_t mask
= umask(0);
5124 unlink(MDNS_UDS_SERVERPATH
); // OK if this fails
5125 laddr
.sun_family
= AF_LOCAL
;
5126 #ifndef NOT_HAVE_SA_LEN
5127 // According to Stevens (section 3.2), there is no portable way to
5128 // determine whether sa_len is defined on a particular platform.
5129 laddr
.sun_len
= sizeof(struct sockaddr_un
);
5131 if (strlen(MDNS_UDS_SERVERPATH
) >= sizeof(laddr
.sun_path
))
5133 LogMsg("ERROR: MDNS_UDS_SERVERPATH must be < %d characters", (int)sizeof(laddr
.sun_path
));
5136 mDNSPlatformStrCopy(laddr
.sun_path
, MDNS_UDS_SERVERPATH
);
5137 ret
= bind(listenfd
, (struct sockaddr
*) &laddr
, sizeof(laddr
));
5141 my_perror("ERROR: bind(listenfd, (struct sockaddr *) &laddr, sizeof(laddr)); failed");
5147 if (!uds_socket_setup(listenfd
)) goto error
;
5150 #if !defined(PLATFORM_NO_RLIMIT)
5152 // Set maximum number of open file descriptors
5153 #define MIN_OPENFILES 10240
5154 struct rlimit maxfds
, newfds
;
5156 // Due to bugs in OS X (<rdar://problem/2941095>, <rdar://problem/3342704>, <rdar://problem/3839173>)
5157 // you have to get and set rlimits once before getrlimit will return sensible values
5158 if (getrlimit(RLIMIT_NOFILE
, &maxfds
) < 0) { my_perror("ERROR: Unable to get file descriptor limit"); return 0; }
5159 if (setrlimit(RLIMIT_NOFILE
, &maxfds
) < 0) my_perror("ERROR: Unable to set maximum file descriptor limit");
5161 if (getrlimit(RLIMIT_NOFILE
, &maxfds
) < 0) { my_perror("ERROR: Unable to get file descriptor limit"); return 0; }
5162 newfds
.rlim_max
= (maxfds
.rlim_max
> MIN_OPENFILES
) ? maxfds
.rlim_max
: MIN_OPENFILES
;
5163 newfds
.rlim_cur
= (maxfds
.rlim_cur
> MIN_OPENFILES
) ? maxfds
.rlim_cur
: MIN_OPENFILES
;
5164 if (newfds
.rlim_max
!= maxfds
.rlim_max
|| newfds
.rlim_cur
!= maxfds
.rlim_cur
)
5165 if (setrlimit(RLIMIT_NOFILE
, &newfds
) < 0) my_perror("ERROR: Unable to set maximum file descriptor limit");
5167 if (getrlimit(RLIMIT_NOFILE
, &maxfds
) < 0) { my_perror("ERROR: Unable to get file descriptor limit"); return 0; }
5168 debugf("maxfds.rlim_max %d", (long)maxfds
.rlim_max
);
5169 debugf("maxfds.rlim_cur %d", (long)maxfds
.rlim_cur
);
5173 // We start a "LocalOnly" query looking for Automatic Browse Domain records.
5174 // When Domain Enumeration in uDNS.c finds an "lb" record from the network, its "FoundDomain" routine
5175 // creates a "LocalOnly" record, which results in our AutomaticBrowseDomainChange callback being invoked
5176 mDNS_GetDomains(&mDNSStorage
, &mDNSStorage
.AutomaticBrowseDomainQ
, mDNS_DomainTypeBrowseAutomatic
,
5177 mDNSNULL
, mDNSInterface_LocalOnly
, AutomaticBrowseDomainChange
, mDNSNULL
);
5179 // Add "local" as recommended registration domain ("dns-sd -E"), recommended browsing domain ("dns-sd -F"), and automatic browsing domain
5180 RegisterLocalOnlyDomainEnumPTR(&mDNSStorage
, &localdomain
, mDNS_DomainTypeRegistration
);
5181 RegisterLocalOnlyDomainEnumPTR(&mDNSStorage
, &localdomain
, mDNS_DomainTypeBrowse
);
5182 AddAutoBrowseDomain(0, &localdomain
);
5184 udsserver_handle_configchange(&mDNSStorage
);
5189 my_perror("ERROR: udsserver_init");
5193 mDNSexport
int udsserver_exit(void)
5195 // Cancel all outstanding client requests
5196 while (all_requests
) AbortUnlinkAndFree(all_requests
);
5198 // Clean up any special mDNSInterface_LocalOnly records we created, both the entries for "local" we
5199 // created in udsserver_init, and others we created as a result of reading local configuration data
5200 while (LocalDomainEnumRecords
)
5202 ARListElem
*rem
= LocalDomainEnumRecords
;
5203 LocalDomainEnumRecords
= LocalDomainEnumRecords
->next
;
5204 mDNS_Deregister(&mDNSStorage
, &rem
->ar
);
5207 // If the launching environment created no listening socket,
5208 // that means we created it ourselves, so we should clean it up on exit
5209 if (dnssd_SocketValid(listenfd
))
5211 dnssd_close(listenfd
);
5212 #if !defined(USE_TCP_LOOPBACK)
5213 // Currently, we're unable to remove /var/run/mdnsd because we've changed to userid "nobody"
5214 // to give up unnecessary privilege, but we need to be root to remove this Unix Domain Socket.
5215 // It would be nice if we could find a solution to this problem
5216 if (unlink(MDNS_UDS_SERVERPATH
))
5217 debugf("Unable to remove %s", MDNS_UDS_SERVERPATH
);
5221 if (PID_FILE
[0]) unlink(PID_FILE
);
5226 mDNSlocal
void LogClientInfo(mDNS
*const m
, request_state
*req
)
5230 mDNS_snprintf(prefix
, sizeof(prefix
), " -> ");
5232 mDNS_snprintf(prefix
, sizeof(prefix
), "%3d:", req
->sd
);
5234 if (!req
->terminate
)
5235 LogMsgNoIdent("%s No operation yet on this socket", prefix
);
5236 else if (req
->terminate
== connection_termination
)
5238 int num_records
= 0, num_ops
= 0;
5239 const registered_record_entry
*p
;
5241 for (p
= req
->u
.reg_recs
; p
; p
=p
->next
) num_records
++;
5242 for (r
= req
->next
; r
; r
=r
->next
) if (r
->primary
== req
) num_ops
++;
5243 LogMsgNoIdent("%s DNSServiceCreateConnection: %d registered record%s, %d kDNSServiceFlagsShareConnection operation%s PID[%d](%s)",
5244 prefix
, num_records
, num_records
!= 1 ? "s" : "", num_ops
, num_ops
!= 1 ? "s" : "",
5245 req
->process_id
, req
->pid_name
);
5246 for (p
= req
->u
.reg_recs
; p
; p
=p
->next
)
5247 LogMsgNoIdent(" -> DNSServiceRegisterRecord %3d %s PID[%d](%s)", p
->key
, ARDisplayString(m
, p
->rr
),
5248 req
->process_id
, req
->pid_name
);
5249 for (r
= req
->next
; r
; r
=r
->next
) if (r
->primary
== req
) LogClientInfo(m
, r
);
5251 else if (req
->terminate
== regservice_termination_callback
)
5253 service_instance
*ptr
;
5255 for (ptr
= req
->u
.servicereg
.instances
; ptr
; ptr
= ptr
->next
)
5256 LogMsgNoIdent("%s DNSServiceRegister %##s%s %u/%u PID[%d](%s)",
5257 (ptr
== req
->u
.servicereg
.instances
) ? prefix
: " ", ptr
->srs
.RR_SRV
.resrec
.name
->c
,
5258 AnonDataToString(ptr
->srs
.AnonData
, 0, anonstr
, sizeof(anonstr
)), mDNSVal16(req
->u
.servicereg
.port
),
5259 SRS_PORT(&ptr
->srs
), req
->process_id
, req
->pid_name
);
5261 else if (req
->terminate
== browse_termination_callback
)
5265 for (blist
= req
->u
.browser
.browsers
; blist
; blist
= blist
->next
)
5266 LogMsgNoIdent("%s DNSServiceBrowse %##s%s PID[%d](%s)",
5267 (blist
== req
->u
.browser
.browsers
) ? prefix
: " ",blist
->q
.qname
.c
,
5268 AnonDataToString(req
->u
.browser
.AnonData
, 0, anonstr
, sizeof(anonstr
)), req
->process_id
, req
->pid_name
);
5270 else if (req
->terminate
== resolve_termination_callback
)
5271 LogMsgNoIdent("%s DNSServiceResolve %##s PID[%d](%s)",
5272 prefix
, req
->u
.resolve
.qsrv
.qname
.c
, req
->process_id
, req
->pid_name
);
5273 else if (req
->terminate
== queryrecord_termination_callback
)
5274 LogMsgNoIdent("%s DNSServiceQueryRecord %##s (%s) PID[%d](%s)",
5275 prefix
, req
->u
.queryrecord
.q
.qname
.c
, DNSTypeName(req
->u
.queryrecord
.q
.qtype
), req
->process_id
, req
->pid_name
);
5276 else if (req
->terminate
== enum_termination_callback
)
5277 LogMsgNoIdent("%s DNSServiceEnumerateDomains %##s PID[%d](%s)", prefix
, req
->u
.enumeration
.q_all
.qname
.c
,
5278 req
->process_id
, req
->pid_name
);
5279 else if (req
->terminate
== port_mapping_termination_callback
)
5280 LogMsgNoIdent("%s DNSServiceNATPortMapping %s%s Int %5d Req %5d Ext %.4a:%5d Req TTL %5d Granted TTL %5d PID[%d](%s)",
5282 req
->u
.pm
.NATinfo
.Protocol
& NATOp_MapTCP
? "TCP" : " ",
5283 req
->u
.pm
.NATinfo
.Protocol
& NATOp_MapUDP
? "UDP" : " ",
5284 mDNSVal16(req
->u
.pm
.NATinfo
.IntPort
),
5285 mDNSVal16(req
->u
.pm
.ReqExt
),
5286 &req
->u
.pm
.NATinfo
.ExternalAddress
,
5287 mDNSVal16(req
->u
.pm
.NATinfo
.ExternalPort
),
5288 req
->u
.pm
.NATinfo
.NATLease
,
5289 req
->u
.pm
.NATinfo
.Lifetime
,
5290 req
->process_id
, req
->pid_name
);
5291 else if (req
->terminate
== addrinfo_termination_callback
)
5292 LogMsgNoIdent("%s DNSServiceGetAddrInfo %s%s %##s PID[%d](%s)", prefix
,
5293 req
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv4
? "v4" : " ",
5294 req
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv6
? "v6" : " ",
5295 req
->u
.addrinfo
.q4
.qname
.c
, req
->process_id
, req
->pid_name
);
5297 LogMsgNoIdent("%s Unrecognized operation %p", prefix
, req
->terminate
);
5300 mDNSlocal
void GetMcastClients(request_state
*req
)
5302 if (req
->terminate
== connection_termination
)
5304 int num_records
= 0, num_ops
= 0;
5305 const registered_record_entry
*p
;
5307 for (p
= req
->u
.reg_recs
; p
; p
=p
->next
)
5309 for (r
= req
->next
; r
; r
=r
->next
)
5310 if (r
->primary
== req
)
5312 for (p
= req
->u
.reg_recs
; p
; p
=p
->next
)
5314 if (!AuthRecord_uDNS(p
->rr
))
5317 for (r
= req
->next
; r
; r
=r
->next
)
5318 if (r
->primary
== req
)
5321 else if (req
->terminate
== regservice_termination_callback
)
5323 service_instance
*ptr
;
5324 for (ptr
= req
->u
.servicereg
.instances
; ptr
; ptr
= ptr
->next
)
5326 if (!AuthRecord_uDNS(&ptr
->srs
.RR_SRV
))
5330 else if (req
->terminate
== browse_termination_callback
)
5333 for (blist
= req
->u
.browser
.browsers
; blist
; blist
= blist
->next
)
5335 if (mDNSOpaque16IsZero(blist
->q
.TargetQID
))
5339 else if (req
->terminate
== resolve_termination_callback
)
5341 if ((mDNSOpaque16IsZero(req
->u
.resolve
.qsrv
.TargetQID
)) && (req
->u
.resolve
.qsrv
.ThisQInterval
> 0))
5344 else if (req
->terminate
== queryrecord_termination_callback
)
5346 if ((mDNSOpaque16IsZero(req
->u
.queryrecord
.q
.TargetQID
)) && (req
->u
.queryrecord
.q
.ThisQInterval
> 0))
5349 else if (req
->terminate
== addrinfo_termination_callback
)
5351 if ((mDNSOpaque16IsZero(req
->u
.addrinfo
.q4
.TargetQID
)) && (req
->u
.addrinfo
.q4
.ThisQInterval
> 0))
5361 mDNSlocal
void LogMcastClientInfo(request_state
*req
)
5363 if (!req
->terminate
)
5364 LogMcastNoIdent("No operation yet on this socket");
5365 else if (req
->terminate
== connection_termination
)
5367 int num_records
= 0, num_ops
= 0;
5368 const registered_record_entry
*p
;
5370 for (p
= req
->u
.reg_recs
; p
; p
=p
->next
)
5372 for (r
= req
->next
; r
; r
=r
->next
)
5373 if (r
->primary
== req
)
5375 for (p
= req
->u
.reg_recs
; p
; p
=p
->next
)
5377 if (!AuthRecord_uDNS(p
->rr
))
5378 LogMcastNoIdent("R: -> DNSServiceRegisterRecord: %##s %s PID[%d](%s)", p
->rr
->resrec
.name
->c
,
5379 DNSTypeName(p
->rr
->resrec
.rrtype
), req
->process_id
, req
->pid_name
, i_mcount
++);
5381 for (r
= req
->next
; r
; r
=r
->next
)
5382 if (r
->primary
== req
)
5383 LogMcastClientInfo(r
);
5385 else if (req
->terminate
== regservice_termination_callback
)
5387 service_instance
*ptr
;
5388 for (ptr
= req
->u
.servicereg
.instances
; ptr
; ptr
= ptr
->next
)
5390 if (!AuthRecord_uDNS(&ptr
->srs
.RR_SRV
))
5391 LogMcastNoIdent("R: DNSServiceRegister: %##s %u/%u PID[%d](%s)", ptr
->srs
.RR_SRV
.resrec
.name
->c
, mDNSVal16(req
->u
.servicereg
.port
),
5392 SRS_PORT(&ptr
->srs
), req
->process_id
, req
->pid_name
, i_mcount
++);
5395 else if (req
->terminate
== browse_termination_callback
)
5398 for (blist
= req
->u
.browser
.browsers
; blist
; blist
= blist
->next
)
5400 if (mDNSOpaque16IsZero(blist
->q
.TargetQID
))
5401 LogMcastNoIdent("Q: DNSServiceBrowse %##s %s PID[%d](%s)", blist
->q
.qname
.c
, DNSTypeName(blist
->q
.qtype
),
5402 req
->process_id
, req
->pid_name
, i_mcount
++);
5405 else if (req
->terminate
== resolve_termination_callback
)
5407 if ((mDNSOpaque16IsZero(req
->u
.resolve
.qsrv
.TargetQID
)) && (req
->u
.resolve
.qsrv
.ThisQInterval
> 0))
5408 LogMcastNoIdent("Q: DNSServiceResolve %##s %s PID[%d](%s)", req
->u
.resolve
.qsrv
.qname
.c
, DNSTypeName(req
->u
.resolve
.qsrv
.qtype
),
5409 req
->process_id
, req
->pid_name
, i_mcount
++);
5411 else if (req
->terminate
== queryrecord_termination_callback
)
5413 if ((mDNSOpaque16IsZero(req
->u
.queryrecord
.q
.TargetQID
)) && (req
->u
.queryrecord
.q
.ThisQInterval
> 0))
5414 LogMcastNoIdent("Q: DNSServiceQueryRecord %##s %s PID[%d](%s)", req
->u
.queryrecord
.q
.qname
.c
, DNSTypeName(req
->u
.queryrecord
.q
.qtype
),
5415 req
->process_id
, req
->pid_name
, i_mcount
++);
5417 else if (req
->terminate
== addrinfo_termination_callback
)
5419 if ((mDNSOpaque16IsZero(req
->u
.addrinfo
.q4
.TargetQID
)) && (req
->u
.addrinfo
.q4
.ThisQInterval
> 0))
5420 LogMcastNoIdent("Q: DNSServiceGetAddrInfo %s%s %##s PID[%d](%s)",
5421 req
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv4
? "v4" : " ",
5422 req
->u
.addrinfo
.protocol
& kDNSServiceProtocol_IPv6
? "v6" : " ",
5423 req
->u
.addrinfo
.q4
.qname
.c
, req
->process_id
, req
->pid_name
, i_mcount
++);
5432 mDNSlocal
char *RecordTypeName(mDNSu8 rtype
)
5436 case kDNSRecordTypeUnregistered
: return ("Unregistered ");
5437 case kDNSRecordTypeDeregistering
: return ("Deregistering");
5438 case kDNSRecordTypeUnique
: return ("Unique ");
5439 case kDNSRecordTypeAdvisory
: return ("Advisory ");
5440 case kDNSRecordTypeShared
: return ("Shared ");
5441 case kDNSRecordTypeVerified
: return ("Verified ");
5442 case kDNSRecordTypeKnownUnique
: return ("KnownUnique ");
5443 default: return("Unknown");
5447 mDNSlocal
void LogEtcHosts(mDNS
*const m
)
5449 mDNSBool showheader
= mDNStrue
;
5450 const AuthRecord
*ar
;
5455 mDNSBool truncated
= 0;
5457 for (slot
= 0; slot
< AUTH_HASH_SLOTS
; slot
++)
5459 if (m
->rrauth
.rrauth_hash
[slot
]) authslot
++;
5460 for (ag
= m
->rrauth
.rrauth_hash
[slot
]; ag
; ag
= ag
->next
)
5461 for (ar
= ag
->members
; ar
; ar
= ar
->next
)
5463 if (ar
->RecordCallback
!= FreeEtcHosts
) continue;
5464 if (showheader
) { showheader
= mDNSfalse
; LogMsgNoIdent(" State Interface"); }
5466 // Print a maximum of 50 records
5467 if (count
++ >= 50) { truncated
= mDNStrue
; continue; }
5468 if (ar
->ARType
== AuthRecordLocalOnly
)
5470 if (ar
->resrec
.InterfaceID
== mDNSInterface_LocalOnly
)
5471 LogMsgNoIdent(" %s LO %s", RecordTypeName(ar
->resrec
.RecordType
), ARDisplayString(m
, ar
));
5474 mDNSu32 scopeid
= (mDNSu32
)(uintptr_t)ar
->resrec
.InterfaceID
;
5475 LogMsgNoIdent(" %s %u %s", RecordTypeName(ar
->resrec
.RecordType
), scopeid
, ARDisplayString(m
, ar
));
5481 if (showheader
) LogMsgNoIdent("<None>");
5482 else if (truncated
) LogMsgNoIdent("<Truncated: to 50 records, Total records %d, Total Auth Groups %d, Auth Slots %d>", count
, m
->rrauth
.rrauth_totalused
, authslot
);
5485 mDNSlocal
void LogLocalOnlyAuthRecords(mDNS
*const m
)
5487 mDNSBool showheader
= mDNStrue
;
5488 const AuthRecord
*ar
;
5492 for (slot
= 0; slot
< AUTH_HASH_SLOTS
; slot
++)
5494 for (ag
= m
->rrauth
.rrauth_hash
[slot
]; ag
; ag
= ag
->next
)
5495 for (ar
= ag
->members
; ar
; ar
= ar
->next
)
5497 if (ar
->RecordCallback
== FreeEtcHosts
) continue;
5498 if (showheader
) { showheader
= mDNSfalse
; LogMsgNoIdent(" State Interface"); }
5500 // Print a maximum of 400 records
5501 if (ar
->ARType
== AuthRecordLocalOnly
)
5502 LogMsgNoIdent(" %s LO %s", RecordTypeName(ar
->resrec
.RecordType
), ARDisplayString(m
, ar
));
5503 else if (ar
->ARType
== AuthRecordP2P
)
5504 LogMsgNoIdent(" %s PP %s", RecordTypeName(ar
->resrec
.RecordType
), ARDisplayString(m
, ar
));
5508 if (showheader
) LogMsgNoIdent("<None>");
5511 mDNSlocal
char *AnonInfoToString(AnonymousInfo
*ai
, char *anonstr
, int anstrlen
)
5514 if (ai
&& ai
->AnonData
)
5516 return (AnonDataToString(ai
->AnonData
, ai
->AnonDataLen
, anonstr
, anstrlen
));
5521 mDNSlocal
void LogOneAuthRecord(mDNS
*const m
, const AuthRecord
*ar
, mDNSs32 now
, const char *const ifname
)
5524 if (AuthRecord_uDNS(ar
))
5526 LogMsgNoIdent("%7d %7d %7d %7d %s",
5527 ar
->ThisAPInterval
/ mDNSPlatformOneSecond
,
5528 (ar
->LastAPTime
+ ar
->ThisAPInterval
- now
) / mDNSPlatformOneSecond
,
5529 ar
->expire
? (ar
->expire
- now
) / mDNSPlatformOneSecond
: 0,
5530 ar
->state
, ARDisplayString(m
, ar
));
5534 LogMsgNoIdent("%7d %7d %7d %7s %s%s",
5535 ar
->ThisAPInterval
/ mDNSPlatformOneSecond
,
5536 ar
->AnnounceCount
? (ar
->LastAPTime
+ ar
->ThisAPInterval
- now
) / mDNSPlatformOneSecond
: 0,
5537 ar
->TimeExpire
? (ar
->TimeExpire
- now
) / mDNSPlatformOneSecond
: 0,
5538 ifname
? ifname
: "ALL",
5539 ARDisplayString(m
, ar
), AnonInfoToString(ar
->resrec
.AnonInfo
, anstr
, sizeof(anstr
)));
5543 mDNSlocal
void LogAuthRecords(mDNS
*const m
, const mDNSs32 now
, AuthRecord
*ResourceRecords
, int *proxy
)
5545 mDNSBool showheader
= mDNStrue
;
5546 const AuthRecord
*ar
;
5547 OwnerOptData owner
= zeroOwner
;
5548 for (ar
= ResourceRecords
; ar
; ar
=ar
->next
)
5550 const char *const ifname
= InterfaceNameForID(m
, ar
->resrec
.InterfaceID
);
5551 if ((ar
->WakeUp
.HMAC
.l
[0] != 0) == (proxy
!= mDNSNULL
))
5553 if (showheader
) { showheader
= mDNSfalse
; LogMsgNoIdent(" Int Next Expire State"); }
5554 if (proxy
) (*proxy
)++;
5555 if (!mDNSPlatformMemSame(&owner
, &ar
->WakeUp
, sizeof(owner
)))
5558 if (owner
.password
.l
[0])
5559 LogMsgNoIdent("Proxying for H-MAC %.6a I-MAC %.6a Password %.6a seq %d", &owner
.HMAC
, &owner
.IMAC
, &owner
.password
, owner
.seq
);
5560 else if (!mDNSSameEthAddress(&owner
.HMAC
, &owner
.IMAC
))
5561 LogMsgNoIdent("Proxying for H-MAC %.6a I-MAC %.6a seq %d", &owner
.HMAC
, &owner
.IMAC
, owner
.seq
);
5563 LogMsgNoIdent("Proxying for %.6a seq %d", &owner
.HMAC
, owner
.seq
);
5565 if (AuthRecord_uDNS(ar
))
5567 LogOneAuthRecord(m
, ar
, now
, ifname
);
5569 else if (ar
->ARType
== AuthRecordLocalOnly
)
5571 LogMsgNoIdent(" LO %s", ARDisplayString(m
, ar
));
5573 else if (ar
->ARType
== AuthRecordP2P
)
5575 LogMsgNoIdent(" PP %s", ARDisplayString(m
, ar
));
5579 LogOneAuthRecord(m
, ar
, now
, ifname
);
5580 if (ar
->resrec
.AnonInfo
)
5582 ResourceRecord
*nsec3
= ar
->resrec
.AnonInfo
->nsec3RR
;
5583 // We just print the values from the AuthRecord to keep it nicely aligned though
5584 // all we want here is the nsec3 information.
5585 LogMsgNoIdent("%7d %7d %7d %7s %s",
5586 ar
->ThisAPInterval
/ mDNSPlatformOneSecond
,
5587 ar
->AnnounceCount
? (ar
->LastAPTime
+ ar
->ThisAPInterval
- now
) / mDNSPlatformOneSecond
: 0,
5588 ar
->TimeExpire
? (ar
->TimeExpire
- now
) / mDNSPlatformOneSecond
: 0,
5589 ifname
? ifname
: "ALL",
5590 RRDisplayString(m
, nsec3
));
5595 if (showheader
) LogMsgNoIdent("<None>");
5598 mDNSlocal
void PrintOneCacheRecord(mDNS
*const m
, const CacheRecord
*cr
, mDNSu32 slot
, const mDNSu32 remain
, const char *ifname
, mDNSu32
*CacheUsed
)
5600 LogMsgNoIdent("%3d %s%8d %-7s%s %-6s%s",
5602 cr
->CRActiveQuestion
? "*" : " ",
5604 ifname
? ifname
: "-U-",
5605 (cr
->resrec
.RecordType
== kDNSRecordTypePacketNegative
) ? "-" :
5606 (cr
->resrec
.RecordType
& kDNSRecordTypePacketUniqueMask
) ? " " : "+",
5607 DNSTypeName(cr
->resrec
.rrtype
),
5608 CRDisplayString(m
, cr
));
5612 mDNSlocal
void PrintCachedRecords(mDNS
*const m
, const CacheRecord
*cr
, mDNSu32 slot
, const mDNSu32 remain
, const char *ifname
, mDNSu32
*CacheUsed
)
5618 // The records that are cached under the main cache record like nsec, soa don't have
5619 // their own lifetime. If the main cache record expires, they also expire.
5622 PrintOneCacheRecord(m
, nsec
, slot
, remain
, ifname
, CacheUsed
);
5628 PrintOneCacheRecord(m
, soa
, slot
, remain
, ifname
, CacheUsed
);
5630 if (cr
->resrec
.AnonInfo
)
5632 ResourceRecord
*nsec3
= cr
->resrec
.AnonInfo
->nsec3RR
;
5633 // Even though it is a resource record, we print the sameway
5634 // as a cache record so that it aligns properly.
5637 LogMsgNoIdent("%3d %s%8d %-7s%s %-6s%s",
5641 ifname
? ifname
: "-U-",
5642 (nsec3
->RecordType
== kDNSRecordTypePacketNegative
) ? "-" :
5643 (nsec3
->RecordType
& kDNSRecordTypePacketUniqueMask
) ? " " : "+",
5644 DNSTypeName(nsec3
->rrtype
),
5645 RRDisplayString(m
, nsec3
));
5650 mDNSlocal
char *AnonDataToString(const mDNSu8
*ad
, int adlen
, char *adstr
, int adstrlen
)
5658 // If the caller is lazy to compute the length, we do it for them.
5660 len
= strlen((const char *)ad
);
5664 // Print the anondata within brackets. Hence, we need space for two
5665 // brackets and a NULL byte.
5666 if (len
> (adstrlen
- 3))
5670 mDNSPlatformMemCopy(adstr
, ad
, len
);
5678 mDNSexport
void LogMDNSStatistics(mDNS
*const m
)
5680 LogMsgNoIdent("--- MDNS Statistics ---");
5682 LogMsgNoIdent("Name Conflicts %u", m
->mDNSStats
.NameConflicts
);
5683 LogMsgNoIdent("KnownUnique Name Conflicts %u", m
->mDNSStats
.KnownUniqueNameConflicts
);
5684 LogMsgNoIdent("Duplicate Query Suppressions %u", m
->mDNSStats
.DupQuerySuppressions
);
5685 LogMsgNoIdent("KA Suppressions %u", m
->mDNSStats
.KnownAnswerSuppressions
);
5686 LogMsgNoIdent("KA Multiple Packets %u", m
->mDNSStats
.KnownAnswerMultiplePkts
);
5687 LogMsgNoIdent("Poof Cache Deletions %u", m
->mDNSStats
.PoofCacheDeletions
);
5688 LogMsgNoIdent("--------------------------------");
5690 LogMsgNoIdent("Multicast packets Sent %u", m
->MulticastPacketsSent
);
5691 LogMsgNoIdent("Multicast packets Received %u", m
->MPktNum
);
5692 LogMsgNoIdent("Remote Subnet packets %u", m
->RemoteSubnet
);
5693 LogMsgNoIdent("QU questions received %u", m
->mDNSStats
.UnicastBitInQueries
);
5694 LogMsgNoIdent("Normal multicast questions %u", m
->mDNSStats
.NormalQueries
);
5695 LogMsgNoIdent("Answers for questions %u", m
->mDNSStats
.MatchingAnswersForQueries
);
5696 LogMsgNoIdent("Unicast responses %u", m
->mDNSStats
.UnicastResponses
);
5697 LogMsgNoIdent("Multicast responses %u", m
->mDNSStats
.MulticastResponses
);
5698 LogMsgNoIdent("Unicast response Demotions %u", m
->mDNSStats
.UnicastDemotedToMulticast
);
5699 LogMsgNoIdent("--------------------------------");
5701 LogMsgNoIdent("Sleeps %u", m
->mDNSStats
.Sleeps
);
5702 LogMsgNoIdent("Wakeups %u", m
->mDNSStats
.Wakes
);
5703 LogMsgNoIdent("Interface UP events %u", m
->mDNSStats
.InterfaceUp
);
5704 LogMsgNoIdent("Interface UP Flap events %u", m
->mDNSStats
.InterfaceUpFlap
);
5705 LogMsgNoIdent("Interface Down events %u", m
->mDNSStats
.InterfaceDown
);
5706 LogMsgNoIdent("Interface DownFlap events %u", m
->mDNSStats
.InterfaceDownFlap
);
5707 LogMsgNoIdent("Cache refresh queries %u", m
->mDNSStats
.CacheRefreshQueries
);
5708 LogMsgNoIdent("Cache refreshed %u", m
->mDNSStats
.CacheRefreshed
);
5709 LogMsgNoIdent("Wakeup on Resolves %u", m
->mDNSStats
.WakeOnResolves
);
5712 mDNSexport
void udsserver_info(mDNS
*const m
)
5714 const mDNSs32 now
= mDNS_TimeNow(m
);
5715 mDNSu32 CacheUsed
= 0, CacheActive
= 0, slot
;
5716 int ProxyA
= 0, ProxyD
= 0;
5717 const CacheGroup
*cg
;
5718 const CacheRecord
*cr
;
5719 const DNSQuestion
*q
;
5720 const DNameListElem
*d
;
5721 const SearchListElem
*s
;
5723 LogMsgNoIdent("Timenow 0x%08lX (%d)", (mDNSu32
)now
, now
);
5725 LogMsgNoIdent("------------ Cache -------------");
5726 LogMsgNoIdent("Slt Q TTL if U Type rdlen");
5727 for (slot
= 0; slot
< CACHE_HASH_SLOTS
; slot
++)
5729 for (cg
= m
->rrcache_hash
[slot
]; cg
; cg
=cg
->next
)
5731 CacheUsed
++; // Count one cache entity for the CacheGroup object
5732 for (cr
= cg
->members
; cr
; cr
=cr
->next
)
5734 const mDNSs32 remain
= cr
->resrec
.rroriginalttl
- (now
- cr
->TimeRcvd
) / mDNSPlatformOneSecond
;
5736 mDNSInterfaceID InterfaceID
= cr
->resrec
.InterfaceID
;
5737 if (!InterfaceID
&& cr
->resrec
.rDNSServer
&& cr
->resrec
.rDNSServer
->scoped
)
5738 InterfaceID
= cr
->resrec
.rDNSServer
->interface
;
5739 ifname
= InterfaceNameForID(m
, InterfaceID
);
5740 if (cr
->CRActiveQuestion
) CacheActive
++;
5741 PrintOneCacheRecord(m
, cr
, slot
, remain
, ifname
, &CacheUsed
);
5742 PrintCachedRecords(m
, cr
, slot
, remain
, ifname
, &CacheUsed
);
5747 if (m
->rrcache_totalused
!= CacheUsed
)
5748 LogMsgNoIdent("Cache use mismatch: rrcache_totalused is %lu, true count %lu", m
->rrcache_totalused
, CacheUsed
);
5749 if (m
->rrcache_active
!= CacheActive
)
5750 LogMsgNoIdent("Cache use mismatch: rrcache_active is %lu, true count %lu", m
->rrcache_active
, CacheActive
);
5751 LogMsgNoIdent("Cache currently contains %lu entities; %lu referenced by active questions", CacheUsed
, CacheActive
);
5753 LogMsgNoIdent("--------- Auth Records ---------");
5754 LogAuthRecords(m
, now
, m
->ResourceRecords
, mDNSNULL
);
5756 LogMsgNoIdent("--------- LocalOnly, P2P Auth Records ---------");
5757 LogLocalOnlyAuthRecords(m
);
5759 LogMsgNoIdent("--------- /etc/hosts ---------");
5762 LogMsgNoIdent("------ Duplicate Records -------");
5763 LogAuthRecords(m
, now
, m
->DuplicateRecords
, mDNSNULL
);
5765 LogMsgNoIdent("----- Auth Records Proxied -----");
5766 LogAuthRecords(m
, now
, m
->ResourceRecords
, &ProxyA
);
5768 LogMsgNoIdent("-- Duplicate Records Proxied ---");
5769 LogAuthRecords(m
, now
, m
->DuplicateRecords
, &ProxyD
);
5771 LogMsgNoIdent("---------- Questions -----------");
5772 if (!m
->Questions
) LogMsgNoIdent("<None>");
5778 LogMsgNoIdent(" Int Next if T NumAns VDNS Qptr DupOf SU SQ Type Name");
5779 for (q
= m
->Questions
; q
; q
=q
->next
)
5781 mDNSs32 i
= q
->ThisQInterval
/ mDNSPlatformOneSecond
;
5782 mDNSs32 n
= (NextQSendTime(q
) - now
) / mDNSPlatformOneSecond
;
5783 char *ifname
= InterfaceNameForID(m
, q
->InterfaceID
);
5785 if (q
->ThisQInterval
) CacheActive
++;
5786 LogMsgNoIdent("%6d%6d %-7s%s%s %5d 0x%x%x 0x%p 0x%p %1d %2d %-5s%##s%s%s",
5788 ifname
? ifname
: mDNSOpaque16IsZero(q
->TargetQID
) ? "" : "-U-",
5789 mDNSOpaque16IsZero(q
->TargetQID
) ? (q
->LongLived
? "l" : " ") : (q
->LongLived
? "L" : "O"),
5790 PrivateQuery(q
) ? "P" : q
->ValidationRequired
? "V" : q
->ValidatingResponse
? "R" : " ",
5791 q
->CurrentAnswers
, q
->validDNSServers
.l
[1], q
->validDNSServers
.l
[0], q
, q
->DuplicateOf
,
5792 q
->SuppressUnusable
, q
->SuppressQuery
, DNSTypeName(q
->qtype
), q
->qname
.c
,
5793 AnonInfoToString(q
->AnonInfo
, anonstr
, sizeof(anonstr
)),
5794 q
->DuplicateOf
? " (dup)" : "");
5796 LogMsgNoIdent("%lu question%s; %lu active", CacheUsed
, CacheUsed
> 1 ? "s" : "", CacheActive
);
5799 LogMsgNoIdent("----- Local-Only Questions -----");
5800 if (!m
->LocalOnlyQuestions
) LogMsgNoIdent("<None>");
5801 else for (q
= m
->LocalOnlyQuestions
; q
; q
=q
->next
)
5802 LogMsgNoIdent(" %5d %-6s%##s%s",
5803 q
->CurrentAnswers
, DNSTypeName(q
->qtype
), q
->qname
.c
, q
->DuplicateOf
? " (dup)" : "");
5805 LogMsgNoIdent("---- Active UDS Client Requests ----");
5806 if (!all_requests
) LogMsgNoIdent("<None>");
5809 request_state
*req
, *r
;
5810 for (req
= all_requests
; req
; req
=req
->next
)
5812 if (req
->primary
) // If this is a subbordinate operation, check that the parent is in the list
5814 for (r
= all_requests
; r
&& r
!= req
; r
=r
->next
) if (r
== req
->primary
) goto foundparent
;
5815 LogMsgNoIdent("%3d: Orhpan operation %p; parent %p not found in request list", req
->sd
);
5817 // For non-subbordinate operations, and subbordinate operations that have lost their parent, write out their info
5818 LogClientInfo(m
, req
);
5823 LogMsgNoIdent("-------- NAT Traversals --------");
5824 LogMsgNoIdent("ExtAddress %.4a Retry %d Interval %d",
5826 m
->retryGetAddr
? (m
->retryGetAddr
- now
) / mDNSPlatformOneSecond
: 0,
5827 m
->retryIntervalGetAddr
/ mDNSPlatformOneSecond
);
5828 if (m
->NATTraversals
)
5830 const NATTraversalInfo
*nat
;
5831 for (nat
= m
->NATTraversals
; nat
; nat
=nat
->next
)
5833 LogMsgNoIdent("%p %s Int %5d %s Err %d Retry %5d Interval %5d Expire %5d Req %.4a:%d Ext %.4a:%d",
5835 nat
->Protocol
? (nat
->Protocol
== NATOp_MapTCP
? "TCP" : "UDP") : "ADD",
5836 mDNSVal16(nat
->IntPort
),
5837 (nat
->lastSuccessfulProtocol
== NATTProtocolNone
? "None " :
5838 nat
->lastSuccessfulProtocol
== NATTProtocolNATPMP
? "NAT-PMP " :
5839 nat
->lastSuccessfulProtocol
== NATTProtocolUPNPIGD
? "UPnP/IGD" :
5840 nat
->lastSuccessfulProtocol
== NATTProtocolPCP
? "PCP " :
5841 /* else */ "Unknown " ),
5843 nat
->retryPortMap
? (nat
->retryPortMap
- now
) / mDNSPlatformOneSecond
: 0,
5844 nat
->retryInterval
/ mDNSPlatformOneSecond
,
5845 nat
->ExpiryTime
? (nat
->ExpiryTime
- now
) / mDNSPlatformOneSecond
: 0,
5846 &nat
->NewAddress
, mDNSVal16(nat
->RequestedPort
),
5847 &nat
->ExternalAddress
, mDNSVal16(nat
->ExternalPort
));
5851 LogMsgNoIdent("--------- AuthInfoList ---------");
5852 if (!m
->AuthInfoList
) LogMsgNoIdent("<None>");
5855 const DomainAuthInfo
*a
;
5856 for (a
= m
->AuthInfoList
; a
; a
= a
->next
)
5858 LogMsgNoIdent("%##s %##s %##s %d %d %.16a%s",
5859 a
->domain
.c
, a
->keyname
.c
,
5860 a
->hostname
.c
, (a
->port
.b
[0] << 8 | a
->port
.b
[1]),
5861 (a
->deltime
? (a
->deltime
- now
) : 0),
5862 &a
->AutoTunnelInnerAddress
, a
->AutoTunnel
? " AutoTunnel" : "");
5866 #if APPLE_OSX_mDNSResponder
5867 LogMsgNoIdent("--------- TunnelClients --------");
5868 if (!m
->TunnelClients
) LogMsgNoIdent("<None>");
5871 const ClientTunnel
*c
;
5872 for (c
= m
->TunnelClients
; c
; c
= c
->next
)
5873 LogMsgNoIdent("%##s local %.16a %.4a %.16a remote %.16a %.4a %5d %.16a interval %d",
5874 c
->dstname
.c
, &c
->loc_inner
, &c
->loc_outer
, &c
->loc_outer6
, &c
->rmt_inner
, &c
->rmt_outer
, mDNSVal16(c
->rmt_outer_port
), &c
->rmt_outer6
, c
->q
.ThisQInterval
);
5876 #endif // APPLE_OSX_mDNSResponder
5878 LogMsgNoIdent("---------- Misc State ----------");
5880 LogMsgNoIdent("PrimaryMAC: %.6a", &m
->PrimaryMAC
);
5882 LogMsgNoIdent("m->SleepState %d (%s) seq %d",
5884 m
->SleepState
== SleepState_Awake
? "Awake" :
5885 m
->SleepState
== SleepState_Transferring
? "Transferring" :
5886 m
->SleepState
== SleepState_Sleeping
? "Sleeping" : "?",
5889 if (!m
->SPSSocket
) LogMsgNoIdent("Not offering Sleep Proxy Service");
5890 #ifndef SPC_DISABLED
5891 else LogMsgNoIdent("Offering Sleep Proxy Service: %#s", m
->SPSRecords
.RR_SRV
.resrec
.name
->c
);
5893 if (m
->ProxyRecords
== ProxyA
+ ProxyD
) LogMsgNoIdent("ProxyRecords: %d + %d = %d", ProxyA
, ProxyD
, ProxyA
+ ProxyD
);
5894 else LogMsgNoIdent("ProxyRecords: MISMATCH %d + %d = %d ≠ %d", ProxyA
, ProxyD
, ProxyA
+ ProxyD
, m
->ProxyRecords
);
5896 LogMsgNoIdent("------ Auto Browse Domains -----");
5897 if (!AutoBrowseDomains
) LogMsgNoIdent("<None>");
5898 else for (d
=AutoBrowseDomains
; d
; d
=d
->next
) LogMsgNoIdent("%##s", d
->name
.c
);
5900 LogMsgNoIdent("--- Auto Registration Domains --");
5901 if (!AutoRegistrationDomains
) LogMsgNoIdent("<None>");
5902 else for (d
=AutoRegistrationDomains
; d
; d
=d
->next
) LogMsgNoIdent("%##s", d
->name
.c
);
5904 LogMsgNoIdent("--- Search Domains --");
5905 if (!SearchList
) LogMsgNoIdent("<None>");
5908 for (s
=SearchList
; s
; s
=s
->next
)
5910 char *ifname
= InterfaceNameForID(m
, s
->InterfaceID
);
5911 LogMsgNoIdent("%##s %s", s
->domain
.c
, ifname
? ifname
: "");
5914 LogInfo("--- Trust Anchors ---");
5915 if (!m
->TrustAnchors
)
5922 mDNSu8 fromTimeBuf
[64];
5923 mDNSu8 untilTimeBuf
[64];
5925 for (ta
=m
->TrustAnchors
; ta
; ta
=ta
->next
)
5927 mDNSPlatformFormatTime((unsigned long)ta
->validFrom
, fromTimeBuf
, sizeof(fromTimeBuf
));
5928 mDNSPlatformFormatTime((unsigned long)ta
->validUntil
, untilTimeBuf
, sizeof(untilTimeBuf
));
5929 LogInfo("%##s %d %d %d %d %s %s", ta
->zone
.c
, ta
->rds
.keyTag
,
5930 ta
->rds
.alg
, ta
->rds
.digestType
, ta
->digestLen
, fromTimeBuf
, untilTimeBuf
);
5934 LogInfo("--- DNSSEC Statistics ---");
5936 LogInfo("Next Stats Time %u", m
->NextStatLogTime
- mDNSPlatformUTC());
5937 LogMsgNoIdent("Unicast Cache size %u", m
->rrcache_totalused_unicast
);
5938 LogInfo("DNSSEC Cache size %u", m
->DNSSECStats
.TotalMemUsed
);
5939 if (m
->rrcache_totalused_unicast
)
5940 LogInfo("DNSSEC usage percentage %u", ((unsigned long)(m
->DNSSECStats
.TotalMemUsed
* 100))/m
->rrcache_totalused_unicast
);
5941 LogInfo("DNSSEC Extra Packets (0 to 2) %u", m
->DNSSECStats
.ExtraPackets0
);
5942 LogInfo("DNSSEC Extra Packets (3 to 6) %u", m
->DNSSECStats
.ExtraPackets3
);
5943 LogInfo("DNSSEC Extra Packets (7 to 9) %u", m
->DNSSECStats
.ExtraPackets7
);
5944 LogInfo("DNSSEC Extra Packets ( >= 10) %u", m
->DNSSECStats
.ExtraPackets10
);
5946 LogInfo("DNSSEC Latency (0 to 4ms) %u", m
->DNSSECStats
.Latency0
);
5947 LogInfo("DNSSEC Latency (4 to 9ms) %u", m
->DNSSECStats
.Latency5
);
5948 LogInfo("DNSSEC Latency (10 to 19ms) %u", m
->DNSSECStats
.Latency10
);
5949 LogInfo("DNSSEC Latency (20 to 49ms) %u", m
->DNSSECStats
.Latency20
);
5950 LogInfo("DNSSEC Latency (50 to 99ms) %u", m
->DNSSECStats
.Latency50
);
5951 LogInfo("DNSSEC Latency ( >=100ms) %u", m
->DNSSECStats
.Latency100
);
5953 LogInfo("DNSSEC Secure Status %u", m
->DNSSECStats
.SecureStatus
);
5954 LogInfo("DNSSEC Insecure Status %u", m
->DNSSECStats
.InsecureStatus
);
5955 LogInfo("DNSSEC Indeterminate Status %u", m
->DNSSECStats
.IndeterminateStatus
);
5956 LogInfo("DNSSEC Bogus Status %u", m
->DNSSECStats
.BogusStatus
);
5957 LogInfo("DNSSEC NoResponse Status %u", m
->DNSSECStats
.NoResponseStatus
);
5958 LogInfo("DNSSEC Probes sent %u", m
->DNSSECStats
.NumProbesSent
);
5959 LogInfo("DNSSEC Msg Size (<=1024) %u", m
->DNSSECStats
.MsgSize0
);
5960 LogInfo("DNSSEC Msg Size (<=2048) %u", m
->DNSSECStats
.MsgSize1
);
5961 LogInfo("DNSSEC Msg Size (> 2048) %u", m
->DNSSECStats
.MsgSize2
);
5963 LogMDNSStatistics(m
);
5965 LogMsgNoIdent("---- Task Scheduling Timers ----");
5967 if (!m
->NewQuestions
)
5968 LogMsgNoIdent("NewQuestion <NONE>");
5970 LogMsgNoIdent("NewQuestion DelayAnswering %d %d %##s (%s)",
5971 m
->NewQuestions
->DelayAnswering
, m
->NewQuestions
->DelayAnswering
-now
,
5972 m
->NewQuestions
->qname
.c
, DNSTypeName(m
->NewQuestions
->qtype
));
5974 if (!m
->NewLocalOnlyQuestions
)
5975 LogMsgNoIdent("NewLocalOnlyQuestions <NONE>");
5977 LogMsgNoIdent("NewLocalOnlyQuestions %##s (%s)",
5978 m
->NewLocalOnlyQuestions
->qname
.c
, DNSTypeName(m
->NewLocalOnlyQuestions
->qtype
));
5980 if (!m
->NewLocalRecords
)
5981 LogMsgNoIdent("NewLocalRecords <NONE>");
5983 LogMsgNoIdent("NewLocalRecords %02X %s", m
->NewLocalRecords
->resrec
.RecordType
, ARDisplayString(m
, m
->NewLocalRecords
));
5985 LogMsgNoIdent("SPSProxyListChanged%s", m
->SPSProxyListChanged
? "" : " <NONE>");
5986 LogMsgNoIdent("LocalRemoveEvents%s", m
->LocalRemoveEvents
? "" : " <NONE>");
5987 LogMsgNoIdent("m->AutoTunnelRelayAddr %.16a", &m
->AutoTunnelRelayAddr
);
5988 LogMsgNoIdent("m->WABBrowseQueriesCount %d", m
->WABBrowseQueriesCount
);
5989 LogMsgNoIdent("m->WABLBrowseQueriesCount %d", m
->WABLBrowseQueriesCount
);
5990 LogMsgNoIdent("m->WABRegQueriesCount %d", m
->WABRegQueriesCount
);
5991 LogMsgNoIdent("m->mDNSOppCaching %d", m
->mDNSOppCaching
);
5992 LogMsgNoIdent("m->AutoTargetServices %d", m
->AutoTargetServices
);
5994 #define LogTimer(MSG,T) LogMsgNoIdent( MSG " %08X %11d %08X %11d", (T), (T), (T)-now, (T)-now)
5996 LogMsgNoIdent(" ABS (hex) ABS (dec) REL (hex) REL (dec)");
5997 LogMsgNoIdent("m->timenow %08X %11d", now
, now
);
5998 LogMsgNoIdent("m->timenow_adjust %08X %11d", m
->timenow_adjust
, m
->timenow_adjust
);
5999 LogTimer("m->NextScheduledEvent ", m
->NextScheduledEvent
);
6001 #ifndef UNICAST_DISABLED
6002 LogTimer("m->NextuDNSEvent ", m
->NextuDNSEvent
);
6003 LogTimer("m->NextSRVUpdate ", m
->NextSRVUpdate
);
6004 LogTimer("m->NextScheduledNATOp ", m
->NextScheduledNATOp
);
6005 LogTimer("m->retryGetAddr ", m
->retryGetAddr
);
6008 LogTimer("m->NextCacheCheck ", m
->NextCacheCheck
);
6009 LogTimer("m->NextScheduledSPS ", m
->NextScheduledSPS
);
6010 LogTimer("m->NextScheduledKA ", m
->NextScheduledKA
);
6011 LogTimer("m->NextScheduledSPRetry ", m
->NextScheduledSPRetry
);
6012 LogTimer("m->DelaySleep ", m
->DelaySleep
);
6014 LogTimer("m->NextScheduledQuery ", m
->NextScheduledQuery
);
6015 LogTimer("m->NextScheduledProbe ", m
->NextScheduledProbe
);
6016 LogTimer("m->NextScheduledResponse", m
->NextScheduledResponse
);
6018 LogTimer("m->SuppressSending ", m
->SuppressSending
);
6019 LogTimer("m->SuppressProbes ", m
->SuppressProbes
);
6020 LogTimer("m->ProbeFailTime ", m
->ProbeFailTime
);
6021 LogTimer("m->DelaySleep ", m
->DelaySleep
);
6022 LogTimer("m->SleepLimit ", m
->SleepLimit
);
6023 LogTimer("m->NextScheduledStopTime ", m
->NextScheduledStopTime
);
6026 #if APPLE_OSX_mDNSResponder && MACOSX_MDNS_MALLOC_DEBUGGING
6027 mDNSexport
void uds_validatelists(void)
6029 const request_state
*req
, *p
;
6030 for (req
= all_requests
; req
; req
=req
->next
)
6032 if (req
->next
== (request_state
*)~0 || (req
->sd
< 0 && req
->sd
!= -2))
6033 LogMemCorruption("UDS request list: %p is garbage (%d)", req
, req
->sd
);
6035 if (req
->primary
== req
)
6036 LogMemCorruption("UDS request list: req->primary should not point to self %p/%d", req
, req
->sd
);
6038 if (req
->primary
&& req
->replies
)
6039 LogMemCorruption("UDS request list: Subordinate request %p/%d/%p should not have replies (%p)",
6040 req
, req
->sd
, req
->primary
&& req
->replies
);
6044 LogMemCorruption("UDS request list: req %p primary %p is misaligned (%d)", req
, p
, req
->sd
);
6045 else if (p
&& (p
->next
== (request_state
*)~0 || (p
->sd
< 0 && p
->sd
!= -2)))
6046 LogMemCorruption("UDS request list: req %p primary %p is garbage (%d)", req
, p
, p
->sd
);
6049 for (rep
= req
->replies
; rep
; rep
=rep
->next
)
6050 if (rep
->next
== (reply_state
*)~0)
6051 LogMemCorruption("UDS req->replies: %p is garbage", rep
);
6053 if (req
->terminate
== connection_termination
)
6055 registered_record_entry
*r
;
6056 for (r
= req
->u
.reg_recs
; r
; r
=r
->next
)
6057 if (r
->next
== (registered_record_entry
*)~0)
6058 LogMemCorruption("UDS req->u.reg_recs: %p is garbage", r
);
6060 else if (req
->terminate
== regservice_termination_callback
)
6062 service_instance
*s
;
6063 for (s
= req
->u
.servicereg
.instances
; s
; s
=s
->next
)
6064 if (s
->next
== (service_instance
*)~0)
6065 LogMemCorruption("UDS req->u.servicereg.instances: %p is garbage", s
);
6067 else if (req
->terminate
== browse_termination_callback
)
6070 for (b
= req
->u
.browser
.browsers
; b
; b
=b
->next
)
6071 if (b
->next
== (browser_t
*)~0)
6072 LogMemCorruption("UDS req->u.browser.browsers: %p is garbage", b
);
6077 for (d
= SCPrefBrowseDomains
; d
; d
=d
->next
)
6078 if (d
->next
== (DNameListElem
*)~0 || d
->name
.c
[0] > 63)
6079 LogMemCorruption("SCPrefBrowseDomains: %p is garbage (%d)", d
, d
->name
.c
[0]);
6082 for (b
= LocalDomainEnumRecords
; b
; b
=b
->next
)
6083 if (b
->next
== (ARListElem
*)~0 || b
->ar
.resrec
.name
->c
[0] > 63)
6084 LogMemCorruption("LocalDomainEnumRecords: %p is garbage (%d)", b
, b
->ar
.resrec
.name
->c
[0]);
6086 for (d
= AutoBrowseDomains
; d
; d
=d
->next
)
6087 if (d
->next
== (DNameListElem
*)~0 || d
->name
.c
[0] > 63)
6088 LogMemCorruption("AutoBrowseDomains: %p is garbage (%d)", d
, d
->name
.c
[0]);
6090 for (d
= AutoRegistrationDomains
; d
; d
=d
->next
)
6091 if (d
->next
== (DNameListElem
*)~0 || d
->name
.c
[0] > 63)
6092 LogMemCorruption("AutoRegistrationDomains: %p is garbage (%d)", d
, d
->name
.c
[0]);
6094 #endif // APPLE_OSX_mDNSResponder && MACOSX_MDNS_MALLOC_DEBUGGING
6096 mDNSlocal
int send_msg(request_state
*const req
)
6098 reply_state
*const rep
= req
->replies
; // Send the first waiting reply
6100 if (req
->no_reply
) return(t_complete
);
6102 ConvertHeaderBytes(rep
->mhdr
);
6103 nwriten
= send(req
->sd
, (char *)&rep
->mhdr
+ rep
->nwriten
, rep
->totallen
- rep
->nwriten
, 0);
6104 ConvertHeaderBytes(rep
->mhdr
);
6108 if (dnssd_errno
== dnssd_EINTR
|| dnssd_errno
== dnssd_EWOULDBLOCK
) nwriten
= 0;
6111 #if !defined(PLATFORM_NO_EPIPE)
6112 if (dnssd_errno
== EPIPE
)
6113 return(req
->ts
= t_terminated
);
6117 LogMsg("send_msg ERROR: failed to write %d of %d bytes to fd %d errno %d (%s)",
6118 rep
->totallen
- rep
->nwriten
, rep
->totallen
, req
->sd
, dnssd_errno
, dnssd_strerror(dnssd_errno
));
6123 rep
->nwriten
+= nwriten
;
6124 return (rep
->nwriten
== rep
->totallen
) ? t_complete
: t_morecoming
;
6127 mDNSexport mDNSs32
udsserver_idle(mDNSs32 nextevent
)
6129 mDNSs32 now
= mDNS_TimeNow(&mDNSStorage
);
6130 request_state
**req
= &all_requests
;
6134 request_state
*const r
= *req
;
6136 if (r
->terminate
== resolve_termination_callback
)
6137 if (r
->u
.resolve
.ReportTime
&& now
- r
->u
.resolve
.ReportTime
>= 0)
6139 r
->u
.resolve
.ReportTime
= 0;
6140 LogMsgNoIdent("Client application bug PID[%d](%s) : DNSServiceResolve(%##s) active for over two minutes. "
6141 "This places considerable burden on the network.", r
->process_id
, r
->pid_name
, r
->u
.resolve
.qsrv
.qname
.c
);
6144 // Note: Only primary req's have reply lists, not subordinate req's.
6145 while (r
->replies
) // Send queued replies
6147 transfer_state result
;
6148 if (r
->replies
->next
)
6149 r
->replies
->rhdr
->flags
|= dnssd_htonl(kDNSServiceFlagsMoreComing
);
6150 result
= send_msg(r
); // Returns t_morecoming if buffer full because client is not reading
6151 if (result
== t_complete
)
6153 reply_state
*fptr
= r
->replies
;
6154 r
->replies
= r
->replies
->next
;
6155 freeL("reply_state/udsserver_idle", fptr
);
6156 r
->time_blocked
= 0; // reset failure counter after successful send
6157 r
->unresponsiveness_reports
= 0;
6160 else if (result
== t_terminated
|| result
== t_error
)
6162 LogMsg("%3d: Could not write data to clientPID[%d](%s) because of error - aborting connection", r
->sd
, r
->process_id
, r
->pid_name
);
6163 LogClientInfo(&mDNSStorage
, r
);
6169 if (r
->replies
) // If we failed to send everything, check our time_blocked timer
6171 if (nextevent
- now
> mDNSPlatformOneSecond
)
6172 nextevent
= now
+ mDNSPlatformOneSecond
;
6174 if (mDNSStorage
.SleepState
!= SleepState_Awake
)
6175 r
->time_blocked
= 0;
6176 else if (!r
->time_blocked
)
6177 r
->time_blocked
= NonZeroTime(now
);
6178 else if (now
- r
->time_blocked
>= 10 * mDNSPlatformOneSecond
* (r
->unresponsiveness_reports
+1))
6181 struct reply_state
*x
= r
->replies
;
6187 LogMsg("%3d: Could not write data to client PID[%d](%s) after %ld seconds, %d repl%s waiting",
6188 r
->sd
, r
->process_id
, r
->pid_name
, (now
- r
->time_blocked
) / mDNSPlatformOneSecond
, num
, num
== 1 ? "y" : "ies");
6189 if (++r
->unresponsiveness_reports
>= 60)
6191 LogMsg("%3d: Client PID[%d](%s) unresponsive; aborting connection", r
->sd
, r
->process_id
, r
->pid_name
);
6192 LogClientInfo(&mDNSStorage
, r
);
6198 if (!dnssd_SocketValid(r
->sd
)) // If this request is finished, unlink it from the list and free the memory
6200 // Since we're already doing a list traversal, we unlink the request directly instead of using AbortUnlinkAndFree()
6202 freeL("request_state/udsserver_idle", r
);
6210 struct CompileTimeAssertionChecks_uds_daemon
6212 // Check our structures are reasonable sizes. Including overly-large buffers, or embedding
6213 // other overly-large structures instead of having a pointer to them, can inadvertently
6214 // cause structure sizes (and therefore memory usage) to balloon unreasonably.
6215 char sizecheck_request_state
[(sizeof(request_state
) <= 2000) ? 1 : -1];
6216 char sizecheck_registered_record_entry
[(sizeof(registered_record_entry
) <= 60) ? 1 : -1];
6217 char sizecheck_service_instance
[(sizeof(service_instance
) <= 6552) ? 1 : -1];
6218 char sizecheck_browser_t
[(sizeof(browser_t
) <= 1096) ? 1 : -1];
6219 char sizecheck_reply_hdr
[(sizeof(reply_hdr
) <= 12) ? 1 : -1];
6220 char sizecheck_reply_state
[(sizeof(reply_state
) <= 64) ? 1 : -1];