Compare commits
8 Commits
1dc2abe2fa
...
9958583a49
Author | SHA1 | Date |
---|---|---|
Ivan Kruglov | 9958583a49 | |
Yu Watanabe | 5261c521e3 | |
Franck Bui | 514d9e1665 | |
Lennart Poettering | b480a4c15e | |
Lennart Poettering | af3baf174a | |
Ryan Wilson | d8091e1281 | |
Ivan Kruglov | 0f07109ecd | |
Ivan Kruglov | 1b8dbdcc50 |
25
TODO
25
TODO
|
@ -129,6 +129,10 @@ Deprecations and removals:
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
||||||
|
* format-table: introduce new cell type for strings with ansi sequences in
|
||||||
|
them. display them in regular output mode (via strip_tab_ansi()), but
|
||||||
|
suppress them in json mode.
|
||||||
|
|
||||||
* machined: when registering a machine, also take a relative cgroup path,
|
* machined: when registering a machine, also take a relative cgroup path,
|
||||||
relative to the machine's unit. This is useful when registering unpriv
|
relative to the machine's unit. This is useful when registering unpriv
|
||||||
machines, as they might sit down the cgroup tree, below a cgroup delegation
|
machines, as they might sit down the cgroup tree, below a cgroup delegation
|
||||||
|
@ -217,12 +221,8 @@ Features:
|
||||||
services where mount propagation from the root fs is off, an still have
|
services where mount propagation from the root fs is off, an still have
|
||||||
confext/sysext propagated in.
|
confext/sysext propagated in.
|
||||||
|
|
||||||
* support F_DUDFD_QUERY for comparing fds in same_fd (requires kernel 6.10)
|
|
||||||
|
|
||||||
* generic interface for varlink for setting log level and stuff that all our daemons can implement
|
* generic interface for varlink for setting log level and stuff that all our daemons can implement
|
||||||
|
|
||||||
* use pty ioctl to get peer wherever possible (TIOCGPTPEER)
|
|
||||||
|
|
||||||
* maybe teach repart.d/ dropins a new setting MakeMountNodes= or so, which is
|
* maybe teach repart.d/ dropins a new setting MakeMountNodes= or so, which is
|
||||||
just like MakeDirectories=, but uses an access mode of 0000 and sets the +i
|
just like MakeDirectories=, but uses an access mode of 0000 and sets the +i
|
||||||
chattr bit. This is useful as protection against early uses of /var/ or /tmp/
|
chattr bit. This is useful as protection against early uses of /var/ or /tmp/
|
||||||
|
@ -253,8 +253,6 @@ Features:
|
||||||
* initrd: when transitioning from initrd to host, validate that
|
* initrd: when transitioning from initrd to host, validate that
|
||||||
/lib/modules/`uname -r` exists, refuse otherwise
|
/lib/modules/`uname -r` exists, refuse otherwise
|
||||||
|
|
||||||
* tmpfiles: add "owning" flag for lines that limits effect of --purge
|
|
||||||
|
|
||||||
* signed bpf loading: to address need for signature verification for bpf
|
* signed bpf loading: to address need for signature verification for bpf
|
||||||
programs when they are loaded, and given the bpf folks don't think this is
|
programs when they are loaded, and given the bpf folks don't think this is
|
||||||
realistic in kernel space, maybe add small daemon that facilitates this
|
realistic in kernel space, maybe add small daemon that facilitates this
|
||||||
|
@ -458,9 +456,6 @@ Features:
|
||||||
* introduce mntid_t, and make it 64bit, as apparently the kernel switched to
|
* introduce mntid_t, and make it 64bit, as apparently the kernel switched to
|
||||||
64bit mount ids
|
64bit mount ids
|
||||||
|
|
||||||
* use udev rule networkd ownership property to take ownership of network
|
|
||||||
interfaces nspawn creates
|
|
||||||
|
|
||||||
* mountfsd/nsresourced
|
* mountfsd/nsresourced
|
||||||
- userdb: maybe allow callers to map one uid to their own uid
|
- userdb: maybe allow callers to map one uid to their own uid
|
||||||
- bpflsm: allow writes if resulting UID on disk would be userns' owner UID
|
- bpflsm: allow writes if resulting UID on disk would be userns' owner UID
|
||||||
|
@ -647,6 +642,7 @@ Features:
|
||||||
- openpt_allocate_in_namespace()
|
- openpt_allocate_in_namespace()
|
||||||
- unit_attach_pid_to_cgroup_via_bus()
|
- unit_attach_pid_to_cgroup_via_bus()
|
||||||
- cg_attach() – requires new kernel feature
|
- cg_attach() – requires new kernel feature
|
||||||
|
- journald's process cache
|
||||||
|
|
||||||
* ddi must be listed as block device fstype
|
* ddi must be listed as block device fstype
|
||||||
|
|
||||||
|
@ -1470,9 +1466,6 @@ Features:
|
||||||
|
|
||||||
* in sd-id128: also parse UUIDs in RFC4122 URN syntax (i.e. chop off urn:uuid: prefix)
|
* in sd-id128: also parse UUIDs in RFC4122 URN syntax (i.e. chop off urn:uuid: prefix)
|
||||||
|
|
||||||
* DynamicUser= + StateDirectory= → use uid mapping mounts, too, in order to
|
|
||||||
make dirs appear under right UID.
|
|
||||||
|
|
||||||
* systemd-sysext: optionally, run it in initrd already, before transitioning
|
* systemd-sysext: optionally, run it in initrd already, before transitioning
|
||||||
into host, to open up possibility for services shipped like that.
|
into host, to open up possibility for services shipped like that.
|
||||||
|
|
||||||
|
@ -1644,14 +1637,6 @@ Features:
|
||||||
|
|
||||||
* maybe add kernel cmdline params: to force random seed crediting
|
* maybe add kernel cmdline params: to force random seed crediting
|
||||||
|
|
||||||
* introduce a new per-process uuid, similar to the boot id, the machine id, the
|
|
||||||
invocation id, that is derived from process creds, specifically a hashed
|
|
||||||
combination of AT_RANDOM + getpid() + the starttime from
|
|
||||||
/proc/self/status. Then add these ids implicitly when logging. Deriving this
|
|
||||||
uuid from these three things has the benefit that it can be derived easily
|
|
||||||
from /proc/$PID/ in a stable, and unique way that changes on both fork() and
|
|
||||||
exec().
|
|
||||||
|
|
||||||
* let's not GC a unit while its ratelimits are still pending
|
* let's not GC a unit while its ratelimits are still pending
|
||||||
|
|
||||||
* when killing due to service watchdog timeout maybe detect whether target
|
* when killing due to service watchdog timeout maybe detect whether target
|
||||||
|
|
|
@ -1131,6 +1131,8 @@ int xopenat_full(int dir_fd, const char *path, int open_flags, XOpenFlags xopen_
|
||||||
* • If O_CREAT is used with XO_LABEL, any created file will be immediately relabelled.
|
* • If O_CREAT is used with XO_LABEL, any created file will be immediately relabelled.
|
||||||
*
|
*
|
||||||
* • If the path is specified NULL or empty, behaves like fd_reopen().
|
* • If the path is specified NULL or empty, behaves like fd_reopen().
|
||||||
|
*
|
||||||
|
* • If XO_NOCOW is specified will turn on the NOCOW btrfs flag on the file, if available.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (isempty(path)) {
|
if (isempty(path)) {
|
||||||
|
|
|
@ -570,3 +570,161 @@ int vl_method_open(sd_varlink *link, sd_json_variant *parameters, sd_varlink_met
|
||||||
|
|
||||||
return sd_varlink_reply(link, v);
|
return sd_varlink_reply(link, v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typedef struct MachineMapParameters {
|
||||||
|
const char *name;
|
||||||
|
PidRef pidref;
|
||||||
|
uid_t uid;
|
||||||
|
gid_t gid;
|
||||||
|
} MachineMapParameters;
|
||||||
|
|
||||||
|
static void machine_map_paramaters_done(MachineMapParameters *p) {
|
||||||
|
assert(p);
|
||||||
|
pidref_done(&p->pidref);
|
||||||
|
}
|
||||||
|
|
||||||
|
int vl_method_map_from(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata) {
|
||||||
|
static const sd_json_dispatch_field dispatch_table[] = {
|
||||||
|
VARLINK_DISPATCH_MACHINE_LOOKUP_FIELDS(MachineOpenParameters),
|
||||||
|
{ "uid", SD_JSON_VARIANT_UNSIGNED, sd_json_dispatch_uid_gid, offsetof(MachineMapParameters, uid), 0 },
|
||||||
|
{ "gid", SD_JSON_VARIANT_UNSIGNED, sd_json_dispatch_uid_gid, offsetof(MachineMapParameters, gid), 0 },
|
||||||
|
{}
|
||||||
|
};
|
||||||
|
|
||||||
|
Manager *manager = ASSERT_PTR(userdata);
|
||||||
|
_cleanup_(sd_json_variant_unrefp) sd_json_variant *v = NULL;
|
||||||
|
_cleanup_(machine_map_paramaters_done) MachineMapParameters p = {
|
||||||
|
.pidref = PIDREF_NULL,
|
||||||
|
.uid = UID_INVALID,
|
||||||
|
.gid = GID_INVALID,
|
||||||
|
};
|
||||||
|
uid_t converted_uid = UID_INVALID;
|
||||||
|
gid_t converted_gid = GID_INVALID;
|
||||||
|
Machine *machine;
|
||||||
|
int r;
|
||||||
|
|
||||||
|
assert(link);
|
||||||
|
assert(parameters);
|
||||||
|
|
||||||
|
r = sd_varlink_dispatch(link, parameters, dispatch_table, &p);
|
||||||
|
if (r != 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
|
if (p.uid != UID_INVALID && !uid_is_valid(p.uid))
|
||||||
|
return sd_varlink_error_invalid_parameter_name(link, "uid");
|
||||||
|
|
||||||
|
if (p.gid != GID_INVALID && !gid_is_valid(p.gid))
|
||||||
|
return sd_varlink_error_invalid_parameter_name(link, "gid");
|
||||||
|
|
||||||
|
r = lookup_machine_by_name_or_pidref(link, manager, p.name, &p.pidref, &machine);
|
||||||
|
if (r == -ESRCH)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchMachine", NULL);
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
|
if (machine->class != MACHINE_CONTAINER)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NotSupported", NULL);
|
||||||
|
|
||||||
|
if (p.uid != UID_INVALID) {
|
||||||
|
r = machine_translate_uid(machine, p.uid, &converted_uid);
|
||||||
|
if (r == -ESRCH)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchUser", NULL);
|
||||||
|
if (r < 0)
|
||||||
|
return log_debug_errno(r, "Failed to map uid=%u: %m", p.uid);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (p.gid != UID_INVALID) {
|
||||||
|
r = machine_translate_gid(machine, p.gid, &converted_gid);
|
||||||
|
if (r == -ESRCH)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchGroup", NULL);
|
||||||
|
if (r < 0)
|
||||||
|
return log_debug_errno(r, "Failed to map gid=%u: %m", p.gid);
|
||||||
|
}
|
||||||
|
|
||||||
|
r = sd_json_buildo(&v,
|
||||||
|
JSON_BUILD_PAIR_UNSIGNED_NOT_EQUAL("uid", converted_uid, UID_INVALID),
|
||||||
|
JSON_BUILD_PAIR_UNSIGNED_NOT_EQUAL("gid", converted_gid, GID_INVALID));
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
|
return sd_varlink_reply(link, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
int vl_method_map_to(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata) {
|
||||||
|
static const sd_json_dispatch_field dispatch_table[] = {
|
||||||
|
{ "uid", SD_JSON_VARIANT_UNSIGNED, sd_json_dispatch_uid_gid, offsetof(MachineMapParameters, uid), 0 },
|
||||||
|
{ "gid", SD_JSON_VARIANT_UNSIGNED, sd_json_dispatch_uid_gid, offsetof(MachineMapParameters, gid), 0 },
|
||||||
|
{}
|
||||||
|
};
|
||||||
|
|
||||||
|
Manager *manager = ASSERT_PTR(userdata);
|
||||||
|
_cleanup_(sd_json_variant_unrefp) sd_json_variant *v = NULL;
|
||||||
|
_cleanup_(machine_map_paramaters_done) MachineMapParameters p = {
|
||||||
|
.pidref = PIDREF_NULL,
|
||||||
|
.uid = UID_INVALID,
|
||||||
|
.gid = GID_INVALID,
|
||||||
|
};
|
||||||
|
Machine *machine_uid = NULL, *machine_gid = NULL;
|
||||||
|
uid_t converted_uid = UID_INVALID;
|
||||||
|
gid_t converted_gid = GID_INVALID;
|
||||||
|
const char *machine_name = NULL;
|
||||||
|
int r;
|
||||||
|
|
||||||
|
assert(link);
|
||||||
|
assert(parameters);
|
||||||
|
|
||||||
|
r = sd_varlink_dispatch(link, parameters, dispatch_table, &p);
|
||||||
|
if (r != 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
|
if (p.uid != UID_INVALID) {
|
||||||
|
if (!uid_is_valid(p.uid))
|
||||||
|
return sd_varlink_error_invalid_parameter_name(link, "uid");
|
||||||
|
if (p.uid < 0x10000)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.UserInHostRange", NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (p.gid != GID_INVALID) {
|
||||||
|
if (!gid_is_valid(p.gid))
|
||||||
|
return sd_varlink_error_invalid_parameter_name(link, "gid");
|
||||||
|
if (p.gid < 0x10000)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.GroupInHostRange", NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (p.uid != UID_INVALID) {
|
||||||
|
r = manager_find_machine_for_uid(manager, p.uid, &machine_uid, &converted_uid);
|
||||||
|
if (r < 0)
|
||||||
|
return log_debug_errno(r, "Failed to find machine for uid=%u: %m", p.uid);
|
||||||
|
if (!r)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchUser", NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (p.gid != GID_INVALID) {
|
||||||
|
r = manager_find_machine_for_gid(manager, p.gid, &machine_gid, &converted_gid);
|
||||||
|
if (r < 0)
|
||||||
|
return log_debug_errno(r, "Failed to find machine for gid=%u: %m", p.gid);
|
||||||
|
if (!r)
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchGroup", NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (machine_uid && machine_gid && machine_uid != machine_gid) {
|
||||||
|
log_debug_errno(SYNTHETIC_ERRNO(ESRCH), "Mapping of UID %u and GID %u resulted in two different machines", p.uid, p.gid);
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchMachine", NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (machine_uid)
|
||||||
|
machine_name = machine_uid->name;
|
||||||
|
else if (machine_gid)
|
||||||
|
machine_name = machine_gid->name;
|
||||||
|
else
|
||||||
|
return sd_varlink_error(link, "io.systemd.Machine.NoSuchMachine", NULL);
|
||||||
|
|
||||||
|
r = sd_json_buildo(&v,
|
||||||
|
JSON_BUILD_PAIR_UNSIGNED_NOT_EQUAL("uid", converted_uid, UID_INVALID),
|
||||||
|
JSON_BUILD_PAIR_UNSIGNED_NOT_EQUAL("gid", converted_gid, GID_INVALID),
|
||||||
|
JSON_BUILD_PAIR_STRING_NON_EMPTY("machineName", machine_name));
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
|
return sd_varlink_reply(link, v);
|
||||||
|
}
|
||||||
|
|
|
@ -25,3 +25,5 @@ int vl_method_unregister_internal(sd_varlink *link, sd_json_variant *parameters,
|
||||||
int vl_method_terminate_internal(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
int vl_method_terminate_internal(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
||||||
int vl_method_kill(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
int vl_method_kill(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
||||||
int vl_method_open(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
int vl_method_open(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
||||||
|
int vl_method_map_from(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
||||||
|
int vl_method_map_to(sd_varlink *link, sd_json_variant *parameters, sd_varlink_method_flags_t flags, void *userdata);
|
||||||
|
|
|
@ -774,6 +774,8 @@ static int manager_varlink_init_machine(Manager *m) {
|
||||||
"io.systemd.Machine.Terminate", vl_method_terminate,
|
"io.systemd.Machine.Terminate", vl_method_terminate,
|
||||||
"io.systemd.Machine.Kill", vl_method_kill,
|
"io.systemd.Machine.Kill", vl_method_kill,
|
||||||
"io.systemd.Machine.Open", vl_method_open,
|
"io.systemd.Machine.Open", vl_method_open,
|
||||||
|
"io.systemd.Machine.MapFrom", vl_method_map_from,
|
||||||
|
"io.systemd.Machine.MapTo", vl_method_map_to,
|
||||||
"io.systemd.MachineImage.List", vl_method_list_images,
|
"io.systemd.MachineImage.List", vl_method_list_images,
|
||||||
"io.systemd.MachineImage.Update", vl_method_update_image,
|
"io.systemd.MachineImage.Update", vl_method_update_image,
|
||||||
"io.systemd.MachineImage.Clone", vl_method_clone_image,
|
"io.systemd.MachineImage.Clone", vl_method_clone_image,
|
||||||
|
|
|
@ -1808,63 +1808,81 @@ char* umount_and_unlink_and_free(char *p) {
|
||||||
return mfree(p);
|
return mfree(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int path_get_mount_info(
|
static int path_get_mount_info_at(
|
||||||
|
int dir_fd,
|
||||||
const char *path,
|
const char *path,
|
||||||
char **ret_fstype,
|
char **ret_fstype,
|
||||||
char **ret_options) {
|
char **ret_options) {
|
||||||
|
|
||||||
_cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
|
_cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
|
||||||
_cleanup_free_ char *fstype = NULL, *options = NULL;
|
_cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
|
||||||
struct libmnt_fs *fs;
|
int r, mnt_id;
|
||||||
int r;
|
|
||||||
|
|
||||||
assert(path);
|
assert(dir_fd >= 0 || dir_fd == AT_FDCWD);
|
||||||
|
|
||||||
table = mnt_new_table();
|
r = path_get_mnt_id_at(dir_fd, path, &mnt_id);
|
||||||
if (!table)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
r = mnt_table_parse_mtab(table, /* filename = */ NULL);
|
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
return r;
|
return log_debug_errno(r, "Failed to get mount ID: %m");
|
||||||
|
|
||||||
fs = mnt_table_find_mountpoint(table, path, MNT_ITER_FORWARD);
|
r = libmount_parse("/proc/self/mountinfo", NULL, &table, &iter);
|
||||||
if (!fs)
|
if (r < 0)
|
||||||
return -EINVAL;
|
return log_debug_errno(r, "Failed to parse /proc/self/mountinfo: %m");
|
||||||
|
|
||||||
if (ret_fstype) {
|
for (;;) {
|
||||||
fstype = strdup(strempty(mnt_fs_get_fstype(fs)));
|
struct libmnt_fs *fs;
|
||||||
if (!fstype)
|
|
||||||
return -ENOMEM;
|
r = mnt_table_next_fs(table, iter, &fs);
|
||||||
|
if (r == 1)
|
||||||
|
break; /* EOF */
|
||||||
|
if (r < 0)
|
||||||
|
return log_debug_errno(r, "Failed to get next entry from /proc/self/mountinfo: %m");
|
||||||
|
|
||||||
|
if (mnt_fs_get_id(fs) != mnt_id)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
_cleanup_free_ char *fstype = NULL, *options = NULL;
|
||||||
|
|
||||||
|
if (ret_fstype) {
|
||||||
|
fstype = strdup(strempty(mnt_fs_get_fstype(fs)));
|
||||||
|
if (!fstype)
|
||||||
|
return log_oom_debug();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ret_options) {
|
||||||
|
options = strdup(strempty(mnt_fs_get_options(fs)));
|
||||||
|
if (!options)
|
||||||
|
return log_oom_debug();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ret_fstype)
|
||||||
|
*ret_fstype = TAKE_PTR(fstype);
|
||||||
|
if (ret_options)
|
||||||
|
*ret_options = TAKE_PTR(options);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret_options) {
|
return log_debug_errno(SYNTHETIC_ERRNO(ESTALE), "Cannot find mount ID %i from /proc/self/mountinfo.", mnt_id);
|
||||||
options = strdup(strempty(mnt_fs_get_options(fs)));
|
|
||||||
if (!options)
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ret_fstype)
|
|
||||||
*ret_fstype = TAKE_PTR(fstype);
|
|
||||||
if (ret_options)
|
|
||||||
*ret_options = TAKE_PTR(options);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int path_is_network_fs_harder(const char *path) {
|
int path_is_network_fs_harder_at(int dir_fd, const char *path) {
|
||||||
|
_cleanup_close_ int fd = -EBADF;
|
||||||
|
int r;
|
||||||
|
|
||||||
|
assert(dir_fd >= 0 || dir_fd == AT_FDCWD);
|
||||||
|
|
||||||
|
fd = xopenat(dir_fd, path, O_PATH | O_CLOEXEC | O_NOFOLLOW);
|
||||||
|
if (fd < 0)
|
||||||
|
return fd;
|
||||||
|
|
||||||
|
r = fd_is_network_fs(fd);
|
||||||
|
if (r != 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
_cleanup_free_ char *fstype = NULL, *options = NULL;
|
_cleanup_free_ char *fstype = NULL, *options = NULL;
|
||||||
int r, ret;
|
r = path_get_mount_info_at(fd, /* path = */ NULL, &fstype, &options);
|
||||||
|
|
||||||
assert(path);
|
|
||||||
|
|
||||||
ret = path_is_network_fs(path);
|
|
||||||
if (ret > 0)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
r = path_get_mount_info(path, &fstype, &options);
|
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
return RET_GATHER(ret, r);
|
return r;
|
||||||
|
|
||||||
if (fstype_is_network(fstype))
|
if (fstype_is_network(fstype))
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -181,4 +181,7 @@ int mount_credentials_fs(const char *path, size_t size, bool ro);
|
||||||
|
|
||||||
int make_fsmount(int error_log_level, const char *what, const char *type, unsigned long flags, const char *options, int userns_fd);
|
int make_fsmount(int error_log_level, const char *what, const char *type, unsigned long flags, const char *options, int userns_fd);
|
||||||
|
|
||||||
int path_is_network_fs_harder(const char *path);
|
int path_is_network_fs_harder_at(int dir_fd, const char *path);
|
||||||
|
static inline int path_is_network_fs_harder(const char *path) {
|
||||||
|
return path_is_network_fs_harder_at(AT_FDCWD, path);
|
||||||
|
}
|
||||||
|
|
|
@ -122,6 +122,31 @@ static SD_VARLINK_DEFINE_METHOD(
|
||||||
SD_VARLINK_FIELD_COMMENT("Path to the allocated pseudo TTY"),
|
SD_VARLINK_FIELD_COMMENT("Path to the allocated pseudo TTY"),
|
||||||
SD_VARLINK_DEFINE_OUTPUT(ptyPath, SD_VARLINK_STRING, 0));
|
SD_VARLINK_DEFINE_OUTPUT(ptyPath, SD_VARLINK_STRING, 0));
|
||||||
|
|
||||||
|
static SD_VARLINK_DEFINE_METHOD(
|
||||||
|
MapFrom,
|
||||||
|
VARLINK_DEFINE_MACHINE_LOOKUP_AND_POLKIT_INPUT_FIELDS,
|
||||||
|
SD_VARLINK_FIELD_COMMENT("UID in the machine to map to host UID"),
|
||||||
|
SD_VARLINK_DEFINE_INPUT(uid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("GID in the machine to map to host GID"),
|
||||||
|
SD_VARLINK_DEFINE_INPUT(gid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Mapped UID"),
|
||||||
|
SD_VARLINK_DEFINE_OUTPUT(uid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Mapped GID"),
|
||||||
|
SD_VARLINK_DEFINE_OUTPUT(gid, SD_VARLINK_INT, SD_VARLINK_NULLABLE));
|
||||||
|
|
||||||
|
static SD_VARLINK_DEFINE_METHOD(
|
||||||
|
MapTo,
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Host UID to map to machine UID"),
|
||||||
|
SD_VARLINK_DEFINE_INPUT(uid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Host GID to map to machine GID"),
|
||||||
|
SD_VARLINK_DEFINE_INPUT(gid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Mapped UID"),
|
||||||
|
SD_VARLINK_DEFINE_OUTPUT(uid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Mapped GID"),
|
||||||
|
SD_VARLINK_DEFINE_OUTPUT(gid, SD_VARLINK_INT, SD_VARLINK_NULLABLE),
|
||||||
|
SD_VARLINK_FIELD_COMMENT("Machine's name which owns mapped UID/GID"),
|
||||||
|
SD_VARLINK_DEFINE_OUTPUT(machineName, SD_VARLINK_STRING, SD_VARLINK_NULLABLE));
|
||||||
|
|
||||||
static SD_VARLINK_DEFINE_ERROR(NoSuchMachine);
|
static SD_VARLINK_DEFINE_ERROR(NoSuchMachine);
|
||||||
static SD_VARLINK_DEFINE_ERROR(MachineExists);
|
static SD_VARLINK_DEFINE_ERROR(MachineExists);
|
||||||
static SD_VARLINK_DEFINE_ERROR(NoPrivateNetworking);
|
static SD_VARLINK_DEFINE_ERROR(NoPrivateNetworking);
|
||||||
|
@ -130,6 +155,10 @@ static SD_VARLINK_DEFINE_ERROR(NoUIDShift);
|
||||||
static SD_VARLINK_DEFINE_ERROR(NotAvailable);
|
static SD_VARLINK_DEFINE_ERROR(NotAvailable);
|
||||||
static SD_VARLINK_DEFINE_ERROR(NotSupported);
|
static SD_VARLINK_DEFINE_ERROR(NotSupported);
|
||||||
static SD_VARLINK_DEFINE_ERROR(NoIPC);
|
static SD_VARLINK_DEFINE_ERROR(NoIPC);
|
||||||
|
static SD_VARLINK_DEFINE_ERROR(NoSuchUser);
|
||||||
|
static SD_VARLINK_DEFINE_ERROR(NoSuchGroup);
|
||||||
|
static SD_VARLINK_DEFINE_ERROR(UserInHostRange);
|
||||||
|
static SD_VARLINK_DEFINE_ERROR(GroupInHostRange);
|
||||||
|
|
||||||
SD_VARLINK_DEFINE_INTERFACE(
|
SD_VARLINK_DEFINE_INTERFACE(
|
||||||
io_systemd_Machine,
|
io_systemd_Machine,
|
||||||
|
@ -154,6 +183,10 @@ SD_VARLINK_DEFINE_INTERFACE(
|
||||||
&vl_type_MachineOpenMode,
|
&vl_type_MachineOpenMode,
|
||||||
SD_VARLINK_SYMBOL_COMMENT("Allocates a pseudo TTY in the container in various modes"),
|
SD_VARLINK_SYMBOL_COMMENT("Allocates a pseudo TTY in the container in various modes"),
|
||||||
&vl_method_Open,
|
&vl_method_Open,
|
||||||
|
SD_VARLINK_SYMBOL_COMMENT("Maps given machine's UID/GID to host's UID/GID"),
|
||||||
|
&vl_method_MapFrom,
|
||||||
|
SD_VARLINK_SYMBOL_COMMENT("Maps given host's UID/GID to a machine and corresponding UID/GID"),
|
||||||
|
&vl_method_MapTo,
|
||||||
SD_VARLINK_SYMBOL_COMMENT("No matching machine currently running"),
|
SD_VARLINK_SYMBOL_COMMENT("No matching machine currently running"),
|
||||||
&vl_error_NoSuchMachine,
|
&vl_error_NoSuchMachine,
|
||||||
&vl_error_MachineExists,
|
&vl_error_MachineExists,
|
||||||
|
@ -168,4 +201,12 @@ SD_VARLINK_DEFINE_INTERFACE(
|
||||||
SD_VARLINK_SYMBOL_COMMENT("Requested operation is not supported"),
|
SD_VARLINK_SYMBOL_COMMENT("Requested operation is not supported"),
|
||||||
&vl_error_NotSupported,
|
&vl_error_NotSupported,
|
||||||
SD_VARLINK_SYMBOL_COMMENT("There is no IPC service (such as system bus or varlink) in the container"),
|
SD_VARLINK_SYMBOL_COMMENT("There is no IPC service (such as system bus or varlink) in the container"),
|
||||||
&vl_error_NoIPC);
|
&vl_error_NoIPC,
|
||||||
|
SD_VARLINK_SYMBOL_COMMENT("No such user"),
|
||||||
|
&vl_error_NoSuchUser,
|
||||||
|
SD_VARLINK_SYMBOL_COMMENT("No such group"),
|
||||||
|
&vl_error_NoSuchGroup,
|
||||||
|
SD_VARLINK_SYMBOL_COMMENT("User belongs to host UID range"),
|
||||||
|
&vl_error_UserInHostRange,
|
||||||
|
SD_VARLINK_SYMBOL_COMMENT("Group belongs to host GID range"),
|
||||||
|
&vl_error_GroupInHostRange);
|
||||||
|
|
|
@ -538,9 +538,53 @@ TEST(bind_mount_submounts) {
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(path_is_network_fs_harder) {
|
TEST(path_is_network_fs_harder) {
|
||||||
ASSERT_OK_ZERO(path_is_network_fs_harder("/dev"));
|
_cleanup_close_ int dir_fd = -EBADF;
|
||||||
ASSERT_OK_ZERO(path_is_network_fs_harder("/sys"));
|
int r;
|
||||||
ASSERT_OK_ZERO(path_is_network_fs_harder("/run"));
|
|
||||||
|
ASSERT_OK(dir_fd = open("/", O_PATH | O_CLOEXEC));
|
||||||
|
FOREACH_STRING(s,
|
||||||
|
"/", "/dev/", "/proc/", "/run/", "/sys/", "/tmp/", "/usr/", "/var/tmp/",
|
||||||
|
"", ".", "../../../", "/this/path/should/not/exist/for/test-mount-util/") {
|
||||||
|
|
||||||
|
r = path_is_network_fs_harder(s);
|
||||||
|
log_debug("path_is_network_fs_harder(%s) → %i: %s", s, r, r < 0 ? STRERROR(r) : yes_no(r));
|
||||||
|
|
||||||
|
const char *q = path_startswith(s, "/") ?: s;
|
||||||
|
r = path_is_network_fs_harder_at(dir_fd, q);
|
||||||
|
log_debug("path_is_network_fs_harder_at(root, %s) → %i: %s", q, r, r < 0 ? STRERROR(r) : yes_no(r));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (geteuid() != 0 || have_effective_cap(CAP_SYS_ADMIN) <= 0) {
|
||||||
|
(void) log_tests_skipped("not running privileged");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_cleanup_(rm_rf_physical_and_freep) char *t = NULL;
|
||||||
|
assert_se(mkdtemp_malloc("/tmp/test-mount-util.path_is_network_fs_harder.XXXXXXX", &t) >= 0);
|
||||||
|
|
||||||
|
r = safe_fork("(make_mount-point)",
|
||||||
|
FORK_RESET_SIGNALS |
|
||||||
|
FORK_CLOSE_ALL_FDS |
|
||||||
|
FORK_DEATHSIG_SIGTERM |
|
||||||
|
FORK_WAIT |
|
||||||
|
FORK_REOPEN_LOG |
|
||||||
|
FORK_LOG |
|
||||||
|
FORK_NEW_MOUNTNS |
|
||||||
|
FORK_MOUNTNS_SLAVE,
|
||||||
|
NULL);
|
||||||
|
ASSERT_OK(r);
|
||||||
|
|
||||||
|
if (r == 0) {
|
||||||
|
ASSERT_OK(mount_nofollow_verbose(LOG_INFO, "tmpfs", t, "tmpfs", 0, NULL));
|
||||||
|
ASSERT_OK_ZERO(path_is_network_fs_harder(t));
|
||||||
|
ASSERT_OK_ERRNO(umount(t));
|
||||||
|
|
||||||
|
ASSERT_OK(mount_nofollow_verbose(LOG_INFO, "tmpfs", t, "tmpfs", 0, "x-systemd-growfs,x-systemd-automount"));
|
||||||
|
ASSERT_OK_ZERO(path_is_network_fs_harder(t));
|
||||||
|
ASSERT_OK_ERRNO(umount(t));
|
||||||
|
|
||||||
|
_exit(EXIT_SUCCESS);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINE_TEST_MAIN(LOG_DEBUG);
|
DEFINE_TEST_MAIN(LOG_DEBUG);
|
||||||
|
|
|
@ -142,11 +142,13 @@ endif
|
||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
if install_tests
|
if install_tests
|
||||||
foreach script : ['integration-test-setup.sh', 'run-unit-tests.py']
|
install_data('run-unit-tests.py',
|
||||||
install_data(script,
|
install_mode : 'rwxr-xr-x',
|
||||||
install_mode : 'rwxr-xr-x',
|
install_dir : testsdir)
|
||||||
install_dir : testsdir)
|
|
||||||
endforeach
|
install_data('integration-test-setup.sh',
|
||||||
|
install_mode : 'rwxr-xr-x',
|
||||||
|
install_dir : testdata_dir)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
|
|
|
@ -7,9 +7,9 @@ Before=getty-pre.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStartPre=rm -f /failed /testok
|
ExecStartPre=rm -f /failed /testok
|
||||||
ExecStartPre=/usr/lib/systemd/tests/integration-test-setup.sh setup
|
ExecStartPre=/usr/lib/systemd/tests/testdata/integration-test-setup.sh setup
|
||||||
ExecStart=@command@
|
ExecStart=@command@
|
||||||
ExecStopPost=/usr/lib/systemd/tests/integration-test-setup.sh finalize
|
ExecStopPost=/usr/lib/systemd/tests/testdata/integration-test-setup.sh finalize
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
MemoryAccounting=@memory-accounting@
|
MemoryAccounting=@memory-accounting@
|
||||||
StateDirectory=%N
|
StateDirectory=%N
|
||||||
|
|
|
@ -132,10 +132,12 @@ testcase_unpriv() {
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The kernel has a restriction for unprivileged user namespaces where they cannot mount a less restrictive
|
# IMPORTANT: For /proc/ to be remounted in pid namespace within an unprivileged user namespace, there needs to
|
||||||
# instance of /proc/. So if /proc/ is masked (e.g. /proc/kmsg is over-mounted with tmpfs as systemd-nspawn does),
|
# be at least 1 unmasked procfs mount in ANY directory. Otherwise, if /proc/ is masked (e.g. /proc/scsi is
|
||||||
# then mounting a new /proc/ will fail and we will still see the host's /proc/. Thus, to allow tests to run in
|
# over-mounted with tmpfs), then mounting a new /proc/ will fail.
|
||||||
# a VM or nspawn, we mount a new proc on a temporary directory with no masking to bypass this kernel restriction.
|
#
|
||||||
|
# Thus, to guarantee PrivatePIDs=yes tests for unprivileged users pass, we mount a new procfs on a temporary
|
||||||
|
# directory with no masking. This will guarantee an unprivileged user can mount a new /proc/ successfully.
|
||||||
mkdir -p /tmp/TEST-07-PID1-private-pids-proc
|
mkdir -p /tmp/TEST-07-PID1-private-pids-proc
|
||||||
mount -t proc proc /tmp/TEST-07-PID1-private-pids-proc
|
mount -t proc proc /tmp/TEST-07-PID1-private-pids-proc
|
||||||
|
|
||||||
|
@ -146,7 +148,16 @@ testcase_unpriv() {
|
||||||
umount /tmp/TEST-07-PID1-private-pids-proc
|
umount /tmp/TEST-07-PID1-private-pids-proc
|
||||||
rm -rf /tmp/TEST-07-PID1-private-pids-proc
|
rm -rf /tmp/TEST-07-PID1-private-pids-proc
|
||||||
|
|
||||||
# Now verify the behavior with masking - units should fail as PrivatePIDs=yes has no graceful fallback.
|
# Now we will mask /proc/ by mounting tmpfs over /proc/scsi. This will guarantee that mounting /proc/ will fail
|
||||||
|
# for unprivileged users when using PrivatePIDs=yes. Now units should fail as PrivatePIDs=yes has no graceful
|
||||||
|
# fallback.
|
||||||
|
#
|
||||||
|
# Note some kernels do not have /proc/scsi so we verify the directory exists prior to running the test.
|
||||||
|
if [ ! -d /proc/scsi ]; then
|
||||||
|
echo "/proc/scsi does not exist, skipping unprivileged PrivatePIDs=yes test with masked /proc/"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ "$HAS_EXISTING_SCSI_MOUNT" == "no" ]]; then
|
if [[ "$HAS_EXISTING_SCSI_MOUNT" == "no" ]]; then
|
||||||
mount -t tmpfs tmpfs /proc/scsi
|
mount -t tmpfs tmpfs /proc/scsi
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -352,12 +352,7 @@ TS="$(date '+%H:%M:%S')"
|
||||||
(! varlinkctl --more call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.List '{"acquireMetadata": "yes"}')
|
(! varlinkctl --more call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.List '{"acquireMetadata": "yes"}')
|
||||||
journalctl --sync
|
journalctl --sync
|
||||||
(! journalctl -u systemd-machined.service --since="$TS" --grep 'Connection busy')
|
(! journalctl -u systemd-machined.service --since="$TS" --grep 'Connection busy')
|
||||||
# terminate machines
|
|
||||||
machinectl terminate container-without-os-release
|
machinectl terminate container-without-os-release
|
||||||
machinectl terminate long-running
|
|
||||||
# wait for the container being stopped, otherwise acquiring image metadata by io.systemd.MachineImage.List may fail in the below.
|
|
||||||
timeout 10 bash -c "while machinectl status long-running &>/dev/null; do sleep .5; done"
|
|
||||||
systemctl kill --signal=KILL systemd-nspawn@long-running.service || :
|
|
||||||
|
|
||||||
(ip addr show lo | grep -q 192.168.1.100) || ip address add 192.168.1.100/24 dev lo
|
(ip addr show lo | grep -q 192.168.1.100) || ip address add 192.168.1.100/24 dev lo
|
||||||
(! varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.List '{"name": ".host"}' | grep 'addresses')
|
(! varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.List '{"name": ".host"}' | grep 'addresses')
|
||||||
|
@ -381,11 +376,26 @@ varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open
|
||||||
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open '{"name": ".host", "mode": "login"}'
|
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open '{"name": ".host", "mode": "login"}'
|
||||||
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open '{"name": ".host", "mode": "shell"}'
|
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open '{"name": ".host", "mode": "shell"}'
|
||||||
|
|
||||||
|
# test io.systemd.Machine.MapFrom
|
||||||
|
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.MapFrom '{"name": "long-running", "uid":0, "gid": 0}'
|
||||||
|
container_uid=$(varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.MapFrom '{"name": "long-running", "uid":0}' | jq '.uid')
|
||||||
|
container_gid=$(varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.MapFrom '{"name": "long-running", "gid":0}' | jq '.gid')
|
||||||
|
# test io.systemd.Machine.MapTo
|
||||||
|
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.MapTo "{\"uid\": $container_uid, \"gid\": $container_gid}" | grep "long-running"
|
||||||
|
(! varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.MapTo '{"uid": 0}')
|
||||||
|
(! varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.MapTo '{"gid": 0}')
|
||||||
|
|
||||||
rm -f /tmp/none-existent-file
|
rm -f /tmp/none-existent-file
|
||||||
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open '{"name": ".host", "mode": "shell", "user": "root", "path": "/bin/sh", "args": ["/bin/sh", "-c", "echo $FOO > /tmp/none-existent-file"], "environment": ["FOO=BAR"]}'
|
varlinkctl call /run/systemd/machine/io.systemd.Machine io.systemd.Machine.Open '{"name": ".host", "mode": "shell", "user": "root", "path": "/bin/sh", "args": ["/bin/sh", "-c", "echo $FOO > /tmp/none-existent-file"], "environment": ["FOO=BAR"]}'
|
||||||
timeout 30 bash -c "until test -e /tmp/none-existent-file; do sleep .5; done"
|
timeout 30 bash -c "until test -e /tmp/none-existent-file; do sleep .5; done"
|
||||||
grep -q "BAR" /tmp/none-existent-file
|
grep -q "BAR" /tmp/none-existent-file
|
||||||
|
|
||||||
|
# terminate machines
|
||||||
|
machinectl terminate long-running
|
||||||
|
# wait for the container being stopped, otherwise acquiring image metadata by io.systemd.MachineImage.List may fail in the below.
|
||||||
|
timeout 10 bash -c "while machinectl status long-running &>/dev/null; do sleep .5; done"
|
||||||
|
systemctl kill --signal=KILL systemd-nspawn@long-running.service || :
|
||||||
|
|
||||||
# test io.systemd.MachineImage.List
|
# test io.systemd.MachineImage.List
|
||||||
varlinkctl --more call /run/systemd/machine/io.systemd.MachineImage io.systemd.MachineImage.List '{}' | grep 'long-running'
|
varlinkctl --more call /run/systemd/machine/io.systemd.MachineImage io.systemd.MachineImage.List '{}' | grep 'long-running'
|
||||||
varlinkctl --more call /run/systemd/machine/io.systemd.MachineImage io.systemd.MachineImage.List '{}' | grep '.host'
|
varlinkctl --more call /run/systemd/machine/io.systemd.MachineImage io.systemd.MachineImage.List '{}' | grep '.host'
|
||||||
|
|
Loading…
Reference in New Issue