Sync usage with man page.
[netbsd-mini2440.git] / dist / ipf / man / ipf.5
bloba2a9a5eb5fca61e6a40cdf827d1cc2f5e6b1deac
1 .\"     $NetBSD$
2 .\"
3 .TH IPF 5
4 .SH NAME
5 ipf, ipf.conf, ipf6.conf \- IP packet filter rule syntax
6 .SH DESCRIPTION
7 .PP
8 A rule file for \fBipf\fP may have any name or even be stdin.  As
9 \fBipfstat\fP produces parsable rules as output when displaying the internal
10 kernel filter lists, it is quite plausible to use its output to feed back
11 into \fBipf\fP.  Thus, to remove all filters on input packets, the following
12 could be done:
13 .nf
15 \fC# ipfstat \-i | ipf \-rf \-\fP
16 .fi
17 .SH GRAMMAR
18 .PP
19 The format used by \fBipf\fP for construction of filtering rules can be
20 described using the following grammar in BNF:
21 \fC
22 .nf
23 filter-rule = [ insert ] action in-out [ options ] [ tos ] [ ttl ]
24               [ proto ] ip [ group ].
26 insert  = "@" decnumber .
27 action  = block | "pass" | log | "count" | skip | auth | call .
28 in-out  = "in" | "out" .
29 options = [ log ] [ tag ] [ "quick" ] [ "on" interface-name [ dup ]
30            [ froute ] [ replyto ] ] .
31 tos     = "tos" decnumber | "tos" hexnumber .
32 ttl     = "ttl" decnumber .
33 proto   = "proto" protocol .
34 ip      = srcdst [ flags ] [ with withopt ] [ icmp ] [ keep ] .
35 group   = [ "head" decnumber ] [ "group" decnumber ] .
37 block   = "block" [ return-icmp[return-code] | "return-rst" ] .
38 log     = "log" [ "body" ] [ "first" ] [ "or-block" ] [ "level" loglevel ] .
39 tag     = "tag" tagid .
40 skip    = "skip" decnumber .
41 auth    = "auth" | "preauth" .
42 call    = "call" [ "now" ] function-name .
43 dup     = "dup-to" interface-name [ ":" ipaddr ] .
44 froute  = "fastroute" | "to" interface-name [ ":" ipaddr ] .
45 replyto = "reply-to" interface-name [ ":" ipaddr ] .
46 protocol = "tcp/udp" | "udp" | "tcp" | "icmp" | decnumber .
47 srcdst  = "all" | fromto .
48 fromto  = "from" [ "!" ] object "to" [ "!" ] object .
50 return-icmp = "return-icmp" | "return-icmp-as-dest" .
51 return-code = "(" icmp-code ")" .
52 object  = addr [ port-comp | port-range ] .
53 addr    = "any" | nummask | host-name [ "mask" ipaddr | "mask" hexnumber ] .
54 addr    = "any" | "<thishost>" | nummask |
55           host-name [ "mask" ipaddr | "mask" hexnumber ] .
56 port-comp = "port" compare port-num .
57 port-range = "port" port-num range port-num .
58 flags   = "flags" flag { flag } [ "/" flag { flag } ] .
59 with    = "with" | "and" .
60 icmp    = "icmp-type" icmp-type [ "code" decnumber ] .
61 return-code = "(" icmp-code ")" .
62 keep    = "keep" "state" [ "(" state-options ")" ] | "keep" "frags" .
63 loglevel = facility"."priority | priority .
65 nummask = host-name [ "/" decnumber ] .
66 host-name = ipaddr | hostname | "any" .
67 ipaddr  = host-num "." host-num "." host-num "." host-num .
68 host-num = digit [ digit [ digit ] ] .
69 port-num = service-name | decnumber .
70 state-options = state-opts [ "," state-options ] .
72 state-opts = "age" decnumber [ "/" decnumber ] | "strict" |
73              "no-icmp-err" | "limit" decnumber | "newisn" | "sync" .
74 withopt = [ "not" | "no" ] opttype [ withopt ] .
75 opttype = "ipopts" | "short" | "frag" | "opt" optname .
76 optname = ipopts [ "," optname ] .
77 ipopts  = optlist | "sec-class" [ secname ] .
78 secname = seclvl [ "," secname ] .
79 seclvl  = "unclass" | "confid" | "reserv-1" | "reserv-2" | "reserv-3" |
80           "reserv-4" | "secret" | "topsecret" .
81 icmp-type = "unreach" | "echo" | "echorep" | "squench" | "redir" |
82             "timex" | "paramprob" | "timest" | "timestrep" | "inforeq" |
83             "inforep" | "maskreq" | "maskrep"  | decnumber .
84 icmp-code = decumber | "net-unr" | "host-unr" | "proto-unr" | "port-unr" |
85             "needfrag" | "srcfail" | "net-unk" | "host-unk" | "isolate" |
86             "net-prohib" | "host-prohib" | "net-tos" | "host-tos" |
87             "filter-prohib" | "host-preced" | "cutoff-preced" .
88 optlist = "nop" | "rr" | "zsu" | "mtup" | "mtur" | "encode" | "ts" |
89           "tr" | "sec" | "lsrr" | "e-sec" | "cipso" | "satid" | "ssrr" |
90           "addext" | "visa" | "imitd" | "eip" | "finn" .
91 facility = "kern" | "user" | "mail" | "daemon" | "auth" | "syslog" |
92            "lpr" | "news" | "uucp" | "cron" | "ftp" | "authpriv" |
93            "audit" | "logalert" | "local0" | "local1" | "local2" |
94            "local3" | "local4" | "local5" | "local6" | "local7" .
95 priority = "emerg" | "alert" | "crit" | "err" | "warn" | "notice" |
96            "info" | "debug" . 
98 hexnumber = "0" "x" hexstring .
99 hexstring = hexdigit [ hexstring ] .
100 decnumber = digit [ decnumber ] .
102 compare = "=" | "!=" | "<" | ">" | "<=" | ">=" | "eq" | "ne" | "lt" |
103           "gt" | "le" | "ge" .
104 range   = "<>" | "><" .
105 hexdigit = digit | "a" | "b" | "c" | "d" | "e" | "f" .
106 digit   = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" .
107 flag    = "F" | "S" | "R" | "P" | "A" | "U" .
110 This syntax is somewhat simplified for readability, some combinations
111 that match this grammar are disallowed by the software because they do
112 not make sense (such as tcp \fBflags\fP for non-TCP packets).
113 .SH FILTER RULES
115 The "briefest" valid rules are (currently) no-ops and are of the form:
117        block in all
118        pass in all
119        log out all
120        count in all
123 Filter rules are checked in order, with the last matching rule
124 determining the fate of the packet (but see the \fBquick\fP option,
125 below).
127 Filters are installed by default at the end of the kernel's filter
128 lists, prepending the rule with \fB@n\fP will cause it to be inserted
129 as the n'th entry in the current list. This is especially useful when
130 modifying and testing active filter rulesets. See ipf(8) for more
131 information.
132 .SH ACTIONS
134 The action indicates what to do with the packet if it matches the rest
135 of the filter rule. Each rule MUST have an action. The following
136 actions are recognised:
138 .B block
139 indicates that the packet should be flagged to be dropped. In response
140 to blocking a packet, the filter may be instructed to send a reply
141 packet, either an ICMP packet (\fBreturn-icmp\fP), an ICMP packet
142 masquerading as being from the original packet's destination
143 (\fBreturn-icmp-as-dest\fP), or a TCP "reset" (\fBreturn-rst\fP).  An
144 ICMP packet may be generated in response to any IP packet, and its
145 type may optionally be specified, but a TCP reset may only be used
146 with a rule which is being applied to TCP packets.  When using
147 \fBreturn-icmp\fP or \fBreturn-icmp-as-dest\fP, it is possible to specify
148 the actual unreachable `type'.  That is, whether it is a network
149 unreachable, port unreachable or even administratively
150 prohibited. This is done by enclosing the ICMP code associated with
151 it in parenthesis directly following \fBreturn-icmp\fP or
152 \fBreturn-icmp-as-dest\fP as follows:
154         block return-icmp(11) ...
157 Would return a Type-Of-Service (TOS) ICMP unreachable error.
159 .B pass
160 will flag the packet to be let through the filter.  
162 .B log
163 causes the packet to be logged (as described in the LOGGING section
164 below) and has no effect on whether the packet will be allowed through
165 the filter.
167 .B count
168 causes the packet to be included in the accounting statistics kept by
169 the filter, and has no effect on whether the packet will be allowed through
170 the filter. These statistics are viewable with ipfstat(8).
172 .B call
173 this action is used to invoke the named function in the kernel, which
174 must conform to a specific calling interface. Customised actions and
175 semantics can thus be implemented to supplement those available. This
176 feature is for use by knowledgeable hackers, and is not currently
177 documented.
179 .B "skip <n>"
180 causes the filter to skip over the next \fIn\fP filter rules.  If a rule is
181 inserted or deleted inside the region being skipped over, then the value of
182 \fIn\fP is adjusted appropriately.
184 .B auth
185 this allows authentication to be performed by a user-space program running
186 and waiting for packet information to validate.  The packet is held for a
187 period of time in an internal buffer whilst it waits for the program to return
188 to the kernel the \fIreal\fP flags for whether it should be allowed through
189 or not.  Such a program might look at the source address and request some sort
190 of authentication from the user (such as a password) before allowing the
191 packet through or telling the kernel to drop it if from an unrecognised source.
193 .B preauth
194 tells the filter that for packets of this class, it should look in the
195 pre-authenticated list for further clarification.  If no further matching
196 rule is found, the packet will be dropped (the FR_PREAUTH is not the same
197 as FR_PASS).  If a further matching rule is found, the result from that is
198 used in its instead.  This might be used in a situation where a person
199 \fIlogs in\fP to the firewall and it sets up some temporary rules defining
200 the access for that person.
202 The next word must be either \fBin\fP or \fBout\fP.  Each packet
203 moving through the kernel is either inbound (just been received on an
204 interface, and moving towards the kernel's protocol processing) or
205 outbound (transmitted or forwarded by the stack, and on its way to an
206 interface). There is a requirement that each filter rule explicitly
207 state which side of the I/O it is to be used on.
208 .SH OPTIONS
210 The list of options is brief, and all are indeed optional. Where
211 options are used, they must be present in the order shown here. These
212 are the currently supported options:
214 .B log
215 indicates that, should this be the last matching rule, the packet
216 header will be written to the \fBipl\fP log (as described in the
217 LOGGING section below).
219 .B tag tagid
220 indicates that, if this rule causes the packet to be logged or entered
221 in the state table, the tagid will be logged as part of the log entry.
222 This can be used to quickly match "similar" rules in scripts that post
223 process the log files for e.g. generation of security reports or accounting
224 purposes. The tagid is a 32 bit unsigned integer.
226 .B quick
227 allows "short-cut" rules in order to speed up the filter or override
228 later rules.  If a packet matches a filter rule which is marked as
229 \fBquick\fP, this rule will be the last rule checked, allowing a
230 "short-circuit" path to avoid processing later rules for this
231 packet. The current status of the packet (after any effects of the
232 current rule) will determine whether it is passed or blocked.
234 If this option is missing, the rule is taken to be a "fall-through"
235 rule, meaning that the result of the match (block/pass) is saved and
236 that processing will continue to see if there are any more matches.
238 .B on
239 allows an interface name to be incorporated into the matching
240 procedure. Interface names are as printed by "netstat \-i". If this
241 option is used, the rule will only match if the packet is going
242 through that interface in the specified direction (in/out). If this
243 option is absent, the rule is taken to be applied to a packet
244 regardless of the interface it is present on (i.e. on all interfaces).
245 Filter rulesets are common to all interfaces, rather than having a
246 filter list for each interface.
248 This option is especially useful for simple IP-spoofing protection:
249 packets should only be allowed to pass inbound on the interface from
250 which the specified source address would be expected, others may be
251 logged and/or dropped.
253 .B dup-to
254 causes the packet to be copied, and the duplicate packet to be sent
255 outbound on the specified interface, optionally with the destination
256 IP address changed to that specified. This is useful for off-host
257 logging, using a network sniffer.
259 .B to
260 causes the packet to be moved to the outbound queue on the
261 specified interface. This can be used to circumvent kernel routing
262 decisions, and even to bypass the rest of the kernel processing of the
263 packet (if applied to an inbound rule). It is thus possible to
264 construct a firewall that behaves transparently, like a filtering hub
265 or switch, rather than a router. The \fBfastroute\fP keyword is a
266 synonym for this option.
267 .SH MATCHING PARAMETERS
268 .PP 
269 The keywords described in this section are used to describe attributes
270 of the packet to be used when determining whether rules match or don't
271 match. The following general-purpose attributes are provided for
272 matching, and must be used in this order:
274 .B tos
275 packets with different Type-Of-Service values can be filtered.
276 Individual service levels or combinations can be filtered upon.  The
277 value for the TOS mask can either be represented as a hex number or a
278 decimal integer value.
280 .B ttl
281 packets may also be selected by their Time-To-Live value.  The value given in
282 the filter rule must exactly match that in the packet for a match to occur.
283 This value can only be given as a decimal integer value.
285 .B proto
286 allows a specific protocol to be matched against.  All protocol names
287 found in \fB/etc/protocols\fP are recognised and may be used.
288 However, the protocol may also be given as a DECIMAL number, allowing
289 for rules to match your own protocols, or new ones which would
290 out-date any attempted listing.
292 The special protocol keyword \fBtcp/udp\fP may be used to match either
293 a TCP or a UDP packet, and has been added as a convenience to save
294 duplication of otherwise-identical rules.
295 .\" XXX grammar should reflect this (/etc/protocols)
297 The \fBfrom\fP and \fBto\fP keywords are used to match against IP
298 addresses (and optionally port numbers). Rules must specify BOTH
299 source and destination parameters.
300 .PP 
301 IP addresses may be specified in one of two ways: as a numerical
302 address\fB/\fPmask, or as a hostname \fBmask\fP netmask.  The hostname
303 may either be a valid hostname, from either the hosts file or DNS
304 (depending on your configuration and library) or of the dotted numeric
305 form.  There is no special designation for networks but network names
306 are recognised.  Note that having your filter rules depend on DNS
307 results can introduce an avenue of attack, and is discouraged.
309 There is a special case for the hostname \fBany\fP which is taken to
310 be 0.0.0.0/0 (see below for mask syntax) and matches all IP addresses.
311 Only the presence of "any" has an implied mask, in all other
312 situations, a hostname MUST be accompanied by a mask.  It is possible
313 to give "any" a hostmask, but in the context of this language, it is
314 non-sensical.
316 The numerical format "x\fB/\fPy" indicates that a mask of y
317 consecutive 1 bits set is generated, starting with the MSB, so a y value
318 of 16 would give 0xffff0000. The symbolic "x \fBmask\fP y" indicates
319 that the mask y is in dotted IP notation or a hexadecimal number of
320 the form 0x12345678.  Note that all the bits of the IP address
321 indicated by the bitmask must match the address on the packet exactly;
322 there isn't currently a way to invert the sense of the match, or to
323 match ranges of IP addresses which do not express themselves easily as
324 bitmasks (anthropomorphization; it's not just for breakfast anymore).
326 If a \fBport\fP match is included, for either or both of source and
327 destination, then it is only applied to
328 .\" XXX - "may only be" ? how does this apply to other protocols? will it not match, or will it be ignored?
329 TCP and UDP packets. If there is no \fBproto\fP match parameter,
330 packets from both protocols are compared. This is equivalent to "proto
331 tcp/udp".  When composing \fBport\fP comparisons, either the service
332 name or an integer port number may be used. Port comparisons may be
333 done in a number of forms, with a number of comparison operators, or
334 port ranges may be specified. When the port appears as part of the
335 \fBfrom\fP object, it matches the source port number, when it appears
336 as part of the \fBto\fP object, it matches the destination port number.
337 See the examples for more information.
339 The \fBall\fP keyword is essentially a synonym for "from any to any"
340 with no other match parameters.
342 Following the source and destination matching parameters, the
343 following additional parameters may be used:
345 .B with
346 is used to match irregular attributes that some packets may have
347 associated with them.  To match the presence of IP options in general,
348 use \fBwith ipopts\fP. To match packets that are too short to contain
349 a complete header, use \fBwith short\fP. To match fragmented packets,
350 use \fBwith frag\fP.  For more specific filtering on IP options,
351 individual options can be listed.
353 Before any parameter used after the \fBwith\fP keyword, the word
354 \fBnot\fP or \fBno\fP may be inserted to cause the filter rule to only
355 match if the option(s) is not present.
357 Multiple consecutive \fBwith\fP clauses are allowed.  Alternatively,
358 the keyword \fBand\fP may be used in place of \fBwith\fP, this is
359 provided purely to make the rules more readable ("with ... and ...").
360 When multiple clauses are listed, all those must match to cause a
361 match of the rule.
362 .\" XXX describe the options more specifically in a separate section
364 .B flags
365 is only effective for TCP filtering.  Each of the letters possible
366 represents one of the possible flags that can be set in the TCP
367 header.  The association is as follows:
370         F - FIN
371         S - SYN
372         R - RST
373         P - PUSH
374         A - ACK
375         U - URG
378 The various flag symbols may be used in combination, so that "SA"
379 would represent a SYN-ACK combination present in a packet.  There is
380 nothing preventing the specification of combinations, such as "SFR",
381 that would not normally be generated by law-abiding TCP
382 implementations.  However, to guard against weird aberrations, it is
383 necessary to state which flags you are filtering against.  To allow
384 this, it is possible to set a mask indicating which TCP flags you wish
385 to compare (i.e., those you deem significant).  This is done by
386 appending "/<flags>" to the set of TCP flags you wish to match
387 against, e.g.:
390         ... flags S
391                         # becomes "flags S/AUPRFS" and will match
392                         # packets with ONLY the SYN flag set.
394         ... flags SA
395                         # becomes "flags SA/AUPRFS" and will match any
396                         # packet with only the SYN and ACK flags set.
398         ... flags S/SA
399                         # will match any packet with just the SYN flag set
400                         # out of the SYN-ACK pair; the common "establish"
401                         # keyword action.  "S/SA" will NOT match a packet
402                         # with BOTH SYN and ACK set, but WILL match "SFP".
405 .B icmp-type
406 is only effective when used with \fBproto icmp\fP and must NOT be used
407 in conjunction with \fBflags\fP.  There are a number of types, which can be
408 referred to by an abbreviation recognised by this language, or the numbers
409 with which they are associated can be used.  The most important from
410 a security point of view is the ICMP redirect.
411 .SH KEEP HISTORY
413 The second last parameter which can be set for a filter rule is whether or not
414 to record historical information for that packet, and what sort to keep. The
415 following information can be kept:
417 .B state
418 keeps information about the flow of a communication session. State can
419 be kept for TCP, UDP, and ICMP packets.
421 .B frags
422 keeps information on fragmented packets, to be applied to later
423 fragments.
425 allowing packets which match these to flow straight through, rather
426 than going through the access control list.
427 .SH GROUPS
428 The last pair of parameters control filter rule "grouping".  By default, all
429 filter rules are placed in group 0 if no other group is specified.  To add a
430 rule to a non-default group, the group must first be started by creating a
431 group \fIhead\fP.  If a packet matches a rule which is the \fIhead\fP of a
432 group, the filter processing then switches to the group, using that rule as
433 the default for the group.  If \fBquick\fP is used with a \fBhead\fP rule, rule
434 processing isn't stopped until it has returned from processing the group.
436 A rule may be both the head for a new group and a member of a non-default
437 group (\fBhead\fP and \fBgroup\fP may be used together in a rule).
439 .B "head <n>"
440 indicates that a new group (number n) should be created.
442 .B "group <n>"
443 indicates that the rule should be put in group (number n) rather than group 0.
444 .SH LOGGING
446 When a packet is logged, with either the \fBlog\fP action or option,
447 the headers of the packet are written to the \fBipl\fP packet logging
448 pseudo-device. Immediately following the \fBlog\fP keyword, the
449 following qualifiers may be used (in order):
451 .B body
452 indicates that the first 128 bytes of the packet contents will be
453 logged after the headers. 
455 .B first
456 If log is being used in conjunction with a "keep" option, it is recommended
457 that this option is also applied so that only the triggering packet is logged
458 and not every packet which thereafter matches state information.
460 .B or-block
461 indicates that, if for some reason the filter is unable to log the
462 packet (such as the log reader being too slow) then the rule should be
463 interpreted as if the action was \fBblock\fP for this packet.
465 .B "level <loglevel>"
466 indicates what logging facility and priority, or just priority with
467 the default facility being used, will be used to log information about 
468 this packet using ipmon's -s option.
470 See ipl(4) for the format of records written
471 to this device. The ipmon(8) program can be used to read and format
472 this log.
473 .SH EXAMPLES
475 The \fBquick\fP option is good for rules such as:
478 block in quick from any to any with ipopts
481 which will match any packet with a non-standard header length (IP
482 options present) and abort further processing of later rules,
483 recording a match and also that the packet should be blocked.
485 The "fall-through" rule parsing allows for effects such as this:
488         block in from any to any port < 6000
489         pass in from any to any port >= 6000
490         block in from any to any port > 6003
493 which sets up the range 6000-6003 as being permitted and all others being
494 denied.  Note that the effect of the first rule is overridden by subsequent
495 rules.  Another (easier) way to do the same is:
498         block in from any to any port 6000 <> 6003
499         pass in from any to any port 5999 >< 6004
502 Note that both the "block" and "pass" are needed here to effect a
503 result as a failed match on the "block" action does not imply a pass,
504 only that the rule hasn't taken effect.  To then allow ports < 1024, a
505 rule such as:
508         pass in quick from any to any port < 1024
511 would be needed before the first block.  To create a new group for
512 processing all inbound packets on le0/le1/lo0, with the default being to block
513 all inbound packets, we would do something like:
516        block in all
517        block in quick on le0 all head 100
518        block in quick on le1 all head 200
519        block in quick on lo0 all head 300
523 and to then allow ICMP packets in on le0, only, we would do:
526        pass in proto icmp all group 100
529 Note that because only inbound packets on le0 are used processed by group 100,
530 there is no need to respecify the interface name.  Likewise, we could further
531 breakup processing of TCP, etc, as follows:
534        block in proto tcp all head 110 group 100
535        pass in from any to any port = 23 group 110
538 and so on.  The last line, if written without the groups would be:
541        pass in on le0 proto tcp from any to any port = telnet
544 Note, that if we wanted to say "port = telnet", "proto tcp" would
545 need to be specified as the parser interprets each rule on its own and
546 qualifies all service/port names with the protocol specified.
547 .SH FILES
548 /dev/ipauth
550 /dev/ipl
552 /dev/ipstate
554 /etc/hosts
556 /etc/services
558 /usr/share/examples/ipf  Directory with examples.
559 .SH SEE ALSO
560 ipftest(1), iptest(1), mkfilters(1), ipf(4), ipnat(5), ipf(8), ipfstat(8)