]>
The Tcpdump Group git mirrors - libpcap/blob - inet.c
7279409f9ad5e96cd329d37e5d2a3a7d302b590e
2 * Copyright (c) 1994, 1995, 1996, 1997, 1998
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the Computer Systems
16 * Engineering Group at Lawrence Berkeley Laboratory.
17 * 4. Neither the name of the University nor of the Laboratory may be used
18 * to endorse or promote products derived from this software without
19 * specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static const char rcsid
[] =
36 "@(#) $Header: /tcpdump/master/libpcap/inet.c,v 1.33 2000-07-01 03:34:10 assar Exp $ (LBL)";
39 #include <sys/param.h>
41 #include <sys/ioctl.h>
42 #include <sys/socket.h>
43 #ifdef HAVE_SYS_SOCKIO_H
44 #include <sys/sockio.h>
46 #include <sys/time.h> /* concession to AIX */
51 #include <netinet/in.h>
67 #ifdef HAVE_OS_PROTO_H
71 /* Not all systems have IFF_LOOPBACK */
73 #define ISLOOPBACK(p) ((p)->ifr_flags & IFF_LOOPBACK)
75 #define ISLOOPBACK(p) ((p)->ifr_name[0] == 'l' && (p)->ifr_name[1] == 'o' && \
76 (isdigit((p)->ifr_name[2]) || (p)->ifr_name[2] == '\0'))
80 * Return the name of a network interface attached to the system, or NULL
81 * if none can be found. The interface must be configured up; the
82 * lowest unit number is preferred; loopback is ignored.
85 pcap_lookupdev(errbuf
)
86 register char *errbuf
;
89 struct ifaddrs
*ifap
, *ifa
, *mp
;
92 static char device
[IF_NAMESIZE
+ 1];
94 if (getifaddrs(&ifap
) != 0) {
95 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
96 "getifaddrs: %s", pcap_strerror(errno
));
102 for (ifa
= ifap
; ifa
; ifa
= ifa
->ifa_next
) {
103 if ((ifa
->ifa_flags
& IFF_UP
) == 0)
106 if ((ifa
->ifa_flags
& IFF_LOOPBACK
) != 0)
109 if (strncmp(ifa
->ifa_name
, "lo", 2) == 0 &&
110 (ifa
->ifa_name
[2] == '\0' || isdigit(ifa
->ifa_name
[2]))) {
115 for (cp
= ifa
->ifa_name
; !isdigit(*cp
); ++cp
)
124 (void)strlcpy(errbuf
, "no suitable device found",
126 #ifdef HAVE_FREEIFADDRS
134 (void)strlcpy(device
, mp
->ifa_name
, sizeof(device
));
135 #ifdef HAVE_FREEIFADDRS
142 register int fd
, minunit
, n
;
144 register struct ifreq
*ifrp
, *ifend
, *ifnext
, *mp
;
148 static char device
[sizeof(ifrp
->ifr_name
) + 1];
151 fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
153 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
154 "socket: %s", pcap_strerror(errno
));
161 buf
= malloc (buf_size
);
164 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
169 ifc
.ifc_len
= buf_size
;
171 memset (buf
, 0, buf_size
);
172 if (ioctl(fd
, SIOCGIFCONF
, (char *)&ifc
) < 0
173 && errno
!= EINVAL
) {
175 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
176 "SIOCGIFCONF: %s", pcap_strerror(errno
));
180 if (ifc
.ifc_len
< buf_size
)
186 ifrp
= (struct ifreq
*)buf
;
187 ifend
= (struct ifreq
*)(buf
+ ifc
.ifc_len
);
191 for (; ifrp
< ifend
; ifrp
= ifnext
) {
192 #ifdef HAVE_SOCKADDR_SA_LEN
193 n
= ifrp
->ifr_addr
.sa_len
+ sizeof(ifrp
->ifr_name
);
194 if (n
< sizeof(*ifrp
))
197 ifnext
= (struct ifreq
*)((char *)ifrp
+ n
);
198 if (ifrp
->ifr_addr
.sa_family
!= AF_INET
)
204 * Need a template to preserve address info that is
205 * used below to locate the next entry. (Otherwise,
206 * SIOCGIFFLAGS stomps over it because the requests
207 * are returned in a union.)
209 strncpy(ifr
.ifr_name
, ifrp
->ifr_name
, sizeof(ifr
.ifr_name
));
210 if (ioctl(fd
, SIOCGIFFLAGS
, (char *)&ifr
) < 0) {
213 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
214 "SIOCGIFFLAGS: %.*s: %s",
215 (int)sizeof(ifr
.ifr_name
), ifr
.ifr_name
,
216 pcap_strerror(errno
));
222 /* Must be up and not the loopback */
223 if ((ifr
.ifr_flags
& IFF_UP
) == 0 || ISLOOPBACK(&ifr
))
226 for (cp
= ifrp
->ifr_name
; !isdigit(*cp
); ++cp
)
236 (void)strlcpy(errbuf
, "no suitable device found",
242 (void)strlcpy(device
, mp
->ifr_name
, sizeof(device
));
249 pcap_lookupnet(device
, netp
, maskp
, errbuf
)
250 register char *device
;
251 register bpf_u_int32
*netp
, *maskp
;
252 register char *errbuf
;
255 register struct sockaddr_in
*sin
;
258 fd
= socket(AF_INET
, SOCK_DGRAM
, 0);
260 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "socket: %s",
261 pcap_strerror(errno
));
264 memset(&ifr
, 0, sizeof(ifr
));
266 /* XXX Work around Linux kernel bug */
267 ifr
.ifr_addr
.sa_family
= AF_INET
;
269 (void)strncpy(ifr
.ifr_name
, device
, sizeof(ifr
.ifr_name
));
270 if (ioctl(fd
, SIOCGIFADDR
, (char *)&ifr
) < 0) {
271 if (errno
== EADDRNOTAVAIL
) {
272 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
273 "%s: no IPv4 address assigned", device
);
275 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
276 "SIOCGIFADDR: %s: %s",
277 device
, pcap_strerror(errno
));
282 sin
= (struct sockaddr_in
*)&ifr
.ifr_addr
;
283 *netp
= sin
->sin_addr
.s_addr
;
284 if (ioctl(fd
, SIOCGIFNETMASK
, (char *)&ifr
) < 0) {
285 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
286 "SIOCGIFNETMASK: %s: %s", device
, pcap_strerror(errno
));
291 *maskp
= sin
->sin_addr
.s_addr
;
293 if (IN_CLASSA(*netp
))
294 *maskp
= IN_CLASSA_NET
;
295 else if (IN_CLASSB(*netp
))
296 *maskp
= IN_CLASSB_NET
;
297 else if (IN_CLASSC(*netp
))
298 *maskp
= IN_CLASSC_NET
;
300 (void)snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
301 "inet class for 0x%x unknown", *netp
);