Protect AF_INET6 references with #ifdef INET6
[rsync/rsync.git] / lib / inet_pton.c
1 /*
2  * Copyright (C) 1996-2001  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
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.
16  */
17
18 #include "rsync.h"
19
20 #define NS_INT16SZ       2
21 #define NS_INADDRSZ      4
22 #define NS_IN6ADDRSZ    16
23
24 /*
25  * WARNING: Don't even consider trying to compile this on a system where
26  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
27  */
28
29 static int inet_pton4(const char *src, unsigned char *dst);
30 static int inet_pton6(const char *src, unsigned char *dst);
31
32 /* int
33  * isc_net_pton(af, src, dst)
34  *      convert from presentation format (which usually means ASCII printable)
35  *      to network format (which is usually some kind of binary format).
36  * return:
37  *      1 if the address was valid for the specified address family
38  *      0 if the address wasn't valid (`dst' is untouched in this case)
39  *      -1 if some other error occurred (`dst' is untouched in this case, too)
40  * author:
41  *      Paul Vixie, 1996.
42  */
43 int
44 isc_net_pton(af, src, dst)
45         int af;
46         const char *src;
47         void *dst;
48 {
49         switch (af) {
50         case AF_INET:
51                 return (inet_pton4(src, dst));
52 #ifdef INET6
53         case AF_INET6:
54                 return (inet_pton6(src, dst));
55 #endif
56         default:
57                 errno = EAFNOSUPPORT;
58                 return (-1);
59         }
60         /* NOTREACHED */
61 }
62
63 /* int
64  * inet_pton4(src, dst)
65  *      like inet_aton() but without all the hexadecimal and shorthand.
66  * return:
67  *      1 if `src' is a valid dotted quad, else 0.
68  * notice:
69  *      does not touch `dst' unless it's returning 1.
70  * author:
71  *      Paul Vixie, 1996.
72  */
73 static int
74 inet_pton4(src, dst)
75         const char *src;
76         unsigned char *dst;
77 {
78         static const char digits[] = "0123456789";
79         int saw_digit, octets, ch;
80         unsigned char tmp[NS_INADDRSZ], *tp;
81
82         saw_digit = 0;
83         octets = 0;
84         *(tp = tmp) = 0;
85         while ((ch = *src++) != '\0') {
86                 const char *pch;
87
88                 if ((pch = strchr(digits, ch)) != NULL) {
89                         unsigned int new = *tp * 10 + (pch - digits);
90
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;
98                         }
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);
106         }
107         if (octets < 4)
108                 return (0);
109         memcpy(dst, tmp, NS_INADDRSZ);
110         return (1);
111 }
112
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.
125  */
126 #ifdef INET6
127 static int
128 inet_pton6(src, dst)
129         const char *src;
130         unsigned char *dst;
131 {
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, saw_xdigit;
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         saw_xdigit = 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 (val > 0xffff)
158                                 return (0);
159                         saw_xdigit = 1;
160                         continue;
161                 }
162                 if (ch == ':') {
163                         curtok = src;
164                         if (!saw_xdigit) {
165                                 if (colonp)
166                                         return (0);
167                                 colonp = tp;
168                                 continue;
169                         }
170                         if (tp + NS_INT16SZ > endp)
171                                 return (0);
172                         *tp++ = (unsigned char) (val >> 8) & 0xff;
173                         *tp++ = (unsigned char) val & 0xff;
174                         saw_xdigit = 0;
175                         val = 0;
176                         continue;
177                 }
178                 if (ch == '.' && ((tp + NS_INADDRSZ) <= endp) &&
179                     inet_pton4(curtok, tp) > 0) {
180                         tp += NS_INADDRSZ;
181                         saw_xdigit = 0;
182                         break;  /* '\0' was seen by inet_pton4(). */
183                 }
184                 return (0);
185         }
186         if (saw_xdigit) {
187                 if (tp + NS_INT16SZ > endp)
188                         return (0);
189                 *tp++ = (unsigned char) (val >> 8) & 0xff;
190                 *tp++ = (unsigned char) val & 0xff;
191         }
192         if (colonp != NULL) {
193                 /*
194                  * Since some memmove()'s erroneously fail to handle
195                  * overlapping regions, we'll do the shift by hand.
196                  */
197                 const int n = tp - colonp;
198                 int i;
199
200                 for (i = 1; i <= n; i++) {
201                         endp[- i] = colonp[n - i];
202                         colonp[n - i] = 0;
203                 }
204                 tp = endp;
205         }
206         if (tp != endp)
207                 return (0);
208         memcpy(dst, tmp, NS_IN6ADDRSZ);
209         return (1);
210 }
211 #endif