MFC r1.7 (HEAD):
[dragonfly.git] / contrib / bind-9.3 / lib / lwres / lwinetpton.c
blobe24334b1c82d8bd42f84bcc892229f3c0c314832
1 /*
2 * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (C) 1996-2001 Internet Software Consortium.
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.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 * PERFORMANCE OF THIS SOFTWARE.
18 #if defined(LIBC_SCCS) && !defined(lint)
19 static char rcsid[] = "$Id: lwinetpton.c,v 1.6.206.3 2005/03/31 23:56:15 marka Exp $";
20 #endif /* LIBC_SCCS and not lint */
22 #include <config.h>
24 #include <errno.h>
25 #include <string.h>
27 #include <lwres/net.h>
29 #define NS_INT16SZ 2
30 #define NS_INADDRSZ 4
31 #define NS_IN6ADDRSZ 16
34 * WARNING: Don't even consider trying to compile this on a system where
35 * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
38 static int inet_pton4(const char *src, unsigned char *dst);
39 static int inet_pton6(const char *src, unsigned char *dst);
41 /* int
42 * lwres_net_pton(af, src, dst)
43 * convert from presentation format (which usually means ASCII printable)
44 * to network format (which is usually some kind of binary format).
45 * return:
46 * 1 if the address was valid for the specified address family
47 * 0 if the address wasn't valid (`dst' is untouched in this case)
48 * -1 if some other error occurred (`dst' is untouched in this case, too)
49 * author:
50 * Paul Vixie, 1996.
52 int
53 lwres_net_pton(int af, const char *src, void *dst) {
54 switch (af) {
55 case AF_INET:
56 return (inet_pton4(src, dst));
57 case AF_INET6:
58 return (inet_pton6(src, dst));
59 default:
60 errno = EAFNOSUPPORT;
61 return (-1);
63 /* NOTREACHED */
66 /* int
67 * inet_pton4(src, dst)
68 * like inet_aton() but without all the hexadecimal and shorthand.
69 * return:
70 * 1 if `src' is a valid dotted quad, else 0.
71 * notice:
72 * does not touch `dst' unless it's returning 1.
73 * author:
74 * Paul Vixie, 1996.
76 static int
77 inet_pton4(const char *src, unsigned char *dst) {
78 static const char digits[] = "0123456789";
79 int saw_digit, octets, ch;
80 unsigned char tmp[NS_INADDRSZ], *tp;
82 saw_digit = 0;
83 octets = 0;
84 *(tp = tmp) = 0;
85 while ((ch = *src++) != '\0') {
86 const char *pch;
88 if ((pch = strchr(digits, ch)) != NULL) {
89 unsigned int new = *tp * 10 + (pch - digits);
91 if (new > 255)
92 return (0);
93 *tp = new;
94 if (! saw_digit) {
95 if (++octets > 4)
96 return (0);
97 saw_digit = 1;
99 } else if (ch == '.' && saw_digit) {
100 if (octets == 4)
101 return (0);
102 *++tp = 0;
103 saw_digit = 0;
104 } else
105 return (0);
107 if (octets < 4)
108 return (0);
109 memcpy(dst, tmp, NS_INADDRSZ);
110 return (1);
113 /* int
114 * inet_pton6(src, dst)
115 * convert presentation level address to network order binary form.
116 * return:
117 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
118 * notice:
119 * (1) does not touch `dst' unless it's returning 1.
120 * (2) :: in a full address is silently ignored.
121 * credit:
122 * inspired by Mark Andrews.
123 * author:
124 * Paul Vixie, 1996.
126 static int
127 inet_pton6(const char *src, unsigned char *dst) {
128 static const char xdigits_l[] = "0123456789abcdef",
129 xdigits_u[] = "0123456789ABCDEF";
130 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp;
131 const char *xdigits, *curtok;
132 int ch, seen_xdigits;
133 unsigned int val;
135 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
136 endp = tp + NS_IN6ADDRSZ;
137 colonp = NULL;
138 /* Leading :: requires some special handling. */
139 if (*src == ':')
140 if (*++src != ':')
141 return (0);
142 curtok = src;
143 seen_xdigits = 0;
144 val = 0;
145 while ((ch = *src++) != '\0') {
146 const char *pch;
148 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
149 pch = strchr((xdigits = xdigits_u), ch);
150 if (pch != NULL) {
151 val <<= 4;
152 val |= (pch - xdigits);
153 if (++seen_xdigits > 4)
154 return (0);
155 continue;
157 if (ch == ':') {
158 curtok = src;
159 if (!seen_xdigits) {
160 if (colonp)
161 return (0);
162 colonp = tp;
163 continue;
165 if (tp + NS_INT16SZ > endp)
166 return (0);
167 *tp++ = (unsigned char) (val >> 8) & 0xff;
168 *tp++ = (unsigned char) val & 0xff;
169 seen_xdigits = 0;
170 val = 0;
171 continue;
173 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
174 inet_pton4(curtok, tp) > 0) {
175 tp += NS_INADDRSZ;
176 seen_xdigits = 0;
177 break; /* '\0' was seen by inet_pton4(). */
179 return (0);
181 if (seen_xdigits) {
182 if (tp + NS_INT16SZ > endp)
183 return (0);
184 *tp++ = (unsigned char) (val >> 8) & 0xff;
185 *tp++ = (unsigned char) val & 0xff;
187 if (colonp != NULL) {
189 * Since some memmove()'s erroneously fail to handle
190 * overlapping regions, we'll do the shift by hand.
192 const int n = tp - colonp;
193 int i;
195 for (i = 1; i <= n; i++) {
196 endp[- i] = colonp[n - i];
197 colonp[n - i] = 0;
199 tp = endp;
201 if (tp != endp)
202 return (0);
203 memcpy(dst, tmp, NS_IN6ADDRSZ);
204 return (1);