]>
git.saurik.com Git - apple/libc.git/blob - net/FreeBSD/inet_net_ntop.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.
18 #if defined(LIBC_SCCS) && !defined(lint)
19 static const char rcsid
[] = "$Id: inet_net_ntop.c,v 1.3.18.2 2006/06/20 02:51:32 marka Exp $";
21 #include <sys/cdefs.h>
22 __FBSDID("$FreeBSD: src/lib/libc/inet/inet_net_ntop.c,v 1.4 2007/06/03 17:20:26 ume Exp $");
24 #include "port_before.h"
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <arpa/inet.h>
36 #include "port_after.h"
39 # define SPRINTF(x) strlen(sprintf/**/x)
41 # define SPRINTF(x) ((size_t)sprintf x)
44 static char * inet_net_ntop_ipv4(const u_char
*src
, int bits
, char *dst
,
46 static char * inet_net_ntop_ipv6(const u_char
*src
, int bits
, char *dst
,
51 * inet_net_ntop(af, src, bits, dst, size)
52 * convert network number from network to presentation format.
53 * generates CIDR style result always.
55 * pointer to dst, or NULL if an error occurred (check errno).
57 * Paul Vixie (ISC), July 1996
60 inet_net_ntop(af
, src
, bits
, dst
, size
)
69 return (inet_net_ntop_ipv4(src
, bits
, dst
, size
));
71 return (inet_net_ntop_ipv6(src
, bits
, dst
, size
));
80 * inet_net_ntop_ipv4(src, bits, dst, size)
81 * convert IPv4 network number from network to presentation format.
82 * generates CIDR style result always.
84 * pointer to dst, or NULL if an error occurred (check errno).
86 * network byte order assumed. this means 192.5.5.240/28 has
87 * 0b11110000 in its fourth octet.
89 * Paul Vixie (ISC), July 1996
92 inet_net_ntop_ipv4(src
, bits
, dst
, size
)
103 if (bits
< 0 || bits
> 32) {
109 if (size
< sizeof "0")
116 /* Format whole octets. */
117 for (b
= bits
/ 8; b
> 0; b
--) {
118 if (size
<= sizeof "255.")
121 dst
+= SPRINTF((dst
, "%u", *src
++));
126 size
-= (size_t)(dst
- t
);
129 /* Format partial octet. */
132 if (size
<= sizeof ".255")
137 m
= ((1 << b
) - 1) << (8 - b
);
138 dst
+= SPRINTF((dst
, "%u", *src
& m
));
139 size
-= (size_t)(dst
- t
);
142 /* Format CIDR /width. */
143 if (size
<= sizeof "/32")
145 dst
+= SPRINTF((dst
, "/%u", bits
));
155 * inet_net_ntop_ipv6(src, bits, fakebits, dst, size)
156 * convert IPv6 network number from network to presentation format.
157 * generates CIDR style result always. Picks the shortest representation
158 * unless the IP is really IPv4.
159 * always prints specified number of bits (bits).
161 * pointer to dst, or NULL if an error occurred (check errno).
163 * network byte order assumed. this means 192.5.5.240/28 has
164 * 0b11110000 in its fourth octet.
166 * Vadim Kogan (UCB), June 2001
167 * Original version (IPv4) by Paul Vixie (ISC), July 1996
171 inet_net_ntop_ipv6(const u_char
*src
, int bits
, char *dst
, size_t size
) {
175 int zero_s
, zero_l
, tmp_zero_s
, tmp_zero_l
;
178 unsigned char inbuf
[16];
179 char outbuf
[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255/128")];
184 if (bits
< 0 || bits
> 128) {
196 /* Copy src to private buffer. Zero host part. */
198 memcpy(inbuf
, src
, p
);
199 memset(inbuf
+ p
, 0, 16 - p
);
208 /* how many words need to be displayed in output */
209 words
= (bits
+ 15) / 16;
213 /* Find the longest substring of zero's */
214 zero_s
= zero_l
= tmp_zero_s
= tmp_zero_l
= 0;
215 for (i
= 0; i
< (words
* 2); i
+= 2) {
216 if ((s
[i
] | s
[i
+1]) == 0) {
221 if (tmp_zero_l
&& zero_l
< tmp_zero_l
) {
229 if (tmp_zero_l
&& zero_l
< tmp_zero_l
) {
234 if (zero_l
!= words
&& zero_s
== 0 && ((zero_l
== 6) ||
235 ((zero_l
== 5 && s
[10] == 0xff && s
[11] == 0xff) ||
236 ((zero_l
== 7 && s
[14] != 0 && s
[15] != 1)))))
239 /* Format whole words. */
240 for (p
= 0; p
< words
; p
++) {
241 if (zero_l
!= 0 && p
>= zero_s
&& p
< zero_s
+ zero_l
) {
242 /* Time to skip some zeros */
252 if (is_ipv4
&& p
> 5 ) {
253 *cp
++ = (p
== 6) ? ':' : '.';
254 cp
+= SPRINTF((cp
, "%u", *s
++));
255 /* we can potentially drop the last octet */
256 if (p
!= 7 || bits
> 120) {
258 cp
+= SPRINTF((cp
, "%u", *s
++));
263 cp
+= SPRINTF((cp
, "%x", *s
* 256 + s
[1]));
268 /* Format CIDR /width. */
269 sprintf(cp
, "/%u", bits
);
270 if (strlen(outbuf
) + 1 > size
)
282 * Weak aliases for applications that use certain private entry points,
283 * and fail to include <arpa/inet.h>.
286 __weak_reference(__inet_net_ntop
, inet_net_ntop
);