From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 8/9] suricata: Introduce IPSBYPASS chain
Date: Tue, 19 Oct 2021 06:04:45 +0200 [thread overview]
Message-ID: <aa08d610a936d76f1b3d4098dfbdef1bb55960dd.camel@ipfire.org> (raw)
In-Reply-To: <20211018101022.15448-8-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 7035 bytes --]
Tested-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> NFQUEUE does not let the packet continue where it was processed, but
> inserts it back into iptables at the start. That is why we need an
> extra IPSBYPASS chain which has the following tasks:
>
> * Make the BYPASS bit permanent for the entire connection
> * Clear the REPEAT bit
>
> The latter is more of cosmetic nature so that we can identify packets
> that have come from suricata again and those which have bypassed the
> IPS
> straight away.
>
> The IPS_* chain will now only be sent traffic to, when none of the
> two
> relevant bits has been set. Otherwise the packet has already been
> processed by suricata in the first pass or suricata has decided to
> bypass the connection.
>
> This massively reduces load on the IPS which allows many common
> connections (TLS connections with downloads) to bypass the IPS
> bringing
> us back to line speed.
>
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> src/initscripts/system/firewall | 23 ++++++++++++++++++++---
> src/initscripts/system/suricata | 27 +++------------------------
> 2 files changed, 23 insertions(+), 27 deletions(-)
>
> diff --git a/src/initscripts/system/firewall
> b/src/initscripts/system/firewall
> index ce428393d..530e8f1d6 100644
> --- a/src/initscripts/system/firewall
> +++ b/src/initscripts/system/firewall
> @@ -17,6 +17,11 @@ NAT_MASK="0x0f000000"
> IPSEC_MARK="0x00800000"
> IPSEC_MASK="${IPSEC_MARK}"
>
> +IPS_REPEAT_MARK="0x80000000"
> +IPS_REPEAT_MASK="0x80000000"
> +IPS_BYPASS_MARK="0x40000000"
> +IPS_BYPASS_MASK="0x40000000"
> +
> function iptables() {
> /sbin/iptables --wait "$@"
> }
> @@ -41,6 +46,17 @@ iptables_init() {
> modprobe nf_log_ipv4
> sysctl -q -w net.netfilter.nf_log.2=nf_log_ipv4
>
> + # IPS Bypass Chain which stores the BYPASS bit in connection
> tracking
> + iptables -N IPSBYPASS
> + iptables -A IPSBYPASS -j MARK --set-xmark "0/$((
> IPS_REPEAT_MASK ))"
> + iptables -A IPSBYPASS -j CONNMARK --save-mark
> +
> + # Jump into bypass chain when the BYPASS bit is set
> + for chain in INPUT FORWARD OUTPUT; do
> + iptables -A "${chain}" -m mark \
> + --mark "$(( IPS_REPEAT_MARK | IPS_BYPASS_MARK
> ))/$(( IPS_REPEAT_MASK | IPS_BYPASS_MASK ))" -j IPSBYPASS
> + done
> +
> # Empty LOG_DROP and LOG_REJECT chains
> iptables -N LOG_DROP
> iptables -A LOG_DROP -m limit --limit 10/second -j LOG
> @@ -147,9 +163,10 @@ iptables_init() {
> iptables -N IPS_INPUT
> iptables -N IPS_FORWARD
> iptables -N IPS_OUTPUT
> - iptables -A INPUT -j IPS_INPUT
> - iptables -A FORWARD -j IPS_FORWARD
> - iptables -A OUTPUT -j IPS_OUTPUT
> +
> + for chain in INPUT FORWARD OUTPUT; do
> + iptables -A "${chain}" -m mark --mark "0x0/$((
> IPS_REPEAT_MASK | IPS_BYPASS_MASK ))" -j "IPS_${chain}"
> + done
>
> # OpenVPN transfer network translation
> iptables -t nat -N OVPNNAT
> diff --git a/src/initscripts/system/suricata
> b/src/initscripts/system/suricata
> index 72d01b91d..13fcc7f34 100644
> --- a/src/initscripts/system/suricata
> +++ b/src/initscripts/system/suricata
> @@ -34,12 +34,6 @@ network_zones=( red green blue orange ovpn )
> # Array to store the network zones weather the IPS is enabled for.
> enabled_ips_zones=()
>
> -# Mark and Mask options.
> -REPEAT_MARK="0x80000000"
> -REPEAT_MASK="0x80000000"
> -BYPASS_MARK="0x40000000"
> -BYPASS_MASK="0x40000000"
> -
> # PID file of suricata.
> PID_FILE="/var/run/suricata.pid"
>
> @@ -134,34 +128,19 @@ function generate_fw_rules {
> # Flush the firewall chains.
> flush_fw_chain
>
> - # Skip anything that has the bypass bit set
> - local chain
> - for chain in "${IPS_INPUT_CHAIN}" "${IPS_FORWARD_CHAIN}"
> "${IPS_OUTPUT_CHAIN}"; do
> - iptables -w -A "${chain}" -m mark --mark
> "${BYPASS_MARK}/${BYPASS_MASK}" -j RETURN
> - done
> -
> # Check if the array of enabled_ips_zones contains any
> elements.
> if [[ ${enabled_ips_zones[@]} ]]; then
> # Loop through the array and create firewall rules.
> for enabled_ips_zone in "${enabled_ips_zones[@]}"; do
> # Create rules queue input and output related
> traffic and pass it to the IPS.
> - iptables -w -A "$IPS_INPUT_CHAIN" -i
> "$enabled_ips_zone" -m mark ! --mark "${REPEAT_MARK}/${REPEAT_MASK}"
> -j NFQUEUE $NFQ_OPTIONS
> - iptables -w -A "$IPS_OUTPUT_CHAIN" -o
> "$enabled_ips_zone" -m mark ! --mark "${REPEAT_MARK}/${REPEAT_MASK}"
> -j NFQUEUE $NFQ_OPTIONS
> + iptables -w -A "$IPS_INPUT_CHAIN" -i
> "$enabled_ips_zone" -j NFQUEUE $NFQ_OPTIONS
> + iptables -w -A "$IPS_OUTPUT_CHAIN" -o
> "$enabled_ips_zone" -j NFQUEUE $NFQ_OPTIONS
>
> # Create rules which are required to handle
> forwarded traffic.
> for enabled_ips_zone_forward in
> "${enabled_ips_zones[@]}"; do
> - iptables -w -A "$IPS_FORWARD_CHAIN" -
> i "$enabled_ips_zone" -o "$enabled_ips_zone_forward" -m mark ! --mark
> "${REPEAT_MARK}/${REPEAT_MASK}" -j NFQUEUE $NFQ_OPTIONS
> + iptables -w -A "$IPS_FORWARD_CHAIN" -
> i "$enabled_ips_zone" -o "$enabled_ips_zone_forward" -j NFQUEUE
> $NFQ_OPTIONS
> done
> done
> -
> - # Add common rules at the end of the chain
> - for chain in "${IPS_INPUT_CHAIN}"
> "${IPS_FORWARD_CHAIN}" "${IPS_OUTPUT_CHAIN}"; do
> - # Clear repeat bit
> - iptables -w -A "${chain}" -j MARK --set-xmark
> "0x0/${REPEAT_MASK}"
> -
> - # Store bypass bit in CONNMARK
> - iptables -w -A "${chain}" -m mark --mark
> "${BYPASS_MARK}/${BYPASS_MASK}" -j CONNMARK --save-mark
> - done
> fi
> }
>
next prev parent reply other threads:[~2021-10-19 4:04 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-18 10:10 [PATCH 1/9] suricata: Set most significant bit as repeat marker Michael Tremer
2021-10-18 10:10 ` [PATCH 2/9] suricata: Rename MARK/MASK to REPEAT_MARK/REPEAT_MASK Michael Tremer
2021-10-18 20:42 ` Peter Müller
2021-10-19 4:02 ` Stefan Schantl
2021-10-18 10:10 ` [PATCH 3/9] suricata: Define bypass mark Michael Tremer
2021-10-18 20:43 ` Peter Müller
2021-10-19 4:03 ` Stefan Schantl
2021-10-18 10:10 ` [PATCH 4/9] suricata: Enable bypassing unhandled streams Michael Tremer
2021-10-19 4:03 ` Stefan Schantl
2021-10-18 10:10 ` [PATCH 5/9] suricata: Always append rules instead of inserting them Michael Tremer
2021-10-19 4:03 ` Stefan Schantl
2021-10-18 10:10 ` [PATCH 6/9] suricata: Add rule to skip IPS if a packet has the bypass bit set Michael Tremer
2021-10-19 4:04 ` Stefan Schantl
2021-10-18 10:10 ` [PATCH 7/9] suricata: Store bypass flag in connmark and restore Michael Tremer
2021-10-19 4:04 ` Stefan Schantl
2021-10-18 10:10 ` [PATCH 8/9] suricata: Introduce IPSBYPASS chain Michael Tremer
2021-10-19 4:04 ` Stefan Schantl [this message]
2021-10-18 10:10 ` [PATCH 9/9] firewall: Keep REPEAT bit when saving rest to CONNMARK Michael Tremer
2021-10-19 4:05 ` Stefan Schantl
2021-10-18 20:42 ` [PATCH 1/9] suricata: Set most significant bit as repeat marker Peter Müller
2021-10-19 4:02 ` Stefan Schantl
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aa08d610a936d76f1b3d4098dfbdef1bb55960dd.camel@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox