2 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
7 * Copyright (c) 1996 by Internet Software Consortium.
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
13 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
14 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
16 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
17 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
18 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
19 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
23 #pragma ident "%Z%%M% %I% %E% SMI"
32 #include <arpa/inet.h>
33 #include <netinet/in.h>
34 #include <sys/socket.h>
37 static const char *inet_ntop4(const uchar_t
*, char *, socklen_t
);
38 static const char *inet_ntop6(const uchar_t
*, char *, socklen_t
);
42 * inet_ntop(af, src, dst, size)
43 * convert a network format address to presentation format.
45 * pointer to presentation format address (`dst'), or NULL (see errno).
48 inet_ntop(int af
, const void *src
, char *dst
, socklen_t size
)
52 return (inet_ntop4(src
, dst
, size
));
54 return (inet_ntop6(src
, dst
, size
));
64 * inet_ntop4(src, dst, size)
65 * format an IPv4 address, more or less like inet_ntoa()
70 * (2) takes a uchar_t* not an in_addr as input
75 #define SPRINTF(x) strlen(sprintf/**/x)
77 #define SPRINTF(x) ((size_t)sprintf x)
81 inet_ntop4(const uchar_t
*src
, char *dst
, socklen_t size
)
83 static const char fmt
[] = "%u.%u.%u.%u";
84 char tmp
[sizeof ("255.255.255.255")];
86 if (SPRINTF((tmp
, fmt
, src
[0], src
[1], src
[2], src
[3])) > size
) {
90 (void) strcpy(dst
, tmp
);
96 * inet_ntop6(src, dst, size)
97 * convert IPv6 binary address into presentation (printable) format
103 inet_ntop6(const uchar_t
*src
, char *dst
, socklen_t size
)
106 * Note that int32_t and int16_t need only be "at least" large enough
107 * to contain a value of the specified size. On some systems, like
108 * Crays, there is no such thing as an integer variable with 16 bits.
109 * Keep this in mind if you think this function should have been coded
110 * to use pointer overlays. All the world's not a VAX.
112 char tmp
[sizeof ("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp
;
113 struct { int base
, len
; } best
, cur
;
114 uint_t words
[IN6ADDRSZ
/ INT16SZ
];
119 * Copy the input (bytewise) array into a wordwise array.
120 * Find the longest run of 0x00's in src[] for :: shorthanding.
122 (void) memset(words
, '\0', sizeof (words
));
123 for (i
= 0; i
< IN6ADDRSZ
; i
++)
124 words
[i
/ 2] |= (src
[i
] << ((1 - (i
% 2)) << 3));
127 for (i
= 0; i
< (IN6ADDRSZ
/ INT16SZ
); i
++) {
130 cur
.base
= i
, cur
.len
= 1;
134 if (cur
.base
!= -1) {
135 if (best
.base
== -1 || cur
.len
> best
.len
)
141 if (cur
.base
!= -1) {
142 if (best
.base
== -1 || cur
.len
> best
.len
)
145 if (best
.base
!= -1 && best
.len
< 2)
152 for (i
= 0; i
< (IN6ADDRSZ
/ INT16SZ
); i
++) {
153 /* Are we inside the best run of 0x00's? */
154 if (best
.base
!= -1 && i
>= best
.base
&&
155 i
< (best
.base
+ best
.len
)) {
160 /* Are we following an initial run of 0x00s or any real hex? */
163 /* Is this address an encapsulated IPv4? */
164 if (i
== 6 && best
.base
== 0 &&
165 (best
.len
== 6 || (best
.len
== 5 && words
[5] == 0xffff))) {
166 if (!inet_ntop4(src
+12, tp
, sizeof (tmp
) - (tp
- tmp
)))
171 tp
+= SPRINTF((tp
, "%x", words
[i
]));
173 /* Was it a trailing run of 0x00's? */
174 if (best
.base
!= -1 && (best
.base
+ best
.len
) == (IN6ADDRSZ
/ INT16SZ
))
179 * Check for overflow, copy, and we're done.
181 if ((int)(tp
- tmp
) > size
) {
185 (void) strcpy(dst
, tmp
);