1 /* Copyright (C) 2003,2006,2011 Juan Lang
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include <sys/types.h>
30 #ifdef HAVE_SYS_PARAM_H
31 #include <sys/param.h>
34 #ifdef HAVE_SYS_SOCKET_H
35 #include <sys/socket.h>
42 #ifdef HAVE_NET_IF_ARP_H
43 #include <net/if_arp.h>
46 #ifdef HAVE_NET_ROUTE_H
47 #include <net/route.h>
50 #ifdef HAVE_SYS_IOCTL_H
51 #include <sys/ioctl.h>
54 #ifdef HAVE_SYS_SYSCTL_H
55 #include <sys/sysctl.h>
58 #ifdef HAVE_SYS_SOCKIO_H
59 #include <sys/sockio.h>
62 #ifdef HAVE_NET_IF_DL_H
63 #include <net/if_dl.h>
66 #ifdef HAVE_NET_IF_TYPES_H
67 #include <net/if_types.h>
70 #ifdef HAVE_NETINET_IN_H
71 #include <netinet/in.h>
78 #ifdef HAVE_LINUX_RTNETLINK_H
79 #include <linux/rtnetlink.h>
85 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
86 #define ifreq_len(ifr) \
87 max(sizeof(struct ifreq), sizeof((ifr)->ifr_name)+(ifr)->ifr_addr.sa_len)
89 #define ifreq_len(ifr) sizeof(struct ifreq)
97 #define IF_NAMESIZE 16
101 #define INADDR_NONE (~0U)
104 #define INITIAL_INTERFACES_ASSUMED 4
108 static BOOL
isLoopbackInterface(int fd
, const char *name
)
115 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
116 if (ioctl(fd
, SIOCGIFFLAGS
, &ifr
) == 0)
117 ret
= ifr
.ifr_flags
& IFF_LOOPBACK
;
122 /* The comments say MAX_ADAPTER_NAME is required, but really only IF_NAMESIZE
123 * bytes are necessary.
125 char *getInterfaceNameByIndex(IF_INDEX index
, char *name
)
127 return if_indextoname(index
, name
);
130 DWORD
getInterfaceIndexByName(const char *name
, IF_INDEX
*index
)
136 return ERROR_INVALID_PARAMETER
;
138 return ERROR_INVALID_PARAMETER
;
139 idx
= if_nametoindex(name
);
145 ret
= ERROR_INVALID_DATA
;
149 BOOL
isIfIndexLoopback(ULONG idx
)
155 getInterfaceNameByIndex(idx
, name
);
156 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
158 ret
= isLoopbackInterface(fd
, name
);
164 #ifdef HAVE_IF_NAMEINDEX
165 DWORD
get_interface_indices( BOOL skip_loopback
, InterfaceIndexTable
**table
)
168 struct if_nameindex
*p
, *indices
= if_nameindex();
169 InterfaceIndexTable
*ret
;
171 if (table
) *table
= NULL
;
172 if (!indices
) return 0;
174 for (p
= indices
; p
->if_name
; p
++)
176 if (skip_loopback
&& isIfIndexLoopback( p
->if_index
)) continue;
182 ret
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET(InterfaceIndexTable
, indexes
[count
]) );
188 for (p
= indices
, i
= 0; p
->if_name
&& i
< count
; p
++)
190 if (skip_loopback
&& isIfIndexLoopback( p
->if_index
)) continue;
191 ret
->indexes
[i
++] = p
->if_index
;
193 ret
->numIndexes
= count
= i
;
198 if_freenameindex( indices
);
202 #elif defined(HAVE_LINUX_RTNETLINK_H)
203 static int open_netlink( int *pid
)
205 int fd
= socket( AF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
206 struct sockaddr_nl addr
;
209 if (fd
< 0) return fd
;
211 memset( &addr
, 0, sizeof(addr
) );
212 addr
.nl_family
= AF_NETLINK
;
214 if (bind( fd
, (struct sockaddr
*)&addr
, sizeof(addr
) ) < 0)
218 if (getsockname( fd
, (struct sockaddr
*)&addr
, &len
) < 0)
228 static int send_netlink_req( int fd
, int pid
, int type
, int *seq_no
)
236 struct sockaddr_nl addr
;
238 req
.hdr
.nlmsg_len
= sizeof(req
);
239 req
.hdr
.nlmsg_type
= type
;
240 req
.hdr
.nlmsg_flags
= NLM_F_ROOT
| NLM_F_MATCH
| NLM_F_REQUEST
;
241 req
.hdr
.nlmsg_pid
= pid
;
242 req
.hdr
.nlmsg_seq
= InterlockedIncrement( &seq
);
243 req
.gen
.rtgen_family
= AF_UNSPEC
;
245 memset( &addr
, 0, sizeof(addr
) );
246 addr
.nl_family
= AF_NETLINK
;
247 if (sendto( fd
, &req
, sizeof(req
), 0, (struct sockaddr
*)&addr
, sizeof(addr
) ) != sizeof(req
))
249 *seq_no
= req
.hdr
.nlmsg_seq
;
255 struct netlink_reply
*next
;
257 struct nlmsghdr
*hdr
;
260 static void free_netlink_reply( struct netlink_reply
*data
)
262 struct netlink_reply
*ptr
;
266 HeapFree( GetProcessHeap(), 0, data
);
271 static int recv_netlink_reply( int fd
, int pid
, int seq
, struct netlink_reply
**data
)
273 int bufsize
= getpagesize();
277 struct sockaddr_nl addr
;
278 struct netlink_reply
*cur
, *last
= NULL
;
279 struct nlmsghdr
*hdr
;
283 buf
= HeapAlloc( GetProcessHeap(), 0, bufsize
);
288 left
= read
= recvfrom( fd
, buf
, bufsize
, 0, (struct sockaddr
*)&addr
, &sa_len
);
289 if (read
< 0) goto fail
;
290 if (addr
.nl_pid
!= 0) continue; /* not from kernel */
292 for (hdr
= (struct nlmsghdr
*)buf
; NLMSG_OK(hdr
, left
); hdr
= NLMSG_NEXT(hdr
, left
))
294 if (hdr
->nlmsg_pid
!= pid
|| hdr
->nlmsg_seq
!= seq
) continue;
295 if (hdr
->nlmsg_type
== NLMSG_DONE
)
302 cur
= HeapAlloc( GetProcessHeap(), 0, sizeof(*cur
) + read
);
306 cur
->hdr
= (struct nlmsghdr
*)(cur
+ 1);
307 memcpy( cur
->hdr
, buf
, read
);
308 if (last
) last
->next
= cur
;
313 HeapFree( GetProcessHeap(), 0, buf
);
317 free_netlink_reply( *data
);
318 HeapFree( GetProcessHeap(), 0, buf
);
323 static DWORD
get_indices_from_reply( struct netlink_reply
*reply
, int pid
, int seq
,
324 BOOL skip_loopback
, InterfaceIndexTable
*table
)
326 struct nlmsghdr
*hdr
;
327 struct netlink_reply
*r
;
330 for (r
= reply
; r
; r
= r
->next
)
333 for (hdr
= r
->hdr
; NLMSG_OK(hdr
, size
); hdr
= NLMSG_NEXT(hdr
, size
))
335 if (hdr
->nlmsg_pid
!= pid
|| hdr
->nlmsg_seq
!= seq
) continue;
336 if (hdr
->nlmsg_type
== NLMSG_DONE
) break;
338 if (hdr
->nlmsg_type
== RTM_NEWLINK
)
340 struct ifinfomsg
*info
= NLMSG_DATA(hdr
);
342 if (skip_loopback
&& (info
->ifi_flags
& IFF_LOOPBACK
)) continue;
343 if (table
) table
->indexes
[count
] = info
->ifi_index
;
351 DWORD
get_interface_indices( BOOL skip_loopback
, InterfaceIndexTable
**table
)
354 struct netlink_reply
*reply
= NULL
;
357 if (table
) *table
= NULL
;
358 fd
= open_netlink( &pid
);
359 if (fd
< 0) return 0;
361 if (send_netlink_req( fd
, pid
, RTM_GETLINK
, &seq
) < 0)
364 if (recv_netlink_reply( fd
, pid
, seq
, &reply
) < 0)
367 count
= get_indices_from_reply( reply
, pid
, seq
, skip_loopback
, NULL
);
371 InterfaceIndexTable
*ret
= HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET(InterfaceIndexTable
, indexes
[count
]) );
378 ret
->numIndexes
= count
;
379 get_indices_from_reply( reply
, pid
, seq
, skip_loopback
, ret
);
384 free_netlink_reply( reply
);
390 DWORD
get_interface_indices( BOOL skip_loopback
, InterfaceIndexTable
**table
)
392 if (table
) *table
= NULL
;
397 static DWORD
getInterfaceBCastAddrByName(const char *name
)
399 DWORD ret
= INADDR_ANY
;
402 int fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
407 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
408 if (ioctl(fd
, SIOCGIFBRDADDR
, &ifr
) == 0)
409 memcpy(&ret
, ifr
.ifr_addr
.sa_data
+ 2, sizeof(DWORD
));
416 static DWORD
getInterfaceMaskByName(const char *name
)
418 DWORD ret
= INADDR_NONE
;
421 int fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
426 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
427 if (ioctl(fd
, SIOCGIFNETMASK
, &ifr
) == 0)
428 memcpy(&ret
, ifr
.ifr_addr
.sa_data
+ 2, sizeof(DWORD
));
435 #if defined (SIOCGIFHWADDR) && defined (HAVE_STRUCT_IFREQ_IFR_HWADDR)
436 static DWORD
getInterfacePhysicalByName(const char *name
, PDWORD len
, PBYTE addr
,
442 if (!name
|| !len
|| !addr
|| !type
)
443 return ERROR_INVALID_PARAMETER
;
445 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
449 memset(&ifr
, 0, sizeof(struct ifreq
));
450 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
451 if ((ioctl(fd
, SIOCGIFHWADDR
, &ifr
)))
452 ret
= ERROR_INVALID_DATA
;
454 unsigned int addrLen
;
456 switch (ifr
.ifr_hwaddr
.sa_family
)
458 #ifdef ARPHRD_LOOPBACK
459 case ARPHRD_LOOPBACK
:
461 *type
= MIB_IF_TYPE_LOOPBACK
;
467 *type
= MIB_IF_TYPE_ETHERNET
;
473 *type
= MIB_IF_TYPE_FDDI
;
476 #ifdef ARPHRD_IEEE802
477 case ARPHRD_IEEE802
: /* 802.2 Ethernet && Token Ring, guess TR? */
479 *type
= MIB_IF_TYPE_TOKENRING
;
482 #ifdef ARPHRD_IEEE802_TR
483 case ARPHRD_IEEE802_TR
: /* also Token Ring? */
485 *type
= MIB_IF_TYPE_TOKENRING
;
491 *type
= MIB_IF_TYPE_SLIP
;
497 *type
= MIB_IF_TYPE_PPP
;
502 *type
= MIB_IF_TYPE_OTHER
;
504 if (addrLen
> *len
) {
505 ret
= ERROR_INSUFFICIENT_BUFFER
;
510 memcpy(addr
, ifr
.ifr_hwaddr
.sa_data
, addrLen
);
511 /* zero out remaining bytes for broken implementations */
512 memset(addr
+ addrLen
, 0, *len
- addrLen
);
520 ret
= ERROR_NO_MORE_FILES
;
523 #elif defined (SIOCGARP)
524 static DWORD
getInterfacePhysicalByName(const char *name
, PDWORD len
, PBYTE addr
,
530 if (!name
|| !len
|| !addr
|| !type
)
531 return ERROR_INVALID_PARAMETER
;
533 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
535 if (isLoopbackInterface(fd
, name
)) {
536 *type
= MIB_IF_TYPE_LOOPBACK
;
537 memset(addr
, 0, *len
);
543 struct sockaddr_in
*saddr
;
547 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
548 ioctl(fd
, SIOCGIFADDR
, &ifr
);
549 memset(&arp
, 0, sizeof(struct arpreq
));
550 arp
.arp_pa
.sa_family
= AF_INET
;
551 saddr
= (struct sockaddr_in
*)&arp
; /* proto addr is first member */
552 saddr
->sin_family
= AF_INET
;
553 memcpy(&saddr
->sin_addr
.s_addr
, ifr
.ifr_addr
.sa_data
+ 2, sizeof(DWORD
));
554 if ((ioctl(fd
, SIOCGARP
, &arp
)))
555 ret
= ERROR_INVALID_DATA
;
557 /* FIXME: heh: who said it was ethernet? */
558 int addrLen
= ETH_ALEN
;
560 if (addrLen
> *len
) {
561 ret
= ERROR_INSUFFICIENT_BUFFER
;
566 memcpy(addr
, &arp
.arp_ha
.sa_data
[0], addrLen
);
567 /* zero out remaining bytes for broken implementations */
568 memset(addr
+ addrLen
, 0, *len
- addrLen
);
570 *type
= MIB_IF_TYPE_ETHERNET
;
578 ret
= ERROR_NO_MORE_FILES
;
582 #elif defined (HAVE_SYS_SYSCTL_H) && defined (HAVE_NET_IF_DL_H)
583 static DWORD
getInterfacePhysicalByName(const char *name
, PDWORD len
, PBYTE addr
,
587 struct if_msghdr
*ifm
;
588 struct sockaddr_dl
*sdl
;
591 int mib
[] = { CTL_NET
, AF_ROUTE
, 0, AF_LINK
, NET_RT_IFLIST
, 0 };
595 if (!name
|| !len
|| !addr
|| !type
)
596 return ERROR_INVALID_PARAMETER
;
598 if (sysctl(mib
, 6, NULL
, &mibLen
, NULL
, 0) < 0)
599 return ERROR_NO_MORE_FILES
;
601 buf
= HeapAlloc(GetProcessHeap(), 0, mibLen
);
603 return ERROR_NOT_ENOUGH_MEMORY
;
605 if (sysctl(mib
, 6, buf
, &mibLen
, NULL
, 0) < 0) {
606 HeapFree(GetProcessHeap(), 0, buf
);
607 return ERROR_NO_MORE_FILES
;
610 ret
= ERROR_INVALID_DATA
;
611 for (p
= buf
; !found
&& p
< buf
+ mibLen
; p
+= ifm
->ifm_msglen
) {
612 ifm
= (struct if_msghdr
*)p
;
613 sdl
= (struct sockaddr_dl
*)(ifm
+ 1);
615 if (ifm
->ifm_type
!= RTM_IFINFO
|| (ifm
->ifm_addrs
& RTA_IFP
) == 0)
618 if (sdl
->sdl_family
!= AF_LINK
|| sdl
->sdl_nlen
== 0 ||
619 memcmp(sdl
->sdl_data
, name
, max(sdl
->sdl_nlen
, strlen(name
))) != 0)
623 addrLen
= min(MAX_INTERFACE_PHYSADDR
, sdl
->sdl_alen
);
624 if (addrLen
> *len
) {
625 ret
= ERROR_INSUFFICIENT_BUFFER
;
630 memcpy(addr
, LLADDR(sdl
), addrLen
);
631 /* zero out remaining bytes for broken implementations */
632 memset(addr
+ addrLen
, 0, *len
- addrLen
);
634 #if defined(HAVE_NET_IF_TYPES_H)
635 switch (sdl
->sdl_type
)
638 *type
= MIB_IF_TYPE_ETHERNET
;
641 *type
= MIB_IF_TYPE_FDDI
;
643 case IFT_ISO88024
: /* Token Bus */
644 *type
= MIB_IF_TYPE_TOKENRING
;
646 case IFT_ISO88025
: /* Token Ring */
647 *type
= MIB_IF_TYPE_TOKENRING
;
650 *type
= MIB_IF_TYPE_PPP
;
653 *type
= MIB_IF_TYPE_SLIP
;
656 *type
= MIB_IF_TYPE_LOOPBACK
;
659 *type
= MIB_IF_TYPE_OTHER
;
662 /* default if we don't know */
663 *type
= MIB_IF_TYPE_ETHERNET
;
668 HeapFree(GetProcessHeap(), 0, buf
);
673 DWORD
getInterfacePhysicalByIndex(IF_INDEX index
, PDWORD len
, PBYTE addr
,
676 char nameBuf
[IF_NAMESIZE
];
677 char *name
= getInterfaceNameByIndex(index
, nameBuf
);
680 return getInterfacePhysicalByName(name
, len
, addr
, type
);
682 return ERROR_INVALID_DATA
;
685 DWORD
getInterfaceMtuByName(const char *name
, PDWORD mtu
)
691 return ERROR_INVALID_PARAMETER
;
693 return ERROR_INVALID_PARAMETER
;
695 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
699 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
700 if ((ioctl(fd
, SIOCGIFMTU
, &ifr
)))
701 ret
= ERROR_INVALID_DATA
;
706 *mtu
= ifr
.ifr_metric
;
713 ret
= ERROR_NO_MORE_FILES
;
717 DWORD
getInterfaceStatusByName(const char *name
, INTERNAL_IF_OPER_STATUS
*status
)
723 return ERROR_INVALID_PARAMETER
;
725 return ERROR_INVALID_PARAMETER
;
727 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
731 lstrcpynA(ifr
.ifr_name
, name
, IFNAMSIZ
);
732 if ((ioctl(fd
, SIOCGIFFLAGS
, &ifr
)))
733 ret
= ERROR_INVALID_DATA
;
735 if (ifr
.ifr_flags
& IFF_UP
)
736 *status
= MIB_IF_OPER_STATUS_OPERATIONAL
;
738 *status
= MIB_IF_OPER_STATUS_NON_OPERATIONAL
;
744 ret
= ERROR_NO_MORE_FILES
;
748 DWORD
getInterfaceEntryByName(const char *name
, PMIB_IFROW entry
)
750 BYTE addr
[MAX_INTERFACE_PHYSADDR
];
751 DWORD ret
, len
= sizeof(addr
), type
;
754 return ERROR_INVALID_PARAMETER
;
756 return ERROR_INVALID_PARAMETER
;
758 if (getInterfacePhysicalByName(name
, &len
, addr
, &type
) == NO_ERROR
) {
762 memset(entry
, 0, sizeof(MIB_IFROW
));
763 for (assigner
= entry
->wszName
, walker
= name
; *walker
;
764 walker
++, assigner
++)
767 getInterfaceIndexByName(name
, &entry
->dwIndex
);
768 entry
->dwPhysAddrLen
= len
;
769 memcpy(entry
->bPhysAddr
, addr
, len
);
770 memset(entry
->bPhysAddr
+ len
, 0, sizeof(entry
->bPhysAddr
) - len
);
771 entry
->dwType
= type
;
772 /* FIXME: how to calculate real speed? */
773 getInterfaceMtuByName(name
, &entry
->dwMtu
);
774 /* lie, there's no "administratively down" here */
775 entry
->dwAdminStatus
= MIB_IF_ADMIN_STATUS_UP
;
776 getInterfaceStatusByName(name
, &entry
->dwOperStatus
);
777 /* punt on dwLastChange? */
778 entry
->dwDescrLen
= min(strlen(name
), MAX_INTERFACE_DESCRIPTION
- 1);
779 memcpy(entry
->bDescr
, name
, entry
->dwDescrLen
);
780 entry
->bDescr
[entry
->dwDescrLen
] = '\0';
785 ret
= ERROR_INVALID_DATA
;
789 static DWORD
getIPAddrRowByName(PMIB_IPADDRROW ipAddrRow
, const char *ifName
,
790 const struct sockaddr
*sa
)
794 ret
= getInterfaceIndexByName(ifName
, &ipAddrRow
->dwIndex
);
795 memcpy(&ipAddrRow
->dwAddr
, sa
->sa_data
+ 2, sizeof(DWORD
));
796 ipAddrRow
->dwMask
= getInterfaceMaskByName(ifName
);
797 /* the dwBCastAddr member isn't the broadcast address, it indicates whether
798 * the interface uses the 1's broadcast address (1) or the 0's broadcast
801 bcast
= getInterfaceBCastAddrByName(ifName
);
802 ipAddrRow
->dwBCastAddr
= (bcast
& ipAddrRow
->dwMask
) ? 1 : 0;
803 /* FIXME: hardcoded reasm size, not sure where to get it */
804 ipAddrRow
->dwReasmSize
= 65535;
805 ipAddrRow
->unused1
= 0;
806 /* wType is a bit field composed of MIB_IPADDR_* flags. Windows <= XP seems
807 * to like returning undocumented values 0x20 + 0x02 but for our current
808 * needs returning MIB_IPADDR_PRIMARY is enough.
810 ipAddrRow
->wType
= MIB_IPADDR_PRIMARY
;
814 #if defined(HAVE_IFADDRS_H) && defined(HAVE_GETIFADDRS)
816 /* Counts the IPv4 addresses in the system using the return value from
817 * getifaddrs, returning the count.
819 static DWORD
countIPv4Addresses(struct ifaddrs
*ifa
)
821 DWORD numAddresses
= 0;
823 for (; ifa
; ifa
= ifa
->ifa_next
)
824 if (ifa
->ifa_addr
&& ifa
->ifa_addr
->sa_family
== AF_INET
)
829 DWORD
getNumIPAddresses(void)
831 DWORD numAddresses
= 0;
834 if (!getifaddrs(&ifa
))
836 numAddresses
= countIPv4Addresses(ifa
);
842 DWORD
getIPAddrTable(PMIB_IPADDRTABLE
*ppIpAddrTable
, HANDLE heap
, DWORD flags
)
847 ret
= ERROR_INVALID_PARAMETER
;
852 if (!getifaddrs(&ifa
))
854 DWORD size
= sizeof(MIB_IPADDRTABLE
);
855 DWORD numAddresses
= countIPv4Addresses(ifa
);
857 if (numAddresses
> 1)
858 size
+= (numAddresses
- 1) * sizeof(MIB_IPADDRROW
);
859 *ppIpAddrTable
= HeapAlloc(heap
, flags
, size
);
866 (*ppIpAddrTable
)->dwNumEntries
= numAddresses
;
867 for (ifp
= ifa
; !ret
&& ifp
; ifp
= ifp
->ifa_next
)
869 if (!ifp
->ifa_addr
|| ifp
->ifa_addr
->sa_family
!= AF_INET
)
872 ret
= getIPAddrRowByName(&(*ppIpAddrTable
)->table
[i
], ifp
->ifa_name
,
877 HeapFree(GetProcessHeap(), 0, *ppIpAddrTable
);
880 ret
= ERROR_OUTOFMEMORY
;
884 ret
= ERROR_INVALID_PARAMETER
;
889 ULONG
v6addressesFromIndex(IF_INDEX index
, SOCKET_ADDRESS
**addrs
, ULONG
*num_addrs
, SOCKET_ADDRESS
**masks
)
894 if (!getifaddrs(&ifa
))
900 getInterfaceNameByIndex(index
, name
);
901 for (p
= ifa
, n
= 0; p
; p
= p
->ifa_next
)
902 if (p
->ifa_addr
&& p
->ifa_addr
->sa_family
== AF_INET6
&&
903 !strcmp(name
, p
->ifa_name
))
907 *addrs
= HeapAlloc(GetProcessHeap(), 0, n
* (sizeof(SOCKET_ADDRESS
) +
908 sizeof(struct WS_sockaddr_in6
)));
909 *masks
= HeapAlloc(GetProcessHeap(), 0, n
* (sizeof(SOCKET_ADDRESS
) +
910 sizeof(struct WS_sockaddr_in6
)));
911 if (*addrs
&& *masks
)
913 struct WS_sockaddr_in6
*next_addr
= (struct WS_sockaddr_in6
*)(
914 (BYTE
*)*addrs
+ n
* sizeof(SOCKET_ADDRESS
));
915 struct WS_sockaddr_in6
*mask_addr
= (struct WS_sockaddr_in6
*)(
916 (BYTE
*)*masks
+ n
* sizeof(SOCKET_ADDRESS
));
918 for (p
= ifa
, n
= 0; p
; p
= p
->ifa_next
)
920 if (p
->ifa_addr
&& p
->ifa_addr
->sa_family
== AF_INET6
&&
921 !strcmp(name
, p
->ifa_name
))
923 struct sockaddr_in6
*addr
= (struct sockaddr_in6
*)p
->ifa_addr
;
924 struct sockaddr_in6
*mask
= (struct sockaddr_in6
*)p
->ifa_netmask
;
926 next_addr
->sin6_family
= WS_AF_INET6
;
927 next_addr
->sin6_port
= addr
->sin6_port
;
928 next_addr
->sin6_flowinfo
= addr
->sin6_flowinfo
;
929 memcpy(&next_addr
->sin6_addr
, &addr
->sin6_addr
,
930 sizeof(next_addr
->sin6_addr
));
931 next_addr
->sin6_scope_id
= addr
->sin6_scope_id
;
932 (*addrs
)[n
].lpSockaddr
= (LPSOCKADDR
)next_addr
;
933 (*addrs
)[n
].iSockaddrLength
= sizeof(struct WS_sockaddr_in6
);
936 mask_addr
->sin6_family
= WS_AF_INET6
;
937 mask_addr
->sin6_port
= mask
->sin6_port
;
938 mask_addr
->sin6_flowinfo
= mask
->sin6_flowinfo
;
939 memcpy(&mask_addr
->sin6_addr
, &mask
->sin6_addr
,
940 sizeof(mask_addr
->sin6_addr
));
941 mask_addr
->sin6_scope_id
= mask
->sin6_scope_id
;
942 (*masks
)[n
].lpSockaddr
= (LPSOCKADDR
)mask_addr
;
943 (*masks
)[n
].iSockaddrLength
= sizeof(struct WS_sockaddr_in6
);
953 HeapFree(GetProcessHeap(), 0, *addrs
);
954 HeapFree(GetProcessHeap(), 0, *masks
);
955 ret
= ERROR_OUTOFMEMORY
;
974 /* Enumerates the IP addresses in the system using SIOCGIFCONF, returning
975 * the count to you in *pcAddresses. It also returns to you the struct ifconf
976 * used by the call to ioctl, so that you may process the addresses further.
977 * Free ifc->ifc_buf using HeapFree.
978 * Returns NO_ERROR on success, something else on failure.
980 static DWORD
enumIPAddresses(PDWORD pcAddresses
, struct ifconf
*ifc
)
985 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
988 DWORD guessedNumAddresses
= 0, numAddresses
= 0;
995 /* there is no way to know the interface count beforehand,
996 so we need to loop again and again upping our max each time
997 until returned is constant across 2 calls */
999 lastlen
= ifc
->ifc_len
;
1000 HeapFree(GetProcessHeap(), 0, ifc
->ifc_buf
);
1001 if (guessedNumAddresses
== 0)
1002 guessedNumAddresses
= INITIAL_INTERFACES_ASSUMED
;
1004 guessedNumAddresses
*= 2;
1005 ifc
->ifc_len
= sizeof(struct ifreq
) * guessedNumAddresses
;
1006 ifc
->ifc_buf
= HeapAlloc(GetProcessHeap(), 0, ifc
->ifc_len
);
1007 ioctlRet
= ioctl(fd
, SIOCGIFCONF
, ifc
);
1008 } while ((ioctlRet
== 0) && (ifc
->ifc_len
!= lastlen
));
1010 if (ioctlRet
== 0) {
1011 ifPtr
= ifc
->ifc_buf
;
1012 while (ifPtr
&& (char *)ifPtr
< ifc
->ifc_buf
+ ifc
->ifc_len
) {
1013 struct ifreq
*ifr
= (struct ifreq
*)ifPtr
;
1015 if (ifr
->ifr_addr
.sa_family
== AF_INET
)
1018 ifPtr
= (char *)ifPtr
+ ifreq_len((struct ifreq
*)ifPtr
);
1022 ret
= ERROR_INVALID_PARAMETER
; /* FIXME: map from errno to Win32 */
1024 *pcAddresses
= numAddresses
;
1027 HeapFree(GetProcessHeap(), 0, ifc
->ifc_buf
);
1028 ifc
->ifc_buf
= NULL
;
1033 ret
= ERROR_NO_SYSTEM_RESOURCES
;
1037 DWORD
getNumIPAddresses(void)
1039 DWORD numAddresses
= 0;
1042 if (!enumIPAddresses(&numAddresses
, &ifc
))
1043 HeapFree(GetProcessHeap(), 0, ifc
.ifc_buf
);
1044 return numAddresses
;
1047 DWORD
getIPAddrTable(PMIB_IPADDRTABLE
*ppIpAddrTable
, HANDLE heap
, DWORD flags
)
1052 ret
= ERROR_INVALID_PARAMETER
;
1055 DWORD numAddresses
= 0;
1058 ret
= enumIPAddresses(&numAddresses
, &ifc
);
1061 DWORD size
= sizeof(MIB_IPADDRTABLE
);
1063 if (numAddresses
> 1)
1064 size
+= (numAddresses
- 1) * sizeof(MIB_IPADDRROW
);
1065 *ppIpAddrTable
= HeapAlloc(heap
, flags
, size
);
1066 if (*ppIpAddrTable
) {
1071 (*ppIpAddrTable
)->dwNumEntries
= numAddresses
;
1072 ifPtr
= ifc
.ifc_buf
;
1073 while (!ret
&& ifPtr
&& (char *)ifPtr
< ifc
.ifc_buf
+ ifc
.ifc_len
) {
1074 struct ifreq
*ifr
= (struct ifreq
*)ifPtr
;
1076 ifPtr
= (char *)ifPtr
+ ifreq_len(ifr
);
1078 if (ifr
->ifr_addr
.sa_family
!= AF_INET
)
1081 ret
= getIPAddrRowByName(&(*ppIpAddrTable
)->table
[i
], ifr
->ifr_name
,
1086 HeapFree(GetProcessHeap(), 0, *ppIpAddrTable
);
1089 ret
= ERROR_OUTOFMEMORY
;
1090 HeapFree(GetProcessHeap(), 0, ifc
.ifc_buf
);
1096 ULONG
v6addressesFromIndex(IF_INDEX index
, SOCKET_ADDRESS
**addrs
, ULONG
*num_addrs
, SOCKET_ADDRESS
**masks
)
1101 return ERROR_SUCCESS
;