]>
The Tcpdump Group git mirrors - libpcap/blob - pcap-bpf.h
2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from the Stanford/CMU enet packet filter,
6 * (net/enet.c) distributed as part of 4.3BSD, and code contributed
7 * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * @(#)bpf.h 7.1 (Berkeley) 5/7/91
40 * @(#) $Header: /tcpdump/master/libpcap/pcap-bpf.h,v 1.13 2003-12-20 02:38:23 guy Exp $ (LBL)
44 * This is libpcap's cut-down version of bpf.h; it includes only
45 * the stuff needed for the code generator and the userland BPF
46 * interpreter, and the libpcap APIs for setting filters, etc..
48 * "pcap-bpf.c" will include the native OS version, as it deals with
49 * the OS's BPF implementation.
51 * XXX - should this all just be moved to "pcap.h"?
54 #ifndef BPF_MAJOR_VERSION
60 /* BSD style release date */
61 #define BPF_RELEASE 199606
63 typedef int bpf_int32
;
64 typedef u_int bpf_u_int32
;
67 * Alignment macros. BPF_WORDALIGN rounds up to the next
68 * even multiple of BPF_ALIGNMENT.
71 #define BPF_ALIGNMENT sizeof(bpf_int32)
73 #define BPF_ALIGNMENT sizeof(long)
75 #define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))
77 #define BPF_MAXINSNS 512
78 #define BPF_MAXBUFSIZE 0x8000
79 #define BPF_MINBUFSIZE 32
82 * Structure for "pcap_compile()", "pcap_setfilter()", etc..
86 struct bpf_insn
*bf_insns
;
90 * Struct return by BIOCVERSION. This represents the version number of
91 * the filter language described by the instruction encodings below.
92 * bpf understands a program iff kernel_major == filter_major &&
93 * kernel_minor >= filter_minor, that is, if the value returned by the
94 * running kernel has the same major number and a minor number equal
95 * equal to or less than the filter being downloaded. Otherwise, the
96 * results are undefined, meaning an error may be returned or packets
97 * may be accepted haphazardly.
98 * It has nothing to do with the source code version.
104 /* Current version number of filter architecture. */
105 #define BPF_MAJOR_VERSION 1
106 #define BPF_MINOR_VERSION 1
109 * Data-link level type codes.
111 * Do *NOT* add new values to this list without asking
112 * "tcpdump-workers@tcpdump.org" for a value. Otherwise, you run the
113 * risk of using a value that's already being used for some other purpose,
114 * and of having tools that read libpcap-format captures not being able
115 * to handle captures with your new DLT_ value, with no hope that they
116 * will ever be changed to do so (as that would destroy their ability
117 * to read captures using that value for that other purpose).
121 * These are the types that are the same on all platforms, and that
122 * have been defined by <net/bpf.h> for ages.
124 #define DLT_NULL 0 /* no link-layer encapsulation */
125 #define DLT_EN10MB 1 /* Ethernet (10Mb) */
126 #define DLT_EN3MB 2 /* Experimental Ethernet (3Mb) */
127 #define DLT_AX25 3 /* Amateur Radio AX.25 */
128 #define DLT_PRONET 4 /* Proteon ProNET Token Ring */
129 #define DLT_CHAOS 5 /* Chaos */
130 #define DLT_IEEE802 6 /* IEEE 802 Networks */
131 #define DLT_ARCNET 7 /* ARCNET, with BSD-style header */
132 #define DLT_SLIP 8 /* Serial Line IP */
133 #define DLT_PPP 9 /* Point-to-point Protocol */
134 #define DLT_FDDI 10 /* FDDI */
137 * These are types that are different on some platforms, and that
138 * have been defined by <net/bpf.h> for ages. We use #ifdefs to
139 * detect the BSDs that define them differently from the traditional
140 * libpcap <net/bpf.h>
142 * XXX - DLT_ATM_RFC1483 is 13 in BSD/OS, and DLT_RAW is 14 in BSD/OS,
143 * but I don't know what the right #define is for BSD/OS.
145 #define DLT_ATM_RFC1483 11 /* LLC/SNAP encapsulated atm */
148 #define DLT_RAW 14 /* raw IP */
150 #define DLT_RAW 12 /* raw IP */
154 * Given that the only OS that currently generates BSD/OS SLIP or PPP
155 * is, well, BSD/OS, arguably everybody should have chosen its values
156 * for DLT_SLIP_BSDOS and DLT_PPP_BSDOS, which are 15 and 16, but they
157 * didn't. So it goes.
159 #if defined(__NetBSD__) || defined(__FreeBSD__)
160 #ifndef DLT_SLIP_BSDOS
161 #define DLT_SLIP_BSDOS 13 /* BSD/OS Serial Line IP */
162 #define DLT_PPP_BSDOS 14 /* BSD/OS Point-to-point Protocol */
165 #define DLT_SLIP_BSDOS 15 /* BSD/OS Serial Line IP */
166 #define DLT_PPP_BSDOS 16 /* BSD/OS Point-to-point Protocol */
170 * 17 is used for DLT_PFLOG in OpenBSD; don't use it for anything else.
173 #define DLT_ATM_CLIP 19 /* Linux Classical-IP over ATM */
176 * These values are defined by NetBSD; other platforms should refrain from
177 * using them for other purposes, so that NetBSD savefiles with link
178 * types of 50 or 51 can be read as this type on all platforms.
180 #define DLT_PPP_SERIAL 50 /* PPP over serial with HDLC encapsulation */
181 #define DLT_PPP_ETHER 51 /* PPP over Ethernet */
184 * Values between 100 and 103 are used in capture file headers as
185 * link-layer types corresponding to DLT_ types that differ
186 * between platforms; don't use those values for new DLT_ new types.
190 * This value was defined by libpcap 0.5; platforms that have defined
191 * it with a different value should define it here with that value -
192 * a link type of 104 in a save file will be mapped to DLT_C_HDLC,
193 * whatever value that happens to be, so programs will correctly
194 * handle files with that link type regardless of the value of
197 * The name DLT_C_HDLC was used by BSD/OS; we use that name for source
198 * compatibility with programs written for BSD/OS.
200 * libpcap 0.5 defined it as DLT_CHDLC; we define DLT_CHDLC as well,
201 * for source compatibility with programs written for libpcap 0.5.
203 #define DLT_C_HDLC 104 /* Cisco HDLC */
204 #define DLT_CHDLC DLT_C_HDLC
206 #define DLT_IEEE802_11 105 /* IEEE 802.11 wireless */
209 * 106 is reserved for Linux Classical IP over ATM; it's like DLT_RAW,
210 * except when it isn't. (I.e., sometimes it's just raw IP, and
211 * sometimes it isn't.) We currently handle it as DLT_LINUX_SLL,
212 * so that we don't have to worry about the link-layer header.)
216 * Frame Relay; BSD/OS has a DLT_FR with a value of 11, but that collides
218 * DLT_FR and DLT_FRELAY packets start with the Q.922 Frame Relay header
221 #define DLT_FRELAY 107
224 * OpenBSD DLT_LOOP, for loopback devices; it's like DLT_NULL, except
225 * that the AF_ type in the link-layer header is in network byte order.
227 * OpenBSD defines it as 12, but that collides with DLT_RAW, so we
228 * define it as 108 here. If OpenBSD picks up this file, it should
229 * define DLT_LOOP as 12 in its version, as per the comment above -
230 * and should not use 108 as a DLT_ value.
235 * Encapsulated packets for IPsec; DLT_ENC is 13 in OpenBSD, but that's
236 * DLT_SLIP_BSDOS in NetBSD, so we don't use 13 for it in OSes other
246 * Values between 110 and 112 are reserved for use in capture file headers
247 * as link-layer types corresponding to DLT_ types that might differ
248 * between platforms; don't use those values for new DLT_ types
249 * other than the corresponding DLT_ types.
253 * This is for Linux cooked sockets.
255 #define DLT_LINUX_SLL 113
258 * Apple LocalTalk hardware.
260 #define DLT_LTALK 114
265 #define DLT_ECONET 115
268 * Reserved for use with OpenBSD ipfilter.
270 #define DLT_IPFILTER 116
273 * OpenBSD DLT_PFLOG; DLT_PFLOG is 17 in OpenBSD, but that's DLT_LANE8023
274 * in SuSE 6.3, so we can't use 17 for it in capture-file headers.
279 #define DLT_PFLOG 117
283 * Registered for Cisco-internal use.
285 #define DLT_CISCO_IOS 118
288 * For 802.11 cards using the Prism II chips, with a link-layer
289 * header including Prism monitor mode information plus an 802.11
292 #define DLT_PRISM_HEADER 119
295 * Reserved for Aironet 802.11 cards, with an Aironet link-layer header
296 * (see Doug Ambrisko's FreeBSD patches).
298 #define DLT_AIRONET_HEADER 120
301 * Reserved for Siemens HiPath HDLC.
303 #define DLT_HHDLC 121
306 * This is for RFC 2625 IP-over-Fibre Channel.
308 * This is not for use with raw Fibre Channel, where the link-layer
309 * header starts with a Fibre Channel frame header; it's for IP-over-FC,
310 * where the link-layer header starts with an RFC 2625 Network_Header
313 #define DLT_IP_OVER_FC 122
316 * This is for Full Frontal ATM on Solaris with SunATM, with a
317 * pseudo-header followed by an AALn PDU.
319 * There may be other forms of Full Frontal ATM on other OSes,
320 * with different pseudo-headers.
322 * If ATM software returns a pseudo-header with VPI/VCI information
323 * (and, ideally, packet type information, e.g. signalling, ILMI,
324 * LANE, LLC-multiplexed traffic, etc.), it should not use
325 * DLT_ATM_RFC1483, but should get a new DLT_ value, so tcpdump
326 * and the like don't have to infer the presence or absence of a
327 * pseudo-header and the form of the pseudo-header.
329 #define DLT_SUNATM 123 /* Solaris+SunATM */
332 * Reserved as per request from Kent Dahlgren <kent@praesum.com>
335 #define DLT_RIO 124 /* RapidIO */
336 #define DLT_PCI_EXP 125 /* PCI Express */
337 #define DLT_AURORA 126 /* Xilinx Aurora link layer */
340 * For future use with 802.11 captures - defined by AbsoluteValue
341 * Systems to store a number of bits of link-layer information:
343 * http://www.shaftnet.org/~pizza/software/capturefrm.txt
345 * but could and arguably should also be used by non-AVS Linux
346 * 802.11 drivers and BSD drivers; that may happen in the future.
348 #define DLT_IEEE802_11_RADIO 127 /* 802.11 plus WLAN header */
351 * Reserved for the TZSP encapsulation, as per request from
352 * Chris Waters <chris.waters@networkchemistry.com>
353 * TZSP is a generic encapsulation for any other link type,
354 * which includes a means to include meta-information
355 * with the packet, e.g. signal strength and channel
356 * for 802.11 packets.
358 #define DLT_TZSP 128 /* Tazmen Sniffer Protocol */
361 * BSD's ARCNET headers have the source host, destination host,
362 * and type at the beginning of the packet; that's what's handed
363 * up to userland via BPF.
365 * Linux's ARCNET headers, however, have a 2-byte offset field
366 * between the host IDs and the type; that's what's handed up
367 * to userland via PF_PACKET sockets.
369 * We therefore have to have separate DLT_ values for them.
371 #define DLT_ARCNET_LINUX 129 /* ARCNET */
374 * juniper-private data link types, as per request from
375 * Hannes Gredler <hannes@juniper.net> the DLT_s are used
376 * for passing on chassis-internal metainformation like
379 #define DLT_JUNIPER_MLPPP 130
380 #define DLT_JUNIPER_MLFR 131
381 #define DLT_JUNIPER_ES 132
382 #define DLT_JUNIPER_GGSN 133
383 #define DLT_JUNIPER_MFR 134
384 #define DLT_JUNIPER_ATM2 135
385 #define DLT_JUNIPER_SERVICES 136
386 #define DLT_JUNIPER_ATM1 137
389 * Reserved for Apple IP-over-IEEE 1394, as per a request from Dieter
390 * Siegmund <dieter@apple.com>. The header that would be presented
391 * would be an Ethernet-like header:
393 * #define FIREWIRE_EUI64_LEN 8
394 * struct firewire_header {
395 * u_char firewire_dhost[FIREWIRE_EUI64_LEN];
396 * u_char firewire_dhost[FIREWIRE_EUI64_LEN];
397 * u_short firewire_type;
400 * with "firewire_type" being an Ethernet type value, rather than,
401 * for example, raw GASP frames being handed up.
403 #define DLT_APPLE_IP_OVER_IEEE1394 138
406 * 139 through 142 are reserved for SS7.
412 #define DLT_DOCSIS 143
415 * Linux-IrDA packets. Protocol defined at http://www.irda.org.
416 * Those packets include IrLAP headers and above (IrLMP...), but
417 * don't include Phy framing (SOF/EOF/CRC & byte stuffing), because Phy
418 * framing can be handled by the hardware and depend on the bitrate.
419 * This is exactly the format you would get capturing on a Linux-IrDA
420 * interface (irdaX), but not on a raw serial port.
421 * Note the capture is done in "Linux-cooked" mode, so each packet include
422 * a fake packet header (struct sll_header). This is because IrDA packet
423 * decoding is dependant on the direction of the packet (incomming or
425 * When/if other platform implement IrDA capture, we may revisit the
426 * issue and define a real DLT_IRDA...
429 #define DLT_LINUX_IRDA 144
432 * Reserved for IBM SP switch and IBM Next Federation switch.
434 #define DLT_IBM_SP 145
435 #define DLT_IBM_SN 146
438 * Reserved for private use. If you have some link-layer header type
439 * that you want to use within your organization, with the capture files
440 * using that link-layer header type not ever be sent outside your
441 * organization, you can use these values.
443 * No libpcap release will use these for any purpose, nor will any
444 * tcpdump release use them, either.
446 * Do *NOT* use these in capture files that you expect anybody not using
447 * your private versions of capture-file-reading tools to read; in
448 * particular, do *NOT* use them in products, otherwise you may find that
449 * people won't be able to use tcpdump, or snort, or Ethereal, or... to
450 * read capture files from your firewall/intrusion detection/traffic
451 * monitoring/etc. appliance, or whatever product uses that DLT_ value,
452 * and you may also find that the developers of those applications will
453 * not accept patches to let them read those files.
455 * Instead, ask "tcpdump-workers@tcpdump.org" for a new DLT_ value,
456 * as per the comment above.
458 #define DLT_USER0 147
459 #define DLT_USER1 148
460 #define DLT_USER2 149
461 #define DLT_USER3 150
462 #define DLT_USER4 151
463 #define DLT_USER5 152
464 #define DLT_USER6 153
465 #define DLT_USER7 154
466 #define DLT_USER8 155
467 #define DLT_USER9 156
468 #define DLT_USER10 157
469 #define DLT_USER11 158
470 #define DLT_USER12 159
471 #define DLT_USER13 160
472 #define DLT_USER14 161
473 #define DLT_USER15 162
476 * The instruction encodings.
478 /* instruction classes */
479 #define BPF_CLASS(code) ((code) & 0x07)
487 #define BPF_MISC 0x07
490 #define BPF_SIZE(code) ((code) & 0x18)
494 #define BPF_MODE(code) ((code) & 0xe0)
503 #define BPF_OP(code) ((code) & 0xf0)
517 #define BPF_JSET 0x40
518 #define BPF_SRC(code) ((code) & 0x08)
522 /* ret - BPF_K and BPF_X also apply */
523 #define BPF_RVAL(code) ((code) & 0x18)
527 #define BPF_MISCOP(code) ((code) & 0xf8)
532 * The instruction data structure.
542 * Macros for insn array initializers.
544 #define BPF_STMT(code, k) { (u_short)(code), 0, 0, k }
545 #define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }
547 #if __STDC__ || defined(__cplusplus)
548 extern int bpf_validate(struct bpf_insn
*, int);
549 extern u_int
bpf_filter(struct bpf_insn
*, u_char
*, u_int
, u_int
);
551 extern int bpf_validate();
552 extern u_int
bpf_filter();
556 * Number of scratch memory words (for BPF_LD|BPF_MEM and BPF_ST).
558 #define BPF_MEMWORDS 16