functions.m4: Write the netclass ids to the trace output.
[firewall] / classify.m4
index 27eb376..8b6a650 100644 (file)
@@ -1,4 +1,4 @@
-### -*-m4-*-
+### -*-sh-*-
 ###
 ### Classify packets according to source and destination networks.
 ###
@@ -69,16 +69,21 @@ clearchain mangle:local-source
 ## of weird stuff happens on lo, and it's best not to second-guess it.
 run ip46tables -t mangle -A in-classify -i lo -j ACCEPT
 
-## Local bootp packets have bizarre addresses.  Don't block them just because
-## of this.
+## Local broadcast and link-local multicast packets sometimes have bizarre
+## addresses.  Don't block them just because of this.
 run iptables -t mangle -A in-classify -j RETURN \
        -s 0.0.0.0 -d 255.255.255.255 \
-       -p udp --source-port $port_bootpc --destination-port $port_bootps
+       -p udp
+run iptables -t mangle -A in-classify -j RETURN \
+       -s 0.0.0.0 -d 224.0.0.0/24 \
+       -p udp
 
 ## Since packets with source and destination addresses both local will go
 ## over the loopback interface, I shouldn't see a packet from me over any
 ## other interface.  Except that I will if I sent a broadcast or multicast.
-## Allow the broadcasts, and remember not to trust them.
+## Allow the broadcasts, and remember not to trust them.  There are no
+## broadcast addresses in IPv6 (only link-local multicast)m so we don't have
+## to worry about that.
 run iptables -t mangle -A local-source -j RETURN \
        -m addrtype --dst-type BROADCAST
 run iptables -t mangle -A local-source -j RETURN \
@@ -93,6 +98,15 @@ for addr in $host_6addrs; do
          -s $addr
 done
 
+## It's not valid to have a multicast address as a packet source: multicast
+## routing is done away from the source, so a multicast address would make
+## this impossible to do.  So discard these packets.  Also discard class-E
+## IPv4 addresses, since they aren't assigned.
+run iptables -t mangle -A in-classify -g bad-source-address \
+       -s 224.0.0.0/3
+run ip6tables -t mangle -A in-classify -g bad-source-address \
+       -s ff00::/8
+
 m4_divert(41)m4_dnl
 ## Define the important networks.
 for pass in 1 2; do
@@ -101,26 +115,129 @@ m4_divert(42)m4_dnl
 done
 
 m4_divert(46)m4_dnl
-## Mark addresses reachable on non-default interfaces as not reachable on the
-## default interface.
-trace "nets = $allnets $allnets6"
+## Build the input classification chains.  There's one chain `in-IFACE' for
+## each local interface.  This chain does a further dispatch on the source
+## address to the appropriate `mark-from-CLASS' chain for the source network
+## class.
+seen=:
+for iface in $host_ifaces_<::>FWHOST; do
+  ifname=${iface%=*}
+  case $seen in *:$ifname:*) continue ;; esac
+  seen=$seen$ifname:
+  clearchain mangle:in-$ifname
+  run ip46tables -t mangle -A in-classify -i $ifname -g in-$ifname
+done
+
+## Now populate the `in-IFACE' and `out-classify' chains.  We iterate over
+## the available networks and add addresses to the appropriate chains.  Also,
+## build up a map of which interfaces receive from which address ranged so
+## that we can finish the chains off properly later.  This contains entries
+## of the form IFACE=:ADDR:ADDR:...:
+ifnets=""
 for net in $allnets; do
