inet_pton.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* This is from the BIND 4.9.4 release, modified to compile by itself */
  2. /* Copyright (c) 1996 by 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 DISCLAIMS
  9.  * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
  10.  * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
  11.  * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  12.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  13.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  14.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  15.  * SOFTWARE.
  16.  */
  17. #ifndef HAVE_INET_PTON
  18. #include "config_unix.h"
  19. #include "config_win32.h"
  20. #include "inet_pton.h"
  21. #define IN6ADDRSZ 16
  22. #define INADDRSZ  4
  23. #define INT16SZ  2
  24. #ifndef AF_INET6
  25. #define AF_INET6 AF_MAX+1 /* just to let this compile */
  26. #endif
  27. /*
  28.  * WARNING: Don't even consider trying to compile this on a system where
  29.  * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.
  30.  */
  31. static int inet_pton4(const char *src, u_char *dst);
  32. static int inet_pton6(const char *src, u_char *dst);
  33. /* int
  34.  * inet_pton(af, src, dst)
  35.  * convert from presentation format (which usually means ASCII printable)
  36.  * to network format (which is usually some kind of binary format).
  37.  * return:
  38.  * 1 if the address was valid for the specified address family
  39.  * 0 if the address wasn't valid (`dst' is untouched in this case)
  40.  * -1 if some other error occurred (`dst' is untouched in this case, too)
  41.  * author:
  42.  * Paul Vixie, 1996.
  43.  */
  44. int
  45. inet_pton(af, src, dst)
  46. int af;
  47. const char *src;
  48. void *dst;
  49. {
  50. switch (af) {
  51. case AF_INET:
  52. return (inet_pton4(src, dst));
  53. case AF_INET6:
  54. return (inet_pton6(src, dst));
  55. default:
  56. errno = EAFNOSUPPORT;
  57. return (-1);
  58. }
  59. /* NOTREACHED */
  60. }
  61. /* int
  62.  * inet_pton4(src, dst)
  63.  * like inet_aton() but without all the hexadecimal and shorthand.
  64.  * return:
  65.  * 1 if `src' is a valid dotted quad, else 0.
  66.  * notice:
  67.  * does not touch `dst' unless it's returning 1.
  68.  * author:
  69.  * Paul Vixie, 1996.
  70.  */
  71. static int
  72. inet_pton4(src, dst)
  73. const char *src;
  74. u_char *dst;
  75. {
  76. static const char digits[] = "0123456789";
  77. int saw_digit, octets, ch;
  78. u_char tmp[INADDRSZ], *tp;
  79. saw_digit = 0;
  80. octets = 0;
  81. *(tp = tmp) = 0;
  82. while ((ch = *src++) != '') {
  83. const char *pch;
  84. if ((pch = (char *) strchr(digits, ch)) != NULL) {
  85. uint8_t new = *tp * 10 + (pch - digits);
  86. if (new > 255)
  87. return (0);
  88. *tp = new;
  89. if (! saw_digit) {
  90. if (++octets > 4)
  91. return (0);
  92. saw_digit = 1;
  93. }
  94. } else if (ch == '.' && saw_digit) {
  95. if (octets == 4)
  96. return (0);
  97. *++tp = 0;
  98. saw_digit = 0;
  99. } else
  100. return (0);
  101. }
  102. if (octets < 4)
  103. return (0);
  104. /* bcopy(tmp, dst, INADDRSZ); */
  105. memcpy(dst, tmp, INADDRSZ);
  106. return (1);
  107. }
  108. /* int
  109.  * inet_pton6(src, dst)
  110.  * convert presentation level address to network order binary form.
  111.  * return:
  112.  * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
  113.  * notice:
  114.  * (1) does not touch `dst' unless it's returning 1.
  115.  * (2) :: in a full address is silently ignored.
  116.  * credit:
  117.  * inspired by Mark Andrews.
  118.  * author:
  119.  * Paul Vixie, 1996.
  120.  */
  121. static int
  122. inet_pton6(src, dst)
  123. const char *src;
  124. u_char *dst;
  125. {
  126. static const char xdigits_l[] = "0123456789abcdef",
  127.   xdigits_u[] = "0123456789ABCDEF";
  128. u_char tmp[IN6ADDRSZ], *tp, *endp, *colonp;
  129. const char *xdigits, *curtok;
  130. int ch, saw_xdigit;
  131. unsigned val;
  132. memset((tp = tmp), 0, IN6ADDRSZ);
  133. endp = tp + IN6ADDRSZ;
  134. colonp = NULL;
  135. /* Leading :: requires some special handling. */
  136. if (*src == ':')
  137. if (*++src != ':')
  138. return (0);
  139. curtok = src;
  140. saw_xdigit = 0;
  141. val = 0;
  142. while ((ch = *src++) != '') {
  143. const char *pch;
  144. if ((pch = (char *) strchr((xdigits = xdigits_l), ch)) == NULL)
  145. pch = (char *) strchr((xdigits = xdigits_u), ch);
  146. if (pch != NULL) {
  147. val <<= 4;
  148. val |= (pch - xdigits);
  149. if (val > 0xffff)
  150. return (0);
  151. saw_xdigit = 1;
  152. continue;
  153. }
  154. if (ch == ':') {
  155. curtok = src;
  156. if (!saw_xdigit) {
  157. if (colonp)
  158. return (0);
  159. colonp = tp;
  160. continue;
  161. }
  162. if (tp + INT16SZ > endp)
  163. return (0);
  164. *tp++ = (u_char) (val >> 8) & 0xff;
  165. *tp++ = (u_char) val & 0xff;
  166. saw_xdigit = 0;
  167. val = 0;
  168. continue;
  169. }
  170. if (ch == '.' && ((tp + INADDRSZ) <= endp) &&
  171.     inet_pton4(curtok, tp) > 0) {
  172. tp += INADDRSZ;
  173. saw_xdigit = 0;
  174. break; /* '' was seen by inet_pton4(). */
  175. }
  176. return (0);
  177. }
  178. if (saw_xdigit) {
  179. if (tp + INT16SZ > endp)
  180. return (0);
  181. *tp++ = (u_char) (val >> 8) & 0xff;
  182. *tp++ = (u_char) val & 0xff;
  183. }
  184. if (colonp != NULL) {
  185. /*
  186.  * Since some memmove()'s erroneously fail to handle
  187.  * overlapping regions, we'll do the shift by hand.
  188.  */
  189. const int n = tp - colonp;
  190. int i;
  191. for (i = 1; i <= n; i++) {
  192. endp[- i] = colonp[n - i];
  193. colonp[n - i] = 0;
  194. }
  195. tp = endp;
  196. }
  197. if (tp != endp)
  198. return (0);
  199. /* bcopy(tmp, dst, IN6ADDRSZ); */
  200. memcpy(dst, tmp, IN6ADDRSZ);
  201. return (1);
  202. }
  203. #endif