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