2002-05-01 01:13:15 +02:00
|
|
|
#!/bin/sh
|
|
|
|
RCDLINKS="2,S41 3,S41 6,K41"
|
|
|
|
#
|
2002-05-18 15:45:23 +02:00
|
|
|
# The Shoreline Firewall (Shorewall) Packet Filtering Firewall - V1.3 6/14/2002
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
# This program is under GPL [http://www.gnu.org/copyleft/gpl.htm]
|
|
|
|
#
|
|
|
|
# (c) 1999,2000,2001,2002 - Tom Eastep (teastep@shorewall.net)
|
|
|
|
#
|
|
|
|
# On most distributions, this file should be called:
|
|
|
|
# /etc/rc.d/init.d/shorewall or /etc/init.d/shorewall
|
|
|
|
#
|
|
|
|
# Complete documentation is available at http://shorewall.net
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of Version 2 of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
|
|
|
#
|
|
|
|
# If an error occurs while starting or restarting the firewall, the
|
|
|
|
# firewall is automatically stopped.
|
|
|
|
#
|
|
|
|
# Commands are:
|
|
|
|
#
|
|
|
|
# shorewall start Starts the firewall
|
|
|
|
# shorewall restart Restarts the firewall
|
|
|
|
# shorewall stop Stops the firewall
|
|
|
|
# shorewall status Displays firewall status
|
|
|
|
# shorewall reset Resets iptabless packet and
|
|
|
|
# byte counts
|
|
|
|
# shorewall clear Remove all Shorewall chains
|
|
|
|
# and rules/policies.
|
|
|
|
# shorewall refresh . Rebuild the common chain
|
2002-07-06 00:24:40 +02:00
|
|
|
# shorewall check Verify the more heavily-used
|
|
|
|
# configuration files.
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
#### BEGIN INIT INFO
|
2002-07-06 00:24:40 +02:00
|
|
|
# Provides: shorewall
|
2002-05-01 01:13:15 +02:00
|
|
|
# Required-Start: $network
|
|
|
|
# Required-Stop:
|
|
|
|
# Default-Start: 2 3 5
|
2002-07-06 00:24:40 +02:00
|
|
|
# Default-Stop: 0 1 6
|
|
|
|
# Description: starts and stops the shorewall firewall
|
2002-05-01 01:13:15 +02:00
|
|
|
### END INIT INFO
|
|
|
|
|
|
|
|
# chkconfig: 2345 25 90
|
|
|
|
# description: Packet filtering firewall
|
|
|
|
#
|
|
|
|
|
2002-05-30 14:55:47 +02:00
|
|
|
###############################################################################
|
|
|
|
# Search a list looking for a match -- returns zero if a match found #
|
|
|
|
# 1 otherwise #
|
|
|
|
###############################################################################
|
|
|
|
list_search() # $1 = element to search for , $2-$n = list
|
|
|
|
{
|
|
|
|
local e=$1
|
|
|
|
|
|
|
|
while [ $# -gt 1 ]; do
|
|
|
|
shift
|
|
|
|
[ "x$e" = "x$1" ] && return 0
|
|
|
|
done
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
# Mutual exclusion -- These functions are jackets for the mutual exclusion #
|
2002-07-06 00:24:40 +02:00
|
|
|
# routines in /var/lib/shorewall/functions. They invoke #
|
|
|
|
# the corresponding function in that file if the user did #
|
|
|
|
# not specify "nolock" on the runline. #
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
my_mutex_on() {
|
|
|
|
[ -n "$nolock" ] || { mutex_on; have_mutex=Yes; }
|
|
|
|
}
|
|
|
|
|
|
|
|
my_mutex_off() {
|
|
|
|
[ -n "$have_mutex" ] && { mutex_off; have_mutex=; }
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Message to stderr #
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
error_message() # $* = Error Message
|
|
|
|
{
|
2002-05-30 14:55:47 +02:00
|
|
|
echo " $@" >&2
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Fatal error -- stops the firewall after issuing the error message #
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
fatal_error() # $* = Error Message
|
|
|
|
{
|
2002-05-30 14:55:47 +02:00
|
|
|
echo " $@" >&2
|
2002-05-01 01:13:15 +02:00
|
|
|
stop_firewall
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Fatal error during startup -- generate an error message and abend with #
|
2002-07-06 00:24:40 +02:00
|
|
|
# altering the state of the firewall #
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
startup_error() # $* = Error Message
|
|
|
|
{
|
2002-05-30 14:55:47 +02:00
|
|
|
echo " $@" >&2
|
2002-05-01 01:13:15 +02:00
|
|
|
my_mutex_off
|
|
|
|
[ -n "$TMP_DIR" ] && rm -rf $TMP_DIR
|
|
|
|
kill $$
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
2002-05-03 00:56:27 +02:00
|
|
|
###############################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Send a message to STDOUT and the System Log #
|
2002-05-03 00:56:27 +02:00
|
|
|
###############################################################################
|
|
|
|
report () { # $* = message
|
|
|
|
echo "$@"
|
|
|
|
logger "$@"
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
# Perform variable substitution on the passed argument and echo the result #
|
|
|
|
###############################################################################
|
|
|
|
expand() # $1 = contents of variable which may be the name of another variable
|
|
|
|
{
|
|
|
|
eval echo \"$1\"
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Perform variable substitition on the values of the passed list of variables #
|
|
|
|
###############################################################################
|
|
|
|
expandv() # $* = list of variable names
|
|
|
|
{
|
|
|
|
local varval
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
eval varval=\$${1}
|
|
|
|
eval $1=\"$varval\"
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Run iptables and if an error occurs, stop the firewall and quit #
|
|
|
|
################################################################################
|
|
|
|
run_iptables() {
|
|
|
|
if ! iptables `echo $@ | sed 's/!/! /g'`; then
|
2002-07-06 00:24:40 +02:00
|
|
|
[ -z "$stopping" ] && { stop_firewall; exit 2; }
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Run ip and if an error occurs, stop the firewall and quit #
|
|
|
|
################################################################################
|
|
|
|
run_ip() {
|
|
|
|
if ! ip $@ ; then
|
|
|
|
[ -z "$stopping" ] && { stop_firewall; exit 2; }
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Run arp and if an error occurs, stop the firewall and quit #
|
|
|
|
################################################################################
|
|
|
|
run_arp() {
|
|
|
|
if ! arp $@ ; then
|
|
|
|
[ -z "$stopping" ] && { stop_firewall; exit 2; }
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Run tc and if an error occurs, stop the firewall and quit #
|
|
|
|
################################################################################
|
|
|
|
run_tc() {
|
|
|
|
if ! tc $@ ; then
|
|
|
|
[ -z "$stopping" ] && { stop_firewall; exit 2; }
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Create a filter chain #
|
|
|
|
# #
|
|
|
|
# If the chain isn't one of the common chains then add a rule to the chain #
|
2002-07-06 00:24:40 +02:00
|
|
|
# allowing packets that are part of an established connection. Create a #
|
2002-05-01 01:13:15 +02:00
|
|
|
# variable ${1}_exists and set its value to Yes to indicate that the chain now #
|
2002-07-06 00:24:40 +02:00
|
|
|
# exists. #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
createchain() # $1 = chain name, $2 = If non-null, don't create default rules
|
|
|
|
{
|
|
|
|
run_iptables -N $1
|
|
|
|
|
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
state="ESTABLISHED"
|
|
|
|
[ -n "$ALLOWRELATED" ] && state="$state,RELATED"
|
|
|
|
run_iptables -A $1 -m state --state $state -j ACCEPT
|
|
|
|
fi
|
|
|
|
|
|
|
|
eval ${1}_exists=Yes
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Determine if a chain exists #
|
|
|
|
# #
|
|
|
|
# When we create a chain "chain", we create a variable named chain_exists and #
|
|
|
|
# set its value to Yes. This function tests for the "_exists" variable #
|
|
|
|
# corresponding to the passed chain having the value of "Yes". #
|
|
|
|
################################################################################
|
|
|
|
havechain() # $1 = name of chain
|
|
|
|
{
|
|
|
|
eval test \"\$${1}_exists\" = Yes
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Ensure that a chain exists (create it if it doesn't) #
|
|
|
|
################################################################################
|
|
|
|
ensurechain() # $1 = chain name
|
|
|
|
{
|
|
|
|
havechain $1 || createchain $1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Add a rule to a chain creating the chain if necessary #
|
|
|
|
################################################################################
|
|
|
|
addrule() # $1 = chain name, remainder of arguments specify the rule
|
|
|
|
{
|
|
|
|
ensurechain $1
|
|
|
|
run_iptables -A $@
|
|
|
|
}
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
|
|
|
# Create a nat chain #
|
|
|
|
# #
|
|
|
|
# Create a variable ${1}_nat_exists and set its value to Yes to indicate that #
|
2002-07-06 00:24:40 +02:00
|
|
|
# the chain now exists. #
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
|
|
|
createnatchain() # $1 = chain name
|
|
|
|
{
|
|
|
|
run_iptables -t nat -N $1
|
|
|
|
|
|
|
|
eval ${1}_nat_exists=Yes
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Determine if a nat chain exists #
|
|
|
|
# #
|
|
|
|
# When we create a chain "chain", we create a variable named chain_nat_exists #
|
|
|
|
# and set its value to Yes. This function tests for the "_exists" variable #
|
|
|
|
# corresponding to the passed chain having the value of "Yes". #
|
|
|
|
################################################################################
|
|
|
|
havenatchain() # $1 = name of chain
|
|
|
|
{
|
|
|
|
eval test \"\$${1}_nat_exists\" = Yes
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Ensure that a chain exists (create it if it doesn't) #
|
|
|
|
################################################################################
|
|
|
|
ensurenatchain() # $1 = chain name
|
|
|
|
{
|
|
|
|
havenatchain $1 || createnatchain $1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Add a rule to a nat chain creating the chain if necessary #
|
|
|
|
################################################################################
|
|
|
|
addnatrule() # $1 = chain name, remainder of arguments specify the rule
|
|
|
|
{
|
|
|
|
ensurenatchain $1
|
|
|
|
run_iptables -t nat -A $@
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
# Delete a chain if it exists #
|
|
|
|
################################################################################
|
|
|
|
deletechain() # $1 = name of chain
|
|
|
|
{
|
|
|
|
qt iptables -L $1 -n && qt iptables -F $1 && qt iptables -X $1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Set a standard chain's policy #
|
|
|
|
################################################################################
|
|
|
|
setpolicy() # $1 = name of chain, $2 = policy
|
|
|
|
{
|
|
|
|
run_iptables -P $1 $2
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Set a standard chain to enable established connections #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
setcontinue() # $1 = name of chain
|
|
|
|
{
|
|
|
|
run_iptables -A $1 -m state --state ESTABLISHED -j ACCEPT
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Flush one of the NAT table chains #
|
|
|
|
################################################################################
|
|
|
|
flushnat() # $1 = name of chain
|
|
|
|
{
|
|
|
|
run_iptables -t nat -F $1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Find interfaces to a given zone #
|
|
|
|
# #
|
|
|
|
# Read the interfaces file and for each record matching the passed ZONE, #
|
|
|
|
# echo the expanded contents of the "INTERFACE" column #
|
|
|
|
################################################################################
|
|
|
|
find_interfaces() # $1 = interface zone
|
|
|
|
{
|
|
|
|
local zne=$1
|
|
|
|
|
|
|
|
while read z interface subnet options; do
|
|
|
|
[ "x`expand $z`" = "x$zne" ] && echo `expand $interface`
|
|
|
|
done < $TMP_DIR/interfaces
|
|
|
|
}
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Chain name base for an interface #
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
|
|
|
chain_base() #$1 = interface
|
|
|
|
{
|
|
|
|
local c=${1%%+*}
|
|
|
|
|
2002-05-30 14:55:47 +02:00
|
|
|
echo ${c:=common}
|
2002-05-18 15:45:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Forward Chain for an interface #
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
|
|
|
forward_chain() # $1 = interface
|
|
|
|
{
|
2002-07-05 18:48:41 +02:00
|
|
|
echo `chain_base $1`_fwd
|
2002-05-18 15:45:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Input Chain for an interface #
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
|
|
|
input_chain() # $1 = interface
|
|
|
|
{
|
2002-07-05 18:48:41 +02:00
|
|
|
echo `chain_base $1`_in
|
2002-05-18 15:45:23 +02:00
|
|
|
}
|
|
|
|
|
2002-07-05 17:56:02 +02:00
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Output Chain for an interface #
|
2002-07-05 17:56:02 +02:00
|
|
|
################################################################################
|
|
|
|
output_chain() # $1 = interface
|
|
|
|
{
|
2002-07-05 18:48:41 +02:00
|
|
|
echo `chain_base $1`_out
|
2002-07-05 17:56:02 +02:00
|
|
|
}
|
|
|
|
|
2002-07-05 23:57:37 +02:00
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Masquerade Chain for an interface #
|
2002-07-05 23:57:37 +02:00
|
|
|
################################################################################
|
|
|
|
masq_chain() # $1 = interface
|
|
|
|
{
|
|
|
|
echo `chain_base $1`_masq
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# DNAT Chain from a zone #
|
2002-07-05 23:57:37 +02:00
|
|
|
################################################################################
|
|
|
|
dnat_chain() # $1 = zone
|
|
|
|
{
|
|
|
|
echo ${1}_dnat
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# SNAT Chain to a zone #
|
2002-07-05 23:57:37 +02:00
|
|
|
################################################################################
|
|
|
|
snat_chain() # $1 = zone
|
|
|
|
{
|
|
|
|
echo ${1}_snat
|
|
|
|
}
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# First chains for an interface #
|
2002-05-18 15:45:23 +02:00
|
|
|
################################################################################
|
|
|
|
first_chains() #$1 = interface
|
|
|
|
{
|
|
|
|
local c=`chain_base $1`
|
|
|
|
|
|
|
|
echo ${c}_fwd ${c}_in
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
# Find hosts in a given zone #
|
|
|
|
# #
|
2002-07-06 00:24:40 +02:00
|
|
|
# Read hosts file and for each record matching the passed ZONE, #
|
2002-05-01 01:13:15 +02:00
|
|
|
# echo the expanded contents of the "HOST(S)" column #
|
|
|
|
################################################################################
|
|
|
|
find_hosts() # $1 = host zone
|
|
|
|
{
|
|
|
|
local hosts
|
|
|
|
|
|
|
|
while read z hosts options; do
|
|
|
|
[ "x`expand $z`" = "x$1" ] && expandv hosts && echo `separate_list $hosts`
|
|
|
|
done < $TMP_DIR/hosts
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Determine the interfaces on the firewall #
|
|
|
|
# #
|
|
|
|
# For each zone, create a variable called ${zone}_interfaces. This #
|
|
|
|
# variable contains a space-separated list of interfaces to the zone #
|
|
|
|
################################################################################
|
|
|
|
determine_interfaces() {
|
2002-05-18 21:04:45 +02:00
|
|
|
for zone in $zones; do
|
2002-05-01 01:13:15 +02:00
|
|
|
interfaces=`find_interfaces $zone`
|
|
|
|
interfaces=`echo $interfaces` # Remove extra trash
|
|
|
|
eval ${zone}_interfaces="\$interfaces"
|
|
|
|
done
|
|
|
|
}
|
2002-07-05 17:56:02 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
# Determine the defined hosts in each zone and generate report #
|
|
|
|
################################################################################
|
|
|
|
determine_hosts() {
|
2002-07-09 17:44:49 +02:00
|
|
|
do_a_zone()
|
2002-05-01 01:13:15 +02:00
|
|
|
{
|
2002-07-06 00:24:40 +02:00
|
|
|
eval interfaces=\$${zone}_interfaces
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
for interface in $interfaces; do
|
|
|
|
if [ -z "$hosts" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
hosts=$interface:0.0.0.0/0
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
hosts="$hosts $interface:0.0.0.0/0"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2002-07-20 00:51:28 +02:00
|
|
|
recalculate_interfaces()
|
2002-07-09 17:44:49 +02:00
|
|
|
{
|
|
|
|
interfaces=
|
|
|
|
|
|
|
|
for host in $hosts; do
|
|
|
|
interface=${host%:*}
|
|
|
|
if ! list_search $interface $interfaces; then
|
|
|
|
if [ -z "$interfaces" ]; then
|
|
|
|
interfaces=$interface
|
|
|
|
else
|
|
|
|
interfaces="$interfaces $interface"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
eval ${zone}_interfaces="\$interfaces"
|
|
|
|
}
|
|
|
|
|
2002-05-18 21:04:45 +02:00
|
|
|
for zone in $zones; do
|
2002-05-01 01:13:15 +02:00
|
|
|
hosts=`find_hosts $zone`
|
|
|
|
hosts=`echo $hosts` # Remove extra trash
|
|
|
|
|
2002-07-20 00:51:28 +02:00
|
|
|
if [ -n "MERGE_HOSTS" ]; then
|
2002-07-23 00:31:07 +02:00
|
|
|
####################################################################
|
|
|
|
# Zone will be the union of its host and interface definitions
|
|
|
|
#
|
2002-07-20 00:51:28 +02:00
|
|
|
do_a_zone
|
|
|
|
recalculate_interfaces
|
|
|
|
elif [ -n "$hosts" ]; then
|
2002-07-09 17:44:49 +02:00
|
|
|
####################################################################
|
|
|
|
# Zone is defined in terms of hosts -- derive the interface list
|
|
|
|
# from the host list
|
|
|
|
#
|
2002-07-20 00:51:28 +02:00
|
|
|
recalculate_interfacess
|
2002-07-09 17:44:49 +02:00
|
|
|
else
|
2002-05-01 01:13:15 +02:00
|
|
|
####################################################################
|
|
|
|
# If no hosts are defined for a zone then the zone consists of any
|
|
|
|
# host that can send us messages via the interfaces to the zone
|
|
|
|
#
|
2002-07-09 17:44:49 +02:00
|
|
|
do_a_zone
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
eval ${zone}_hosts="\$hosts"
|
|
|
|
|
|
|
|
if [ -n "$hosts" ]; then
|
|
|
|
eval display=\$${zone}_display
|
|
|
|
display_list "$display Zone:" $hosts
|
2002-05-18 21:04:45 +02:00
|
|
|
else
|
2002-05-30 14:55:47 +02:00
|
|
|
error_message "Warning: Zone $zone is empty"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Ensure that the passed zone is defined in the zones file or is the firewall #
|
|
|
|
################################################################################
|
|
|
|
validate_zone() # $1 = zone
|
|
|
|
{
|
2002-05-30 14:55:47 +02:00
|
|
|
list_search $1 $zones $FW
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Validate the zone names and options in the interfaces file #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
validate_interfaces_file() {
|
|
|
|
while read z interface subnet options; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv z interface subnet options
|
|
|
|
r="$z $interface $subnet $options"
|
2002-05-01 01:13:15 +02:00
|
|
|
[ "x$z" = "x-" ] || validate_zone $z || startup_error "Invalid zone ($z) in record \"$r\""
|
|
|
|
|
2002-06-18 17:44:17 +02:00
|
|
|
list_search $interface $all_interfaces && \
|
2002-06-18 19:53:24 +02:00
|
|
|
startup_error "Error: Duplicate Interface $interface"
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
all_interfaces="$all_interfaces $interface"
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
for option in `separate_list $options`; do
|
2002-05-01 01:13:15 +02:00
|
|
|
case $option in
|
2002-05-30 14:55:47 +02:00
|
|
|
dhcp|noping|filterping|routestopped|norfc1918|multi|routefilter|dropunclean|logunclean|blacklist|-)
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
error_message "Warning: Invalid option ($option) in record \"$r\""
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
[ -z "$all_interfaces" ] && startup_error "Error: No Interfaces Defined"
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/interfaces
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Validate the zone names and options in the hosts file #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
validate_hosts_file() {
|
|
|
|
while read z hosts options; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv z hosts options
|
2002-05-01 01:13:15 +02:00
|
|
|
r="$z $hosts $options"
|
|
|
|
validate_zone $z || startup_error "Invalid zone ($z) in record \"$r\""
|
|
|
|
|
2002-06-29 01:42:00 +02:00
|
|
|
interface=${hosts%:*}
|
|
|
|
|
|
|
|
list_search $interface $all_interfaces || \
|
|
|
|
startup_error "Unknown interface ($interface) in record \"$r\""
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
for option in `separate_list $options`; do
|
2002-05-01 01:13:15 +02:00
|
|
|
case $option in
|
|
|
|
routestopped|-)
|
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
error_message "Warning: Invalid option ($option) in record \"$r\""
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
done < $TMP_DIR/hosts
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Format a match by the passed MAC address #
|
2002-05-01 01:13:15 +02:00
|
|
|
# The passed address begins with "~" and uses "-" as a separator between bytes #
|
2002-07-06 00:24:40 +02:00
|
|
|
# Example: ~01-02-03-04-05-06 #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
mac_match() # $1 = MAC address formated as described above
|
|
|
|
{
|
|
|
|
echo "--match mac --mac-source `echo $1 | sed 's/~//;s/-/:/g'`"
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# validate a record from the rules file #
|
|
|
|
# #
|
|
|
|
# The caller has loaded the column contents from the record into the following #
|
|
|
|
# variables: #
|
|
|
|
# #
|
|
|
|
# target clients servers protocol ports cports address #
|
|
|
|
# #
|
|
|
|
# and has loaded a space-separated list of their values in "rule". #
|
|
|
|
################################################################################
|
|
|
|
validate_rule() {
|
2002-06-02 19:05:51 +02:00
|
|
|
############################################################################
|
|
|
|
# Ensure that the passed comma-separated list has 15 or fewer elements
|
|
|
|
#
|
|
|
|
validate_list() {
|
2002-07-06 00:24:40 +02:00
|
|
|
local temp=`separate_list $1`
|
2002-06-02 19:05:51 +02:00
|
|
|
|
|
|
|
[ `echo $temp | wc -w` -le 15 ]
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
############################################################################
|
|
|
|
# validate one rule
|
|
|
|
#
|
|
|
|
validate_a_rule() {
|
2002-07-06 00:24:40 +02:00
|
|
|
########################################################################
|
2002-05-01 01:13:15 +02:00
|
|
|
# Determine the format of the client
|
|
|
|
#
|
|
|
|
cli=
|
|
|
|
|
|
|
|
[ -n "$client" ] && case "$client" in
|
|
|
|
-)
|
|
|
|
;;
|
2002-07-06 00:24:40 +02:00
|
|
|
~*)
|
2002-05-01 01:13:15 +02:00
|
|
|
cli=`mac_match $client`
|
|
|
|
;;
|
|
|
|
[0-9]*|![0-9]*)
|
|
|
|
#
|
|
|
|
# IP Address, address or subnet
|
|
|
|
#
|
|
|
|
cli="-s $client"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
#
|
|
|
|
# Assume that this is a device name
|
|
|
|
#
|
|
|
|
cli="-i $client"
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
dest_interface=
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
[ -n "$server" ] && case "$server" in
|
|
|
|
-)
|
2002-07-06 00:24:40 +02:00
|
|
|
serv=
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
[0-9]*|![0-9]*)
|
2002-07-06 00:24:40 +02:00
|
|
|
serv=$server
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
~*)
|
|
|
|
fatal_error "Error: Rule \"$rule\" - Server may not be specified by MAC Address"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
dest_interface="-o $server"
|
|
|
|
serv=
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
################################################################
|
|
|
|
# Setup PROTOCOL, PORT and STATE variables
|
|
|
|
#
|
|
|
|
sports=""
|
|
|
|
dports=""
|
|
|
|
state="-m state --state NEW"
|
|
|
|
proto=$protocol
|
|
|
|
addr=$address
|
2002-07-06 00:24:40 +02:00
|
|
|
servport=$serverport
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
case $proto in
|
2002-05-01 01:13:15 +02:00
|
|
|
tcp|udp|TCP|UDP|6|17)
|
2002-07-06 00:24:40 +02:00
|
|
|
[ -n "$port" ] && [ "x${port}" != "x-" ] && \
|
2002-05-01 01:13:15 +02:00
|
|
|
dports="--dport $port"
|
|
|
|
[ -n "$cport" ] && [ "x${cport}" != "x-" ] && \
|
|
|
|
sports="--sport $cport"
|
|
|
|
;;
|
|
|
|
icmp|ICMP|0)
|
|
|
|
[ -n "$port" ] && dports="--icmp-type $port"
|
|
|
|
state=""
|
|
|
|
;;
|
|
|
|
related|RELATED)
|
|
|
|
proto=
|
|
|
|
state="-m state --state RELATED"
|
|
|
|
;;
|
|
|
|
*)
|
2002-05-30 14:55:47 +02:00
|
|
|
[ -n "$port" ] && [ "x${port}" != "x-" ] && \
|
|
|
|
startup_error "Port number not allowed with protocol " \
|
2002-07-06 00:24:40 +02:00
|
|
|
"\"$proto\"; rule: \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
proto="${proto:+-p $proto}"
|
|
|
|
|
2002-05-18 21:04:45 +02:00
|
|
|
case "$logtarget" in
|
|
|
|
REJECT)
|
|
|
|
target=reject
|
2002-07-17 23:42:30 +02:00
|
|
|
[ -n "$servport" ] && \
|
|
|
|
startup_error "Error: server port may not be specified in a REJECT rule;"\
|
|
|
|
"rule: \"$rule\""
|
|
|
|
;;
|
|
|
|
ACCEPT)
|
|
|
|
[ -n "$servport" ] && \
|
|
|
|
startup_error "Error: server port may not be specified in an ACCEPT rule;"\
|
|
|
|
"rule: \"$rule\""
|
2002-05-18 21:04:45 +02:00
|
|
|
;;
|
|
|
|
REDIRECT)
|
2002-05-30 14:55:47 +02:00
|
|
|
[ -n "$serv" ] && startup_error "Error: REDIRECT rules cannot"\
|
|
|
|
" specify a server IP; rule: \"$rule\""
|
2002-05-18 21:04:45 +02:00
|
|
|
servport=${servport:=$port}
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
DNAT)
|
|
|
|
[ -n "$serv" ] || startup_error "Error: DNAT rules require a" \
|
|
|
|
" server address; rule: \"$rule\""
|
|
|
|
;;
|
2002-05-18 21:04:45 +02:00
|
|
|
esac
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
if [ -z "$proto" -a -z "$cli" -a -z "$serv" -a -z "$servport" ]; then
|
2002-05-30 14:55:47 +02:00
|
|
|
error_message "Warning -- Rule \"$rule\" is a POLICY"
|
2002-07-06 00:24:40 +02:00
|
|
|
error_message " -- and should be moved to the policy file"
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
if [ -n "${serv}${servport}" ]; then
|
|
|
|
##################################################################
|
|
|
|
# Destination is a Specific Server or we're redirecting a port
|
|
|
|
#
|
|
|
|
if [ -n "$addr" -a "$addr" != "$serv" ]; then
|
|
|
|
##############################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Must use Prerouting DNAT
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
if [ -z "$NAT_ENABLED" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
startup_error \
|
|
|
|
"Error - Rule \"$rule\" requires NAT which is disabled"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$target" != "ACCEPT" ]; then
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error - Only ACCEPT rules may specify " \
|
2002-07-06 00:24:40 +02:00
|
|
|
"port mapping; rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
fi
|
2002-07-06 00:24:40 +02:00
|
|
|
else
|
2002-05-01 01:13:15 +02:00
|
|
|
[ -n "$addr" ] && startup_error \
|
2002-07-06 00:24:40 +02:00
|
|
|
"Error: An ADDRESS ($addr) is only allowed in" \
|
|
|
|
" a DNAT or REDIRECT rule: \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
############################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# V a l i d a t e _ R u l e S t a r t s H e r e
|
2002-05-01 01:13:15 +02:00
|
|
|
############################################################################
|
|
|
|
# Parse the Target and Clients columns
|
|
|
|
#
|
|
|
|
if [ "$target" = "${target%:*}" ]; then
|
|
|
|
loglevel=
|
|
|
|
else
|
|
|
|
loglevel="${target#*:}"
|
|
|
|
target="${target%:*}"
|
|
|
|
expandv loglevel
|
|
|
|
fi
|
|
|
|
|
|
|
|
logtarget="$target"
|
2002-05-18 15:45:23 +02:00
|
|
|
#
|
|
|
|
# DNAT and REDIRECT targets were implemented in version 1.3 to replace
|
|
|
|
# an older syntax. We simply map the new syntax into the old and proceed;
|
|
|
|
# that way, people who have files with the old syntax don't need to
|
|
|
|
# convert right away.
|
|
|
|
#
|
|
|
|
case $target in
|
|
|
|
DNAT)
|
2002-07-06 00:24:40 +02:00
|
|
|
target=ACCEPT
|
2002-07-09 17:44:49 +02:00
|
|
|
address=${address:=detect}
|
2002-05-18 15:45:23 +02:00
|
|
|
;;
|
|
|
|
REDIRECT)
|
2002-07-06 00:24:40 +02:00
|
|
|
target=ACCEPT
|
2002-05-18 15:45:23 +02:00
|
|
|
address=${address:=all}
|
|
|
|
if [ "x-" = "x$servers" ]; then
|
|
|
|
servers=$FW
|
|
|
|
else
|
|
|
|
servers="fw::$servers"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
ACCEPT|DROP|REJECT)
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-18 15:45:23 +02:00
|
|
|
*)
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Invalid target;" \
|
2002-07-06 00:24:40 +02:00
|
|
|
" rule: \"$rule\""
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
if [ "$clients" = "${clients%:*}" ]; then
|
|
|
|
clientzone="$clients"
|
|
|
|
clients=
|
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
clientzone="${clients%:*}"
|
|
|
|
clients="${clients#*:}"
|
2002-07-17 20:55:08 +02:00
|
|
|
[ -z "$clientzone" -o -z "$clients" ] && \
|
|
|
|
startup_error "Error: Empty source zone or qualifier: rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
if [ "$clientzone" = "${clientzone%\!*}" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
excludezones=
|
2002-05-18 15:45:23 +02:00
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
excludezones="${clientzone#*\!}"
|
|
|
|
clientzone="${clientzone%\!*}"
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
[ "$logtarget" = DNAT ] || [ "$logtarget" = REDIRECT ] ||\
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Exclude list only allowed with DNAT or REDIRECT"
|
2002-05-18 15:45:23 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
############################################################################
|
|
|
|
# Validate the Source Zone
|
|
|
|
|
|
|
|
if ! validate_zone $clientzone; then
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Undefined Client Zone in rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
source=$clientzone
|
|
|
|
|
|
|
|
[ $source = $FW ] && source_hosts= || eval source_hosts=\"\$${source}_hosts\"
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Parse the servers column
|
|
|
|
#
|
|
|
|
if [ "$servers" = "${servers%:*}" ] ; then
|
|
|
|
serverzone="$servers"
|
|
|
|
servers=
|
|
|
|
serverport=
|
|
|
|
else
|
|
|
|
serverzone="${servers%%:*}"
|
|
|
|
servers="${servers#*:}"
|
|
|
|
if [ "$servers" != "${servers%:*}" ] ; then
|
|
|
|
serverport="${servers#*:}"
|
|
|
|
servers="${servers%:*}"
|
2002-07-17 20:55:08 +02:00
|
|
|
[ -z "$serverzone" -o -z "$serverport" ] && \
|
|
|
|
startup_error "Error: Empty destination zone or server port: rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
|
|
|
serverport=
|
2002-07-17 20:55:08 +02:00
|
|
|
[ -z "$serverzone" -o -z "$servers" ] && \
|
|
|
|
startup_error "Error: Empty destination zone or qualifier: rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
############################################################################
|
|
|
|
# Validate the destination zone
|
|
|
|
#
|
|
|
|
if ! validate_zone $serverzone; then
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Undefined Server Zone in rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
dest=$serverzone
|
2002-06-02 19:05:51 +02:00
|
|
|
############################################################################
|
|
|
|
# Check length of port lists if MULTIPORT set
|
|
|
|
#
|
|
|
|
if [ -n "$MULTIPORT" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
validate_list $ports ||
|
2002-06-02 19:05:51 +02:00
|
|
|
error_message "Warning: Too many destination ports: Rule \"$rule\""
|
|
|
|
validate_list $cports ||
|
|
|
|
error_message "Warning: Too many source ports: Rule \"$rule\""
|
|
|
|
fi
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
############################################################################
|
|
|
|
# Iterate through the various lists validating individual rules
|
|
|
|
#
|
2002-05-18 15:45:23 +02:00
|
|
|
for client in `separate_list ${clients:=-}`; do
|
|
|
|
for server in `separate_list ${servers:=-}`; do
|
|
|
|
for port in `separate_list ${ports:=-}`; do
|
|
|
|
for cport in `separate_list ${cports:=-}`; do
|
|
|
|
validate_a_rule
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
|
|
|
done
|
|
|
|
done
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
echo " Rule \"$rule\" validated."
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# validate the rules file #
|
|
|
|
################################################################################
|
|
|
|
validate_rules() # $1 = name of rules file
|
|
|
|
{
|
|
|
|
strip_file rules
|
|
|
|
|
|
|
|
while read target clients servers protocol ports cports address; do
|
|
|
|
expandv clients servers protocol ports cports address
|
|
|
|
case "$target" in
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
ACCEPT*|DROP*|REJECT*|DNAT*|REDIRECT*)
|
2002-05-01 01:13:15 +02:00
|
|
|
rule="`echo $target $clients $servers $protocol $ports $cports $address`"
|
|
|
|
validate_rule
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
rule="`echo $target $clients $servers $protocol $ports $cports $address`"
|
|
|
|
startup_error "Error: Invalid Target - rule \"$rule\" ignored"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < $TMP_DIR/rules
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# validate the policy file #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
validate_policy()
|
|
|
|
{
|
|
|
|
strip_file policy $policy
|
|
|
|
|
|
|
|
while read client server policy loglevel synparams; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv client server policy loglevel synparams
|
2002-05-01 01:13:15 +02:00
|
|
|
case "$client" in
|
|
|
|
all|ALL)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if ! validate_zone $client; then
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Undefined zone $client"
|
2002-07-06 00:24:40 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
|
|
|
|
case "$server" in
|
|
|
|
all|ALL)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if ! validate_zone $server; then
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Undefined zone $server"
|
2002-07-06 00:24:40 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
|
|
|
|
case $policy in
|
|
|
|
ACCEPT|REJECT|DROP|CONTINUE)
|
|
|
|
;;
|
|
|
|
*)
|
2002-05-30 14:55:47 +02:00
|
|
|
startup_error "Error: Invalid policy $policy"
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
2002-07-06 00:24:40 +02:00
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
done < $TMP_DIR/policy
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Find broadcast addresses #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
2002-05-18 21:04:45 +02:00
|
|
|
find_broadcasts() {
|
2002-05-01 01:13:15 +02:00
|
|
|
while read z interface bcast options; do
|
2002-05-18 21:04:45 +02:00
|
|
|
expandv interface bcast
|
|
|
|
if [ "x$bcast" = "xdetect" ]; then
|
|
|
|
addr="`ip addr show $interface 2> /dev/null`"
|
|
|
|
if [ -n "`echo "$addr" | grep 'inet.*brd '`" ]; then
|
|
|
|
addr="`echo "$addr" | \
|
|
|
|
grep "inet " | sed 's/^.* inet.*brd //;s/scope.*//'`"
|
|
|
|
echo $addr | cut -d' ' -f 1
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
2002-05-18 21:04:45 +02:00
|
|
|
elif [ "x${bcast}" != "x-" ]; then
|
|
|
|
echo `separate_list $bcast`
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
done < $TMP_DIR/interfaces
|
|
|
|
}
|
|
|
|
|
2002-07-09 17:44:49 +02:00
|
|
|
################################################################################
|
|
|
|
# Find interface address--returns the first IP address assigned to the passed #
|
|
|
|
# device #
|
|
|
|
################################################################################
|
|
|
|
find_interface_address() # $1 = interface
|
|
|
|
{
|
|
|
|
#
|
|
|
|
# get the line of output containing the first IP address
|
|
|
|
#
|
|
|
|
addr=`ip addr show $1 2> /dev/null | grep inet | head -n1`
|
|
|
|
#
|
|
|
|
# If there wasn't one, bail out now
|
|
|
|
#
|
|
|
|
[ -n "$addr" ] || fatal_error "Can't determine the IP address of $1"
|
|
|
|
#
|
|
|
|
# Strip off the trailing VLSM mask (or the peer IP in case of a P-t-P link)
|
|
|
|
# along with everything else on the line
|
|
|
|
#
|
|
|
|
echo $addr | sed 's/inet //;s/\/.*//;s/ peer.*//'
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
# Find interfaces that have the passed option specified #
|
|
|
|
################################################################################
|
|
|
|
find_interfaces_by_option() # $1 = option
|
|
|
|
{
|
|
|
|
while read ignore interface subnet options; do
|
|
|
|
expandv options
|
2002-05-30 14:55:47 +02:00
|
|
|
list_search $1 `separate_list $options` && \
|
2002-06-15 19:28:46 +02:00
|
|
|
echo `expand $interface`
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/interfaces
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Find hosts with the passed option #
|
|
|
|
################################################################################
|
|
|
|
find_hosts_by_option() # $1 = option
|
|
|
|
{
|
|
|
|
while read ignore hosts options; do
|
|
|
|
expandv options
|
2002-05-30 14:55:47 +02:00
|
|
|
list_search $1 `separate_list $options` && \
|
|
|
|
echo `expand $hosts`
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/hosts
|
|
|
|
|
|
|
|
while read ignore interface ignore1 options; do
|
|
|
|
expandv options
|
2002-05-30 14:55:47 +02:00
|
|
|
list_search $1 `separate_list $options` && \
|
2002-06-17 19:50:45 +02:00
|
|
|
echo `expand $interface`:0.0.0.0/0
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/interfaces
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Determine if there are interfaces of the given zone and option #
|
|
|
|
# #
|
|
|
|
# Returns zero if any such interfaces are found and returns one otherwise. #
|
|
|
|
################################################################################
|
|
|
|
have_interfaces_in_zone_with_option() # $1 = zone, $2 = option
|
|
|
|
{
|
|
|
|
local zne=$1
|
|
|
|
|
|
|
|
while read z interface broadcast options; do
|
2002-05-30 14:55:47 +02:00
|
|
|
[ "x`expand $z`" = "x$zne" ] && expandv options && \
|
|
|
|
list_search $1 `separate_list $options` && \
|
|
|
|
return 0
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/interfaces
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Flush and delete all user-defined chains in the filter table #
|
|
|
|
################################################################################
|
|
|
|
deleteallchains() {
|
|
|
|
run_iptables -F
|
|
|
|
run_iptables -X
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Source a user exit file if it exists #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
run_user_exit() # $1 = file name
|
|
|
|
{
|
|
|
|
local user_exit=`find_file $1`
|
|
|
|
|
|
|
|
if [ -f $user_exit ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
echo "Processing $user_exit ..."
|
2002-05-01 01:13:15 +02:00
|
|
|
. $user_exit
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Stop the Firewall - #
|
|
|
|
################################################################################
|
|
|
|
stop_firewall() {
|
|
|
|
stopping="Yes"
|
|
|
|
|
|
|
|
deletechain shorewall
|
|
|
|
|
|
|
|
run_user_exit stop
|
|
|
|
|
|
|
|
[ -n "$MANGLE_ENABLED" ] && \
|
|
|
|
run_iptables -t mangle -F && \
|
|
|
|
run_iptables -t mangle -X
|
|
|
|
|
|
|
|
[ -n "$NAT_ENABLED" ] && delete_nat
|
|
|
|
delete_proxy_arp
|
|
|
|
[ -n "$TC_ENABLED" ] && delete_tc
|
|
|
|
|
|
|
|
setpolicy INPUT DROP
|
|
|
|
setpolicy OUTPUT DROP
|
|
|
|
setpolicy FORWARD DROP
|
|
|
|
|
|
|
|
deleteallchains
|
|
|
|
|
|
|
|
hosts="`find_hosts_by_option routestopped`"
|
|
|
|
|
2002-07-11 02:01:45 +02:00
|
|
|
strip_file routestopped
|
|
|
|
|
|
|
|
while read interface host; do
|
2002-07-11 18:15:40 +02:00
|
|
|
expandv interface host
|
|
|
|
[ "x$host" = "x-" ] && host=
|
2002-07-11 02:01:45 +02:00
|
|
|
hosts="$hosts $interface:${host:-0.0.0.0/0}"
|
|
|
|
done < $TMP_DIR/routestopped
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
for host in $hosts; do
|
|
|
|
interface=${host%:*}
|
|
|
|
subnet=${host#*:}
|
|
|
|
iptables -A INPUT -i $interface -s $subnet -j ACCEPT
|
|
|
|
iptables -A OUTPUT -o $interface -d $subnet -j ACCEPT
|
|
|
|
|
|
|
|
for host1 in $hosts; do
|
|
|
|
[ "$host" != "$host1" ] && \
|
|
|
|
iptables -A FORWARD -i $interface -s $subnet \
|
|
|
|
-o ${host1%:*} -d ${host1#*:} -j ACCEPT
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
iptables -A INPUT -i lo -j ACCEPT
|
|
|
|
iptables -A OUTPUT -o lo -j ACCEPT
|
|
|
|
|
|
|
|
|
|
|
|
for interface in `find_interfaces_by_option dhcp`; do
|
|
|
|
iptables -A INPUT -p udp -i $interface --dport 67:68 -j ACCEPT
|
|
|
|
iptables -A OUTPUT -p udp -o $interface --dport 67:68 -j ACCEPT
|
|
|
|
done
|
|
|
|
|
|
|
|
case "$IP_FORWARDING" in
|
|
|
|
[Oo][Nn])
|
2002-07-06 00:24:40 +02:00
|
|
|
echo 1 > /proc/sys/net/ipv4/ip_forward
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
[Oo][Ff][Ff])
|
2002-07-06 00:24:40 +02:00
|
|
|
echo 0 > /proc/sys/net/ipv4/ip_forward
|
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
|
2002-07-11 18:15:40 +02:00
|
|
|
run_user_exit stopped
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
logger "Shorewall Stopped"
|
|
|
|
|
|
|
|
rm -rf $TMP_DIR
|
|
|
|
|
|
|
|
case $command in
|
|
|
|
stop|clear)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
#
|
|
|
|
# The firewall is being stopped when we were trying to do something
|
|
|
|
# else. Remove the lock file and Kill the shell in case we're in a
|
|
|
|
# subshell
|
|
|
|
#
|
|
|
|
my_mutex_off
|
2002-07-06 00:24:40 +02:00
|
|
|
kill $$
|
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Remove all rules and remove all user-defined chains #
|
|
|
|
################################################################################
|
|
|
|
clear_firewall() {
|
|
|
|
stop_firewall
|
|
|
|
|
2002-06-18 19:53:24 +02:00
|
|
|
run_iptables -F
|
|
|
|
|
2002-06-18 19:56:00 +02:00
|
|
|
echo 1 > /proc/sys/net/ipv4/ip_forward
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
setpolicy INPUT ACCEPT
|
|
|
|
setpolicy FORWARD ACCEPT
|
|
|
|
setpolicy OUTPUT ACCEPT
|
|
|
|
|
|
|
|
run_user_exit clear
|
|
|
|
|
|
|
|
logger "Shorewall Cleared"
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Set up ipsec tunnels #
|
|
|
|
################################################################################
|
|
|
|
setup_tunnels() # $1 = name of tunnels file
|
|
|
|
{
|
|
|
|
local inchain
|
|
|
|
local outchain
|
|
|
|
|
2002-06-21 17:57:01 +02:00
|
|
|
setup_one_ipsec() # $1 = gateway $2 = gateway zone
|
2002-05-01 01:13:15 +02:00
|
|
|
{
|
2002-05-18 15:45:23 +02:00
|
|
|
options="-m state --state NEW -j ACCEPT"
|
2002-07-06 00:24:40 +02:00
|
|
|
addrule $inchain -p 50 -s $1 $options
|
|
|
|
addrule $outchain -p 50 -d $1 $options
|
|
|
|
run_iptables -A $inchain -p 51 -s $1 $options
|
|
|
|
run_iptables -A $outchain -p 51 -d $1 $options
|
2002-06-21 17:57:01 +02:00
|
|
|
run_iptables -A $inchain -p udp -s $1 --sport 500 --dport 500 $options
|
|
|
|
run_iptables -A $outchain -p udp -d $1 --dport 500 --sport 500 $options
|
|
|
|
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
if validate_zone $2; then
|
|
|
|
addrule ${FW}2${2} -p udp --sport 500 --dport 500 $options
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
2002-06-21 17:57:01 +02:00
|
|
|
error_message "Warning: Invalid gateway zone ($2)" \
|
2002-05-01 01:13:15 +02:00
|
|
|
" -- Tunnel \"$tunnel\" may encounter keying problems"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " IPSEC tunnel to $gateway defined."
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
2002-06-21 17:57:01 +02:00
|
|
|
setup_one_other() # $1 = TYPE, $2 = gateway, $3 = protocol
|
2002-05-01 01:13:15 +02:00
|
|
|
{
|
2002-05-18 15:45:23 +02:00
|
|
|
options="-m state --state NEW -j ACCEPT"
|
2002-05-01 01:13:15 +02:00
|
|
|
addrule $inchain -p $3 -s $2 $options
|
|
|
|
addrule $outchain -p $3 -d $2 $options
|
|
|
|
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " $1 tunnel to $gateway defined."
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
strip_file tunnels $1
|
|
|
|
|
|
|
|
while read kind z gateway z1; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv kind z gateway z1
|
2002-05-01 01:13:15 +02:00
|
|
|
tunnel="`echo $kind $z $gateway $z1`"
|
2002-07-06 00:24:40 +02:00
|
|
|
if validate_zone $z; then
|
2002-06-21 17:57:01 +02:00
|
|
|
inchain=${z}2${FW}
|
|
|
|
outchain=${FW}2${z}
|
|
|
|
case $kind in
|
|
|
|
ipsec|IPSEC)
|
|
|
|
setup_one_ipsec $gateway $z1
|
|
|
|
;;
|
|
|
|
ipip|IPIP)
|
|
|
|
setup_one_other IPIP $gateway 4
|
|
|
|
;;
|
|
|
|
gre|GRE)
|
|
|
|
setup_one_other GRE $gateway 47
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
error_message "Tunnels of type $kind are not supported:" \
|
|
|
|
"Tunnel \"$tunnel\" Ignored"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
error_message "Invalid gateway zone ($z)" \
|
|
|
|
" -- Tunnel \"$tunnel\" Ignored"
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/tunnels
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Setup Proxy ARP #
|
|
|
|
################################################################################
|
|
|
|
setup_proxy_arp() {
|
|
|
|
|
|
|
|
print_error() {
|
|
|
|
error_message "Invalid value for HAVEROUTE - ($haveroute)"
|
|
|
|
error_message "Entry \"$address $interface $external $haveroute\" ignored"
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_one_proxy_arp() {
|
2002-07-06 00:24:40 +02:00
|
|
|
case $haveroute in
|
2002-05-01 01:13:15 +02:00
|
|
|
[Nn][Oo])
|
|
|
|
haveroute=
|
|
|
|
;;
|
2002-07-06 00:24:40 +02:00
|
|
|
[Yy][Ee][Ss])
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
2002-07-06 00:24:40 +02:00
|
|
|
*)
|
2002-05-01 01:13:15 +02:00
|
|
|
if [ -n "$haveroute" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
print_error
|
2002-05-01 01:13:15 +02:00
|
|
|
return
|
2002-07-06 00:24:40 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
[ -z "$haveroute" ] && run_ip route add $address dev $interface
|
|
|
|
|
|
|
|
run_arp -Ds $address $external pub
|
|
|
|
|
|
|
|
echo 1 > /proc/sys/net/ipv4/conf/$interface/proxy_arp
|
|
|
|
echo 0 > /proc/sys/net/ipv4/conf/$external/proxy_arp
|
|
|
|
|
|
|
|
echo $address $interface $external $haveroute >> ${STATEDIR}/proxyarp
|
|
|
|
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " Host $address connected to $interface added to ARP on $external"
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
> ${STATEDIR}/proxyarp
|
|
|
|
|
|
|
|
strip_file proxyarp
|
|
|
|
|
|
|
|
while read address interface external haveroute; do
|
|
|
|
expandv address interface external haveroute
|
|
|
|
setup_one_proxy_arp
|
|
|
|
done < $TMP_DIR/proxyarp
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Set up SYN flood protection #
|
|
|
|
###############################################################################
|
|
|
|
setup_syn_flood_chain ()
|
|
|
|
# $1 = policy chain
|
|
|
|
# $2 = synparams
|
|
|
|
{
|
|
|
|
local chain=$1
|
|
|
|
local limit=${2%:*}
|
|
|
|
local limit_burst=${2#*:}
|
|
|
|
|
|
|
|
run_iptables -N @$chain
|
|
|
|
run_iptables -A @$chain \
|
2002-07-09 17:44:49 +02:00
|
|
|
-m limit --limit $limit --limit-burst $limit_burst \
|
|
|
|
-j RETURN
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -A @$chain -j DROP
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Enable SYN flood protection on a chain #
|
|
|
|
# -----------------------------------------------------------------------------#
|
|
|
|
# Insert a jump rule to the protection chain from the first chain. Inserted #
|
2002-07-06 00:24:40 +02:00
|
|
|
# as the second rule and restrict the jump to SYN packets #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
enable_syn_flood_protection() # $1 = chain, $2 = protection chain
|
|
|
|
{
|
|
|
|
run_iptables -I $1 2 -p tcp --syn -j @$2
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " Enabled SYN flood protection"
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Delete existing Proxy ARP #
|
|
|
|
################################################################################
|
|
|
|
delete_proxy_arp() {
|
|
|
|
if [ -f ${STATEDIR}/proxyarp ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
while read address interface external haveroute; do
|
2002-05-01 01:13:15 +02:00
|
|
|
qt arp -i $external -d $address pub
|
|
|
|
[ -z "$haveroute" ] && qt ip route del $address dev $interface
|
|
|
|
|
|
|
|
echo 0 > /proc/sys/net/ipv4/conf/$external/proxy_arp
|
|
|
|
echo 0 > /proc/sys/net/ipv4/conf/$interface/proxy_arp
|
|
|
|
done < ${STATEDIR}/proxyarp
|
|
|
|
|
|
|
|
rm -f ${STATEDIR}/proxyarp
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -d ${STATEDIR} ] && touch ${STATEDIR}/proxyarp
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Setup Static Network Address Translation (NAT) #
|
|
|
|
################################################################################
|
|
|
|
setup_nat() {
|
|
|
|
local allints
|
|
|
|
#
|
|
|
|
# At this point, we're just interested in the network translation
|
|
|
|
#
|
|
|
|
> ${STATEDIR}/nat
|
|
|
|
|
|
|
|
strip_file nat
|
|
|
|
|
|
|
|
echo "Setting up NAT..."
|
|
|
|
|
|
|
|
while read external interface internal allints localnat; do
|
|
|
|
expandv external interface internal allints localnat
|
|
|
|
if [ -n "$ADD_IP_ALIASES" ]; then
|
|
|
|
qt ip addr del $external dev $interface
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$allints" -o "$allints" = "Yes" \
|
|
|
|
-o "$allints" = "yes" ]
|
|
|
|
then
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatrule nat_in -d $external -j DNAT --to-destination $internal
|
|
|
|
addnatrule nat_out -s $internal -j SNAT --to-source $external
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
if [ "$localnat" = "Yes" -o "$localnat" = "yes" ]; then
|
|
|
|
run_iptables -t nat -A OUTPUT -d $external \
|
|
|
|
-j DNAT --to-destination $internal
|
|
|
|
fi
|
|
|
|
else
|
2002-07-04 17:41:51 +02:00
|
|
|
addnatrule `input_chain $interface` \
|
2002-05-01 01:13:15 +02:00
|
|
|
-d $external -j DNAT --to-destination $internal
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatrule `output_chain $interface` \
|
2002-05-01 01:13:15 +02:00
|
|
|
-s $internal -j SNAT --to-source $external
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$ADD_IP_ALIASES" ]; then
|
2002-07-23 18:26:45 +02:00
|
|
|
list_search $external $aliases_to_add || \
|
|
|
|
aliases_to_add="$aliases_to_add $external $interface"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " Host $internal NAT $external on $interface"
|
2002-05-01 01:13:15 +02:00
|
|
|
done < $TMP_DIR/nat
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-05-30 14:55:47 +02:00
|
|
|
# Delete existing Static NAT #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
delete_nat() {
|
|
|
|
run_iptables -t nat -F
|
|
|
|
run_iptables -t nat -X
|
|
|
|
|
|
|
|
if [ -f ${STATEDIR}/nat ]; then
|
|
|
|
while read external interface; do
|
|
|
|
qt ip addr del $external dev $interface
|
|
|
|
done < ${STATEDIR}/nat
|
|
|
|
|
|
|
|
rm -f {$STATEDIR}/nat
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -d ${STATEDIR} ] && touch ${STATEDIR}/nat
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Process TC Rule #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
process_tc_rule()
|
|
|
|
{
|
|
|
|
add_a_tc_rule() {
|
|
|
|
r=
|
|
|
|
chain=tcpre
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
if [ "x$source" != "x-" ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
case $source in
|
|
|
|
[0-9]*)
|
|
|
|
r="-s $source "
|
|
|
|
;;
|
2002-07-06 00:24:40 +02:00
|
|
|
~*)
|
2002-05-01 01:13:15 +02:00
|
|
|
r=`mac_match $source`
|
|
|
|
;;
|
|
|
|
$FW)
|
2002-07-06 00:24:40 +02:00
|
|
|
chain=tcout
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
r="-i $source "
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
[ "x$dest" = "x-" ] || r="${r}-d $dest "
|
|
|
|
[ "$proto" = "all" ] || r="${r}-p $proto "
|
|
|
|
[ "x$port" = "x-" ] || r="${r}--dport $port "
|
|
|
|
[ "x$sport" = "x-" ] || r="${r}--sport $sport "
|
|
|
|
|
|
|
|
run_iptables -t mangle -A $chain $r -j MARK --set-mark $mark
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for source in `separate_list ${sources:=-}`; do
|
|
|
|
for dest in `separate_list ${dests:=-}`; do
|
|
|
|
for port in `separate_list ${ports:=-}`; do
|
|
|
|
for sport in `separate_list ${sports:=-}`; do
|
|
|
|
add_a_tc_rule
|
|
|
|
done
|
|
|
|
done
|
2002-07-06 00:24:40 +02:00
|
|
|
done
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
echo " TC Rule \"$rule\" added"
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Setup queuing and classes #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
setup_tc() {
|
|
|
|
|
|
|
|
echo "Setting up Traffic Control Rules..."
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create the TC mangle chains
|
|
|
|
#
|
|
|
|
run_iptables -t mangle -N tcpre
|
|
|
|
run_iptables -t mangle -N tcout
|
|
|
|
#
|
|
|
|
# Process the TC Rules File
|
|
|
|
#
|
|
|
|
strip_file tcrules
|
|
|
|
|
|
|
|
while read mark sources dests proto ports sports; do
|
|
|
|
expandv mark sources dests proto ports sports
|
|
|
|
rule=`echo "$mark $sources $dests $proto $ports $sports"`
|
|
|
|
process_tc_rule
|
|
|
|
done < $TMP_DIR/tcrules
|
|
|
|
#
|
|
|
|
# Link to the TC mangle chains from the main chains
|
|
|
|
#
|
|
|
|
run_iptables -t mangle -A PREROUTING -j tcpre
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -t mangle -A OUTPUT -j tcout
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
run_user_exit tcstart
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Clear Traffic Shaping #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
delete_tc()
|
|
|
|
{
|
|
|
|
clear_one_tc() {
|
2002-07-06 00:24:40 +02:00
|
|
|
tc qdisc del dev $1 root 2> /dev/null
|
2002-05-01 01:13:15 +02:00
|
|
|
tc qdisc del dev $1 ingress 2> /dev/null
|
|
|
|
}
|
|
|
|
|
|
|
|
run_user_exit tcclear
|
|
|
|
|
|
|
|
run_ip link list | \
|
|
|
|
while read inx interface details; do
|
|
|
|
case $inx in
|
|
|
|
[0-9]*)
|
|
|
|
clear_one_tc ${interface%:}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Add a NAT rule - Helper function for the rules file processor #
|
2002-06-19 23:51:36 +02:00
|
|
|
#------------------------------------------------------------------------------#
|
2002-07-06 00:24:40 +02:00
|
|
|
# The caller has established the following variables: #
|
|
|
|
# cli = Source IP, interface or MAC Specification #
|
|
|
|
# serv = Destination IP Specification #
|
|
|
|
# servport = Port the server is listening on #
|
|
|
|
# dest_interface = Destination Interface Specification #
|
|
|
|
# proto = Protocol Specification #
|
|
|
|
# addr = Original Destination Address #
|
|
|
|
# dports = Destination Port Specification. 'dports' may be changed #
|
|
|
|
# by this function #
|
|
|
|
# cport = Source Port Specification #
|
|
|
|
# multiport = String to invoke multiport match if appropriate #
|
2002-06-19 23:51:36 +02:00
|
|
|
################################################################################
|
|
|
|
add_nat_rule() {
|
|
|
|
local chain
|
|
|
|
|
|
|
|
# Be sure NAT is enabled
|
|
|
|
|
|
|
|
if [ -z "$NAT_ENABLED" ]; then
|
|
|
|
fatal_error \
|
|
|
|
"Error - Rule \"$rule\" requires NAT which is disabled"
|
|
|
|
fi
|
2002-06-02 19:05:51 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Onle ACCEPT (plus DNAT and REDIRECT) may result in NAT
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
if [ "$target" != "ACCEPT" ]; then
|
|
|
|
fatal_error "Error - Only DNAT and REDIRECT rules may specify " \
|
|
|
|
"port mapping; rule \"$rule\""
|
|
|
|
fi
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Parse SNAT address if any
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
if [ "$addr" != "${addr%:*}" ]; then
|
|
|
|
snat="${addr#*:}"
|
|
|
|
addr="${addr%:*}"
|
|
|
|
else
|
|
|
|
snat=""
|
|
|
|
fi
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Set original destination address
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-07-09 17:44:49 +02:00
|
|
|
case $addr in
|
|
|
|
all)
|
|
|
|
addr=
|
|
|
|
;;
|
|
|
|
detect)
|
|
|
|
addr=
|
2002-07-09 23:21:28 +02:00
|
|
|
if [ -n "$DETECT_DNAT_IPADDRS" -a "$source" != "$FW" ]; then
|
2002-07-09 17:44:49 +02:00
|
|
|
eval interfaces=\$${source}_interfaces
|
|
|
|
for interface in $interfaces; do
|
|
|
|
addr="`find_interface_address $interface` $addr"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
addr=${addr:-0.0.0.0/0}
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Select target
|
|
|
|
|
|
|
|
if [ -n "$serv" ]; then
|
|
|
|
servport="${servport:+:$servport}"
|
|
|
|
target1="DNAT --to-destination ${serv}${servport}"
|
|
|
|
else
|
|
|
|
target1="REDIRECT --to-port $servport"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Generate nat table rules
|
|
|
|
|
|
|
|
if [ "$source" = "$FW" ]; then
|
2002-07-09 17:44:49 +02:00
|
|
|
run_iptables -t nat -A OUTPUT $proto $sports -d addr
|
2002-07-04 01:31:50 +02:00
|
|
|
$multiport $dports -j $target1
|
2002-06-19 23:51:36 +02:00
|
|
|
else
|
2002-07-05 23:57:37 +02:00
|
|
|
chain=`dnat_chain $source`
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
if [ -n "$excludezones" ]; then
|
|
|
|
chain=nonat${nonat_seq}
|
|
|
|
nonat_seq=$(($nonat_seq + 1))
|
|
|
|
createnatchain $chain
|
2002-07-05 23:57:37 +02:00
|
|
|
addnatrule `dnat_chain $source` -j $chain
|
2002-06-19 23:51:36 +02:00
|
|
|
for z in $excludezones; do
|
|
|
|
eval hosts=\$${z}_hosts
|
|
|
|
for host in $hosts; do
|
2002-07-09 17:44:49 +02:00
|
|
|
for adr in $addr; do
|
|
|
|
addnatrule $chain $proto -s ${host#*:} \
|
|
|
|
$multiport $sports -d $adr $dports -j RETURN
|
|
|
|
done
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
2002-06-19 23:51:36 +02:00
|
|
|
done
|
2002-05-18 15:45:23 +02:00
|
|
|
fi
|
2002-07-09 17:44:49 +02:00
|
|
|
|
|
|
|
for adr in $addr; do
|
|
|
|
addnatrule $chain $proto $cli $sports \
|
|
|
|
-d $adr $multiport $dports -j $target1
|
|
|
|
done
|
2002-06-19 23:51:36 +02:00
|
|
|
fi
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Replace destination port by the new destination port
|
|
|
|
|
|
|
|
[ -n "$servport" ] && dports="--dport ${servport#*:}"
|
|
|
|
|
|
|
|
# Handle SNAT
|
|
|
|
|
|
|
|
if [ -n "$snat" ]; then
|
|
|
|
if [ -n "$cli" ]; then
|
2002-07-05 23:57:37 +02:00
|
|
|
addnatrule `snat_chain $dest` $proto $cli $multiport \
|
2002-06-19 23:51:36 +02:00
|
|
|
$sports -d $serv $dports -j SNAT --to-source $snat
|
|
|
|
else
|
|
|
|
for source_host in $source_hosts; do
|
2002-07-05 17:56:02 +02:00
|
|
|
[ "x${source_host#*:}" = "x0.0.0.0/0" ] && \
|
|
|
|
error_message "Warning: SNAT will occur on all connections to this server and port - rule \"$rule\""
|
|
|
|
|
2002-07-05 23:57:37 +02:00
|
|
|
addnatrule `snat_chain $dest` \
|
2002-07-04 01:31:50 +02:00
|
|
|
-s ${source_host#*:} $proto $sports $multiport \
|
2002-06-19 23:51:36 +02:00
|
|
|
-d $serv $dports -j SNAT --to-source $snat
|
|
|
|
done
|
2002-05-18 15:45:23 +02:00
|
|
|
fi
|
2002-06-19 23:51:36 +02:00
|
|
|
fi
|
|
|
|
}
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Add one Filter Rule -- Helper function for the rules file processor #
|
2002-06-19 23:51:36 +02:00
|
|
|
#------------------------------------------------------------------------------#
|
2002-07-06 00:24:40 +02:00
|
|
|
# The caller has established the following variables: #
|
|
|
|
# client = SOURCE IP or MAC #
|
|
|
|
# server = DESTINATION IP or interface #
|
|
|
|
# protocol = Protocol #
|
|
|
|
# address = Original Destination Address #
|
|
|
|
# port = Destination Port #
|
|
|
|
# cport = Source Port #
|
|
|
|
# multioption = String to invoke multiport match if appropriate #
|
|
|
|
# servport = Port the server listens on #
|
|
|
|
# chain = The canonical chain for this rule #
|
2002-06-19 23:51:36 +02:00
|
|
|
################################################################################
|
|
|
|
add_a_rule()
|
|
|
|
{
|
|
|
|
# Set source variables
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
cli=
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
[ -n "$client" ] && case "$client" in
|
|
|
|
-)
|
|
|
|
;;
|
|
|
|
[0-9]*|![0-9]*)
|
2002-07-06 00:24:40 +02:00
|
|
|
cli="-s $client"
|
2002-06-19 23:51:36 +02:00
|
|
|
;;
|
|
|
|
~*)
|
|
|
|
cli=`mac_match $client`
|
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
cli="-i $client"
|
2002-06-19 23:51:36 +02:00
|
|
|
;;
|
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Set destination variables
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
dest_interface=
|
|
|
|
|
|
|
|
[ -n "$server" ] && case "$server" in
|
|
|
|
-)
|
|
|
|
serv=
|
|
|
|
;;
|
|
|
|
[0-9]*|![0-9]*)
|
2002-07-06 00:24:40 +02:00
|
|
|
serv=$server
|
2002-06-19 23:51:36 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
dest_interface="-o $server"
|
|
|
|
serv=
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Setup protocol and port variables
|
|
|
|
|
|
|
|
sports=
|
|
|
|
dports=
|
|
|
|
state="-m state --state NEW"
|
|
|
|
proto=$protocol
|
|
|
|
addr=$address
|
|
|
|
servport=$serverport
|
|
|
|
multiport=
|
|
|
|
|
|
|
|
case $proto in
|
|
|
|
tcp|udp|TCP|UDP|6|17)
|
|
|
|
if [ -n "$port" -a "x${port}" != "x-" ]; then
|
|
|
|
[ -n "$multioption" ] && \
|
2002-06-03 01:14:51 +02:00
|
|
|
[ "$port" != "${port%,*}" ] && \
|
2002-06-19 23:51:36 +02:00
|
|
|
multiport="$multioption"
|
|
|
|
dports="--dport $port"
|
|
|
|
fi
|
2002-06-02 19:05:51 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
if [ -n "$cport" -a "x${cport}" != "x-" ]; then
|
|
|
|
[ -n "$multioption" ] && \
|
2002-06-03 01:14:51 +02:00
|
|
|
[ -z "$multiport" ] && \
|
|
|
|
[ "$cport" != "${cport%,*}" ] && \
|
2002-06-19 23:51:36 +02:00
|
|
|
multiport="$multioption"
|
|
|
|
sports="--sport $cport"
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
2002-06-25 18:11:27 +02:00
|
|
|
icmp|ICMP|1)
|
2002-06-19 23:51:36 +02:00
|
|
|
[ -n "$port" ] && [ "x${port}" != "x-" ] && \
|
|
|
|
dports="--icmp-type $port"
|
|
|
|
state=
|
|
|
|
;;
|
|
|
|
all|ALL)
|
|
|
|
[ -n "$port" ] && [ "x${port}" != "x-" ] && \
|
|
|
|
fatal_error "Port number not allowed with \"all\";" \
|
2002-07-06 00:24:40 +02:00
|
|
|
" rule: \"$rule\""
|
2002-06-19 23:51:36 +02:00
|
|
|
proto=
|
|
|
|
;;
|
|
|
|
related|RELATED)
|
|
|
|
proto=
|
|
|
|
state="-m state --state RELATED"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
[ -n "$port" ] && [ "x${port}" != "x-" ] && \
|
|
|
|
fatal_error "Port number not allowed with protocol " \
|
|
|
|
"\"$proto\"; rule: \"$rule\""
|
|
|
|
;;
|
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
proto="${proto:+-p $proto}"
|
|
|
|
|
|
|
|
# Some misc. setup
|
|
|
|
|
|
|
|
case "$logtarget" in
|
2002-05-18 15:45:23 +02:00
|
|
|
REJECT)
|
|
|
|
target=reject
|
2002-07-18 15:43:51 +02:00
|
|
|
[ -n "$servport" ] && \
|
|
|
|
fatal_error "Error: server port may not be specified in a REJECT rule;"\
|
|
|
|
"rule: \"$rule\""
|
2002-05-18 15:45:23 +02:00
|
|
|
;;
|
|
|
|
REDIRECT)
|
2002-05-30 14:55:47 +02:00
|
|
|
[ -n "$serv" ] && startup_error "Error: REDIRECT rules cannot"\
|
|
|
|
" specify a server IP; rule: \"$rule\""
|
2002-07-18 15:43:51 +02:00
|
|
|
[ -n "$servport" ] && \
|
|
|
|
startup_error "Error: server port may not be specified in an ACCEPT rule;" \
|
|
|
|
"rule: \"$rule\""
|
2002-05-18 15:45:23 +02:00
|
|
|
servport=${servport:=$port}
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
DNAT)
|
|
|
|
[ -n "$serv" ] || fatal_error "Error: DNAT rules require a" \
|
2002-06-19 23:51:36 +02:00
|
|
|
" server address; rule: \"$rule\""
|
2002-05-30 14:55:47 +02:00
|
|
|
;;
|
2002-06-19 23:51:36 +02:00
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Complain if the rule is really a policy
|
|
|
|
|
|
|
|
if [ -z "$proto" -a -z "$cli" -a -z "$serv" -a -z "$servport" ]; then
|
|
|
|
error_message "Warning -- Rule \"$rule\" is a POLICY"
|
2002-07-06 00:24:40 +02:00
|
|
|
error_message " -- and should be moved to the policy file"
|
2002-06-19 23:51:36 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
if [ -n "${serv}${servport}" ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# A specific server or server port given
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
[ -n "$addr" -a "$addr" != "$serv" ] && add_nat_rule
|
2002-06-02 19:05:51 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
serv="${serv:+-d $serv}"
|
|
|
|
|
|
|
|
[ -n "$loglevel" ] && run_iptables -A $chain $proto $multiport \
|
|
|
|
$state $cli $sports $serv $dports -j LOG $LOGPARMS \
|
|
|
|
--log-prefix "Shorewall:$chain:$logtarget:" \
|
|
|
|
--log-level $loglevel
|
|
|
|
run_iptables -A $chain $proto $multiport $state $cli $sports \
|
|
|
|
$serv $dports -j $target
|
|
|
|
else
|
|
|
|
|
|
|
|
# Destination is a simple zone
|
|
|
|
|
|
|
|
[ -n "$addr" ] && fatal_error \
|
|
|
|
"Error: An ADDRESS ($addr) is only allowed in" \
|
|
|
|
" a DNAT or REDIRECT: \"$rule\""
|
|
|
|
|
|
|
|
[ -n "$loglevel" ] && run_iptables -A $chain $proto $multiport \
|
|
|
|
$dest_interface $state $cli $sports $dports -j LOG \
|
|
|
|
$LOGPARMS --log-prefix "Shorewall:$chain:$logtarget:" \
|
|
|
|
--log-level $loglevel
|
|
|
|
|
|
|
|
run_iptables -A $chain $proto $multiport $dest_interface $state \
|
|
|
|
$cli $sports $dports -j $target
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Process a record from the rules file #
|
|
|
|
# #
|
|
|
|
# The caller has loaded the column contents from the record into the following #
|
|
|
|
# variables: #
|
|
|
|
# #
|
|
|
|
# target clients servers protocol ports cports address #
|
|
|
|
# #
|
|
|
|
# and has loaded a space-separated list of their values in "rule". #
|
|
|
|
# #
|
|
|
|
# The 'multioption' variable has also been loaded appropriately to reflect #
|
2002-07-06 00:24:40 +02:00
|
|
|
# the setting of the MULTIPORT option in /etc/shorewall/shorewall.conf #
|
2002-06-19 23:51:36 +02:00
|
|
|
################################################################################
|
|
|
|
process_rule() {
|
|
|
|
|
|
|
|
# Function to count list elements
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-02 19:05:51 +02:00
|
|
|
list_count() {
|
|
|
|
local temp=`separate_list $1`
|
|
|
|
|
|
|
|
echo $temp | wc -w
|
|
|
|
}
|
2002-06-19 23:51:36 +02:00
|
|
|
|
|
|
|
# Function Body -- isolate log level
|
|
|
|
|
|
|
|
if [ "$target" = "${target%:*}" ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
loglevel=
|
|
|
|
else
|
|
|
|
loglevel="${target#*:}"
|
|
|
|
target="${target%:*}"
|
|
|
|
expandv loglevel
|
|
|
|
fi
|
|
|
|
|
|
|
|
logtarget="$target"
|
2002-06-19 23:51:36 +02:00
|
|
|
|
|
|
|
# Convert 1.3 Rule formats to 1.2 format
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
case $target in
|
|
|
|
DNAT)
|
2002-07-06 00:24:40 +02:00
|
|
|
target=ACCEPT
|
2002-07-09 17:44:49 +02:00
|
|
|
address=${address:=detect}
|
2002-05-18 15:45:23 +02:00
|
|
|
;;
|
|
|
|
REDIRECT)
|
2002-07-06 00:24:40 +02:00
|
|
|
target=ACCEPT
|
2002-05-18 15:45:23 +02:00
|
|
|
address=${address:=all}
|
|
|
|
if [ "x-" = "x$servers" ]; then
|
|
|
|
servers=$FW
|
|
|
|
else
|
|
|
|
servers="$FW::$servers"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Parse and validate source
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
if [ "$clients" = "${clients%:*}" ]; then
|
|
|
|
clientzone="$clients"
|
|
|
|
clients=
|
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
clientzone="${clients%:*}"
|
|
|
|
clients="${clients#*:}"
|
2002-07-18 15:43:51 +02:00
|
|
|
[ -z "$clientzone" -o -z "$clients" ] && \
|
|
|
|
fatal_error "Error: Empty source zone or qualifier: rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
if [ "$clientzone" = "${clientzone%\!*}" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
excludezones=
|
2002-05-18 15:45:23 +02:00
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
excludezones="${clientzone#*\!}"
|
|
|
|
clientzone="${clientzone%\!*}"
|
2002-05-18 15:45:23 +02:00
|
|
|
|
|
|
|
[ "$logtarget" = DNAT ] || [ "$logtarget" = REDIRECT ] ||\
|
2002-05-30 14:55:47 +02:00
|
|
|
fatal_error "Error: Exclude list only allowed with DNAT or REDIRECT"
|
2002-05-18 15:45:23 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
if ! validate_zone $clientzone; then
|
2002-05-30 14:55:47 +02:00
|
|
|
fatal_error "Error: Undefined Client Zone in rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
2002-06-19 23:51:36 +02:00
|
|
|
# Parse and validate destination
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
source=$clientzone
|
|
|
|
|
|
|
|
[ $source = $FW ] && source_hosts= || eval source_hosts=\"\$${source}_hosts\"
|
|
|
|
|
|
|
|
if [ "$servers" = "${servers%:*}" ] ; then
|
|
|
|
serverzone="$servers"
|
|
|
|
servers=
|
|
|
|
serverport=
|
|
|
|
else
|
|
|
|
serverzone="${servers%%:*}"
|
|
|
|
servers="${servers#*:}"
|
|
|
|
if [ "$servers" != "${servers%:*}" ] ; then
|
|
|
|
serverport="${servers#*:}"
|
|
|
|
servers="${servers%:*}"
|
2002-07-18 15:43:51 +02:00
|
|
|
[ -z "$serverzone" -o -z "$serverport" ] && \
|
|
|
|
fatal_error "Error: Empty destination zone or server port: rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
|
|
|
serverport=
|
2002-07-18 15:43:51 +02:00
|
|
|
[ -z "$serverzone" -o -z "$servers" ] && \
|
|
|
|
startup_error "Error: Empty destination zone or qualifier: rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
fi
|
2002-06-19 23:51:36 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
if ! validate_zone $serverzone; then
|
2002-05-30 14:55:47 +02:00
|
|
|
fatal_error "Error: Undefined Server Zone in rule \"$rule\""
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
dest=$serverzone
|
2002-06-19 23:51:36 +02:00
|
|
|
|
|
|
|
# Create canonical chain if necessary
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
chain=${source}2${dest}
|
|
|
|
ensurechain $chain
|
2002-06-19 23:51:36 +02:00
|
|
|
|
|
|
|
# Generate Netfilter rule(s)
|
|
|
|
|
2002-06-02 19:05:51 +02:00
|
|
|
if [ -n "$MULTIPORT" -a \
|
2002-07-06 00:24:40 +02:00
|
|
|
"$ports" = "${ports%:*}" -a \
|
|
|
|
"$cports" = "${cports%:*}" -a \
|
|
|
|
`list_count $ports` -le 15 -a \
|
2002-07-04 01:31:50 +02:00
|
|
|
`list_count $cports` -le 15 ]
|
2002-06-02 19:05:51 +02:00
|
|
|
then
|
2002-07-06 00:24:40 +02:00
|
|
|
multioption="-m multiport"
|
2002-06-02 19:05:51 +02:00
|
|
|
for client in `separate_list ${clients:=-}`; do
|
|
|
|
for server in `separate_list ${servers:=-}`; do
|
|
|
|
port=${ports:=-}
|
|
|
|
cport=${cports:=-}
|
|
|
|
add_a_rule
|
|
|
|
done
|
|
|
|
done
|
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
multioption=
|
2002-06-02 19:05:51 +02:00
|
|
|
for client in `separate_list ${clients:=-}`; do
|
|
|
|
for server in `separate_list ${servers:=-}`; do
|
|
|
|
for port in `separate_list ${ports:=-}`; do
|
|
|
|
for cport in `separate_list ${cports:=-}`; do
|
2002-07-06 00:24:40 +02:00
|
|
|
add_a_rule
|
2002-06-02 19:05:51 +02:00
|
|
|
done
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
|
|
|
done
|
2002-06-02 19:05:51 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
echo " Rule \"$rule\" added."
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Process the rules file #
|
|
|
|
################################################################################
|
|
|
|
process_rules() # $1 = name of rules file
|
|
|
|
{
|
|
|
|
strip_file rules
|
|
|
|
|
|
|
|
while read target clients servers protocol ports cports address; do
|
|
|
|
case "$target" in
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
ACCEPT*|DROP*|REJECT*|DNAT*|REDIRECT*)
|
2002-05-01 01:13:15 +02:00
|
|
|
expandv clients servers protocol ports cports address
|
|
|
|
rule="`echo $target $clients $servers $protocol $ports $cports $address`"
|
|
|
|
process_rule
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
rule="`echo $target $clients $servers $protocol $ports $cports $address`"
|
|
|
|
fatal_error "Error: Invalid Target in rule \"$rule\""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < $TMP_DIR/rules
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Process a record from the tos file #
|
|
|
|
# #
|
|
|
|
# The caller has loaded the column contents from the record into the following #
|
|
|
|
# variables: #
|
|
|
|
# #
|
|
|
|
# src dst protocol sport dport tos #
|
|
|
|
# #
|
|
|
|
# and has loaded a space-separated list of their values in "rule". #
|
|
|
|
################################################################################
|
|
|
|
process_tos_rule() {
|
|
|
|
############################################################################
|
|
|
|
# Parse the contents of the 'src' variable
|
|
|
|
#
|
|
|
|
if [ "$src" = "${src%:*}" ]; then
|
|
|
|
srczone="$src"
|
|
|
|
src=
|
|
|
|
else
|
|
|
|
srczone="${src%:*}"
|
|
|
|
src="${src#*:}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
source=
|
|
|
|
#
|
|
|
|
# Validate the source zone
|
|
|
|
#
|
|
|
|
if validate_zone $srczone; then
|
|
|
|
source=$srczone
|
|
|
|
elif [ "$srczone" = "all" ]; then
|
|
|
|
source="all"
|
|
|
|
else
|
|
|
|
error_message "Warning: Undefined Source Zone - rule \"$rule\" ignored"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "$src" ] && case "$src" in
|
|
|
|
[0-9]*|![0-9]*)
|
|
|
|
#
|
|
|
|
# IP Address or subnet
|
|
|
|
#
|
|
|
|
src="-s $src"
|
|
|
|
;;
|
2002-07-06 00:24:40 +02:00
|
|
|
~*)
|
2002-05-01 01:13:15 +02:00
|
|
|
src=`mac_match $src`
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
#
|
|
|
|
# Assume that this is a device name
|
|
|
|
#
|
|
|
|
src="-i $src"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Parse the contents of the 'dst' variable
|
|
|
|
#
|
|
|
|
if [ "$dst" = "${dst%:*}" ]; then
|
|
|
|
dstzone="$dst"
|
|
|
|
dst=
|
|
|
|
else
|
|
|
|
dstzone="${dst%:*}"
|
|
|
|
dst="${dst#*:}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
dest=
|
|
|
|
#
|
|
|
|
# Validate the destination zone
|
|
|
|
#
|
|
|
|
if validate_zone $dstzone; then
|
|
|
|
dest=$dstzone
|
|
|
|
elif [ "$dstzone" = "all" ]; then
|
|
|
|
dest="all"
|
|
|
|
else
|
|
|
|
error_message \
|
|
|
|
"Warning: Undefined Destination Zone - rule \"$rule\" ignored"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "$dst" ] && case "$dst" in
|
|
|
|
[0-9]*|![0-9]*)
|
|
|
|
#
|
|
|
|
# IP Address or subnet
|
|
|
|
#
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
#
|
|
|
|
# Assume that this is a device name
|
|
|
|
#
|
|
|
|
error_message \
|
|
|
|
"Warning: Invalid Destination - rule \"$rule\" ignored"
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Setup PROTOCOL and PORT variables
|
|
|
|
#
|
|
|
|
sports=""
|
|
|
|
dports=""
|
|
|
|
|
|
|
|
case $protocol in
|
|
|
|
tcp|udp|TCP|UDP|6|17)
|
|
|
|
[ -n "$sport" ] && [ "x${sport}" != "x-" ] && \
|
|
|
|
sports="--sport $sport"
|
|
|
|
[ -n "$dport" ] && [ "x${dport}" != "x-" ] && \
|
|
|
|
dports="--dport $dport"
|
|
|
|
;;
|
|
|
|
icmp|ICMP|0)
|
|
|
|
[ -n "$dport" ] && [ "x${dport}" != "x-" ] && \
|
|
|
|
dports="--icmp-type $dport"
|
|
|
|
;;
|
|
|
|
all|ALL)
|
|
|
|
protocol=
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
protocol="${protocol:+-p $protocol}"
|
|
|
|
|
|
|
|
tos="-j TOS --set-tos $tos"
|
|
|
|
|
|
|
|
case "$dstzone" in
|
|
|
|
all|ALL)
|
|
|
|
dst=0.0.0.0/0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
[ -z "$dst" ] && eval dst=\$${dstzone}_hosts
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
for dest in $dst; do
|
|
|
|
dest="-d $dest"
|
|
|
|
|
|
|
|
case $srczone in
|
|
|
|
$FW)
|
|
|
|
run_iptables -t mangle -A outtos \
|
|
|
|
$protocol $dest $dports $sports $tos
|
|
|
|
;;
|
|
|
|
all|ALL)
|
|
|
|
run_iptables -t mangle -A outtos \
|
|
|
|
$protocol $dest $dports $sports $tos
|
|
|
|
run_iptables -t mangle -A pretos \
|
|
|
|
$protocol $dest $dports $sports $tos
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if [ -n "$src" ]; then
|
|
|
|
run_iptables -t mangle -A pretos $src \
|
|
|
|
$protocol $dest $dports $sports $tos
|
|
|
|
else
|
|
|
|
eval interfaces=\$${srczone}_interfaces
|
|
|
|
|
|
|
|
for interface in $interfaces; do
|
|
|
|
run_iptables -t mangle -A pretos -i $interface \
|
|
|
|
$protocol $dest $dports $sports $tos
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
echo " Rule \"$rule\" added."
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Process the tos file #
|
|
|
|
################################################################################
|
|
|
|
process_tos() # $1 = name of tos file
|
|
|
|
{
|
|
|
|
echo "Processing $1..."
|
|
|
|
|
|
|
|
run_iptables -t mangle -N pretos
|
|
|
|
run_iptables -t mangle -N outtos
|
|
|
|
|
|
|
|
strip_file tos $1
|
|
|
|
|
|
|
|
while read src dst protocol sport dport tos; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv src dst protocol sport dport tos
|
2002-05-01 01:13:15 +02:00
|
|
|
rule="`echo $src $dst $protocol $sport $dport $tos`"
|
|
|
|
process_tos_rule
|
|
|
|
done < $TMP_DIR/tos
|
|
|
|
|
|
|
|
run_iptables -t mangle -A PREROUTING -j pretos
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -t mangle -A OUTPUT -j outtos
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Load a Kernel Module #
|
|
|
|
################################################################################
|
|
|
|
loadmodule() # $1 = module name, $2 - * arguments
|
|
|
|
{
|
|
|
|
local modulename=$1
|
|
|
|
local modulefile
|
|
|
|
|
|
|
|
if [ -z "`lsmod | grep $modulename`" ]; then
|
|
|
|
shift
|
|
|
|
modulefile=$MODULESDIR/${modulename}.o
|
|
|
|
|
|
|
|
if [ -f $modulefile ]; then
|
|
|
|
insmod $modulefile $*
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
#
|
|
|
|
# If the modules directory contains compressed modules then we'll
|
|
|
|
# assume that insmod can load them
|
|
|
|
#
|
|
|
|
modulefile=${modulefile}.gz
|
|
|
|
|
|
|
|
if [ -f $modulefile ]; then
|
|
|
|
insmod $modulefile $*
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Display elements of a list with leading white space #
|
|
|
|
################################################################################
|
|
|
|
display_list() # $1 = List Title, rest of $* = list to display
|
|
|
|
{
|
|
|
|
[ $# -gt 1 ] && echo " $*"
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Add rules to the "common" chain to silently drop packets addressed to any of #
|
|
|
|
# the passed addresses #
|
|
|
|
################################################################################
|
|
|
|
drop_broadcasts() # $* = broadcast addresses
|
|
|
|
{
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
run_iptables -A common -d $1 -j DROP
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Add policy rule ( and possibly logging rule) to the passed chain #
|
|
|
|
################################################################################
|
|
|
|
policy_rules() # $1 = chain to add rules to
|
2002-07-06 00:24:40 +02:00
|
|
|
# $2 = policy
|
2002-05-01 01:13:15 +02:00
|
|
|
# $3 = loglevel
|
|
|
|
{
|
|
|
|
local target="$2"
|
|
|
|
|
|
|
|
case "$target" in
|
|
|
|
ACCEPT)
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
DROP)
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A $1 -j common
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
REJECT)
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A $1 -j common
|
2002-05-01 01:13:15 +02:00
|
|
|
target=reject
|
|
|
|
;;
|
2002-06-01 02:28:18 +02:00
|
|
|
CONTINUE)
|
2002-07-06 00:24:40 +02:00
|
|
|
target=
|
2002-06-01 02:28:18 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
*)
|
2002-06-01 02:28:18 +02:00
|
|
|
fatal_error "Invalid policy ($policy) for $1"
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
[ $# -eq 3 ] && [ "x${3}" != "x-" ] && run_iptables -A $1 -j LOG $LOGPARMS \
|
2002-06-01 02:28:18 +02:00
|
|
|
--log-prefix "Shorewall:${1}:${2}:" --log-level $3
|
|
|
|
[ -n "$target" ] && run_iptables -A $1 -j $target
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Generate default policy & log level rules for the passed client & server #
|
|
|
|
# zones #
|
|
|
|
#------------------------------------------------------------------------------#
|
|
|
|
# This function is only called when the canonical chain for this client/server #
|
|
|
|
# pair is known to exist. If the default policy for this pair specifies the #
|
|
|
|
# same chain then we add the policy (and logging) rule to the canonical chain; #
|
|
|
|
# otherwise add a rule to the canonical chain to jump to the appropriate #
|
|
|
|
# policy chain. #
|
|
|
|
################################################################################
|
|
|
|
default_policy() # $1 = client $2 = server
|
|
|
|
{
|
|
|
|
local chain="${1}2${2}"
|
|
|
|
local policy=
|
|
|
|
local loglevel=
|
2002-06-02 19:05:51 +02:00
|
|
|
local chain1
|
|
|
|
|
|
|
|
jump_to_policy_chain() {
|
2002-07-06 00:24:40 +02:00
|
|
|
########################################################################
|
2002-06-02 19:05:51 +02:00
|
|
|
# Add a jump to from the canonical chain to the policy chain. On return,
|
|
|
|
# $chain is set to the name of the policy chain
|
|
|
|
#
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A $chain -j $chain1
|
|
|
|
chain=$chain1
|
2002-06-02 19:05:51 +02:00
|
|
|
}
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
apply_default()
|
|
|
|
{
|
|
|
|
########################################################################
|
2002-06-02 19:05:51 +02:00
|
|
|
# Add the appropriate rules to the canonical chain ($chain) to enforce
|
|
|
|
# the specified policy
|
|
|
|
#-----------------------------------------------------------------------
|
2002-05-01 01:13:15 +02:00
|
|
|
# Construct policy chain name
|
|
|
|
#
|
|
|
|
chain1=${client}2${server}
|
|
|
|
|
2002-06-01 02:28:18 +02:00
|
|
|
if [ "$chain" = "$chain1" ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
####################################################################
|
|
|
|
# The policy chain is the canonical chain; add policy rule to it
|
|
|
|
# The syn flood jump has already been added if required.
|
|
|
|
#
|
|
|
|
policy_rules $chain $policy $loglevel
|
|
|
|
else
|
|
|
|
####################################################################
|
2002-06-02 19:05:51 +02:00
|
|
|
# The policy chain is different from the canonical chain -- approach
|
|
|
|
# depends on the policy
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
2002-06-02 19:05:51 +02:00
|
|
|
case $policy in
|
|
|
|
ACCEPT)
|
2002-07-06 00:24:40 +02:00
|
|
|
if [ -n "$synparams" ]; then
|
2002-06-02 19:05:51 +02:00
|
|
|
############################################################
|
|
|
|
# To avoid double-counting SYN packets, enforce the policy
|
|
|
|
# in this chain.
|
|
|
|
#
|
2002-06-11 22:14:58 +02:00
|
|
|
enable_syn_flood_protection $chain $chain1
|
|
|
|
policy_rules $chain $policy $loglevel
|
2002-06-02 19:05:51 +02:00
|
|
|
else
|
|
|
|
############################################################
|
|
|
|
# No problem with double-counting so just jump to the
|
|
|
|
# policy chain.
|
|
|
|
#
|
|
|
|
jump_to_policy_chain
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
CONTINUE)
|
2002-07-06 00:24:40 +02:00
|
|
|
################################################################
|
2002-06-02 19:05:51 +02:00
|
|
|
# Silly to jump to the policy chain -- add any logging
|
|
|
|
# rules and enable SYN flood protection if requested
|
|
|
|
#
|
|
|
|
[ -n "$synparams" ] && \
|
|
|
|
enable_syn_flood_protection $chain $chain1
|
|
|
|
policy_rules $chain $policy $loglevel
|
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
################################################################
|
2002-06-02 19:05:51 +02:00
|
|
|
# DROP or REJECT policy -- enforce in the policy chain and
|
|
|
|
# enable SYN flood protection if requested.
|
|
|
|
#
|
|
|
|
[ -n "$synparams" ] && \
|
|
|
|
enable_syn_flood_protection $chain $chain1
|
2002-07-06 00:24:40 +02:00
|
|
|
jump_to_policy_chain
|
2002-06-02 19:05:51 +02:00
|
|
|
;;
|
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
2002-06-02 19:05:51 +02:00
|
|
|
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " Policy $policy for $1 to $2 using chain $chain"
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while read client server policy loglevel synparams; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv client server policy loglevel synparams
|
2002-05-01 01:13:15 +02:00
|
|
|
case "$client" in
|
|
|
|
all|ALL)
|
|
|
|
if [ "$server" = "$2" -o "$server" = "all" ]; then
|
|
|
|
apply_default $1 $2
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
if [ "$client" = "$1" ] && \
|
2002-05-01 01:13:15 +02:00
|
|
|
[ "$server" = "all" -o "$server" = "$2" ]
|
|
|
|
then
|
|
|
|
apply_default $1 $2
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < $TMP_DIR/policy
|
|
|
|
|
|
|
|
fatal_error "Error: No default policy for zone $1 to zone $2"
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Complete a standard chain
|
|
|
|
#
|
|
|
|
# - run any supplied user exit
|
|
|
|
# - search the policy file for an applicable policy and add rules as
|
|
|
|
# appropriate
|
2002-07-06 00:24:40 +02:00
|
|
|
# - If no applicable policy is found, add rules for an assummed
|
2002-05-01 01:13:15 +02:00
|
|
|
# policy of DROP INFO
|
|
|
|
################################################################################
|
|
|
|
complete_standard_chain() # $1 = chain, $2 = source zone, $3 = destination zone
|
|
|
|
{
|
|
|
|
local policy=
|
|
|
|
local loglevel=
|
|
|
|
|
|
|
|
run_user_exit $1
|
|
|
|
|
|
|
|
while read client server policy loglevel synparams; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv client server policy loglevelsynparams
|
2002-06-01 02:28:18 +02:00
|
|
|
|
|
|
|
[ "x$loglevel" = "x-" ] && loglevel=
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
case "$client" in
|
|
|
|
all|ALL)
|
|
|
|
if [ "$server" = "$3" -o "$server" = "all" ]; then
|
|
|
|
policy_rules $1 $policy $loglevel
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
if [ "$client" = "$2" ] && \
|
2002-05-01 01:13:15 +02:00
|
|
|
[ "$server" = "all" -o "$server" = "$3" ]
|
|
|
|
then
|
|
|
|
policy_rules $1 $policy $loglevel
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < $TMP_DIR/policy
|
|
|
|
|
|
|
|
policy_rules $1 DROP INFO
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Find the appropriate chain to pass packets from a source zone to a #
|
|
|
|
# destination zone #
|
|
|
|
# #
|
|
|
|
# If the canonical chain for this zone pair exists, echo it's name; otherwise #
|
2002-07-06 00:24:40 +02:00
|
|
|
# locate and echo the name of the appropriate policy chain #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
rules_chain() # $1 = source zone, $2 = destination zone
|
|
|
|
{
|
|
|
|
local chain=${1}2${2}
|
|
|
|
|
|
|
|
havechain $chain && { echo $chain; return; }
|
|
|
|
|
|
|
|
while read client server policy loglevel ; do
|
|
|
|
expandv client server policy loglevel
|
|
|
|
case "$client" in
|
|
|
|
all|ALL)
|
|
|
|
if [ "$server" = "$2" -o "$server" = "all" ]; then
|
2002-06-01 02:28:18 +02:00
|
|
|
echo all2${server}
|
2002-05-31 16:33:18 +02:00
|
|
|
return
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
2002-06-01 02:28:18 +02:00
|
|
|
if [ "$client" = "$1" -a "$server" = "all" ]; then
|
|
|
|
echo ${client}2${server}
|
|
|
|
return
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < $TMP_DIR/policy
|
|
|
|
|
|
|
|
fatal_error "Error: No appropriate chain for zone $1 to zone $2"
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Set up Source NAT (including masquerading) #
|
|
|
|
################################################################################
|
|
|
|
setup_masq()
|
|
|
|
{
|
|
|
|
setup_one() {
|
2002-07-06 00:24:40 +02:00
|
|
|
local using
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
if [ "$interface" = "${interface%:*}" ]; then
|
|
|
|
destnet="0.0.0.0/0"
|
|
|
|
else
|
|
|
|
destnet="${interface#*:}"
|
|
|
|
interface="${interface%:*}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$subnet" = "${subnet%!*}" ]; then
|
|
|
|
nomasq=
|
|
|
|
else
|
|
|
|
nomasq="${subnet#*!}"
|
|
|
|
subnet="${subnet%!*}"
|
|
|
|
fi
|
|
|
|
|
2002-07-05 23:57:37 +02:00
|
|
|
chain=`masq_chain $interface`
|
2002-07-05 17:56:02 +02:00
|
|
|
iface=
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
case $subnet in
|
|
|
|
[0-9]*|![0-9]*)
|
|
|
|
source="$subnet"
|
|
|
|
subnet="-s $subnet"
|
|
|
|
;;
|
|
|
|
-)
|
|
|
|
#
|
|
|
|
# Note: This only works if you have the LOCAL NAT patches in the
|
2002-07-06 00:24:40 +02:00
|
|
|
# kernel and in the iptables utility
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
chain=OUTPUT
|
|
|
|
subnet=
|
|
|
|
source=$FW
|
2002-07-05 17:56:02 +02:00
|
|
|
iface="-o $interface"
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ipaddr="`run_ip addr show $subnet | grep 'inet '`"
|
|
|
|
source="$subnet"
|
|
|
|
if [ -z "$ipaddr" ]; then
|
|
|
|
fatal_error \
|
|
|
|
"Interface $subnet must be up before Shorewall starts"
|
|
|
|
fi
|
|
|
|
|
|
|
|
subnet="`echo $ipaddr | sed s/" "// | cut -d' ' -f2`"
|
|
|
|
[ -z "`echo "$subnet" | grep '/'`" ] && subnet="${subnet}/32"
|
|
|
|
subnet="-s $subnet"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ -n "$address" -a -n "$ADD_SNAT_ALIASES" ]; then
|
2002-07-23 18:26:45 +02:00
|
|
|
list_search $address $aliases_to_add || \
|
|
|
|
aliases_to_add="$aliases_to_add $external $address"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
destination=$destnet
|
|
|
|
|
|
|
|
if [ -n "$nomasq" ]; then
|
|
|
|
newchain=masq${masq_seq}
|
|
|
|
run_iptables -t nat -N $newchain
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatrule $chain -d $destnet $iface $subnet -j $newchain
|
2002-05-01 01:13:15 +02:00
|
|
|
masq_seq=$(($masq_seq + 1))
|
|
|
|
chain=$newchain
|
|
|
|
subnet=
|
2002-07-05 17:56:02 +02:00
|
|
|
iface=
|
2002-05-01 01:13:15 +02:00
|
|
|
destnet=
|
|
|
|
|
|
|
|
for addr in `separate_list $nomasq`; do
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatrule $chain -s $addr -j RETURN
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
else
|
|
|
|
destnet="-d $destnet"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$address" ]; then
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatrule $chain $subnet $destnet $iface \
|
|
|
|
-j SNAT --to-source $address
|
2002-05-01 01:13:15 +02:00
|
|
|
using=" using $address"
|
|
|
|
else
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatrule $chain $subnet $destnet $iface -j MASQUERADE
|
2002-05-01 01:13:15 +02:00
|
|
|
using=
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -n "$nomasq" ] && source="$source except $nomasq"
|
2002-07-06 16:05:30 +02:00
|
|
|
echo " To $destination from $source through ${interface}${using}"
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
strip_file masq $1
|
|
|
|
|
|
|
|
[ -n "$NAT_ENABLED" ] && echo "Masqueraded Subnets and Hosts:"
|
|
|
|
|
|
|
|
while read interface subnet address; do
|
|
|
|
expandv interface subnet address
|
|
|
|
[ -n "$NAT_ENABLED" ] && setup_one || \
|
|
|
|
error_message "Warning: NAT disabled; masq rule ignored"
|
|
|
|
done < $TMP_DIR/masq
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Setup Intrazone chain if appropriate #
|
|
|
|
################################################################################
|
|
|
|
setup_intrazone() # $1 = zone
|
|
|
|
{
|
|
|
|
eval hosts=\$${1}_hosts
|
|
|
|
|
|
|
|
if [ "$hosts" != "${hosts% *}" ] || \
|
|
|
|
have_interfaces_in_zone_with_option $1 multi
|
|
|
|
then
|
|
|
|
ensurechain ${1}2${1}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Process a record from the blacklist file #
|
|
|
|
# #
|
2002-07-06 00:24:40 +02:00
|
|
|
# $subnet = address/subnet #
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
process_blacklist_rec() {
|
|
|
|
local source
|
|
|
|
local addr
|
|
|
|
|
|
|
|
for addr in `separate_list $subnet`; do
|
|
|
|
case $addr in
|
|
|
|
~*)
|
|
|
|
addr=`echo $addr | sed 's/~//;s/-/:/g'`
|
|
|
|
source="--match mac --mac-source $addr"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
source="-s $addr"
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
|
|
|
esac
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
[ -n "$BLACKLIST_LOGLEVEL" ] && \
|
|
|
|
run_iptables -A blacklst $source -j LOG $LOGPARMS --log-prefix \
|
|
|
|
"Shorewall:blacklst:$BLACKLIST_DISPOSITION:" \
|
|
|
|
--log-level $BLACKLIST_LOGLEVEL
|
|
|
|
run_iptables -A blacklst $source -j $disposition
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
echo " $addr added to Black List"
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Setup the Black List #
|
|
|
|
###############################################################################
|
|
|
|
setup_blacklist() {
|
|
|
|
local interfaces=`find_interfaces_by_option blacklist`
|
|
|
|
local f=`find_file blacklist`
|
|
|
|
local disposition=$BLACKLIST_DISPOSITION
|
|
|
|
|
|
|
|
if [ -n "$interfaces" -a -f $f ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
echo "Setting up Blacklisting..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
strip_file blacklist $f
|
|
|
|
|
|
|
|
createchain blacklst no
|
|
|
|
|
|
|
|
for interface in $interfaces; do
|
2002-05-18 15:45:23 +02:00
|
|
|
for chain in `first_chains $interface`; do
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A $chain -j blacklst
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
echo " Blacklisting enabled on $interface"
|
|
|
|
done
|
|
|
|
|
|
|
|
[ "$disposition" = REJECT ] && disposition=reject
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
while read subnet; do
|
2002-05-01 01:13:15 +02:00
|
|
|
expandv subnet
|
|
|
|
process_blacklist_rec
|
|
|
|
done < $TMP_DIR/blacklist
|
|
|
|
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Refresh the Black List #
|
|
|
|
###############################################################################
|
|
|
|
refresh_blacklist() {
|
|
|
|
local f=`find_file blacklist`
|
|
|
|
local disposition=$BLACKLIST_DISPOSITION
|
|
|
|
|
|
|
|
if qt iptables -L blacklst -n ; then
|
|
|
|
echo "Refreshing Black List..."
|
|
|
|
|
|
|
|
strip_file blacklist $f
|
|
|
|
|
|
|
|
[ "$disposition" = REJECT ] && disposition=reject
|
|
|
|
|
|
|
|
run_iptables -F blacklst
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
while read subnet; do
|
2002-05-01 01:13:15 +02:00
|
|
|
expandv subnet
|
|
|
|
process_blacklist_rec
|
|
|
|
done < $TMP_DIR/blacklist
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
###############################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Verify that kernel has netfilter support #
|
2002-05-01 01:13:15 +02:00
|
|
|
###############################################################################
|
|
|
|
verify_os_version() {
|
|
|
|
|
|
|
|
osversion=`uname -r`
|
|
|
|
|
|
|
|
case $osversion in
|
|
|
|
2.4.*|2.5.*)
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
*)
|
|
|
|
startup_error "Shorewall version $version does not work with kernel version $osversion"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2002-07-23 18:26:45 +02:00
|
|
|
################################################################################
|
|
|
|
# Add IP Aliases #
|
|
|
|
################################################################################
|
|
|
|
add_ip_aliases() # $* = addresses and devices
|
|
|
|
{
|
|
|
|
do_one()
|
|
|
|
{
|
|
|
|
#
|
|
|
|
# Folks feel uneasy if they don't see all of the same
|
|
|
|
# decoration on these IP addresses that they see when their
|
|
|
|
# distro's net config tool adds them. In an attempt to reduce
|
|
|
|
# the anxiety level, we have the following code which sets
|
|
|
|
# the VLSM and BRD from the primary address
|
|
|
|
#
|
|
|
|
# Get all of the lines that contain inet addresses with broadcast
|
|
|
|
#
|
|
|
|
val=`ip addr show $interface | grep 'inet.*brd '` 2> /dev/null
|
|
|
|
|
|
|
|
if [ -n "$val" ] ; then
|
|
|
|
#
|
|
|
|
# Hack off the leading 'inet <ip addr>' (actually cut off the
|
|
|
|
# "/" as well but add it back in).
|
|
|
|
#
|
|
|
|
val="/${val#*/}"
|
|
|
|
#
|
|
|
|
# Now get the VLSM, "brd" and the broadcast address
|
|
|
|
#
|
|
|
|
val=${val%% scope*}
|
|
|
|
fi
|
|
|
|
|
|
|
|
run_ip addr add ${external}${val} dev $interface
|
|
|
|
echo "$external $interface" >> ${STATEDIR}/nat
|
|
|
|
}
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
external=$1
|
|
|
|
interface=$2
|
|
|
|
shift;shift
|
|
|
|
do_one
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
# Load kernel modules required for Shorewall #
|
|
|
|
################################################################################
|
|
|
|
load_kernel_modules() {
|
|
|
|
|
|
|
|
[ -z "$MODULESDIR" ] &&
|
|
|
|
MODULESDIR=/lib/modules/$osversion/kernel/net/ipv4/netfilter
|
|
|
|
|
|
|
|
modules=`find_file modules`
|
|
|
|
|
|
|
|
if [ -f $modules -a -d $MODULESDIR ]; then
|
|
|
|
echo "Loading Modules..."
|
|
|
|
. $modules
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Perform Initialization #
|
|
|
|
# - Delete all old rules #
|
|
|
|
# - Delete all user chains #
|
2002-05-01 01:13:15 +02:00
|
|
|
# - Set the POLICY on all standard chains and add a rule to allow packets#
|
2002-07-06 00:24:40 +02:00
|
|
|
# that are part of established connections. #
|
|
|
|
# - Determine the zones
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
initialize_netfilter () {
|
|
|
|
|
|
|
|
echo "Determining Zones..."
|
|
|
|
|
|
|
|
determine_zones
|
|
|
|
|
|
|
|
[ -z "$zones" ] && startup_error "ERROR: No Zones Defined"
|
|
|
|
|
|
|
|
display_list "Zones:" $zones
|
|
|
|
|
|
|
|
echo "Validating interfaces file..."
|
|
|
|
|
|
|
|
validate_interfaces_file
|
|
|
|
|
|
|
|
echo "Validating hosts file..."
|
|
|
|
|
|
|
|
validate_hosts_file
|
|
|
|
|
2002-07-10 00:39:22 +02:00
|
|
|
echo "Validating Policy file..."
|
|
|
|
|
|
|
|
validate_policy
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
echo "Determining Hosts in Zones..."
|
|
|
|
|
|
|
|
determine_interfaces
|
|
|
|
determine_hosts
|
|
|
|
|
|
|
|
deletechain shorewall
|
|
|
|
|
|
|
|
[ -n "$NAT_ENABLED" ] && delete_nat
|
|
|
|
|
|
|
|
delete_proxy_arp
|
|
|
|
|
|
|
|
[ -n "$MANGLE_ENABLED" ] && \
|
|
|
|
run_iptables -t mangle -F && \
|
|
|
|
run_iptables -t mangle -X
|
|
|
|
|
|
|
|
[ -n "$TC_ENABLED" ] && delete_tc
|
|
|
|
|
|
|
|
run_user_exit init
|
|
|
|
|
|
|
|
echo "Deleting user chains..."
|
|
|
|
|
|
|
|
setpolicy INPUT DROP
|
|
|
|
setpolicy OUTPUT DROP
|
|
|
|
setpolicy FORWARD DROP
|
|
|
|
|
|
|
|
deleteallchains
|
|
|
|
|
|
|
|
setcontinue FORWARD
|
|
|
|
setcontinue INPUT
|
|
|
|
setcontinue OUTPUT
|
|
|
|
|
|
|
|
[ -n "$CLAMPMSS" ] && \
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A FORWARD -p tcp \
|
|
|
|
--tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
createchain icmpdef no
|
2002-07-06 00:24:40 +02:00
|
|
|
createchain common no
|
|
|
|
createchain reject no
|
2002-06-04 22:17:46 +02:00
|
|
|
createchain dynamic no
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-16 19:56:45 +02:00
|
|
|
if [ -f /var/lib/shorewall/save ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
echo "Restoring dynamic rules..."
|
2002-06-04 22:17:46 +02:00
|
|
|
|
|
|
|
while read target ignore1 ignore2 address rest; do
|
|
|
|
case $target in
|
|
|
|
DROP|reject)
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A dynamic -s $address -j $target
|
2002-06-04 22:17:46 +02:00
|
|
|
;;
|
|
|
|
*)
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-06-04 22:17:46 +02:00
|
|
|
esac
|
2002-06-16 19:56:45 +02:00
|
|
|
done < /var/lib/shorewall/save
|
2002-06-04 22:17:46 +02:00
|
|
|
fi
|
2002-05-18 15:45:23 +02:00
|
|
|
|
2002-06-04 22:17:46 +02:00
|
|
|
echo "Creating input Chains..."
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
for interface in $all_interfaces; do
|
2002-05-30 14:55:47 +02:00
|
|
|
createchain `forward_chain $interface` no
|
2002-06-04 22:17:46 +02:00
|
|
|
run_iptables -A `forward_chain $interface` -j dynamic
|
2002-05-30 14:55:47 +02:00
|
|
|
createchain `input_chain $interface` no
|
2002-06-04 22:17:46 +02:00
|
|
|
run_iptables -A `input_chain $interface` -j dynamic
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Construct zone-independent rules #
|
|
|
|
################################################################################
|
|
|
|
add_common_rules() {
|
2002-06-21 19:20:18 +02:00
|
|
|
logdisp() # $1 = Chain Name
|
|
|
|
{
|
2002-06-25 16:31:45 +02:00
|
|
|
echo "LOG --log-prefix "Shorewall:${1}:DROP:" --log-level info"
|
2002-06-21 19:20:18 +02:00
|
|
|
}
|
2002-05-01 01:13:15 +02:00
|
|
|
############################################################################
|
|
|
|
# Reject Rules
|
|
|
|
#
|
|
|
|
run_iptables -A reject -p tcp -j REJECT --reject-with tcp-reset
|
|
|
|
run_iptables -A reject -j REJECT
|
|
|
|
############################################################################
|
|
|
|
# dropunclean rules
|
|
|
|
#
|
|
|
|
interfaces="`find_interfaces_by_option dropunclean`"
|
|
|
|
|
|
|
|
if [ -n "$interfaces" ]; then
|
|
|
|
createchain badpkt no
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
if [ -n "$LOGUNCLEAN" ]; then
|
2002-05-01 01:13:15 +02:00
|
|
|
logoptions="$LOGPARAMS --log-prefix Shorewall:badpkt:DROP:"
|
2002-07-06 00:24:40 +02:00
|
|
|
logoptions="$logoptions --log-level $LOGUNCLEAN --log-ip-options"
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -A badpkt -p tcp -j LOG $logoptions --log-tcp-options
|
|
|
|
run_iptables -A badpkt -p !tcp -j LOG $logoptions
|
|
|
|
fi
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A badpkt -j DROP
|
|
|
|
echo "Mangled/Invalid Packet filtering enabled on:"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
for interface in $interfaces; do
|
2002-05-18 15:45:23 +02:00
|
|
|
for chain in `first_chains $interface`; do
|
2002-05-18 21:04:45 +02:00
|
|
|
run_iptables -A $chain --match unclean -j badpkt
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
echo " $interface"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
############################################################################
|
|
|
|
# logunclean rules
|
|
|
|
#
|
|
|
|
interfaces="`find_interfaces_by_option logunclean`"
|
|
|
|
|
|
|
|
if [ -n "$interfaces" ]; then
|
|
|
|
createchain logpkt no
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
[ -z"$LOGUNCLEAN" ] && LOGUNCLEAN=info
|
2002-05-01 01:13:15 +02:00
|
|
|
logoptions="$LOGPARAMS --log-prefix Shorewall:logpkt:LOG:"
|
|
|
|
logoptions="$logoptions --log-level $LOGUNCLEAN --log-ip-options"
|
|
|
|
run_iptables -A logpkt -p tcp -j LOG $logoptions --log-tcp-options
|
|
|
|
run_iptables -A logpkt -p !tcp -j LOG $logoptions
|
|
|
|
|
2002-07-06 00:24:40 +02:00
|
|
|
echo "Mangled/Invalid Packet Logging enabled on:"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
for interface in $interfaces; do
|
2002-05-18 15:45:23 +02:00
|
|
|
for chain in `first_chains $interface`; do
|
2002-05-18 21:04:45 +02:00
|
|
|
run_iptables -A $chain --match unclean -j logpkt
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
echo " $interface"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
############################################################################
|
|
|
|
# Common ICMP rules
|
|
|
|
#
|
|
|
|
icmpdef=`find_file icmpdef`
|
|
|
|
|
|
|
|
if [ -f $icmpdef ]; then
|
|
|
|
. $icmpdef
|
|
|
|
else
|
|
|
|
. `find_file icmp.def`
|
|
|
|
fi
|
|
|
|
############################################################################
|
|
|
|
# Common rules in each chain
|
|
|
|
#
|
|
|
|
common=`find_file common`
|
|
|
|
|
|
|
|
if [ -f $common ]; then
|
|
|
|
. $common
|
|
|
|
else
|
|
|
|
. `find_file common.def`
|
|
|
|
fi
|
|
|
|
###########################################################################
|
|
|
|
# BROADCASTS
|
|
|
|
#
|
2002-05-18 21:04:45 +02:00
|
|
|
drop_broadcasts `find_broadcasts`
|
2002-06-19 23:51:36 +02:00
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
# RFC 1918
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
norfc1918_interfaces="`find_interfaces_by_option norfc1918`"
|
|
|
|
|
|
|
|
if [ -n "$norfc1918_interfaces" ]; then
|
|
|
|
echo "Enabling RFC1918 Filtering"
|
2002-05-31 16:33:18 +02:00
|
|
|
|
|
|
|
strip_file rfc1918
|
2002-06-01 02:28:18 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
createchain rfc1918 no
|
|
|
|
|
|
|
|
createchain logdrop no
|
2002-06-25 16:31:45 +02:00
|
|
|
run_iptables -A logdrop -j `logdisp rfc1918`
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -A logdrop -j DROP
|
|
|
|
|
|
|
|
if [ -n "$MANGLE_ENABLED" ]; then
|
|
|
|
####################################################################
|
|
|
|
# Mangling is enabled -- create a chain in the mangle table to
|
|
|
|
# filter RFC1918 destination addresses. This must be done in the
|
|
|
|
# mangle table before we apply any DNAT rules in the nat table
|
|
|
|
#
|
|
|
|
# Also add a chain to log and drop any RFC1918 packets that we find
|
|
|
|
#
|
2002-06-21 19:20:18 +02:00
|
|
|
run_iptables -t mangle -N man1918
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -t mangle -N logdrop
|
2002-06-21 19:20:18 +02:00
|
|
|
run_iptables -t mangle -A logdrop -j `logdisp man1918`
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -t mangle -A logdrop -j DROP
|
|
|
|
fi
|
2002-05-31 16:33:18 +02:00
|
|
|
|
|
|
|
while read subnet target; do
|
2002-06-21 23:40:36 +02:00
|
|
|
case $target in
|
|
|
|
logdrop|DROP|RETURN)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
fatal_error " Error:Illegal target ($target) for $subnet"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2002-05-31 16:33:18 +02:00
|
|
|
run_iptables -A rfc1918 -s $subnet -j $target
|
2002-05-01 01:13:15 +02:00
|
|
|
####################################################################
|
2002-05-31 16:33:18 +02:00
|
|
|
# If packet mangling is enabled, trap packets with an
|
2002-05-01 01:13:15 +02:00
|
|
|
# RFC1918 destination
|
|
|
|
#
|
|
|
|
if [ -n "$MANGLE_ENABLED" ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -t mangle -A man1918 -d $subnet -j $target
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
2002-05-31 16:33:18 +02:00
|
|
|
done < $TMP_DIR/rfc1918
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
for interface in $norfc1918_interfaces; do
|
2002-05-18 15:45:23 +02:00
|
|
|
for chain in `first_chains $interface`; do
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A $chain -j rfc1918
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
[ -n "$MANGLE_ENABLED" ] && \
|
2002-06-21 19:20:18 +02:00
|
|
|
run_iptables -t mangle -A PREROUTING -i $interface -j man1918
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
fi
|
|
|
|
############################################################################
|
|
|
|
# Process Black List
|
|
|
|
#
|
|
|
|
setup_blacklist
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Enable the Loopback interface
|
|
|
|
#
|
|
|
|
run_iptables -A INPUT -i lo -j ACCEPT
|
|
|
|
run_iptables -A OUTPUT -o lo -j ACCEPT
|
|
|
|
############################################################################
|
|
|
|
# Enable icmp output
|
|
|
|
#
|
2002-06-09 18:30:52 +02:00
|
|
|
run_iptables -A OUTPUT -m state --state ! INVALID -p icmp -j ACCEPT
|
2002-06-19 23:51:36 +02:00
|
|
|
############################################################################
|
|
|
|
# Route Filtering
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
for f in /proc/sys/net/ipv4/conf/*/rp_filter; do
|
|
|
|
echo 0 > $f
|
|
|
|
done
|
|
|
|
|
|
|
|
interfaces="`find_interfaces_by_option routefilter`"
|
|
|
|
|
|
|
|
if [ -n "$interfaces" -o -n "$ROUTE_FILTER" ]; then
|
|
|
|
echo "Setting up Kernel Route Filtering..."
|
|
|
|
|
|
|
|
if [ -n "$ROUTE_FILTER" ]; then
|
|
|
|
echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter
|
|
|
|
else
|
|
|
|
echo 0 > /proc/sys/net/ipv4/conf/all/rp_filter
|
|
|
|
|
|
|
|
for interface in $interfaces; do
|
|
|
|
file=/proc/sys/net/ipv4/conf/$interface/rp_filter
|
|
|
|
if [ -f $file ]; then
|
|
|
|
echo 1 > $file
|
|
|
|
else
|
|
|
|
error_message \
|
|
|
|
"Warning: Cannot set route filtering on $interface"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
fi
|
2002-06-19 23:51:36 +02:00
|
|
|
############################################################################
|
|
|
|
# IP Forwarding
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
case "$IP_FORWARDING" in
|
|
|
|
[Oo][Nn])
|
|
|
|
echo 1 > /proc/sys/net/ipv4/ip_forward
|
|
|
|
echo "IP Forwarding Enabled"
|
|
|
|
;;
|
|
|
|
[Oo][Ff][Ff])
|
2002-07-06 00:24:40 +02:00
|
|
|
echo 0 > /proc/sys/net/ipv4/ip_forward
|
2002-05-01 01:13:15 +02:00
|
|
|
echo "IP Forwarding Disabled!"
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Scan the policy file defining the necessary chains #
|
2002-05-01 01:13:15 +02:00
|
|
|
# Add the appropriate policy rule(s) to the end of each canonical chain #
|
|
|
|
################################################################################
|
|
|
|
apply_policy_rules() {
|
2002-06-19 23:51:36 +02:00
|
|
|
############################################################################
|
|
|
|
# Create policy chains
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
while read client server policy loglevel synparams; do
|
2002-07-06 00:24:40 +02:00
|
|
|
expandv client server policy loglevel synparams
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
chain=${client}2${server}
|
|
|
|
|
|
|
|
[ -n "$synparams" ] && setup_syn_flood_chain $chain $synparams
|
|
|
|
|
|
|
|
if havechain $chain; then
|
2002-06-01 02:28:18 +02:00
|
|
|
[ -n "$synparams" ] && \
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -I $chain 2 -p tcp --syn -j @$chain
|
2002-06-01 02:28:18 +02:00
|
|
|
else
|
2002-05-01 01:13:15 +02:00
|
|
|
#
|
|
|
|
# A wild-card rule. Create the chain and add policy
|
2002-06-01 02:28:18 +02:00
|
|
|
# rules
|
2002-05-31 16:33:18 +02:00
|
|
|
#
|
|
|
|
# We must include the ESTABLISHED and RELATED state
|
|
|
|
# rule here to account for replys and reverse
|
|
|
|
# related sessions associated with sessions going
|
|
|
|
# in the other direction
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
createchain $chain
|
|
|
|
|
2002-06-01 02:28:18 +02:00
|
|
|
[ "$client" = "all" -o "$server" = "all" ] && \
|
2002-07-06 00:24:40 +02:00
|
|
|
policy_rules $chain $policy $loglevel
|
2002-06-01 02:28:18 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
[ -n "$synparams" ] && \
|
2002-06-01 02:28:18 +02:00
|
|
|
[ $policy = ACCEPT -o $policy = CONTINUE ] && \
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -I $chain 2 -p tcp --syn -j @$chain
|
|
|
|
fi
|
|
|
|
|
|
|
|
done < $TMP_DIR/policy
|
2002-06-19 23:51:36 +02:00
|
|
|
############################################################################
|
|
|
|
# Add policy rules to canonical chains
|
|
|
|
#
|
2002-05-01 01:13:15 +02:00
|
|
|
for zone in $FW $zones; do
|
2002-05-18 21:04:45 +02:00
|
|
|
setup_intrazone $zone
|
2002-05-01 01:13:15 +02:00
|
|
|
for zone1 in $FW $zones; do
|
|
|
|
chain=${zone}2${zone1}
|
|
|
|
if havechain $chain; then
|
|
|
|
run_user_exit $chain
|
|
|
|
default_policy $zone $zone1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2002-07-05 17:56:02 +02:00
|
|
|
################################################################################
|
2002-07-05 23:57:37 +02:00
|
|
|
# Activate the rules #
|
2002-07-05 17:56:02 +02:00
|
|
|
################################################################################
|
2002-07-05 23:57:37 +02:00
|
|
|
activate_rules()
|
2002-07-05 17:56:02 +02:00
|
|
|
{
|
2002-07-05 23:57:37 +02:00
|
|
|
local PREROUTING_rule=1
|
|
|
|
local POSTROUTING_rule=1
|
|
|
|
############################################################################
|
|
|
|
# Jump to a NAT chain from one of the builtin nat chains
|
|
|
|
#
|
|
|
|
addnatjump() # $1 = BUILTIN chain, $2 = user chain, $3 - * other arguments
|
|
|
|
{
|
|
|
|
local sourcechain=$1 destchain=$2
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
|
|
|
|
havenatchain $destchain && \
|
2002-07-05 17:56:02 +02:00
|
|
|
run_iptables -t nat -A $sourcechain $@ -j $destchain
|
2002-07-05 23:57:37 +02:00
|
|
|
}
|
2002-07-05 17:56:02 +02:00
|
|
|
|
2002-07-05 23:57:37 +02:00
|
|
|
############################################################################
|
|
|
|
# Jump to a RULES chain from one of the builtin nat chains
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# If NAT_BEFORE_RULES then append the rule to the chain; otherwise, insert
|
|
|
|
# the jump near the front of the builtin chain
|
|
|
|
#
|
|
|
|
addrulejump() # $1 = BUILTIN chain, $2 = user chain, $3 - * other arguments
|
|
|
|
{
|
|
|
|
local sourcechain=$1 destchain=$2
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
|
|
|
|
if havenatchain $destchain; then
|
|
|
|
if [ -n "$NAT_BEFORE_RULES" ]; then
|
|
|
|
run_iptables -t nat -A $sourcechain $@ -j $destchain
|
|
|
|
else
|
|
|
|
eval run_iptables -t nat -I $sourcechain \
|
|
|
|
\$${sourcechain}_rule $@ -j $destchain
|
|
|
|
eval ${sourcechain}_rule=\$\(\(\$${sourcechain}_rule + 1\)\)
|
|
|
|
fi
|
2002-07-05 17:56:02 +02:00
|
|
|
fi
|
2002-07-05 23:57:37 +02:00
|
|
|
}
|
2002-06-30 16:35:32 +02:00
|
|
|
|
2002-07-05 23:57:37 +02:00
|
|
|
#
|
|
|
|
# Add jumps from the builtin chains to the nat chains
|
|
|
|
#
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatjump PREROUTING nat_in
|
|
|
|
addnatjump POSTROUTING nat_out
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-07-04 17:41:51 +02:00
|
|
|
for interface in $all_interfaces; do
|
2002-07-06 00:24:40 +02:00
|
|
|
addnatjump PREROUTING `input_chain $interface` -i $interface
|
2002-07-05 17:56:02 +02:00
|
|
|
addnatjump POSTROUTING `output_chain $interface` -o $interface
|
2002-07-04 17:41:51 +02:00
|
|
|
done
|
|
|
|
|
2002-07-05 17:56:02 +02:00
|
|
|
multi_interfaces=`find_interfaces_by_option multi`
|
|
|
|
|
2002-05-18 21:04:45 +02:00
|
|
|
for zone in $zones; do
|
2002-05-01 01:13:15 +02:00
|
|
|
eval source_hosts=\$${zone}_hosts
|
|
|
|
|
|
|
|
for host in $source_hosts; do
|
|
|
|
interface=${host%:*}
|
|
|
|
subnet=${host#*:}
|
|
|
|
|
2002-05-18 21:04:45 +02:00
|
|
|
run_iptables -A OUTPUT -o \
|
2002-07-06 00:24:40 +02:00
|
|
|
$interface -d $subnet -j `rules_chain $FW $zone`
|
2002-07-05 23:57:37 +02:00
|
|
|
#
|
|
|
|
# Add jumps from the builtin chains for DNAT and SNAT rules
|
|
|
|
#
|
|
|
|
addrulejump PREROUTING `dnat_chain $zone` -i $interface -s $subnet
|
|
|
|
addrulejump POSTROUTING `snat_chain $zone` -o $interface -d $subnet
|
2002-05-18 21:04:45 +02:00
|
|
|
|
|
|
|
run_iptables -A `input_chain $interface` -s $subnet \
|
2002-05-01 01:13:15 +02:00
|
|
|
-j `rules_chain $zone $FW`
|
|
|
|
done
|
|
|
|
|
2002-05-18 21:04:45 +02:00
|
|
|
for zone1 in $zones; do
|
2002-05-01 01:13:15 +02:00
|
|
|
eval dest_hosts=\$${zone1}_hosts
|
|
|
|
|
|
|
|
chain="`rules_chain $zone $zone1`"
|
|
|
|
|
|
|
|
for host in $source_hosts; do
|
|
|
|
interface=${host%:*}
|
|
|
|
subnet=${host#*:}
|
2002-05-18 15:45:23 +02:00
|
|
|
chain1=`forward_chain $interface`
|
2002-06-01 02:28:18 +02:00
|
|
|
|
2002-06-21 17:57:01 +02:00
|
|
|
case $interface in
|
|
|
|
*+*)
|
|
|
|
multi=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
list_search $interface $multi_interfaces && multi=yes || multi=
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
for host1 in $dest_hosts; do
|
|
|
|
interface1=${host1%:*}
|
|
|
|
subnet1=${host1#*:}
|
2002-06-01 02:28:18 +02:00
|
|
|
|
|
|
|
if [ $interface != $interface1 -o -n "$multi" ]; then
|
2002-05-18 21:04:45 +02:00
|
|
|
run_iptables -A $chain1 -s $subnet \
|
2002-05-01 01:13:15 +02:00
|
|
|
-o $interface1 -d $subnet1 -j $chain
|
2002-05-30 14:55:47 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
done
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
2002-05-18 15:45:23 +02:00
|
|
|
for interface in $all_interfaces; do
|
|
|
|
run_iptables -A FORWARD -i $interface -j `forward_chain $interface`
|
|
|
|
run_iptables -A INPUT -i $interface -j `input_chain $interface`
|
2002-07-05 23:57:37 +02:00
|
|
|
addnatjump POSTROUTING `masq_chain $interface` -o $interface
|
2002-05-18 15:45:23 +02:00
|
|
|
done
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
complete_standard_chain INPUT all $FW
|
|
|
|
complete_standard_chain OUTPUT $FW all
|
|
|
|
complete_standard_chain FORWARD all all
|
|
|
|
|
|
|
|
run_iptables -D INPUT 1
|
|
|
|
run_iptables -D OUTPUT 1
|
|
|
|
run_iptables -D FORWARD 1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Start/Restart the Firewall #
|
|
|
|
################################################################################
|
|
|
|
define_firewall() # $1 = Command (Start or Restart)
|
|
|
|
{
|
|
|
|
echo "${1}ing Shorewall..."
|
|
|
|
|
|
|
|
verify_os_version
|
|
|
|
|
|
|
|
load_kernel_modules
|
|
|
|
|
|
|
|
echo "Initializing..."
|
|
|
|
|
|
|
|
initialize_netfilter
|
|
|
|
|
|
|
|
echo "Configuring Proxy ARP"
|
|
|
|
|
|
|
|
setup_proxy_arp
|
|
|
|
|
2002-06-30 16:35:32 +02:00
|
|
|
setup_nat
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
echo "Adding Common Rules"
|
|
|
|
|
|
|
|
add_common_rules
|
|
|
|
|
|
|
|
tunnels=`find_file tunnels`
|
|
|
|
|
|
|
|
[ -f $tunnels ] && \
|
|
|
|
echo "Processing $tunnels..." && setup_tunnels $tunnels
|
|
|
|
|
|
|
|
rules=`find_file rules`
|
|
|
|
|
|
|
|
echo "Processing $rules..."
|
|
|
|
|
|
|
|
process_rules $rules
|
|
|
|
|
|
|
|
echo "Adding rules for DHCP"
|
|
|
|
|
|
|
|
for interface in `find_interfaces_by_option dhcp`; do
|
2002-07-06 00:24:40 +02:00
|
|
|
run_iptables -A `input_chain $interface` -p udp --dport 67:68 -j ACCEPT
|
|
|
|
run_iptables -A OUTPUT -o $interface -p udp --dport 67:68 -j ACCEPT
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
echo "Setting up ICMP Echo handling..."
|
|
|
|
|
2002-05-30 14:55:47 +02:00
|
|
|
filterping_interfaces="`find_interfaces_by_option filterping`"
|
2002-05-01 01:13:15 +02:00
|
|
|
noping_interfaces="`find_interfaces_by_option noping`"
|
|
|
|
|
2002-05-18 21:04:45 +02:00
|
|
|
for interface in $all_interfaces; do
|
2002-05-30 14:55:47 +02:00
|
|
|
if ! list_search $interface $filterping_interfaces; then
|
|
|
|
if list_search $interface $noping_interfaces; then
|
|
|
|
target=DROP
|
|
|
|
else
|
|
|
|
target=ACCEPT
|
|
|
|
fi
|
|
|
|
|
|
|
|
run_iptables -A `input_chain $interface` \
|
|
|
|
-p icmp --icmp-type echo-request -j $target
|
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
policy=`find_file policy`
|
|
|
|
|
|
|
|
echo "Processing $policy..."
|
|
|
|
|
|
|
|
apply_policy_rules
|
|
|
|
|
|
|
|
masq=`find_file masq`
|
|
|
|
|
|
|
|
[ -f $masq ] && setup_masq $masq
|
|
|
|
|
|
|
|
tos=`find_file tos`
|
|
|
|
|
|
|
|
[ -f $tos ] && [ -n "$MANGLE_ENABLED" ] && process_tos $tos
|
|
|
|
|
|
|
|
[ -n "$TC_ENABLED" ] && setup_tc
|
|
|
|
|
|
|
|
echo "Activating Rules..."
|
|
|
|
|
|
|
|
activate_rules
|
|
|
|
|
2002-07-23 18:26:45 +02:00
|
|
|
[ -n "$aliases_to_add" ] && \
|
|
|
|
echo "Adding IP Aliases..." && \
|
|
|
|
add_ip_aliases $aliases_to_add
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
run_user_exit start
|
|
|
|
|
|
|
|
createchain shorewall no
|
|
|
|
|
2002-07-23 00:31:07 +02:00
|
|
|
date > /var/lib/shorewall/restarted
|
|
|
|
|
2002-05-03 00:56:27 +02:00
|
|
|
report "Shorewall ${1}ed"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
rm -rf $TMP_DIR
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Check the configuration #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
check_config() {
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Verifying Configuration..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
verify_os_version
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
load_kernel_modules
|
|
|
|
|
|
|
|
echo "Determining Zones..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
determine_zones
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
[ -z "$zones" ] && startup_error "ERROR: No Zones Defined"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
display_list "Zones:" $zones
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Validating interfaces file..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
validate_interfaces_file
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Validating hosts file..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
validate_hosts_file
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Determining Hosts in Zones..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
determine_interfaces
|
|
|
|
determine_hosts
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Validating rules file..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
validate_rules
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Validating policy file..."
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
validate_policy
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
rm -rf $TMP_DIR
|
2002-05-01 01:13:15 +02:00
|
|
|
|
2002-06-18 21:30:22 +02:00
|
|
|
echo "Configuration Validated"
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Rebuild the common chain #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
refresh_firewall()
|
|
|
|
{
|
|
|
|
echo "Refreshing Shorewall..."
|
|
|
|
|
|
|
|
echo "Determining Zones and Interfaces..."
|
|
|
|
|
|
|
|
determine_zones
|
|
|
|
|
|
|
|
[ -z "$zones" ] && startup_error "ERROR: No Zones Defined"
|
|
|
|
|
|
|
|
determine_interfaces
|
|
|
|
|
2002-05-30 14:55:47 +02:00
|
|
|
run_user_exit refresh
|
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
run_iptables -F common
|
|
|
|
|
|
|
|
echo "Adding Common Rules"
|
|
|
|
############################################################################
|
|
|
|
# Common rules in each chain
|
|
|
|
#
|
|
|
|
common=`find_file common`
|
|
|
|
|
|
|
|
if [ -f $common ]; then
|
|
|
|
. $common
|
|
|
|
else
|
|
|
|
. `find_file common.def`
|
|
|
|
fi
|
|
|
|
###########################################################################
|
|
|
|
# BROADCASTS
|
|
|
|
#
|
2002-05-18 21:04:45 +02:00
|
|
|
drop_broadcasts `find_broadcasts`
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
# Blacklist
|
|
|
|
#
|
|
|
|
refresh_blacklist
|
|
|
|
|
2002-05-03 00:56:27 +02:00
|
|
|
report "Shorewall Refreshed"
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
rm -rf $TMP_DIR
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Determine the value for a parameter that defaults to Yes #
|
|
|
|
################################################################################
|
|
|
|
added_param_value_yes() # $1 = Parameter Name, $2 = Parameter value
|
|
|
|
{
|
|
|
|
local val="$2"
|
|
|
|
|
|
|
|
if [ -z "$val" ]; then
|
|
|
|
echo "Yes"
|
|
|
|
else case $val in
|
2002-07-06 00:24:40 +02:00
|
|
|
[Yy][Ee][Ss])
|
2002-05-01 01:13:15 +02:00
|
|
|
echo "Yes"
|
|
|
|
;;
|
|
|
|
[Nn][Oo])
|
|
|
|
echo ""
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
startup_error "Invalid value ($val) for $1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Determine the value for a parameter that defaults to No #
|
|
|
|
################################################################################
|
|
|
|
added_param_value_no() # $1 = Parameter Name, $2 = Parameter value
|
|
|
|
{
|
|
|
|
local val="$2"
|
|
|
|
|
|
|
|
if [ -z "$val" ]; then
|
|
|
|
echo ""
|
|
|
|
else case $val in
|
2002-07-06 00:24:40 +02:00
|
|
|
[Yy][Ee][Ss])
|
2002-05-01 01:13:15 +02:00
|
|
|
echo "Yes"
|
|
|
|
;;
|
|
|
|
[Nn][Oo])
|
|
|
|
echo ""
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
startup_error "Invalid value ($val) for $1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
2002-07-06 00:24:40 +02:00
|
|
|
# Initialize this program #
|
2002-05-01 01:13:15 +02:00
|
|
|
################################################################################
|
|
|
|
do_initialize() {
|
|
|
|
# Run all utility programs using the C locale
|
|
|
|
#
|
|
|
|
# Thanks to Vincent Planchenault for this tip #
|
|
|
|
|
|
|
|
export LC_ALL=C
|
|
|
|
|
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin
|
|
|
|
############################################################################
|
|
|
|
# Clear all configuration variables
|
|
|
|
#
|
|
|
|
version=
|
|
|
|
FW=
|
|
|
|
SUBSYSLOCK=
|
|
|
|
STATEDIR=
|
|
|
|
ALLOWRELATED=
|
|
|
|
LOGRATE=
|
|
|
|
LOGBURST=
|
|
|
|
LOGPARMS=
|
|
|
|
NAT_ENABLED=
|
|
|
|
MANGLE_ENABLED=
|
|
|
|
ADD_IP_ALIASES=
|
|
|
|
ADD_SNAT_ALIASES=
|
|
|
|
TC_ENABLED=
|
|
|
|
LOGUNCLEAN=
|
|
|
|
BLACKLIST_DISPOSITION=
|
|
|
|
BLACKLIST_LOGLEVEL=
|
|
|
|
CLAMPMSS=
|
|
|
|
ROUTE_FILTER=
|
|
|
|
NAT_BEFORE_RULES=
|
2002-06-02 19:05:51 +02:00
|
|
|
MULTIPORT=
|
2002-07-09 23:21:28 +02:00
|
|
|
DETECT_DNAT_IPADDRS=
|
2002-07-20 00:51:28 +02:00
|
|
|
MERGE_HOSTS=
|
2002-05-01 01:13:15 +02:00
|
|
|
stopping=
|
|
|
|
have_mutex=
|
|
|
|
masq_seq=1
|
2002-05-18 15:45:23 +02:00
|
|
|
nonat_seq=1
|
2002-07-23 18:26:45 +02:00
|
|
|
aliases_to_add=
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
TMP_DIR=/tmp/shorewall-$$
|
|
|
|
rm -rf $TMP_DIR
|
|
|
|
mkdir -p $TMP_DIR && chmod 700 $TMP_DIR || \
|
|
|
|
startup_error "Can't create $TMP_DIR"
|
|
|
|
|
|
|
|
trap "rm -rf $TMP_DIR; my_mutex_off; exit 2" 1 2 3 4 5 6 9
|
|
|
|
|
2002-06-15 19:27:41 +02:00
|
|
|
functions=/var/lib/shorewall/functions
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
if [ -f $functions ]; then
|
2002-07-06 00:24:40 +02:00
|
|
|
. $functions
|
2002-05-01 01:13:15 +02:00
|
|
|
else
|
2002-07-06 00:24:40 +02:00
|
|
|
startup_error "$functions does not exist!"
|
2002-05-01 01:13:15 +02:00
|
|
|
fi
|
|
|
|
|
2002-06-15 19:27:41 +02:00
|
|
|
version_file=/var/lib/shorewall/version
|
2002-05-01 01:13:15 +02:00
|
|
|
|
|
|
|
[ -f $version_file ] && version=`cat $version_file`
|
|
|
|
#
|
|
|
|
# Strip the files that we use often
|
|
|
|
#
|
|
|
|
strip_file interfaces
|
|
|
|
strip_file hosts
|
|
|
|
|
|
|
|
run_user_exit shorewall.conf
|
|
|
|
run_user_exit params
|
|
|
|
|
|
|
|
[ -z "${STATEDIR}" ] && STATEDIR=/var/state/shorewall
|
|
|
|
|
|
|
|
[ -d $STATEDIR ] || mkdir -p $STATEDIR
|
|
|
|
|
|
|
|
[ -z "$FW" ] && FW=fw
|
|
|
|
|
|
|
|
ALLOWRELATED="`added_param_value_yes ALLOWRELATED $ALLOWRELATED`"
|
|
|
|
NAT_ENABLED="`added_param_value_yes NAT_ENABLED $NAT_ENABLED`"
|
|
|
|
MANGLE_ENABLED="`added_param_value_yes MANGLE_ENABLED $MANGLE_ENABLED`"
|
|
|
|
ADD_IP_ALIASES="`added_param_value_yes ADD_IP_ALIASES $ADD_IP_ALIASES`"
|
|
|
|
TC_ENABLED="`added_param_value_yes TC_ENABLED $TC_ENABLED`"
|
|
|
|
|
|
|
|
if [ -n "${LOGRATE}${LOGBURST}" ]; then
|
|
|
|
LOGPARMS="--match limit"
|
|
|
|
[ -n "$LOGRATE" ] && LOGPARMS="$LOGPARMS --limit $LOGRATE"
|
|
|
|
[ -n "$LOGBURST" ] && LOGPARMS="$LOGPARMS --limit-burst $LOGBURST"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$IP_FORWARDING" ]; then
|
|
|
|
case "$IP_FORWARDING" in
|
|
|
|
[Oo][Nn]|[Oo][Ff][Ff]|[Kk][Ee][Ee][Pp])
|
2002-07-06 00:24:40 +02:00
|
|
|
;;
|
|
|
|
*)
|
2002-05-01 01:13:15 +02:00
|
|
|
startup_error "Invalid value ($IP_FORWARDING) for IP_FORWARDING"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
IP_FORWARDING=On
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$TC_ENABLED" -a -z "$MANGLE_ENABLED" ]; then
|
|
|
|
startup_error "Traffic Control requires Mangle"
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ -z "$BLACKLIST_DISPOSITION" ] && BLACKLIST_DISPOSITION=DROP
|
|
|
|
|
|
|
|
CLAMPMSS=`added_param_value_no CLAMPMSS $CLAMPMSS`
|
|
|
|
ADD_SNAT_ALIASES=`added_param_value_no ADD_SNAT_ALIASES $ADD_SNAT_ALIASES`
|
|
|
|
ROUTE_FILTER=`added_param_value_no ROUTE_FILTER $ROUTE_FILTER`
|
|
|
|
NAT_BEFORE_RULES=`added_param_value_yes NAT_BEFORE_RULES $NAT_BEFORE_RULES`
|
2002-06-02 19:05:51 +02:00
|
|
|
MULTIPORT=`added_param_value_no MULTIPORT $MULTIPORT`
|
2002-07-09 23:21:28 +02:00
|
|
|
DETECT_DNAT_IPADDRS=`added_param_value_no DETECT_DNAT_IPADDRS $DETECT_DNAT_IPADDRS`
|
2002-07-20 00:51:28 +02:00
|
|
|
MERGE_HOSTS=`added_param_value_no MERGE_HOSTS $MERGE_HOSTS`
|
2002-05-01 01:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Give Usage Information #
|
|
|
|
################################################################################
|
|
|
|
usage() {
|
|
|
|
echo "Usage: $0 [debug] {start|stop|reset|restart|status|refresh|clear]}"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# E X E C U T I O N B E G I N S H E R E #
|
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Start trace if first arg is "debug"
|
|
|
|
#
|
|
|
|
[ $# -gt 1 ] && [ "$1" = "debug" ] && { set -x ; shift ; }
|
|
|
|
|
|
|
|
nolock=
|
|
|
|
|
|
|
|
[ $# -gt 1 ] && [ "$1" = "nolock" ] && { nolock=Yes; shift ; }
|
|
|
|
|
|
|
|
[ $# -ne 1 ] && usage
|
|
|
|
|
|
|
|
command="$1"
|
|
|
|
|
|
|
|
case "$command" in
|
|
|
|
stop)
|
|
|
|
do_initialize
|
|
|
|
my_mutex_on
|
|
|
|
echo -n "Stopping Shorewall..."
|
|
|
|
determine_zones
|
|
|
|
stop_firewall
|
|
|
|
[ -n "$SUBSYSLOCK" ] && rm -f $SUBSYSLOCK
|
|
|
|
echo "done."
|
|
|
|
my_mutex_off
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
start)
|
|
|
|
do_initialize
|
|
|
|
my_mutex_on
|
|
|
|
if qt iptables -L shorewall -n ; then
|
|
|
|
[ -n "$SUBSYSLOCK" ] && touch $SUBSYSLOCK
|
|
|
|
echo "Shorewall Already Started"
|
|
|
|
my_mutex_off
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
define_firewall "Start" && [ -n "$SUBSYSLOCK" ] && touch $SUBSYSLOCK
|
2002-05-18 15:45:23 +02:00
|
|
|
my_mutex_off
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
restart)
|
|
|
|
do_initialize
|
|
|
|
my_mutex_on
|
|
|
|
if qt iptables -L shorewall -n ; then
|
|
|
|
define_firewall "Restart"
|
|
|
|
else
|
|
|
|
echo "Shorewall Not Currently Running"
|
|
|
|
define_firewall "Start"
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ $? -eq 0 ] && [ -n "$SUBSYSLOCK" ] && touch $SUBSYSLOCK
|
|
|
|
my_mutex_off
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
status)
|
|
|
|
echo -e "Shorewall-$version Status at $HOSTNAME - `date`\\n"
|
|
|
|
iptables -L -n -v
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
reset)
|
|
|
|
iptables -L -n -Z -v
|
2002-05-03 00:56:27 +02:00
|
|
|
report "Shorewall Counters Reset"
|
2002-07-23 00:31:07 +02:00
|
|
|
date > /var/lib/shorewall/restarted
|
2002-05-01 01:13:15 +02:00
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
refresh)
|
|
|
|
do_initialize
|
|
|
|
my_mutex_on
|
|
|
|
if ! qt iptables -L shorewall -n ; then
|
|
|
|
echo "Shorewall Not Started"
|
|
|
|
my_mutex_off
|
|
|
|
exit 2;
|
2002-07-06 00:24:40 +02:00
|
|
|
fi
|
2002-05-01 01:13:15 +02:00
|
|
|
refresh_firewall;
|
|
|
|
my_mutex_off
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
clear)
|
|
|
|
do_initialize
|
|
|
|
my_mutex_on
|
|
|
|
echo -n "Clearing Shorewall..."
|
|
|
|
determine_zones
|
|
|
|
clear_firewall
|
|
|
|
[ -n "$SUBSYSLOCK" ] && rm -f $SUBSYSLOCK
|
|
|
|
echo "done."
|
|
|
|
my_mutex_off
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
check)
|
|
|
|
do_initialize
|
|
|
|
check_config
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
*)
|
|
|
|
usage
|
|
|
|
;;
|
2002-05-30 14:55:47 +02:00
|
|
|
|
2002-05-01 01:13:15 +02:00
|
|
|
esac
|