1999-05-20 12:31:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1999 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
1999-07-06 22:58:04 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#ifdef HAVE_SYS_SOCKIO_H
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#endif
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
1999-05-20 12:31:30 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/error.h>
|
|
|
|
#include <isc/mem.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
#include <isc/types.h>
|
|
|
|
#include <isc/interfaceiter.h>
|
|
|
|
|
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".
|
|
|
|
*
|
|
|
|
* The address family is given explicity
|
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
|
|
|
|
1999-05-20 12:31:30 +00:00
|
|
|
static void
|
1999-05-26 06:24:54 +00:00
|
|
|
get_addr(int family, isc_netaddr_t *dst, struct sockaddr *src) {
|
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;
|
|
|
|
/* XXX IPv6 */
|
|
|
|
default:
|
|
|
|
INSIST(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-07-21 08:07:55 +00:00
|
|
|
* Include system-dependent code.
|
1999-05-20 12:31:30 +00:00
|
|
|
*/
|
|
|
|
|
1999-07-21 08:07:55 +00:00
|
|
|
#if HAVE_IFLIST_SYSCTL
|
|
|
|
#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;
|
|
|
|
|
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
|
|
|
|
iter->pos = 0;
|
|
|
|
for (;;) {
|
|
|
|
result = internal_current(iter);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
break;
|
1999-07-21 08:07:55 +00:00
|
|
|
INSIST(result == ISC_R_FAILURE);
|
1999-05-20 12:31:30 +00:00
|
|
|
result = internal_next(iter);
|
|
|
|
if (result == ISC_R_NOMORE)
|
|
|
|
break;
|
|
|
|
INSIST(result == ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
iter->result = result;
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_next(isc_interfaceiter_t *iter) {
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
REQUIRE(iter->result == ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
result = internal_next(iter);
|
|
|
|
if (result == ISC_R_NOMORE)
|
|
|
|
break;
|
|
|
|
INSIST(result == ISC_R_SUCCESS);
|
|
|
|
result = internal_current(iter);
|
|
|
|
if (result == ISC_R_SUCCESS)
|
|
|
|
break;
|
1999-07-21 08:07:55 +00:00
|
|
|
INSIST(result == ISC_R_FAILURE);
|
1999-05-20 12:31:30 +00:00
|
|
|
}
|
|
|
|
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);
|
|
|
|
isc_mem_put(iter->mctx, iter->buf, iter->bufsize);
|
1999-05-20 12:31:30 +00:00
|
|
|
|
|
|
|
iter->magic = 0;
|
|
|
|
isc_mem_put(iter->mctx, iter, sizeof *iter);
|
|
|
|
*iterp = NULL;
|
|
|
|
}
|