1 /* $NetBSD: fad-win32.c,v 1.3 2015/03/31 21:39:42 christos Exp $ */
4 * Copyright (c) 2002 - 2005 NetGroup, Politecnico di Torino (Italy)
5 * Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Politecnico di Torino, CACE Technologies
18 * nor the names of its contributors may be used to endorse or promote
19 * products derived from this software without specific prior written
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 #include <sys/cdefs.h>
37 __RCSID("$NetBSD: fad-win32.c,v 1.3 2015/03/31 21:39:42 christos Exp $");
50 pcap_add_if_win32(pcap_if_t
**devlist
, char *name
, const char *desc
,
54 npf_if_addr if_addrs
[MAX_NETWORK_ADDRESSES
];
58 if_addr_size
= MAX_NETWORK_ADDRESSES
;
61 * Add an entry for this interface, with no addresses.
63 if (add_or_find_if(&curdev
, devlist
, name
, 0, desc
, errbuf
) == -1) {
71 * Get the list of addresses for the interface.
73 if (!PacketGetNetInfoEx((void *)name
, if_addrs
, &if_addr_size
)) {
77 * We don't return an error, because this can happen with
78 * NdisWan interfaces, and we want to supply them even
79 * if we can't supply their addresses.
81 * We return an entry with an empty address list.
87 * Now add the addresses.
89 while (if_addr_size
-- > 0) {
91 * "curdev" is an entry for this interface; add an entry for
92 * this address to its list of addresses.
96 res
= add_addr_to_dev(curdev
,
97 (struct sockaddr
*)&if_addrs
[if_addr_size
].IPAddress
,
98 sizeof (struct sockaddr_storage
),
99 (struct sockaddr
*)&if_addrs
[if_addr_size
].SubnetMask
,
100 sizeof (struct sockaddr_storage
),
101 (struct sockaddr
*)&if_addrs
[if_addr_size
].Broadcast
,
102 sizeof (struct sockaddr_storage
),
119 * Get a list of all interfaces that are up and that we can open.
120 * Returns -1 on error, 0 otherwise.
121 * The list, as returned through "alldevsp", may be null if no interfaces
122 * were up and could be opened.
124 * Win32 implementation, based on WinPcap
127 pcap_findalldevs_interfaces(pcap_if_t
**alldevsp
, char *errbuf
)
129 pcap_if_t
*devlist
= NULL
;
137 * Find out how big a buffer we need.
139 * This call should always return FALSE; if the error is
140 * ERROR_INSUFFICIENT_BUFFER, NameLength will be set to
141 * the size of the buffer we need, otherwise there's a
142 * problem, and NameLength should be set to 0.
144 * It shouldn't require NameLength to be set, but,
145 * at least as of WinPcap 4.1.3, it checks whether
146 * NameLength is big enough before it checks for a
147 * NULL buffer argument, so, while it'll still do
148 * the right thing if NameLength is uninitialized and
149 * whatever junk happens to be there is big enough
150 * (because the pointer argument will be null), it's
151 * still reading an uninitialized variable.
154 if (!PacketGetAdapterNames(NULL
, &NameLength
))
156 DWORD last_error
= GetLastError();
158 if (last_error
!= ERROR_INSUFFICIENT_BUFFER
)
160 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
161 "PacketGetAdapterNames: %s",
162 pcap_win32strerror());
168 AdaptersName
= (char*) malloc(NameLength
);
174 if (AdaptersName
== NULL
)
176 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "Cannot allocate enough memory to list the adapters.");
180 if (!PacketGetAdapterNames(AdaptersName
, &NameLength
)) {
181 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
182 "PacketGetAdapterNames: %s",
183 pcap_win32strerror());
189 * "PacketGetAdapterNames()" returned a list of
190 * null-terminated ASCII interface name strings,
191 * terminated by a null string, followed by a list
192 * of null-terminated ASCII interface description
193 * strings, terminated by a null string.
194 * This means there are two ASCII nulls at the end
197 * Find the end of the first list; that's the
198 * beginning of the second list.
200 desc
= &AdaptersName
[0];
201 while (*desc
!= '\0' || *(desc
+ 1) != '\0')
205 * Found it - "desc" points to the first of the two
206 * nulls at the end of the list of names, so the
207 * first byte of the list of descriptions is two bytes
213 * Loop over the elements in the first list.
215 name
= &AdaptersName
[0];
216 while (*name
!= '\0') {
218 * Add an entry for this interface.
220 if (pcap_add_if_win32(&devlist
, name
, desc
, errbuf
) == -1) {
227 name
+= strlen(name
) + 1;
228 desc
+= strlen(desc
) + 1;
233 * We haven't had any errors yet; do any platform-specific
234 * operations to add devices.
236 if (pcap_platform_finddevs(&devlist
, errbuf
) < 0)
242 * We had an error; free the list we've been constructing.
244 if (devlist
!= NULL
) {
245 pcap_freealldevs(devlist
);