2 * Copyright (C) 1996-2001 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
9 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
10 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
11 * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
13 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
14 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
15 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 #define NS_IN6ADDRSZ 16
25 * WARNING: Don't even consider trying to compile this on a system where
26 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
29 static int inet_pton4(const char *src
, unsigned char *dst
);
31 static int inet_pton6(const char *src
, unsigned char *dst
);
35 * inet_pton(af, src, dst)
36 * convert from presentation format (which usually means ASCII printable)
37 * to network format (which is usually some kind of binary format).
39 * 1 if the address was valid for the specified address family
40 * 0 if the address wasn't valid (`dst' is untouched in this case)
41 * -1 if some other error occurred (`dst' is untouched in this case, too)
52 return (inet_pton4(src
, dst
));
55 return (inet_pton6(src
, dst
));
65 * inet_pton4(src, dst)
66 * like inet_aton() but without all the hexadecimal and shorthand.
68 * 1 if `src' is a valid dotted quad, else 0.
70 * does not touch `dst' unless it's returning 1.
79 static const char digits
[] = "0123456789";
80 int saw_digit
, octets
, ch
;
81 unsigned char tmp
[NS_INADDRSZ
], *tp
;
86 while ((ch
= *src
++) != '\0') {
89 if ((pch
= strchr(digits
, ch
)) != NULL
) {
90 unsigned int new = *tp
* 10 + (pch
- digits
);
100 } else if (ch
== '.' && saw_digit
) {
110 memcpy(dst
, tmp
, NS_INADDRSZ
);
115 * inet_pton6(src, dst)
116 * convert presentation level address to network order binary form.
118 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
120 * (1) does not touch `dst' unless it's returning 1.
121 * (2) :: in a full address is silently ignored.
123 * inspired by Mark Andrews.
133 static const char xdigits_l
[] = "0123456789abcdef",
134 xdigits_u
[] = "0123456789ABCDEF";
135 unsigned char tmp
[NS_IN6ADDRSZ
], *tp
, *endp
, *colonp
;
136 const char *xdigits
, *curtok
;
140 memset((tp
= tmp
), '\0', NS_IN6ADDRSZ
);
141 endp
= tp
+ NS_IN6ADDRSZ
;
143 /* Leading :: requires some special handling. */
150 while ((ch
= *src
++) != '\0') {
153 if ((pch
= strchr((xdigits
= xdigits_l
), ch
)) == NULL
)
154 pch
= strchr((xdigits
= xdigits_u
), ch
);
157 val
|= (pch
- xdigits
);
171 if (tp
+ NS_INT16SZ
> endp
)
173 *tp
++ = (unsigned char) (val
>> 8) & 0xff;
174 *tp
++ = (unsigned char) val
& 0xff;
179 if (ch
== '.' && ((tp
+ NS_INADDRSZ
) <= endp
) &&
180 inet_pton4(curtok
, tp
) > 0) {
183 break; /* '\0' was seen by inet_pton4(). */
188 if (tp
+ NS_INT16SZ
> endp
)
190 *tp
++ = (unsigned char) (val
>> 8) & 0xff;
191 *tp
++ = (unsigned char) val
& 0xff;
193 if (colonp
!= NULL
) {
195 * Since some memmove()'s erroneously fail to handle
196 * overlapping regions, we'll do the shift by hand.
198 const int n
= tp
- colonp
;
201 for (i
= 1; i
<= n
; i
++) {
202 endp
[- i
] = colonp
[n
- i
];
209 memcpy(dst
, tmp
, NS_IN6ADDRSZ
);