Initial import from FreeBSD RELENG_4:
[dragonfly.git] / lib / libcr / net / inet_ntop.c
1 /* Copyright (c) 1996 by Internet Software Consortium.
2  *
3  * Permission to use, copy, modify, and distribute this software for any
4  * purpose with or without fee is hereby granted, provided that the above
5  * copyright notice and this permission notice appear in all copies.
6  *
7  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
8  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
9  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
10  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
11  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
12  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
13  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
14  * SOFTWARE.
15  */
16
17 #if defined(LIBC_SCCS) && !defined(lint)
18 static char rcsid[] = "$FreeBSD: src/lib/libc/net/inet_ntop.c,v 1.6.2.2 2002/12/16 15:19:35 robert Exp $";
19 #endif /* LIBC_SCCS and not lint */
20
21 #include <sys/param.h>
22 #include <sys/types.h>
23 #include <sys/socket.h>
24 #include <netinet/in.h>
25 #include <arpa/inet.h>
26 #include <arpa/nameser.h>
27 #include <errno.h>
28 #include <stdio.h>
29 #include <string.h>
30
31 /*
32  * WARNING: Don't even consider trying to compile this on a system where
33  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
34  */
35
36 static const char *inet_ntop4 __P((const u_char *src, char *dst, size_t size));
37 static const char *inet_ntop6 __P((const u_char *src, char *dst, size_t size));
38
39 /* char *
40  * inet_ntop(af, src, dst, size)
41  *      convert a network format address to presentation format.
42  * return:
43  *      pointer to presentation format address (`dst'), or NULL (see errno).
44  * author:
45  *      Paul Vixie, 1996.
46  */
47 const char *
48 inet_ntop(af, src, dst, size)
49         int af;
50         const void *src;
51         char *dst;
52         size_t size;
53 {
54         switch (af) {
55         case AF_INET:
56                 return (inet_ntop4(src, dst, size));
57         case AF_INET6:
58                 return (inet_ntop6(src, dst, size));
59         default:
60                 errno = EAFNOSUPPORT;
61                 return (NULL);
62         }
63         /* NOTREACHED */
64 }
65
66 /* const char *
67  * inet_ntop4(src, dst, size)
68  *      format an IPv4 address, more or less like inet_ntoa()
69  * return:
70  *      `dst' (as a const)
71  * notes:
72  *      (1) uses no statics
73  *      (2) takes a u_char* not an in_addr as input
74  * author:
75  *      Paul Vixie, 1996.
76  */
77 static const char *
78 inet_ntop4(src, dst, size)
79         const u_char *src;
80         char *dst;
81         size_t size;
82 {
83         static const char fmt[] = "%u.%u.%u.%u";
84
85         if ((size_t)snprintf(dst, size, fmt, src[0], src[1], src[2], src[3])
86             >= size) {
87                 errno = ENOSPC;
88                 return (NULL);
89         }
90         return (dst);
91 }
92
93 /* const char *
94  * inet_ntop6(src, dst, size)
95  *      convert IPv6 binary address into presentation (printable) format
96  * author:
97  *      Paul Vixie, 1996.
98  */
99 static const char *
100 inet_ntop6(src, dst, size)
101         const u_char *src;
102         char *dst;
103         size_t size;
104 {
105         /*
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.
111          */
112         char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
113         struct { int base, len; } best, cur;
114         u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
115         int i;
116
117         /*
118          * Preprocess:
119          *      Copy the input (bytewise) array into a wordwise array.
120          *      Find the longest run of 0x00's in src[] for :: shorthanding.
121          */
122         memset(words, '\0', sizeof words);
123         for (i = 0; i < NS_IN6ADDRSZ; i++)
124                 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
125         best.base = -1;
126         cur.base = -1;
127         for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
128                 if (words[i] == 0) {
129                         if (cur.base == -1)
130                                 cur.base = i, cur.len = 1;
131                         else
132                                 cur.len++;
133                 } else {
134                         if (cur.base != -1) {
135                                 if (best.base == -1 || cur.len > best.len)
136                                         best = cur;
137                                 cur.base = -1;
138                         }
139                 }
140         }
141         if (cur.base != -1) {
142                 if (best.base == -1 || cur.len > best.len)
143                         best = cur;
144         }
145         if (best.base != -1 && best.len < 2)
146                 best.base = -1;
147
148         /*
149          * Format the result.
150          */
151         tp = tmp;
152         for (i = 0; i < (NS_IN6ADDRSZ / NS_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)) {
156                         if (i == best.base)
157                                 *tp++ = ':';
158                         continue;
159                 }
160                 /* Are we following an initial run of 0x00s or any real hex? */
161                 if (i != 0)
162                         *tp++ = ':';
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)))
167                                 return (NULL);
168                         tp += strlen(tp);
169                         break;
170                 }
171                 tp += sprintf(tp, "%x", words[i]);
172         }
173         /* Was it a trailing run of 0x00's? */
174         if (best.base != -1 && (best.base + best.len) ==
175             (NS_IN6ADDRSZ / NS_INT16SZ))
176                 *tp++ = ':';
177         *tp++ = '\0';
178
179         /*
180          * Check for overflow, copy, and we're done.
181          */
182         if ((size_t)(tp - tmp) > size) {
183                 errno = ENOSPC;
184                 return (NULL);
185         }
186         strcpy(dst, tmp);
187         return (dst);
188 }
189
190 /*
191  * Weak aliases for applications that use certain private entry points,
192  * and fail to include <arpa/inet.h>.
193  */
194 #undef inet_ntop
195 __weak_reference(__inet_ntop, inet_ntop);