bookends.m4: Allow redirects to (non-routing) hosts.
[firewall] / bookends.m4
CommitLineData
775bd287 1### -*-sh-*-
bfdc045d
MW
2###
3### Initialization and finishing touches for firewall scripts
4###
5### (c) 2008 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This program is free software; you can redistribute it and/or modify
11### it under the terms of the GNU General Public License as published by
12### the Free Software Foundation; either version 2 of the License, or
13### (at your option) any later version.
14###
15### This program is distributed in the hope that it will be useful,
16### but WITHOUT ANY WARRANTY; without even the implied warranty of
17### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18### GNU General Public License for more details.
19###
20### You should have received a copy of the GNU General Public License
21### along with this program; if not, write to the Free Software Foundation,
22### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24m4_divert(30)m4_dnl
25###--------------------------------------------------------------------------
26### Clear existing firewall rules.
27
28## The main chains: set policy to drop, and then clear the rules. For a
29## while, incoming packets will be silently dropped, but we should have got
30## everything going before anyone actually hits a timeout.
42dae9ae
MW
31##
32## We don't control some of the chains, so we should preserve them. This
33## introduces a whole bunch of problems.
34
35## Chains we're meant to preserve
36preserve_chains="filter:fail2ban filter:fail2ban-* $preserve_chains"
37
38## Take the various IP versions in turn.
39unref=nil
40for ip in ip ip6; do
fb7845a8
MW
41 if [ "$FW_NOACT" ]; then break; fi
42
42dae9ae
MW
43 for table in $(cat /proc/net/${ip}_tables_names); do
44
45 ## Step 1: clear out the builtin chains.
46 ${ip}tables -nL -t $table |
47 sed -n '/^Chain \([^ ]\+\) (policy .*$/ s//\1/p ' |
48 while read chain; do
49 case $table in
50 nat) policy=ACCEPT ;;
51 *) policy=DROP ;;
52 esac
53 run ${ip}tables -t $table -P $chain $policy
54 run ${ip}tables -t $table -F $chain
55 done
56
57 ## Step 2: clear out user chains. Unfortunately, we can only clear
58 ## chains which have no references to them, so work through picking off
59 ## unreferenced chains which aren't meant to be preserved until there are
60 ## none left.
61 while :; do
62 progress=nil
63 ${ip}tables -nL -t $table |
64 sed -n '/^Chain \([^ ]\+\) (0 references)$/ s//\1/p ' \
65 >/var/run/firewall-chains.tmp
66 while read chain; do
67 match=nil
68 for pat in $preserve_chains; do
69 case "$table:$chain" in $pat) match=t ;; esac
70 done
71 case $match in
72 nil)
73 run ${ip}tables -t $table -F $chain
74 run ${ip}tables -t $table -X $chain
75 progress=t
76 ;;
77 esac
78 done </var/run/firewall-chains.tmp
79 case $progress in nil) break ;; esac
80 done
81
82 ## Step 3: report on uncleared user chains. This means that there's a
83 ## serious problem.
84 ${ip}tables -nL -t $table |
85 sed -n '/^Chain \([^ ]\+\) (\([1-9][0-9]*\) references)$/ s//\1 \2/p ' \
86 >/var/run/firewall-chains.tmp
87 while read chain refs; do
88 match=nil
89 for pat in $preserve_chains; do
90 case "$table:$chain" in $pat) match=t ;; esac
91 done
92 case $match in
93 nil)
94 echo >&2 "$0: can't clear referenced $ip chain \`$table:$chain'"
95 unref=t
96 ;;
97 esac
98 done </var/run/firewall-chains.tmp
bfdc045d 99 done
bfdc045d 100done
42dae9ae
MW
101rm -f /var/run/firewall-chains.tmp
102case $unref in t) exit 1 ;; esac
bfdc045d
MW
103
104m4_divert(32)m4_dnl
105###--------------------------------------------------------------------------
106### Set safe IP options.
107
108## Set forwarding options. Apparently setting ip_forward clobbers other
109## settings, so put this first.
78af294c 110case $host_type_<::>FWHOST in
64de9249
MW
111 router) forward=1 host=0 ;;
112 server) forward=0 host=0 ;;
113 client) forward=0 host=1 ;;
78af294c 114esac
bfdc045d
MW
115setopt ip_forward $forward
116setdevopt forwarding $forward
64de9249 117for i in \
51988d08
MW
118 accept_ra accept_ra_defrtr accept_ra_pinfo accept_ra_info_max_plen \
119 accept_redirects
64de9249
MW
120do
121 setdevopt $i $host
122done
f0033e07
MW
123case $forward in
124 0) inchains="INPUT" ;;
125 1) inchains="INPUT FORWARD" ;;
126esac
bfdc045d
MW
127
128## Set dynamic port allocation.
129setopt ip_local_port_range $open_port_min $open_port_max
130
131## Deploy SYN-cookies if necessary.
132setopt tcp_syncookies 1
133
c8d422ec
MW
134## Allow broadcast and multicast ping, because it's a useful diagnostic tool.
135setopt icmp_echo_ignore_broadcasts 0
136
429f4314
MW
137## Turn off iptables filtering for bridges. We'll use ebtables if we need
138## to; but right now the model is that we do filtering at the borders, and
139## are tolerant of things which are local.
6d47692a
MW
140if [ -x /sbin/brctl ]; then
141 modprobe bridge || :
142 if [ -d /proc/sys/net/bridge ]; then
143 for filter in arptables iptables ip6tables; do
144 run sysctl -q net.bridge.bridge-nf-call-$filter=0
145 done
146 fi
147fi
429f4314 148
78af294c
MW
149## Turn off the reverse-path filter. It's basically useless: the filter does
150## nothing at all for single-homed hosts; and multi-homed hosts tend to have
151## routing aysmmetries if there's any kind of cycle.
152setdevopt rp_filter 0
153setdevopt log_martians 0
bfdc045d
MW
154
155## Turn off things which can mess with our routing decisions.
156setdevopt accept_source_route 0
51988d08 157setdevopt secure_redirects 1
bfdc045d
MW
158
159## If we're maent to stop the firewall, then now is the time to do it.
160$exit_after_clearing
161
162m4_divert(34)m4_dnl
163###--------------------------------------------------------------------------
164### Establish error chains.
165
0291d6d5
MW
166errorchain forbidden REJECT
167## Generic `not allowed' chain.
bfdc045d 168
0291d6d5
MW
169errorchain tcp-fragment REJECT
170## Chain for logging fragmented TCP segements.
bfdc045d
MW
171
172errorchain bad-tcp REJECT -p tcp --reject-with tcp-reset
173## Bad TCP segments (e.g., for unknown connections). Sends a TCP reset.
174
175errorchain mangle:bad-source-address DROP
0291d6d5 176errorchain bad-source-address DROP
bfdc045d
MW
177## Packet arrived on wrong interface for its source address. Drops the
178## packet, since there's nowhere sensible to send an error.
179
0291d6d5
MW
180errorchain bad-destination-address REJECT
181## Packet arrived on non-loopback interface with loopback destination.
f381cc0a 182
bfdc045d
MW
183errorchain interesting ACCEPT
184## Not an error, just log interesting packets.
185
a4d8cae3 186m4_divert(50)m4_dnl
bfdc045d 187###--------------------------------------------------------------------------
f543dab7 188### Standard filtering.
bfdc045d 189
f381cc0a 190## Don't clobber local traffic
0291d6d5 191run ip46tables -A INPUT -i lo -j ACCEPT
bfdc045d 192
f381cc0a
MW
193## We really shouldn't see packets destined for localhost on any interface
194## other than the loopback.
195run iptables -A INPUT -g bad-destination-address \
196 -d 127.0.0.0/8
0291d6d5
MW
197run ip6tables -A INPUT -g bad-destination-address \
198 -d ::1
199
200## We shouldn't be asked to forward things with link-local addresses.
78af294c
MW
201case $forward in
202 1)
203 run iptables -A FORWARD -g bad-source-address \
204 -s 169.254.0.0/16
205 run iptables -A FORWARD -g bad-destination-address \
206 -d 169.254.0.0/16
207 run ip6tables -A FORWARD -g bad-source-address \
208 -s fe80::/10
209 run ip6tables -A FORWARD -g bad-destination-address \
210 -d fe80::/10
211 ;;
212esac
f381cc0a 213
429f4314 214## Also, don't forward link-local broadcast or multicast.
78af294c
MW
215case $forward in
216 1)
217 run iptables -A FORWARD -g bad-destination-address \
218 -d 255.255.255.255
219 run iptables -A FORWARD -g bad-destination-address \
220 -m addrtype --dst-type BROADCAST
221 run iptables -A FORWARD -g bad-destination-address \
222 -d 224.0.0.0/24
e6d64b67 223 clearchain check-fwd-multi
78af294c 224 for x in 0 1 2 3 4 5 6 7 8 9 a b c d e f; do
e6d64b67
MW
225 run ip6tables -A check-fwd-multi -g bad-destination-address \
226 -d ff${x}2::/16
78af294c 227 done
fb7845a8 228 run ip6tables -A FORWARD -j check-fwd-multi -d ff00::/8
78af294c
MW
229 ;;
230esac
429f4314 231
f543dab7
MW
232## Add a hook for fail2ban.
233clearchain fail2ban
234run ip46tables -A INPUT -j fail2ban
235
bfdc045d
MW
236m4_divert(90)m4_dnl
237###--------------------------------------------------------------------------
238### Finishing touches.
239
240m4_divert(94)m4_dnl
241## Locally generated packets are all OK.
c1c877c2 242run ip46tables -P OUTPUT ACCEPT
bfdc045d
MW
243
244## Other incoming things are forbidden.
245for chain in INPUT FORWARD; do
c1c877c2 246 run ip46tables -A $chain -g forbidden
bfdc045d
MW
247done
248
86c975b5
MW
249## Allow stuff through unknown tables.
250for ip in ip ip6; do
251 for table in $(cat /proc/net/${ip}_tables_names); do
252 case $table in mangle | filter) continue ;; esac
253 ${ip}tables -nL -t $table |
254 sed -n '/^Chain \([^ ]\+\) (policy .*$/ s//\1/p ' |
255 while read chain; do
256 run ${ip}tables -t $table -P $chain ACCEPT
257 done
258 done
259done
260
d8852323
MW
261## Dump the resulting configuration.
262if [ "$FW_DEBUG" ]; then
263 for ip in ip ip6; do
264 for table in mangle filter; do
265 echo "----- $ip $table -----"
266 echo
267 ${ip}tables -t $table -nvL
268 echo
269 done
270 done
271fi
272
bfdc045d
MW
273m4_divert(-1)
274###----- That's all, folks --------------------------------------------------