diff options
author | Jakob Kirsch <jakob.kirsch@web.de> | 2025-03-09 16:16:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-03-19 11:20:13 +0100 |
commit | 30b263dd5a830e30e680793c110e3854ceaf88ff (patch) | |
tree | 930a35fa1b15f7c8005155bc92bbc4361f858736 /gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch | |
parent | df799a61ef73451e587cb81942c7bfcbbade9e7e (diff) |
gnu: ntp: Fix crash.
Fixes <https://issues.guix.gnu.org/76401>.
* gnu/packages/ntp.scm (ntp): Add patch.
* gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch: Add patch.
* gnu/local.mk (dist_patch_DATA): Register patch.
Change-Id: Ib3524c13fb2a1e6c70f8733cac3faeb427d00296
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch')
-rw-r--r-- | gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch b/gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch new file mode 100644 index 0000000000..121c3d56a6 --- /dev/null +++ b/gnu/packages/patches/ntp-fix-dereferencing-the-wrong-variable.patch @@ -0,0 +1,45 @@ +Subject: [PATCH] Fix dereferencing the wrong variable + +In line 1911 in ntp_io.c, the code calls `create_interface(port, ep2)` and saves +the return value in the variable `ep`, which is then checked to not be `NULL` in +the next line. In case `ep` is `NULL`, the code starting in line 1923 is +executed. Keep in mind that `ep` is `NULL` in this branch. The error is logged +in line 1928 and the address inside `ep` is converted using `stoa` by calling +`stoa(&ep->sin)`. This would normally be fine since `socktoa` catches a `NULL` +pointer in line 43 in socktoa.c but `&ep->sin` isn't `NULL` but 0x24 as the +field isn't the first one in the `endpt` struct. + +This then causes a segmentation fault by dereferencing the pointer `0x24` in +line 46 as the code tries to get the address family using `AF(sock)`. + +This only happens when ntpd cannot create an interface which seems to happen at +boot time leading to 6 crashes on my machine on average. + +The issue is that someone accidentally typed `ep` instead of the correct `ep2`. + +This bug is being tracked as 3968 and 3928 upstream. +--- + ntpd/ntp_io.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ntpd/ntp_io.c b/ntpd/ntp_io.c +index 9d79fe4..0e761ff 100644 +--- a/ntpd/ntp_io.c ++++ b/ntpd/ntp_io.c +@@ -1921,11 +1921,11 @@ update_interfaces( + } + else { + DPRINT_INTERFACE(3, +- (ep, "updating ", " new - FAILED")); ++ (ep2, "updating ", " new - FAILED")); + + msyslog(LOG_ERR, + "cannot bind address %s", +- stoa(&ep->sin)); ++ stoa(&ep2->sin)); + } + free(ep2); + } +-- +2.48.1 + |