2 * Copyright (C) 1996-2001 Internet Software Consortium.
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.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
9 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
10 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
11 * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
13 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
14 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
15 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #include "../git-compat-util.h"
29 #define NS_IN6ADDRSZ 16
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.
37 static int inet_pton4(const char *src, unsigned char *dst);
39 static int inet_pton6(const char *src, unsigned char *dst);
43 * inet_pton4(src, dst)
44 * like inet_aton() but without all the hexadecimal and shorthand.
46 * 1 if `src' is a valid dotted quad, else 0.
48 * does not touch `dst' unless it's returning 1.
53 inet_pton4(const char *src, unsigned char *dst)
55 static const char digits[] = "0123456789";
56 int saw_digit, octets, ch;
57 unsigned char tmp[NS_INADDRSZ], *tp;
62 while ((ch = *src++) != '\0') {
65 if ((pch = strchr(digits, ch)) != NULL) {
66 unsigned int new = *tp * 10 + (pch - digits);
76 } else if (ch == '.' && saw_digit) {
86 memcpy(dst, tmp, NS_INADDRSZ);
91 * inet_pton6(src, dst)
92 * convert presentation level address to network order binary form.
94 * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
96 * (1) does not touch `dst' unless it's returning 1.
97 * (2) :: in a full address is silently ignored.
99 * inspired by Mark Andrews.
106 inet_pton6(const char *src, unsigned char *dst)
108 static const char xdigits_l[] = "0123456789abcdef",
109 xdigits_u[] = "0123456789ABCDEF";
110 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp;
111 const char *xdigits, *curtok;
115 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
116 endp = tp + NS_IN6ADDRSZ;
118 /* Leading :: requires some special handling. */
125 while ((ch = *src++) != '\0') {
128 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
129 pch = strchr((xdigits = xdigits_u), ch);
132 val |= (pch - xdigits);
146 if (tp + NS_INT16SZ > endp)
148 *tp++ = (unsigned char) (val >> 8) & 0xff;
149 *tp++ = (unsigned char) val & 0xff;
154 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
155 inet_pton4(curtok, tp) > 0) {
158 break; /* '\0' was seen by inet_pton4(). */
163 if (tp + NS_INT16SZ > endp)
165 *tp++ = (unsigned char) (val >> 8) & 0xff;
166 *tp++ = (unsigned char) val & 0xff;
168 if (colonp != NULL) {
170 * Since some memmove()'s erroneously fail to handle
171 * overlapping regions, we'll do the shift by hand.
173 const int n = tp - colonp;
176 for (i = 1; i <= n; i++) {
177 endp[- i] = colonp[n - i];
184 memcpy(dst, tmp, NS_IN6ADDRSZ);
190 * isc_net_pton(af, src, dst)
191 * convert from presentation format (which usually means ASCII printable)
192 * to network format (which is usually some kind of binary format).
194 * 1 if the address was valid for the specified address family
195 * 0 if the address wasn't valid (`dst' is untouched in this case)
196 * -1 if some other error occurred (`dst' is untouched in this case, too)
201 inet_pton(int af, const char *src, void *dst)
205 return (inet_pton4(src, dst));
208 return (inet_pton6(src, dst));
211 errno = EAFNOSUPPORT;