mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 18:32:12 +02:00
systemd: Update 250.3 -> 250.4
The following security and bug-fix patches are included as part of the 250.4 update: c6603da3ad boot: Properly check status code of console_key_read 2198c08d07 core: really skip automatic restart when a JOB_STOP job is pending 367041af81 pid1: set SYSTEMD_NSS_DYNAMIC_BYPASS=1 env var for dbus-daemon 160eeab224 virt: Fix Xen Dom0 detection logic to no longer report as VM 514a4c051c network: bridge: fix endian of vlan protocol 4dbc210124 resolve: fix possible memleak d82bd80cf4 resolve: fix potential memleak and use-after-free dcba78244e util: another set of CVE-2021-4034 assert()s 74dfb51f70 sd-dhcp6-client: fix sending prefix delegation request during rebind df59c65a23 mkdir: allow to create directory whose path contains symlink ae95ca27be sd-dhcp-lease: fix memleak 2b04d3b3fc sd-dhcp-lease: fix reading unaligned memory 1ef56ad928 network: xfrm: refuse zero interface ID 7dc0f80588 sd-dhcp-lease: fix a memory leak in dhcp_lease_parse_search_domains 426807c54b sd-dhcp-lease: fix an infinite loop found by the fuzzer 0456e3aaaa oomd: fix race with path unavailability when killing cgroups As the following two patches: 0001-mkdir-allow-to-create-directory-whose-path-contains-.patch 0001-src-fundamental-list-fundamental_source_paths-using-.patch have been merged in 250.4 or replaced, remove them. (From OE-Core rev: ccf7b8948f0c02e28e8a0151c48bf169d3fc36c8) Signed-off-by: Richard Neill <richard.neill@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
197c379d2b
commit
2dfe8c74cf
@@ -14,10 +14,8 @@ LICENSE = "GPL-2.0-only & LGPL-2.1-only"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe \
|
||||
file://LICENSE.LGPL2.1;md5=4fbd65380cdd255951079008b364516c"
|
||||
|
||||
SRCREV = "1b003bbc806198dbdd57b405d968f30565495e70"
|
||||
SRCREV = "c3aead556847dd2694d559620123b65ff16afe8c"
|
||||
SRCBRANCH = "v250-stable"
|
||||
SRC_URI = "git://github.com/systemd/systemd-stable.git;protocol=https;branch=${SRCBRANCH} \
|
||||
file://0001-src-fundamental-list-fundamental_source_paths-using-.patch \
|
||||
"
|
||||
SRC_URI = "git://github.com/systemd/systemd-stable.git;protocol=https;branch=${SRCBRANCH}"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
@@ -1,130 +0,0 @@
|
||||
From b060c53503339c45808efeb4294a03105a2999a5 Mon Sep 17 00:00:00 2001
|
||||
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
||||
Date: Wed, 2 Feb 2022 14:05:45 +0900
|
||||
Subject: [PATCH] mkdir: allow to create directory whose path contains symlink
|
||||
Cc: pavel@zhukoff.net
|
||||
|
||||
Upstream-Status: Backport
|
||||
Upstream-Url: https://github.com/systemd/systemd/pull/22359
|
||||
|
||||
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
|
||||
|
||||
|
||||
core/mount: fail early if directory cannot be created
|
||||
|
||||
Prompted by #22334.
|
||||
|
||||
mkdir: CHASE_NONEXISTENT cannot used in chase_symlinks_and_stat()
|
||||
|
||||
mkdir: allow to create directory whose path contains symlink
|
||||
|
||||
Fixes a regression caused by 3008a6f21c1c42efe852d69798a2fdd63fe657ec.
|
||||
|
||||
Before the commit, when `mkdir_parents_internal()` is called from `mkdir_p()`,
|
||||
it uses `_mkdir()` as `flag` is zero. But after the commit, `mkdir_safe_internal()`
|
||||
is always used. Hence, if the path contains a symlink, it fails with -ENOTDIR.
|
||||
|
||||
To fix the issue, this makes `mkdir_p()` calls `mkdir_parents_internal()` with
|
||||
MKDIR_FOLLOW_SYMLINK flag.
|
||||
|
||||
Fixes #22334.
|
||||
|
||||
test: add a test for mkdir_p()
|
||||
---
|
||||
src/basic/mkdir.c | 4 ++--
|
||||
src/core/mount.c | 4 +++-
|
||||
src/test/meson.build | 2 ++
|
||||
src/test/test-mkdir.c | 30 ++++++++++++++++++++++++++++++
|
||||
4 files changed, 37 insertions(+), 3 deletions(-)
|
||||
create mode 100644 src/test/test-mkdir.c
|
||||
|
||||
diff --git a/src/basic/mkdir.c b/src/basic/mkdir.c
|
||||
index 6e2b94d024..51a0d74e87 100644
|
||||
--- a/src/basic/mkdir.c
|
||||
+++ b/src/basic/mkdir.c
|
||||
@@ -42,7 +42,7 @@ int mkdir_safe_internal(
|
||||
if ((flags & MKDIR_FOLLOW_SYMLINK) && S_ISLNK(st.st_mode)) {
|
||||
_cleanup_free_ char *p = NULL;
|
||||
|
||||
- r = chase_symlinks_and_stat(path, NULL, CHASE_NONEXISTENT, &p, &st, NULL);
|
||||
+ r = chase_symlinks_and_stat(path, NULL, 0, &p, &st, NULL);
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r == 0)
|
||||
@@ -162,7 +162,7 @@ int mkdir_p_internal(const char *prefix, const char *path, mode_t mode, uid_t ui
|
||||
|
||||
assert(_mkdirat != mkdirat);
|
||||
|
||||
- r = mkdir_parents_internal(prefix, path, mode, uid, gid, flags, _mkdirat);
|
||||
+ r = mkdir_parents_internal(prefix, path, mode, uid, gid, flags | MKDIR_FOLLOW_SYMLINK, _mkdirat);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
diff --git a/src/core/mount.c b/src/core/mount.c
|
||||
index 0170406351..c650b5abe2 100644
|
||||
--- a/src/core/mount.c
|
||||
+++ b/src/core/mount.c
|
||||
@@ -1027,8 +1027,10 @@ static void mount_enter_mounting(Mount *m) {
|
||||
r = mkdir_p_label(p->what, m->directory_mode);
|
||||
/* mkdir_p_label() can return -EEXIST if the target path exists and is not a directory - which is
|
||||
* totally OK, in case the user wants us to overmount a non-directory inode. */
|
||||
- if (r < 0 && r != -EEXIST)
|
||||
+ if (r < 0 && r != -EEXIST) {
|
||||
log_unit_error_errno(UNIT(m), r, "Failed to make bind mount source '%s': %m", p->what);
|
||||
+ goto fail;
|
||||
+ }
|
||||
}
|
||||
|
||||
if (p) {
|
||||
diff --git a/src/test/meson.build b/src/test/meson.build
|
||||
index 9a1c481f22..7aa1d9c6ea 100644
|
||||
--- a/src/test/meson.build
|
||||
+++ b/src/test/meson.build
|
||||
@@ -193,6 +193,8 @@ tests += [
|
||||
|
||||
[['src/test/test-macro.c']],
|
||||
|
||||
+ [['src/test/test-mkdir.c']],
|
||||
+
|
||||
[['src/test/test-json.c']],
|
||||
|
||||
[['src/test/test-modhex.c']],
|
||||
diff --git a/src/test/test-mkdir.c b/src/test/test-mkdir.c
|
||||
new file mode 100644
|
||||
index 0000000000..c715d5f096
|
||||
--- /dev/null
|
||||
+++ b/src/test/test-mkdir.c
|
||||
@@ -0,0 +1,30 @@
|
||||
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
+
|
||||
+#include <unistd.h>
|
||||
+
|
||||
+#include "mkdir.h"
|
||||
+#include "path-util.h"
|
||||
+#include "rm-rf.h"
|
||||
+#include "tests.h"
|
||||
+#include "tmpfile-util.h"
|
||||
+
|
||||
+TEST(mkdir_p) {
|
||||
+ _cleanup_(rm_rf_physical_and_freep) char *tmp = NULL;
|
||||
+ _cleanup_free_ char *p = NULL;
|
||||
+
|
||||
+ assert_se(mkdtemp_malloc("/tmp/test-mkdir-XXXXXX", &tmp) >= 0);
|
||||
+
|
||||
+ assert_se(p = path_join(tmp, "run"));
|
||||
+ assert_se(mkdir_p(p, 0755) >= 0);
|
||||
+
|
||||
+ p = mfree(p);
|
||||
+ assert_se(p = path_join(tmp, "var/run"));
|
||||
+ assert_se(mkdir_parents(p, 0755) >= 0);
|
||||
+ assert_se(symlink("../run", p) >= 0);
|
||||
+
|
||||
+ p = mfree(p);
|
||||
+ assert_se(p = path_join(tmp, "var/run/hoge/foo/baz"));
|
||||
+ assert_se(mkdir_p(p, 0755) >= 0);
|
||||
+}
|
||||
+
|
||||
+DEFINE_TEST_MAIN(LOG_DEBUG);
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
From 8e882df78ede98c15a3f2567fabebfde1d774b02 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex@linutronix.de>
|
||||
Date: Fri, 7 Jan 2022 21:20:15 +0100
|
||||
Subject: [PATCH] src/fundamental: list fundamental_source_paths using relative
|
||||
paths
|
||||
|
||||
Otherwise, the compiler takes the full path to the source file
|
||||
and writes it into the binary output, breaking reproducibility.
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/systemd/systemd/pull/22047]
|
||||
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
||||
---
|
||||
src/fundamental/meson.build | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/fundamental/meson.build b/src/fundamental/meson.build
|
||||
index 287f0fe36a..954bdf150b 100644
|
||||
--- a/src/fundamental/meson.build
|
||||
+++ b/src/fundamental/meson.build
|
||||
@@ -20,7 +20,7 @@ sources = '''
|
||||
# for sd-boot
|
||||
fundamental_source_paths = []
|
||||
foreach source : sources
|
||||
- fundamental_source_paths += meson.current_source_dir() / source
|
||||
+ fundamental_source_paths += '../../fundamental/' + source
|
||||
endforeach
|
||||
|
||||
# for libbasic
|
||||
@@ -25,7 +25,6 @@ SRC_URI += "file://touchscreen.rules \
|
||||
file://0003-implment-systemd-sysv-install-for-OE.patch \
|
||||
file://0001-systemd.pc.in-use-ROOTPREFIX-without-suffixed-slash.patch \
|
||||
file://0001-test-parse-argument-Include-signal.h.patch \
|
||||
file://0001-mkdir-allow-to-create-directory-whose-path-contains-.patch \
|
||||
file://0029-network-enable-KeepConfiguration-when-running-on-net.patch \
|
||||
"
|
||||
|
||||
Reference in New Issue
Block a user