-  case $net in
-    "$defaultiface":*)
-      ;;
-    *)
-      run iptables -t mangle -A in-$defaultiface \
-             -s ${net#*:} -g bad-source-address
-      ;;
-  esac
+
+  ## Determine the addresses and class for this network, and populate the
+  ## `out-classify' chains.
+  eval addr=\$net_inet_$net addr6=\$net_inet6_$net class=\$net_class_$net
+  case $class in virtual) continue ;; esac
+  trace "$net : $class"
+  for a in $addr; do
+    run iptables -t mangle -A out-classify -g mark-to-$class -d $a
+  done
+  for a in $addr6; do
+    run ip6tables -t mangle -A out-classify -g mark-to-$class -d $a
+  done
+
+  ## Now work through the interfaces.
+  for iface in $(net_interfaces FWHOST $net); do
+    nets=""
+    case $iface in
+
+      -)
+       ## A special `no interface' marker: we should not receive packets
+       ## from this network at all.
+       continue
+       ;;
+
+      *-+)
+       ## A special marker indicating a collection of point-to-point
+       ## interfaces.  We should match an address to a particular interface.
+       ## Later, we'll cap this chain off by rejecting all other traffic.
+       eval hosts=\$net_hosts_$net
+       for host in $hosts; do
+         eval ha=\$host_inet_$host ha6=\$host_inet6_$host
+         trace "$host : $class -> $iface"
+         for a in $ha; do
+           run iptables -t mangle -A in-$iface \
+                   -i ${iface%+}$host -s $a -g mark-from-$class
+           nets=$nets$a:
+         done
+         for a in $ha6; do
+           run ip6tables -t mangle -A in-$iface \
+                   -i ${iface%+}$host -s $a -g mark-from-$class
+           nets=$nets$a:
+         done
+       done
+       ;;
+
+      *)
+       ## A normal interface.  Classify incoming traffic according to the
+       ## source address.
+       trace "$net : $class -> $iface"
+       for a in $addr; do
+         run iptables -t mangle -A in-$iface -g mark-from-$class -s $a
+         nets=$nets$a:
+       done
+       for a in $addr6; do
+         run ip6tables -t mangle -A in-$iface -g mark-from-$class -s $a
+         nets=$nets$a:
+       done
+       case $net in default) nets=${nets}default: ;; esac
+       ;;
+    esac
+
+    ## Record that this interface receives traffic from this network.
+    unset nifnets
+    foundp=nil
+    for ifnet in $ifnets; do
+      case $ifnet in
+       $iface=*:$net:*) addword nifnets $ifnet; foundp=t ;;
+       $iface=*) addword nifnets $ifnet$nets; foundp=t ;;
+       *) addword nifnets $ifnet ;;
+      esac
+    done
+    case $foundp in nil) addword nifnets $iface=:$nets ;; esac
+    ifnets=$nifnets
+
+  done
 done
-for net in $allnets6; do
-  case $net in
-    "$defaultiface":*)
+
+## Wrap up all of the `in-IFACE' chains.  A chain which matches the `default'
+## net should have unmatched but known networks blocked off, and then chain
+## onto `in-default'.  Other chains should just chain onto
+## `bad-source-address'.
+trace "ifnets = $ifnets"
+for ifnet in $ifnets; do
+  iface=${ifnet%%=*} nets=${ifnet#*=}
+  case $nets in
+    *:default:*)
+      for n in $allnets; do
+       eval addr=\$net_inet_$n addr6=\$net_inet6_$n
+       for a in $addr; do
+         case $nets in *:$a:*) continue ;; esac
+         nets=$nets$a
+         run iptables -t mangle -A in-$iface -s $a -g bad-source-address
+       done
+       for a in $addr6; do
+         case $nets in *:$a:*) continue ;; esac
+         nets=$nets$a
+         run ip6tables -t mangle -A in-$iface -s $a -g bad-source-address
+       done
+      done
+      run ip46tables -t mangle -A in-$iface -g in-default
       ;;
     *)
-      run ip6tables -t mangle -A in-$defaultiface \
-             -s ${net#*:} -g bad-source-address
+      run ip46tables -t mangle -A in-$iface -g bad-source-address
       ;;
   esac
 done
@@ -138,11 +255,15 @@ for addr in \
 do
   run ip6tables -t mangle -A in-default -s $addr -g bad-source-address
 done
+run ip46tables -t mangle -A in-default -g mark-from-$net_class_default
 
 m4_divert(92)m4_dnl
 ## Put the final default decision on the in-default chain, and attach the
 ## classification chains to the PREROUTING hook.
-run ip46tables -t mangle -A in-$defaultiface -g mark-from-$defaultclass
+for iface in $defaultifaces; do
+  run ip46tables -t mangle -A in-$iface -g in-default
+done
+run ip46tables -t mangle -A out-classify -g mark-to-$net_class_default
 run ip46tables -t mangle -A PREROUTING -j in-classify
 run ip46tables -t mangle -A PREROUTING -j out-classify