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 #include <sys/param.h>
19 #include <sys/types.h>
20 #include <sys/socket.h>
22 #include <netinet/in.h>
23 #include <arpa/inet.h>
24 #include <arpa/nameser.h>
33 * WARNING: Don't even consider trying to compile this on a system where
34 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
39 * inet_ntop4(src, dst, size)
40 * format an IPv4 address
45 * (2) takes a u_char* not an in_addr as input
50 inet_ntop4(const u_char
*src
, char *dst
, size_t size
)
52 char tmp
[sizeof ("255.255.255.255") + 1];
59 for (octet
= 0; octet
<= 3; octet
++) {
61 #if 0 /* since src is unsigned char, it will never be > 255 ... */
62 if (src
[octet
] > 255) {
67 tmp
[i
++] = '0' + src
[octet
] / 100;
68 if (tmp
[i
- 1] == '0') {
69 tmp
[i
- 1] = '0' + (src
[octet
] / 10 % 10);
70 if (tmp
[i
- 1] == '0') i
--;
72 tmp
[i
++] = '0' + (src
[octet
] / 10 % 10);
74 tmp
[i
++] = '0' + src
[octet
] % 10;
79 if (strlen(tmp
) > size
) {
84 return strcpy(dst
, tmp
);
89 * inet_ntop6(src, dst, size)
90 * convert IPv6 binary address into presentation (printable) format
95 #ifdef __UCLIBC_HAS_IPV6__
98 inet_ntop6(const u_char
*src
, char *dst
, size_t size
)
101 * Note that int32_t and int16_t need only be "at least" large enough
102 * to contain a value of the specified size. On some systems, like
103 * Crays, there is no such thing as an integer variable with 16 bits.
104 * Keep this in mind if you think this function should have been coded
105 * to use pointer overlays. All the world's not a VAX.
107 char tmp
[sizeof ("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp
;
108 struct { int base
, len
; } best
= { 0, 0 }, cur
= { 0, 0 };
114 * Copy the input (bytewise) array into a wordwise array.
115 * Find the longest run of 0x00's in src[] for :: shorthanding.
117 memset(words
, '\0', sizeof words
);
118 for (i
= 0; i
< 16; i
+= 2)
119 words
[i
/ 2] = (src
[i
] << 8) | src
[i
+ 1];
122 best
.len
= best
.len
; /* shutting up compiler warning */
123 cur
.len
= cur
.len
; /* shutting up compiler warning */
124 for (i
= 0; i
< 8; i
++) {
127 cur
.base
= i
, cur
.len
= 1;
131 if (cur
.base
!= -1) {
132 if (best
.base
== -1 || cur
.len
> best
.len
)
138 if (cur
.base
!= -1) {
139 if (best
.base
== -1 || cur
.len
> best
.len
)
142 if (best
.base
!= -1 && best
.len
< 2)
149 for (i
= 0; i
< 8; i
++) {
150 /* Are we inside the best run of 0x00's? */
151 if (best
.base
!= -1 && i
>= best
.base
&&
152 i
< (best
.base
+ best
.len
)) {
157 /* Are we following an initial run of 0x00s or any real hex? */
160 /* Is this address an encapsulated IPv4? */
161 if (i
== 6 && best
.base
== 0 &&
162 (best
.len
== 6 || (best
.len
== 5 && words
[5] == 0xffff))) {
163 if (!inet_ntop4(src
+12, tp
, sizeof tmp
- (tp
- tmp
)))
168 tp
+= sprintf(tp
, "%x", words
[i
]);
170 /* Was it a trailing run of 0x00's? */
171 if (best
.base
!= -1 && (best
.base
+ best
.len
) == 8)
176 * Check for overflow, copy, and we're done.
178 if ((size_t)(tp
- tmp
) > size
) {
182 return strcpy(dst
, tmp
);
184 #endif /* __UCLIBC_HAS_IPV6__ */
188 * inet_pton4(src, dst)
189 * like inet_aton() but without all the hexadecimal and shorthand.
191 * 1 if `src' is a valid dotted quad, else 0.
193 * does not touch `dst' unless it's returning 1.
198 inet_pton4(const char *src
, u_char
*dst
)
200 int saw_digit
, octets
, ch
;
206 while ((ch
= *src
++) != '\0') {
208 if (ch
>= '0' && ch
<= '9') {
209 u_int
new = *tp
* 10 + (ch
- '0');
219 } else if (ch
== '.' && saw_digit
) {
234 * inet_pton6(src, dst)
235 * convert presentation level address to network order binary form.
237 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
239 * (1) does not touch `dst' unless it's returning 1.
240 * (2) :: in a full address is silently ignored.
242 * inspired by Mark Andrews.
247 #ifdef __UCLIBC_HAS_IPV6__
250 inet_pton6(const char *src
, u_char
*dst
)
252 static const char xdigits
[] = "0123456789abcdef";
253 u_char tmp
[16], *tp
, *endp
, *colonp
;
259 tp
= memset(tmp
, '\0', 16);
262 /* Leading :: requires some special handling. */
269 while ((ch
= *src
++) != '\0') {
272 /* | 0x20 is cheap tolower(), valid for letters/numbers only */
273 pch
= strchr(xdigits
, (ch
| 0x20));
276 val
|= (pch
- xdigits
);
294 *tp
++ = (u_char
) (val
>> 8);
295 *tp
++ = (u_char
) val
;
300 if (ch
== '.' && ((tp
+ 4) <= endp
) &&
301 inet_pton4(curtok
, tp
) > 0) {
304 break; /* '\0' was seen by inet_pton4(). */
311 *tp
++ = (u_char
) (val
>> 8);
312 *tp
++ = (u_char
) val
;
314 if (colonp
!= NULL
) {
316 * Since some memmove()'s erroneously fail to handle
317 * overlapping regions, we'll do the shift by hand.
319 const int n
= tp
- colonp
;
324 for (i
= 1; i
<= n
; i
++) {
325 endp
[- i
] = colonp
[n
- i
];
332 memcpy(dst
, tmp
, 16);
336 #endif /* __UCLIBC_HAS_IPV6__ */
341 * inet_ntop(af, src, dst, size)
342 * convert a network format address to presentation format.
344 * pointer to presentation format address (`dst'), or NULL (see errno).
349 inet_ntop(int af
, const void *src
, char *dst
, socklen_t size
)
353 return inet_ntop4(src
, dst
, size
);
354 #ifdef __UCLIBC_HAS_IPV6__
356 return inet_ntop6(src
, dst
, size
);
359 __set_errno(EAFNOSUPPORT
);
364 libc_hidden_def(inet_ntop
)
368 * inet_pton(af, src, dst)
369 * convert from presentation format (which usually means ASCII printable)
370 * to network format (which is usually some kind of binary format).
372 * 1 if the address was valid for the specified address family
373 * 0 if the address wasn't valid (`dst' is untouched in this case)
374 * -1 if some other error occurred (`dst' is untouched in this case, too)
379 inet_pton(int af
, const char *src
, void *dst
)
383 return inet_pton4(src
, dst
);
384 #ifdef __UCLIBC_HAS_IPV6__
386 return inet_pton6(src
, dst
);
389 __set_errno(EAFNOSUPPORT
);
394 libc_hidden_def(inet_pton
)