mirror of
https://github.com/systemd/systemd
synced 2026-03-31 04:04:54 +02:00
Compare commits
No commits in common. "6de1c6892414b39f675ef3ee41b483bd97d352b9" and "c15bd80eb99c336a9503c4def2e77d2d66270794" have entirely different histories.
6de1c68924
...
c15bd80eb9
@ -4249,6 +4249,12 @@ static int source_dispatch(sd_event_source *s) {
|
|||||||
|
|
||||||
s->dispatching = false;
|
s->dispatching = false;
|
||||||
|
|
||||||
|
/* More post sources might have been added while executing the callback, let's make sure
|
||||||
|
* those are marked pending as well. */
|
||||||
|
r = maybe_mark_post_sources_pending(saved_type, saved_event);
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
finish:
|
finish:
|
||||||
if (r < 0) {
|
if (r < 0) {
|
||||||
log_debug_errno(r, "Event source %s (type %s) returned error, %s: %m",
|
log_debug_errno(r, "Event source %s (type %s) returned error, %s: %m",
|
||||||
@ -4265,12 +4271,6 @@ finish:
|
|||||||
else if (r < 0)
|
else if (r < 0)
|
||||||
assert_se(sd_event_source_set_enabled(s, SD_EVENT_OFF) >= 0);
|
assert_se(sd_event_source_set_enabled(s, SD_EVENT_OFF) >= 0);
|
||||||
|
|
||||||
/* More post sources might have been added while executing the callback, let's make sure
|
|
||||||
* those are marked pending as well. */
|
|
||||||
r = maybe_mark_post_sources_pending(saved_type, saved_event);
|
|
||||||
if (r < 0)
|
|
||||||
return r;
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1075,7 +1075,7 @@ static int exit_on_idle_defer_handler(sd_event_source *s, void *userdata) {
|
|||||||
|
|
||||||
/* Disable ourselves, which should trigger exit-on-idle after the second iteration */
|
/* Disable ourselves, which should trigger exit-on-idle after the second iteration */
|
||||||
if (*c == 2)
|
if (*c == 2)
|
||||||
ASSERT_OK(sd_event_source_set_enabled(s, SD_EVENT_OFF));
|
sd_event_source_set_enabled(s, SD_EVENT_OFF);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -814,20 +814,9 @@ static int mount_bind(const char *dest, CustomMount *m, uid_t uid_shift, uid_t u
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ID remapping cannot be done if user namespaces are not in use (uid_shift is UID_INVALID).
|
|
||||||
* Fail if idmapping was explicitly requested in this state. Otherwise, treat UID_INVALID
|
|
||||||
* as 0 for ownership operations. */
|
|
||||||
if (idmapping != REMOUNT_IDMAPPING_NONE && !uid_is_valid(uid_shift))
|
|
||||||
return log_error_errno(
|
|
||||||
SYNTHETIC_ERRNO(EINVAL),
|
|
||||||
"ID remapping requested for %s, but user namespacing is not enabled.",
|
|
||||||
m->source);
|
|
||||||
|
|
||||||
uid_t chown_uid = uid_is_valid(uid_shift) ? uid_shift : 0;
|
|
||||||
|
|
||||||
/* If this is a bind mount from a temporary sources change ownership of the source to the container's
|
/* If this is a bind mount from a temporary sources change ownership of the source to the container's
|
||||||
* root UID. Otherwise it would always show up as "nobody" if user namespacing is used. */
|
* root UID. Otherwise it would always show up as "nobody" if user namespacing is used. */
|
||||||
if (m->rm_rf_tmpdir && chown(m->source, chown_uid, chown_uid) < 0)
|
if (m->rm_rf_tmpdir && chown(m->source, uid_shift, uid_shift) < 0)
|
||||||
return log_error_errno(errno, "Failed to chown %s: %m", m->source);
|
return log_error_errno(errno, "Failed to chown %s: %m", m->source);
|
||||||
|
|
||||||
/* UID/GIDs of idmapped mounts are always resolved in the caller's user namespace. In other
|
/* UID/GIDs of idmapped mounts are always resolved in the caller's user namespace. In other
|
||||||
@ -861,7 +850,7 @@ static int mount_bind(const char *dest, CustomMount *m, uid_t uid_shift, uid_t u
|
|||||||
if (stat(where, &dest_st) < 0)
|
if (stat(where, &dest_st) < 0)
|
||||||
return log_error_errno(errno, "Failed to stat %s: %m", where);
|
return log_error_errno(errno, "Failed to stat %s: %m", where);
|
||||||
|
|
||||||
dest_uid = uid_is_valid(m->destination_uid) ? chown_uid + m->destination_uid : dest_st.st_uid;
|
dest_uid = uid_is_valid(m->destination_uid) ? uid_shift + m->destination_uid : dest_st.st_uid;
|
||||||
|
|
||||||
if (S_ISDIR(source_st.st_mode) && !S_ISDIR(dest_st.st_mode))
|
if (S_ISDIR(source_st.st_mode) && !S_ISDIR(dest_st.st_mode))
|
||||||
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
|
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
|
||||||
@ -874,7 +863,7 @@ static int mount_bind(const char *dest, CustomMount *m, uid_t uid_shift, uid_t u
|
|||||||
m->source, where);
|
m->source, where);
|
||||||
|
|
||||||
} else { /* Path doesn't exist yet? */
|
} else { /* Path doesn't exist yet? */
|
||||||
r = mkdir_parents_safe_label(dest, where, 0755, chown_uid, chown_uid, MKDIR_IGNORE_EXISTING);
|
r = mkdir_parents_safe_label(dest, where, 0755, uid_shift, uid_shift, MKDIR_IGNORE_EXISTING);
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
return log_error_errno(r, "Failed to make parents of %s: %m", where);
|
return log_error_errno(r, "Failed to make parents of %s: %m", where);
|
||||||
|
|
||||||
@ -889,10 +878,10 @@ static int mount_bind(const char *dest, CustomMount *m, uid_t uid_shift, uid_t u
|
|||||||
if (r < 0)
|
if (r < 0)
|
||||||
return log_error_errno(r, "Failed to create mount point %s: %m", where);
|
return log_error_errno(r, "Failed to create mount point %s: %m", where);
|
||||||
|
|
||||||
if (chown(where, chown_uid, chown_uid) < 0)
|
if (chown(where, uid_shift, uid_shift) < 0)
|
||||||
return log_error_errno(errno, "Failed to chown %s: %m", where);
|
return log_error_errno(errno, "Failed to chown %s: %m", where);
|
||||||
|
|
||||||
dest_uid = chown_uid + (uid_is_valid(m->destination_uid) ? m->destination_uid : 0);
|
dest_uid = uid_shift + (uid_is_valid(m->destination_uid) ? m->destination_uid : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (move_mount(fd_clone, "", AT_FDCWD, where, MOVE_MOUNT_F_EMPTY_PATH) < 0)
|
if (move_mount(fd_clone, "", AT_FDCWD, where, MOVE_MOUNT_F_EMPTY_PATH) < 0)
|
||||||
|
|||||||
@ -1477,44 +1477,6 @@ testcase_link_journal_host() {
|
|||||||
rm -fr "$root" "$hoge"
|
rm -fr "$root" "$hoge"
|
||||||
}
|
}
|
||||||
|
|
||||||
testcase_volatile_link_journal_no_userns() {
|
|
||||||
local root machine_id journal_dir acl_output
|
|
||||||
|
|
||||||
root="$(mktemp -d /var/lib/machines/TEST-13-NSPAWN.volatile-journal.XXX)"
|
|
||||||
create_dummy_container "$root"
|
|
||||||
|
|
||||||
machine_id="$(systemd-id128 new)"
|
|
||||||
echo "$machine_id" >"$root/etc/machine-id"
|
|
||||||
|
|
||||||
journal_dir="/var/log/journal/$machine_id"
|
|
||||||
mkdir -p "$journal_dir"
|
|
||||||
chown root:root "$journal_dir"
|
|
||||||
|
|
||||||
systemd-nspawn --register=no \
|
|
||||||
--directory="$root" \
|
|
||||||
--boot \
|
|
||||||
--volatile=yes \
|
|
||||||
--link-journal=host \
|
|
||||||
systemd.unit=systemd-tmpfiles-setup.service
|
|
||||||
|
|
||||||
local gid
|
|
||||||
gid="$(stat -c '%g' "$journal_dir")"
|
|
||||||
|
|
||||||
# Ensure GID is not 4294967295 (GID_INVALID)
|
|
||||||
[[ "$gid" != "4294967295" ]]
|
|
||||||
|
|
||||||
# Ensure the directory is owned by a valid user (root or systemd-journal
|
|
||||||
# group). The GID should be either 0 (root) or the systemd-journal GID, not
|
|
||||||
# some bombastically large number
|
|
||||||
[[ "$gid" -lt 65535 ]]
|
|
||||||
|
|
||||||
# Ensure the invalid GID doesn't appear in ACLs
|
|
||||||
acl_output="$(getfacl "$journal_dir" || true)"
|
|
||||||
grep -q "4294967295" <<< "$acl_output" && exit 1
|
|
||||||
|
|
||||||
rm -fr "$root" "$journal_dir"
|
|
||||||
}
|
|
||||||
|
|
||||||
testcase_cap_net_bind_service() {
|
testcase_cap_net_bind_service() {
|
||||||
local root
|
local root
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user