]> git.saurik.com Git - apple/libinfo.git/blob - mdns.subproj/dnssd_ipc.c
Libinfo-222.4.12.tar.gz
[apple/libinfo.git] / mdns.subproj / dnssd_ipc.c
1 /*
2 * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22
23 Change History (most recent first):
24
25 $Log: dnssd_ipc.c,v $
26 Revision 1.10 2004/09/22 20:05:38 majka
27 Integrated
28 3725573 - Need Error Codes for handling Lighthouse setup failure on NAT
29 3805822 - Socket-based APIs aren't endian-safe
30 3806739 - DNSServiceSetDefaultDomainForUser header comments incorrect
31
32 Revision 1.9.4.1 2004/09/20 21:54:33 ksekar
33 <rdar://problem/3805822> Socket-based APIs aren't endian-safe
34
35 Revision 1.9 2004/09/16 23:45:24 majka
36 Integrated 3775315 and 3765280.
37
38 Revision 1.8.4.1 2004/09/02 19:43:41 ksekar
39 <rdar://problem/3775315>: Sync dns-sd client files between Libinfo and
40 mDNSResponder projects
41
42 Revision 1.11 2004/06/18 04:56:09 rpantos
43 casting goodness
44
45 Revision 1.10 2004/06/12 01:08:14 cheshire
46 Changes for Windows compatibility
47
48 Revision 1.9 2004/05/18 23:51:27 cheshire
49 Tidy up all checkin comments to use consistent "<rdar://problem/xxxxxxx>" format for bug numbers
50
51 Revision 1.8 2003/11/05 22:44:57 ksekar
52 <rdar://problem/3335230>: No bounds checking when reading data from client
53 Reviewed by: Stuart Cheshire
54
55 Revision 1.7 2003/08/12 19:56:25 cheshire
56 Update to APSL 2.0
57
58 */
59
60 #include "dnssd_ipc.h"
61
62 void put_long(const uint32_t l, char **ptr)
63 {
64 (*ptr)[0] = (char)((l >> 24) & 0xFF);
65 (*ptr)[1] = (char)((l >> 16) & 0xFF);
66 (*ptr)[2] = (char)((l >> 8) & 0xFF);
67 (*ptr)[3] = (char)((l ) & 0xFF);
68 *ptr += sizeof(uint32_t);
69 }
70
71 uint32_t get_long(char **ptr)
72 {
73 uint8_t *p = (uint8_t*) *ptr;
74 *ptr += sizeof(uint32_t);
75 return((uint32_t) ((uint32_t)p[0] << 24 | (uint32_t)p[1] << 16 | (uint32_t)p[2] << 8 | p[3]));
76 }
77
78 void put_short(uint16_t s, char **ptr)
79 {
80 (*ptr)[0] = (char)((s >> 8) & 0xFF);
81 (*ptr)[1] = (char)((s ) & 0xFF);
82 *ptr += sizeof(uint16_t);
83 }
84
85 uint16_t get_short(char **ptr)
86 {
87 uint8_t *p = (uint8_t*) *ptr;
88 *ptr += sizeof(uint16_t);
89 return((uint16_t) ((uint16_t)p[0] << 8 | p[1]));
90 }
91
92 int put_string(const char *str, char **ptr)
93 {
94 if (!str) str = "";
95 strcpy(*ptr, str);
96 *ptr += strlen(str) + 1;
97 return 0;
98 }
99
100 int get_string(char **ptr, char *buffer, int buflen)
101 {
102 int overrun = (int)strlen(*ptr) < buflen ? 0 : -1;
103 strncpy(buffer, *ptr, buflen - 1);
104 buffer[buflen - 1] = '\0';
105 *ptr += strlen(buffer) + 1;
106 return overrun;
107 }
108
109 void put_rdata(const int rdlen, const char *rdata, char **ptr)
110 {
111 memcpy(*ptr, rdata, rdlen);
112 *ptr += rdlen;
113 }
114
115 char *get_rdata(char **ptr, int rdlen)
116 {
117 char *rd = *ptr;
118 *ptr += rdlen;
119 return rd;
120 }
121
122 void ConvertHeaderBytes(ipc_msg_hdr *hdr)
123 {
124 hdr->version = htonl(hdr->version);
125 hdr->datalen = htonl(hdr->datalen);
126 hdr->flags = htonl(hdr->flags);
127 hdr->op = htonl(hdr->op );
128 hdr->reg_index = htonl(hdr->reg_index);
129 }