2001-07-06 05:25:20 +00:00
|
|
|
/*
|
2016-06-27 14:56:38 +10:00
|
|
|
* Copyright (C) 1999-2001, 2004, 2007-2009, 2013-2016 Internet Systems Consortium, Inc. ("ISC")
|
2001-07-06 05:25:20 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2001-07-06 05:25:20 +00:00
|
|
|
*/
|
|
|
|
|
2009-01-18 23:48:14 +00:00
|
|
|
/* $Id: interfaceiter.c,v 1.15 2009/01/18 23:48:14 tbox Exp $ */
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that this code will need to be revisited to support IPv6 Interfaces.
|
|
|
|
* For now we just iterate through IPv4 interfaces.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <isc/interfaceiter.h>
|
|
|
|
#include <isc/mem.h>
|
2015-05-23 14:21:51 +02:00
|
|
|
#include <isc/print.h>
|
2001-07-06 05:25:20 +00:00
|
|
|
#include <isc/result.h>
|
|
|
|
#include <isc/string.h>
|
2001-09-04 03:22:23 +00:00
|
|
|
#include <isc/strerror.h>
|
2001-07-06 05:25:20 +00:00
|
|
|
#include <isc/types.h>
|
|
|
|
#include <isc/util.h>
|
|
|
|
|
2007-06-18 03:36:51 +00:00
|
|
|
void InitSockets(void);
|
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
/* Common utility functions */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the network address part from a "struct sockaddr".
|
|
|
|
*
|
2009-01-18 00:34:19 +00:00
|
|
|
* The address family is given explicitly
|
2001-07-06 05:25:20 +00:00
|
|
|
* instead of using src->sa_family, because the latter does not work
|
|
|
|
* for copying a network mask obtained by SIOCGIFNETMASK (it does
|
|
|
|
* not have a valid address family).
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#define IFITER_MAGIC 0x49464954U /* IFIT. */
|
|
|
|
#define VALID_IFITER(t) ((t) != NULL && (t)->magic == IFITER_MAGIC)
|
|
|
|
|
|
|
|
struct isc_interfaceiter {
|
|
|
|
unsigned int magic; /* Magic number. */
|
2001-07-08 05:09:35 +00:00
|
|
|
isc_mem_t *mctx;
|
2013-12-04 12:47:23 +11:00
|
|
|
SOCKET socket;
|
2001-07-06 05:25:20 +00:00
|
|
|
INTERFACE_INFO IFData; /* Current Interface Info */
|
2001-07-08 05:09:35 +00:00
|
|
|
int numIF; /* Current Interface count */
|
2008-04-02 02:56:23 +00:00
|
|
|
int v4IF; /* Number of IPv4 Interfaces */
|
|
|
|
INTERFACE_INFO *buf4; /* Buffer for WSAIoctl data. */
|
|
|
|
unsigned int buf4size; /* Bytes allocated. */
|
|
|
|
INTERFACE_INFO *pos4; /* Current offset in IF List */
|
|
|
|
SOCKET_ADDRESS_LIST *buf6;
|
|
|
|
unsigned int buf6size; /* Bytes allocated. */
|
|
|
|
unsigned int pos6;
|
2001-07-06 05:25:20 +00:00
|
|
|
isc_interface_t current; /* Current interface data. */
|
|
|
|
isc_result_t result; /* Last result code. */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size of buffer for SIO_GET_INTERFACE_LIST, in number of interfaces.
|
|
|
|
* We assume no sane system will have more than than 1K of IP addresses on
|
|
|
|
* all of its adapters.
|
|
|
|
*/
|
2001-07-08 05:09:35 +00:00
|
|
|
#define IFCONF_SIZE_INITIAL 16
|
|
|
|
#define IFCONF_SIZE_INCREMENT 64
|
|
|
|
#define IFCONF_SIZE_MAX 1040
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
get_addr(unsigned int family, isc_netaddr_t *dst, struct sockaddr *src) {
|
|
|
|
dst->family = family;
|
|
|
|
switch (family) {
|
|
|
|
case AF_INET:
|
2014-01-08 16:27:10 -08:00
|
|
|
memmove(&dst->type.in,
|
|
|
|
&((struct sockaddr_in *) src)->sin_addr,
|
|
|
|
sizeof(struct in_addr));
|
2001-07-06 05:25:20 +00:00
|
|
|
break;
|
|
|
|
case AF_INET6:
|
2014-01-08 16:27:10 -08:00
|
|
|
memmove(&dst->type.in6,
|
|
|
|
&((struct sockaddr_in6 *) src)->sin6_addr,
|
|
|
|
sizeof(struct in6_addr));
|
2008-04-02 02:56:23 +00:00
|
|
|
dst->zone = ((struct sockaddr_in6 *) src)->sin6_scope_id;
|
2001-07-06 05:25:20 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
INSIST(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_create(isc_mem_t *mctx, isc_interfaceiter_t **iterp) {
|
2008-04-02 23:46:58 +00:00
|
|
|
char strbuf[ISC_STRERRORSIZE];
|
2001-07-06 05:25:20 +00:00
|
|
|
isc_interfaceiter_t *iter;
|
|
|
|
isc_result_t result;
|
|
|
|
int error;
|
|
|
|
unsigned long bytesReturned = 0;
|
|
|
|
|
|
|
|
REQUIRE(mctx != NULL);
|
|
|
|
REQUIRE(iterp != NULL);
|
|
|
|
REQUIRE(*iterp == NULL);
|
|
|
|
|
|
|
|
iter = isc_mem_get(mctx, sizeof(*iter));
|
|
|
|
if (iter == NULL)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
|
2007-06-18 03:36:51 +00:00
|
|
|
InitSockets();
|
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
iter->mctx = mctx;
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->buf4 = NULL;
|
|
|
|
iter->buf6 = NULL;
|
|
|
|
iter->pos4 = NULL;
|
|
|
|
iter->pos6 = 0;
|
|
|
|
iter->buf6size = 0;
|
|
|
|
iter->buf4size = 0;
|
|
|
|
iter->result = ISC_R_FAILURE;
|
|
|
|
iter->numIF = 0;
|
|
|
|
iter->v4IF = 0;
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
/*
|
2001-07-09 21:06:30 +00:00
|
|
|
* Create an unbound datagram socket to do the
|
|
|
|
* SIO_GET_INTERFACE_LIST WSAIoctl on.
|
2001-07-06 05:25:20 +00:00
|
|
|
*/
|
2013-12-04 12:47:23 +11:00
|
|
|
iter->socket = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (iter->socket == INVALID_SOCKET) {
|
2001-11-22 03:08:12 +00:00
|
|
|
error = WSAGetLastError();
|
2008-04-02 02:56:23 +00:00
|
|
|
if (error == WSAEAFNOSUPPORT)
|
|
|
|
goto inet6_only;
|
2001-11-22 03:08:12 +00:00
|
|
|
isc__strerror(error, strbuf, sizeof(strbuf));
|
2001-07-06 05:25:20 +00:00
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
2001-09-04 03:22:23 +00:00
|
|
|
"making interface scan socket: %s",
|
2001-11-22 03:08:12 +00:00
|
|
|
strbuf);
|
2001-07-06 05:25:20 +00:00
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
goto socket_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the interface configuration, allocating more memory if
|
|
|
|
* necessary.
|
|
|
|
*/
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->buf4size = IFCONF_SIZE_INITIAL*sizeof(INTERFACE_INFO);
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
for (;;) {
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->buf4 = isc_mem_get(mctx, iter->buf4size);
|
|
|
|
if (iter->buf4 == NULL) {
|
2001-07-06 05:25:20 +00:00
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto alloc_failure;
|
|
|
|
}
|
|
|
|
|
2001-07-09 21:06:30 +00:00
|
|
|
if (WSAIoctl(iter->socket, SIO_GET_INTERFACE_LIST,
|
2008-04-02 02:56:23 +00:00
|
|
|
0, 0, iter->buf4, iter->buf4size,
|
2001-11-22 03:08:12 +00:00
|
|
|
&bytesReturned, 0, 0) == SOCKET_ERROR)
|
2001-07-09 21:06:30 +00:00
|
|
|
{
|
2001-07-06 05:25:20 +00:00
|
|
|
error = WSAGetLastError();
|
|
|
|
if (error != WSAEFAULT && error != WSAENOBUFS) {
|
|
|
|
errno = error;
|
2001-11-22 03:08:12 +00:00
|
|
|
isc__strerror(error, strbuf, sizeof(strbuf));
|
2001-07-06 05:25:20 +00:00
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
2001-09-04 03:22:23 +00:00
|
|
|
"get interface configuration: %s",
|
2001-11-22 03:08:12 +00:00
|
|
|
strbuf);
|
2001-07-06 05:25:20 +00:00
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
goto ioctl_failure;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* EINVAL. Retry with a bigger buffer.
|
|
|
|
*/
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* The WSAIoctl succeeded.
|
2001-07-09 21:06:30 +00:00
|
|
|
* If the number of the returned bytes is the same
|
|
|
|
* as the buffer size, we will grow it just in
|
|
|
|
* case and retry.
|
2001-07-06 05:25:20 +00:00
|
|
|
*/
|
2001-07-09 21:06:30 +00:00
|
|
|
if (bytesReturned > 0 &&
|
2008-04-02 02:56:23 +00:00
|
|
|
(bytesReturned < iter->buf4size))
|
2001-07-06 05:25:20 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-04-02 02:56:23 +00:00
|
|
|
if (iter->buf4size >= IFCONF_SIZE_MAX*sizeof(INTERFACE_INFO)) {
|
2001-07-06 05:25:20 +00:00
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
|
|
|
"get interface configuration: "
|
|
|
|
"maximum buffer size exceeded");
|
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
goto ioctl_failure;
|
|
|
|
}
|
2008-04-02 02:56:23 +00:00
|
|
|
isc_mem_put(mctx, iter->buf4, iter->buf4size);
|
2001-07-06 05:25:20 +00:00
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->buf4size += IFCONF_SIZE_INCREMENT *
|
2001-07-09 21:06:30 +00:00
|
|
|
sizeof(INTERFACE_INFO);
|
2001-07-06 05:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A newly created iterator has an undefined position
|
|
|
|
* until isc_interfaceiter_first() is called.
|
|
|
|
*/
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->v4IF = bytesReturned/sizeof(INTERFACE_INFO);
|
|
|
|
|
|
|
|
/* We don't need the socket any more, so close it */
|
|
|
|
closesocket(iter->socket);
|
|
|
|
|
|
|
|
inet6_only:
|
|
|
|
/*
|
|
|
|
* Create an unbound datagram socket to do the
|
|
|
|
* SIO_ADDRESS_LIST_QUERY WSAIoctl on.
|
|
|
|
*/
|
2013-12-04 12:47:23 +11:00
|
|
|
iter->socket = socket(AF_INET6, SOCK_DGRAM, 0);
|
|
|
|
if (iter->socket == INVALID_SOCKET) {
|
2008-04-02 02:56:23 +00:00
|
|
|
error = WSAGetLastError();
|
|
|
|
if (error == WSAEAFNOSUPPORT)
|
|
|
|
goto inet_only;
|
|
|
|
isc__strerror(error, strbuf, sizeof(strbuf));
|
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
|
|
|
"making interface scan socket: %s",
|
|
|
|
strbuf);
|
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
goto ioctl_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the interface configuration, allocating more memory if
|
|
|
|
* necessary.
|
|
|
|
*/
|
|
|
|
iter->buf6size = sizeof(SOCKET_ADDRESS_LIST) +
|
|
|
|
IFCONF_SIZE_INITIAL*sizeof(SOCKET_ADDRESS);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
iter->buf6 = isc_mem_get(mctx, iter->buf6size);
|
|
|
|
if (iter->buf6 == NULL) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto ioctl_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WSAIoctl(iter->socket, SIO_ADDRESS_LIST_QUERY,
|
|
|
|
0, 0, iter->buf6, iter->buf6size,
|
|
|
|
&bytesReturned, 0, 0) == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
error = WSAGetLastError();
|
|
|
|
if (error != WSAEFAULT && error != WSAENOBUFS) {
|
|
|
|
errno = error;
|
|
|
|
isc__strerror(error, strbuf, sizeof(strbuf));
|
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
|
|
|
"sio address list query: %s",
|
|
|
|
strbuf);
|
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
goto ioctl6_failure;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* EINVAL. Retry with a bigger buffer.
|
|
|
|
*/
|
|
|
|
} else
|
|
|
|
break;
|
2001-07-06 05:25:20 +00:00
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
if (iter->buf6size >= IFCONF_SIZE_MAX*sizeof(SOCKET_ADDRESS)) {
|
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
|
|
|
"get interface configuration: "
|
|
|
|
"maximum buffer size exceeded");
|
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
goto ioctl6_failure;
|
|
|
|
}
|
|
|
|
isc_mem_put(mctx, iter->buf6, iter->buf6size);
|
2001-07-06 05:25:20 +00:00
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->buf6size += IFCONF_SIZE_INCREMENT *
|
|
|
|
sizeof(SOCKET_ADDRESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
closesocket(iter->socket);
|
|
|
|
|
|
|
|
inet_only:
|
2001-07-06 05:25:20 +00:00
|
|
|
iter->magic = IFITER_MAGIC;
|
|
|
|
*iterp = iter;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
ioctl6_failure:
|
|
|
|
isc_mem_put(mctx, iter->buf6, iter->buf6size);
|
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
ioctl_failure:
|
2008-04-02 02:56:23 +00:00
|
|
|
if (iter->buf4 != NULL)
|
|
|
|
isc_mem_put(mctx, iter->buf4, iter->buf4size);
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
alloc_failure:
|
2013-12-04 12:47:23 +11:00
|
|
|
if (iter->socket != INVALID_SOCKET)
|
2008-04-02 02:56:23 +00:00
|
|
|
(void) closesocket(iter->socket);
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
socket_failure:
|
2001-11-27 01:56:32 +00:00
|
|
|
isc_mem_put(mctx, iter, sizeof(*iter));
|
2001-07-06 05:25:20 +00:00
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get information about the current interface to iter->current.
|
|
|
|
* If successful, return ISC_R_SUCCESS.
|
|
|
|
* If the interface has an unsupported address family, or if
|
|
|
|
* some operation on it fails, return ISC_R_IGNORE to make
|
|
|
|
* the higher-level iterator code ignore it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static isc_result_t
|
2008-04-02 02:56:23 +00:00
|
|
|
internal_current(isc_interfaceiter_t *iter) {
|
2001-07-06 05:25:20 +00:00
|
|
|
BOOL ifNamed = FALSE;
|
|
|
|
unsigned long flags;
|
2001-07-09 21:06:30 +00:00
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
REQUIRE(iter->numIF >= 0);
|
|
|
|
|
|
|
|
memset(&iter->current, 0, sizeof(iter->current));
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->current.af = AF_INET;
|
2001-07-06 05:25:20 +00:00
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
get_addr(AF_INET, &iter->current.address,
|
2001-07-06 05:25:20 +00:00
|
|
|
(struct sockaddr *)&(iter->IFData.iiAddress));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get interface flags.
|
|
|
|
*/
|
|
|
|
|
|
|
|
iter->current.flags = 0;
|
|
|
|
flags = iter->IFData.iiFlags;
|
|
|
|
|
|
|
|
if ((flags & IFF_UP) != 0)
|
|
|
|
iter->current.flags |= INTERFACE_F_UP;
|
|
|
|
|
2001-07-09 21:06:30 +00:00
|
|
|
if ((flags & IFF_POINTTOPOINT) != 0) {
|
2001-07-06 05:25:20 +00:00
|
|
|
iter->current.flags |= INTERFACE_F_POINTTOPOINT;
|
|
|
|
sprintf(iter->current.name, "PPP Interface %d", iter->numIF);
|
|
|
|
ifNamed = TRUE;
|
|
|
|
}
|
|
|
|
|
2001-07-09 21:06:30 +00:00
|
|
|
if ((flags & IFF_LOOPBACK) != 0) {
|
2001-07-06 05:25:20 +00:00
|
|
|
iter->current.flags |= INTERFACE_F_LOOPBACK;
|
2001-07-09 21:06:30 +00:00
|
|
|
sprintf(iter->current.name, "Loopback Interface %d",
|
|
|
|
iter->numIF);
|
2001-07-06 05:25:20 +00:00
|
|
|
ifNamed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the interface is point-to-point, get the destination address.
|
|
|
|
*/
|
|
|
|
if ((iter->current.flags & INTERFACE_F_POINTTOPOINT) != 0) {
|
2008-04-02 02:56:23 +00:00
|
|
|
get_addr(AF_INET, &iter->current.dstaddress,
|
2001-07-08 05:09:35 +00:00
|
|
|
(struct sockaddr *)&(iter->IFData.iiBroadcastAddress));
|
2001-07-06 05:25:20 +00:00
|
|
|
}
|
|
|
|
|
2001-07-08 05:09:35 +00:00
|
|
|
if (ifNamed == FALSE)
|
2001-07-09 21:06:30 +00:00
|
|
|
sprintf(iter->current.name,
|
|
|
|
"TCP/IP Interface %d", iter->numIF);
|
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
/*
|
|
|
|
* Get the network mask.
|
|
|
|
*/
|
2008-04-02 02:56:23 +00:00
|
|
|
get_addr(AF_INET, &iter->current.netmask,
|
|
|
|
(struct sockaddr *)&(iter->IFData.iiNetmask));
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
static isc_result_t
|
|
|
|
internal_current6(isc_interfaceiter_t *iter) {
|
|
|
|
BOOL ifNamed = FALSE;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
REQUIRE(iter->pos6 >= 0);
|
|
|
|
REQUIRE(iter->buf6 != 0);
|
|
|
|
|
|
|
|
memset(&iter->current, 0, sizeof(iter->current));
|
|
|
|
iter->current.af = AF_INET6;
|
|
|
|
|
|
|
|
get_addr(AF_INET6, &iter->current.address,
|
|
|
|
iter->buf6->Address[iter->pos6].lpSockaddr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get interface flags.
|
|
|
|
*/
|
|
|
|
|
|
|
|
iter->current.flags = INTERFACE_F_UP;
|
|
|
|
|
|
|
|
if (ifNamed == FALSE)
|
|
|
|
sprintf(iter->current.name,
|
|
|
|
"TCP/IPv6 Interface %d", iter->pos6 + 1);
|
|
|
|
|
2008-04-02 23:46:58 +00:00
|
|
|
for (i = 0; i< 16; i++)
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->current.netmask.type.in6.s6_addr[i] = 0xff;
|
|
|
|
iter->current.netmask.family = AF_INET6;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
/*
|
|
|
|
* Step the iterator to the next interface. Unlike
|
|
|
|
* isc_interfaceiter_next(), this may leave the iterator
|
|
|
|
* positioned on an interface that will ultimately
|
|
|
|
* be ignored. Return ISC_R_NOMORE if there are no more
|
|
|
|
* interfaces, otherwise ISC_R_SUCCESS.
|
|
|
|
*/
|
|
|
|
static isc_result_t
|
|
|
|
internal_next(isc_interfaceiter_t *iter) {
|
2008-04-02 02:56:23 +00:00
|
|
|
if (iter->numIF >= iter->v4IF)
|
2001-07-06 05:25:20 +00:00
|
|
|
return (ISC_R_NOMORE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The first one needs to be set up to point to the last
|
|
|
|
* Element of the array. Go to the end and back up
|
|
|
|
* Microsoft's implementation is peculiar for returning
|
|
|
|
* the list in reverse order
|
|
|
|
*/
|
2008-04-02 23:46:58 +00:00
|
|
|
|
2001-07-08 05:09:35 +00:00
|
|
|
if (iter->numIF == 0)
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->pos4 = (INTERFACE_INFO *)(iter->buf4 + (iter->v4IF));
|
2001-07-09 21:06:30 +00:00
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
iter->pos4--;
|
|
|
|
if (&(iter->pos4) < &(iter->buf4))
|
2001-07-06 05:25:20 +00:00
|
|
|
return (ISC_R_NOMORE);
|
|
|
|
|
|
|
|
memset(&(iter->IFData), 0, sizeof(INTERFACE_INFO));
|
2014-01-08 16:27:10 -08:00
|
|
|
memmove(&(iter->IFData), iter->pos4, sizeof(INTERFACE_INFO));
|
2001-07-06 05:25:20 +00:00
|
|
|
iter->numIF++;
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2008-04-18 19:47:48 +00:00
|
|
|
static isc_result_t
|
2008-04-02 02:56:23 +00:00
|
|
|
internal_next6(isc_interfaceiter_t *iter) {
|
|
|
|
if (iter->pos6 == 0)
|
|
|
|
return (ISC_R_NOMORE);
|
|
|
|
iter->pos6--;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2001-07-06 05:25:20 +00:00
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_current(isc_interfaceiter_t *iter,
|
2001-07-08 05:09:35 +00:00
|
|
|
isc_interface_t *ifdata) {
|
2001-07-06 05:25:20 +00:00
|
|
|
REQUIRE(iter->result == ISC_R_SUCCESS);
|
2014-01-08 16:27:10 -08:00
|
|
|
memmove(ifdata, &iter->current, sizeof(*ifdata));
|
2001-07-06 05:25:20 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
isc_interfaceiter_first(isc_interfaceiter_t *iter) {
|
|
|
|
|
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
if (iter->buf6 != NULL)
|
|
|
|
iter->pos6 = iter->buf6->iAddressCount;
|
|
|
|
iter->result = ISC_R_SUCCESS;
|
|
|
|
return (isc_interfaceiter_next(iter));
|
2001-07-06 05:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2008-04-02 02:56:23 +00:00
|
|
|
if (result == ISC_R_NOMORE) {
|
|
|
|
result = internal_next6(iter);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
break;
|
|
|
|
result = internal_current6(iter);
|
|
|
|
if (result != ISC_R_IGNORE)
|
|
|
|
break;
|
|
|
|
} else if (result != ISC_R_SUCCESS)
|
2001-07-06 05:25:20 +00:00
|
|
|
break;
|
2008-04-02 02:56:23 +00:00
|
|
|
result = internal_current(iter);
|
2001-07-06 05:25:20 +00:00
|
|
|
if (result != ISC_R_IGNORE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
iter->result = result;
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-09 21:06:30 +00:00
|
|
|
isc_interfaceiter_destroy(isc_interfaceiter_t **iterp) {
|
2001-07-06 05:25:20 +00:00
|
|
|
isc_interfaceiter_t *iter;
|
|
|
|
REQUIRE(iterp != NULL);
|
|
|
|
iter = *iterp;
|
|
|
|
REQUIRE(VALID_IFITER(iter));
|
|
|
|
|
2008-04-02 02:56:23 +00:00
|
|
|
if (iter->buf4 != NULL)
|
|
|
|
isc_mem_put(iter->mctx, iter->buf4, iter->buf4size);
|
|
|
|
if (iter->buf6 != NULL)
|
|
|
|
isc_mem_put(iter->mctx, iter->buf6, iter->buf6size);
|
2001-07-06 05:25:20 +00:00
|
|
|
|
|
|
|
iter->magic = 0;
|
2001-11-27 01:56:32 +00:00
|
|
|
isc_mem_put(iter->mctx, iter, sizeof(*iter));
|
2001-07-06 05:25:20 +00:00
|
|
|
*iterp = NULL;
|
|
|
|
}
|