1999-05-20 12:31:30 +00:00
|
|
|
/*
|
2001-01-09 22:01:04 +00:00
|
|
|
* Copyright (C) 1999-2001 Internet Software Consortium.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
1999-05-20 12:31:30 +00:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2000-07-27 09:55:03 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
1999-05-20 12:31:30 +00:00
|
|
|
*/
|
|
|
|
|
2003-04-01 05:18:22 +00:00
|
|
|
/* $Id: interfaceiter.c,v 1.33 2003/04/01 05:18:22 marka Exp $ */
|
2000-06-22 22:00:42 +00:00
|
|
|
|
1999-05-20 12:31:30 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1999-07-06 22:58:04 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKIO_H
|
2000-05-08 14:38:29 +00:00
|
|
|
#include <sys/sockio.h> /* Required for ifiter_ioctl.c. */
|
1999-07-06 22:58:04 +00:00
|
|
|
#endif
|
|
|
|
|
1999-05-20 12:31:30 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2002-07-01 23:00:38 +00:00
|
|
|
#include <isc/interfaceiter.h>
|
|
|
|
#include <isc/log.h>
|
2001-06-05 06:34:11 +00:00
|
|
|
#include <isc/magic.h>
|
1999-05-20 12:31:30 +00:00
|
|
|
#include <isc/mem.h>
|
2000-12-06 00:30:32 +00:00
|
|
|
#include <isc/msgs.h>
|
1999-10-02 02:54:16 +00:00
|
|
|
#include <isc/net.h>
|
1999-05-20 12:31:30 +00:00
|
|
|
#include <isc/result.h>
|
2001-08-31 05:57:58 +00:00
|
|
|
#include <isc/strerror.h>
|
2000-05-08 14:38:29 +00:00
|
|
|
#include <isc/string.h>
|
1999-05-20 12:31:30 +00:00
|
|
|
#include <isc/types.h>
|
2000-04-28 01:12:23 +00:00
|
|
|
#include <isc/util.h>
|
1999-05-20 12:31:30 +00:00
|
|
|
|
2001-10-22 04:01:32 +00:00
|
|
|
/* Must follow <isc/net.h>. */
|
|
|
|
#ifdef HAVE_NET_IF6_H
|
|
|
|
#include <net/if6.h>
|
|
|
|
#endif
|
|
|
|
#include <net/if.h>
|
1999-10-02 02:54:16 +00:00
|
|
|
|
1999-07-21 08:07:55 +00:00
|
|
|
/* Common utility functions */
|
1999-05-20 12:31:30 +00:00
|
|
|
|
|
|
|
/*
|
1999-05-26 06:24:54 +00:00
|
|
|
* Extract the network address part from a "struct sockaddr".
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2002-10-24 03:52:35 +00:00
|
|
|
* The address family is given explicitly
|
1999-05-20 12:31:30 +00:00
|
|
|
* instead of using src->sa_family, because the latter does not work
|
1999-05-26 06:24:54 +00:00
|
|
|
* for copying a network mask obtained by SIOCGIFNETMASK (it does
|
|
|
|
* not have a valid address family).
|
1999-05-20 12:31:30 +00:00
|
|
|
*/
|
1999-05-26 06:24:54 +00:00
|
|
|
|
2000-08-01 01:33:37 +00:00
|
|
|
static void
|
1999-10-28 23:09:01 +00:00
|
|
|
get_addr(unsigned int family, isc_netaddr_t *dst, struct sockaddr *src) {
|
2002-10-24 03:52:35 +00:00
|
|
|
struct sockaddr_in6 *sa6;
|
|
|
|
|
2002-11-26 03:16:31 +00:00
|
|
|
/* clear any remaining value for safety */
|
|
|
|
memset(dst, 0, sizeof(*dst));
|
|
|
|
|
1999-10-28 23:09:01 +00:00
|
|
|
dst->family = family;
|
1999-05-20 12:31:30 +00:00
|
|
|
switch (family) {
|
|
|
|
case AF_INET:
|
1999-05-26 06:24:54 +00:00
|
|
|
memcpy(&dst->type.in,
|
1999-05-20 12:31:30 +00:00
|
|
|
&((struct sockaddr_in *) src)->sin_addr,
|
|
|
|
sizeof(struct in_addr));
|
|
|
|
break;
|
2003-03-03 01:42:59 +00:00
|
|
|
case AF_INET6:
|
2002-10-24 03:52:35 +00:00
|
|
|
sa6 = (struct sockaddr_in6 *)src;
|
|
|
|
memcpy(&dst->type.in6, &sa6->sin6_addr,
|
2000-01-18 05:42:53 +00:00
|
|
|
sizeof(struct in6_addr));
|
2002-10-24 03:52:35 +00:00
|
|
|
#ifdef ISC_PLATFORM_HAVESCOPEID
|
|
|
|
if (sa6->sin6_scope_id != 0)
|
|
|
|
isc_netaddr_setzone(dst, sa6->sin6_scope_id);
|
2002-11-26 03:16:31 +00:00
|
|
|
else {
|
2002-10-24 03:52:35 +00:00
|
|
|
/*
|
|
|
|
* BSD variants embed scope zone IDs in the 128bit
|
|
|
|
* address as a kernel internal form. Unfortunately,
|
|
|
|
* the embedded IDs are not hidden from applications
|
|
|
|
* when getting access to them by sysctl or ioctl.
|
|
|
|
* We convert the internal format to the pure address
|
|
|
|
* part and the zone ID part.
|
|
|
|
* Since multicast addresses should not appear here
|
|
|
|
* and they cannot be distinguished from netmasks,
|
|
|
|
* we only consider unicast link-local addresses.
|
|
|
|
*/
|
|
|
|
if (IN6_IS_ADDR_LINKLOCAL(&sa6->sin6_addr)) {
|
2002-10-28 02:16:21 +00:00
|
|
|
isc_uint16_t zone;
|
2002-10-24 03:52:35 +00:00
|
|
|
|
|
|
|
memcpy(&zone, &sa6->sin6_addr.s6_addr[2],
|
|
|
|
sizeof(zone));
|
|
|
|
zone = ntohs(zone);
|
|
|
|
if (zone != 0) { /* the zone ID is embedded */
|
|
|
|
isc_netaddr_setzone(dst,
|
2002-10-28 02:16:21 +00:00
|
|
|
(isc_uint32_t)zone);
|
2002-10-24 03:52:35 +00:00
|
|
|
dst->type.in6.s6_addr[2] = 0;
|
|
|
|
dst->type.in6.s6_addr[3] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-11-26 03:16:31 +00:00
|
|
|
#endif
|
2000-01-18 05:42:53 +00:00
|
|
|
break;
|
1999-05-20 12:31:30 +00:00
|
|
|
default:
|
|
|
|
INSIST(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-07-21 08:07:55 +00:00
|
|
|
* Include system-dependent code.
|
1999-05-20 12:31:30 +00:00
|
|
|
*/
|
|
|
|
|
2003-04-01 05:18:22 +00:00
|
|
|
#if HAVE_GETIFADDRS
|
|
|
|
#include "ifiter_getifaddrs.c"
|
|
|
|
#elif HAVE_IFLIST_SYSCTL
|
1999-07-21 08:07:55 +00:00
|
|
|
#include "ifiter_sysctl.c"
|
|
|
|
#else
|
|
|
|
#include "ifiter_ioctl.c"
|
1999-05-20 12:31:30 +00:00
|
|
|
#endif
|
|
|
|
|
1999-07-21 08:07:55 +00:00
|
|
|
/*
|
|
|
|
* The remaining code is common to the sysctl and ioctl case.
|
|
|
|
*/
|
1999-05-20 12:31:30 +00:00
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_current(isc_interfaceiter_t *iter,
|
|
|
|
isc_interface_t *ifdata)
|
|
|
|
{
|
|
|
|
REQUIRE(iter->result == ISC_R_SUCCESS);
|
|
|
|
memcpy(ifdata, &iter->current, sizeof(*ifdata));
|
1999-07-19 23:54:03 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-05-20 12:31:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_first(isc_interfaceiter_t *iter) {
|
|
|
|
isc_result_t result;
|
|
|
|
|
2000-08-01 01:33:37 +00:00
|
|
|
REQUIRE(VALID_IFITER(iter));
|
1999-05-20 12:31:30 +00:00
|
|
|
|
2003-02-24 01:46:11 +00:00
|
|
|
internal_first(iter);
|
1999-05-20 12:31:30 +00:00
|
|
|
for (;;) {
|
|
|
|
result = internal_current(iter);
|
2000-08-01 01:33:37 +00:00
|
|
|
if (result != ISC_R_IGNORE)
|
1999-05-20 12:31:30 +00:00
|
|
|
break;
|
|
|
|
result = internal_next(iter);
|
2000-02-07 18:39:20 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-05-20 12:31:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
iter->result = result;
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_next(isc_interfaceiter_t *iter) {
|
|
|
|
isc_result_t result;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
1999-05-20 12:31:30 +00:00
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
REQUIRE(iter->result == ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
result = internal_next(iter);
|
2000-02-07 18:39:20 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
1999-05-20 12:31:30 +00:00
|
|
|
break;
|
|
|
|
result = internal_current(iter);
|
2000-02-07 18:39:20 +00:00
|
|
|
if (result != ISC_R_IGNORE)
|
1999-05-20 12:31:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
iter->result = result;
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
isc_interfaceiter_destroy(isc_interfaceiter_t **iterp)
|
|
|
|
{
|
|
|
|
isc_interfaceiter_t *iter;
|
|
|
|
REQUIRE(iterp != NULL);
|
|
|
|
iter = *iterp;
|
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
|
1999-07-21 08:07:55 +00:00
|
|
|
internal_destroy(iter);
|
2003-04-01 05:18:22 +00:00
|
|
|
if (iter->buf != NULL)
|
|
|
|
isc_mem_put(iter->mctx, iter->buf, iter->bufsize);
|
1999-05-20 12:31:30 +00:00
|
|
|
|
|
|
|
iter->magic = 0;
|
2001-11-27 01:56:32 +00:00
|
|
|
isc_mem_put(iter->mctx, iter, sizeof(*iter));
|
1999-05-20 12:31:30 +00:00
|
|
|
*iterp = NULL;
|
|
|
|
}
|