xref: /freebsd/share/man/man9/pfil.9 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
189a68827SSam Leffler.\"	$NetBSD: pfil.9,v 1.22 2003/07/01 13:04:06 wiz Exp $
289a68827SSam Leffler.\"
3b252313fSGleb Smirnoff.\" Copyright (c) 2019 Gleb Smirnoff <glebius@FreeBSD.org>
4e9c7bebfSDarren Reed.\" Copyright (c) 1996 Matthew R. Green
5e9c7bebfSDarren Reed.\" All rights reserved.
6e9c7bebfSDarren Reed.\"
7e9c7bebfSDarren Reed.\" Redistribution and use in source and binary forms, with or without
8e9c7bebfSDarren Reed.\" modification, are permitted provided that the following conditions
9e9c7bebfSDarren Reed.\" are met:
10e9c7bebfSDarren Reed.\" 1. Redistributions of source code must retain the above copyright
11e9c7bebfSDarren Reed.\"    notice, this list of conditions and the following disclaimer.
12e9c7bebfSDarren Reed.\" 2. Redistributions in binary form must reproduce the above copyright
13e9c7bebfSDarren Reed.\"    notice, this list of conditions and the following disclaimer in the
14e9c7bebfSDarren Reed.\"    documentation and/or other materials provided with the distribution.
15e9c7bebfSDarren Reed.\" 3. The name of the author may not be used to endorse or promote products
16e9c7bebfSDarren Reed.\"    derived from this software without specific prior written permission.
17e9c7bebfSDarren Reed.\"
18e9c7bebfSDarren Reed.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19e9c7bebfSDarren Reed.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20e9c7bebfSDarren Reed.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21e9c7bebfSDarren Reed.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22e9c7bebfSDarren Reed.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23e9c7bebfSDarren Reed.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24e9c7bebfSDarren Reed.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25e9c7bebfSDarren Reed.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26e9c7bebfSDarren Reed.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27e9c7bebfSDarren Reed.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28e9c7bebfSDarren Reed.\" SUCH DAMAGE.
29e9c7bebfSDarren Reed.\"
30b252313fSGleb Smirnoff.Dd January 28, 2019
31e9c7bebfSDarren Reed.Dt PFIL 9
32e9c7bebfSDarren Reed.Os
33e9c7bebfSDarren Reed.Sh NAME
34e9c7bebfSDarren Reed.Nm pfil ,
3589a68827SSam Leffler.Nm pfil_head_register ,
3689a68827SSam Leffler.Nm pfil_head_unregister ,
37b252313fSGleb Smirnoff.Nm pfil_link ,
38b252313fSGleb Smirnoff.Nm pfil_run_hooks
39e9c7bebfSDarren Reed.Nd packet filter interface
40e9c7bebfSDarren Reed.Sh SYNOPSIS
4132eef9aeSRuslan Ermilov.In sys/param.h
4232eef9aeSRuslan Ermilov.In sys/mbuf.h
4332eef9aeSRuslan Ermilov.In net/pfil.h
44b252313fSGleb Smirnoff.Ft pfil_head_t
45b252313fSGleb Smirnoff.Fn pfil_head_register "struct pfil_head_args *args"
464dab1a18SAlexander V. Chernikov.Ft void
47b252313fSGleb Smirnoff.Fn pfil_head_unregister "struct pfil_head_t *head"
48b252313fSGleb Smirnoff.Ft pfil_hook_t
49b252313fSGleb Smirnoff.Fn pfil_add_hook "struct pfil_hook_args *"
504dab1a18SAlexander V. Chernikov.Ft void
51b252313fSGleb Smirnoff.Fn pfil_remove_hook "pfil_hook_t"
52b252313fSGleb Smirnoff.Ft int
53b252313fSGleb Smirnoff.Fn pfil_link "struct pfil_link_args *args"
54b252313fSGleb Smirnoff.Ft int
55b252313fSGleb Smirnoff.Fn pfil_run_hooks "phil_head_t *" "pfil_packet_t" "struct ifnet *" "int" "struct inpcb *"
56e9c7bebfSDarren Reed.Sh DESCRIPTION
57e9c7bebfSDarren ReedThe
58e9c7bebfSDarren Reed.Nm
59b252313fSGleb Smirnoffframework allows for a specified function or a list of functions
60b252313fSGleb Smirnoffto be invoked for every incoming or outgoing packet for a particular
61b252313fSGleb Smirnoffnetwork I/O stream.
6289a68827SSam LefflerThese hooks may be used to implement a firewall or perform packet
6389a68827SSam Lefflertransformations.
64e9c7bebfSDarren Reed.Pp
65b252313fSGleb SmirnoffPacket filtering points, for historical reasons named
66b252313fSGleb Smirnoff.Em heads ,
67b252313fSGleb Smirnoffare registered with
6889a68827SSam Leffler.Fn pfil_head_register .
69b252313fSGleb SmirnoffThe function is supplied with special versioned
70b252313fSGleb Smirnoff.Vt struct pfil_head_args
71b252313fSGleb Smirnoffstructure that specifies type and features of the head as well as
72b252313fSGleb Smirnoffhuman readable name.
73b252313fSGleb SmirnoffIf the filtering point to be ever destroyed, the subsystem that
74b252313fSGleb Smirnoffcreated it must unregister it with call to
75b252313fSGleb Smirnoff.Fn pfil_head_unregister .
7689a68827SSam Leffler.Pp
77b252313fSGleb SmirnoffPacket filtering systems may register arbitrary number of filters,
78b252313fSGleb Smirnofffor historical reasons named
79b252313fSGleb Smirnoff.Em hooks .
80b252313fSGleb SmirnoffTo register a new hook
8189a68827SSam Leffler.Fn pfil_add_hook
82b252313fSGleb Smirnoffwith special versioned
83b252313fSGleb Smirnoff.Vt struct pfil_hook_args
84b252313fSGleb Smirnoffstructure is called.
85b252313fSGleb SmirnoffThe structure specifies type and features of the hook, pointer to
86b252313fSGleb Smirnoffthe actual filtering function and user readable name of the filtering
87b252313fSGleb Smirnoffmodule and ruleset name.
88b252313fSGleb SmirnoffLater hooks can be removed with
8989a68827SSam Leffler.Fn pfil_remove_hook
904dab1a18SAlexander V. Chernikovfunctions.
9154202ab3SAlexander V. Chernikov.Pp
92b252313fSGleb SmirnoffTo connect existing
93b252313fSGleb Smirnoff.Em hook
94b252313fSGleb Smirnoffto an existing
95b252313fSGleb Smirnoff.Em head
96b252313fSGleb Smirnofffunction
97b252313fSGleb Smirnoff.Fn pfil_link
98b252313fSGleb Smirnoffshall be used.
99b252313fSGleb SmirnoffThe function is supplied with versioned
100b252313fSGleb Smirnoff.Vt struct pfil_link_args
101b252313fSGleb Smirnoffstructure that specifies either literal names of hook and head or
102b252313fSGleb Smirnoffpointers to them.
103b252313fSGleb SmirnoffTypically
104b252313fSGleb Smirnoff.Fn pfil_link
105b252313fSGleb Smirnoffis called by filtering modules to autoregister their default ruleset
106b252313fSGleb Smirnoffand default filtering points.
107b252313fSGleb SmirnoffIt also serves on the kernel side of
108b252313fSGleb Smirnoff.Xr ioctl 2
109b252313fSGleb Smirnoffwhen user changes
110b252313fSGleb Smirnoff.Nm
111b252313fSGleb Smirnoffconfiguration with help of
112b252313fSGleb Smirnoff.Xr pfilctl 8
113b252313fSGleb Smirnoffutility.
114b252313fSGleb Smirnoff.Pp
115b252313fSGleb SmirnoffFor every packet traveling through a
116b252313fSGleb Smirnoff.Em head
117b252313fSGleb Smirnoffthe latter shall invoke
118b252313fSGleb Smirnoff.Fn pfil_run_hooks .
119b252313fSGleb SmirnoffThe function can accept either
120b252313fSGleb Smirnoff.Vt struct mbuf *
121b252313fSGleb Smirnoffpointer or a
122b252313fSGleb Smirnoff.Vt void *
123b252313fSGleb Smirnoffpointer and length.
124b252313fSGleb SmirnoffIn case if a hooked filtering module cannot understand
125b252313fSGleb Smirnoff.Vt void *
126b252313fSGleb Smirnoffpointer
127b252313fSGleb Smirnoff.Nm
128b252313fSGleb Smirnoffwill provide it with a fake one.
129b252313fSGleb SmirnoffAll calls to
130b252313fSGleb Smirnoff.Fn pfil_run_hooks
131b252313fSGleb Smirnoffare performed in network
132b252313fSGleb Smirnoff.Xr epoch 9 .
133b252313fSGleb Smirnoff.Sh HEADS (filtering points)
134b252313fSGleb SmirnoffBy default kernel creates the following heads:
135b252313fSGleb Smirnoff.Bl -tag -width "ethernet"
136b252313fSGleb Smirnoff.It inet
13721d172a3SGleb SmirnoffIPv4 packets.
138b252313fSGleb Smirnoff.It inet6
13921d172a3SGleb SmirnoffIPv6 packets.
140b252313fSGleb Smirnoff.It ethernet
14154202ab3SAlexander V. ChernikovLink-layer packets.
14254202ab3SAlexander V. Chernikov.El
14389a68827SSam Leffler.Pp
144b252313fSGleb SmirnoffDefault rulesets are automatically linked to these heads to preserve
145*1f7a058fSGleb Smirnoffhistorical behaviour.
1469cbda590SRuslan Ermilov.Sh SEE ALSO
147b252313fSGleb Smirnoff.Xr ipfilter 4 ,
148b252313fSGleb Smirnoff.Xr ipfw 4 ,
149b252313fSGleb Smirnoff.Xr pf 4 ,
150b252313fSGleb Smirnoff.Xr pfilctl 8
151e9c7bebfSDarren Reed.Sh HISTORY
152e9c7bebfSDarren ReedThe
153e9c7bebfSDarren Reed.Nm
154e9c7bebfSDarren Reedinterface first appeared in
155e9c7bebfSDarren Reed.Nx 1.3 .
156e9c7bebfSDarren ReedThe
157e9c7bebfSDarren Reed.Nm
158b252313fSGleb Smirnoffinterface was imported into
1590e87afb6SSimon L. B. Nielsen.Fx 5.2 .
160b252313fSGleb SmirnoffIn
161b252313fSGleb Smirnoff.Fx 13.0
162b252313fSGleb Smirnoffthe interface was significantly rewritten.
163