inet_pton.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. #include "setup.h"
  18. #ifndef HAVE_INET_PTON
  19. #ifdef HAVE_SYS_PARAM_H
  20. #include <sys/param.h>
  21. #endif
  22. #ifdef HAVE_SYS_SOCKET_H
  23. #include <sys/socket.h>
  24. #endif
  25. #ifdef HAVE_NETINET_IN_H
  26. #include <netinet/in.h>
  27. #endif
  28. #ifdef HAVE_ARPA_INET_H
  29. #include <arpa/inet.h>
  30. #endif
  31. #include <string.h>
  32. #include <errno.h>
  33. #include "inet_pton.h"
  34. #define IN6ADDRSZ 16
  35. #define INADDRSZ 4
  36. #define INT16SZ 2
  37. /*
  38. * WARNING: Don't even consider trying to compile this on a system where
  39. * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
  40. */
  41. static int inet_pton4(const char *src, unsigned char *dst);
  42. #ifdef ENABLE_IPV6
  43. static int inet_pton6(const char *src, unsigned char *dst);
  44. #endif
  45. /* int
  46. * inet_pton(af, src, dst)
  47. * convert from presentation format (which usually means ASCII printable)
  48. * to network format (which is usually some kind of binary format).
  49. * return:
  50. * 1 if the address was valid for the specified address family
  51. * 0 if the address wasn't valid (`dst' is untouched in this case)
  52. * -1 if some other error occurred (`dst' is untouched in this case, too)
  53. * notice:
  54. * On Windows we store the error in the thread errno, not
  55. * in the winsock error code. This is to avoid loosing the
  56. * actual last winsock error. So use macro ERRNO to fetch the
  57. * errno this funtion sets when returning (-1), not SOCKERRNO.
  58. * author:
  59. * Paul Vixie, 1996.
  60. */
  61. int
  62. Curl_inet_pton(int af, const char *src, void *dst)
  63. {
  64. switch (af) {
  65. case AF_INET:
  66. return (inet_pton4(src, (unsigned char *)dst));
  67. #ifdef ENABLE_IPV6
  68. #ifndef AF_INET6
  69. #define AF_INET6 (AF_MAX+1) /* just to let this compile */
  70. #endif
  71. case AF_INET6:
  72. return (inet_pton6(src, (unsigned char *)dst));
  73. #endif
  74. default:
  75. SET_ERRNO(EAFNOSUPPORT);
  76. return (-1);
  77. }
  78. /* NOTREACHED */
  79. }
  80. /* int
  81. * inet_pton4(src, dst)
  82. * like inet_aton() but without all the hexadecimal and shorthand.
  83. * return:
  84. * 1 if `src' is a valid dotted quad, else 0.
  85. * notice:
  86. * does not touch `dst' unless it's returning 1.
  87. * author:
  88. * Paul Vixie, 1996.
  89. */
  90. static int
  91. inet_pton4(const char *src, unsigned char *dst)
  92. {
  93. static const char digits[] = "0123456789";
  94. int saw_digit, octets, ch;
  95. unsigned char tmp[INADDRSZ], *tp;
  96. saw_digit = 0;
  97. octets = 0;
  98. tp = tmp;
  99. *tp = 0;
  100. while((ch = *src++) != '\0') {
  101. const char *pch;
  102. if((pch = strchr(digits, ch)) != NULL) {
  103. unsigned int val = *tp * 10 + (unsigned int)(pch - digits);
  104. if(val > 255)
  105. return (0);
  106. *tp = (unsigned char)val;
  107. if(! saw_digit) {
  108. if(++octets > 4)
  109. return (0);
  110. saw_digit = 1;
  111. }
  112. }
  113. else if(ch == '.' && saw_digit) {
  114. if(octets == 4)
  115. return (0);
  116. *++tp = 0;
  117. saw_digit = 0;
  118. }
  119. else
  120. return (0);
  121. }
  122. if(octets < 4)
  123. return (0);
  124. /* bcopy(tmp, dst, INADDRSZ); */
  125. memcpy(dst, tmp, INADDRSZ);
  126. return (1);
  127. }
  128. #ifdef ENABLE_IPV6
  129. /* int
  130. * inet_pton6(src, dst)
  131. * convert presentation level address to network order binary form.
  132. * return:
  133. * 1 if `src' is a valid [RFC1884 2.2] address, else 0.
  134. * notice:
  135. * (1) does not touch `dst' unless it's returning 1.
  136. * (2) :: in a full address is silently ignored.
  137. * credit:
  138. * inspired by Mark Andrews.
  139. * author:
  140. * Paul Vixie, 1996.
  141. */
  142. static int
  143. inet_pton6(const char *src, unsigned char *dst)
  144. {
  145. static const char xdigits_l[] = "0123456789abcdef",
  146. xdigits_u[] = "0123456789ABCDEF";
  147. unsigned char tmp[IN6ADDRSZ], *tp, *endp, *colonp;
  148. const char *xdigits, *curtok;
  149. int ch, saw_xdigit;
  150. unsigned int val;
  151. memset((tp = tmp), 0, IN6ADDRSZ);
  152. endp = tp + IN6ADDRSZ;
  153. colonp = NULL;
  154. /* Leading :: requires some special handling. */
  155. if(*src == ':')
  156. if(*++src != ':')
  157. return (0);
  158. curtok = src;
  159. saw_xdigit = 0;
  160. val = 0;
  161. while((ch = *src++) != '\0') {
  162. const char *pch;
  163. if((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
  164. pch = strchr((xdigits = xdigits_u), ch);
  165. if(pch != NULL) {
  166. val <<= 4;
  167. val |= (pch - xdigits);
  168. if(val > 0xffff)
  169. return (0);
  170. saw_xdigit = 1;
  171. continue;
  172. }
  173. if(ch == ':') {
  174. curtok = src;
  175. if(!saw_xdigit) {
  176. if(colonp)
  177. return (0);
  178. colonp = tp;
  179. continue;
  180. }
  181. if(tp + INT16SZ > endp)
  182. return (0);
  183. *tp++ = (unsigned char) (val >> 8) & 0xff;
  184. *tp++ = (unsigned char) val & 0xff;
  185. saw_xdigit = 0;
  186. val = 0;
  187. continue;
  188. }
  189. if(ch == '.' && ((tp + INADDRSZ) <= endp) &&
  190. inet_pton4(curtok, tp) > 0) {
  191. tp += INADDRSZ;
  192. saw_xdigit = 0;
  193. break; /* '\0' was seen by inet_pton4(). */
  194. }
  195. return (0);
  196. }
  197. if(saw_xdigit) {
  198. if(tp + INT16SZ > endp)
  199. return (0);
  200. *tp++ = (unsigned char) (val >> 8) & 0xff;
  201. *tp++ = (unsigned char) val & 0xff;
  202. }
  203. if(colonp != NULL) {
  204. /*
  205. * Since some memmove()'s erroneously fail to handle
  206. * overlapping regions, we'll do the shift by hand.
  207. */
  208. const int n = tp - colonp;
  209. int i;
  210. for (i = 1; i <= n; i++) {
  211. endp[- i] = colonp[n - i];
  212. colonp[n - i] = 0;
  213. }
  214. tp = endp;
  215. }
  216. if(tp != endp)
  217. return (0);
  218. /* bcopy(tmp, dst, IN6ADDRSZ); */
  219. memcpy(dst, tmp, IN6ADDRSZ);
  220. return (1);
  221. }
  222. #endif /* ENABLE_IPV6 */
  223. #endif /* HAVE_INET_PTON */