Import upstream 2.3.14
[packages/xinetd.git] / libs / src / portable / inet_ntop.c
1 /*      $OpenBSD: inet_ntop.c,v 1.1 1997/03/13 19:07:32 downsj Exp $    */
2
3 /* Copyright (c) 1996 by Internet Software Consortium.
4  *
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.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
10  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
12  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
15  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
16  * SOFTWARE.
17  */
18
19 #include "config.h"
20
21 #ifndef HAVE_INET_NTOP
22
23 #if defined(LIBC_SCCS) && !defined(lint)
24 #if 0
25 static char rcsid[] = "$From: inet_ntop.c,v 8.7 1996/08/05 08:41:18 vixie Exp $";
26 #else
27 static char rcsid[] = "$OpenBSD: inet_ntop.c,v 1.1 1997/03/13 19:07:32 downsj Exp $";
28 #endif
29 #endif /* LIBC_SCCS and not lint */
30
31 #include <sys/param.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <arpa/inet.h>
36 #ifndef HAVE_CYGWIN
37 #include <arpa/nameser.h>
38 #endif
39 #include <string.h>
40 #include <errno.h>
41 #include <stdio.h>
42
43 #ifndef IN6ADDRSZ
44 #define IN6ADDRSZ   16   /* IPv6 T_AAAA */                 
45 #endif
46
47 #ifndef INT16SZ
48 #define INT16SZ     2    /* for systems without 16-bit ints */
49 #endif
50
51 /*
52  * WARNING: Don't even consider trying to compile this on a system where
53  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
54  */
55
56 static const char *inet_ntop4 (const u_char *src, char *dst, size_t size);
57 #ifdef AF_INET6
58 static const char *inet_ntop6 (const u_char *src, char *dst, size_t size);
59 #endif /* AF_INET6 */
60
61 /* char *
62  * inet_ntop(af, src, dst, size)
63  *      convert a network format address to presentation format.
64  * return:
65  *      pointer to presentation format address (`dst'), or NULL (see errno).
66  * author:
67  *      Paul Vixie, 1996.
68  */
69 const char *
70 inet_ntop(af, src, dst, size)
71         int af;
72         const void *src;
73         char *dst;
74         size_t size;
75 {
76         switch (af) {
77         case AF_INET:
78                 return (inet_ntop4(src, dst, size));
79 #ifdef AF_INET6
80         case AF_INET6:
81                 return (inet_ntop6(src, dst, size));
82 #endif /* AF_INET6 */
83         default:
84                 errno = EAFNOSUPPORT;
85                 return (NULL);
86         }
87         /* NOTREACHED */
88 }
89
90 /* const char *
91  * inet_ntop4(src, dst, size)
92  *      format an IPv4 address, more or less like inet_ntoa()
93  * return:
94  *      `dst' (as a const)
95  * notes:
96  *      (1) uses no statics
97  *      (2) takes a u_char* not an in_addr as input
98  * author:
99  *      Paul Vixie, 1996.
100  */
101 static const char *
102 inet_ntop4(src, dst, size)
103         const u_char *src;
104         char *dst;
105         size_t size;
106 {
107         static const char fmt[] = "%u.%u.%u.%u";
108         char tmp[sizeof "255.255.255.255"];
109
110         if (sprintf(tmp, fmt, src[0], src[1], src[2], src[3]) > size) {
111                 errno = ENOSPC;
112                 return (NULL);
113         }
114         strcpy(dst, tmp);
115         return (dst);
116 }
117
118 /* const char *
119  * inet_ntop6(src, dst, size)
120  *      convert IPv6 binary address into presentation (printable) format
121  * author:
122  *      Paul Vixie, 1996.
123  */
124 #ifdef AF_INET6
125 static const char *
126 inet_ntop6(src, dst, size)
127         const u_char *src;
128         char *dst;
129         size_t size;
130 {
131         /*
132          * Note that int32_t and int16_t need only be "at least" large enough
133          * to contain a value of the specified size.  On some systems, like
134          * Crays, there is no such thing as an integer variable with 16 bits.
135          * Keep this in mind if you think this function should have been coded
136          * to use pointer overlays.  All the world's not a VAX.
137          */
138         char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"], *tp;
139         struct { int base, len; } best, cur;
140         u_int words[IN6ADDRSZ / INT16SZ];
141         int i;
142
143         /*
144          * Preprocess:
145          *      Copy the input (bytewise) array into a wordwise array.
146          *      Find the longest run of 0x00's in src[] for :: shorthanding.
147          */
148         memset(words, '\0', sizeof words);
149         for (i = 0; i < IN6ADDRSZ; i++)
150                 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
151         best.base = -1;
152         cur.base = -1;
153         for (i = 0; i < (IN6ADDRSZ / INT16SZ); i++) {
154                 if (words[i] == 0) {
155                         if (cur.base == -1)
156                                 cur.base = i, cur.len = 1;
157                         else
158                                 cur.len++;
159                 } else {
160                         if (cur.base != -1) {
161                                 if (best.base == -1 || cur.len > best.len)
162                                         best = cur;
163                                 cur.base = -1;
164                         }
165                 }
166         }
167         if (cur.base != -1) {
168                 if (best.base == -1 || cur.len > best.len)
169                         best = cur;
170         }
171         if (best.base != -1 && best.len < 2)
172                 best.base = -1;
173
174         /*
175          * Format the result.
176          */
177         tp = tmp;
178         for (i = 0; i < (IN6ADDRSZ / INT16SZ); i++) {
179                 /* Are we inside the best run of 0x00's? */
180                 if (best.base != -1 && i >= best.base &&
181                     i < (best.base + best.len)) {
182                         if (i == best.base)
183                                 *tp++ = ':';
184                         continue;
185                 }
186                 /* Are we following an initial run of 0x00s or any real hex? */
187                 if (i != 0)
188                         *tp++ = ':';
189                 /* Is this address an encapsulated IPv4? */
190                 if (i == 6 && best.base == 0 &&
191                     (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
192                         if (!inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)))
193                                 return (NULL);
194                         tp += strlen(tp);
195                         break;
196                 }
197                 tp += sprintf(tp, "%x", words[i]);
198         }
199         /* Was it a trailing run of 0x00's? */
200         if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ))
201                 *tp++ = ':';
202         *tp++ = '\0';
203
204         /*
205          * Check for overflow, copy, and we're done.
206          */
207         if ((size_t)(tp - tmp) > size) {
208                 errno = ENOSPC;
209                 return (NULL);
210         }
211         strcpy(dst, tmp);
212         return (dst);
213 }
214 #endif /* AF_INET6 */
215
216 #endif /* !HAVE_INET_NTOP */