From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 6ccbd48aa9b999880c5944e9c1eb2bb1dca81b13 Date: Tue, 05 Nov 2024 13:35:10 +0000 Message-ID: <4XjTq25Q3Lz2xTf@people01.haj.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0431089217974891002==" List-Id: --===============0431089217974891002== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 6ccbd48aa9b999880c5944e9c1eb2bb1dca81b13 (commit) via 2be32bfb99176062ad0ec4649578cf6e6c79bc88 (commit) via 76b6bc3e9d4a40624c2bc80b5f408844359346ba (commit) from 57853da08b5dbc722df4c38d6ef33a39d97242e1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6ccbd48aa9b999880c5944e9c1eb2bb1dca81b13 Author: Arne Fitzenreiter Date: Tue Nov 5 14:34:35 2024 +0100 core190: ship intel-microcode =20 Signed-off-by: Arne Fitzenreiter commit 2be32bfb99176062ad0ec4649578cf6e6c79bc88 Author: Adolf Belka Date: Wed Oct 30 14:28:38 2024 +0100 intel-microcode: Update to version 20241029 =20 - Update from version 20240910 to 20241029 - Update of rootfile not required - Changelog 20241029 Update for functional issues. Refer to 14th/13th Generation Intel=C2=AE = Core=E2=84=A2 Processor Specification Update for details at https://cdrdv2.intel.com/v1/dl/getContent/740518 Updated Platforms Processor Stepping F-M-S/PI Old Ver New Ver Products RPL-E/HX/S B0 06-b7-01/32 00000129 0000012b Core Gen13/Gen14 =20 Signed-off-by: Adolf Belka Signed-off-by: Arne Fitzenreiter commit 76b6bc3e9d4a40624c2bc80b5f408844359346ba Author: Michael Tremer Date: Mon Oct 21 17:03:06 2024 +0000 suricata: Explicitly ignore IPsec traffic unless enabled =20 Signed-off-by: Michael Tremer Signed-off-by: Arne Fitzenreiter ----------------------------------------------------------------------- Summary of changes: .../121 =3D> core/190}/filelists/x86_64/intel-microcode | 0 lfs/intel-microcode | 4 ++-- src/initscripts/system/suricata | 12 ++++++++++= ++ 3 files changed, 14 insertions(+), 2 deletions(-) copy config/rootfiles/{oldcore/121 =3D> core/190}/filelists/x86_64/intel-mic= rocode (100%) Difference in files: diff --git a/config/rootfiles/core/190/filelists/x86_64/intel-microcode b/con= fig/rootfiles/core/190/filelists/x86_64/intel-microcode new file mode 120000 index 0000000000..d5ac074e2e --- /dev/null +++ b/config/rootfiles/core/190/filelists/x86_64/intel-microcode @@ -0,0 +1 @@ +../../../../common/x86_64/intel-microcode \ No newline at end of file diff --git a/lfs/intel-microcode b/lfs/intel-microcode index 7b77c25432..1d14b0524b 100644 --- a/lfs/intel-microcode +++ b/lfs/intel-microcode @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 20240910 +VER =3D 20241029 =20 THISAPP =3D Intel-Linux-Processor-Microcode-Data-Files-microcode-$(VER) DL_FILE =3D $(THISAPP).tar.gz @@ -41,7 +41,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_BLAKE2 =3D b4c353dd340ef8004e5be2e596de0ebaf8366684a3371207e14d3d= 8c0e4bbdc5a9c75d8279d280d1029452368556a0c2e7bf85f3fe75f1b1560e16c953f223b7 +$(DL_FILE)_BLAKE2 =3D 22b6b4a4a667e972da6663195bd22facb2473fb6204936f1f54852= 9f2fb03eb4d8c8ec7c87cb3fa51f9845a26e738df245da97e3459127c7352d16bffb9482b2 =20 install : $(TARGET) =20 diff --git a/src/initscripts/system/suricata b/src/initscripts/system/suricata index a753e32e68..a0f6079712 100644 --- a/src/initscripts/system/suricata +++ b/src/initscripts/system/suricata @@ -111,6 +111,18 @@ generate_fw_rules() { if [ "${!status}" =3D "on" ]; then # Handle IPsec packets case "${zone}" in + RED) + # If IPsec is not enabled, skip everything that is IPsec traffic + if [ "${ENABLE_IDS_IPSEC}" !=3D "on" ]; then + for intf in $(network_get_intfs "${zone}"); do + iptables -w -t mangle -A IPS_SCAN_IN \ + -i "${intf}" -m policy --pol ipsec --dir in -j RETURN + iptables -w -t mangle -A IPS_SCAN_OUT \ + -o "${intf}" -m policy --pol ipsec --dir out -j RETURN + done + fi + ;; + IPSEC) iptables -w -t mangle -A IPS_SCAN_IN \ -m policy --pol ipsec --dir in -j MARK --set-mark "$(( IPS_SCAN_MARK )= )/$(( IPS_SCAN_MASK ))" hooks/post-receive -- IPFire 2.x development tree --===============0431089217974891002==--