core: reorder systemd arguments on reexec
This commit is contained in:
parent
7ca90a9df1
commit
e66630c192
57
SOURCES/9000-core-reorder-systemd-arguments-on-reexec.patch
Normal file
57
SOURCES/9000-core-reorder-systemd-arguments-on-reexec.patch
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
From dcc55e1b0930c6db277e87b8a521e82f3d0f74c3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Andrew Lukoshko <alukoshko@almalinux.org>
|
||||||
|
Date: Thu, 17 Oct 2024 10:19:25 +0000
|
||||||
|
Subject: [PATCH] core: reorder systemd arguments on reexec
|
||||||
|
|
||||||
|
When reexecuting system let's put our arguments carrying deserialization
|
||||||
|
info first followed by any existing arguments to make sure they get
|
||||||
|
parsed in case we get weird stuff from the kernel cmdline (like --).
|
||||||
|
|
||||||
|
See: https://github.com/systemd/systemd/issues/28184
|
||||||
|
---
|
||||||
|
src/core/main.c | 6 +++++-
|
||||||
|
test/TEST-01-BASIC/test.sh | 5 +++++
|
||||||
|
2 files changed, 10 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/core/main.c b/src/core/main.c
|
||||||
|
index e7b8e98..6df29f3 100644
|
||||||
|
--- a/src/core/main.c
|
||||||
|
+++ b/src/core/main.c
|
||||||
|
@@ -1813,13 +1813,17 @@ static int do_reexecute(
|
||||||
|
xsprintf(sfd, "%i", fileno(arg_serialization));
|
||||||
|
|
||||||
|
i = 1; /* Leave args[0] empty for now. */
|
||||||
|
- filter_args(args, &i, argv, argc);
|
||||||
|
|
||||||
|
+ /* Put our stuff first to make sure it always gets parsed in case
|
||||||
|
+ * we get weird stuff from the kernel cmdline (like --) */
|
||||||
|
if (switch_root_dir)
|
||||||
|
args[i++] = "--switched-root";
|
||||||
|
args[i++] = arg_system ? "--system" : "--user";
|
||||||
|
args[i++] = "--deserialize";
|
||||||
|
args[i++] = sfd;
|
||||||
|
+
|
||||||
|
+ filter_args(args, &i, argv, argc);
|
||||||
|
+
|
||||||
|
args[i++] = NULL;
|
||||||
|
|
||||||
|
assert(i <= args_size);
|
||||||
|
diff --git a/test/TEST-01-BASIC/test.sh b/test/TEST-01-BASIC/test.sh
|
||||||
|
index cc6d065..d0e714a 100755
|
||||||
|
--- a/test/TEST-01-BASIC/test.sh
|
||||||
|
+++ b/test/TEST-01-BASIC/test.sh
|
||||||
|
@@ -8,6 +8,11 @@ RUN_IN_UNPRIVILEGED_CONTAINER=${RUN_IN_UNPRIVILEGED_CONTAINER:-yes}
|
||||||
|
TEST_REQUIRE_INSTALL_TESTS=0
|
||||||
|
TEST_SUPPORTING_SERVICES_SHOULD_BE_MASKED=0
|
||||||
|
|
||||||
|
+# Check if we can correctly deserialize if the kernel cmdline contains "weird" stuff
|
||||||
|
+# like an invalid argument, "end of arguments" separator, or a sysvinit argument (-z)
|
||||||
|
+# See: https://github.com/systemd/systemd/issues/28184
|
||||||
|
+KERNEL_APPEND="foo -- -z bar --- baz $KERNEL_APPEND"
|
||||||
|
+
|
||||||
|
# shellcheck source=test/test-functions
|
||||||
|
. "${TEST_BASE_DIR:?}/test-functions"
|
||||||
|
|
||||||
|
--
|
||||||
|
2.43.5
|
||||||
|
|
@ -823,6 +823,7 @@ Patch0731: 0731-bootspec-fix-null-dereference-read.patch
|
|||||||
Patch0732: 0732-generator-uninline-generator_open_unit_file-and-gene.patch
|
Patch0732: 0732-generator-uninline-generator_open_unit_file-and-gene.patch
|
||||||
|
|
||||||
# Downstream-only patches (9000–9999)
|
# Downstream-only patches (9000–9999)
|
||||||
|
Patch9000: 9000-core-reorder-systemd-arguments-on-reexec.patch
|
||||||
|
|
||||||
%ifarch %{ix86} x86_64 aarch64
|
%ifarch %{ix86} x86_64 aarch64
|
||||||
%global have_gnu_efi 1
|
%global have_gnu_efi 1
|
||||||
@ -1700,6 +1701,9 @@ systemd-hwdb update &>/dev/null || :
|
|||||||
%{_prefix}/lib/dracut/modules.d/70rhel-net-naming-sysattrs/*
|
%{_prefix}/lib/dracut/modules.d/70rhel-net-naming-sysattrs/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 17 2024 Andrew Lukoshko <alukoshko@almalinux.org> - 252-32.7.alma.1
|
||||||
|
- core: reorder systemd arguments on reexec
|
||||||
|
|
||||||
* Thu Jul 18 2024 systemd maintenance team <systemd-maint@redhat.com> - 252-32.7
|
* Thu Jul 18 2024 systemd maintenance team <systemd-maint@redhat.com> - 252-32.7
|
||||||
- generator: "uninline" generator_open_unit_file and generator_add_symlink (RHEL-49495)
|
- generator: "uninline" generator_open_unit_file and generator_add_symlink (RHEL-49495)
|
||||||
|
|
||||||
@ -1732,7 +1736,7 @@ systemd-hwdb update &>/dev/null || :
|
|||||||
* Thu Apr 11 2024 systemd maintenance team <systemd-maint@redhat.com> - 252-32.1
|
* Thu Apr 11 2024 systemd maintenance team <systemd-maint@redhat.com> - 252-32.1
|
||||||
- execute: Pass AT_FDCWD instead of -1 (RHEL-32259)
|
- execute: Pass AT_FDCWD instead of -1 (RHEL-32259)
|
||||||
|
|
||||||
* Tue Apr 30 2024 Andrew Lukoshko <alukoshko@almalinux.org> - 252-32.alma.1
|
* Mon Mar 18 2024 Andrew Lukoshko <alukoshko@almalinux.org> - 252-32.alma.1
|
||||||
- Debrand for AlmaLinux
|
- Debrand for AlmaLinux
|
||||||
|
|
||||||
* Mon Mar 18 2024 Jan Macku <jamacku@redhat.com> - 252-32
|
* Mon Mar 18 2024 Jan Macku <jamacku@redhat.com> - 252-32
|
||||||
|
Loading…
Reference in New Issue
Block a user