summaryrefslogtreecommitdiffstats
path: root/patches/source/dhcp/doinst.sh
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2022-10-05 18:55:36 +0000
committer Eric Hameleers <alien@slackware.com>2022-10-06 13:30:32 +0200
commit153ac9bb204e55276263530db56bd39540d15b53 (patch)
tree7f4d45e376c1f8aed47d1997422b80e118646cad /patches/source/dhcp/doinst.sh
parenta96a6a61e41ba076afec827d2733e8f239b99ad4 (diff)
downloadcurrent-153ac9bb204e55276263530db56bd39540d15b53.tar.gz
current-153ac9bb204e55276263530db56bd39540d15b53.tar.xz
Wed Oct 5 18:55:36 UTC 202220221005185536_15.0
patches/packages/dhcp-4.4.3_P1-x86_64-1_slack15.0.txz: Upgraded. This update fixes two security issues: Corrected a reference count leak that occurs when the server builds responses to leasequery packets. Corrected a memory leak that occurs when unpacking a packet that has an FQDN option (81) that contains a label with length greater than 63 bytes. Thanks to VictorV of Cyber Kunlun Lab for reporting these issues. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2928 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-2929 (* Security fix *)
Diffstat (limited to 'patches/source/dhcp/doinst.sh')
-rw-r--r--patches/source/dhcp/doinst.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/source/dhcp/doinst.sh b/patches/source/dhcp/doinst.sh
new file mode 100644
index 000000000..a376034a5
--- /dev/null
+++ b/patches/source/dhcp/doinst.sh
@@ -0,0 +1,21 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+config etc/dhcpd.conf.new
+config etc/dhclient.conf.new
+config var/state/dhcp/dhcpd.leases.new
+config var/state/dhcp/dhcpd6.leases.new
+config var/state/dhcp/dhclient.leases.new
+config var/state/dhcp/dhclient6.leases.new
+rm -f var/state/dhcp/*.leases.new
+