]>
The Tcpdump Group git mirrors - libpcap/blob - dlpisubs.c
2 * This code is derived from code formerly in pcap-dlpi.c, originally
3 * contributed by Atanu Ghosh (atanu@cs.ucl.ac.uk), University College
4 * London, and subsequently modified by Guy Harris (guy@alum.mit.edu),
5 * Mark Pizzolato <List-tcpdump-workers@subscriptions.pizzolato.net>,
6 * Mark C. Brown (mbrown@hp.com), and Sagun Shakya <Sagun.Shakya@Sun.COM>.
10 * This file contains dlpi/libdlpi related common functions used
11 * by pcap-[dlpi,libdlpi].c.
19 #define DL_IPATM 0x12 /* ATM Classical IP interface */
22 #ifdef HAVE_SYS_BUFMOD_H
24 * Size of a bufmod chunk to pass upstream; that appears to be the
25 * biggest value to which you can set it, and setting it to that value
26 * (which is bigger than what appears to be the Solaris default of 8192)
27 * reduces the number of packet drops.
29 #define CHUNKSIZE 65536
32 * Size of the buffer to allocate for packet data we read; it must be
33 * large enough to hold a chunk.
35 #define PKTBUFSIZE CHUNKSIZE
37 #else /* HAVE_SYS_BUFMOD_H */
40 * Size of the buffer to allocate for packet data we read; this is
41 * what the value used to be - there's no particular reason why it
42 * should be tied to MAXDLBUF, but we'll leave it as this for now.
45 #define PKTBUFSIZE (MAXDLBUF * sizeof(bpf_u_int32))
49 #include <sys/types.h>
51 #ifdef HAVE_SYS_BUFMOD_H
52 #include <sys/bufmod.h>
55 #include <sys/stream.h>
72 #ifdef HAVE_SYS_BUFMOD_H
73 static void pcap_stream_err(const char *, int, char *);
77 * Get the packet statistics.
80 pcap_stats_dlpi(pcap_t
*p
, struct pcap_stat
*ps
)
82 struct pcap_dlpi
*pd
= p
->priv
;
85 * "ps_recv" counts packets handed to the filter, not packets
86 * that passed the filter. As filtering is done in userland,
87 * this would not include packets dropped because we ran out
88 * of buffer space; in order to make this more like other
89 * platforms (Linux 2.4 and later, BSDs with BPF), where the
90 * "packets received" count includes packets received but dropped
91 * due to running out of buffer space, and to keep from confusing
92 * applications that, for example, compute packet drop percentages,
93 * we also make it count packets dropped by "bufmod" (otherwise we
94 * might run the risk of the packet drop count being bigger than
95 * the received-packet count).
97 * "ps_drop" counts packets dropped by "bufmod" because of
98 * flow control requirements or resource exhaustion; it doesn't
99 * count packets dropped by the interface driver, or packets
100 * dropped upstream. As filtering is done in userland, it counts
101 * packets regardless of whether they would've passed the filter.
103 * These statistics don't include packets not yet read from
104 * the kernel by libpcap, but they may include packets not
105 * yet read from libpcap by the application.
110 * Add in the drop count, as per the above comment.
112 ps
->ps_recv
+= ps
->ps_drop
;
117 * Does the processor for which we're compiling this support aligned loads?
119 #if (defined(__i386__) || defined(_M_IX86) || defined(__X86__) || defined(__x86_64__) || defined(_M_X64)) || \
120 (defined(__arm__) || defined(_M_ARM) || defined(__aarch64__)) || \
121 (defined(__m68k__) && (!defined(__mc68000__) && !defined(__mc68010__))) || \
122 (defined(__ppc__) || defined(__ppc64__) || defined(_M_PPC) || defined(_ARCH_PPC) || defined(_ARCH_PPC64)) || \
123 (defined(__s390__) || defined(__s390x__) || defined(__zarch__))
126 /* No, it doesn't. */
127 #define REQUIRE_ALIGNMENT
131 * Loop through the packets and call the callback for each packet.
132 * Return the number of packets read.
135 pcap_process_pkts(pcap_t
*p
, pcap_handler callback
, u_char
*user
,
136 int count
, u_char
*bufp
, int len
)
138 struct pcap_dlpi
*pd
= p
->priv
;
139 int n
, caplen
, origlen
;
141 struct pcap_pkthdr pkthdr
;
142 #ifdef HAVE_SYS_BUFMOD_H
144 #ifdef REQUIRE_ALIGNMENT
150 * Loop through packets.
152 * This assumes that a single buffer of packets will have
153 * <= INT_MAX packets, so the packet count doesn't overflow.
158 #ifdef HAVE_SYS_BUFMOD_H
161 * Has "pcap_breakloop()" been called?
162 * If so, return immediately - if we haven't read any
163 * packets, clear the flag and return -2 to indicate
164 * that we were told to break out of the loop, otherwise
165 * leave the flag set, so that the *next* call will break
166 * out of the loop without having read any packets, and
167 * return the number of packets we've processed so far.
179 #ifdef REQUIRE_ALIGNMENT
180 if ((long)bufp
& 3) {
182 memcpy(sbp
, bufp
, sizeof(*sbp
));
185 sbp
= (struct sb_hdr
*)bufp
;
186 pd
->stat
.ps_drop
= sbp
->sbh_drops
;
187 pk
= bufp
+ sizeof(*sbp
);
188 bufp
+= sbp
->sbh_totlen
;
189 origlen
= sbp
->sbh_origlen
;
190 caplen
= sbp
->sbh_msglen
;
193 caplen
= min(p
->snapshot
, len
);
198 if (pcap_filter(p
->fcode
.bf_insns
, pk
, origlen
, caplen
)) {
199 #ifdef HAVE_SYS_BUFMOD_H
200 pkthdr
.ts
.tv_sec
= sbp
->sbh_timestamp
.tv_sec
;
201 pkthdr
.ts
.tv_usec
= sbp
->sbh_timestamp
.tv_usec
;
203 (void) gettimeofday(&pkthdr
.ts
, NULL
);
205 pkthdr
.len
= origlen
;
206 pkthdr
.caplen
= caplen
;
207 /* Insure caplen does not exceed snapshot */
208 if (pkthdr
.caplen
> (bpf_u_int32
)p
->snapshot
)
209 pkthdr
.caplen
= (bpf_u_int32
)p
->snapshot
;
210 (*callback
)(user
, &pkthdr
, pk
);
211 if (++n
>= count
&& !PACKET_COUNT_IS_UNLIMITED(count
)) {
217 #ifdef HAVE_SYS_BUFMOD_H
225 * Process the mac type. Returns -1 if no matching mac type found, otherwise 0.
228 pcap_process_mactype(pcap_t
*p
, u_int mactype
)
236 p
->linktype
= DLT_EN10MB
;
239 * This is (presumably) a real Ethernet capture; give it a
240 * link-layer-type list with DLT_EN10MB and DLT_DOCSIS, so
241 * that an application can let you choose it, in case you're
242 * capturing DOCSIS traffic that a Cisco Cable Modem
243 * Termination System is putting out onto an Ethernet (it
244 * doesn't put an Ethernet header onto the wire, it puts raw
245 * DOCSIS frames out on the wire inside the low-level
248 p
->dlt_list
= (u_int
*)malloc(sizeof(u_int
) * 2);
250 * If that fails, just leave the list empty.
252 if (p
->dlt_list
!= NULL
) {
253 p
->dlt_list
[0] = DLT_EN10MB
;
254 p
->dlt_list
[1] = DLT_DOCSIS
;
260 p
->linktype
= DLT_FDDI
;
265 /* XXX - what about DL_TPB? Is that Token Bus? */
266 p
->linktype
= DLT_IEEE802
;
272 p
->linktype
= DLT_SUNATM
;
273 p
->offset
= 0; /* works for LANE and LLC encapsulation */
279 p
->linktype
= DLT_IPV4
;
286 p
->linktype
= DLT_IPV6
;
294 * XXX - DL_IPNET devices default to "raw IP" rather than
295 * "IPNET header"; see
297 * https://seclists.org/tcpdump/2009/q1/202
299 * We'd have to do DL_IOC_IPNET_INFO to enable getting
302 p
->linktype
= DLT_RAW
;
308 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
, "unknown mactype 0x%x",
316 #ifdef HAVE_SYS_BUFMOD_H
318 * Push and configure the buffer module. Returns -1 for error, otherwise 0.
321 pcap_conf_bufmod(pcap_t
*p
, int snaplen
)
324 bpf_u_int32 ss
, chunksize
;
326 /* Non-standard call to get the data nicely buffered. */
327 if (ioctl(p
->fd
, I_PUSH
, "bufmod") != 0) {
328 pcap_stream_err("I_PUSH bufmod", errno
, p
->errbuf
);
334 strioctl(p
->fd
, SBIOCSSNAP
, sizeof(ss
), (char *)&ss
) != 0) {
335 pcap_stream_err("SBIOCSSNAP", errno
, p
->errbuf
);
339 if (p
->opt
.immediate
) {
340 /* Set the timeout to zero, for immediate delivery. */
343 if (strioctl(p
->fd
, SBIOCSTIME
, sizeof(to
), (char *)&to
) != 0) {
344 pcap_stream_err("SBIOCSTIME", errno
, p
->errbuf
);
348 /* Set up the bufmod timeout. */
349 if (p
->opt
.timeout
!= 0) {
350 to
.tv_sec
= p
->opt
.timeout
/ 1000;
351 to
.tv_usec
= (p
->opt
.timeout
* 1000) % 1000000;
352 if (strioctl(p
->fd
, SBIOCSTIME
, sizeof(to
), (char *)&to
) != 0) {
353 pcap_stream_err("SBIOCSTIME", errno
, p
->errbuf
);
358 /* Set the chunk length. */
359 chunksize
= CHUNKSIZE
;
360 if (strioctl(p
->fd
, SBIOCSCHUNK
, sizeof(chunksize
), (char *)&chunksize
)
362 pcap_stream_err("SBIOCSCHUNKP", errno
, p
->errbuf
);
369 #endif /* HAVE_SYS_BUFMOD_H */
372 * Allocate data buffer. Returns -1 if memory allocation fails, else 0.
375 pcap_alloc_databuf(pcap_t
*p
)
377 p
->bufsize
= PKTBUFSIZE
;
378 p
->buffer
= malloc(p
->bufsize
+ p
->offset
);
379 if (p
->buffer
== NULL
) {
380 pcap_fmt_errmsg_for_errno(p
->errbuf
, PCAP_ERRBUF_SIZE
,
389 * Issue a STREAMS I_STR ioctl. Returns -1 on error, otherwise
390 * length of returned data on success.
393 strioctl(int fd
, int cmd
, int len
, char *dp
)
402 if ((retv
= ioctl(fd
, I_STR
, &str
)) < 0)
408 #ifdef HAVE_SYS_BUFMOD_H
410 * Write stream error message to errbuf.
413 pcap_stream_err(const char *func
, int err
, char *errbuf
)
415 pcap_fmt_errmsg_for_errno(errbuf
, PCAP_ERRBUF_SIZE
, err
, "%s", func
);