Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / ntp / libisc / netscope.c
blobc5435e50c592f08ed8670b33921eb1d741a451c0
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 2002 Internet Software Consortium.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 #if defined(LIBC_SCCS) && !defined(lint)
21 static char rcsid[] =
22 "Id: netscope.c,v 1.5.142.7 2004/03/12 10:31:26 marka Exp";
23 #endif /* LIBC_SCCS and not lint */
25 #include <config.h>
27 #include <isc/string.h>
28 #include <isc/net.h>
29 #include <isc/netscope.h>
30 #include <isc/result.h>
32 isc_result_t
33 isc_netscope_pton(int af, char *scopename, void *addr, isc_uint32_t *zoneid) {
34 char *ep;
35 #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX
36 unsigned int ifid;
37 #endif
38 struct in6_addr *in6;
39 isc_uint32_t zone;
40 isc_uint64_t llz;
42 /* at this moment, we only support AF_INET6 */
43 if (af != AF_INET6)
44 return (ISC_R_FAILURE);
46 in6 = (struct in6_addr *)addr;
49 * Basically, "names" are more stable than numeric IDs in terms of
50 * renumbering, and are more preferred. However, since there is no
51 * standard naming convention and APIs to deal with the names. Thus,
52 * we only handle the case of link-local addresses, for which we use
53 * interface names as link names, assuming one to one mapping between
54 * interfaces and links.
56 #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX
57 if (IN6_IS_ADDR_LINKLOCAL(in6) &&
58 (ifid = if_nametoindex((const char *)scopename)) != 0)
59 zone = (isc_uint32_t)ifid;
60 else {
61 #endif
62 llz = isc_string_touint64(scopename, &ep, 10);
63 if (ep == scopename)
64 return (ISC_R_FAILURE);
66 /* check overflow */
67 zone = (isc_uint32_t)(llz & 0xffffffffUL);
68 if (zone != llz)
69 return (ISC_R_FAILURE);
70 #ifdef ISC_PLATFORM_HAVEIFNAMETOINDEX
72 #endif
74 *zoneid = zone;
75 return (ISC_R_SUCCESS);