/contrib/bind9/lib/isc/netscope.c

https://bitbucket.org/freebsd/freebsd-head/ · C · 76 lines · 39 code · 10 blank · 27 comment · 10 complexity · aa512cdd2b5bf697e4d640200a4eabbe MD5 · raw file

  1. /*
  2. * Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
  3. * Copyright (C) 2002 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: netscope.c,v 1.13 2007/06/19 23:47:17 tbox Exp $";
  21. #endif /* LIBC_SCCS and not lint */
  22. #include <config.h>
  23. #include <isc/string.h>
  24. #include <isc/net.h>
  25. #include <isc/netscope.h>
  26. #include <isc/result.h>
  27. isc_result_t
  28. isc_netscope_pton(int af, char *scopename, void *addr, isc_uint32_t *zoneid) {
  29. char *ep;
  30. #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX
  31. unsigned int ifid;
  32. #endif
  33. struct in6_addr *in6;
  34. isc_uint32_t zone;
  35. isc_uint64_t llz;
  36. /* at this moment, we only support AF_INET6 */
  37. if (af != AF_INET6)
  38. return (ISC_R_FAILURE);
  39. in6 = (struct in6_addr *)addr;
  40. /*
  41. * Basically, "names" are more stable than numeric IDs in terms of
  42. * renumbering, and are more preferred. However, since there is no
  43. * standard naming convention and APIs to deal with the names. Thus,
  44. * we only handle the case of link-local addresses, for which we use
  45. * interface names as link names, assuming one to one mapping between
  46. * interfaces and links.
  47. */
  48. #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX
  49. if (IN6_IS_ADDR_LINKLOCAL(in6) &&
  50. (ifid = if_nametoindex((const char *)scopename)) != 0)
  51. zone = (isc_uint32_t)ifid;
  52. else {
  53. #endif
  54. llz = isc_string_touint64(scopename, &ep, 10);
  55. if (ep == scopename)
  56. return (ISC_R_FAILURE);
  57. /* check overflow */
  58. zone = (isc_uint32_t)(llz & 0xffffffffUL);
  59. if (zone != llz)
  60. return (ISC_R_FAILURE);
  61. #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX
  62. }
  63. #endif
  64. *zoneid = zone;
  65. return (ISC_R_SUCCESS);
  66. }