2003-05-13 05:32:20 +02:00
|
|
|
/*
|
|
|
|
* iphlpapi dll implementation
|
|
|
|
*
|
2006-01-25 13:14:12 +01:00
|
|
|
* Copyright (C) 2003,2006 Juan Lang
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2003-05-13 05:32:20 +02:00
|
|
|
#include <stdlib.h>
|
2003-05-14 01:37:29 +02:00
|
|
|
#include <sys/types.h>
|
2009-04-29 11:41:02 +02:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
2003-05-19 23:41:00 +02:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
2003-08-08 23:07:23 +02:00
|
|
|
# include <netinet/in.h>
|
2003-05-19 23:41:00 +02:00
|
|
|
#endif
|
2004-01-02 04:55:05 +01:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
#endif
|
2003-05-19 23:41:00 +02:00
|
|
|
#ifdef HAVE_ARPA_NAMESER_H
|
2003-08-08 23:07:23 +02:00
|
|
|
# include <arpa/nameser.h>
|
2003-05-19 23:41:00 +02:00
|
|
|
#endif
|
2003-08-08 23:07:23 +02:00
|
|
|
#ifdef HAVE_RESOLV_H
|
|
|
|
# include <resolv.h>
|
|
|
|
#endif
|
|
|
|
|
2009-08-31 11:53:04 +02:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2003-05-13 05:32:20 +02:00
|
|
|
#include "winbase.h"
|
2003-09-08 21:00:25 +02:00
|
|
|
#include "winreg.h"
|
2008-01-17 13:26:14 +01:00
|
|
|
#define USE_WS_PREFIX
|
|
|
|
#include "winsock2.h"
|
2010-03-12 03:36:46 +01:00
|
|
|
#include "ws2ipdef.h"
|
2003-05-13 05:32:20 +02:00
|
|
|
#include "iphlpapi.h"
|
|
|
|
#include "ifenum.h"
|
|
|
|
#include "ipstats.h"
|
2009-04-29 11:41:02 +02:00
|
|
|
#include "ipifcons.h"
|
2008-01-17 13:26:14 +01:00
|
|
|
|
2003-05-13 05:32:20 +02:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
|
|
|
|
|
2009-04-29 11:41:02 +02:00
|
|
|
#ifndef IF_NAMESIZE
|
|
|
|
#define IF_NAMESIZE 16
|
|
|
|
#endif
|
|
|
|
|
2004-01-15 01:25:41 +01:00
|
|
|
#ifndef INADDR_NONE
|
|
|
|
#define INADDR_NONE ~0UL
|
|
|
|
#endif
|
|
|
|
|
2007-04-30 02:06:11 +02:00
|
|
|
/* call res_init() just once because of a bug in Mac OS X 10.4 */
|
2010-02-08 15:25:36 +01:00
|
|
|
/* Call once per thread on systems that have per-thread _res. */
|
2007-04-18 20:39:33 +02:00
|
|
|
static void initialise_resolver(void)
|
|
|
|
{
|
2010-02-08 15:25:36 +01:00
|
|
|
if ((_res.options & RES_INIT) == 0)
|
2007-04-18 20:39:33 +02:00
|
|
|
res_init();
|
|
|
|
}
|
|
|
|
|
2003-11-30 07:03:21 +01:00
|
|
|
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
|
|
{
|
|
|
|
switch (fdwReason) {
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls( hinstDLL );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-05-13 05:32:20 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* AddIPAddress (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Add an IP address to an adapter.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Address [In] IP address to add to the adapter
|
|
|
|
* IpMask [In] subnet mask for the IP address
|
|
|
|
* IfIndex [In] adapter index to add the address
|
|
|
|
* NTEContext [Out] Net Table Entry (NTE) context for the IP address
|
|
|
|
* NTEInstance [Out] NTE instance for the IP address
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub. Currently returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI AddIPAddress(IPAddr Address, IPMask IpMask, DWORD IfIndex, PULONG NTEContext, PULONG NTEInstance)
|
|
|
|
{
|
|
|
|
FIXME(":stub\n");
|
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-08 21:00:25 +02:00
|
|
|
/******************************************************************
|
|
|
|
* AllocateAndGetIfTableFromStack (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get table of local interfaces.
|
|
|
|
* Like GetIfTable(), but allocate the returned table from heap.
|
2003-09-08 21:00:25 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* ppIfTable [Out] pointer into which the MIB_IFTABLE is
|
|
|
|
* allocated and returned.
|
2006-01-24 12:18:50 +01:00
|
|
|
* bOrder [In] whether to sort the table
|
2005-11-14 12:24:37 +01:00
|
|
|
* heap [In] heap from which the table is allocated
|
|
|
|
* flags [In] flags to HeapAlloc
|
2003-09-08 21:00:25 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* RETURNS
|
|
|
|
* ERROR_INVALID_PARAMETER if ppIfTable is NULL, whatever
|
|
|
|
* GetIfTable() returns otherwise.
|
2003-09-08 21:00:25 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI AllocateAndGetIfTableFromStack(PMIB_IFTABLE *ppIfTable,
|
|
|
|
BOOL bOrder, HANDLE heap, DWORD flags)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("ppIfTable %p, bOrder %d, heap %p, flags 0x%08x\n", ppIfTable,
|
2005-09-12 12:30:05 +02:00
|
|
|
bOrder, heap, flags);
|
2003-09-08 21:00:25 +02:00
|
|
|
if (!ppIfTable)
|
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
|
|
|
DWORD dwSize = 0;
|
|
|
|
|
|
|
|
ret = GetIfTable(*ppIfTable, &dwSize, bOrder);
|
|
|
|
if (ret == ERROR_INSUFFICIENT_BUFFER) {
|
2005-03-24 22:01:35 +01:00
|
|
|
*ppIfTable = HeapAlloc(heap, flags, dwSize);
|
2003-09-08 21:00:25 +02:00
|
|
|
ret = GetIfTable(*ppIfTable, &dwSize, bOrder);
|
|
|
|
}
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-09-08 21:00:25 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-24 12:18:50 +01:00
|
|
|
static int IpAddrTableSorter(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (a && b)
|
|
|
|
ret = ((const MIB_IPADDRROW*)a)->dwAddr - ((const MIB_IPADDRROW*)b)->dwAddr;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-08 21:00:25 +02:00
|
|
|
/******************************************************************
|
|
|
|
* AllocateAndGetIpAddrTableFromStack (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get interface-to-IP address mapping table.
|
|
|
|
* Like GetIpAddrTable(), but allocate the returned table from heap.
|
2003-09-08 21:00:25 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* ppIpAddrTable [Out] pointer into which the MIB_IPADDRTABLE is
|
|
|
|
* allocated and returned.
|
2006-01-24 12:18:50 +01:00
|
|
|
* bOrder [In] whether to sort the table
|
2005-11-14 12:24:37 +01:00
|
|
|
* heap [In] heap from which the table is allocated
|
|
|
|
* flags [In] flags to HeapAlloc
|
2003-09-08 21:00:25 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2006-01-24 12:18:50 +01:00
|
|
|
* ERROR_INVALID_PARAMETER if ppIpAddrTable is NULL, other error codes on
|
|
|
|
* failure, NO_ERROR on success.
|
2003-09-08 21:00:25 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI AllocateAndGetIpAddrTableFromStack(PMIB_IPADDRTABLE *ppIpAddrTable,
|
|
|
|
BOOL bOrder, HANDLE heap, DWORD flags)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("ppIpAddrTable %p, bOrder %d, heap %p, flags 0x%08x\n",
|
2005-09-12 12:30:05 +02:00
|
|
|
ppIpAddrTable, bOrder, heap, flags);
|
2006-01-24 12:18:50 +01:00
|
|
|
ret = getIPAddrTable(ppIpAddrTable, heap, flags);
|
|
|
|
if (!ret && bOrder)
|
|
|
|
qsort((*ppIpAddrTable)->table, (*ppIpAddrTable)->dwNumEntries,
|
|
|
|
sizeof(MIB_IPADDRROW), IpAddrTableSorter);
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2006-01-24 12:18:50 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2003-09-08 21:00:25 +02:00
|
|
|
|
2006-01-24 12:18:50 +01:00
|
|
|
|
2003-05-13 05:32:20 +02:00
|
|
|
/******************************************************************
|
|
|
|
* CreateIpForwardEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Create a route in the local computer's IP table.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pRoute [In] new route information
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
2005-11-23 20:14:43 +01:00
|
|
|
* Stub, always returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI CreateIpForwardEntry(PMIB_IPFORWARDROW pRoute)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pRoute %p): stub\n", pRoute);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could use SIOCADDRT, not sure I want to */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* CreateIpNetEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Create entry in the ARP table.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pArpEntry [In] new ARP entry
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
2005-11-23 20:14:43 +01:00
|
|
|
* Stub, always returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI CreateIpNetEntry(PMIB_IPNETROW pArpEntry)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pArpEntry %p)\n", pArpEntry);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could use SIOCSARP on systems that support it, not sure I want to */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* CreateProxyArpEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Create a Proxy ARP (PARP) entry for an IP address.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* dwAddress [In] IP address for which this computer acts as a proxy.
|
|
|
|
* dwMask [In] subnet mask for dwAddress
|
|
|
|
* dwIfIndex [In] interface index
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI CreateProxyArpEntry(DWORD dwAddress, DWORD dwMask, DWORD dwIfIndex)
|
|
|
|
{
|
2006-10-07 20:18:10 +02:00
|
|
|
FIXME("(dwAddress 0x%08x, dwMask 0x%08x, dwIfIndex 0x%08x): stub\n",
|
2004-12-13 14:21:39 +01:00
|
|
|
dwAddress, dwMask, dwIfIndex);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DeleteIPAddress (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Delete an IP address added with AddIPAddress().
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* NTEContext [In] NTE context from AddIPAddress();
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI DeleteIPAddress(ULONG NTEContext)
|
|
|
|
{
|
2006-10-07 20:18:10 +02:00
|
|
|
FIXME("(NTEContext %d): stub\n", NTEContext);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DeleteIpForwardEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Delete a route.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pRoute [In] route to delete
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI DeleteIpForwardEntry(PMIB_IPFORWARDROW pRoute)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pRoute %p): stub\n", pRoute);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could use SIOCDELRT, not sure I want to */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DeleteIpNetEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Delete an ARP entry.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pArpEntry [In] ARP entry to delete
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI DeleteIpNetEntry(PMIB_IPNETROW pArpEntry)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pArpEntry %p): stub\n", pArpEntry);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could use SIOCDARP on systems that support it, not sure I want to */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* DeleteProxyArpEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Delete a Proxy ARP entry.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* dwAddress [In] IP address for which this computer acts as a proxy.
|
|
|
|
* dwMask [In] subnet mask for dwAddress
|
|
|
|
* dwIfIndex [In] interface index
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI DeleteProxyArpEntry(DWORD dwAddress, DWORD dwMask, DWORD dwIfIndex)
|
|
|
|
{
|
2006-10-07 20:18:10 +02:00
|
|
|
FIXME("(dwAddress 0x%08x, dwMask 0x%08x, dwIfIndex 0x%08x): stub\n",
|
2004-12-13 14:21:39 +01:00
|
|
|
dwAddress, dwMask, dwIfIndex);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* EnableRouter (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Turn on ip forwarding.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pHandle [In/Out]
|
|
|
|
* pOverlapped [In/Out] hEvent member should contain a valid handle.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: ERROR_IO_PENDING
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI EnableRouter(HANDLE * pHandle, OVERLAPPED * pOverlapped)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pHandle %p, pOverlapped %p): stub\n", pHandle, pOverlapped);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could echo "1" > /proc/net/sys/net/ipv4/ip_forward, not sure I want to
|
|
|
|
could map EACCESS to ERROR_ACCESS_DENIED, I suppose
|
2006-01-20 16:16:56 +01:00
|
|
|
*/
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* FlushIpNetTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Delete all ARP entries of an interface
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* dwIfIndex [In] interface index
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI FlushIpNetTable(DWORD dwIfIndex)
|
|
|
|
{
|
2006-10-07 20:18:10 +02:00
|
|
|
FIXME("(dwIfIndex 0x%08x): stub\n", dwIfIndex);
|
2006-01-20 16:16:56 +01:00
|
|
|
/* this flushes the arp cache of the given index */
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetAdapterIndex (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get interface index from its name.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* AdapterName [In] unicode string with the adapter name
|
|
|
|
* IfIndex [Out] returns found interface index
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetAdapterIndex(LPWSTR AdapterName, PULONG IfIndex)
|
|
|
|
{
|
2007-10-14 01:39:10 +02:00
|
|
|
char adapterName[MAX_ADAPTER_NAME];
|
2008-08-27 21:53:37 +02:00
|
|
|
unsigned int i;
|
2007-10-14 01:39:10 +02:00
|
|
|
DWORD ret;
|
|
|
|
|
|
|
|
TRACE("(AdapterName %p, IfIndex %p)\n", AdapterName, IfIndex);
|
|
|
|
/* The adapter name is guaranteed not to have any unicode characters, so
|
|
|
|
* this translation is never lossy */
|
|
|
|
for (i = 0; i < sizeof(adapterName) - 1 && AdapterName[i]; i++)
|
|
|
|
adapterName[i] = (char)AdapterName[i];
|
|
|
|
adapterName[i] = '\0';
|
|
|
|
ret = getInterfaceIndexByName(adapterName, IfIndex);
|
|
|
|
TRACE("returning %d\n", ret);
|
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetAdaptersInfo (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get information about adapters.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* PARAMS
|
|
|
|
* pAdapterInfo [Out] buffer for adapter infos
|
|
|
|
* pOutBufLen [In] length of output buffer
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetAdaptersInfo(PIP_ADAPTER_INFO pAdapterInfo, PULONG pOutBufLen)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("pAdapterInfo %p, pOutBufLen %p\n", pAdapterInfo, pOutBufLen);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pOutBufLen)
|
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
|
|
|
DWORD numNonLoopbackInterfaces = getNumNonLoopbackInterfaces();
|
|
|
|
|
|
|
|
if (numNonLoopbackInterfaces > 0) {
|
2006-01-25 13:14:12 +01:00
|
|
|
DWORD numIPAddresses = getNumIPAddresses();
|
|
|
|
ULONG size;
|
|
|
|
|
|
|
|
/* This may slightly overestimate the amount of space needed, because
|
|
|
|
* the IP addresses include the loopback address, but it's easier
|
|
|
|
* to make sure there's more than enough space than to make sure there's
|
|
|
|
* precisely enough space.
|
|
|
|
*/
|
|
|
|
size = sizeof(IP_ADAPTER_INFO) * numNonLoopbackInterfaces;
|
2006-01-30 18:16:22 +01:00
|
|
|
size += numIPAddresses * sizeof(IP_ADDR_STRING);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pAdapterInfo || *pOutBufLen < size) {
|
|
|
|
*pOutBufLen = size;
|
|
|
|
ret = ERROR_BUFFER_OVERFLOW;
|
|
|
|
}
|
|
|
|
else {
|
2006-01-25 13:14:12 +01:00
|
|
|
InterfaceIndexTable *table = NULL;
|
|
|
|
PMIB_IPADDRTABLE ipAddrTable = NULL;
|
2007-10-14 01:21:20 +02:00
|
|
|
PMIB_IPFORWARDTABLE routeTable = NULL;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2006-01-25 13:14:12 +01:00
|
|
|
ret = getIPAddrTable(&ipAddrTable, GetProcessHeap(), 0);
|
2007-10-14 01:21:20 +02:00
|
|
|
if (!ret)
|
2009-03-02 12:52:45 +01:00
|
|
|
ret = AllocateAndGetIpForwardTableFromStack(&routeTable, FALSE, GetProcessHeap(), 0);
|
2006-01-25 13:14:12 +01:00
|
|
|
if (!ret)
|
|
|
|
table = getNonLoopbackInterfaceIndexTable();
|
2003-05-13 05:32:20 +02:00
|
|
|
if (table) {
|
|
|
|
size = sizeof(IP_ADAPTER_INFO) * table->numIndexes;
|
2006-01-30 18:16:22 +01:00
|
|
|
size += ipAddrTable->dwNumEntries * sizeof(IP_ADDR_STRING);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (*pOutBufLen < size) {
|
|
|
|
*pOutBufLen = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DWORD ndx;
|
2004-01-02 04:55:05 +01:00
|
|
|
HKEY hKey;
|
|
|
|
BOOL winsEnabled = FALSE;
|
|
|
|
IP_ADDRESS_STRING primaryWINS, secondaryWINS;
|
2006-01-25 13:14:12 +01:00
|
|
|
PIP_ADDR_STRING nextIPAddr = (PIP_ADDR_STRING)((LPBYTE)pAdapterInfo
|
|
|
|
+ numNonLoopbackInterfaces * sizeof(IP_ADAPTER_INFO));
|
2003-05-13 05:32:20 +02:00
|
|
|
|
|
|
|
memset(pAdapterInfo, 0, size);
|
2005-06-14 19:22:41 +02:00
|
|
|
/* @@ Wine registry key: HKCU\Software\Wine\Network */
|
2006-01-25 13:14:12 +01:00
|
|
|
if (RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Network",
|
|
|
|
&hKey) == ERROR_SUCCESS) {
|
2004-01-02 04:55:05 +01:00
|
|
|
DWORD size = sizeof(primaryWINS.String);
|
|
|
|
unsigned long addr;
|
|
|
|
|
|
|
|
RegQueryValueExA(hKey, "WinsServer", NULL, NULL,
|
2005-07-07 14:08:42 +02:00
|
|
|
(LPBYTE)primaryWINS.String, &size);
|
2004-01-02 04:55:05 +01:00
|
|
|
addr = inet_addr(primaryWINS.String);
|
|
|
|
if (addr != INADDR_NONE && addr != INADDR_ANY)
|
|
|
|
winsEnabled = TRUE;
|
|
|
|
size = sizeof(secondaryWINS.String);
|
|
|
|
RegQueryValueExA(hKey, "BackupWinsServer", NULL, NULL,
|
2005-07-07 14:08:42 +02:00
|
|
|
(LPBYTE)secondaryWINS.String, &size);
|
2004-01-02 04:55:05 +01:00
|
|
|
addr = inet_addr(secondaryWINS.String);
|
|
|
|
if (addr != INADDR_NONE && addr != INADDR_ANY)
|
|
|
|
winsEnabled = TRUE;
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
2003-05-13 05:32:20 +02:00
|
|
|
for (ndx = 0; ndx < table->numIndexes; ndx++) {
|
|
|
|
PIP_ADAPTER_INFO ptr = &pAdapterInfo[ndx];
|
2007-10-14 01:25:36 +02:00
|
|
|
DWORD i;
|
2006-01-25 13:14:12 +01:00
|
|
|
PIP_ADDR_STRING currentIPAddr = &ptr->IpAddressList;
|
|
|
|
BOOL firstIPAddr = TRUE;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
|
|
|
/* on Win98 this is left empty, but whatever */
|
2006-01-27 19:19:32 +01:00
|
|
|
getInterfaceNameByIndex(table->indexes[ndx], ptr->AdapterName);
|
2008-05-20 21:38:12 +02:00
|
|
|
getInterfaceNameByIndex(table->indexes[ndx], ptr->Description);
|
2007-12-03 22:58:05 +01:00
|
|
|
ptr->AddressLength = sizeof(ptr->Address);
|
2007-10-14 01:25:36 +02:00
|
|
|
getInterfacePhysicalByIndex(table->indexes[ndx],
|
|
|
|
&ptr->AddressLength, ptr->Address, &ptr->Type);
|
2003-05-13 05:32:20 +02:00
|
|
|
ptr->Index = table->indexes[ndx];
|
2006-01-25 13:14:12 +01:00
|
|
|
for (i = 0; i < ipAddrTable->dwNumEntries; i++) {
|
|
|
|
if (ipAddrTable->table[i].dwIndex == ptr->Index) {
|
|
|
|
if (firstIPAddr) {
|
|
|
|
toIPAddressString(ipAddrTable->table[i].dwAddr,
|
|
|
|
ptr->IpAddressList.IpAddress.String);
|
2006-10-27 16:03:06 +02:00
|
|
|
toIPAddressString(ipAddrTable->table[i].dwMask,
|
2006-01-25 13:14:12 +01:00
|
|
|
ptr->IpAddressList.IpMask.String);
|
|
|
|
firstIPAddr = FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
currentIPAddr->Next = nextIPAddr;
|
|
|
|
currentIPAddr = nextIPAddr;
|
|
|
|
toIPAddressString(ipAddrTable->table[i].dwAddr,
|
|
|
|
currentIPAddr->IpAddress.String);
|
2006-10-27 16:03:06 +02:00
|
|
|
toIPAddressString(ipAddrTable->table[i].dwMask,
|
2006-01-25 13:14:12 +01:00
|
|
|
currentIPAddr->IpMask.String);
|
|
|
|
nextIPAddr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-10-14 01:21:20 +02:00
|
|
|
/* Find first router through this interface, which we'll assume
|
|
|
|
* is the default gateway for this adapter */
|
|
|
|
for (i = 0; i < routeTable->dwNumEntries; i++)
|
|
|
|
if (routeTable->table[i].dwForwardIfIndex == ptr->Index
|
|
|
|
&& routeTable->table[i].dwForwardType ==
|
|
|
|
MIB_IPROUTE_TYPE_INDIRECT)
|
|
|
|
toIPAddressString(routeTable->table[i].dwForwardNextHop,
|
|
|
|
ptr->GatewayList.IpAddress.String);
|
2004-01-02 04:55:05 +01:00
|
|
|
if (winsEnabled) {
|
|
|
|
ptr->HaveWins = TRUE;
|
|
|
|
memcpy(ptr->PrimaryWinsServer.IpAddress.String,
|
|
|
|
primaryWINS.String, sizeof(primaryWINS.String));
|
|
|
|
memcpy(ptr->SecondaryWinsServer.IpAddress.String,
|
|
|
|
secondaryWINS.String, sizeof(secondaryWINS.String));
|
|
|
|
}
|
2003-10-31 05:16:54 +01:00
|
|
|
if (ndx < table->numIndexes - 1)
|
|
|
|
ptr->Next = &pAdapterInfo[ndx + 1];
|
|
|
|
else
|
|
|
|
ptr->Next = NULL;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
ret = NO_ERROR;
|
|
|
|
}
|
2004-12-13 14:21:39 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = ERROR_OUTOFMEMORY;
|
2007-10-14 01:21:20 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, routeTable);
|
2006-05-10 00:33:53 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, ipAddrTable);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = ERROR_NO_DATA;
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-04-29 11:41:02 +02:00
|
|
|
static DWORD typeFromMibType(DWORD mib_type)
|
|
|
|
{
|
|
|
|
switch (mib_type)
|
|
|
|
{
|
|
|
|
case MIB_IF_TYPE_ETHERNET: return IF_TYPE_ETHERNET_CSMACD;
|
|
|
|
case MIB_IF_TYPE_TOKENRING: return IF_TYPE_ISO88025_TOKENRING;
|
|
|
|
case MIB_IF_TYPE_PPP: return IF_TYPE_PPP;
|
|
|
|
case MIB_IF_TYPE_LOOPBACK: return IF_TYPE_SOFTWARE_LOOPBACK;
|
|
|
|
default: return IF_TYPE_OTHER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-16 19:44:04 +02:00
|
|
|
static DWORD connectionTypeFromMibType(DWORD mib_type)
|
|
|
|
{
|
|
|
|
switch (mib_type)
|
|
|
|
{
|
|
|
|
case MIB_IF_TYPE_PPP: return NET_IF_CONNECTION_DEMAND;
|
|
|
|
case MIB_IF_TYPE_SLIP: return NET_IF_CONNECTION_DEMAND;
|
|
|
|
default: return NET_IF_CONNECTION_DEDICATED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-12 02:07:37 +01:00
|
|
|
static ULONG v4addressesFromIndex(DWORD index, DWORD **addrs, ULONG *num_addrs)
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
2009-07-07 10:12:56 +02:00
|
|
|
ULONG ret, i, j;
|
2009-04-29 11:41:02 +02:00
|
|
|
MIB_IPADDRTABLE *at;
|
|
|
|
|
|
|
|
*num_addrs = 0;
|
|
|
|
if ((ret = getIPAddrTable(&at, GetProcessHeap(), 0))) return ret;
|
|
|
|
for (i = 0; i < at->dwNumEntries; i++)
|
|
|
|
{
|
|
|
|
if (at->table[i].dwIndex == index) (*num_addrs)++;
|
|
|
|
}
|
|
|
|
if (!(*addrs = HeapAlloc(GetProcessHeap(), 0, *num_addrs * sizeof(DWORD))))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, at);
|
|
|
|
return ERROR_OUTOFMEMORY;
|
|
|
|
}
|
2009-07-07 10:12:56 +02:00
|
|
|
for (i = 0, j = 0; i < at->dwNumEntries; i++)
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
2009-07-07 10:12:56 +02:00
|
|
|
if (at->table[i].dwIndex == index) (*addrs)[j++] = at->table[i].dwAddr;
|
2009-04-29 11:41:02 +02:00
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, at);
|
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2010-09-16 20:11:06 +02:00
|
|
|
static char *debugstr_ipv4(const in_addr_t *in_addr, char *buf)
|
|
|
|
{
|
|
|
|
const BYTE *addrp;
|
|
|
|
char *p = buf;
|
|
|
|
|
|
|
|
for (addrp = (const BYTE *)in_addr;
|
|
|
|
addrp - (const BYTE *)in_addr < sizeof(*in_addr);
|
|
|
|
addrp++)
|
|
|
|
{
|
|
|
|
if (addrp == (const BYTE *)in_addr + sizeof(*in_addr) - 1)
|
|
|
|
sprintf(p, "%d", *addrp);
|
|
|
|
else
|
2010-10-04 02:31:03 +02:00
|
|
|
p += sprintf(p, "%d.", *addrp);
|
2010-09-16 20:11:06 +02:00
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *debugstr_ipv6(const struct WS_sockaddr_in6 *sin, char *buf)
|
|
|
|
{
|
|
|
|
const IN6_ADDR *addr = &sin->sin6_addr;
|
|
|
|
char *p = buf;
|
|
|
|
int i;
|
|
|
|
BOOL in_zero = FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < 7; i++)
|
|
|
|
{
|
|
|
|
if (!addr->u.Word[i])
|
|
|
|
{
|
|
|
|
if (i == 0)
|
|
|
|
*p++ = ':';
|
|
|
|
if (!in_zero)
|
|
|
|
{
|
|
|
|
*p++ = ':';
|
|
|
|
in_zero = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-04 02:31:03 +02:00
|
|
|
p += sprintf(p, "%x:", ntohs(addr->u.Word[i]));
|
2010-09-16 20:11:06 +02:00
|
|
|
in_zero = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sprintf(p, "%x", ntohs(addr->u.Word[7]));
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2010-09-16 19:14:18 +02:00
|
|
|
static ULONG count_v4_gateways(DWORD index, PMIB_IPFORWARDTABLE routeTable)
|
|
|
|
{
|
|
|
|
DWORD i, num_gateways = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < routeTable->dwNumEntries; i++)
|
|
|
|
{
|
|
|
|
if (routeTable->table[i].dwForwardIfIndex == index &&
|
|
|
|
routeTable->table[i].dwForwardType == MIB_IPROUTE_TYPE_INDIRECT)
|
|
|
|
num_gateways++;
|
|
|
|
}
|
|
|
|
return num_gateways;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PMIB_IPFORWARDROW findIPv4Gateway(DWORD index,
|
|
|
|
PMIB_IPFORWARDTABLE routeTable)
|
|
|
|
{
|
|
|
|
DWORD i;
|
|
|
|
PMIB_IPFORWARDROW row = NULL;
|
|
|
|
|
|
|
|
for (i = 0; !row && i < routeTable->dwNumEntries; i++)
|
|
|
|
{
|
|
|
|
if (routeTable->table[i].dwForwardIfIndex == index &&
|
|
|
|
routeTable->table[i].dwForwardType == MIB_IPROUTE_TYPE_INDIRECT)
|
|
|
|
row = &routeTable->table[i];
|
|
|
|
}
|
|
|
|
return row;
|
|
|
|
}
|
|
|
|
|
2010-03-12 02:15:03 +01:00
|
|
|
static ULONG adapterAddressesFromIndex(ULONG family, DWORD index, IP_ADAPTER_ADDRESSES *aa, ULONG *size)
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
2010-09-16 19:14:18 +02:00
|
|
|
ULONG ret, i, num_v4addrs = 0, num_v4_gateways = 0, num_v6addrs = 0, total_size;
|
2010-03-12 02:15:03 +01:00
|
|
|
DWORD *v4addrs = NULL;
|
2010-03-12 03:36:46 +01:00
|
|
|
SOCKET_ADDRESS *v6addrs = NULL;
|
2010-09-16 19:14:18 +02:00
|
|
|
PMIB_IPFORWARDTABLE routeTable = NULL;
|
2009-04-29 11:41:02 +02:00
|
|
|
|
2010-03-12 02:15:03 +01:00
|
|
|
if (family == AF_INET)
|
2010-09-16 19:14:18 +02:00
|
|
|
{
|
|
|
|
ret = AllocateAndGetIpForwardTableFromStack(&routeTable, FALSE,
|
|
|
|
GetProcessHeap(), 0);
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
ret = v4addressesFromIndex(index, &v4addrs, &num_v4addrs);
|
|
|
|
num_v4_gateways = count_v4_gateways(index, routeTable);
|
|
|
|
}
|
|
|
|
}
|
2010-03-12 03:36:46 +01:00
|
|
|
else if (family == AF_INET6)
|
|
|
|
ret = v6addressesFromIndex(index, &v6addrs, &num_v6addrs);
|
2010-03-12 02:15:03 +01:00
|
|
|
else if (family == AF_UNSPEC)
|
|
|
|
{
|
2010-09-16 19:14:18 +02:00
|
|
|
ret = AllocateAndGetIpForwardTableFromStack(&routeTable, FALSE,
|
|
|
|
GetProcessHeap(), 0);
|
2010-03-12 03:36:46 +01:00
|
|
|
if (!ret)
|
2010-09-16 19:14:18 +02:00
|
|
|
{
|
|
|
|
ret = v4addressesFromIndex(index, &v4addrs, &num_v4addrs);
|
|
|
|
num_v4_gateways = count_v4_gateways(index, routeTable);
|
|
|
|
if (!ret)
|
|
|
|
ret = v6addressesFromIndex(index, &v6addrs, &num_v6addrs);
|
|
|
|
}
|
2010-03-12 02:15:03 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-03-12 03:36:46 +01:00
|
|
|
FIXME("address family %u unsupported\n", family);
|
2010-03-12 02:15:03 +01:00
|
|
|
ret = ERROR_NO_DATA;
|
|
|
|
}
|
2010-09-16 19:14:18 +02:00
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, routeTable);
|
|
|
|
return ret;
|
|
|
|
}
|
2009-04-29 11:41:02 +02:00
|
|
|
|
|
|
|
total_size = sizeof(IP_ADAPTER_ADDRESSES);
|
|
|
|
total_size += IF_NAMESIZE;
|
2010-09-20 18:47:25 +02:00
|
|
|
total_size += 2 * IF_NAMESIZE * sizeof(WCHAR);
|
2010-03-12 02:07:37 +01:00
|
|
|
total_size += sizeof(IP_ADAPTER_UNICAST_ADDRESS) * num_v4addrs;
|
|
|
|
total_size += sizeof(struct sockaddr_in) * num_v4addrs;
|
2010-09-16 19:14:18 +02:00
|
|
|
total_size += (sizeof(IP_ADAPTER_GATEWAY_ADDRESS) + sizeof(SOCKADDR_IN)) * num_v4_gateways;
|
2010-03-12 03:36:46 +01:00
|
|
|
total_size += sizeof(IP_ADAPTER_UNICAST_ADDRESS) * num_v6addrs;
|
|
|
|
total_size += sizeof(SOCKET_ADDRESS) * num_v6addrs;
|
|
|
|
for (i = 0; i < num_v6addrs; i++)
|
|
|
|
total_size += v6addrs[i].iSockaddrLength;
|
2009-04-29 11:41:02 +02:00
|
|
|
|
|
|
|
if (aa && *size >= total_size)
|
|
|
|
{
|
2009-08-12 00:49:50 +02:00
|
|
|
char name[IF_NAMESIZE], *ptr = (char *)aa + sizeof(IP_ADAPTER_ADDRESSES), *src;
|
|
|
|
WCHAR *dst;
|
2009-04-29 11:41:02 +02:00
|
|
|
DWORD buflen, type, status;
|
|
|
|
|
|
|
|
memset(aa, 0, sizeof(IP_ADAPTER_ADDRESSES));
|
2009-08-31 11:53:04 +02:00
|
|
|
aa->u.s.Length = sizeof(IP_ADAPTER_ADDRESSES);
|
|
|
|
aa->u.s.IfIndex = index;
|
2009-04-29 11:41:02 +02:00
|
|
|
|
|
|
|
getInterfaceNameByIndex(index, name);
|
|
|
|
memcpy(ptr, name, IF_NAMESIZE);
|
|
|
|
aa->AdapterName = ptr;
|
|
|
|
ptr += IF_NAMESIZE;
|
2009-08-12 00:49:50 +02:00
|
|
|
aa->FriendlyName = (WCHAR *)ptr;
|
|
|
|
for (src = name, dst = (WCHAR *)ptr; *src; src++, dst++)
|
2010-09-20 18:47:25 +02:00
|
|
|
*dst = *src;
|
|
|
|
*dst++ = 0;
|
|
|
|
ptr = (char *)dst;
|
|
|
|
aa->Description = (WCHAR *)ptr;
|
|
|
|
for (src = name, dst = (WCHAR *)ptr; *src; src++, dst++)
|
2009-08-12 00:49:50 +02:00
|
|
|
*dst = *src;
|
|
|
|
*dst++ = 0;
|
|
|
|
ptr = (char *)dst;
|
2009-04-29 11:41:02 +02:00
|
|
|
|
2010-09-16 20:11:06 +02:00
|
|
|
TRACE("%s: %d IPv4 addresses, %d IPv6 addresses:\n", name, num_v4addrs,
|
|
|
|
num_v6addrs);
|
2010-09-16 19:14:18 +02:00
|
|
|
if (num_v4_gateways)
|
|
|
|
{
|
|
|
|
PMIB_IPFORWARDROW adapterRow;
|
|
|
|
|
|
|
|
if ((adapterRow = findIPv4Gateway(index, routeTable)))
|
|
|
|
{
|
|
|
|
PIP_ADAPTER_GATEWAY_ADDRESS gw;
|
|
|
|
PSOCKADDR_IN sin;
|
|
|
|
|
2010-09-27 11:30:38 +02:00
|
|
|
gw = (PIP_ADAPTER_GATEWAY_ADDRESS)ptr;
|
|
|
|
aa->FirstGatewayAddress = gw;
|
|
|
|
|
2010-09-16 19:14:18 +02:00
|
|
|
gw->u.s.Length = sizeof(IP_ADAPTER_GATEWAY_ADDRESS);
|
|
|
|
ptr += sizeof(IP_ADAPTER_GATEWAY_ADDRESS);
|
|
|
|
sin = (PSOCKADDR_IN)ptr;
|
|
|
|
sin->sin_family = AF_INET;
|
|
|
|
sin->sin_port = 0;
|
|
|
|
memcpy(&sin->sin_addr, &adapterRow->dwForwardNextHop,
|
|
|
|
sizeof(DWORD));
|
|
|
|
gw->Address.lpSockaddr = (LPSOCKADDR)sin;
|
|
|
|
gw->Address.iSockaddrLength = sizeof(SOCKADDR_IN);
|
2010-09-27 11:30:38 +02:00
|
|
|
gw->Next = NULL;
|
2010-09-16 19:14:18 +02:00
|
|
|
ptr += sizeof(SOCKADDR_IN);
|
|
|
|
}
|
|
|
|
}
|
2010-03-12 02:07:37 +01:00
|
|
|
if (num_v4addrs)
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
|
|
|
IP_ADAPTER_UNICAST_ADDRESS *ua;
|
|
|
|
struct sockaddr_in *sa;
|
2010-09-14 20:59:34 +02:00
|
|
|
aa->Flags |= IP_ADAPTER_IPV4_ENABLED;
|
2009-04-29 11:41:02 +02:00
|
|
|
ua = aa->FirstUnicastAddress = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
|
2010-03-12 02:07:37 +01:00
|
|
|
for (i = 0; i < num_v4addrs; i++)
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
2010-09-16 20:11:06 +02:00
|
|
|
char addr_buf[16];
|
|
|
|
|
2009-04-29 11:41:02 +02:00
|
|
|
memset(ua, 0, sizeof(IP_ADAPTER_UNICAST_ADDRESS));
|
2009-08-31 11:53:04 +02:00
|
|
|
ua->u.s.Length = sizeof(IP_ADAPTER_UNICAST_ADDRESS);
|
2009-04-29 11:41:02 +02:00
|
|
|
ua->Address.iSockaddrLength = sizeof(struct sockaddr_in);
|
2009-08-31 11:53:04 +02:00
|
|
|
ua->Address.lpSockaddr = (SOCKADDR *)((char *)ua + ua->u.s.Length);
|
2009-04-29 11:41:02 +02:00
|
|
|
|
|
|
|
sa = (struct sockaddr_in *)ua->Address.lpSockaddr;
|
|
|
|
sa->sin_family = AF_INET;
|
2010-03-12 02:07:37 +01:00
|
|
|
sa->sin_addr.s_addr = v4addrs[i];
|
2009-04-29 11:41:02 +02:00
|
|
|
sa->sin_port = 0;
|
2010-09-16 20:11:06 +02:00
|
|
|
TRACE("IPv4 %d/%d: %s\n", i + 1, num_v4addrs,
|
|
|
|
debugstr_ipv4(&sa->sin_addr.s_addr, addr_buf));
|
2009-04-29 11:41:02 +02:00
|
|
|
|
2009-08-31 11:53:04 +02:00
|
|
|
ptr += ua->u.s.Length + ua->Address.iSockaddrLength;
|
2010-03-12 02:07:37 +01:00
|
|
|
if (i < num_v4addrs - 1)
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
|
|
|
ua->Next = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
|
|
|
|
ua = ua->Next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-03-12 03:36:46 +01:00
|
|
|
if (num_v6addrs)
|
|
|
|
{
|
|
|
|
IP_ADAPTER_UNICAST_ADDRESS *ua;
|
|
|
|
struct WS_sockaddr_in6 *sa;
|
|
|
|
|
2010-09-14 20:59:34 +02:00
|
|
|
aa->Flags |= IP_ADAPTER_IPV6_ENABLED;
|
2010-03-12 03:36:46 +01:00
|
|
|
if (aa->FirstUnicastAddress)
|
|
|
|
{
|
|
|
|
for (ua = aa->FirstUnicastAddress; ua->Next; ua = ua->Next)
|
|
|
|
;
|
|
|
|
ua->Next = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
|
2010-08-17 20:01:03 +02:00
|
|
|
ua = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
|
2010-03-12 03:36:46 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ua = aa->FirstUnicastAddress = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
|
|
|
|
for (i = 0; i < num_v6addrs; i++)
|
|
|
|
{
|
2010-09-16 20:11:06 +02:00
|
|
|
char addr_buf[46];
|
|
|
|
|
2010-03-12 03:36:46 +01:00
|
|
|
memset(ua, 0, sizeof(IP_ADAPTER_UNICAST_ADDRESS));
|
|
|
|
ua->u.s.Length = sizeof(IP_ADAPTER_UNICAST_ADDRESS);
|
|
|
|
ua->Address.iSockaddrLength = v6addrs[i].iSockaddrLength;
|
|
|
|
ua->Address.lpSockaddr = (SOCKADDR *)((char *)ua + ua->u.s.Length);
|
|
|
|
|
|
|
|
sa = (struct WS_sockaddr_in6 *)ua->Address.lpSockaddr;
|
|
|
|
memcpy(sa, v6addrs[i].lpSockaddr, sizeof(*sa));
|
2010-09-16 20:11:06 +02:00
|
|
|
TRACE("IPv6 %d/%d: %s\n", i + 1, num_v6addrs,
|
|
|
|
debugstr_ipv6(sa, addr_buf));
|
2010-03-12 03:36:46 +01:00
|
|
|
|
|
|
|
ptr += ua->u.s.Length + ua->Address.iSockaddrLength;
|
|
|
|
if (i < num_v6addrs - 1)
|
|
|
|
{
|
|
|
|
ua->Next = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
|
|
|
|
ua = ua->Next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-29 11:41:02 +02:00
|
|
|
|
|
|
|
buflen = MAX_INTERFACE_PHYSADDR;
|
|
|
|
getInterfacePhysicalByIndex(index, &buflen, aa->PhysicalAddress, &type);
|
|
|
|
aa->PhysicalAddressLength = buflen;
|
|
|
|
aa->IfType = typeFromMibType(type);
|
2010-09-16 19:44:04 +02:00
|
|
|
aa->ConnectionType = connectionTypeFromMibType(type);
|
2009-04-29 11:41:02 +02:00
|
|
|
|
|
|
|
getInterfaceMtuByName(name, &aa->Mtu);
|
|
|
|
|
|
|
|
getInterfaceStatusByName(name, &status);
|
|
|
|
if (status == MIB_IF_OPER_STATUS_OPERATIONAL) aa->OperStatus = IfOperStatusUp;
|
|
|
|
else if (status == MIB_IF_OPER_STATUS_NON_OPERATIONAL) aa->OperStatus = IfOperStatusDown;
|
|
|
|
else aa->OperStatus = IfOperStatusUnknown;
|
|
|
|
}
|
|
|
|
*size = total_size;
|
2010-09-16 19:14:18 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, routeTable);
|
2010-03-12 03:36:46 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, v6addrs);
|
2010-03-12 02:07:37 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, v4addrs);
|
2009-04-29 11:41:02 +02:00
|
|
|
return ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI GetAdaptersAddresses(ULONG family, ULONG flags, PVOID reserved,
|
|
|
|
PIP_ADAPTER_ADDRESSES aa, PULONG buflen)
|
|
|
|
{
|
|
|
|
InterfaceIndexTable *table;
|
|
|
|
ULONG i, size, total_size, ret = ERROR_NO_DATA;
|
|
|
|
|
2010-09-16 23:04:02 +02:00
|
|
|
TRACE("(%d, %08x, %p, %p, %p)\n", family, flags, reserved, aa, buflen);
|
|
|
|
|
2009-04-29 11:41:02 +02:00
|
|
|
if (!buflen) return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
table = getInterfaceIndexTable();
|
|
|
|
if (!table || !table->numIndexes)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
|
|
|
return ERROR_NO_DATA;
|
|
|
|
}
|
|
|
|
total_size = 0;
|
|
|
|
for (i = 0; i < table->numIndexes; i++)
|
|
|
|
{
|
|
|
|
size = 0;
|
2010-03-12 02:15:03 +01:00
|
|
|
if ((ret = adapterAddressesFromIndex(family, table->indexes[i], NULL, &size)))
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
total_size += size;
|
|
|
|
}
|
|
|
|
if (aa && *buflen >= total_size)
|
|
|
|
{
|
|
|
|
ULONG bytes_left = size = total_size;
|
|
|
|
for (i = 0; i < table->numIndexes; i++)
|
|
|
|
{
|
2010-03-12 02:15:03 +01:00
|
|
|
if ((ret = adapterAddressesFromIndex(family, table->indexes[i], aa, &size)))
|
2009-04-29 11:41:02 +02:00
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (i < table->numIndexes - 1)
|
|
|
|
{
|
|
|
|
aa->Next = (IP_ADAPTER_ADDRESSES *)((char *)aa + size);
|
|
|
|
aa = aa->Next;
|
|
|
|
size = bytes_left -= size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret = ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
if (*buflen < total_size) ret = ERROR_BUFFER_OVERFLOW;
|
|
|
|
*buflen = total_size;
|
|
|
|
|
|
|
|
TRACE("num adapters %u\n", table->numIndexes);
|
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
|
|
|
return ret;
|
|
|
|
}
|
2003-05-13 05:32:20 +02:00
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetBestInterface (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the interface, with the best route for the given IP address.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* PARAMS
|
|
|
|
* dwDestAddr [In] IP address to search the interface for
|
|
|
|
* pdwBestIfIndex [Out] found best interface
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetBestInterface(IPAddr dwDestAddr, PDWORD pdwBestIfIndex)
|
2008-01-17 13:26:14 +01:00
|
|
|
{
|
|
|
|
struct WS_sockaddr_in sa_in;
|
|
|
|
memset(&sa_in, 0, sizeof(sa_in));
|
|
|
|
sa_in.sin_family = AF_INET;
|
|
|
|
sa_in.sin_addr.S_un.S_addr = dwDestAddr;
|
|
|
|
return GetBestInterfaceEx((struct WS_sockaddr *)&sa_in, pdwBestIfIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetBestInterfaceEx (IPHLPAPI.@)
|
|
|
|
*
|
|
|
|
* Get the interface, with the best route for the given IP address.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* dwDestAddr [In] IP address to search the interface for
|
|
|
|
* pdwBestIfIndex [Out] found best interface
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
|
|
|
*/
|
|
|
|
DWORD WINAPI GetBestInterfaceEx(struct WS_sockaddr *pDestAddr, PDWORD pdwBestIfIndex)
|
2003-05-13 05:32:20 +02:00
|
|
|
{
|
2003-09-08 21:00:25 +02:00
|
|
|
DWORD ret;
|
|
|
|
|
2008-01-17 13:26:14 +01:00
|
|
|
TRACE("pDestAddr %p, pdwBestIfIndex %p\n", pDestAddr, pdwBestIfIndex);
|
|
|
|
if (!pDestAddr || !pdwBestIfIndex)
|
2003-09-08 21:00:25 +02:00
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
|
|
|
MIB_IPFORWARDROW ipRow;
|
|
|
|
|
2008-01-17 13:26:14 +01:00
|
|
|
if (pDestAddr->sa_family == AF_INET) {
|
|
|
|
ret = GetBestRoute(((struct WS_sockaddr_in *)pDestAddr)->sin_addr.S_un.S_addr, 0, &ipRow);
|
|
|
|
if (ret == ERROR_SUCCESS)
|
|
|
|
*pdwBestIfIndex = ipRow.dwForwardIfIndex;
|
|
|
|
} else {
|
|
|
|
FIXME("address family %d not supported\n", pDestAddr->sa_family);
|
|
|
|
ret = ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
2003-09-08 21:00:25 +02:00
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-09-08 21:00:25 +02:00
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetBestRoute (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the best route for the given IP address.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* PARAMS
|
|
|
|
* dwDestAddr [In] IP address to search the best route for
|
|
|
|
* dwSourceAddr [In] optional source IP address
|
|
|
|
* pBestRoute [Out] found best route
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetBestRoute(DWORD dwDestAddr, DWORD dwSourceAddr, PMIB_IPFORWARDROW pBestRoute)
|
|
|
|
{
|
2003-09-08 21:00:25 +02:00
|
|
|
PMIB_IPFORWARDTABLE table;
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("dwDestAddr 0x%08x, dwSourceAddr 0x%08x, pBestRoute %p\n", dwDestAddr,
|
2004-01-02 04:55:05 +01:00
|
|
|
dwSourceAddr, pBestRoute);
|
2003-09-08 21:00:25 +02:00
|
|
|
if (!pBestRoute)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2007-10-24 18:15:39 +02:00
|
|
|
ret = AllocateAndGetIpForwardTableFromStack(&table, FALSE, GetProcessHeap(), 0);
|
2007-11-15 18:38:12 +01:00
|
|
|
if (!ret) {
|
2007-10-24 21:47:42 +02:00
|
|
|
DWORD ndx, matchedBits, matchedNdx = table->dwNumEntries;
|
2003-09-08 21:00:25 +02:00
|
|
|
|
|
|
|
for (ndx = 0, matchedBits = 0; ndx < table->dwNumEntries; ndx++) {
|
2006-01-24 12:18:50 +01:00
|
|
|
if (table->table[ndx].dwForwardType != MIB_IPROUTE_TYPE_INVALID &&
|
|
|
|
(dwDestAddr & table->table[ndx].dwForwardMask) ==
|
2003-09-08 21:00:25 +02:00
|
|
|
(table->table[ndx].dwForwardDest & table->table[ndx].dwForwardMask)) {
|
|
|
|
DWORD numShifts, mask;
|
|
|
|
|
|
|
|
for (numShifts = 0, mask = table->table[ndx].dwForwardMask;
|
2010-09-25 03:38:29 +02:00
|
|
|
mask && mask & 1; mask >>= 1, numShifts++)
|
2003-09-08 21:00:25 +02:00
|
|
|
;
|
|
|
|
if (numShifts > matchedBits) {
|
|
|
|
matchedBits = numShifts;
|
|
|
|
matchedNdx = ndx;
|
|
|
|
}
|
2009-10-12 13:39:30 +02:00
|
|
|
else if (!matchedBits) {
|
2007-11-15 18:38:12 +01:00
|
|
|
matchedNdx = ndx;
|
|
|
|
}
|
2003-09-08 21:00:25 +02:00
|
|
|
}
|
|
|
|
}
|
2006-01-24 12:18:50 +01:00
|
|
|
if (matchedNdx < table->dwNumEntries) {
|
|
|
|
memcpy(pBestRoute, &table->table[matchedNdx], sizeof(MIB_IPFORWARDROW));
|
|
|
|
ret = ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* No route matches, which can happen if there's no default route. */
|
|
|
|
ret = ERROR_HOST_UNREACHABLE;
|
|
|
|
}
|
2003-09-08 21:00:25 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-09-08 21:00:25 +02:00
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetFriendlyIfIndex (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get a "friendly" version of IfIndex, which is one that doesn't
|
2004-12-13 14:21:39 +01:00
|
|
|
* have the top byte set. Doesn't validate whether IfIndex is a valid
|
|
|
|
* adapter index.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* IfIndex [In] interface index to get the friendly one for
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* A friendly version of IfIndex.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetFriendlyIfIndex(DWORD IfIndex)
|
|
|
|
{
|
|
|
|
/* windows doesn't validate these, either, just makes sure the top byte is
|
2003-09-08 21:00:25 +02:00
|
|
|
cleared. I assume my ifenum module never gives an index with the top
|
2003-05-13 05:32:20 +02:00
|
|
|
byte set. */
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", IfIndex);
|
2003-05-13 05:32:20 +02:00
|
|
|
return IfIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetIfEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get information about an interface.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* PARAMS
|
|
|
|
* pIfRow [In/Out] In: dwIndex of MIB_IFROW selects the interface.
|
|
|
|
* Out: interface information
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetIfEntry(PMIB_IFROW pIfRow)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
2006-01-27 19:19:32 +01:00
|
|
|
char nameBuf[MAX_ADAPTER_NAME];
|
|
|
|
char *name;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("pIfRow %p\n", pIfRow);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pIfRow)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2006-01-27 19:19:32 +01:00
|
|
|
name = getInterfaceNameByIndex(pIfRow->dwIndex, nameBuf);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (name) {
|
|
|
|
ret = getInterfaceEntryByName(name, pIfRow);
|
|
|
|
if (ret == NO_ERROR)
|
|
|
|
ret = getInterfaceStatsByName(name, pIfRow);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = ERROR_INVALID_DATA;
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-08 21:00:25 +02:00
|
|
|
static int IfTableSorter(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (a && b)
|
2005-06-27 11:53:46 +02:00
|
|
|
ret = ((const MIB_IFROW*)a)->dwIndex - ((const MIB_IFROW*)b)->dwIndex;
|
2003-09-08 21:00:25 +02:00
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-13 05:32:20 +02:00
|
|
|
/******************************************************************
|
|
|
|
* GetIfTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get a table of local interfaces.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIfTable [Out] buffer for local interfaces table
|
|
|
|
* pdwSize [In/Out] length of output buffer
|
|
|
|
* bOrder [In] whether to sort the table
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pdwSize is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
|
|
|
|
* size.
|
|
|
|
* If bOrder is true, the returned table will be sorted by interface index.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetIfTable(PMIB_IFTABLE pIfTable, PULONG pdwSize, BOOL bOrder)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("pIfTable %p, pdwSize %p, bOrder %d\n", pdwSize, pdwSize,
|
2004-01-02 04:55:05 +01:00
|
|
|
(DWORD)bOrder);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pdwSize)
|
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
|
|
|
DWORD numInterfaces = getNumInterfaces();
|
2007-11-15 20:05:10 +01:00
|
|
|
ULONG size = sizeof(MIB_IFTABLE);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2007-11-15 20:05:10 +01:00
|
|
|
if (numInterfaces > 1)
|
|
|
|
size += (numInterfaces - 1) * sizeof(MIB_IFROW);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pIfTable || *pdwSize < size) {
|
|
|
|
*pdwSize = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
InterfaceIndexTable *table = getInterfaceIndexTable();
|
|
|
|
|
|
|
|
if (table) {
|
2007-11-15 20:05:10 +01:00
|
|
|
size = sizeof(MIB_IFTABLE);
|
|
|
|
if (table->numIndexes > 1)
|
|
|
|
size += (table->numIndexes - 1) * sizeof(MIB_IFROW);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (*pdwSize < size) {
|
|
|
|
*pdwSize = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DWORD ndx;
|
|
|
|
|
2006-01-24 12:18:50 +01:00
|
|
|
*pdwSize = size;
|
2003-05-13 05:32:20 +02:00
|
|
|
pIfTable->dwNumEntries = 0;
|
|
|
|
for (ndx = 0; ndx < table->numIndexes; ndx++) {
|
|
|
|
pIfTable->table[ndx].dwIndex = table->indexes[ndx];
|
|
|
|
GetIfEntry(&pIfTable->table[ndx]);
|
|
|
|
pIfTable->dwNumEntries++;
|
|
|
|
}
|
2003-09-08 21:00:25 +02:00
|
|
|
if (bOrder)
|
|
|
|
qsort(pIfTable->table, pIfTable->dwNumEntries, sizeof(MIB_IFROW),
|
|
|
|
IfTableSorter);
|
2003-05-13 05:32:20 +02:00
|
|
|
ret = NO_ERROR;
|
|
|
|
}
|
2004-12-13 14:21:39 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetInterfaceInfo (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get a list of network interface adapters.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* PARAMS
|
2006-01-20 16:16:56 +01:00
|
|
|
* pIfTable [Out] buffer for interface adapters
|
2005-11-14 12:24:37 +01:00
|
|
|
* dwOutBufLen [Out] if buffer is too small, returns required size
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2006-01-27 19:19:32 +01:00
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* MSDN states this should return non-loopback interfaces only.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetInterfaceInfo(PIP_INTERFACE_INFO pIfTable, PULONG dwOutBufLen)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("pIfTable %p, dwOutBufLen %p\n", pIfTable, dwOutBufLen);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!dwOutBufLen)
|
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
|
|
|
DWORD numInterfaces = getNumInterfaces();
|
2007-11-15 20:05:10 +01:00
|
|
|
ULONG size = sizeof(IP_INTERFACE_INFO);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2007-11-15 20:05:10 +01:00
|
|
|
if (numInterfaces > 1)
|
|
|
|
size += (numInterfaces - 1) * sizeof(IP_ADAPTER_INDEX_MAP);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pIfTable || *dwOutBufLen < size) {
|
|
|
|
*dwOutBufLen = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
InterfaceIndexTable *table = getInterfaceIndexTable();
|
|
|
|
|
|
|
|
if (table) {
|
2007-11-15 20:05:10 +01:00
|
|
|
size = sizeof(IP_INTERFACE_INFO);
|
|
|
|
if (table->numIndexes > 1)
|
|
|
|
size += (table->numIndexes - 1) * sizeof(IP_ADAPTER_INDEX_MAP);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (*dwOutBufLen < size) {
|
|
|
|
*dwOutBufLen = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DWORD ndx;
|
2006-01-27 19:19:32 +01:00
|
|
|
char nameBuf[MAX_ADAPTER_NAME];
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2006-01-25 13:14:12 +01:00
|
|
|
*dwOutBufLen = size;
|
2003-05-13 05:32:20 +02:00
|
|
|
pIfTable->NumAdapters = 0;
|
|
|
|
for (ndx = 0; ndx < table->numIndexes; ndx++) {
|
|
|
|
const char *walker, *name;
|
|
|
|
WCHAR *assigner;
|
|
|
|
|
|
|
|
pIfTable->Adapter[ndx].Index = table->indexes[ndx];
|
2006-01-27 19:19:32 +01:00
|
|
|
name = getInterfaceNameByIndex(table->indexes[ndx], nameBuf);
|
2003-05-13 05:32:20 +02:00
|
|
|
for (walker = name, assigner = pIfTable->Adapter[ndx].Name;
|
|
|
|
walker && *walker &&
|
|
|
|
assigner - pIfTable->Adapter[ndx].Name < MAX_ADAPTER_NAME - 1;
|
|
|
|
walker++, assigner++)
|
|
|
|
*assigner = *walker;
|
|
|
|
*assigner = 0;
|
|
|
|
pIfTable->NumAdapters++;
|
|
|
|
}
|
|
|
|
ret = NO_ERROR;
|
|
|
|
}
|
2004-12-13 14:21:39 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ret = ERROR_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetIpAddrTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get interface-to-IP address mapping table.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIpAddrTable [Out] buffer for mapping table
|
|
|
|
* pdwSize [In/Out] length of output buffer
|
|
|
|
* bOrder [In] whether to sort the table
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pdwSize is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
|
|
|
|
* size.
|
|
|
|
* If bOrder is true, the returned table will be sorted by the next hop and
|
|
|
|
* an assortment of arbitrary parameters.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetIpAddrTable(PMIB_IPADDRTABLE pIpAddrTable, PULONG pdwSize, BOOL bOrder)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("pIpAddrTable %p, pdwSize %p, bOrder %d\n", pIpAddrTable, pdwSize,
|
2004-01-02 04:55:05 +01:00
|
|
|
(DWORD)bOrder);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pdwSize)
|
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
2006-01-24 12:18:50 +01:00
|
|
|
PMIB_IPADDRTABLE table;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2006-01-24 12:18:50 +01:00
|
|
|
ret = getIPAddrTable(&table, GetProcessHeap(), 0);
|
|
|
|
if (ret == NO_ERROR)
|
|
|
|
{
|
2007-11-15 20:06:07 +01:00
|
|
|
ULONG size = sizeof(MIB_IPADDRTABLE);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2007-11-15 20:06:07 +01:00
|
|
|
if (table->dwNumEntries > 1)
|
|
|
|
size += (table->dwNumEntries - 1) * sizeof(MIB_IPADDRROW);
|
2006-01-24 12:18:50 +01:00
|
|
|
if (!pIpAddrTable || *pdwSize < size) {
|
|
|
|
*pdwSize = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
2006-01-24 12:18:50 +01:00
|
|
|
else {
|
|
|
|
*pdwSize = size;
|
2007-11-15 20:06:07 +01:00
|
|
|
memcpy(pIpAddrTable, table, size);
|
2006-01-24 12:18:50 +01:00
|
|
|
if (bOrder)
|
|
|
|
qsort(pIpAddrTable->table, pIpAddrTable->dwNumEntries,
|
|
|
|
sizeof(MIB_IPADDRROW), IpAddrTableSorter);
|
|
|
|
ret = NO_ERROR;
|
2003-09-08 21:00:25 +02:00
|
|
|
}
|
2006-01-24 12:18:50 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-09-08 21:00:25 +02:00
|
|
|
}
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-09-08 21:00:25 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-13 05:32:20 +02:00
|
|
|
/******************************************************************
|
|
|
|
* GetIpForwardTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the route table.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIpForwardTable [Out] buffer for route table
|
|
|
|
* pdwSize [In/Out] length of output buffer
|
|
|
|
* bOrder [In] whether to sort the table
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pdwSize is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
|
|
|
|
* size.
|
|
|
|
* If bOrder is true, the returned table will be sorted by the next hop and
|
|
|
|
* an assortment of arbitrary parameters.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetIpForwardTable(PMIB_IPFORWARDTABLE pIpForwardTable, PULONG pdwSize, BOOL bOrder)
|
|
|
|
{
|
2009-03-02 12:49:09 +01:00
|
|
|
DWORD ret;
|
|
|
|
PMIB_IPFORWARDTABLE table;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:49:09 +01:00
|
|
|
TRACE("pIpForwardTable %p, pdwSize %p, bOrder %d\n", pIpForwardTable, pdwSize, bOrder);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:49:09 +01:00
|
|
|
if (!pdwSize) return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2009-03-02 12:52:45 +01:00
|
|
|
ret = AllocateAndGetIpForwardTableFromStack(&table, bOrder, GetProcessHeap(), 0);
|
2009-03-02 12:49:09 +01:00
|
|
|
if (!ret) {
|
|
|
|
DWORD size = FIELD_OFFSET( MIB_IPFORWARDTABLE, table[table->dwNumEntries] );
|
|
|
|
if (!pIpForwardTable || *pdwSize < size) {
|
|
|
|
*pdwSize = size;
|
2003-05-13 05:32:20 +02:00
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
2009-03-02 12:49:09 +01:00
|
|
|
*pdwSize = size;
|
|
|
|
memcpy(pIpForwardTable, table, size);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
2004-12-13 14:21:39 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
2009-03-02 12:49:09 +01:00
|
|
|
TRACE("returning %d\n", ret);
|
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetIpNetTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the IP-to-physical address mapping table.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIpNetTable [Out] buffer for mapping table
|
|
|
|
* pdwSize [In/Out] length of output buffer
|
|
|
|
* bOrder [In] whether to sort the table
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pdwSize is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
|
|
|
|
* size.
|
|
|
|
* If bOrder is true, the returned table will be sorted by IP address.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetIpNetTable(PMIB_IPNETTABLE pIpNetTable, PULONG pdwSize, BOOL bOrder)
|
|
|
|
{
|
2009-03-02 12:45:58 +01:00
|
|
|
DWORD ret;
|
|
|
|
PMIB_IPNETTABLE table;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:45:58 +01:00
|
|
|
TRACE("pIpNetTable %p, pdwSize %p, bOrder %d\n", pIpNetTable, pdwSize, bOrder);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:45:58 +01:00
|
|
|
if (!pdwSize) return ERROR_INVALID_PARAMETER;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:51:48 +01:00
|
|
|
ret = AllocateAndGetIpNetTableFromStack( &table, bOrder, GetProcessHeap(), 0 );
|
2009-03-02 12:45:58 +01:00
|
|
|
if (!ret) {
|
|
|
|
DWORD size = FIELD_OFFSET( MIB_IPNETTABLE, table[table->dwNumEntries] );
|
|
|
|
if (!pIpNetTable || *pdwSize < size) {
|
2003-05-13 05:32:20 +02:00
|
|
|
*pdwSize = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
2006-01-24 12:18:50 +01:00
|
|
|
*pdwSize = size;
|
2003-05-13 05:32:20 +02:00
|
|
|
memcpy(pIpNetTable, table, size);
|
|
|
|
}
|
2004-12-13 14:21:39 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
2009-03-02 12:45:58 +01:00
|
|
|
TRACE("returning %d\n", ret);
|
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetNetworkParams (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the network parameters for the local computer.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* PARAMS
|
|
|
|
* pFixedInfo [Out] buffer for network parameters
|
2005-11-23 20:14:43 +01:00
|
|
|
* pOutBufLen [In/Out] length of output buffer
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pOutBufLen is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and pOutBufLen will be set to the required byte
|
|
|
|
* size.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetNetworkParams(PFIXED_INFO pFixedInfo, PULONG pOutBufLen)
|
|
|
|
{
|
2004-01-02 04:55:05 +01:00
|
|
|
DWORD ret, size;
|
|
|
|
LONG regReturn;
|
2003-09-08 21:00:25 +02:00
|
|
|
HKEY hKey;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("pFixedInfo %p, pOutBufLen %p\n", pFixedInfo, pOutBufLen);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pOutBufLen)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
2007-04-18 20:39:33 +02:00
|
|
|
initialise_resolver();
|
2003-09-08 21:00:25 +02:00
|
|
|
size = sizeof(FIXED_INFO) + (_res.nscount > 0 ? (_res.nscount - 1) *
|
|
|
|
sizeof(IP_ADDR_STRING) : 0);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pFixedInfo || *pOutBufLen < size) {
|
|
|
|
*pOutBufLen = size;
|
|
|
|
return ERROR_BUFFER_OVERFLOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(pFixedInfo, 0, size);
|
|
|
|
size = sizeof(pFixedInfo->HostName);
|
|
|
|
GetComputerNameExA(ComputerNameDnsHostname, pFixedInfo->HostName, &size);
|
|
|
|
size = sizeof(pFixedInfo->DomainName);
|
|
|
|
GetComputerNameExA(ComputerNameDnsDomain, pFixedInfo->DomainName, &size);
|
|
|
|
if (_res.nscount > 0) {
|
|
|
|
PIP_ADDR_STRING ptr;
|
|
|
|
int i;
|
|
|
|
|
2003-09-08 21:00:25 +02:00
|
|
|
for (i = 0, ptr = &pFixedInfo->DnsServerList; i < _res.nscount && ptr;
|
2003-05-13 05:32:20 +02:00
|
|
|
i++, ptr = ptr->Next) {
|
|
|
|
toIPAddressString(_res.nsaddr_list[i].sin_addr.s_addr,
|
|
|
|
ptr->IpAddress.String);
|
2003-09-08 21:00:25 +02:00
|
|
|
if (i == _res.nscount - 1)
|
|
|
|
ptr->Next = NULL;
|
|
|
|
else if (i == 0)
|
|
|
|
ptr->Next = (PIP_ADDR_STRING)((LPBYTE)pFixedInfo + sizeof(FIXED_INFO));
|
|
|
|
else
|
|
|
|
ptr->Next = (PIP_ADDR_STRING)((PBYTE)ptr + sizeof(IP_ADDR_STRING));
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
}
|
2003-09-08 21:00:25 +02:00
|
|
|
pFixedInfo->NodeType = HYBRID_NODETYPE;
|
2004-01-02 04:55:05 +01:00
|
|
|
regReturn = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
|
|
|
|
"SYSTEM\\CurrentControlSet\\Services\\VxD\\MSTCP", 0, KEY_READ, &hKey);
|
|
|
|
if (regReturn != ERROR_SUCCESS)
|
|
|
|
regReturn = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
|
|
|
|
"SYSTEM\\CurrentControlSet\\Services\\NetBT\\Parameters", 0, KEY_READ,
|
|
|
|
&hKey);
|
|
|
|
if (regReturn == ERROR_SUCCESS)
|
2003-09-08 21:00:25 +02:00
|
|
|
{
|
|
|
|
DWORD size = sizeof(pFixedInfo->ScopeId);
|
|
|
|
|
2005-07-07 14:08:42 +02:00
|
|
|
RegQueryValueExA(hKey, "ScopeID", NULL, NULL, (LPBYTE)pFixedInfo->ScopeId, &size);
|
2003-09-08 21:00:25 +02:00
|
|
|
RegCloseKey(hKey);
|
|
|
|
}
|
|
|
|
|
2003-05-13 05:32:20 +02:00
|
|
|
/* FIXME: can check whether routing's enabled in /proc/sys/net/ipv4/ip_forward
|
|
|
|
I suppose could also check for a listener on port 53 to set EnableDns */
|
2004-01-02 04:55:05 +01:00
|
|
|
ret = NO_ERROR;
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2004-01-02 04:55:05 +01:00
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetNumberOfInterfaces (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the number of interfaces.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pdwNumIf [Out] number of interfaces
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* NO_ERROR on success, ERROR_INVALID_PARAMETER if pdwNumIf is NULL.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetNumberOfInterfaces(PDWORD pdwNumIf)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("pdwNumIf %p\n", pdwNumIf);
|
2003-05-13 05:32:20 +02:00
|
|
|
if (!pdwNumIf)
|
|
|
|
ret = ERROR_INVALID_PARAMETER;
|
|
|
|
else {
|
|
|
|
*pdwNumIf = getNumInterfaces();
|
|
|
|
ret = NO_ERROR;
|
|
|
|
}
|
2006-10-07 20:18:10 +02:00
|
|
|
TRACE("returning %d\n", ret);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetPerAdapterInfo (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get information about an adapter corresponding to an interface.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* IfIndex [In] interface info
|
|
|
|
* pPerAdapterInfo [Out] buffer for per adapter info
|
|
|
|
* pOutBufLen [In/Out] length of output buffer
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
|
|
|
*
|
|
|
|
* FIXME
|
2007-10-13 01:16:35 +02:00
|
|
|
* Stub, returns empty IP_PER_ADAPTER_INFO in every case.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetPerAdapterInfo(ULONG IfIndex, PIP_PER_ADAPTER_INFO pPerAdapterInfo, PULONG pOutBufLen)
|
|
|
|
{
|
2007-10-13 01:16:35 +02:00
|
|
|
ULONG bytesNeeded = sizeof(IP_PER_ADAPTER_INFO);
|
|
|
|
|
2008-07-02 17:27:37 +02:00
|
|
|
TRACE("(IfIndex %d, pPerAdapterInfo %p, pOutBufLen %p)\n", IfIndex, pPerAdapterInfo, pOutBufLen);
|
|
|
|
|
|
|
|
if (!pOutBufLen) return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (!pPerAdapterInfo || *pOutBufLen < bytesNeeded)
|
2007-10-13 01:16:35 +02:00
|
|
|
{
|
|
|
|
*pOutBufLen = bytesNeeded;
|
2008-07-02 17:27:37 +02:00
|
|
|
return ERROR_BUFFER_OVERFLOW;
|
2007-10-13 01:16:35 +02:00
|
|
|
}
|
2008-07-02 17:27:37 +02:00
|
|
|
|
|
|
|
memset(pPerAdapterInfo, 0, bytesNeeded);
|
|
|
|
return NO_ERROR;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetRTTAndHopCount (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get round-trip time (RTT) and hop count.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* DestIpAddress [In] destination address to get the info for
|
|
|
|
* HopCount [Out] retrieved hop count
|
|
|
|
* MaxHops [In] maximum hops to search for the destination
|
|
|
|
* RTT [Out] RTT in milliseconds
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns FALSE.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
BOOL WINAPI GetRTTAndHopCount(IPAddr DestIpAddress, PULONG HopCount, ULONG MaxHops, PULONG RTT)
|
|
|
|
{
|
2009-01-06 00:05:25 +01:00
|
|
|
FIXME("(DestIpAddress 0x%08x, HopCount %p, MaxHops %d, RTT %p): stub\n",
|
2004-01-02 04:55:05 +01:00
|
|
|
DestIpAddress, HopCount, MaxHops, RTT);
|
2004-12-13 14:21:39 +01:00
|
|
|
return FALSE;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetTcpTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get the table of active TCP connections.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pTcpTable [Out] buffer for TCP connections table
|
|
|
|
* pdwSize [In/Out] length of output buffer
|
|
|
|
* bOrder [In] whether to order the table
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pdwSize is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to
|
|
|
|
* the required byte size.
|
|
|
|
* If bOrder is true, the returned table will be sorted, first by
|
|
|
|
* local address and port number, then by remote address and port
|
|
|
|
* number.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetTcpTable(PMIB_TCPTABLE pTcpTable, PDWORD pdwSize, BOOL bOrder)
|
|
|
|
{
|
2009-03-02 12:45:12 +01:00
|
|
|
DWORD ret;
|
|
|
|
PMIB_TCPTABLE table;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:45:12 +01:00
|
|
|
TRACE("pTcpTable %p, pdwSize %p, bOrder %d\n", pTcpTable, pdwSize, bOrder);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:45:12 +01:00
|
|
|
if (!pdwSize) return ERROR_INVALID_PARAMETER;
|
2007-07-11 05:39:21 +02:00
|
|
|
|
2009-03-02 12:51:02 +01:00
|
|
|
ret = AllocateAndGetTcpTableFromStack(&table, bOrder, GetProcessHeap(), 0);
|
2009-03-02 12:45:12 +01:00
|
|
|
if (!ret) {
|
|
|
|
DWORD size = FIELD_OFFSET( MIB_TCPTABLE, table[table->dwNumEntries] );
|
|
|
|
if (!pTcpTable || *pdwSize < size) {
|
|
|
|
*pdwSize = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*pdwSize = size;
|
|
|
|
memcpy(pTcpTable, table, size);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
2009-03-02 12:45:12 +01:00
|
|
|
TRACE("returning %d\n", ret);
|
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetUdpTable (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Get a table of active UDP connections.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pUdpTable [Out] buffer for UDP connections table
|
|
|
|
* pdwSize [In/Out] length of output buffer
|
|
|
|
* bOrder [In] whether to order the table
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* If pdwSize is less than required, the function will return
|
|
|
|
* ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the
|
|
|
|
* required byte size.
|
|
|
|
* If bOrder is true, the returned table will be sorted, first by
|
|
|
|
* local address, then by local port number.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetUdpTable(PMIB_UDPTABLE pUdpTable, PDWORD pdwSize, BOOL bOrder)
|
|
|
|
{
|
2009-03-02 12:43:33 +01:00
|
|
|
DWORD ret;
|
|
|
|
PMIB_UDPTABLE table;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:43:33 +01:00
|
|
|
TRACE("pUdpTable %p, pdwSize %p, bOrder %d\n", pUdpTable, pdwSize, bOrder);
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:43:33 +01:00
|
|
|
if (!pdwSize) return ERROR_INVALID_PARAMETER;
|
2003-05-13 05:32:20 +02:00
|
|
|
|
2009-03-02 12:50:30 +01:00
|
|
|
ret = AllocateAndGetUdpTableFromStack( &table, bOrder, GetProcessHeap(), 0 );
|
2009-03-02 12:43:33 +01:00
|
|
|
if (!ret) {
|
|
|
|
DWORD size = FIELD_OFFSET( MIB_UDPTABLE, table[table->dwNumEntries] );
|
|
|
|
if (!pUdpTable || *pdwSize < size) {
|
2003-05-13 05:32:20 +02:00
|
|
|
*pdwSize = size;
|
|
|
|
ret = ERROR_INSUFFICIENT_BUFFER;
|
|
|
|
}
|
|
|
|
else {
|
2006-01-24 12:18:50 +01:00
|
|
|
*pdwSize = size;
|
2003-05-13 05:32:20 +02:00
|
|
|
memcpy(pUdpTable, table, size);
|
|
|
|
}
|
2004-12-13 14:21:39 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, table);
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
2009-03-02 12:43:33 +01:00
|
|
|
TRACE("returning %d\n", ret);
|
|
|
|
return ret;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* GetUniDirectionalAdapterInfo (IPHLPAPI.@)
|
|
|
|
*
|
2004-12-13 14:21:39 +01:00
|
|
|
* This is a Win98-only function to get information on "unidirectional"
|
|
|
|
* adapters. Since this is pretty nonsensical in other contexts, it
|
|
|
|
* never returns anything.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIPIfInfo [Out] buffer for adapter infos
|
|
|
|
* dwOutBufLen [Out] length of the output buffer
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetUniDirectionalAdapterInfo(PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS pIPIfInfo, PULONG dwOutBufLen)
|
|
|
|
{
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("pIPIfInfo %p, dwOutBufLen %p\n", pIPIfInfo, dwOutBufLen);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* a unidirectional adapter?? not bloody likely! */
|
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* IpReleaseAddress (IPHLPAPI.@)
|
|
|
|
*
|
2008-04-03 19:10:30 +02:00
|
|
|
* Release an IP obtained through DHCP,
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* AdapterInfo [In] adapter to release IP address
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* NOTES
|
|
|
|
* Since GetAdaptersInfo never returns adapters that have DHCP enabled,
|
|
|
|
* this function does nothing.
|
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI IpReleaseAddress(PIP_ADAPTER_INDEX_MAP AdapterInfo)
|
|
|
|
{
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("AdapterInfo %p\n", AdapterInfo);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* not a stub, never going to support this (and I never mark an adapter as
|
|
|
|
DHCP enabled, see GetAdaptersInfo, so this should never get called) */
|
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* IpRenewAddress (IPHLPAPI.@)
|
|
|
|
*
|
2008-04-04 21:23:01 +02:00
|
|
|
* Renew an IP obtained through DHCP.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* AdapterInfo [In] adapter to renew IP address
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* Since GetAdaptersInfo never returns adapters that have DHCP enabled,
|
|
|
|
* this function does nothing.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI IpRenewAddress(PIP_ADAPTER_INDEX_MAP AdapterInfo)
|
|
|
|
{
|
2004-01-02 04:55:05 +01:00
|
|
|
TRACE("AdapterInfo %p\n", AdapterInfo);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* not a stub, never going to support this (and I never mark an adapter as
|
|
|
|
DHCP enabled, see GetAdaptersInfo, so this should never get called) */
|
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* NotifyAddrChange (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Notify caller whenever the ip-interface map is changed.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2008-04-03 19:10:30 +02:00
|
|
|
* Handle [Out] handle usable in asynchronous notification
|
2005-11-14 12:24:37 +01:00
|
|
|
* overlapped [In] overlapped structure that notifies the caller
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(Handle %p, overlapped %p): stub\n", Handle, overlapped);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* NotifyRouteChange (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Notify caller whenever the ip routing table is changed.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2008-04-04 21:23:01 +02:00
|
|
|
* Handle [Out] handle usable in asynchronous notification
|
2005-11-14 12:24:37 +01:00
|
|
|
* overlapped [In] overlapped structure that notifies the caller
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI NotifyRouteChange(PHANDLE Handle, LPOVERLAPPED overlapped)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(Handle %p, overlapped %p): stub\n", Handle, overlapped);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SendARP (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Send an ARP request.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2006-01-24 12:18:50 +01:00
|
|
|
* DestIP [In] attempt to obtain this IP
|
2005-11-14 12:24:37 +01:00
|
|
|
* SrcIP [In] optional sender IP address
|
|
|
|
* pMacAddr [Out] buffer for the mac address
|
|
|
|
* PhyAddrLen [In/Out] length of the output buffer
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SendARP(IPAddr DestIP, IPAddr SrcIP, PULONG pMacAddr, PULONG PhyAddrLen)
|
|
|
|
{
|
2009-01-06 00:05:25 +01:00
|
|
|
FIXME("(DestIP 0x%08x, SrcIP 0x%08x, pMacAddr %p, PhyAddrLen %p): stub\n",
|
2004-12-13 14:21:39 +01:00
|
|
|
DestIP, SrcIP, pMacAddr, PhyAddrLen);
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SetIfEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Set the administrative status of an interface.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIfRow [In] dwAdminStatus member specifies the new status.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetIfEntry(PMIB_IFROW pIfRow)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pIfRow %p): stub\n", pIfRow);
|
2006-01-25 13:14:12 +01:00
|
|
|
/* this is supposed to set an interface administratively up or down.
|
2003-05-13 05:32:20 +02:00
|
|
|
Could do SIOCSIFFLAGS and set/clear IFF_UP, but, not sure I want to, and
|
|
|
|
this sort of down is indistinguishable from other sorts of down (e.g. no
|
|
|
|
link). */
|
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SetIpForwardEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Modify an existing route.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pRoute [In] route with the new information
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetIpForwardEntry(PMIB_IPFORWARDROW pRoute)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pRoute %p): stub\n", pRoute);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* this is to add a route entry, how's it distinguishable from
|
|
|
|
CreateIpForwardEntry?
|
|
|
|
could use SIOCADDRT, not sure I want to */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SetIpNetEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Modify an existing ARP entry.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pArpEntry [In] ARP entry with the new information
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetIpNetEntry(PMIB_IPNETROW pArpEntry)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pArpEntry %p): stub\n", pArpEntry);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* same as CreateIpNetEntry here, could use SIOCSARP, not sure I want to */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SetIpStatistics (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Toggle IP forwarding and det the default TTL value.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pIpStats [In] IP statistics with the new information
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetIpStatistics(PMIB_IPSTATS pIpStats)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pIpStats %p): stub\n", pIpStats);
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SetIpTTL (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Set the default TTL value.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* nTTL [In] new TTL value
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetIpTTL(UINT nTTL)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(nTTL %d): stub\n", nTTL);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could echo nTTL > /proc/net/sys/net/ipv4/ip_default_ttl, not sure I
|
|
|
|
want to. Could map EACCESS to ERROR_ACCESS_DENIED, I suppose */
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* SetTcpEntry (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Set the state of a TCP connection.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pTcpRow [In] specifies connection with new state
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns NO_ERROR.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI SetTcpEntry(PMIB_TCPROW pTcpRow)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pTcpRow %p): stub\n", pTcpRow);
|
2008-11-03 22:34:55 +01:00
|
|
|
return 0;
|
2003-05-13 05:32:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* UnenableRouter (IPHLPAPI.@)
|
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* Decrement the IP-forwarding reference count. Turn off IP-forwarding
|
|
|
|
* if it reaches zero.
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* PARAMS
|
2005-11-14 12:24:37 +01:00
|
|
|
* pOverlapped [In/Out] should be the same as in EnableRouter()
|
|
|
|
* lpdwEnableCount [Out] optional, receives reference count
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
2005-11-14 12:24:37 +01:00
|
|
|
* Success: NO_ERROR
|
|
|
|
* Failure: error code from winerror.h
|
2003-05-13 05:32:20 +02:00
|
|
|
*
|
2005-11-14 12:24:37 +01:00
|
|
|
* FIXME
|
|
|
|
* Stub, returns ERROR_NOT_SUPPORTED.
|
2003-05-13 05:32:20 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI UnenableRouter(OVERLAPPED * pOverlapped, LPDWORD lpdwEnableCount)
|
|
|
|
{
|
2004-12-13 14:21:39 +01:00
|
|
|
FIXME("(pOverlapped %p, lpdwEnableCount %p): stub\n", pOverlapped,
|
|
|
|
lpdwEnableCount);
|
2003-05-13 05:32:20 +02:00
|
|
|
/* could echo "0" > /proc/net/sys/net/ipv4/ip_forward, not sure I want to
|
|
|
|
could map EACCESS to ERROR_ACCESS_DENIED, I suppose
|
2006-01-20 16:16:56 +01:00
|
|
|
*/
|
2003-05-13 05:32:20 +02:00
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
}
|