1 /* $NetBSD: inet_ntop.c,v 1.1.1.4 2009/04/12 16:35:45 christos Exp $ */
4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (c) 1996-1999 by Internet Software Consortium.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/cdefs.h>
21 #if defined(LIBC_SCCS) && !defined(lint)
23 static const char rcsid
[] = "Id: inet_ntop.c,v 1.5 2005/11/03 22:59:52 marka Exp";
25 __RCSID("$NetBSD: inet_ntop.c,v 1.7 2008/09/11 15:40:43 christos Exp $");
27 #endif /* LIBC_SCCS and not lint */
29 #include "port_before.h"
31 #include "namespace.h"
32 #include <sys/param.h>
33 #include <sys/types.h>
34 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
38 #include <arpa/nameser.h>
46 #include "port_after.h"
49 __weak_alias(inet_ntop
,_inet_ntop
)
53 * WARNING: Don't even consider trying to compile this on a system where
54 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
57 static const char *inet_ntop4(const u_char
*src
, char *dst
, socklen_t size
);
58 static const char *inet_ntop6(const u_char
*src
, char *dst
, socklen_t size
);
61 * inet_ntop(af, src, dst, size)
62 * convert a network format address to presentation format.
64 * pointer to presentation format address (`dst'), or NULL (see errno).
69 inet_ntop(af
, src
, dst
, size
)
76 _DIAGASSERT(src
!= NULL
);
77 _DIAGASSERT(dst
!= NULL
);
81 return (inet_ntop4(src
, dst
, size
));
83 return (inet_ntop6(src
, dst
, size
));
92 * inet_ntop4(src, dst, size)
93 * format an IPv4 address, more or less like inet_ntoa()
98 * (2) takes a u_char* not an in_addr as input
103 inet_ntop4(src
, dst
, size
)
108 char tmp
[sizeof "255.255.255.255"];
111 _DIAGASSERT(src
!= NULL
);
112 _DIAGASSERT(dst
!= NULL
);
114 l
= snprintf(tmp
, sizeof(tmp
), "%u.%u.%u.%u",
115 src
[0], src
[1], src
[2], src
[3]);
116 if (l
<= 0 || (socklen_t
) l
>= size
) {
120 strlcpy(dst
, tmp
, size
);
125 * inet_ntop6(src, dst, size)
126 * convert IPv6 binary address into presentation (printable) format
131 inet_ntop6(src
, dst
, size
)
137 * Note that int32_t and int16_t need only be "at least" large enough
138 * to contain a value of the specified size. On some systems, like
139 * Crays, there is no such thing as an integer variable with 16 bits.
140 * Keep this in mind if you think this function should have been coded
141 * to use pointer overlays. All the world's not a VAX.
143 char tmp
[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"];
145 struct { int base
, len
; } best
, cur
;
146 u_int words
[NS_IN6ADDRSZ
/ NS_INT16SZ
];
150 _DIAGASSERT(src
!= NULL
);
151 _DIAGASSERT(dst
!= NULL
);
155 * Copy the input (bytewise) array into a wordwise array.
156 * Find the longest run of 0x00's in src[] for :: shorthanding.
158 memset(words
, '\0', sizeof words
);
159 for (i
= 0; i
< NS_IN6ADDRSZ
; i
++)
160 words
[i
/ 2] |= (src
[i
] << ((1 - (i
% 2)) << 3));
165 for (i
= 0; i
< (NS_IN6ADDRSZ
/ NS_INT16SZ
); i
++) {
168 cur
.base
= i
, cur
.len
= 1;
172 if (cur
.base
!= -1) {
173 if (best
.base
== -1 || cur
.len
> best
.len
)
179 if (cur
.base
!= -1) {
180 if (best
.base
== -1 || cur
.len
> best
.len
)
183 if (best
.base
!= -1 && best
.len
< 2)
190 ep
= tmp
+ sizeof(tmp
);
191 for (i
= 0; i
< (NS_IN6ADDRSZ
/ NS_INT16SZ
); i
++) {
192 /* Are we inside the best run of 0x00's? */
193 if (best
.base
!= -1 && i
>= best
.base
&&
194 i
< (best
.base
+ best
.len
)) {
199 /* Are we following an initial run of 0x00s or any real hex? */
205 /* Is this address an encapsulated IPv4? */
206 if (i
== 6 && best
.base
== 0 &&
208 (best
.len
== 7 && words
[7] != 0x0001) ||
209 (best
.len
== 5 && words
[5] == 0xffff))) {
210 if (!inet_ntop4(src
+12, tp
, (socklen_t
)(ep
- tp
)))
215 advance
= snprintf(tp
, (size_t)(ep
- tp
), "%x", words
[i
]);
216 if (advance
<= 0 || advance
>= ep
- tp
)
220 /* Was it a trailing run of 0x00's? */
221 if (best
.base
!= -1 && (best
.base
+ best
.len
) ==
222 (NS_IN6ADDRSZ
/ NS_INT16SZ
)) {
232 * Check for overflow, copy, and we're done.
234 if ((size_t)(tp
- tmp
) > size
) {
238 strlcpy(dst
, tmp
, size
);