]>
git.saurik.com Git - apple/xnu.git/blob - libkern/net/inet_pton.c
2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1996,1999 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 ISC DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #if defined(LIBC_SCCS) && !defined(lint)
18 static const char rcsid
[] = "$Id: inet_pton.c,v 1.3.18.2 2005/07/28 07:38:07 marka Exp $";
19 #endif /* LIBC_SCCS and not lint */
23 #include <sys/param.h>
24 #include <sys/socket.h>
25 #include <sys/systm.h>
27 #include <netinet/in.h>
30 * WARNING: Don't even consider trying to compile this on a system where
31 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
34 static int inet_pton4(const char *src
, u_char
*dst
);
35 static int inet_pton6(const char *src
, u_char
*dst
);
38 * inet_pton(af, src, dst)
39 * convert from presentation format (which usually means ASCII printable)
40 * to network format (which is usually some kind of binary format).
42 * 1 if the address was valid for the specified address family
43 * 0 if the address wasn't valid (`dst' is untouched in this case)
44 * -1 if some other error occurred (`dst' is untouched in this case, too)
49 inet_pton(int af
, const char *src
, void *dst
)
53 return inet_pton4(src
, dst
);
55 return inet_pton6(src
, dst
);
63 * inet_pton4(src, dst)
64 * like inet_aton() but without all the hexadecimal and shorthand.
66 * 1 if `src' is a valid dotted quad, else 0.
68 * does not touch `dst' unless it's returning 1.
73 inet_pton4(const char *src
, u_char
*dst
)
75 static const char digits
[] = "0123456789";
76 int saw_digit
, octets
, ch
;
78 u_char tmp
[NS_INADDRSZ
], *tp
;
83 while ((ch
= *src
++) != '\0') {
86 if ((pch
= strchr(digits
, ch
)) != NULL
) {
87 u_int
new = *tp
* 10 + (u_int
)(pch
- digits
);
89 if (saw_digit
&& *tp
== 0) {
102 } else if (ch
== '.' && saw_digit
) {
115 memcpy(dst
, tmp
, NS_INADDRSZ
);
120 * inet_pton6(src, dst)
121 * convert presentation level address to network order binary form.
123 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
125 * (1) does not touch `dst' unless it's returning 1.
126 * (2) :: in a full address is silently ignored.
128 * inspired by Mark Andrews.
133 inet_pton6(const char *src
, u_char
*dst
)
135 static const char xdigits_l
[] = "0123456789abcdef",
136 xdigits_u
[] = "0123456789ABCDEF";
137 #define NS_IN6ADDRSZ 16
139 u_char tmp
[NS_IN6ADDRSZ
], *tp
, *endp
, *colonp
;
140 const char *xdigits
, *curtok
;
141 int ch
, seen_xdigits
;
144 memset((tp
= tmp
), '\0', NS_IN6ADDRSZ
);
145 endp
= tp
+ NS_IN6ADDRSZ
;
147 /* Leading :: requires some special handling. */
156 while ((ch
= *src
++) != '\0') {
159 if ((pch
= strchr((xdigits
= xdigits_l
), ch
)) == NULL
) {
160 pch
= strchr((xdigits
= xdigits_u
), ch
);
164 val
|= (pch
- xdigits
);
165 if (++seen_xdigits
> 4) {
178 } else if (*src
== '\0') {
181 if (tp
+ NS_INT16SZ
> endp
) {
184 *tp
++ = (u_char
) (val
>> 8) & 0xff;
185 *tp
++ = (u_char
) val
& 0xff;
190 if (ch
== '.' && ((tp
+ NS_INADDRSZ
) <= endp
) &&
191 inet_pton4(curtok
, tp
) > 0) {
194 break; /*%< '\\0' was seen by inet_pton4(). */
199 if (tp
+ NS_INT16SZ
> endp
) {
202 *tp
++ = (u_char
) (val
>> 8) & 0xff;
203 *tp
++ = (u_char
) val
& 0xff;
205 if (colonp
!= NULL
) {
207 * Since some memmove()'s erroneously fail to handle
208 * overlapping regions, we'll do the shift by hand.
210 const long n
= tp
- colonp
;
216 for (i
= 1; i
<= n
; i
++) {
217 endp
[-i
] = colonp
[n
- i
];
225 memcpy(dst
, tmp
, NS_IN6ADDRSZ
);