Handle i4btrace captures if they're from a machine with the opposite
[obnox/wireshark/wip.git] / 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 #if defined(LIBC_SCCS) && !defined(lint)
19 static char rcsid[] = "$Id: inet_pton.c,v 1.2 1999/10/14 06:55:10 guy Exp $";
20 #endif /* LIBC_SCCS and not lint */
21
22 #include <sys/param.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <netinet/in.h>
26 #include <arpa/inet.h>
27 #include <arpa/nameser.h>
28 #include <string.h>
29 #include <errno.h>
30
31 #include "inet_v6defs.h"
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 /*
44  * WARNING: Don't even consider trying to compile this on a system where
45  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
46  */
47
48 #ifdef AF_INET
49 static int      inet_pton4 __P((const char *src, u_char *dst));
50 #endif
51 #ifdef AF_INET6
52 static int      inet_pton6 __P((const char *src, u_char *dst));
53 #endif
54
55 /* int
56  * inet_pton(af, src, dst)
57  *      convert from presentation format (which usually means ASCII printable)
58  *      to network format (which is usually some kind of binary format).
59  * return:
60  *      1 if the address was valid for the specified address family
61  *      0 if the address wasn't valid (`dst' is untouched in this case)
62  *      -1 if some other error occurred (`dst' is untouched in this case, too)
63  * author:
64  *      Paul Vixie, 1996.
65  */
66 int
67 inet_pton(af, src, dst)
68         int af;
69         const char *src;
70         void *dst;
71 {
72         switch (af) {
73 #ifdef AF_INET
74         case AF_INET:
75                 return (inet_pton4(src, dst));
76 #endif
77 #ifdef AF_INET6
78         case AF_INET6:
79                 return (inet_pton6(src, dst));
80 #endif
81         default:
82                 errno = EAFNOSUPPORT;
83                 return (-1);
84         }
85         /* NOTREACHED */
86 }
87
88 #ifdef AF_INET
89 /* int
90  * inet_pton4(src, dst)
91  *      like inet_aton() but without all the hexadecimal and shorthand.
92  * return:
93  *      1 if `src' is a valid dotted quad, else 0.
94  * notice:
95  *      does not touch `dst' unless it's returning 1.
96  * author:
97  *      Paul Vixie, 1996.
98  */
99 static int
100 inet_pton4(src, dst)
101         const char *src;
102         u_char *dst;
103 {
104         static const char digits[] = "0123456789";
105         int saw_digit, octets, ch;
106         u_char tmp[NS_INADDRSZ], *tp;
107
108         saw_digit = 0;
109         octets = 0;
110         *(tp = tmp) = 0;
111         while ((ch = *src++) != '\0') {
112                 const char *pch;
113
114                 if ((pch = strchr(digits, ch)) != NULL) {
115                         u_int new = *tp * 10 + (pch - digits);
116
117                         if (new > 255)
118                                 return (0);
119                         *tp = new;
120                         if (! saw_digit) {
121                                 if (++octets > 4)
122                                         return (0);
123                                 saw_digit = 1;
124                         }
125                 } else if (ch == '.' && saw_digit) {
126                         if (octets == 4)
127                                 return (0);
128                         *++tp = 0;
129                         saw_digit = 0;
130                 } else
131                         return (0);
132         }
133         if (octets < 4)
134                 return (0);
135         memcpy(dst, tmp, NS_INADDRSZ);
136         return (1);
137 }
138 #endif
139
140 #ifdef AF_INET6
141 /* int
142  * inet_pton6(src, dst)
143  *      convert presentation level address to network order binary form.
144  * return:
145  *      1 if `src' is a valid [RFC1884 2.2] address, else 0.
146  * notice:
147  *      (1) does not touch `dst' unless it's returning 1.
148  *      (2) :: in a full address is silently ignored.
149  * credit:
150  *      inspired by Mark Andrews.
151  * author:
152  *      Paul Vixie, 1996.
153  */
154 static int
155 inet_pton6(src, dst)
156         const char *src;
157         u_char *dst;
158 {
159         static const char xdigits_l[] = "0123456789abcdef",
160                           xdigits_u[] = "0123456789ABCDEF";
161         u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp;
162         const char *xdigits, *curtok;
163         int ch, saw_xdigit;
164         u_int val;
165
166         memset((tp = tmp), '\0', NS_IN6ADDRSZ);
167         endp = tp + NS_IN6ADDRSZ;
168         colonp = NULL;
169         /* Leading :: requires some special handling. */
170         if (*src == ':')
171                 if (*++src != ':')
172                         return (0);
173         curtok = src;
174         saw_xdigit = 0;
175         val = 0;
176         while ((ch = *src++) != '\0') {
177                 const char *pch;
178
179                 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
180                         pch = strchr((xdigits = xdigits_u), ch);
181                 if (pch != NULL) {
182                         val <<= 4;
183                         val |= (pch - xdigits);
184                         if (val > 0xffff)
185                                 return (0);
186                         saw_xdigit = 1;
187                         continue;
188                 }
189                 if (ch == ':') {
190                         curtok = src;
191                         if (!saw_xdigit) {
192                                 if (colonp)
193                                         return (0);
194                                 colonp = tp;
195                                 continue;
196                         } else if (*src == '\0') {
197                                 return (0);
198                         }
199                         if (tp + NS_INT16SZ > endp)
200                                 return (0);
201                         *tp++ = (u_char) (val >> 8) & 0xff;
202                         *tp++ = (u_char) val & 0xff;
203                         saw_xdigit = 0;
204                         val = 0;
205                         continue;
206                 }
207                 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
208                     inet_pton4(curtok, tp) > 0) {
209                         tp += NS_INADDRSZ;
210                         saw_xdigit = 0;
211                         break;  /* '\0' was seen by inet_pton4(). */
212                 }
213                 return (0);
214         }
215         if (saw_xdigit) {
216                 if (tp + NS_INT16SZ > endp)
217                         return (0);
218                 *tp++ = (u_char) (val >> 8) & 0xff;
219                 *tp++ = (u_char) val & 0xff;
220         }
221         if (colonp != NULL) {
222                 /*
223                  * Since some memmove()'s erroneously fail to handle
224                  * overlapping regions, we'll do the shift by hand.
225                  */
226                 const int n = tp - colonp;
227                 int i;
228
229                 if (tp == endp)
230                         return (0);
231                 for (i = 1; i <= n; i++) {
232                         endp[- i] = colonp[n - i];
233                         colonp[n - i] = 0;
234                 }
235                 tp = endp;
236         }
237         if (tp != endp)
238                 return (0);
239         memcpy(dst, tmp, NS_IN6ADDRSZ);
240         return (1);
241 }
242 #endif