2 * iphlpapi dll implementation
4 * Copyright (C) 2003,2006 Juan Lang
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include <sys/types.h>
26 #ifdef HAVE_NETINET_IN_H
27 # include <netinet/in.h>
29 #ifdef HAVE_ARPA_INET_H
30 # include <arpa/inet.h>
32 #ifdef HAVE_ARPA_NAMESER_H
33 # include <arpa/nameser.h>
39 #define NONAMELESSUNION
40 #define NONAMELESSSTRUCT
54 #include "wine/debug.h"
56 WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
59 #define IF_NAMESIZE 16
63 #define INADDR_NONE ~0UL
66 /* call res_init() just once because of a bug in Mac OS X 10.4 */
67 /* Call once per thread on systems that have per-thread _res. */
68 static void initialise_resolver(void)
70 if ((_res.options & RES_INIT) == 0)
74 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
77 case DLL_PROCESS_ATTACH:
78 DisableThreadLibraryCalls( hinstDLL );
81 case DLL_PROCESS_DETACH:
87 /******************************************************************
88 * AddIPAddress (IPHLPAPI.@)
90 * Add an IP address to an adapter.
93 * Address [In] IP address to add to the adapter
94 * IpMask [In] subnet mask for the IP address
95 * IfIndex [In] adapter index to add the address
96 * NTEContext [Out] Net Table Entry (NTE) context for the IP address
97 * NTEInstance [Out] NTE instance for the IP address
101 * Failure: error code from winerror.h
104 * Stub. Currently returns ERROR_NOT_SUPPORTED.
106 DWORD WINAPI AddIPAddress(IPAddr Address, IPMask IpMask, DWORD IfIndex, PULONG NTEContext, PULONG NTEInstance)
109 return ERROR_NOT_SUPPORTED;
113 /******************************************************************
114 * AllocateAndGetIfTableFromStack (IPHLPAPI.@)
116 * Get table of local interfaces.
117 * Like GetIfTable(), but allocate the returned table from heap.
120 * ppIfTable [Out] pointer into which the MIB_IFTABLE is
121 * allocated and returned.
122 * bOrder [In] whether to sort the table
123 * heap [In] heap from which the table is allocated
124 * flags [In] flags to HeapAlloc
127 * ERROR_INVALID_PARAMETER if ppIfTable is NULL, whatever
128 * GetIfTable() returns otherwise.
130 DWORD WINAPI AllocateAndGetIfTableFromStack(PMIB_IFTABLE *ppIfTable,
131 BOOL bOrder, HANDLE heap, DWORD flags)
135 TRACE("ppIfTable %p, bOrder %d, heap %p, flags 0x%08x\n", ppIfTable,
136 bOrder, heap, flags);
138 ret = ERROR_INVALID_PARAMETER;
142 ret = GetIfTable(*ppIfTable, &dwSize, bOrder);
143 if (ret == ERROR_INSUFFICIENT_BUFFER) {
144 *ppIfTable = HeapAlloc(heap, flags, dwSize);
145 ret = GetIfTable(*ppIfTable, &dwSize, bOrder);
148 TRACE("returning %d\n", ret);
153 static int IpAddrTableSorter(const void *a, const void *b)
158 ret = ((const MIB_IPADDRROW*)a)->dwAddr - ((const MIB_IPADDRROW*)b)->dwAddr;
165 /******************************************************************
166 * AllocateAndGetIpAddrTableFromStack (IPHLPAPI.@)
168 * Get interface-to-IP address mapping table.
169 * Like GetIpAddrTable(), but allocate the returned table from heap.
172 * ppIpAddrTable [Out] pointer into which the MIB_IPADDRTABLE is
173 * allocated and returned.
174 * bOrder [In] whether to sort the table
175 * heap [In] heap from which the table is allocated
176 * flags [In] flags to HeapAlloc
179 * ERROR_INVALID_PARAMETER if ppIpAddrTable is NULL, other error codes on
180 * failure, NO_ERROR on success.
182 DWORD WINAPI AllocateAndGetIpAddrTableFromStack(PMIB_IPADDRTABLE *ppIpAddrTable,
183 BOOL bOrder, HANDLE heap, DWORD flags)
187 TRACE("ppIpAddrTable %p, bOrder %d, heap %p, flags 0x%08x\n",
188 ppIpAddrTable, bOrder, heap, flags);
189 ret = getIPAddrTable(ppIpAddrTable, heap, flags);
191 qsort((*ppIpAddrTable)->table, (*ppIpAddrTable)->dwNumEntries,
192 sizeof(MIB_IPADDRROW), IpAddrTableSorter);
193 TRACE("returning %d\n", ret);
198 /******************************************************************
199 * CancelIPChangeNotify (IPHLPAPI.@)
201 * Cancel a previous notification created by NotifyAddrChange or
205 * overlapped [In] overlapped structure that notifies the caller
212 * Stub, returns FALSE.
214 BOOL WINAPI CancelIPChangeNotify(LPOVERLAPPED overlapped)
216 FIXME("(overlapped %p): stub\n", overlapped);
222 /******************************************************************
223 * CreateIpForwardEntry (IPHLPAPI.@)
225 * Create a route in the local computer's IP table.
228 * pRoute [In] new route information
232 * Failure: error code from winerror.h
235 * Stub, always returns NO_ERROR.
237 DWORD WINAPI CreateIpForwardEntry(PMIB_IPFORWARDROW pRoute)
239 FIXME("(pRoute %p): stub\n", pRoute);
240 /* could use SIOCADDRT, not sure I want to */
245 /******************************************************************
246 * CreateIpNetEntry (IPHLPAPI.@)
248 * Create entry in the ARP table.
251 * pArpEntry [In] new ARP entry
255 * Failure: error code from winerror.h
258 * Stub, always returns NO_ERROR.
260 DWORD WINAPI CreateIpNetEntry(PMIB_IPNETROW pArpEntry)
262 FIXME("(pArpEntry %p)\n", pArpEntry);
263 /* could use SIOCSARP on systems that support it, not sure I want to */
268 /******************************************************************
269 * CreateProxyArpEntry (IPHLPAPI.@)
271 * Create a Proxy ARP (PARP) entry for an IP address.
274 * dwAddress [In] IP address for which this computer acts as a proxy.
275 * dwMask [In] subnet mask for dwAddress
276 * dwIfIndex [In] interface index
280 * Failure: error code from winerror.h
283 * Stub, returns ERROR_NOT_SUPPORTED.
285 DWORD WINAPI CreateProxyArpEntry(DWORD dwAddress, DWORD dwMask, DWORD dwIfIndex)
287 FIXME("(dwAddress 0x%08x, dwMask 0x%08x, dwIfIndex 0x%08x): stub\n",
288 dwAddress, dwMask, dwIfIndex);
289 return ERROR_NOT_SUPPORTED;
293 /******************************************************************
294 * DeleteIPAddress (IPHLPAPI.@)
296 * Delete an IP address added with AddIPAddress().
299 * NTEContext [In] NTE context from AddIPAddress();
303 * Failure: error code from winerror.h
306 * Stub, returns ERROR_NOT_SUPPORTED.
308 DWORD WINAPI DeleteIPAddress(ULONG NTEContext)
310 FIXME("(NTEContext %d): stub\n", NTEContext);
311 return ERROR_NOT_SUPPORTED;
315 /******************************************************************
316 * DeleteIpForwardEntry (IPHLPAPI.@)
321 * pRoute [In] route to delete
325 * Failure: error code from winerror.h
328 * Stub, returns NO_ERROR.
330 DWORD WINAPI DeleteIpForwardEntry(PMIB_IPFORWARDROW pRoute)
332 FIXME("(pRoute %p): stub\n", pRoute);
333 /* could use SIOCDELRT, not sure I want to */
338 /******************************************************************
339 * DeleteIpNetEntry (IPHLPAPI.@)
341 * Delete an ARP entry.
344 * pArpEntry [In] ARP entry to delete
348 * Failure: error code from winerror.h
351 * Stub, returns NO_ERROR.
353 DWORD WINAPI DeleteIpNetEntry(PMIB_IPNETROW pArpEntry)
355 FIXME("(pArpEntry %p): stub\n", pArpEntry);
356 /* could use SIOCDARP on systems that support it, not sure I want to */
361 /******************************************************************
362 * DeleteProxyArpEntry (IPHLPAPI.@)
364 * Delete a Proxy ARP entry.
367 * dwAddress [In] IP address for which this computer acts as a proxy.
368 * dwMask [In] subnet mask for dwAddress
369 * dwIfIndex [In] interface index
373 * Failure: error code from winerror.h
376 * Stub, returns ERROR_NOT_SUPPORTED.
378 DWORD WINAPI DeleteProxyArpEntry(DWORD dwAddress, DWORD dwMask, DWORD dwIfIndex)
380 FIXME("(dwAddress 0x%08x, dwMask 0x%08x, dwIfIndex 0x%08x): stub\n",
381 dwAddress, dwMask, dwIfIndex);
382 return ERROR_NOT_SUPPORTED;
386 /******************************************************************
387 * EnableRouter (IPHLPAPI.@)
389 * Turn on ip forwarding.
393 * pOverlapped [In/Out] hEvent member should contain a valid handle.
396 * Success: ERROR_IO_PENDING
397 * Failure: error code from winerror.h
400 * Stub, returns ERROR_NOT_SUPPORTED.
402 DWORD WINAPI EnableRouter(HANDLE * pHandle, OVERLAPPED * pOverlapped)
404 FIXME("(pHandle %p, pOverlapped %p): stub\n", pHandle, pOverlapped);
405 /* could echo "1" > /proc/net/sys/net/ipv4/ip_forward, not sure I want to
406 could map EACCESS to ERROR_ACCESS_DENIED, I suppose
408 return ERROR_NOT_SUPPORTED;
412 /******************************************************************
413 * FlushIpNetTable (IPHLPAPI.@)
415 * Delete all ARP entries of an interface
418 * dwIfIndex [In] interface index
422 * Failure: error code from winerror.h
425 * Stub, returns ERROR_NOT_SUPPORTED.
427 DWORD WINAPI FlushIpNetTable(DWORD dwIfIndex)
429 FIXME("(dwIfIndex 0x%08x): stub\n", dwIfIndex);
430 /* this flushes the arp cache of the given index */
431 return ERROR_NOT_SUPPORTED;
435 /******************************************************************
436 * GetAdapterIndex (IPHLPAPI.@)
438 * Get interface index from its name.
441 * AdapterName [In] unicode string with the adapter name
442 * IfIndex [Out] returns found interface index
446 * Failure: error code from winerror.h
448 DWORD WINAPI GetAdapterIndex(LPWSTR AdapterName, PULONG IfIndex)
450 char adapterName[MAX_ADAPTER_NAME];
454 TRACE("(AdapterName %p, IfIndex %p)\n", AdapterName, IfIndex);
455 /* The adapter name is guaranteed not to have any unicode characters, so
456 * this translation is never lossy */
457 for (i = 0; i < sizeof(adapterName) - 1 && AdapterName[i]; i++)
458 adapterName[i] = (char)AdapterName[i];
459 adapterName[i] = '\0';
460 ret = getInterfaceIndexByName(adapterName, IfIndex);
461 TRACE("returning %d\n", ret);
466 /******************************************************************
467 * GetAdaptersInfo (IPHLPAPI.@)
469 * Get information about adapters.
472 * pAdapterInfo [Out] buffer for adapter infos
473 * pOutBufLen [In] length of output buffer
477 * Failure: error code from winerror.h
479 DWORD WINAPI GetAdaptersInfo(PIP_ADAPTER_INFO pAdapterInfo, PULONG pOutBufLen)
483 TRACE("pAdapterInfo %p, pOutBufLen %p\n", pAdapterInfo, pOutBufLen);
485 ret = ERROR_INVALID_PARAMETER;
487 DWORD numNonLoopbackInterfaces = getNumNonLoopbackInterfaces();
489 if (numNonLoopbackInterfaces > 0) {
490 DWORD numIPAddresses = getNumIPAddresses();
493 /* This may slightly overestimate the amount of space needed, because
494 * the IP addresses include the loopback address, but it's easier
495 * to make sure there's more than enough space than to make sure there's
496 * precisely enough space.
498 size = sizeof(IP_ADAPTER_INFO) * numNonLoopbackInterfaces;
499 size += numIPAddresses * sizeof(IP_ADDR_STRING);
500 if (!pAdapterInfo || *pOutBufLen < size) {
502 ret = ERROR_BUFFER_OVERFLOW;
505 InterfaceIndexTable *table = NULL;
506 PMIB_IPADDRTABLE ipAddrTable = NULL;
507 PMIB_IPFORWARDTABLE routeTable = NULL;
509 ret = getIPAddrTable(&ipAddrTable, GetProcessHeap(), 0);
511 ret = AllocateAndGetIpForwardTableFromStack(&routeTable, FALSE, GetProcessHeap(), 0);
513 table = getNonLoopbackInterfaceIndexTable();
515 size = sizeof(IP_ADAPTER_INFO) * table->numIndexes;
516 size += ipAddrTable->dwNumEntries * sizeof(IP_ADDR_STRING);
517 if (*pOutBufLen < size) {
519 ret = ERROR_INSUFFICIENT_BUFFER;
524 BOOL winsEnabled = FALSE;
525 IP_ADDRESS_STRING primaryWINS, secondaryWINS;
526 PIP_ADDR_STRING nextIPAddr = (PIP_ADDR_STRING)((LPBYTE)pAdapterInfo
527 + numNonLoopbackInterfaces * sizeof(IP_ADAPTER_INFO));
529 memset(pAdapterInfo, 0, size);
530 /* @@ Wine registry key: HKCU\Software\Wine\Network */
531 if (RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Network",
532 &hKey) == ERROR_SUCCESS) {
533 DWORD size = sizeof(primaryWINS.String);
536 RegQueryValueExA(hKey, "WinsServer", NULL, NULL,
537 (LPBYTE)primaryWINS.String, &size);
538 addr = inet_addr(primaryWINS.String);
539 if (addr != INADDR_NONE && addr != INADDR_ANY)
541 size = sizeof(secondaryWINS.String);
542 RegQueryValueExA(hKey, "BackupWinsServer", NULL, NULL,
543 (LPBYTE)secondaryWINS.String, &size);
544 addr = inet_addr(secondaryWINS.String);
545 if (addr != INADDR_NONE && addr != INADDR_ANY)
549 for (ndx = 0; ndx < table->numIndexes; ndx++) {
550 PIP_ADAPTER_INFO ptr = &pAdapterInfo[ndx];
552 PIP_ADDR_STRING currentIPAddr = &ptr->IpAddressList;
553 BOOL firstIPAddr = TRUE;
555 /* on Win98 this is left empty, but whatever */
556 getInterfaceNameByIndex(table->indexes[ndx], ptr->AdapterName);
557 getInterfaceNameByIndex(table->indexes[ndx], ptr->Description);
558 ptr->AddressLength = sizeof(ptr->Address);
559 getInterfacePhysicalByIndex(table->indexes[ndx],
560 &ptr->AddressLength, ptr->Address, &ptr->Type);
561 ptr->Index = table->indexes[ndx];
562 for (i = 0; i < ipAddrTable->dwNumEntries; i++) {
563 if (ipAddrTable->table[i].dwIndex == ptr->Index) {
565 toIPAddressString(ipAddrTable->table[i].dwAddr,
566 ptr->IpAddressList.IpAddress.String);
567 toIPAddressString(ipAddrTable->table[i].dwMask,
568 ptr->IpAddressList.IpMask.String);
572 currentIPAddr->Next = nextIPAddr;
573 currentIPAddr = nextIPAddr;
574 toIPAddressString(ipAddrTable->table[i].dwAddr,
575 currentIPAddr->IpAddress.String);
576 toIPAddressString(ipAddrTable->table[i].dwMask,
577 currentIPAddr->IpMask.String);
582 /* Find first router through this interface, which we'll assume
583 * is the default gateway for this adapter */
584 for (i = 0; i < routeTable->dwNumEntries; i++)
585 if (routeTable->table[i].dwForwardIfIndex == ptr->Index
586 && routeTable->table[i].u1.ForwardType ==
587 MIB_IPROUTE_TYPE_INDIRECT)
588 toIPAddressString(routeTable->table[i].dwForwardNextHop,
589 ptr->GatewayList.IpAddress.String);
591 ptr->HaveWins = TRUE;
592 memcpy(ptr->PrimaryWinsServer.IpAddress.String,
593 primaryWINS.String, sizeof(primaryWINS.String));
594 memcpy(ptr->SecondaryWinsServer.IpAddress.String,
595 secondaryWINS.String, sizeof(secondaryWINS.String));
597 if (ndx < table->numIndexes - 1)
598 ptr->Next = &pAdapterInfo[ndx + 1];
602 ptr->DhcpEnabled = TRUE;
606 HeapFree(GetProcessHeap(), 0, table);
609 ret = ERROR_OUTOFMEMORY;
610 HeapFree(GetProcessHeap(), 0, routeTable);
611 HeapFree(GetProcessHeap(), 0, ipAddrTable);
617 TRACE("returning %d\n", ret);
621 static DWORD typeFromMibType(DWORD mib_type)
625 case MIB_IF_TYPE_ETHERNET: return IF_TYPE_ETHERNET_CSMACD;
626 case MIB_IF_TYPE_TOKENRING: return IF_TYPE_ISO88025_TOKENRING;
627 case MIB_IF_TYPE_PPP: return IF_TYPE_PPP;
628 case MIB_IF_TYPE_LOOPBACK: return IF_TYPE_SOFTWARE_LOOPBACK;
629 default: return IF_TYPE_OTHER;
633 static NET_IF_CONNECTION_TYPE connectionTypeFromMibType(DWORD mib_type)
637 case MIB_IF_TYPE_PPP: return NET_IF_CONNECTION_DEMAND;
638 case MIB_IF_TYPE_SLIP: return NET_IF_CONNECTION_DEMAND;
639 default: return NET_IF_CONNECTION_DEDICATED;
643 static ULONG v4addressesFromIndex(IF_INDEX index, DWORD **addrs, ULONG *num_addrs)
649 if ((ret = getIPAddrTable(&at, GetProcessHeap(), 0))) return ret;
650 for (i = 0; i < at->dwNumEntries; i++)
652 if (at->table[i].dwIndex == index) (*num_addrs)++;
654 if (!(*addrs = HeapAlloc(GetProcessHeap(), 0, *num_addrs * sizeof(DWORD))))
656 HeapFree(GetProcessHeap(), 0, at);
657 return ERROR_OUTOFMEMORY;
659 for (i = 0, j = 0; i < at->dwNumEntries; i++)
661 if (at->table[i].dwIndex == index) (*addrs)[j++] = at->table[i].dwAddr;
663 HeapFree(GetProcessHeap(), 0, at);
664 return ERROR_SUCCESS;
667 static char *debugstr_ipv4(const in_addr_t *in_addr, char *buf)
672 for (addrp = (const BYTE *)in_addr;
673 addrp - (const BYTE *)in_addr < sizeof(*in_addr);
676 if (addrp == (const BYTE *)in_addr + sizeof(*in_addr) - 1)
677 sprintf(p, "%d", *addrp);
679 p += sprintf(p, "%d.", *addrp);
684 static char *debugstr_ipv6(const struct WS_sockaddr_in6 *sin, char *buf)
686 const IN6_ADDR *addr = &sin->sin6_addr;
689 BOOL in_zero = FALSE;
691 for (i = 0; i < 7; i++)
693 if (!addr->u.Word[i])
705 p += sprintf(p, "%x:", ntohs(addr->u.Word[i]));
709 sprintf(p, "%x", ntohs(addr->u.Word[7]));
713 static ULONG count_v4_gateways(DWORD index, PMIB_IPFORWARDTABLE routeTable)
715 DWORD i, num_gateways = 0;
717 for (i = 0; i < routeTable->dwNumEntries; i++)
719 if (routeTable->table[i].dwForwardIfIndex == index &&
720 routeTable->table[i].u1.ForwardType == MIB_IPROUTE_TYPE_INDIRECT)
726 static PMIB_IPFORWARDROW findIPv4Gateway(DWORD index,
727 PMIB_IPFORWARDTABLE routeTable)
730 PMIB_IPFORWARDROW row = NULL;
732 for (i = 0; !row && i < routeTable->dwNumEntries; i++)
734 if (routeTable->table[i].dwForwardIfIndex == index &&
735 routeTable->table[i].u1.ForwardType == MIB_IPROUTE_TYPE_INDIRECT)
736 row = &routeTable->table[i];
741 static ULONG adapterAddressesFromIndex(ULONG family, ULONG flags, IF_INDEX index,
742 IP_ADAPTER_ADDRESSES *aa, ULONG *size)
744 ULONG ret = ERROR_SUCCESS, i, num_v4addrs = 0, num_v4_gateways = 0, num_v6addrs = 0, total_size;
745 DWORD *v4addrs = NULL;
746 SOCKET_ADDRESS *v6addrs = NULL;
747 PMIB_IPFORWARDTABLE routeTable = NULL;
749 if (family == WS_AF_INET)
751 if (!(flags & GAA_FLAG_SKIP_UNICAST))
752 ret = v4addressesFromIndex(index, &v4addrs, &num_v4addrs);
753 if (!ret && flags & GAA_FLAG_INCLUDE_ALL_GATEWAYS)
755 ret = AllocateAndGetIpForwardTableFromStack(&routeTable, FALSE,
756 GetProcessHeap(), 0);
758 num_v4_gateways = count_v4_gateways(index, routeTable);
761 else if (family == WS_AF_INET6)
763 if (!(flags & GAA_FLAG_SKIP_UNICAST))
764 ret = v6addressesFromIndex(index, &v6addrs, &num_v6addrs);
766 else if (family == WS_AF_UNSPEC)
768 if (!(flags & GAA_FLAG_SKIP_UNICAST))
769 ret = v4addressesFromIndex(index, &v4addrs, &num_v4addrs);
770 if (!ret && flags & GAA_FLAG_INCLUDE_ALL_GATEWAYS)
772 ret = AllocateAndGetIpForwardTableFromStack(&routeTable, FALSE,
773 GetProcessHeap(), 0);
775 num_v4_gateways = count_v4_gateways(index, routeTable);
777 if (!ret && !(flags & GAA_FLAG_SKIP_UNICAST))
778 ret = v6addressesFromIndex(index, &v6addrs, &num_v6addrs);
782 FIXME("address family %u unsupported\n", family);
787 HeapFree(GetProcessHeap(), 0, v4addrs);
788 HeapFree(GetProcessHeap(), 0, routeTable);
792 total_size = sizeof(IP_ADAPTER_ADDRESSES);
793 total_size += IF_NAMESIZE;
794 total_size += IF_NAMESIZE * sizeof(WCHAR);
795 if (!(flags & GAA_FLAG_SKIP_FRIENDLY_NAME))
796 total_size += IF_NAMESIZE * sizeof(WCHAR);
797 total_size += sizeof(IP_ADAPTER_UNICAST_ADDRESS) * num_v4addrs;
798 total_size += sizeof(struct sockaddr_in) * num_v4addrs;
799 total_size += (sizeof(IP_ADAPTER_GATEWAY_ADDRESS) + sizeof(SOCKADDR_IN)) * num_v4_gateways;
800 total_size += sizeof(IP_ADAPTER_UNICAST_ADDRESS) * num_v6addrs;
801 total_size += sizeof(SOCKET_ADDRESS) * num_v6addrs;
802 for (i = 0; i < num_v6addrs; i++)
803 total_size += v6addrs[i].iSockaddrLength;
805 if (aa && *size >= total_size)
807 char name[IF_NAMESIZE], *ptr = (char *)aa + sizeof(IP_ADAPTER_ADDRESSES), *src;
810 INTERNAL_IF_OPER_STATUS status;
812 memset(aa, 0, sizeof(IP_ADAPTER_ADDRESSES));
813 aa->u.s.Length = sizeof(IP_ADAPTER_ADDRESSES);
814 aa->u.s.IfIndex = index;
816 getInterfaceNameByIndex(index, name);
817 memcpy(ptr, name, IF_NAMESIZE);
818 aa->AdapterName = ptr;
820 if (!(flags & GAA_FLAG_SKIP_FRIENDLY_NAME))
822 aa->FriendlyName = (WCHAR *)ptr;
823 for (src = name, dst = (WCHAR *)ptr; *src; src++, dst++)
828 aa->Description = (WCHAR *)ptr;
829 for (src = name, dst = (WCHAR *)ptr; *src; src++, dst++)
834 TRACE("%s: %d IPv4 addresses, %d IPv6 addresses:\n", name, num_v4addrs,
838 PMIB_IPFORWARDROW adapterRow;
840 if ((adapterRow = findIPv4Gateway(index, routeTable)))
842 PIP_ADAPTER_GATEWAY_ADDRESS gw;
845 gw = (PIP_ADAPTER_GATEWAY_ADDRESS)ptr;
846 aa->FirstGatewayAddress = gw;
848 gw->u.s.Length = sizeof(IP_ADAPTER_GATEWAY_ADDRESS);
849 ptr += sizeof(IP_ADAPTER_GATEWAY_ADDRESS);
850 sin = (PSOCKADDR_IN)ptr;
851 sin->sin_family = AF_INET;
853 memcpy(&sin->sin_addr, &adapterRow->dwForwardNextHop,
855 gw->Address.lpSockaddr = (LPSOCKADDR)sin;
856 gw->Address.iSockaddrLength = sizeof(SOCKADDR_IN);
858 ptr += sizeof(SOCKADDR_IN);
863 IP_ADAPTER_UNICAST_ADDRESS *ua;
864 struct sockaddr_in *sa;
865 aa->Flags |= IP_ADAPTER_IPV4_ENABLED;
866 ua = aa->FirstUnicastAddress = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
867 for (i = 0; i < num_v4addrs; i++)
871 memset(ua, 0, sizeof(IP_ADAPTER_UNICAST_ADDRESS));
872 ua->u.s.Length = sizeof(IP_ADAPTER_UNICAST_ADDRESS);
873 ua->Address.iSockaddrLength = sizeof(struct sockaddr_in);
874 ua->Address.lpSockaddr = (SOCKADDR *)((char *)ua + ua->u.s.Length);
876 sa = (struct sockaddr_in *)ua->Address.lpSockaddr;
877 sa->sin_family = AF_INET;
878 sa->sin_addr.s_addr = v4addrs[i];
880 TRACE("IPv4 %d/%d: %s\n", i + 1, num_v4addrs,
881 debugstr_ipv4(&sa->sin_addr.s_addr, addr_buf));
883 ptr += ua->u.s.Length + ua->Address.iSockaddrLength;
884 if (i < num_v4addrs - 1)
886 ua->Next = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
893 IP_ADAPTER_UNICAST_ADDRESS *ua;
894 struct WS_sockaddr_in6 *sa;
896 aa->Flags |= IP_ADAPTER_IPV6_ENABLED;
897 if (aa->FirstUnicastAddress)
899 for (ua = aa->FirstUnicastAddress; ua->Next; ua = ua->Next)
901 ua->Next = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
902 ua = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
905 ua = aa->FirstUnicastAddress = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
906 for (i = 0; i < num_v6addrs; i++)
910 memset(ua, 0, sizeof(IP_ADAPTER_UNICAST_ADDRESS));
911 ua->u.s.Length = sizeof(IP_ADAPTER_UNICAST_ADDRESS);
912 ua->Address.iSockaddrLength = v6addrs[i].iSockaddrLength;
913 ua->Address.lpSockaddr = (SOCKADDR *)((char *)ua + ua->u.s.Length);
915 sa = (struct WS_sockaddr_in6 *)ua->Address.lpSockaddr;
916 memcpy(sa, v6addrs[i].lpSockaddr, sizeof(*sa));
917 TRACE("IPv6 %d/%d: %s\n", i + 1, num_v6addrs,
918 debugstr_ipv6(sa, addr_buf));
920 ptr += ua->u.s.Length + ua->Address.iSockaddrLength;
921 if (i < num_v6addrs - 1)
923 ua->Next = (IP_ADAPTER_UNICAST_ADDRESS *)ptr;
929 buflen = MAX_INTERFACE_PHYSADDR;
930 getInterfacePhysicalByIndex(index, &buflen, aa->PhysicalAddress, &type);
931 aa->PhysicalAddressLength = buflen;
932 aa->IfType = typeFromMibType(type);
933 aa->ConnectionType = connectionTypeFromMibType(type);
935 getInterfaceMtuByName(name, &aa->Mtu);
937 getInterfaceStatusByName(name, &status);
938 if (status == MIB_IF_OPER_STATUS_OPERATIONAL) aa->OperStatus = IfOperStatusUp;
939 else if (status == MIB_IF_OPER_STATUS_NON_OPERATIONAL) aa->OperStatus = IfOperStatusDown;
940 else aa->OperStatus = IfOperStatusUnknown;
943 HeapFree(GetProcessHeap(), 0, routeTable);
944 HeapFree(GetProcessHeap(), 0, v6addrs);
945 HeapFree(GetProcessHeap(), 0, v4addrs);
946 return ERROR_SUCCESS;
949 static ULONG get_dns_server_addresses(PIP_ADAPTER_DNS_SERVER_ADDRESS address, ULONG *len)
953 initialise_resolver();
954 /* FIXME: no support for IPv6 DNS server addresses. Doing so requires
955 * sizeof SOCKADDR_STORAGE instead, and using _res._u._ext.nsaddrs when
958 size = _res.nscount * (sizeof(IP_ADAPTER_DNS_SERVER_ADDRESS) + sizeof(SOCKADDR));
959 if (!address || *len < size)
962 return ERROR_BUFFER_OVERFLOW;
965 if (_res.nscount > 0)
967 PIP_ADAPTER_DNS_SERVER_ADDRESS addr;
970 for (i = 0, addr = address; i < _res.nscount && addr;
971 i++, addr = addr->Next)
975 addr->Address.iSockaddrLength = sizeof(SOCKADDR);
976 addr->Address.lpSockaddr =
977 (LPSOCKADDR)((PBYTE)addr + sizeof(IP_ADAPTER_DNS_SERVER_ADDRESS));
978 sin = (SOCKADDR_IN *)addr->Address.lpSockaddr;
979 sin->sin_family = WS_AF_INET;
980 sin->sin_port = _res.nsaddr_list[i].sin_port;
981 memcpy(&sin->sin_addr, &_res.nsaddr_list[i].sin_addr, sizeof(sin->sin_addr));
982 if (i == _res.nscount - 1)
986 (PIP_ADAPTER_DNS_SERVER_ADDRESS)((PBYTE)addr +
987 sizeof(IP_ADAPTER_DNS_SERVER_ADDRESS) + sizeof(SOCKADDR));
990 return ERROR_SUCCESS;
993 static BOOL is_ip_address_string(const char *str)
998 ret = inet_aton(str, &in);
1002 static ULONG get_dns_suffix(WCHAR *suffix, ULONG *len)
1005 char *found_suffix = NULL;
1007 initialise_resolver();
1008 /* Always return a NULL-terminated string, even if it's empty. */
1009 size = sizeof(WCHAR);
1010 for (i = 0, found_suffix = NULL;
1011 !found_suffix && i < MAXDNSRCH + 1 && _res.dnsrch[i]; i++)
1013 /* This uses a heuristic to select a DNS suffix:
1014 * the first, non-IP address string is selected.
1016 if (!is_ip_address_string(_res.dnsrch[i]))
1017 found_suffix = _res.dnsrch[i];
1020 size += strlen(found_suffix) * sizeof(WCHAR);
1021 if (!suffix || *len < size)
1024 return ERROR_BUFFER_OVERFLOW;
1031 for (p = found_suffix; *p; p++)
1035 return ERROR_SUCCESS;
1038 ULONG WINAPI DECLSPEC_HOTPATCH GetAdaptersAddresses(ULONG family, ULONG flags, PVOID reserved,
1039 PIP_ADAPTER_ADDRESSES aa, PULONG buflen)
1041 InterfaceIndexTable *table;
1042 ULONG i, size, dns_server_size, dns_suffix_size, total_size, ret = ERROR_NO_DATA;
1044 TRACE("(%d, %08x, %p, %p, %p)\n", family, flags, reserved, aa, buflen);
1046 if (!buflen) return ERROR_INVALID_PARAMETER;
1048 table = getInterfaceIndexTable();
1049 if (!table || !table->numIndexes)
1051 HeapFree(GetProcessHeap(), 0, table);
1052 return ERROR_NO_DATA;
1055 for (i = 0; i < table->numIndexes; i++)
1058 if ((ret = adapterAddressesFromIndex(family, flags, table->indexes[i], NULL, &size)))
1060 HeapFree(GetProcessHeap(), 0, table);
1065 if (!(flags & GAA_FLAG_SKIP_DNS_SERVER))
1067 /* Since DNS servers aren't really per adapter, get enough space for a
1068 * single copy of them.
1070 get_dns_server_addresses(NULL, &dns_server_size);
1071 total_size += dns_server_size;
1073 /* Since DNS suffix also isn't really per adapter, get enough space for a
1074 * single copy of it.
1076 get_dns_suffix(NULL, &dns_suffix_size);
1077 total_size += dns_suffix_size;
1078 if (aa && *buflen >= total_size)
1080 ULONG bytes_left = size = total_size;
1081 PIP_ADAPTER_ADDRESSES first_aa = aa;
1082 PIP_ADAPTER_DNS_SERVER_ADDRESS firstDns;
1085 for (i = 0; i < table->numIndexes; i++)
1087 if ((ret = adapterAddressesFromIndex(family, flags, table->indexes[i], aa, &size)))
1089 HeapFree(GetProcessHeap(), 0, table);
1092 if (i < table->numIndexes - 1)
1094 aa->Next = (IP_ADAPTER_ADDRESSES *)((char *)aa + size);
1096 size = bytes_left -= size;
1099 if (!(flags & GAA_FLAG_SKIP_DNS_SERVER))
1101 firstDns = (PIP_ADAPTER_DNS_SERVER_ADDRESS)((BYTE *)first_aa + total_size - dns_server_size - dns_suffix_size);
1102 get_dns_server_addresses(firstDns, &dns_server_size);
1103 for (aa = first_aa; aa; aa = aa->Next)
1105 if (aa->IfType != IF_TYPE_SOFTWARE_LOOPBACK && aa->OperStatus == IfOperStatusUp)
1106 aa->FirstDnsServerAddress = firstDns;
1110 dnsSuffix = (WCHAR *)((BYTE *)aa + total_size - dns_suffix_size);
1111 get_dns_suffix(dnsSuffix, &dns_suffix_size);
1112 for (; aa; aa = aa->Next)
1114 if (aa->IfType != IF_TYPE_SOFTWARE_LOOPBACK && aa->OperStatus == IfOperStatusUp)
1115 aa->DnsSuffix = dnsSuffix;
1117 aa->DnsSuffix = (WCHAR *)((BYTE*)dnsSuffix + dns_suffix_size - 2);
1119 ret = ERROR_SUCCESS;
1122 ret = ERROR_BUFFER_OVERFLOW;
1123 *buflen = total_size;
1125 TRACE("num adapters %u\n", table->numIndexes);
1126 HeapFree(GetProcessHeap(), 0, table);
1130 /******************************************************************
1131 * GetBestInterface (IPHLPAPI.@)
1133 * Get the interface, with the best route for the given IP address.
1136 * dwDestAddr [In] IP address to search the interface for
1137 * pdwBestIfIndex [Out] found best interface
1141 * Failure: error code from winerror.h
1143 DWORD WINAPI GetBestInterface(IPAddr dwDestAddr, PDWORD pdwBestIfIndex)
1145 struct WS_sockaddr_in sa_in;
1146 memset(&sa_in, 0, sizeof(sa_in));
1147 sa_in.sin_family = AF_INET;
1148 sa_in.sin_addr.S_un.S_addr = dwDestAddr;
1149 return GetBestInterfaceEx((struct WS_sockaddr *)&sa_in, pdwBestIfIndex);
1152 /******************************************************************
1153 * GetBestInterfaceEx (IPHLPAPI.@)
1155 * Get the interface, with the best route for the given IP address.
1158 * dwDestAddr [In] IP address to search the interface for
1159 * pdwBestIfIndex [Out] found best interface
1163 * Failure: error code from winerror.h
1165 DWORD WINAPI GetBestInterfaceEx(struct WS_sockaddr *pDestAddr, PDWORD pdwBestIfIndex)
1169 TRACE("pDestAddr %p, pdwBestIfIndex %p\n", pDestAddr, pdwBestIfIndex);
1170 if (!pDestAddr || !pdwBestIfIndex)
1171 ret = ERROR_INVALID_PARAMETER;
1173 MIB_IPFORWARDROW ipRow;
1175 if (pDestAddr->sa_family == AF_INET) {
1176 ret = GetBestRoute(((struct WS_sockaddr_in *)pDestAddr)->sin_addr.S_un.S_addr, 0, &ipRow);
1177 if (ret == ERROR_SUCCESS)
1178 *pdwBestIfIndex = ipRow.dwForwardIfIndex;
1180 FIXME("address family %d not supported\n", pDestAddr->sa_family);
1181 ret = ERROR_NOT_SUPPORTED;
1184 TRACE("returning %d\n", ret);
1189 /******************************************************************
1190 * GetBestRoute (IPHLPAPI.@)
1192 * Get the best route for the given IP address.
1195 * dwDestAddr [In] IP address to search the best route for
1196 * dwSourceAddr [In] optional source IP address
1197 * pBestRoute [Out] found best route
1201 * Failure: error code from winerror.h
1203 DWORD WINAPI GetBestRoute(DWORD dwDestAddr, DWORD dwSourceAddr, PMIB_IPFORWARDROW pBestRoute)
1205 PMIB_IPFORWARDTABLE table;
1208 TRACE("dwDestAddr 0x%08x, dwSourceAddr 0x%08x, pBestRoute %p\n", dwDestAddr,
1209 dwSourceAddr, pBestRoute);
1211 return ERROR_INVALID_PARAMETER;
1213 ret = AllocateAndGetIpForwardTableFromStack(&table, FALSE, GetProcessHeap(), 0);
1215 DWORD ndx, matchedBits, matchedNdx = table->dwNumEntries;
1217 for (ndx = 0, matchedBits = 0; ndx < table->dwNumEntries; ndx++) {
1218 if (table->table[ndx].u1.ForwardType != MIB_IPROUTE_TYPE_INVALID &&
1219 (dwDestAddr & table->table[ndx].dwForwardMask) ==
1220 (table->table[ndx].dwForwardDest & table->table[ndx].dwForwardMask)) {
1221 DWORD numShifts, mask;
1223 for (numShifts = 0, mask = table->table[ndx].dwForwardMask;
1224 mask && mask & 1; mask >>= 1, numShifts++)
1226 if (numShifts > matchedBits) {
1227 matchedBits = numShifts;
1230 else if (!matchedBits) {
1235 if (matchedNdx < table->dwNumEntries) {
1236 memcpy(pBestRoute, &table->table[matchedNdx], sizeof(MIB_IPFORWARDROW));
1237 ret = ERROR_SUCCESS;
1240 /* No route matches, which can happen if there's no default route. */
1241 ret = ERROR_HOST_UNREACHABLE;
1243 HeapFree(GetProcessHeap(), 0, table);
1245 TRACE("returning %d\n", ret);
1250 /******************************************************************
1251 * GetFriendlyIfIndex (IPHLPAPI.@)
1253 * Get a "friendly" version of IfIndex, which is one that doesn't
1254 * have the top byte set. Doesn't validate whether IfIndex is a valid
1258 * IfIndex [In] interface index to get the friendly one for
1261 * A friendly version of IfIndex.
1263 DWORD WINAPI GetFriendlyIfIndex(DWORD IfIndex)
1265 /* windows doesn't validate these, either, just makes sure the top byte is
1266 cleared. I assume my ifenum module never gives an index with the top
1268 TRACE("returning %d\n", IfIndex);
1273 /******************************************************************
1274 * GetIfEntry (IPHLPAPI.@)
1276 * Get information about an interface.
1279 * pIfRow [In/Out] In: dwIndex of MIB_IFROW selects the interface.
1280 * Out: interface information
1284 * Failure: error code from winerror.h
1286 DWORD WINAPI GetIfEntry(PMIB_IFROW pIfRow)
1289 char nameBuf[MAX_ADAPTER_NAME];
1292 TRACE("pIfRow %p\n", pIfRow);
1294 return ERROR_INVALID_PARAMETER;
1296 name = getInterfaceNameByIndex(pIfRow->dwIndex, nameBuf);
1298 ret = getInterfaceEntryByName(name, pIfRow);
1299 if (ret == NO_ERROR)
1300 ret = getInterfaceStatsByName(name, pIfRow);
1303 ret = ERROR_INVALID_DATA;
1304 TRACE("returning %d\n", ret);
1309 static int IfTableSorter(const void *a, const void *b)
1314 ret = ((const MIB_IFROW*)a)->dwIndex - ((const MIB_IFROW*)b)->dwIndex;
1321 /******************************************************************
1322 * GetIfTable (IPHLPAPI.@)
1324 * Get a table of local interfaces.
1327 * pIfTable [Out] buffer for local interfaces table
1328 * pdwSize [In/Out] length of output buffer
1329 * bOrder [In] whether to sort the table
1333 * Failure: error code from winerror.h
1336 * If pdwSize is less than required, the function will return
1337 * ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
1339 * If bOrder is true, the returned table will be sorted by interface index.
1341 DWORD WINAPI GetIfTable(PMIB_IFTABLE pIfTable, PULONG pdwSize, BOOL bOrder)
1345 TRACE("pIfTable %p, pdwSize %p, bOrder %d\n", pdwSize, pdwSize,
1348 ret = ERROR_INVALID_PARAMETER;
1350 DWORD numInterfaces = getNumInterfaces();
1351 ULONG size = sizeof(MIB_IFTABLE);
1353 if (numInterfaces > 1)
1354 size += (numInterfaces - 1) * sizeof(MIB_IFROW);
1355 if (!pIfTable || *pdwSize < size) {
1357 ret = ERROR_INSUFFICIENT_BUFFER;
1360 InterfaceIndexTable *table = getInterfaceIndexTable();
1363 size = sizeof(MIB_IFTABLE);
1364 if (table->numIndexes > 1)
1365 size += (table->numIndexes - 1) * sizeof(MIB_IFROW);
1366 if (*pdwSize < size) {
1368 ret = ERROR_INSUFFICIENT_BUFFER;
1374 pIfTable->dwNumEntries = 0;
1375 for (ndx = 0; ndx < table->numIndexes; ndx++) {
1376 pIfTable->table[ndx].dwIndex = table->indexes[ndx];
1377 GetIfEntry(&pIfTable->table[ndx]);
1378 pIfTable->dwNumEntries++;
1381 qsort(pIfTable->table, pIfTable->dwNumEntries, sizeof(MIB_IFROW),
1385 HeapFree(GetProcessHeap(), 0, table);
1388 ret = ERROR_OUTOFMEMORY;
1391 TRACE("returning %d\n", ret);
1396 /******************************************************************
1397 * GetInterfaceInfo (IPHLPAPI.@)
1399 * Get a list of network interface adapters.
1402 * pIfTable [Out] buffer for interface adapters
1403 * dwOutBufLen [Out] if buffer is too small, returns required size
1407 * Failure: error code from winerror.h
1410 * MSDN states this should return non-loopback interfaces only.
1412 DWORD WINAPI GetInterfaceInfo(PIP_INTERFACE_INFO pIfTable, PULONG dwOutBufLen)
1416 TRACE("pIfTable %p, dwOutBufLen %p\n", pIfTable, dwOutBufLen);
1418 ret = ERROR_INVALID_PARAMETER;
1420 DWORD numInterfaces = getNumInterfaces();
1421 ULONG size = sizeof(IP_INTERFACE_INFO);
1423 if (numInterfaces > 1)
1424 size += (numInterfaces - 1) * sizeof(IP_ADAPTER_INDEX_MAP);
1425 if (!pIfTable || *dwOutBufLen < size) {
1426 *dwOutBufLen = size;
1427 ret = ERROR_INSUFFICIENT_BUFFER;
1430 InterfaceIndexTable *table = getInterfaceIndexTable();
1433 size = sizeof(IP_INTERFACE_INFO);
1434 if (table->numIndexes > 1)
1435 size += (table->numIndexes - 1) * sizeof(IP_ADAPTER_INDEX_MAP);
1436 if (*dwOutBufLen < size) {
1437 *dwOutBufLen = size;
1438 ret = ERROR_INSUFFICIENT_BUFFER;
1442 char nameBuf[MAX_ADAPTER_NAME];
1444 *dwOutBufLen = size;
1445 pIfTable->NumAdapters = 0;
1446 for (ndx = 0; ndx < table->numIndexes; ndx++) {
1447 const char *walker, *name;
1450 pIfTable->Adapter[ndx].Index = table->indexes[ndx];
1451 name = getInterfaceNameByIndex(table->indexes[ndx], nameBuf);
1452 for (walker = name, assigner = pIfTable->Adapter[ndx].Name;
1453 walker && *walker &&
1454 assigner - pIfTable->Adapter[ndx].Name < MAX_ADAPTER_NAME - 1;
1455 walker++, assigner++)
1456 *assigner = *walker;
1458 pIfTable->NumAdapters++;
1462 HeapFree(GetProcessHeap(), 0, table);
1465 ret = ERROR_OUTOFMEMORY;
1468 TRACE("returning %d\n", ret);
1473 /******************************************************************
1474 * GetIpAddrTable (IPHLPAPI.@)
1476 * Get interface-to-IP address mapping table.
1479 * pIpAddrTable [Out] buffer for mapping table
1480 * pdwSize [In/Out] length of output buffer
1481 * bOrder [In] whether to sort the table
1485 * Failure: error code from winerror.h
1488 * If pdwSize is less than required, the function will return
1489 * ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
1491 * If bOrder is true, the returned table will be sorted by the next hop and
1492 * an assortment of arbitrary parameters.
1494 DWORD WINAPI GetIpAddrTable(PMIB_IPADDRTABLE pIpAddrTable, PULONG pdwSize, BOOL bOrder)
1498 TRACE("pIpAddrTable %p, pdwSize %p, bOrder %d\n", pIpAddrTable, pdwSize,
1501 ret = ERROR_INVALID_PARAMETER;
1503 PMIB_IPADDRTABLE table;
1505 ret = getIPAddrTable(&table, GetProcessHeap(), 0);
1506 if (ret == NO_ERROR)
1508 ULONG size = sizeof(MIB_IPADDRTABLE);
1510 if (table->dwNumEntries > 1)
1511 size += (table->dwNumEntries - 1) * sizeof(MIB_IPADDRROW);
1512 if (!pIpAddrTable || *pdwSize < size) {
1514 ret = ERROR_INSUFFICIENT_BUFFER;
1518 memcpy(pIpAddrTable, table, size);
1520 qsort(pIpAddrTable->table, pIpAddrTable->dwNumEntries,
1521 sizeof(MIB_IPADDRROW), IpAddrTableSorter);
1524 HeapFree(GetProcessHeap(), 0, table);
1527 TRACE("returning %d\n", ret);
1532 /******************************************************************
1533 * GetIpForwardTable (IPHLPAPI.@)
1535 * Get the route table.
1538 * pIpForwardTable [Out] buffer for route table
1539 * pdwSize [In/Out] length of output buffer
1540 * bOrder [In] whether to sort the table
1544 * Failure: error code from winerror.h
1547 * If pdwSize is less than required, the function will return
1548 * ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
1550 * If bOrder is true, the returned table will be sorted by the next hop and
1551 * an assortment of arbitrary parameters.
1553 DWORD WINAPI GetIpForwardTable(PMIB_IPFORWARDTABLE pIpForwardTable, PULONG pdwSize, BOOL bOrder)
1556 PMIB_IPFORWARDTABLE table;
1558 TRACE("pIpForwardTable %p, pdwSize %p, bOrder %d\n", pIpForwardTable, pdwSize, bOrder);
1560 if (!pdwSize) return ERROR_INVALID_PARAMETER;
1562 ret = AllocateAndGetIpForwardTableFromStack(&table, bOrder, GetProcessHeap(), 0);
1564 DWORD size = FIELD_OFFSET( MIB_IPFORWARDTABLE, table[table->dwNumEntries] );
1565 if (!pIpForwardTable || *pdwSize < size) {
1567 ret = ERROR_INSUFFICIENT_BUFFER;
1571 memcpy(pIpForwardTable, table, size);
1573 HeapFree(GetProcessHeap(), 0, table);
1575 TRACE("returning %d\n", ret);
1580 /******************************************************************
1581 * GetIpNetTable (IPHLPAPI.@)
1583 * Get the IP-to-physical address mapping table.
1586 * pIpNetTable [Out] buffer for mapping table
1587 * pdwSize [In/Out] length of output buffer
1588 * bOrder [In] whether to sort the table
1592 * Failure: error code from winerror.h
1595 * If pdwSize is less than required, the function will return
1596 * ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the required byte
1598 * If bOrder is true, the returned table will be sorted by IP address.
1600 DWORD WINAPI GetIpNetTable(PMIB_IPNETTABLE pIpNetTable, PULONG pdwSize, BOOL bOrder)
1603 PMIB_IPNETTABLE table;
1605 TRACE("pIpNetTable %p, pdwSize %p, bOrder %d\n", pIpNetTable, pdwSize, bOrder);
1607 if (!pdwSize) return ERROR_INVALID_PARAMETER;
1609 ret = AllocateAndGetIpNetTableFromStack( &table, bOrder, GetProcessHeap(), 0 );
1611 DWORD size = FIELD_OFFSET( MIB_IPNETTABLE, table[table->dwNumEntries] );
1612 if (!pIpNetTable || *pdwSize < size) {
1614 ret = ERROR_INSUFFICIENT_BUFFER;
1618 memcpy(pIpNetTable, table, size);
1620 HeapFree(GetProcessHeap(), 0, table);
1622 TRACE("returning %d\n", ret);
1626 /* Gets the DNS server list into the list beginning at list. Assumes that
1627 * a single server address may be placed at list if *len is at least
1628 * sizeof(IP_ADDR_STRING) long. Otherwise, list->Next is set to firstDynamic,
1629 * and assumes that all remaining DNS servers are contiguously located
1630 * beginning at firstDynamic. On input, *len is assumed to be the total number
1631 * of bytes available for all DNS servers, and is ignored if list is NULL.
1632 * On return, *len is set to the total number of bytes required for all DNS
1634 * Returns ERROR_BUFFER_OVERFLOW if *len is insufficient,
1635 * ERROR_SUCCESS otherwise.
1637 static DWORD get_dns_server_list(PIP_ADDR_STRING list,
1638 PIP_ADDR_STRING firstDynamic, DWORD *len)
1642 initialise_resolver();
1643 size = _res.nscount * sizeof(IP_ADDR_STRING);
1644 if (!list || *len < size) {
1646 return ERROR_BUFFER_OVERFLOW;
1649 if (_res.nscount > 0) {
1650 PIP_ADDR_STRING ptr;
1653 for (i = 0, ptr = list; i < _res.nscount && ptr; i++, ptr = ptr->Next) {
1654 toIPAddressString(_res.nsaddr_list[i].sin_addr.s_addr,
1655 ptr->IpAddress.String);
1656 if (i == _res.nscount - 1)
1659 ptr->Next = firstDynamic;
1661 ptr->Next = (PIP_ADDR_STRING)((PBYTE)ptr + sizeof(IP_ADDR_STRING));
1664 return ERROR_SUCCESS;
1667 /******************************************************************
1668 * GetNetworkParams (IPHLPAPI.@)
1670 * Get the network parameters for the local computer.
1673 * pFixedInfo [Out] buffer for network parameters
1674 * pOutBufLen [In/Out] length of output buffer
1678 * Failure: error code from winerror.h
1681 * If pOutBufLen is less than required, the function will return
1682 * ERROR_INSUFFICIENT_BUFFER, and pOutBufLen will be set to the required byte
1685 DWORD WINAPI GetNetworkParams(PFIXED_INFO pFixedInfo, PULONG pOutBufLen)
1687 DWORD ret, size, serverListSize;
1691 TRACE("pFixedInfo %p, pOutBufLen %p\n", pFixedInfo, pOutBufLen);
1693 return ERROR_INVALID_PARAMETER;
1695 get_dns_server_list(NULL, NULL, &serverListSize);
1696 size = sizeof(FIXED_INFO) + serverListSize - sizeof(IP_ADDR_STRING);
1697 if (!pFixedInfo || *pOutBufLen < size) {
1699 return ERROR_BUFFER_OVERFLOW;
1702 memset(pFixedInfo, 0, size);
1703 size = sizeof(pFixedInfo->HostName);
1704 GetComputerNameExA(ComputerNameDnsHostname, pFixedInfo->HostName, &size);
1705 size = sizeof(pFixedInfo->DomainName);
1706 GetComputerNameExA(ComputerNameDnsDomain, pFixedInfo->DomainName, &size);
1707 get_dns_server_list(&pFixedInfo->DnsServerList,
1708 (PIP_ADDR_STRING)((BYTE *)pFixedInfo + sizeof(FIXED_INFO)),
1710 /* Assume the first DNS server in the list is the "current" DNS server: */
1711 pFixedInfo->CurrentDnsServer = &pFixedInfo->DnsServerList;
1712 pFixedInfo->NodeType = HYBRID_NODETYPE;
1713 regReturn = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
1714 "SYSTEM\\CurrentControlSet\\Services\\VxD\\MSTCP", 0, KEY_READ, &hKey);
1715 if (regReturn != ERROR_SUCCESS)
1716 regReturn = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
1717 "SYSTEM\\CurrentControlSet\\Services\\NetBT\\Parameters", 0, KEY_READ,
1719 if (regReturn == ERROR_SUCCESS)
1721 DWORD size = sizeof(pFixedInfo->ScopeId);
1723 RegQueryValueExA(hKey, "ScopeID", NULL, NULL, (LPBYTE)pFixedInfo->ScopeId, &size);
1727 /* FIXME: can check whether routing's enabled in /proc/sys/net/ipv4/ip_forward
1728 I suppose could also check for a listener on port 53 to set EnableDns */
1730 TRACE("returning %d\n", ret);
1735 /******************************************************************
1736 * GetNumberOfInterfaces (IPHLPAPI.@)
1738 * Get the number of interfaces.
1741 * pdwNumIf [Out] number of interfaces
1744 * NO_ERROR on success, ERROR_INVALID_PARAMETER if pdwNumIf is NULL.
1746 DWORD WINAPI GetNumberOfInterfaces(PDWORD pdwNumIf)
1750 TRACE("pdwNumIf %p\n", pdwNumIf);
1752 ret = ERROR_INVALID_PARAMETER;
1754 *pdwNumIf = getNumInterfaces();
1757 TRACE("returning %d\n", ret);
1762 /******************************************************************
1763 * GetPerAdapterInfo (IPHLPAPI.@)
1765 * Get information about an adapter corresponding to an interface.
1768 * IfIndex [In] interface info
1769 * pPerAdapterInfo [Out] buffer for per adapter info
1770 * pOutBufLen [In/Out] length of output buffer
1774 * Failure: error code from winerror.h
1776 DWORD WINAPI GetPerAdapterInfo(ULONG IfIndex, PIP_PER_ADAPTER_INFO pPerAdapterInfo, PULONG pOutBufLen)
1778 ULONG bytesNeeded = sizeof(IP_PER_ADAPTER_INFO), serverListSize = 0;
1779 DWORD ret = NO_ERROR;
1781 TRACE("(IfIndex %d, pPerAdapterInfo %p, pOutBufLen %p)\n", IfIndex, pPerAdapterInfo, pOutBufLen);
1783 if (!pOutBufLen) return ERROR_INVALID_PARAMETER;
1785 if (!isIfIndexLoopback(IfIndex)) {
1786 get_dns_server_list(NULL, NULL, &serverListSize);
1787 if (serverListSize > sizeof(IP_ADDR_STRING))
1788 bytesNeeded += serverListSize - sizeof(IP_ADDR_STRING);
1790 if (!pPerAdapterInfo || *pOutBufLen < bytesNeeded)
1792 *pOutBufLen = bytesNeeded;
1793 return ERROR_BUFFER_OVERFLOW;
1796 memset(pPerAdapterInfo, 0, bytesNeeded);
1797 if (!isIfIndexLoopback(IfIndex)) {
1798 ret = get_dns_server_list(&pPerAdapterInfo->DnsServerList,
1799 (PIP_ADDR_STRING)((PBYTE)pPerAdapterInfo + sizeof(IP_PER_ADAPTER_INFO)),
1801 /* Assume the first DNS server in the list is the "current" DNS server: */
1802 pPerAdapterInfo->CurrentDnsServer = &pPerAdapterInfo->DnsServerList;
1808 /******************************************************************
1809 * GetRTTAndHopCount (IPHLPAPI.@)
1811 * Get round-trip time (RTT) and hop count.
1815 * DestIpAddress [In] destination address to get the info for
1816 * HopCount [Out] retrieved hop count
1817 * MaxHops [In] maximum hops to search for the destination
1818 * RTT [Out] RTT in milliseconds
1825 * Stub, returns FALSE.
1827 BOOL WINAPI GetRTTAndHopCount(IPAddr DestIpAddress, PULONG HopCount, ULONG MaxHops, PULONG RTT)
1829 FIXME("(DestIpAddress 0x%08x, HopCount %p, MaxHops %d, RTT %p): stub\n",
1830 DestIpAddress, HopCount, MaxHops, RTT);
1835 /******************************************************************
1836 * GetTcpTable (IPHLPAPI.@)
1838 * Get the table of active TCP connections.
1841 * pTcpTable [Out] buffer for TCP connections table
1842 * pdwSize [In/Out] length of output buffer
1843 * bOrder [In] whether to order the table
1847 * Failure: error code from winerror.h
1850 * If pdwSize is less than required, the function will return
1851 * ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to
1852 * the required byte size.
1853 * If bOrder is true, the returned table will be sorted, first by
1854 * local address and port number, then by remote address and port
1857 DWORD WINAPI GetTcpTable(PMIB_TCPTABLE pTcpTable, PDWORD pdwSize, BOOL bOrder)
1859 TRACE("pTcpTable %p, pdwSize %p, bOrder %d\n", pTcpTable, pdwSize, bOrder);
1860 return GetExtendedTcpTable(pTcpTable, pdwSize, bOrder, AF_INET, TCP_TABLE_BASIC_ALL, 0);
1863 /******************************************************************
1864 * GetExtendedTcpTable (IPHLPAPI.@)
1866 DWORD WINAPI GetExtendedTcpTable(PVOID pTcpTable, PDWORD pdwSize, BOOL bOrder,
1867 ULONG ulAf, TCP_TABLE_CLASS TableClass, ULONG Reserved)
1872 TRACE("pTcpTable %p, pdwSize %p, bOrder %d, ulAf %u, TableClass %u, Reserved %u\n",
1873 pTcpTable, pdwSize, bOrder, ulAf, TableClass, Reserved);
1875 if (!pdwSize) return ERROR_INVALID_PARAMETER;
1877 if (ulAf != AF_INET ||
1878 (TableClass != TCP_TABLE_BASIC_ALL && TableClass != TCP_TABLE_OWNER_PID_ALL))
1880 FIXME("ulAf = %u, TableClass = %u not supported\n", ulAf, TableClass);
1881 return ERROR_NOT_SUPPORTED;
1883 if ((ret = build_tcp_table(TableClass, &table, bOrder, GetProcessHeap(), 0, &size)))
1886 if (!pTcpTable || *pdwSize < size)
1889 ret = ERROR_INSUFFICIENT_BUFFER;
1894 memcpy(pTcpTable, table, size);
1896 HeapFree(GetProcessHeap(), 0, table);
1900 /******************************************************************
1901 * GetUdpTable (IPHLPAPI.@)
1903 * Get a table of active UDP connections.
1906 * pUdpTable [Out] buffer for UDP connections table
1907 * pdwSize [In/Out] length of output buffer
1908 * bOrder [In] whether to order the table
1912 * Failure: error code from winerror.h
1915 * If pdwSize is less than required, the function will return
1916 * ERROR_INSUFFICIENT_BUFFER, and *pdwSize will be set to the
1917 * required byte size.
1918 * If bOrder is true, the returned table will be sorted, first by
1919 * local address, then by local port number.
1921 DWORD WINAPI GetUdpTable(PMIB_UDPTABLE pUdpTable, PDWORD pdwSize, BOOL bOrder)
1923 return GetExtendedUdpTable(pUdpTable, pdwSize, bOrder, AF_INET, UDP_TABLE_BASIC, 0);
1926 /******************************************************************
1927 * GetExtendedUdpTable (IPHLPAPI.@)
1929 DWORD WINAPI GetExtendedUdpTable(PVOID pUdpTable, PDWORD pdwSize, BOOL bOrder,
1930 ULONG ulAf, UDP_TABLE_CLASS TableClass, ULONG Reserved)
1935 TRACE("pUdpTable %p, pdwSize %p, bOrder %d, ulAf %u, TableClass %u, Reserved %u\n",
1936 pUdpTable, pdwSize, bOrder, ulAf, TableClass, Reserved);
1938 if (!pdwSize) return ERROR_INVALID_PARAMETER;
1940 if (ulAf != AF_INET ||
1941 (TableClass != UDP_TABLE_BASIC && TableClass != UDP_TABLE_OWNER_PID &&
1942 TableClass != UDP_TABLE_OWNER_MODULE))
1944 FIXME("ulAf = %u, TableClass = %u not supported\n", ulAf, TableClass);
1945 return ERROR_NOT_SUPPORTED;
1947 if (TableClass == UDP_TABLE_OWNER_MODULE)
1948 FIXME("UDP_TABLE_OWNER_MODULE not fully supported\n");
1950 if ((ret = build_udp_table(TableClass, &table, bOrder, GetProcessHeap(), 0, &size)))
1953 if (!pUdpTable || *pdwSize < size)
1956 ret = ERROR_INSUFFICIENT_BUFFER;
1961 memcpy(pUdpTable, table, size);
1963 HeapFree(GetProcessHeap(), 0, table);
1967 /******************************************************************
1968 * GetUniDirectionalAdapterInfo (IPHLPAPI.@)
1970 * This is a Win98-only function to get information on "unidirectional"
1971 * adapters. Since this is pretty nonsensical in other contexts, it
1972 * never returns anything.
1975 * pIPIfInfo [Out] buffer for adapter infos
1976 * dwOutBufLen [Out] length of the output buffer
1980 * Failure: error code from winerror.h
1983 * Stub, returns ERROR_NOT_SUPPORTED.
1985 DWORD WINAPI GetUniDirectionalAdapterInfo(PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS pIPIfInfo, PULONG dwOutBufLen)
1987 TRACE("pIPIfInfo %p, dwOutBufLen %p\n", pIPIfInfo, dwOutBufLen);
1988 /* a unidirectional adapter?? not bloody likely! */
1989 return ERROR_NOT_SUPPORTED;
1993 /******************************************************************
1994 * IpReleaseAddress (IPHLPAPI.@)
1996 * Release an IP obtained through DHCP,
1999 * AdapterInfo [In] adapter to release IP address
2003 * Failure: error code from winerror.h
2006 * Since GetAdaptersInfo never returns adapters that have DHCP enabled,
2007 * this function does nothing.
2010 * Stub, returns ERROR_NOT_SUPPORTED.
2012 DWORD WINAPI IpReleaseAddress(PIP_ADAPTER_INDEX_MAP AdapterInfo)
2014 FIXME("Stub AdapterInfo %p\n", AdapterInfo);
2015 return ERROR_NOT_SUPPORTED;
2019 /******************************************************************
2020 * IpRenewAddress (IPHLPAPI.@)
2022 * Renew an IP obtained through DHCP.
2025 * AdapterInfo [In] adapter to renew IP address
2029 * Failure: error code from winerror.h
2032 * Since GetAdaptersInfo never returns adapters that have DHCP enabled,
2033 * this function does nothing.
2036 * Stub, returns ERROR_NOT_SUPPORTED.
2038 DWORD WINAPI IpRenewAddress(PIP_ADAPTER_INDEX_MAP AdapterInfo)
2040 FIXME("Stub AdapterInfo %p\n", AdapterInfo);
2041 return ERROR_NOT_SUPPORTED;
2045 /******************************************************************
2046 * NotifyAddrChange (IPHLPAPI.@)
2048 * Notify caller whenever the ip-interface map is changed.
2051 * Handle [Out] handle usable in asynchronous notification
2052 * overlapped [In] overlapped structure that notifies the caller
2056 * Failure: error code from winerror.h
2059 * Stub, returns ERROR_NOT_SUPPORTED.
2061 DWORD WINAPI NotifyAddrChange(PHANDLE Handle, LPOVERLAPPED overlapped)
2063 FIXME("(Handle %p, overlapped %p): stub\n", Handle, overlapped);
2064 if (Handle) *Handle = INVALID_HANDLE_VALUE;
2065 if (overlapped) ((IO_STATUS_BLOCK *) overlapped)->u.Status = STATUS_PENDING;
2066 return ERROR_IO_PENDING;
2070 /******************************************************************
2071 * NotifyRouteChange (IPHLPAPI.@)
2073 * Notify caller whenever the ip routing table is changed.
2076 * Handle [Out] handle usable in asynchronous notification
2077 * overlapped [In] overlapped structure that notifies the caller
2081 * Failure: error code from winerror.h
2084 * Stub, returns ERROR_NOT_SUPPORTED.
2086 DWORD WINAPI NotifyRouteChange(PHANDLE Handle, LPOVERLAPPED overlapped)
2088 FIXME("(Handle %p, overlapped %p): stub\n", Handle, overlapped);
2089 return ERROR_NOT_SUPPORTED;
2093 /******************************************************************
2094 * SendARP (IPHLPAPI.@)
2096 * Send an ARP request.
2099 * DestIP [In] attempt to obtain this IP
2100 * SrcIP [In] optional sender IP address
2101 * pMacAddr [Out] buffer for the mac address
2102 * PhyAddrLen [In/Out] length of the output buffer
2106 * Failure: error code from winerror.h
2109 * Stub, returns ERROR_NOT_SUPPORTED.
2111 DWORD WINAPI SendARP(IPAddr DestIP, IPAddr SrcIP, PULONG pMacAddr, PULONG PhyAddrLen)
2113 FIXME("(DestIP 0x%08x, SrcIP 0x%08x, pMacAddr %p, PhyAddrLen %p): stub\n",
2114 DestIP, SrcIP, pMacAddr, PhyAddrLen);
2115 return ERROR_NOT_SUPPORTED;
2119 /******************************************************************
2120 * SetIfEntry (IPHLPAPI.@)
2122 * Set the administrative status of an interface.
2125 * pIfRow [In] dwAdminStatus member specifies the new status.
2129 * Failure: error code from winerror.h
2132 * Stub, returns ERROR_NOT_SUPPORTED.
2134 DWORD WINAPI SetIfEntry(PMIB_IFROW pIfRow)
2136 FIXME("(pIfRow %p): stub\n", pIfRow);
2137 /* this is supposed to set an interface administratively up or down.
2138 Could do SIOCSIFFLAGS and set/clear IFF_UP, but, not sure I want to, and
2139 this sort of down is indistinguishable from other sorts of down (e.g. no
2141 return ERROR_NOT_SUPPORTED;
2145 /******************************************************************
2146 * SetIpForwardEntry (IPHLPAPI.@)
2148 * Modify an existing route.
2151 * pRoute [In] route with the new information
2155 * Failure: error code from winerror.h
2158 * Stub, returns NO_ERROR.
2160 DWORD WINAPI SetIpForwardEntry(PMIB_IPFORWARDROW pRoute)
2162 FIXME("(pRoute %p): stub\n", pRoute);
2163 /* this is to add a route entry, how's it distinguishable from
2164 CreateIpForwardEntry?
2165 could use SIOCADDRT, not sure I want to */
2170 /******************************************************************
2171 * SetIpNetEntry (IPHLPAPI.@)
2173 * Modify an existing ARP entry.
2176 * pArpEntry [In] ARP entry with the new information
2180 * Failure: error code from winerror.h
2183 * Stub, returns NO_ERROR.
2185 DWORD WINAPI SetIpNetEntry(PMIB_IPNETROW pArpEntry)
2187 FIXME("(pArpEntry %p): stub\n", pArpEntry);
2188 /* same as CreateIpNetEntry here, could use SIOCSARP, not sure I want to */
2193 /******************************************************************
2194 * SetIpStatistics (IPHLPAPI.@)
2196 * Toggle IP forwarding and det the default TTL value.
2199 * pIpStats [In] IP statistics with the new information
2203 * Failure: error code from winerror.h
2206 * Stub, returns NO_ERROR.
2208 DWORD WINAPI SetIpStatistics(PMIB_IPSTATS pIpStats)
2210 FIXME("(pIpStats %p): stub\n", pIpStats);
2215 /******************************************************************
2216 * SetIpTTL (IPHLPAPI.@)
2218 * Set the default TTL value.
2221 * nTTL [In] new TTL value
2225 * Failure: error code from winerror.h
2228 * Stub, returns NO_ERROR.
2230 DWORD WINAPI SetIpTTL(UINT nTTL)
2232 FIXME("(nTTL %d): stub\n", nTTL);
2233 /* could echo nTTL > /proc/net/sys/net/ipv4/ip_default_ttl, not sure I
2234 want to. Could map EACCESS to ERROR_ACCESS_DENIED, I suppose */
2239 /******************************************************************
2240 * SetTcpEntry (IPHLPAPI.@)
2242 * Set the state of a TCP connection.
2245 * pTcpRow [In] specifies connection with new state
2249 * Failure: error code from winerror.h
2252 * Stub, returns NO_ERROR.
2254 DWORD WINAPI SetTcpEntry(PMIB_TCPROW pTcpRow)
2256 FIXME("(pTcpRow %p): stub\n", pTcpRow);
2261 /******************************************************************
2262 * UnenableRouter (IPHLPAPI.@)
2264 * Decrement the IP-forwarding reference count. Turn off IP-forwarding
2265 * if it reaches zero.
2268 * pOverlapped [In/Out] should be the same as in EnableRouter()
2269 * lpdwEnableCount [Out] optional, receives reference count
2273 * Failure: error code from winerror.h
2276 * Stub, returns ERROR_NOT_SUPPORTED.
2278 DWORD WINAPI UnenableRouter(OVERLAPPED * pOverlapped, LPDWORD lpdwEnableCount)
2280 FIXME("(pOverlapped %p, lpdwEnableCount %p): stub\n", pOverlapped,
2282 /* could echo "0" > /proc/net/sys/net/ipv4/ip_forward, not sure I want to
2283 could map EACCESS to ERROR_ACCESS_DENIED, I suppose
2285 return ERROR_NOT_SUPPORTED;
2288 /******************************************************************
2289 * PfCreateInterface (IPHLPAPI.@)
2291 DWORD WINAPI PfCreateInterface(DWORD dwName, PFFORWARD_ACTION inAction, PFFORWARD_ACTION outAction,
2292 BOOL bUseLog, BOOL bMustBeUnique, INTERFACE_HANDLE *ppInterface)
2294 FIXME("(%d %d %d %x %x %p) stub\n", dwName, inAction, outAction, bUseLog, bMustBeUnique, ppInterface);
2295 return ERROR_CALL_NOT_IMPLEMENTED;
2298 /******************************************************************
2299 * GetTcpTable2 (IPHLPAPI.@)
2301 ULONG WINAPI GetTcpTable2(PMIB_TCPTABLE2 table, PULONG size, BOOL order)
2303 FIXME("pTcpTable2 %p, pdwSize %p, bOrder %d: stub\n", table, size, order);
2304 return ERROR_NOT_SUPPORTED;
2307 /******************************************************************
2308 * GetTcp6Table (IPHLPAPI.@)
2310 ULONG WINAPI GetTcp6Table(PMIB_TCP6TABLE table, PULONG size, BOOL order)
2312 FIXME("pTcp6Table %p, size %p, order %d: stub\n", table, size, order);
2313 return ERROR_NOT_SUPPORTED;
2316 /******************************************************************
2317 * GetTcp6Table2 (IPHLPAPI.@)
2319 ULONG WINAPI GetTcp6Table2(PMIB_TCP6TABLE2 table, PULONG size, BOOL order)
2321 FIXME("pTcp6Table2 %p, size %p, order %d: stub\n", table, size, order);
2322 return ERROR_NOT_SUPPORTED;