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