]> CyberLeo.Net >> Repos - FreeBSD/releng/9.3.git/blob - contrib/bind9/lib/isc/inet_aton.c
Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.
[FreeBSD/releng/9.3.git] / contrib / bind9 / lib / isc / inet_aton.c
1 /*
2  * Portions Copyright (C) 2004, 2005, 2007, 2008, 2012-2014  Internet Systems Consortium, Inc. ("ISC")
3  * Portions 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 /*
19  * Copyright (c) 1983, 1990, 1993
20  *    The Regents of the University of California.  All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the above copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. Neither the name of the University nor the names of its contributors
31  *    may be used to endorse or promote products derived from this software
32  *    without specific prior written permission.
33  *
34  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
35  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44  * SUCH DAMAGE.
45  */
46
47 /*
48  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
49  *
50  * Permission to use, copy, modify, and distribute this software for any
51  * purpose with or without fee is hereby granted, provided that the above
52  * copyright notice and this permission notice appear in all copies, and that
53  * the name of Digital Equipment Corporation not be used in advertising or
54  * publicity pertaining to distribution of the document or software without
55  * specific, written prior permission.
56  *
57  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
58  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
59  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
60  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
61  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
62  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
63  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
64  * SOFTWARE.
65  */
66 /*! \file */
67
68 #if defined(LIBC_SCCS) && !defined(lint)
69 static char sccsid[] = "@(#)inet_addr.c 8.1 (Berkeley) 6/17/93";
70 static char rcsid[] = "$Id: inet_aton.c,v 1.23 2008/12/01 23:47:45 tbox Exp $";
71 #endif /* LIBC_SCCS and not lint */
72
73 #include <config.h>
74
75 #include <ctype.h>
76 #include <stddef.h>             /* Required for NULL. */
77
78 #include <isc/types.h>
79 #include <isc/net.h>
80
81 /*%
82  * Check whether "cp" is a valid ascii representation
83  * of an Internet address and convert to a binary address.
84  * Returns 1 if the address is valid, 0 if not.
85  * This replaces inet_addr, the return value from which
86  * cannot distinguish between failure and a local broadcast address.
87  */
88 int
89 isc_net_aton(const char *cp, struct in_addr *addr) {
90         isc_uint32_t val;
91         int base;
92         ptrdiff_t n;
93         unsigned char c;
94         isc_uint8_t parts[4];
95         isc_uint8_t *pp = parts;
96         int digit;
97
98         c = *cp;
99         for (;;) {
100                 /*
101                  * Collect number up to ``.''.
102                  * Values are specified as for C:
103                  * 0x=hex, 0=octal, isdigit=decimal.
104                  */
105                 if (!isdigit(c & 0xff))
106                         return (0);
107                 val = 0; base = 10; digit = 0;
108                 if (c == '0') {
109                         c = *++cp;
110                         if (c == 'x' || c == 'X')
111                                 base = 16, c = *++cp;
112                         else {
113                                 base = 8;
114                                 digit = 1;
115                         }
116                 }
117                 for (;;) {
118                         /*
119                          * isascii() is valid for all integer values, and
120                          * when it is true, c is known to be in scope
121                          * for isdigit().  No cast necessary.  Similar
122                          * comment applies for later ctype uses.
123                          */
124                         if (isascii(c) && isdigit(c)) {
125                                 if (base == 8 && (c == '8' || c == '9'))
126                                         return (0);
127                                 val = (val * base) + (c - '0');
128                                 c = *++cp;
129                                 digit = 1;
130                         } else if (base == 16 && isascii(c) && isxdigit(c)) {
131                                 val = (val << 4) |
132                                         (c + 10 - (islower(c) ? 'a' : 'A'));
133                                 c = *++cp;
134                                 digit = 1;
135                         } else
136                                 break;
137                 }
138                 if (c == '.') {
139                         /*
140                          * Internet format:
141                          *      a.b.c.d
142                          *      a.b.c   (with c treated as 16 bits)
143                          *      a.b     (with b treated as 24 bits)
144                          */
145                         if (pp >= parts + 3 || val > 0xffU)
146                                 return (0);
147                         *pp++ = (isc_uint8_t)val;
148                         c = *++cp;
149                 } else
150                         break;
151         }
152         /*
153          * Check for trailing characters.
154          */
155         if (c != '\0' && (!isascii(c) || !isspace(c)))
156                 return (0);
157         /*
158          * Did we get a valid digit?
159          */
160         if (!digit)
161                 return (0);
162         /*
163          * Concoct the address according to
164          * the number of parts specified.
165          */
166         n = pp - parts + 1;
167         switch (n) {
168         case 1:                         /* a -- 32 bits */
169                 break;
170
171         case 2:                         /* a.b -- 8.24 bits */
172                 if (val > 0xffffffU)
173                         return (0);
174                 val |= parts[0] << 24;
175                 break;
176
177         case 3:                         /* a.b.c -- 8.8.16 bits */
178                 if (val > 0xffffU)
179                         return (0);
180                 val |= (parts[0] << 24) | (parts[1] << 16);
181                 break;
182
183         case 4:                         /* a.b.c.d -- 8.8.8.8 bits */
184                 if (val > 0xffU)
185                         return (0);
186                 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8);
187                 break;
188         }
189         if (addr != NULL)
190                 addr->s_addr = htonl(val);
191
192         return (1);
193 }