inet_pton.c 6.0 KB

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