blob: 4b48456f4d4f68c56d5d61c208bc9e0064480930 [file] [log] [blame]
Jari Aalto31859422009-01-12 13:36:28 +00001/* inet_aton - convert string to numeric IP address */
2
Jari Aaltobb706242000-03-17 21:46:59 +00003/* Snagged from GNU C library, version 2.0.3. */
4
5/*
6 * ++Copyright++ 1983, 1990, 1993
7 * -
8 * Copyright (c) 1983, 1990, 1993
9 * The Regents of the University of California. All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 * -
39 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
40 *
41 * Permission to use, copy, modify, and distribute this software for any
42 * purpose with or without fee is hereby granted, provided that the above
43 * copyright notice and this permission notice appear in all copies, and that
44 * the name of Digital Equipment Corporation not be used in advertising or
45 * publicity pertaining to distribution of the document or software without
46 * specific, written prior permission.
47 *
48 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
49 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
50 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
51 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
52 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
53 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
54 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
55 * SOFTWARE.
56 * -
57 * --Copyright--
58 */
59
60#if defined(LIBC_SCCS) && !defined(lint)
61static char sccsid[] = "@(#)inet_addr.c 8.1 (Berkeley) 6/17/93";
62static char rcsid[] = "$Id: inet_addr.c,v 1.5 1996/08/14 03:48:37 drepper Exp $";
63#endif /* LIBC_SCCS and not lint */
64
65#include <config.h>
66
67#if !defined (HAVE_INET_ATON) && defined (HAVE_NETWORK) && defined (HAVE_NETINET_IN_H) && defined (HAVE_ARPA_INET_H)
68
69#include <sys/types.h>
70#include <sys/param.h>
71#include <netinet/in.h>
72#include <arpa/inet.h>
73
74#ifdef HAVE_UNISTD_H
75# include <unistd.h>
76#endif
77
78#include <bashansi.h>
79#include <ctype.h>
80#include <stdc.h>
81
82#ifndef INADDR_NONE
83# define INADDR_NONE 0xffffffff
84#endif
85
86/* these are compatibility routines, not needed on recent BSD releases */
87
88#if 0
89/* Not used, not needed. */
90/*
91 * Ascii internet address interpretation routine.
92 * The value returned is in network order.
93 */
94u_long
95inet_addr(cp)
96 register const char *cp;
97{
98 struct in_addr val;
99
100 if (inet_aton(cp, &val))
101 return (val.s_addr);
102 return (INADDR_NONE);
103}
104#endif
105
106/*
107 * Check whether "cp" is a valid ascii representation
108 * of an Internet address and convert to a binary address.
109 * Returns 1 if the address is valid, 0 if not.
110 * This replaces inet_addr, the return value from which
111 * cannot distinguish between failure and a local broadcast address.
112 */
113int
114inet_aton(cp, addr)
115 register const char *cp;
116 struct in_addr *addr;
117{
118 register u_bits32_t val;
119 register int base, n;
Jari Aaltof73dda02001-11-13 17:56:06 +0000120 register unsigned char c;
Jari Aaltobb706242000-03-17 21:46:59 +0000121 u_int parts[4];
122 register u_int *pp = parts;
123
124 c = *cp;
125 for (;;) {
126 /*
127 * Collect number up to ``.''.
128 * Values are specified as for C:
129 * 0x=hex, 0=octal, isdigit=decimal.
130 */
Jari Aaltof73dda02001-11-13 17:56:06 +0000131#if 0
Jari Aaltobb706242000-03-17 21:46:59 +0000132 if (!isdigit(c))
Jari Aaltof73dda02001-11-13 17:56:06 +0000133#else
134 if (c != '0' && c != '1' && c != '2' && c != '3' && c != '4' &&
135 c != '5' && c != '6' && c != '7' && c != '8' && c != '9')
136#endif
Jari Aaltobb706242000-03-17 21:46:59 +0000137 return (0);
138 val = 0; base = 10;
139 if (c == '0') {
140 c = *++cp;
141 if (c == 'x' || c == 'X')
142 base = 16, c = *++cp;
143 else
144 base = 8;
145 }
146 for (;;) {
147 if (isascii(c) && isdigit(c)) {
148 val = (val * base) + (c - '0');
149 c = *++cp;
150 } else if (base == 16 && isascii(c) && isxdigit(c)) {
151 val = (val << 4) |
152 (c + 10 - (islower(c) ? 'a' : 'A'));
153 c = *++cp;
154 } else
155 break;
156 }
157 if (c == '.') {
158 /*
159 * Internet format:
160 * a.b.c.d
161 * a.b.c (with c treated as 16 bits)
162 * a.b (with b treated as 24 bits)
163 */
164 if (pp >= parts + 3)
165 return (0);
166 *pp++ = val;
167 c = *++cp;
168 } else
169 break;
170 }
171 /*
172 * Check for trailing characters.
173 */
174 if (c != '\0' && (!isascii(c) || !isspace(c)))
175 return (0);
176 /*
177 * Concoct the address according to
178 * the number of parts specified.
179 */
180 n = pp - parts + 1;
181 switch (n) {
182
183 case 0:
184 return (0); /* initial nondigit */
185
186 case 1: /* a -- 32 bits */
187 break;
188
189 case 2: /* a.b -- 8.24 bits */
190 if (val > 0xffffff)
191 return (0);
192 val |= parts[0] << 24;
193 break;
194
195 case 3: /* a.b.c -- 8.8.16 bits */
196 if (val > 0xffff)
197 return (0);
198 val |= (parts[0] << 24) | (parts[1] << 16);
199 break;
200
201 case 4: /* a.b.c.d -- 8.8.8.8 bits */
202 if (val > 0xff)
203 return (0);
204 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8);
205 break;
206 }
207 if (addr)
208 addr->s_addr = htonl(val);
209 return (1);
210}
211
212#endif /* !HAVE_INET_ATON */