Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl / inet_pton.c
blob9b9f88b5ef8789df99e9cfd2eb842df1ad5ca5a9
1 /* This is from the BIND 4.9.4 release, modified to compile by itself */
3 /* Copyright (c) 1996 by Internet Software Consortium.
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
10 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
11 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
12 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
15 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
16 * SOFTWARE.
19 #include "setup.h"
21 #ifndef HAVE_INET_PTON
23 #ifdef HAVE_SYS_PARAM_H
24 #include <sys/param.h>
25 #endif
26 #ifdef HAVE_SYS_TYPES_H
27 #include <sys/types.h>
28 #endif
29 #ifdef HAVE_SYS_SOCKET_H
30 #include <sys/socket.h>
31 #endif
32 #ifdef HAVE_NETINET_IN_H
33 #include <netinet/in.h>
34 #endif
35 #ifdef HAVE_ARPA_INET_H
36 #include <arpa/inet.h>
37 #endif
38 #include <string.h>
39 #include <errno.h>
41 #include "inet_pton.h"
43 #define IN6ADDRSZ 16
44 #define INADDRSZ 4
45 #define INT16SZ 2
47 #ifdef USE_WINSOCK
48 #define EAFNOSUPPORT WSAEAFNOSUPPORT
49 #endif
52 * WARNING: Don't even consider trying to compile this on a system where
53 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
56 static int inet_pton4(const char *src, unsigned char *dst);
57 #ifdef ENABLE_IPV6
58 static int inet_pton6(const char *src, unsigned char *dst);
59 #endif
61 /* int
62 * inet_pton(af, src, dst)
63 * convert from presentation format (which usually means ASCII printable)
64 * to network format (which is usually some kind of binary format).
65 * return:
66 * 1 if the address was valid for the specified address family
67 * 0 if the address wasn't valid (`dst' is untouched in this case)
68 * -1 if some other error occurred (`dst' is untouched in this case, too)
69 * author:
70 * Paul Vixie, 1996.
72 int
73 Curl_inet_pton(int af, const char *src, void *dst)
75 switch (af) {
76 case AF_INET:
77 return (inet_pton4(src, (unsigned char *)dst));
78 #ifdef ENABLE_IPV6
79 #ifndef AF_INET6
80 #define AF_INET6 (AF_MAX+1) /* just to let this compile */
81 #endif
82 case AF_INET6:
83 return (inet_pton6(src, (unsigned char *)dst));
84 #endif
85 default:
86 errno = EAFNOSUPPORT;
87 return (-1);
89 /* NOTREACHED */
92 /* int
93 * inet_pton4(src, dst)
94 * like inet_aton() but without all the hexadecimal and shorthand.
95 * return:
96 * 1 if `src' is a valid dotted quad, else 0.
97 * notice:
98 * does not touch `dst' unless it's returning 1.
99 * author:
100 * Paul Vixie, 1996.
102 static int
103 inet_pton4(const char *src, unsigned char *dst)
105 static const char digits[] = "0123456789";
106 int saw_digit, octets, ch;
107 unsigned char tmp[INADDRSZ], *tp;
109 saw_digit = 0;
110 octets = 0;
111 tp = tmp;
112 *tp = 0;
113 while ((ch = *src++) != '\0') {
114 const char *pch;
116 if ((pch = strchr(digits, ch)) != NULL) {
117 unsigned int val = *tp * 10 + (unsigned int)(pch - digits);
119 if (val > 255)
120 return (0);
121 *tp = val;
122 if (! saw_digit) {
123 if (++octets > 4)
124 return (0);
125 saw_digit = 1;
127 } else if (ch == '.' && saw_digit) {
128 if (octets == 4)
129 return (0);
130 *++tp = 0;
131 saw_digit = 0;
132 } else
133 return (0);
135 if (octets < 4)
136 return (0);
137 /* bcopy(tmp, dst, INADDRSZ); */
138 memcpy(dst, tmp, INADDRSZ);
139 return (1);
142 #ifdef ENABLE_IPV6
143 /* int
144 * inet_pton6(src, dst)
145 * convert presentation level address to network order binary form.
146 * return:
147 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
148 * notice:
149 * (1) does not touch `dst' unless it's returning 1.
150 * (2) :: in a full address is silently ignored.
151 * credit:
152 * inspired by Mark Andrews.
153 * author:
154 * Paul Vixie, 1996.
156 static int
157 inet_pton6(const char *src, unsigned char *dst)
159 static const char xdigits_l[] = "0123456789abcdef",
160 xdigits_u[] = "0123456789ABCDEF";
161 unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp;
162 const char *xdigits, *curtok;
163 int ch, saw_xdigit;
164 unsigned int val;
166 memset((tp = tmp), 0, IN6ADDRSZ);
167 endp = tp + IN6ADDRSZ;
168 colonp = NULL;
169 /* Leading :: requires some special handling. */
170 if (*src == ':')
171 if (*++src != ':')
172 return (0);
173 curtok = src;
174 saw_xdigit = 0;
175 val = 0;
176 while ((ch = *src++) != '\0') {
177 const char *pch;
179 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
180 pch = strchr((xdigits = xdigits_u), ch);
181 if (pch != NULL) {
182 val <<= 4;
183 val |= (pch - xdigits);
184 if (val > 0xffff)
185 return (0);
186 saw_xdigit = 1;
187 continue;
189 if (ch == ':') {
190 curtok = src;
191 if (!saw_xdigit) {
192 if (colonp)
193 return (0);
194 colonp = tp;
195 continue;
197 if (tp + INT16SZ > endp)
198 return (0);
199 *tp++ = (unsigned char) (val >> 8) & 0xff;
200 *tp++ = (unsigned char) val & 0xff;
201 saw_xdigit = 0;
202 val = 0;
203 continue;
205 if (ch == '.' && ((tp + INADDRSZ) <= endp) &&
206 inet_pton4(curtok, tp) > 0) {
207 tp += INADDRSZ;
208 saw_xdigit = 0;
209 break; /* '\0' was seen by inet_pton4(). */
211 return (0);
213 if (saw_xdigit) {
214 if (tp + INT16SZ > endp)
215 return (0);
216 *tp++ = (unsigned char) (val >> 8) & 0xff;
217 *tp++ = (unsigned char) val & 0xff;
219 if (colonp != NULL) {
221 * Since some memmove()'s erroneously fail to handle
222 * overlapping regions, we'll do the shift by hand.
224 const int n = tp - colonp;
225 int i;
227 for (i = 1; i <= n; i++) {
228 endp[- i] = colonp[n - i];
229 colonp[n - i] = 0;
231 tp = endp;
233 if (tp != endp)
234 return (0);
235 /* bcopy(tmp, dst, IN6ADDRSZ); */
236 memcpy(dst, tmp, IN6ADDRSZ);
237 return (1);
239 #endif /* ENABLE_IPV6 */
241 #endif /* HAVE_INET_PTON */