public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* Addressing #13764
@ 2024-09-10 14:37 Michael Tremer
  2024-09-10 14:37 ` [PATCH 01/20] suricata: Move the IPS into the mangle table Michael Tremer
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Michael Tremer @ 2024-09-10 14:37 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1872 bytes --]

this a patchset that addresses a bug reported by Dan as #13764.

Suricata and/or NFQUEUE end up in some undefined behaviour where packets
will be accepted when Suricata goes away (in this case it is being
killed by the OOM killer). This results in the firewall exposing all
ports on all interfaces which is a serious problem.

Although we actually configure the queue to simply bypass (as in no
longer enqueue) packets when Suricata dies, the kernel always seems to
end up in this scenario.

We cannot prevent that Suricata might die, but we will have to make sure
that the firewall does not change behaviour. This is now being done by
moving the IPS to the mangle table. The behaviour will be the same, but
an ACCEPT action on the mangle table will not accept the packet, it will
just terminate processing traffic in that table. We further ensure that
this is not going to be a problem by moving the NFQUEUE rule to the end.
If it is being skipped, this is not a problem as we will only stop
processing packets which won't be a problem as Suricata has gone away
anyways.

I believe that this is a better way to integrate Suricata, but it will
change the behaviour of the firewall in that sense that the IPS is now
the first thing that will see a packet. The location filter, IP
blocklists and so on will all come after. I personally do not consider
this a problem, but I wanted to make sure this is documented.

We now make more use of marking packets which might need to be
benchmarked in order to ensure that this is not introducing any
performance penalty.

Furthermore this patchset adds support for WireGuard and made some
improvements on the web UI which used some broken tables and a lot of
empty space on the screen.

Please test this and give me feedback if these changes introduce any
regressions. I believe we want to release this with c189.

Best,
-Michael



^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2024-09-10 14:37 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-10 14:37 Addressing #13764 Michael Tremer
2024-09-10 14:37 ` [PATCH 01/20] suricata: Move the IPS into the mangle table Michael Tremer
2024-09-10 14:37 ` [PATCH 02/20] initscripts: Fix bash function definitions in suricata Michael Tremer
2024-09-10 14:37 ` [PATCH 03/20] suricata: Use getconf to determine the number of processors Michael Tremer
2024-09-10 14:37 ` [PATCH 04/20] suricata: Remove some unused constants Michael Tremer
2024-09-10 14:37 ` [PATCH 05/20] suricata: Add whitelist to iptables Michael Tremer
2024-09-10 14:37 ` [PATCH 06/20] suricata: Replace removed CPU count function Michael Tremer
2024-09-10 14:37 ` [PATCH 07/20] suricata: Be more efficient with marks Michael Tremer
2024-09-10 14:37 ` [PATCH 08/20] suricata: Add a watcher to restart on unexpected termination Michael Tremer
2024-09-10 14:37 ` [PATCH 09/20] suricata: Start the new watcher in the background Michael Tremer
2024-09-10 14:37 ` [PATCH 10/20] suricata: Restore the interface selection Michael Tremer
2024-09-10 14:37 ` [PATCH 11/20] suricata: Remove superfluous bits from the initscript Michael Tremer
2024-09-10 14:37 ` [PATCH 12/20] suricata: Don't load /var/ipfire/ethernet/settings Michael Tremer
2024-09-10 14:37 ` [PATCH 13/20] suricata: Add option to scan WireGuard Michael Tremer
2024-09-10 14:37 ` [PATCH 14/20] suricata: Fix broken spacing in the settings section Michael Tremer
2024-09-10 14:37 ` [PATCH 15/20] ids.cgi: Use new style tables for rulesets Michael Tremer
2024-09-10 14:37 ` [PATCH 16/20] ids.cgi: Use new-style table for whitelist entries Michael Tremer
2024-09-10 14:37 ` [PATCH 17/20] ids.cgi: Sort " Michael Tremer
2024-09-10 14:37 ` [PATCH 18/20] ids.cgi: Remove box from the top section Michael Tremer
2024-09-10 14:37 ` [PATCH 19/20] ids.cgi: Fix detection for the Suricata process Michael Tremer
2024-09-10 14:37 ` [PATCH 20/20] firewall: Move the IPS after the NAT marking Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox