Removed inclusion of <sys/types.h> in .c-files
[platform/upstream/c-ares.git] / inet_ntop.c
1 /* $Id$ */
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 "setup.h"
20
21 #if defined(WIN32) && !defined(WATT32)
22 #include "nameser.h"
23 #else
24 #ifdef HAVE_SYS_SOCKET_H
25 #include <sys/socket.h>
26 #endif
27 #ifdef HAVE_NETINET_IN_H
28 #include <netinet/in.h>
29 #endif
30 #ifdef HAVE_ARPA_NAMESER_H
31 #include <arpa/nameser.h>
32 #endif
33 #ifdef HAVE_ARPA_INET_H
34 #include <arpa/inet.h>
35 #endif
36 #endif
37
38 #include <ctype.h>
39 #include <errno.h>
40 #include <stdio.h>
41 #include <string.h>
42 #include <stdlib.h>
43
44 #include "ares_ipv6.h"
45 #include "inet_ntop.h"
46
47
48 #if !defined(HAVE_INET_NTOP) || !defined(HAVE_INET_NTOP_IPV6)
49
50 #ifdef SPRINTF_CHAR
51 # define SPRINTF(x) strlen(sprintf/**/x)
52 #else
53 # define SPRINTF(x) ((size_t)sprintf x)
54 #endif
55
56 /*
57  * WARNING: Don't even consider trying to compile this on a system where
58  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
59  */
60
61 static const char *inet_ntop4(const unsigned char *src, char *dst, size_t size);
62 static const char *inet_ntop6(const unsigned char *src, char *dst, size_t size);
63
64 /* char *
65  * inet_ntop(af, src, dst, size)
66  *     convert a network format address to presentation format.
67  * return:
68  *     pointer to presentation format address (`dst'), or NULL (see errno).
69  * note:
70  *      On Windows we store the error in the thread errno, not
71  *      in the winsock error code. This is to avoid loosing the
72  *      actual last winsock error. So use macro ERRNO to fetch the
73  *      errno this funtion sets when returning NULL, not SOCKERRNO.
74  * author:
75  *     Paul Vixie, 1996.
76  */
77 const char *
78 ares_inet_ntop(int af, const void *src, char *dst, size_t size)
79 {
80   switch (af)
81     {
82     case AF_INET:
83       return (inet_ntop4(src, dst, size));
84     case AF_INET6:
85       return (inet_ntop6(src, dst, size));
86     default:
87       SET_ERRNO(EAFNOSUPPORT);
88       return (NULL);
89     }
90   /* NOTREACHED */
91 }
92
93 /* const char *
94  * inet_ntop4(src, dst, size)
95  *     format an IPv4 address, more or less like inet_ntoa()
96  * return:
97  *     `dst' (as a const)
98  * notes:
99  *     (1) uses no statics
100  *     (2) takes a unsigned char* not an in_addr as input
101  * author:
102  *     Paul Vixie, 1996.
103  */
104 static const char *
105 inet_ntop4(const unsigned char *src, char *dst, 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     {
112       SET_ERRNO(ENOSPC);
113       return (NULL);
114     }
115     strcpy(dst, tmp);
116     return (dst);
117 }
118
119 /* const char *
120  * inet_ntop6(src, dst, size)
121  *    convert IPv6 binary address into presentation (printable) format
122  * author:
123  *    Paul Vixie, 1996.
124  */
125 static const char *
126 inet_ntop6(const unsigned char *src, char *dst, size_t size)
127 {
128   /*
129    * Note that int32_t and int16_t need only be "at least" large enough
130    * to contain a value of the specified size.  On some systems, like
131    * Crays, there is no such thing as an integer variable with 16 bits.
132    * Keep this in mind if you think this function should have been coded
133    * to use pointer overlays.  All the world's not a VAX.
134    */
135   char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")];
136   char *tp;
137   struct {
138     long base;
139     long len;
140   } best, cur;
141   unsigned long words[NS_IN6ADDRSZ / NS_INT16SZ];
142   int i;
143
144   /*
145    * Preprocess:
146    *  Copy the input (bytewise) array into a wordwise array.
147    *  Find the longest run of 0x00's in src[] for :: shorthanding.
148    */
149   memset(words, '\0', sizeof(words));
150   for (i = 0; i < NS_IN6ADDRSZ; i++)
151       words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
152
153   best.base = -1;
154   cur.base = -1;
155   best.len = 0;
156   cur.len = 0;
157
158   for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++)
159     {
160       if (words[i] == 0)
161         {
162           if (cur.base == -1)
163             cur.base = i, cur.len = 1;
164           else
165             cur.len++;
166         }
167       else
168         {
169           if (cur.base != -1)
170             {
171               if (best.base == -1 || cur.len > best.len)
172                 best = cur;
173               cur.base = -1;
174             }
175         }
176     }
177   if (cur.base != -1)
178     {
179       if (best.base == -1 || cur.len > best.len)
180         best = cur;
181     }
182   if (best.base != -1 && best.len < 2)
183     best.base = -1;
184
185   /*
186    * Format the result.
187    */
188   tp = tmp;
189   for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++)
190     {
191       /* Are we inside the best run of 0x00's? */
192       if (best.base != -1 && i >= best.base &&
193           i < (best.base + best.len))
194         {
195           if (i == best.base)
196              *tp++ = ':';
197           continue;
198         }
199       /* Are we following an initial run of 0x00s or any real hex? */
200       if (i != 0)
201         *tp++ = ':';
202       /* Is this address an encapsulated IPv4? */
203       if (i == 6 && best.base == 0 &&
204           (best.len == 6 || (best.len == 5 && words[5] == 0xffff)))
205         {
206           if (!inet_ntop4(src+12, tp, sizeof(tmp) - (tp - tmp)))
207             return (NULL);
208           tp += strlen(tp);
209           break;
210         }
211         tp += SPRINTF((tp, "%lx", words[i]));
212     }
213
214   /* Was it a trailing run of 0x00's? */
215   if (best.base != -1 && (best.base + best.len) == (NS_IN6ADDRSZ / NS_INT16SZ))
216     *tp++ = ':';
217   *tp++ = '\0';
218
219   /*
220    * Check for overflow, copy, and we're done.
221    */
222   if ((size_t)(tp - tmp) > size)
223     {
224       SET_ERRNO(ENOSPC);
225       return (NULL);
226     }
227   strcpy(dst, tmp);
228   return (dst);
229 }
230 #endif
231