/contrib/bind9/lib/isc/inet_ntop.c

https://bitbucket.org/freebsd/freebsd-head/ · C · 199 lines · 112 code · 17 blank · 70 comment · 48 complexity · 1c27cad0dae5ba442bac60657191b395 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
  3. * Copyright (C) 1996-2001 Internet Software Consortium.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  10. * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  11. * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  12. * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  13. * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  14. * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15. * PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. /*! \file */
  18. #if defined(LIBC_SCCS) && !defined(lint)
  19. static char rcsid[] =
  20. "$Id: inet_ntop.c,v 1.21 2009/07/17 23:47:41 tbox Exp $";
  21. #endif /* LIBC_SCCS and not lint */
  22. #include <config.h>
  23. #include <errno.h>
  24. #include <stdio.h>
  25. #include <string.h>
  26. #include <isc/net.h>
  27. #include <isc/print.h>
  28. #define NS_INT16SZ 2
  29. #define NS_IN6ADDRSZ 16
  30. /*
  31. * WARNING: Don't even consider trying to compile this on a system where
  32. * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX.
  33. */
  34. static const char *inet_ntop4(const unsigned char *src, char *dst,
  35. size_t size);
  36. #ifdef AF_INET6
  37. static const char *inet_ntop6(const unsigned char *src, char *dst,
  38. size_t size);
  39. #endif
  40. /*! char *
  41. * isc_net_ntop(af, src, dst, size)
  42. * convert a network format address to presentation format.
  43. * \return
  44. * pointer to presentation format address (`dst'), or NULL (see errno).
  45. * \author
  46. * Paul Vixie, 1996.
  47. */
  48. const char *
  49. isc_net_ntop(int af, const void *src, char *dst, size_t size)
  50. {
  51. switch (af) {
  52. case AF_INET:
  53. return (inet_ntop4(src, dst, size));
  54. #ifdef AF_INET6
  55. case AF_INET6:
  56. return (inet_ntop6(src, dst, size));
  57. #endif
  58. default:
  59. errno = EAFNOSUPPORT;
  60. return (NULL);
  61. }
  62. /* NOTREACHED */
  63. }
  64. /*! const char *
  65. * inet_ntop4(src, dst, size)
  66. * format an IPv4 address
  67. * \return
  68. * `dst' (as a const)
  69. * \note
  70. * (1) uses no statics
  71. * \note
  72. * (2) takes a unsigned char* not an in_addr as input
  73. * \author
  74. * Paul Vixie, 1996.
  75. */
  76. static const char *
  77. inet_ntop4(const unsigned char *src, char *dst, size_t size)
  78. {
  79. static const char *fmt = "%u.%u.%u.%u";
  80. char tmp[sizeof("255.255.255.255")];
  81. if ((size_t)sprintf(tmp, fmt, src[0], src[1], src[2], src[3]) >= size)
  82. {
  83. errno = ENOSPC;
  84. return (NULL);
  85. }
  86. strcpy(dst, tmp);
  87. return (dst);
  88. }
  89. /*! const char *
  90. * isc_inet_ntop6(src, dst, size)
  91. * convert IPv6 binary address into presentation (printable) format
  92. * \author
  93. * Paul Vixie, 1996.
  94. */
  95. #ifdef AF_INET6
  96. static const char *
  97. inet_ntop6(const unsigned char *src, char *dst, size_t size)
  98. {
  99. /*
  100. * Note that int32_t and int16_t need only be "at least" large enough
  101. * to contain a value of the specified size. On some systems, like
  102. * Crays, there is no such thing as an integer variable with 16 bits.
  103. * Keep this in mind if you think this function should have been coded
  104. * to use pointer overlays. All the world's not a VAX.
  105. */
  106. char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp;
  107. struct { int base, len; } best, cur;
  108. unsigned int words[NS_IN6ADDRSZ / NS_INT16SZ];
  109. int i;
  110. /*
  111. * Preprocess:
  112. * Copy the input (bytewise) array into a wordwise array.
  113. * Find the longest run of 0x00's in src[] for :: shorthanding.
  114. */
  115. memset(words, '\0', sizeof(words));
  116. for (i = 0; i < NS_IN6ADDRSZ; i++)
  117. words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
  118. best.base = -1;
  119. cur.base = -1;
  120. for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
  121. if (words[i] == 0) {
  122. if (cur.base == -1)
  123. cur.base = i, cur.len = 1;
  124. else
  125. cur.len++;
  126. } else {
  127. if (cur.base != -1) {
  128. if (best.base == -1 || cur.len > best.len)
  129. best = cur;
  130. cur.base = -1;
  131. }
  132. }
  133. }
  134. if (cur.base != -1) {
  135. if (best.base == -1 || cur.len > best.len)
  136. best = cur;
  137. }
  138. if (best.base != -1 && best.len < 2)
  139. best.base = -1;
  140. /*
  141. * Format the result.
  142. */
  143. tp = tmp;
  144. for (i = 0; i < (NS_IN6ADDRSZ / NS_INT16SZ); i++) {
  145. /* Are we inside the best run of 0x00's? */
  146. if (best.base != -1 && i >= best.base &&
  147. i < (best.base + best.len)) {
  148. if (i == best.base)
  149. *tp++ = ':';
  150. continue;
  151. }
  152. /* Are we following an initial run of 0x00s or any real hex? */
  153. if (i != 0)
  154. *tp++ = ':';
  155. /* Is this address an encapsulated IPv4? */
  156. if (i == 6 && best.base == 0 && (best.len == 6 ||
  157. (best.len == 7 && words[7] != 0x0001) ||
  158. (best.len == 5 && words[5] == 0xffff))) {
  159. if (!inet_ntop4(src+12, tp,
  160. sizeof(tmp) - (tp - tmp)))
  161. return (NULL);
  162. tp += strlen(tp);
  163. break;
  164. }
  165. tp += sprintf(tp, "%x", words[i]);
  166. }
  167. /* Was it a trailing run of 0x00's? */
  168. if (best.base != -1 && (best.base + best.len) ==
  169. (NS_IN6ADDRSZ / NS_INT16SZ))
  170. *tp++ = ':';
  171. *tp++ = '\0';
  172. /*
  173. * Check for overflow, copy, and we're done.
  174. */
  175. if ((size_t)(tp - tmp) > size) {
  176. errno = ENOSPC;
  177. return (NULL);
  178. }
  179. strcpy(dst, tmp);
  180. return (dst);
  181. }
  182. #endif /* AF_INET6 */