freebsd-dev/share/man/man4/bpf.4

724 lines
20 KiB
Groff
Raw Normal View History

1995-01-25 08:46:06 +00:00
.\" Copyright (c) 1990 The Regents of the University of California.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that: (1) source code distributions
.\" retain the above copyright notice and this paragraph in its entirety, (2)
.\" distributions including binary code include the above copyright notice and
.\" this paragraph in its entirety in the documentation or other materials
.\" provided with the distribution, and (3) all advertising materials mentioning
.\" features or use of this software display the following acknowledgement:
.\" ``This product includes software developed by the University of California,
.\" Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
.\" the University nor the names of its contributors may be used to endorse
.\" or promote products derived from this software without specific prior
.\" written permission.
.\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
.\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
.\"
.\" This document is derived in part from the enet man page (enet.4)
.\" distributed with 4.3BSD Unix.
.\"
1997-02-22 13:26:29 +00:00
.\" $Id$
.\"
1996-01-16 20:01:05 +00:00
.Dd January 16, 1996
.Dt BPF 4
.Os BSD 4.4
.Sh NAME
.Nm bpf
.Nd Berkeley Packet Filter
.Sh SYNOPSIS
.Cd pseudo-device bpfilter
.Sh DESCRIPTION
1995-01-25 08:46:06 +00:00
The Berkeley Packet Filter
1996-01-16 20:01:05 +00:00
provides a raw interface to data link layers in a protocol
1995-01-25 08:46:06 +00:00
independent fashion.
All packets on the network, even those destined for other hosts,
are accessible through this mechanism.
1996-01-16 20:01:05 +00:00
.Pp
1995-01-25 08:46:06 +00:00
The packet filter appears as a character special device,
1996-01-16 20:01:05 +00:00
.Pa /dev/bpf0 ,
.Pa /dev/bpf1 ,
1995-01-25 08:46:06 +00:00
etc.
1996-01-16 20:01:05 +00:00
After opening the device, the file descriptor must be bound to a
specific network interface with the
1997-01-05 22:15:59 +00:00
.Dv BIOCSETIF
1996-01-16 20:01:05 +00:00
ioctl.
1995-01-25 08:46:06 +00:00
A given interface can be shared be multiple listeners, and the filter
underlying each descriptor will see an identical packet stream.
1996-01-16 20:01:05 +00:00
The total number of open
1995-01-25 08:46:06 +00:00
files is limited to the value given in the kernel configuration; the
1996-01-16 20:01:05 +00:00
example given in the
.Sx SYNOPSIS
above sets the limit to 16.
.Pp
A separate device file is required for each minor device.
If a file is in use, the open will fail and
.Va errno
will be set to
.Er EBUSY .
.Pp
1995-01-25 08:46:06 +00:00
Associated with each open instance of a
1996-01-16 20:01:05 +00:00
.Nm bpf
1995-01-25 08:46:06 +00:00
file is a user-settable packet filter.
1996-01-16 20:01:05 +00:00
Whenever a packet is received by an interface,
1995-01-25 08:46:06 +00:00
all file descriptors listening on that interface apply their filter.
1996-01-16 20:01:05 +00:00
Each descriptor that accepts the packet receives its own copy.
.Pp
1995-01-25 08:46:06 +00:00
Reads from these files return the next group of packets
1996-01-16 20:01:05 +00:00
that have matched the filter.
1995-01-25 08:46:06 +00:00
To improve performance, the buffer passed to read must be
1996-01-16 20:01:05 +00:00
the same size as the buffers used internally by
.Nm
This size is returned by the
.Dv BIOCGBLEN
ioctl (see below), and
can be set with
.Dv BIOCSBLEN.
1995-01-25 08:46:06 +00:00
Note that an individual packet larger than this size is necessarily
truncated.
1996-01-16 20:01:05 +00:00
.Pp
1995-01-25 08:46:06 +00:00
The packet filter will support any link level protocol that has fixed length
1996-01-16 20:01:05 +00:00
headers. Currently, only Ethernet,
.Tn SLIP ,
and
.Tn PPP
drivers have been modified to interact with
.Nm bpf .
.Pp
1995-01-25 08:46:06 +00:00
Since packet data is in network byte order, applications should use the
1996-01-16 20:01:05 +00:00
.Xr byteorder 3
1995-01-25 08:46:06 +00:00
macros to extract multi-byte values.
1996-01-16 20:01:05 +00:00
.Pp
A packet can be sent out on the network by writing to a
.Nm bpf
1995-01-25 08:46:06 +00:00
file descriptor. The writes are unbuffered, meaning only one
packet can be processed per write.
1996-01-16 20:01:05 +00:00
Currently, only writes to Ethernets and
.Tn SLIP
links are supported.
.Sh IOCTLS
The
.Xr ioctl 2
1995-01-25 08:46:06 +00:00
command codes below are defined in <net/bpf.h>. All commands require
these includes:
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
#include <sys/types.h>
#include <sys/time.h>
#include <sys/ioctl.h>
1996-01-16 20:01:05 +00:00
#include <net/bpf.h>
.Ed
.Pp
Additionally,
.Dv BIOCGETIF
and
.Dv BIOCSETIF
require
.Aq Pa sys/socket.h
and
1996-01-16 20:01:05 +00:00
.Aq Pa net/if.h .
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
In addition to
.Dv FIONREAD
and
.Dv SIOCGIFADDR ,
the following commands may be applied to any open
.Nm
1995-01-25 08:46:06 +00:00
file.
1996-01-16 20:01:05 +00:00
The (third) argument to
.Xr ioctl 2
1995-01-25 08:46:06 +00:00
should be a pointer to the type indicated.
1996-01-16 20:01:05 +00:00
.Bl -tag -width BIOCGRTIMEOUT
.It Dv BIOCGBLEN
.Pq Li u_int
1995-01-25 08:46:06 +00:00
Returns the required buffer length for reads on
1996-01-16 20:01:05 +00:00
.Nm
1995-01-25 08:46:06 +00:00
files.
1996-01-16 20:01:05 +00:00
.It Dv BIOCSBLEN
.Pq Li u_int
Sets the buffer length for reads on
.Nm
1995-01-25 08:46:06 +00:00
files. The buffer must be set before the file is attached to an interface
1996-01-16 20:01:05 +00:00
with
.Dv BIOCSETIF .
If the requested buffer size cannot be accommodated, the closest
1995-01-25 08:46:06 +00:00
allowable size will be set and returned in the argument.
1996-01-16 20:01:05 +00:00
A read call will result in
.Er EIO
if it is passed a buffer that is not this size.
.It Dv BIOCGDLT
.Pq Li u_int
Returns the type of the data link layer underlying the attached interface.
1996-01-16 20:01:05 +00:00
.Er EINVAL
is returned if no interface has been specified.
The device types, prefixed with
.Dq Li DLT_ ,
are defined in
.Aq Pa net/bpf.h .
.It Dv BIOCPROMISC
1995-01-25 08:46:06 +00:00
Forces the interface into promiscuous mode.
All packets, not just those destined for the local host, are processed.
Since more than one file can be listening on a given interface,
a listener that opened its interface non-promiscuously may receive
1996-01-16 20:01:05 +00:00
packets promiscuously. This problem can be remedied with an
appropriate filter.
.It Dv BIOCFLUSH
1995-01-25 08:46:06 +00:00
Flushes the buffer of incoming packets,
and resets the statistics that are returned by BIOCGSTATS.
1996-01-16 20:01:05 +00:00
.It Dv BIOCGETIF
.Pq Li "struct ifreq"
1995-01-25 08:46:06 +00:00
Returns the name of the hardware interface that the file is listening on.
1996-01-16 20:01:05 +00:00
The name is returned in the if_name field of
the
.Li ifreq
structure.
1995-01-25 08:46:06 +00:00
All other fields are undefined.
1996-01-16 20:01:05 +00:00
.It Dv BIOCSETIF
.Pq Li "struct ifreq"
1995-01-25 08:46:06 +00:00
Sets the hardware interface associate with the file. This
command must be performed before any packets can be read.
The device is indicated by name using the
1996-01-16 20:01:05 +00:00
.Li if_name
field of the
.Li ifreq
structure.
Additionally, performs the actions of
.Dv BIOCFLUSH .
.It Dv BIOCSRTIMEOUT
.It Dv BIOCGRTIMEOUT
.Pq Li "struct timeval"
1995-01-25 08:46:06 +00:00
Set or get the read timeout parameter.
1996-01-16 20:01:05 +00:00
The argument
1995-01-25 08:46:06 +00:00
specifies the length of time to wait before timing
out on a read request.
This parameter is initialized to zero by
1996-01-16 20:01:05 +00:00
.Xr open 2 ,
1995-01-25 08:46:06 +00:00
indicating no timeout.
1996-01-16 20:01:05 +00:00
.It Dv BIOCGSTATS
.Pq Li "struct bpf_stat"
1995-01-25 08:46:06 +00:00
Returns the following structure of packet statistics:
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_stat {
u_int bs_recv; /* number of packets received */
u_int bs_drop; /* number of packets dropped */
1995-01-25 08:46:06 +00:00
};
1996-01-16 20:01:05 +00:00
.Ed
.Pp
1995-01-25 08:46:06 +00:00
The fields are:
1996-01-16 20:01:05 +00:00
.Bl -hang -offset indent
.It Li bs_recv
1995-01-25 08:46:06 +00:00
the number of packets received by the descriptor since opened or reset
(including any buffered since the last read call);
1996-01-16 20:01:05 +00:00
and
.It Li bs_drop
the number of packets which were accepted by the filter but dropped by the
1995-01-25 08:46:06 +00:00
kernel because of buffer overflows
(i.e., the application's reads aren't keeping up with the packet traffic).
1996-01-16 20:01:05 +00:00
.El
.It Dv BIOCIMMEDIATE
.Pq Li u_int
1995-01-25 08:46:06 +00:00
Enable or disable ``immediate mode'', based on the truth value of the argument.
1996-01-16 20:01:05 +00:00
When immediate mode is enabled, reads return immediately upon packet
1995-01-25 08:46:06 +00:00
reception. Otherwise, a read will block until either the kernel buffer
becomes full or a timeout occurs.
This is useful for programs like
1996-01-16 20:01:05 +00:00
.Xr rarpd 8
1995-01-25 08:46:06 +00:00
which must respond to messages in real time.
1996-01-16 20:01:05 +00:00
The default for a new file is off.
.It Dv BIOCSETF
.Pq Li "struct bpf_program"
Sets the filter program used by the kernel to discard uninteresting
1995-01-25 08:46:06 +00:00
packets. An array of instructions and its length is passed in using
the following structure:
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_program {
int bf_len;
1996-01-16 20:01:05 +00:00
struct bpf_insn *bf_insns;
1995-01-25 08:46:06 +00:00
};
1996-01-16 20:01:05 +00:00
.Ed
1995-01-25 08:46:06 +00:00
The filter program is pointed to by the
1996-01-16 20:01:05 +00:00
.Li bf_insns
field while its length in units of
.Sq Li struct bpf_insn
is given by the
.Li bf_len
1995-01-25 08:46:06 +00:00
field.
1996-01-16 20:01:05 +00:00
Also, the actions of
.Dv BIOCFLUSH are performed.
See section
.Sx "FILTER MACHINE"
for an explanation of the filter language.
.It Dv BIOCVERSION
.Pq Li "struct bpf_version"
Returns the major and minor version numbers of the filter language currently
1995-01-25 08:46:06 +00:00
recognized by the kernel. Before installing a filter, applications must check
that the current version is compatible with the running kernel. Version
numbers are compatible if the major numbers match and the application minor
is less than or equal to the kernel minor. The kernel version number is
returned in the following structure:
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_version {
1996-01-16 20:01:05 +00:00
u_short bv_major;
u_short bv_minor;
1995-01-25 08:46:06 +00:00
};
1996-01-16 20:01:05 +00:00
.Ed
.Pp
1996-01-16 20:01:05 +00:00
The current version numbers are given by
.Dv BPF_MAJOR_VERSION
and
.Dv BPF_MINOR_VERSION
from
.Aq Pa net/bpf.h .
1995-01-25 08:46:06 +00:00
An incompatible filter
may result in undefined behavior (most likely, an error returned by
1996-01-16 20:01:05 +00:00
.Fn ioctl
1995-01-25 08:46:06 +00:00
or haphazard packet matching).
1996-01-16 20:01:05 +00:00
.Sh BPF HEADER
The following structure is prepended to each packet returned by
.Xr read 2 :
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_hdr {
struct timeval bh_tstamp; /* time stamp */
u_long bh_caplen; /* length of captured portion */
u_long bh_datalen; /* original length of packet */
u_short bh_hdrlen; /* length of bpf header (this struct
plus alignment padding */
1995-01-25 08:46:06 +00:00
};
1996-01-16 20:01:05 +00:00
.Ed
.Pp
1995-01-25 08:46:06 +00:00
The fields, whose values are stored in host order, and are:
1996-01-16 20:01:05 +00:00
.Pp
.Bl -tag -compact -width bh_datalen
.It Li bh_tstamp
1995-01-25 08:46:06 +00:00
The time at which the packet was processed by the packet filter.
1996-01-16 20:01:05 +00:00
.It Li bh_caplen
1995-01-25 08:46:06 +00:00
The length of the captured portion of the packet. This is the minimum of
the truncation amount specified by the filter and the length of the packet.
1996-01-16 20:01:05 +00:00
.It Li bh_datalen
1995-01-25 08:46:06 +00:00
The length of the packet off the wire.
This value is independent of the truncation amount specified by the filter.
1996-01-16 20:01:05 +00:00
.It Li bh_hdrlen
The length of the
.Nm
header, which may not be equal to
.\" XXX - not really a function call
.Fn sizeof "struct bpf_hdr" .
.El
.Pp
1995-01-25 08:46:06 +00:00
The
1996-01-16 20:01:05 +00:00
.Li bh_hdrlen
1995-01-25 08:46:06 +00:00
field exists to account for
padding between the header and the link level protocol.
The purpose here is to guarantee proper alignment of the packet
data structures, which is required on alignment sensitive
architectures and improves performance on many other architectures.
1995-01-25 08:46:06 +00:00
The packet filter insures that the
1996-01-16 20:01:05 +00:00
.Li bpf_hdr
and the network layer
header will be word aligned. Suitable precautions
1995-01-25 08:46:06 +00:00
must be taken when accessing the link layer protocol fields on alignment
restricted machines. (This isn't a problem on an Ethernet, since
the type field is a short falling on an even offset,
and the addresses are probably accessed in a bytewise fashion).
1996-01-16 20:01:05 +00:00
.Pp
1995-01-25 08:46:06 +00:00
Additionally, individual packets are padded so that each starts
on a word boundary. This requires that an application
has some knowledge of how to get from packet to packet.
1996-01-16 20:01:05 +00:00
The macro
.Dv BPF_WORDALIGN
is defined in
.Aq Pa net/bpf.h
to facilitate
1995-01-25 08:46:06 +00:00
this process. It rounds up its argument
1996-01-16 20:01:05 +00:00
to the nearest word aligned value (where a word is
.Dv BPF_ALIGNMENT
bytes wide).
.Pp
For example, if
.Sq Li p
points to the start of a packet, this expression
1995-01-25 08:46:06 +00:00
will advance it to the next packet:
1996-01-16 20:01:05 +00:00
.Dl p = (char *)p + BPF_WORDALIGN(p->bh_hdrlen + p->bh_caplen)
.Pp
1995-01-25 08:46:06 +00:00
For the alignment mechanisms to work properly, the
buffer passed to
1996-01-16 20:01:05 +00:00
.Xr read 2
1995-01-25 08:46:06 +00:00
must itself be word aligned.
1996-01-16 20:01:05 +00:00
The
.Xr malloc 3
function
1995-01-25 08:46:06 +00:00
will always return an aligned buffer.
1996-01-16 20:01:05 +00:00
.Sh FILTER MACHINE
1995-01-25 08:46:06 +00:00
A filter program is an array of instructions, with all branches forwardly
1996-01-16 20:01:05 +00:00
directed, terminated by a
.Em return
instruction.
1995-01-25 08:46:06 +00:00
Each instruction performs some action on the pseudo-machine state,
which consists of an accumulator, index register, scratch memory store,
and implicit program counter.
The following structure defines the instruction format:
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_insn {
u_short code;
u_char jt;
u_char jf;
u_long k;
1995-01-25 08:46:06 +00:00
};
1996-01-16 20:01:05 +00:00
.Ed
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
The
.Li k
field is used in different ways by different instructions,
1996-01-16 20:01:05 +00:00
and the
.Li jt
and
.Li jf
fields are used as offsets
by the branch instructions.
1995-01-25 08:46:06 +00:00
The opcodes are encoded in a semi-hierarchical fashion.
There are eight classes of instructions:
1996-01-16 20:01:05 +00:00
.Dv BPF_LD ,
.Dv BPF_LDX ,
.Dv BPF_ST ,
.Dv BPF_STX ,
.Dv BPF_ALU ,
.Dv BPF_JMP ,
.Dv BPF_RET ,
and
.Dv BPF_MISC .
Various other mode and
1995-01-25 08:46:06 +00:00
operator bits are or'd into the class to give the actual instructions.
1996-01-16 20:01:05 +00:00
The classes and modes are defined in
.Aq Pa net/bpf.h .
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
Below are the semantics for each defined
.Nm
instruction.
1995-01-25 08:46:06 +00:00
We use the convention that A is the accumulator, X is the index register,
P[] packet data, and M[] scratch memory store.
P[i:n] gives the data at byte offset ``i'' in the packet,
interpreted as a word (n=4),
unsigned halfword (n=2), or unsigned byte (n=1).
M[i] gives the i'th word in the scratch memory store, which is only
1996-01-16 20:01:05 +00:00
addressed in word units. The memory store is indexed from 0 to
.Dv BPF_MEMWORDS
- 1.
.Li k ,
.Li jt ,
and
.Li jf
are the corresponding fields in the
1995-01-25 08:46:06 +00:00
instruction definition. ``len'' refers to the length of the packet.
1996-01-16 20:01:05 +00:00
.Pp
.Bl -tag -width BPF_STXx -compact
.It Dv BPF_LD
1995-01-25 08:46:06 +00:00
These instructions copy a value into the accumulator. The type of the
source operand is specified by an ``addressing mode'' and can be
1996-01-16 20:01:05 +00:00
a constant
.Pq Dv BPF_IMM ,
packet data at a fixed offset
.Pq Dv BPF_ABS ,
packet data at a variable offset
.Pq Dv BPF_IND ,
the packet length
.Pq Dv BPF_LEN ,
or a word in the scratch memory store
.Pq Dv BPF_MEM .
For
.Dv BPF_IND
and
.Dv BPF_ABS,
the data size must be specified as a word
.Pq Dv BPF_W ,
halfword
.Pq Dv BPF_H ,
or byte
.Pq Dv BPF_B .
The semantics of all the recognized
.Dv BPF_LD
instructions follow.
.Pp
.Bl -tag -width "BPF_LD+BPF_W+BPF_IND" -compact
.It Li BPF_LD+BPF_W+BPF_ABS
1995-01-25 08:46:06 +00:00
A <- P[k:4]
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_H+BPF_ABS
1995-01-25 08:46:06 +00:00
A <- P[k:2]
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_B+BPF_ABS
1995-01-25 08:46:06 +00:00
A <- P[k:1]
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_W+BPF_IND
1995-01-25 08:46:06 +00:00
A <- P[X+k:4]
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_H+BPF_IND
1995-01-25 08:46:06 +00:00
A <- P[X+k:2]
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_B+BPF_IND
1995-01-25 08:46:06 +00:00
A <- P[X+k:1]
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_W+BPF_LEN
1995-01-25 08:46:06 +00:00
A <- len
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_IMM
1995-01-25 08:46:06 +00:00
A <- k
1996-01-16 20:01:05 +00:00
.It Li BPF_LD+BPF_MEM
1995-01-25 08:46:06 +00:00
A <- M[k]
1996-01-16 20:01:05 +00:00
.El
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
.It Dv BPF_LDX
1995-01-25 08:46:06 +00:00
These instructions load a value into the index register. Note that
the addressing modes are more restrictive than those of the accumulator loads,
1995-01-25 08:46:06 +00:00
but they include
1996-01-16 20:01:05 +00:00
.Dv BPF_MSH ,
1995-01-25 08:46:06 +00:00
a hack for efficiently loading the IP header length.
1996-01-16 20:01:05 +00:00
.Bl -tag -width "BPF_LDX+BPF_W+BPF_MEM" -compact
.It Li BPF_LDX+BPF_W+BPF_IMM
1995-01-25 08:46:06 +00:00
X <- k
1996-01-16 20:01:05 +00:00
.It Li BPF_LDX+BPF_W+BPF_MEM
1995-01-25 08:46:06 +00:00
X <- M[k]
1996-01-16 20:01:05 +00:00
.It Li BPF_LDX+BPF_W+BPF_LEN
1995-01-25 08:46:06 +00:00
X <- len
1996-01-16 20:01:05 +00:00
.It Li BPF_LDX+BPF_B+BPF_MSH
1995-01-25 08:46:06 +00:00
X <- 4*(P[k:1]&0xf)
1996-01-16 20:01:05 +00:00
.El
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
.It Dv BPF_ST
1995-01-25 08:46:06 +00:00
This instruction stores the accumulator into the scratch memory.
We do not need an addressing mode since there is only one possibility
for the destination.
1996-01-16 20:01:05 +00:00
.Bl -tag -width "BPF_ST" -compact
.It Li BPF_ST
1995-01-25 08:46:06 +00:00
M[k] <- A
1996-01-16 20:01:05 +00:00
.El
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
.It Dv BPF_STX
1995-01-25 08:46:06 +00:00
This instruction stores the index register in the scratch memory store.
1996-01-16 20:01:05 +00:00
.Bl -tag -width "BPF_STX" -compact
.It Li BPF_STX
1995-01-25 08:46:06 +00:00
M[k] <- X
1996-01-16 20:01:05 +00:00
.El
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
.It Dv BPF_ALU
1995-01-25 08:46:06 +00:00
The alu instructions perform operations between the accumulator and
index register or constant, and store the result back in the accumulator.
1996-01-16 20:01:05 +00:00
For binary operations, a source mode is required
.Po
.Dv BPF_K
or
.Dv BPF_X
.Pc .
.Bl -tag -width "BPF_ALU+BPF_MUL+BPF_K" -compact
.It Li BPF_ALU+BPF_ADD+BPF_K
1995-01-25 08:46:06 +00:00
A <- A + k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_SUB+BPF_K
1995-01-25 08:46:06 +00:00
A <- A - k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_MUL+BPF_K
1995-01-25 08:46:06 +00:00
A <- A * k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_DIV+BPF_K
1995-01-25 08:46:06 +00:00
A <- A / k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_AND+BPF_K
1995-01-25 08:46:06 +00:00
A <- A & k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_OR+BPF_K
1995-01-25 08:46:06 +00:00
A <- A | k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_LSH+BPF_K
1995-01-25 08:46:06 +00:00
A <- A << k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_RSH+BPF_K
1995-01-25 08:46:06 +00:00
A <- A >> k
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_ADD+BPF_X
1995-01-25 08:46:06 +00:00
A <- A + X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_SUB+BPF_X
1995-01-25 08:46:06 +00:00
A <- A - X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_MUL+BPF_X
1995-01-25 08:46:06 +00:00
A <- A * X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_DIV+BPF_X
1995-01-25 08:46:06 +00:00
A <- A / X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_AND+BPF_X
1995-01-25 08:46:06 +00:00
A <- A & X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_OR+BPF_X
1995-01-25 08:46:06 +00:00
A <- A | X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_LSH+BPF_X
1995-01-25 08:46:06 +00:00
A <- A << X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_RSH+BPF_X
1995-01-25 08:46:06 +00:00
A <- A >> X
1996-01-16 20:01:05 +00:00
.It Li BPF_ALU+BPF_NEG
1995-01-25 08:46:06 +00:00
A <- -A
1996-01-16 20:01:05 +00:00
.El
1995-01-25 08:46:06 +00:00
1996-01-16 20:01:05 +00:00
.It Dv BPF_JMP
1995-01-25 08:46:06 +00:00
The jump instructions alter flow of control. Conditional jumps
1996-01-16 20:01:05 +00:00
compare the accumulator against a constant
.Pq Dv BPF_K
or the index register
.Pq Dv BPF_X .
If the result is true (or non-zero),
1995-01-25 08:46:06 +00:00
the true branch is taken, otherwise the false branch is taken.
Jump offsets are encoded in 8 bits so the longest jump is 256 instructions.
1996-01-16 20:01:05 +00:00
However, the jump always
.Pq Dv BPF_JA
opcode uses the 32 bit
.Li k
1995-01-25 08:46:06 +00:00
field as the offset, allowing arbitrarily distant destinations.
All conditionals use unsigned comparison conventions.
1996-01-16 20:01:05 +00:00
.Bl -tag -width "BPF_JMP+BPF_KSET+BPF_X" -compact
.It Li BPF_JMP+BPF_JA
1995-01-25 08:46:06 +00:00
pc += k
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JGT+BPF_K
1995-01-25 08:46:06 +00:00
pc += (A > k) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JGE+BPF_K
1995-01-25 08:46:06 +00:00
pc += (A >= k) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JEQ+BPF_K
1995-01-25 08:46:06 +00:00
pc += (A == k) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JSET+BPF_K
1995-01-25 08:46:06 +00:00
pc += (A & k) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JGT+BPF_X
1995-01-25 08:46:06 +00:00
pc += (A > X) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JGE+BPF_X
1995-01-25 08:46:06 +00:00
pc += (A >= X) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JEQ+BPF_X
1995-01-25 08:46:06 +00:00
pc += (A == X) ? jt : jf
1996-01-16 20:01:05 +00:00
.It Li BPF_JMP+BPF_JSET+BPF_X
1995-01-25 08:46:06 +00:00
pc += (A & X) ? jt : jf
1996-01-16 20:01:05 +00:00
.El
.It Dv BPF_RET
1995-01-25 08:46:06 +00:00
The return instructions terminate the filter program and specify the amount
of packet to accept (i.e., they return the truncation amount). A return
value of zero indicates that the packet should be ignored.
1996-01-16 20:01:05 +00:00
The return value is either a constant
.Pq Dv BPF_K
or the accumulator
.Pq Dv BPF_A .
.Bl -tag -width "BPF_RET+BPF_K" -compact
.It Li BPF_RET+BPF_A
1995-01-25 08:46:06 +00:00
accept A bytes
1996-01-16 20:01:05 +00:00
.It Li BPF_RET+BPF_K
1995-01-25 08:46:06 +00:00
accept k bytes
1996-01-16 20:01:05 +00:00
.El
.It Dv BPF_MISC
1995-01-25 08:46:06 +00:00
The miscellaneous category was created for anything that doesn't
fit into the above classes, and for any new instructions that might need to
be added. Currently, these are the register transfer instructions
1995-01-25 08:46:06 +00:00
that copy the index register to the accumulator or vice versa.
1996-01-16 20:01:05 +00:00
.Bl -tag -width "BPF_MISC+BPF_TAX" -compact
.It Li BPF_MISC+BPF_TAX
1995-01-25 08:46:06 +00:00
X <- A
1996-01-16 20:01:05 +00:00
.It Li BPF_MISC+BPF_TXA
1995-01-25 08:46:06 +00:00
A <- X
1996-01-16 20:01:05 +00:00
.El
.Pp
The
.Nm
interface provides the following macros to facilitate
1995-01-25 08:46:06 +00:00
array initializers:
1996-01-16 20:01:05 +00:00
.Fn BPF_STMT opcode operand
1995-01-25 08:46:06 +00:00
and
1996-01-16 20:01:05 +00:00
.Fn BPF_JUMP opcode operand true_offset false_offset .
.Pp
.Sh EXAMPLES
1995-01-25 08:46:06 +00:00
The following filter is taken from the Reverse ARP Daemon. It accepts
only Reverse ARP requests.
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_insn insns[] = {
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 12),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, ETHERTYPE_REVARP, 0, 3),
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 20),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, REVARP_REQUEST, 0, 1),
BPF_STMT(BPF_RET+BPF_K, sizeof(struct ether_arp) +
sizeof(struct ether_header)),
BPF_STMT(BPF_RET+BPF_K, 0),
};
1996-01-16 20:01:05 +00:00
.Ed
.Pp
1995-01-25 08:46:06 +00:00
This filter accepts only IP packets between host 128.3.112.15 and
128.3.112.35.
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_insn insns[] = {
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 12),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, ETHERTYPE_IP, 0, 8),
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 26),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, 0x8003700f, 0, 2),
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 30),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, 0x80037023, 3, 4),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, 0x80037023, 0, 3),
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 30),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, 0x8003700f, 0, 1),
BPF_STMT(BPF_RET+BPF_K, (u_int)-1),
BPF_STMT(BPF_RET+BPF_K, 0),
};
1996-01-16 20:01:05 +00:00
.Ed
.Pp
1995-01-25 08:46:06 +00:00
Finally, this filter returns only TCP finger packets. We must parse
1996-01-16 20:01:05 +00:00
the IP header to reach the TCP header. The
.Dv BPF_JSET
instruction
1995-01-25 08:46:06 +00:00
checks that the IP fragment offset is 0 so we are sure
that we have a TCP header.
1996-01-16 20:01:05 +00:00
.Bd -literal
1995-01-25 08:46:06 +00:00
struct bpf_insn insns[] = {
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 12),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, ETHERTYPE_IP, 0, 10),
BPF_STMT(BPF_LD+BPF_B+BPF_ABS, 23),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, IPPROTO_TCP, 0, 8),
BPF_STMT(BPF_LD+BPF_H+BPF_ABS, 20),
BPF_JUMP(BPF_JMP+BPF_JSET+BPF_K, 0x1fff, 6, 0),
BPF_STMT(BPF_LDX+BPF_B+BPF_MSH, 14),
BPF_STMT(BPF_LD+BPF_H+BPF_IND, 14),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, 79, 2, 0),
BPF_STMT(BPF_LD+BPF_H+BPF_IND, 16),
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, 79, 0, 1),
BPF_STMT(BPF_RET+BPF_K, (u_int)-1),
BPF_STMT(BPF_RET+BPF_K, 0),
};
1996-01-16 20:01:05 +00:00
.Ed
.Sh SEE ALSO
.Xr tcpdump 1 ,
.Xr ioctl 2
.Rs
.%A McCanne, S.
.%A Jacobson V.
.%T "An efficient, extensible, and portable network monitor"
.Re
.Sh FILES
.Bl -tag -compact -width /dev/bpfXXX
.It Pa /dev/bpf Ns Sy n
the packet filter device
.El
.Sh BUGS
The read buffer must be of a fixed size (returned by the
.Dv BIOCGBLEN
ioctl).
.Pp
1995-01-25 08:46:06 +00:00
A file that does not request promiscuous mode may receive promiscuously
received packets as a side effect of another file requesting this
mode on the same hardware interface. This could be fixed in the kernel
with additional processing overhead. However, we favor the model where
all files must assume that the interface is promiscuous, and if
so desired, must utilize a filter to reject foreign packets.
1996-01-16 20:01:05 +00:00
.Pp
1995-01-25 08:46:06 +00:00
Data link protocols with variable length headers are not currently supported.
1996-01-16 20:01:05 +00:00
.Sh HISTORY
.Pp
1995-01-25 08:46:06 +00:00
The Enet packet filter was created in 1980 by Mike Accetta and
Rick Rashid at Carnegie-Mellon University. Jeffrey Mogul, at
Stanford, ported the code to BSD and continued its development from
1983 on. Since then, it has evolved into the Ultrix Packet Filter
1996-01-16 20:01:05 +00:00
at
.Tn DEC ,
a
.Tn STREAMS
.Tn NIT
module under
.Tn SunOS 4.1 ,
and
.Tn BPF .
.Sh AUTHORS
.Pp
1995-01-25 08:46:06 +00:00
Steven McCanne, of Lawrence Berkeley Laboratory, implemented BPF in
Summer 1990. Much of the design is due to Van Jacobson.