Move zlib version check to wsutil
[metze/wireshark/wip.git] / wsutil / inet_pton.c
1 /*
2  * Copyright (c) 1996,1999 by Internet Software Consortium.
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
9  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
10  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
11  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
12  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
13  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
14  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
15  * SOFTWARE.
16  */
17
18 #include "config.h"
19
20 #include "inet_addr-int.h"
21
22 #include <string.h>
23 #include <errno.h>
24
25 #include <glib.h>
26
27 #include <wsutil/ws_diag_control.h>
28
29 #ifndef __P
30 #define __P(args)       args
31 #endif
32
33 #ifndef NS_INADDRSZ
34 #define NS_INADDRSZ     4
35 #endif
36 #ifndef NS_IN6ADDRSZ
37 #define NS_IN6ADDRSZ    16
38 #endif
39 #ifndef NS_INT16SZ
40 #define NS_INT16SZ      2
41 #endif
42
43 DIAG_OFF(c++-compat)
44
45 /*
46  * WARNING: Don't even consider trying to compile this on a system where
47  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
48  */
49
50 #ifdef AF_INET
51 static int      inet_pton4 __P((const char *src, u_char *dst));
52 #endif
53 #ifdef AF_INET6
54 static int      inet_pton6 __P((const char *src, u_char *dst));
55 #endif
56
57 /* int
58  * inet_pton(af, src, dst)
59  *      convert from presentation format (which usually means ASCII printable)
60  *      to network format (which is usually some kind of binary format).
61  * return:
62  *      1 if the address was valid for the specified address family
63  *      0 if the address wasn't valid (`dst' is untouched in this case)
64  *      -1 if some other error occurred (`dst' is untouched in this case, too)
65  * author:
66  *      Paul Vixie, 1996.
67  */
68 int
69 inet_pton(int af, const char *src, void *dst)
70 {
71         switch (af) {
72 #ifdef AF_INET
73         case AF_INET:
74                 return (inet_pton4(src, dst));
75 #endif
76 #ifdef AF_INET6
77         case AF_INET6:
78                 return (inet_pton6(src, dst));
79 #endif
80         default:
81                 errno = EAFNOSUPPORT;
82                 return (-1);
83         }
84         /* NOTREACHED */
85 }
86
87 #ifdef AF_INET
88 /* int
89  * inet_pton4(src, dst)
90  *      like inet_aton() but without all the hexadecimal and shorthand.
91  * return:
92  *      1 if `src' is a valid dotted quad, else 0.
93  * notice:
94  *      does not touch `dst' unless it's returning 1.
95  * author:
96  *      Paul Vixie, 1996.
97  */
98 static int
99 inet_pton4(const char *src, u_char *dst)
100 {
101         static const char digits[] = "0123456789";
102         int saw_digit, octets, ch;
103         u_char tmp[NS_INADDRSZ], *tp;
104
105         saw_digit = 0;
106         octets = 0;
107         *(tp = tmp) = 0;
108         while ((ch = *src++) != '\0') {
109                 const char *pch;
110
111                 if ((pch = strchr(digits, ch)) != NULL) {
112                         size_t new = *tp * 10 + (pch - digits);
113
114                         if (new > 255)
115                                 return (0);
116                         *tp = (u_char) new;
117                         if (! saw_digit) {
118                                 if (++octets > 4)
119                                         return (0);
120                                 saw_digit = 1;
121                         }
122                 } else if (ch == '.' && saw_digit) {
123                         if (octets == 4)
124                                 return (0);
125                         *++tp = 0;
126                         saw_digit = 0;
127                 } else
128                         return (0);
129         }
130         if (octets < 4)
131                 return (0);
132         memcpy(dst, tmp, NS_INADDRSZ);
133         return (1);
134 }
135 #endif
136
137 #ifdef AF_INET6
138 /* int
139  * inet_pton6(src, dst)
140  *      convert presentation level address to network order binary form.
141  * return:
142  *      1 if `src' is a valid [RFC1884 2.2] address, else 0.
143  * notice:
144  *      (1) does not touch `dst' unless it's returning 1.
145  *      (2) :: in a full address is silently ignored.
146  * credit:
147  *      inspired by Mark Andrews.
148  * author:
149  *      Paul Vixie, 1996.
150  */
151 static int
152 inet_pton6(const char *src, u_char *dst)
153 {
154         static const char xdigits_l[] = "0123456789abcdef",
155                           xdigits_u[] = "0123456789ABCDEF";
156         u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp;
157         const char *xdigits, *curtok;
158         int ch, saw_xdigit;
159         u_int val;
160
161         memset((tp = tmp), '\0', NS_IN6ADDRSZ);
162         endp = tp + NS_IN6ADDRSZ;
163         colonp = NULL;
164         /* Leading :: requires some special handling. */
165         if (*src == ':')
166                 if (*++src != ':')
167                         return (0);
168         curtok = src;
169         saw_xdigit = 0;
170         val = 0;
171         while ((ch = *src++) != '\0') {
172                 const char *pch;
173
174                 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
175                         pch = strchr((xdigits = xdigits_u), ch);
176                 if (pch != NULL) {
177                         val <<= 4;
178                         val |= (pch - xdigits);
179                         if (val > 0xffff)
180                                 return (0);
181                         saw_xdigit = 1;
182                         continue;
183                 }
184                 if (ch == ':') {
185                         curtok = src;
186                         if (!saw_xdigit) {
187                                 if (colonp)
188                                         return (0);
189                                 colonp = tp;
190                                 continue;
191                         } else if (*src == '\0') {
192                                 return (0);
193                         }
194                         if (tp + NS_INT16SZ > endp)
195                                 return (0);
196                         *tp++ = (u_char) (val >> 8) & 0xff;
197                         *tp++ = (u_char) val & 0xff;
198                         saw_xdigit = 0;
199                         val = 0;
200                         continue;
201                 }
202                 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
203                     inet_pton4(curtok, tp) > 0) {
204                         tp += NS_INADDRSZ;
205                         saw_xdigit = 0;
206                         break;  /* '\0' was seen by inet_pton4(). */
207                 }
208                 return (0);
209         }
210         if (saw_xdigit) {
211                 if (tp + NS_INT16SZ > endp)
212                         return (0);
213                 *tp++ = (u_char) (val >> 8) & 0xff;
214                 *tp++ = (u_char) val & 0xff;
215         }
216         if (colonp != NULL) {
217                 /*
218                  * Since some memmove()'s erroneously fail to handle
219                  * overlapping regions, we'll do the shift by hand.
220                  */
221                 const int n = (int) (tp - colonp);
222                 int i;
223
224                 if (tp == endp)
225                         return (0);
226                 for (i = 1; i <= n; i++) {
227                         endp[- i] = colonp[n - i];
228                         colonp[n - i] = 0;
229                 }
230                 tp = endp;
231         }
232         if (tp != endp)
233                 return (0);
234         memcpy(dst, tmp, NS_IN6ADDRSZ);
235         return (1);
236 }
237 #endif
238
239 /*
240  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
241  *
242  * Local variables:
243  * c-basic-offset: 8
244  * tab-width: 8
245  * indent-tabs-mode: t
246  * End:
247  *
248  * vi: set shiftwidth=8 tabstop=8 noexpandtab:
249  * :indentSize=8:tabSize=8:noTabs=false:
250  */