]>
git.saurik.com Git - apple/libinfo.git/blob - gen.subproj/inet_pton.c
2 * Copyright (c) 1996,1999 by Internet Software Consortium.
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
9 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
10 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
11 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
12 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
13 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
14 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
18 #if defined(LIBC_SCCS) && !defined(lint)
19 static char rcsid
[] = "$Id: inet_pton.c,v 1.3 2003/04/10 18:53:29 majka Exp $";
20 #endif /* LIBC_SCCS and not lint */
26 #include <sys/param.h>
27 #include <sys/types.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
32 #include <arpa/nameser.h>
40 #ifndef HAVE_PORTABLE_PROTOTYPE
41 #include "cdecl_ext.h"
44 #ifndef HAVE_U_INT16_T
47 #if !(defined(HAVE_INADDRSZ) && defined(HAVE_IN6ADDRSZ))
52 #define NS_INADDRSZ INADDRSZ
55 #define NS_IN6ADDRSZ IN6ADDRSZ
58 #define NS_INT16SZ sizeof(u_int16_t)
62 * WARNING: Don't even consider trying to compile this on a system where
63 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
66 static int inet_pton4
__P((const char *src
, u_char
*dst
));
68 static int inet_pton6
__P((const char *src
, u_char
*dst
));
72 * inet_pton(af, src, dst)
73 * convert from presentation format (which usually means ASCII printable)
74 * to network format (which is usually some kind of binary format).
76 * 1 if the address was valid for the specified address family
77 * 0 if the address wasn't valid (`dst' is untouched in this case)
78 * -1 if some other error occurred (`dst' is untouched in this case, too)
83 inet_pton(int af
, const char *src
, void *dst
)
93 return (inet_pton4(src
, dst
));
103 if (src
!= NULL
) p
= strrchr(src
, '%');
116 status
= inet_pton6(s
, dst
);
117 if (p
!= NULL
) free(s
);
118 if (status
!= 1) return status
;
120 if ((p
!= NULL
) && IN6_IS_ADDR_LINKLOCAL((struct in6_addr
*)dst
))
122 ifnum
= if_nametoindex(++p
);
123 ifnum
= htons(ifnum
);
124 ((struct in6_addr
*)dst
)->__u6_addr
.__u6_addr16
[1] = ifnum
;
133 errno
= EAFNOSUPPORT
;
143 * inet_pton4(src, dst)
144 * like inet_aton() but without all the hexadecimal and shorthand.
146 * 1 if `src' is a valid dotted quad, else 0.
148 * does not touch `dst' unless it's returning 1.
153 inet_pton4(const char *src
, u_char
*dst
)
155 static const char digits
[] = "0123456789";
156 int saw_digit
, octets
, ch
;
157 u_char tmp
[NS_INADDRSZ
], *tp
;
162 while ((ch
= *src
++) != '\0') {
165 if ((pch
= strchr(digits
, ch
)) != NULL
) {
166 u_int
new = *tp
* 10 + (pch
- digits
);
176 } else if (ch
== '.' && saw_digit
) {
186 memcpy(dst
, tmp
, NS_INADDRSZ
);
192 * inet_pton6(src, dst)
193 * convert presentation level address to network order binary form.
195 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
197 * (1) does not touch `dst' unless it's returning 1.
198 * (2) :: in a full address is silently ignored.
200 * inspired by Mark Andrews.
205 inet_pton6(const char *src
, u_char
*dst
)
207 static const char xdigits_l
[] = "0123456789abcdef",
208 xdigits_u
[] = "0123456789ABCDEF";
209 u_char tmp
[NS_IN6ADDRSZ
], *tp
, *endp
, *colonp
;
210 const char *xdigits
, *curtok
;
214 memset((tp
= tmp
), '\0', NS_IN6ADDRSZ
);
215 endp
= tp
+ NS_IN6ADDRSZ
;
217 /* Leading :: requires some special handling. */
224 while ((ch
= *src
++) != '\0') {
227 if ((pch
= strchr((xdigits
= xdigits_l
), ch
)) == NULL
)
228 pch
= strchr((xdigits
= xdigits_u
), ch
);
231 val
|= (pch
- xdigits
);
244 } else if (*src
== '\0') {
247 if (tp
+ NS_INT16SZ
> endp
)
249 *tp
++ = (u_char
) (val
>> 8) & 0xff;
250 *tp
++ = (u_char
) val
& 0xff;
255 if (ch
== '.' && ((tp
+ NS_INADDRSZ
) <= endp
) &&
256 inet_pton4(curtok
, tp
) > 0) {
259 break; /* '\0' was seen by inet_pton4(). */
264 if (tp
+ NS_INT16SZ
> endp
)
266 *tp
++ = (u_char
) (val
>> 8) & 0xff;
267 *tp
++ = (u_char
) val
& 0xff;
269 if (colonp
!= NULL
) {
271 * Since some memmove()'s erroneously fail to handle
272 * overlapping regions, we'll do the shift by hand.
274 const int n
= tp
- colonp
;
279 for (i
= 1; i
<= n
; i
++) {
280 endp
[- i
] = colonp
[n
- i
];
287 memcpy(dst
, tmp
, NS_IN6ADDRSZ
);