1 /* -*- Mode: C; tab-width: 4 -*-
3 * Copyright (c) 2004, Apple Computer, Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #if MDNS_BUILDINGSHAREDLIBRARY || MDNS_BUILDINGSTUBLIBRARY
39 // disable warning "conversion from <data> to uint16_t"
40 #pragma warning(disable:4244)
41 #define strncasecmp _strnicmp
42 #define strcasecmp _stricmp
45 /*********************************************************************************************
47 * Supporting Functions
49 *********************************************************************************************/
51 #define mDNSIsDigit(X) ((X) >= '0' && (X) <= '9')
53 // DomainEndsInDot returns 1 if name ends with a dot, 0 otherwise
54 // (DNSServiceConstructFullName depends this returning 1 for true, rather than any non-zero value meaning true)
56 static int DomainEndsInDot(const char *dom
)
58 while (dom
[0] && dom
[1])
60 if (dom
[0] == '\\') // advance past escaped byte sequence
62 if (mDNSIsDigit(dom
[1]) && mDNSIsDigit(dom
[2]) && mDNSIsDigit(dom
[3]))
63 dom
+= 4; // If "\ddd" then skip four
64 else dom
+= 2; // else if "\x" then skip two
66 else dom
++; // else goto next character
68 return (dom
[0] == '.');
71 static uint8_t *InternalTXTRecordSearch
74 const void *txtRecord
,
79 uint8_t *p
= (uint8_t*)txtRecord
;
80 uint8_t *e
= p
+ txtLen
;
81 *keylen
= (unsigned long) strlen(key
);
86 if (p
<= e
&& *keylen
<= x
[0] && !strncasecmp(key
, (char*)x
+1, *keylen
))
87 if (*keylen
== x
[0] || x
[1+*keylen
] == '=') return(x
);
92 /*********************************************************************************************
94 * General Utility Functions
96 *********************************************************************************************/
98 // Note: Need to make sure we don't write more than kDNSServiceMaxDomainName (1009) bytes to fullName
99 // In earlier builds this constant was defined to be 1005, so to avoid buffer overruns on clients
100 // compiled with that constant we'll actually limit the output to 1005 bytes.
102 DNSServiceErrorType DNSSD_API DNSServiceConstructFullName
104 char *const fullName
,
105 const char *const service
, // May be NULL
106 const char *const regtype
,
107 const char *const domain
110 const size_t len
= !regtype
? 0 : strlen(regtype
) - DomainEndsInDot(regtype
);
112 char *const lim
= fullName
+ 1005;
113 const char *s
= service
;
114 const char *r
= regtype
;
115 const char *d
= domain
;
117 // regtype must be at least "x._udp" or "x._tcp"
118 if (len
< 6 || !domain
|| !domain
[0]) return kDNSServiceErr_BadParam
;
119 if (strncasecmp((regtype
+ len
- 4), "_tcp", 4) && strncasecmp((regtype
+ len
- 4), "_udp", 4)) return kDNSServiceErr_BadParam
;
121 if (service
&& *service
)
125 unsigned char c
= *s
++; // Needs to be unsigned, or values like 0xFF will be interpreted as < 32
126 if (c
<= ' ') // Escape non-printable characters
128 if (fn
+4 >= lim
) goto fail
;
130 *fn
++ = '0' + (c
/ 100);
131 *fn
++ = '0' + (c
/ 10) % 10;
134 else if (c
== '.' || (c
== '\\')) // Escape dot and backslash literals
136 if (fn
+2 >= lim
) goto fail
;
140 if (fn
+1 >= lim
) goto fail
;
146 while (*r
) if (fn
+1 >= lim
) goto fail
;else *fn
++ = *r
++;
147 if (!DomainEndsInDot(regtype
)) { if (fn
+1 >= lim
) goto fail
;else *fn
++ = '.';}
149 while (*d
) if (fn
+1 >= lim
) goto fail
;else *fn
++ = *d
++;
150 if (!DomainEndsInDot(domain
)) { if (fn
+1 >= lim
) goto fail
;else *fn
++ = '.';}
153 return kDNSServiceErr_NoError
;
157 return kDNSServiceErr_BadParam
;
160 /*********************************************************************************************
162 * TXT Record Construction Functions
164 *********************************************************************************************/
166 typedef struct _TXTRecordRefRealType
168 uint8_t *buffer
; // Pointer to data
169 uint16_t buflen
; // Length of buffer
170 uint16_t datalen
; // Length currently in use
171 uint16_t malloced
; // Non-zero if buffer was allocated via malloc()
172 } TXTRecordRefRealType
;
174 #define txtRec ((TXTRecordRefRealType*)txtRecord)
176 // The opaque storage defined in the public dns_sd.h header is 16 bytes;
177 // make sure we don't exceed that.
178 struct CompileTimeAssertionCheck_dnssd_clientlib
180 char assert0
[(sizeof(TXTRecordRefRealType
) <= 16) ? 1 : -1];
183 void DNSSD_API TXTRecordCreate
185 TXTRecordRef
*txtRecord
,
190 txtRec
->buffer
= buffer
;
191 txtRec
->buflen
= buffer
? bufferLen
: (uint16_t)0;
193 txtRec
->malloced
= 0;
196 void DNSSD_API
TXTRecordDeallocate(TXTRecordRef
*txtRecord
)
198 if (txtRec
->malloced
) free(txtRec
->buffer
);
201 DNSServiceErrorType DNSSD_API TXTRecordSetValue
203 TXTRecordRef
*txtRecord
,
211 unsigned long keysize
, keyvalsize
;
213 for (k
= key
; *k
; k
++) if (*k
< 0x20 || *k
> 0x7E || *k
== '=') return(kDNSServiceErr_Invalid
);
214 keysize
= (unsigned long)(k
- key
);
215 keyvalsize
= 1 + keysize
+ (value
? (1 + valueSize
) : 0);
216 if (keysize
< 1 || keyvalsize
> 255) return(kDNSServiceErr_Invalid
);
217 (void)TXTRecordRemoveValue(txtRecord
, key
);
218 if (txtRec
->datalen
+ keyvalsize
> txtRec
->buflen
)
220 unsigned char *newbuf
;
221 unsigned long newlen
= txtRec
->datalen
+ keyvalsize
;
222 if (newlen
> 0xFFFF) return(kDNSServiceErr_Invalid
);
223 newbuf
= malloc((size_t)newlen
);
224 if (!newbuf
) return(kDNSServiceErr_NoMemory
);
225 memcpy(newbuf
, txtRec
->buffer
, txtRec
->datalen
);
226 if (txtRec
->malloced
) free(txtRec
->buffer
);
227 txtRec
->buffer
= newbuf
;
228 txtRec
->buflen
= (uint16_t)(newlen
);
229 txtRec
->malloced
= 1;
231 start
= txtRec
->buffer
+ txtRec
->datalen
;
233 memcpy(p
, key
, keysize
);
238 memcpy(p
, value
, valueSize
);
241 *start
= (uint8_t)(p
- start
- 1);
242 txtRec
->datalen
+= p
- start
;
243 return(kDNSServiceErr_NoError
);
246 DNSServiceErrorType DNSSD_API TXTRecordRemoveValue
248 TXTRecordRef
*txtRecord
,
252 unsigned long keylen
, itemlen
, remainder
;
253 uint8_t *item
= InternalTXTRecordSearch(txtRec
->datalen
, txtRec
->buffer
, key
, &keylen
);
254 if (!item
) return(kDNSServiceErr_NoSuchKey
);
255 itemlen
= (unsigned long)(1 + item
[0]);
256 remainder
= (unsigned long)((txtRec
->buffer
+ txtRec
->datalen
) - (item
+ itemlen
));
257 // Use memmove because memcpy behaviour is undefined for overlapping regions
258 memmove(item
, item
+ itemlen
, remainder
);
259 txtRec
->datalen
-= itemlen
;
260 return(kDNSServiceErr_NoError
);
263 uint16_t DNSSD_API
TXTRecordGetLength (const TXTRecordRef
*txtRecord
) { return(txtRec
->datalen
); }
264 const void * DNSSD_API
TXTRecordGetBytesPtr(const TXTRecordRef
*txtRecord
) { return(txtRec
->buffer
); }
266 /*********************************************************************************************
268 * TXT Record Parsing Functions
270 *********************************************************************************************/
272 int DNSSD_API TXTRecordContainsKey
275 const void *txtRecord
,
279 unsigned long keylen
;
280 return (InternalTXTRecordSearch(txtLen
, txtRecord
, key
, &keylen
) ? 1 : 0);
283 const void * DNSSD_API TXTRecordGetValuePtr
286 const void *txtRecord
,
291 unsigned long keylen
;
292 uint8_t *item
= InternalTXTRecordSearch(txtLen
, txtRecord
, key
, &keylen
);
293 if (!item
|| item
[0] <= keylen
) return(NULL
); // If key not found, or found with no value, return NULL
294 *valueLen
= (uint8_t)(item
[0] - (keylen
+ 1));
295 return (item
+ 1 + keylen
+ 1);
298 uint16_t DNSSD_API TXTRecordGetCount
301 const void *txtRecord
305 uint8_t *p
= (uint8_t*)txtRecord
;
306 uint8_t *e
= p
+ txtLen
;
307 while (p
<e
) { p
+= 1 + p
[0]; count
++; }
308 return((p
>e
) ? (uint16_t)0 : count
);
311 DNSServiceErrorType DNSSD_API TXTRecordGetItemAtIndex
314 const void *txtRecord
,
323 uint8_t *p
= (uint8_t*)txtRecord
;
324 uint8_t *e
= p
+ txtLen
;
325 while (p
<e
&& count
<itemIndex
) { p
+= 1 + p
[0]; count
++; } // Find requested item
326 if (p
<e
&& p
+ 1 + p
[0] <= e
) // If valid
329 unsigned long len
= 0;
331 while (x
+len
<e
&& x
[len
] != '=') len
++;
332 if (len
>= keyBufLen
) return(kDNSServiceErr_NoMemory
);
335 if (x
+len
<e
) // If we found '='
337 *value
= x
+ len
+ 1;
338 *valueLen
= (uint8_t)(p
[0] - (len
+ 1));
345 return(kDNSServiceErr_NoError
);
347 return(kDNSServiceErr_Invalid
);
350 /*********************************************************************************************
352 * SCCS-compatible version string
354 *********************************************************************************************/
356 // For convenience when using the "strings" command, this is the last thing in the file
358 // Note: The C preprocessor stringify operator ('#') makes a string from its argument, without macro expansion
359 // e.g. If "version" is #define'd to be "4", then STRINGIFY_AWE(version) will return the string "version", not "4"
360 // To expand "version" to its value before making the string, use STRINGIFY(version) instead
361 #define STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s) # s
362 #define STRINGIFY(s) STRINGIFY_ARGUMENT_WITHOUT_EXPANSION(s)
364 // NOT static -- otherwise the compiler may optimize it out
365 // The "@(#) " pattern is a special prefix the "what" command looks for
366 const char VersionString_SCCS_libdnssd
[] = "@(#) libdns_sd " STRINGIFY(mDNSResponderVersion
) " (" __DATE__
" " __TIME__
")";