inet_aton.c
上传用户:zm130024
上传日期:2007-01-04
资源大小:432k
文件大小:6k
源码类别:

代理服务器

开发平台:

Unix_Linux

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