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