5f3b5efba07c467a568ae9721a0252314d58d04f
[games.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  * $FreeBSD: src/lib/libc/net/inet_ntop.c,v 1.6.2.2 2002/12/16 15:19:35 robert Exp $
17  * $DragonFly: src/lib/libcr/net/Attic/inet_ntop.c,v 1.2 2003/06/17 04:26:44 dillon Exp $
18  */
19
20 #include <sys/param.h>
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <arpa/nameser.h>
26 #include <errno.h>
27 #include <stdio.h>
28 #include <string.h>
29
30 /*
31  * WARNING: Don't even consider trying to compile this on a system where
32  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
33  */
34
35 static const char *inet_ntop4 __P((const u_char *src, char *dst, size_t size));
36 static const char *inet_ntop6 __P((const u_char *src, char *dst, size_t size));
37
38 /* char *
39  * inet_ntop(af, src, dst, size)
40  *      convert a network format address to presentation format.
41  * return:
42  *      pointer to presentation format address (`dst'), or NULL (see errno).
43  * author:
44  *      Paul Vixie, 1996.
45  */
46 const char *
47 inet_ntop(af, src, dst, size)
48         int af;
49         const void *src;
50         char *dst;
51         size_t size;
52 {
53         switch (af) {
54         case AF_INET:
55                 return (inet_ntop4(src, dst, size));
56         case AF_INET6:
57                 return (inet_ntop6(src, dst, size));
58         default:
59                 errno = EAFNOSUPPORT;
60                 return (NULL);
61         }
62         /* NOTREACHED */
63 }
64
65 /* const char *
66  * inet_ntop4(src, dst, size)
67  *      format an IPv4 address, more or less like inet_ntoa()
68  * return:
69  *      `dst' (as a const)
70  * notes:
71  *      (1) uses no statics
72  *      (2) takes a u_char* not an in_addr as input
73  * author:
74  *      Paul Vixie, 1996.
75  */
76 static const char *
77 inet_ntop4(src, dst, size)
78         const u_char *src;
79         char *dst;
80         size_t size;
81 {
82         static const char fmt[] = "%u.%u.%u.%u";
83
84         if ((size_t)snprintf(dst, size, fmt, src[0], src[1], src[2], src[3])
85             >= size) {
86                 errno = ENOSPC;
87                 return (NULL);
88         }
89         return (dst);
90 }
91
92 /* const char *
93  * inet_ntop6(src, dst, size)
94  *      convert IPv6 binary address into presentation (printable) format
95  * author:
96  *      Paul Vixie, 1996.
97  */
98 static const char *
99 inet_ntop6(src, dst, size)
100         const u_char *src;
101         char *dst;
102         size_t size;
103 {
104         /*
105          * Note that int32_t and int16_t need only be "at least" large enough
106          * to contain a value of the specified size.  On some systems, like
107          * Crays, there is no such thing as an integer variable with 16 bits.
108          * Keep this in mind if you think this function should have been coded
109          * to use pointer overlays.  All the world's not a VAX.
110          */
111         char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
112         struct { int base, len; } best, cur;
113         u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
114         int i;
115
116         /*
117          * Preprocess:
118          *      Copy the input (bytewise) array into a wordwise array.
119          *      Find the longest run of 0x00's in src[] for :: shorthanding.
120          */
121         memset(words, '\0', sizeof words);
122         for (i = 0; i < NS_IN6ADDRSZ; i++)
123                 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
124         best.base = -1;
125         cur.base = -1;
126         for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
127                 if (words[i] == 0) {
128                         if (cur.base == -1)
129                                 cur.base = i, cur.len = 1;
130                         else
131                                 cur.len++;
132                 } else {
133                         if (cur.base != -1) {
134                                 if (best.base == -1 || cur.len > best.len)
135                                         best = cur;
136                                 cur.base = -1;
137                         }
138                 }
139         }
140         if (cur.base != -1) {
141                 if (best.base == -1 || cur.len > best.len)
142                         best = cur;
143         }
144         if (best.base != -1 && best.len < 2)
145                 best.base = -1;
146
147         /*
148          * Format the result.
149          */
150         tp = tmp;
151         for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
152                 /* Are we inside the best run of 0x00's? */
153                 if (best.base != -1 && i >= best.base &&
154                     i < (best.base + best.len)) {
155                         if (i == best.base)
156                                 *tp++ = ':';
157                         continue;
158                 }
159                 /* Are we following an initial run of 0x00s or any real hex? */
160                 if (i != 0)
161                         *tp++ = ':';
162                 /* Is this address an encapsulated IPv4? */
163                 if (i == 6 && best.base == 0 &&
164                     (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
165                         if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
166                                 return (NULL);
167                         tp += strlen(tp);
168                         break;
169                 }
170                 tp += sprintf(tp, "%x", words[i]);
171         }
172         /* Was it a trailing run of 0x00's? */
173         if (best.base != -1 && (best.base + best.len) ==
174             (NS_IN6ADDRSZ / NS_INT16SZ))
175                 *tp++ = ':';
176         *tp++ = '\0';
177
178         /*
179          * Check for overflow, copy, and we're done.
180          */
181         if ((size_t)(tp - tmp) > size) {
182                 errno = ENOSPC;
183                 return (NULL);
184         }
185         strcpy(dst, tmp);
186         return (dst);
187 }
188
189 /*
190  * Weak aliases for applications that use certain private entry points,
191  * and fail to include <arpa/inet.h>.
192  */
193 #undef inet_ntop
194 __weak_reference(__inet_ntop, inet_ntop);