Compare commits
6 Commits
59a49b1bcd
...
9389a3cdc8
Author | SHA1 | Date |
---|---|---|
Zbigniew Jędrzejewski-Szmek | 9389a3cdc8 | |
Lennart Poettering | 7daa88ee5d | |
Lennart Poettering | a2e361dc27 | |
Lennart Poettering | 74d8ccd451 | |
Lennart Poettering | 3288ea8f32 | |
Lennart Poettering | bf25f1657f |
4
TODO
4
TODO
|
@ -166,10 +166,6 @@ Features:
|
||||||
* sd-boot: optionally, show boot menu when previous default boot item has
|
* sd-boot: optionally, show boot menu when previous default boot item has
|
||||||
non-zero "tries done" count
|
non-zero "tries done" count
|
||||||
|
|
||||||
* maybe set a special xattr on cgroups that have delegate=yes set, to make it
|
|
||||||
easy to mark cut points, then use this information in "systemd-cgls" to show
|
|
||||||
them (e.g. color delegated subtrees in a different color)
|
|
||||||
|
|
||||||
* introduce an option (or replacement) for "systemctl show" that outputs all
|
* introduce an option (or replacement) for "systemctl show" that outputs all
|
||||||
properties as JSON, similar to busctl's new JSON output. In contrast to that
|
properties as JSON, similar to busctl's new JSON output. In contrast to that
|
||||||
it should skip the variant type string though.
|
it should skip the variant type string though.
|
||||||
|
|
|
@ -605,6 +605,23 @@ int cg_get_xattr(const char *controller, const char *path, const char *name, voi
|
||||||
return (int) n;
|
return (int) n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int cg_remove_xattr(const char *controller, const char *path, const char *name) {
|
||||||
|
_cleanup_free_ char *fs = NULL;
|
||||||
|
int r;
|
||||||
|
|
||||||
|
assert(path);
|
||||||
|
assert(name);
|
||||||
|
|
||||||
|
r = cg_get_path(controller, path, NULL, &fs);
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
|
if (removexattr(fs, name) < 0)
|
||||||
|
return -errno;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int cg_pid_get_path(const char *controller, pid_t pid, char **path) {
|
int cg_pid_get_path(const char *controller, pid_t pid, char **path) {
|
||||||
_cleanup_fclose_ FILE *f = NULL;
|
_cleanup_fclose_ FILE *f = NULL;
|
||||||
const char *fs, *controller_str;
|
const char *fs, *controller_str;
|
||||||
|
|
|
@ -188,6 +188,7 @@ int cg_set_access(const char *controller, const char *path, uid_t uid, gid_t gid
|
||||||
|
|
||||||
int cg_set_xattr(const char *controller, const char *path, const char *name, const void *value, size_t size, int flags);
|
int cg_set_xattr(const char *controller, const char *path, const char *name, const void *value, size_t size, int flags);
|
||||||
int cg_get_xattr(const char *controller, const char *path, const char *name, void *value, size_t size);
|
int cg_get_xattr(const char *controller, const char *path, const char *name, void *value, size_t size);
|
||||||
|
int cg_remove_xattr(const char *controller, const char *path, const char *name);
|
||||||
|
|
||||||
int cg_install_release_agent(const char *controller, const char *agent);
|
int cg_install_release_agent(const char *controller, const char *agent);
|
||||||
int cg_uninstall_release_agent(const char *controller);
|
int cg_uninstall_release_agent(const char *controller);
|
||||||
|
|
|
@ -617,15 +617,27 @@ static void cgroup_xattr_apply(Unit *u) {
|
||||||
if (!MANAGER_IS_SYSTEM(u->manager))
|
if (!MANAGER_IS_SYSTEM(u->manager))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (sd_id128_is_null(u->invocation_id))
|
if (!sd_id128_is_null(u->invocation_id)) {
|
||||||
return;
|
r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
|
||||||
|
"trusted.invocation_id",
|
||||||
|
sd_id128_to_string(u->invocation_id, ids), 32,
|
||||||
|
0);
|
||||||
|
if (r < 0)
|
||||||
|
log_unit_debug_errno(u, r, "Failed to set invocation ID on control group %s, ignoring: %m", u->cgroup_path);
|
||||||
|
}
|
||||||
|
|
||||||
r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
|
if (unit_cgroup_delegate(u)) {
|
||||||
"trusted.invocation_id",
|
r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
|
||||||
sd_id128_to_string(u->invocation_id, ids), 32,
|
"trusted.delegate",
|
||||||
0);
|
"1", 1,
|
||||||
if (r < 0)
|
0);
|
||||||
log_unit_debug_errno(u, r, "Failed to set invocation ID on control group %s, ignoring: %m", u->cgroup_path);
|
if (r < 0)
|
||||||
|
log_unit_debug_errno(u, r, "Failed to set delegate flag on control group %s, ignoring: %m", u->cgroup_path);
|
||||||
|
} else {
|
||||||
|
r = cg_remove_xattr(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, "trusted.delegate");
|
||||||
|
if (r != -ENODATA)
|
||||||
|
log_unit_debug_errno(u, r, "Failed to remove delegate flag on control group %s, ignoring: %m", u->cgroup_path);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int lookup_block_device(const char *p, dev_t *ret) {
|
static int lookup_block_device(const char *p, dev_t *ret) {
|
||||||
|
|
|
@ -17,12 +17,14 @@
|
||||||
#include "locale-util.h"
|
#include "locale-util.h"
|
||||||
#include "macro.h"
|
#include "macro.h"
|
||||||
#include "output-mode.h"
|
#include "output-mode.h"
|
||||||
|
#include "parse-util.h"
|
||||||
#include "path-util.h"
|
#include "path-util.h"
|
||||||
#include "process-util.h"
|
#include "process-util.h"
|
||||||
#include "sort-util.h"
|
#include "sort-util.h"
|
||||||
#include "string-util.h"
|
#include "string-util.h"
|
||||||
#include "terminal-util.h"
|
#include "terminal-util.h"
|
||||||
#include "unit-name.h"
|
#include "unit-name.h"
|
||||||
|
#include "xattr-util.h"
|
||||||
|
|
||||||
static void show_pid_array(
|
static void show_pid_array(
|
||||||
pid_t pids[],
|
pid_t pids[],
|
||||||
|
@ -69,7 +71,7 @@ static void show_pid_array(
|
||||||
else
|
else
|
||||||
printf("%s%s", prefix, special_glyph(((more || i < n_pids-1) ? SPECIAL_GLYPH_TREE_BRANCH : SPECIAL_GLYPH_TREE_RIGHT)));
|
printf("%s%s", prefix, special_glyph(((more || i < n_pids-1) ? SPECIAL_GLYPH_TREE_BRANCH : SPECIAL_GLYPH_TREE_RIGHT)));
|
||||||
|
|
||||||
printf("%*"PID_PRI" %s\n", pid_width, pids[i], strna(t));
|
printf("%s%*"PID_PRI" %s%s\n", ansi_grey(), pid_width, pids[i], strna(t), ansi_normal());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,6 +119,44 @@ static int show_cgroup_one_by_path(
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int show_cgroup_name(
|
||||||
|
const char *path,
|
||||||
|
const char *prefix,
|
||||||
|
const char *glyph) {
|
||||||
|
|
||||||
|
_cleanup_free_ char *b = NULL;
|
||||||
|
bool delegate = false;
|
||||||
|
int r;
|
||||||
|
|
||||||
|
r = getxattr_malloc(path, "trusted.delegate", &b, false);
|
||||||
|
if (r < 0) {
|
||||||
|
if (r != -ENODATA)
|
||||||
|
log_debug_errno(r, "Failed to read trusted.delegate extended attribute: %m");
|
||||||
|
} else {
|
||||||
|
r = parse_boolean(b);
|
||||||
|
if (r < 0)
|
||||||
|
log_debug_errno(r, "Failed to parse trusted.delegate extended attribute boolean value: %m");
|
||||||
|
else
|
||||||
|
delegate = r > 0;
|
||||||
|
|
||||||
|
b = mfree(b);
|
||||||
|
}
|
||||||
|
|
||||||
|
b = strdup(basename(path));
|
||||||
|
if (!b)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
printf("%s%s%s%s%s %s%s%s\n",
|
||||||
|
prefix, glyph,
|
||||||
|
delegate ? ansi_underline() : "",
|
||||||
|
cg_unescape(b),
|
||||||
|
delegate ? ansi_normal() : "",
|
||||||
|
delegate ? ansi_highlight() : "",
|
||||||
|
delegate ? special_glyph(SPECIAL_GLYPH_ELLIPSIS) : "",
|
||||||
|
delegate ? ansi_normal() : "");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int show_cgroup_by_path(
|
int show_cgroup_by_path(
|
||||||
const char *path,
|
const char *path,
|
||||||
const char *prefix,
|
const char *prefix,
|
||||||
|
@ -125,8 +165,8 @@ int show_cgroup_by_path(
|
||||||
|
|
||||||
_cleanup_free_ char *fn = NULL, *p1 = NULL, *last = NULL, *p2 = NULL;
|
_cleanup_free_ char *fn = NULL, *p1 = NULL, *last = NULL, *p2 = NULL;
|
||||||
_cleanup_closedir_ DIR *d = NULL;
|
_cleanup_closedir_ DIR *d = NULL;
|
||||||
char *gn = NULL;
|
|
||||||
bool shown_pids = false;
|
bool shown_pids = false;
|
||||||
|
char *gn = NULL;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
assert(path);
|
assert(path);
|
||||||
|
@ -161,7 +201,9 @@ int show_cgroup_by_path(
|
||||||
}
|
}
|
||||||
|
|
||||||
if (last) {
|
if (last) {
|
||||||
printf("%s%s%s\n", prefix, special_glyph(SPECIAL_GLYPH_TREE_BRANCH), cg_unescape(basename(last)));
|
r = show_cgroup_name(last, prefix, special_glyph(SPECIAL_GLYPH_TREE_BRANCH));
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
if (!p1) {
|
if (!p1) {
|
||||||
p1 = strjoin(prefix, special_glyph(SPECIAL_GLYPH_TREE_VERTICAL));
|
p1 = strjoin(prefix, special_glyph(SPECIAL_GLYPH_TREE_VERTICAL));
|
||||||
|
@ -183,7 +225,9 @@ int show_cgroup_by_path(
|
||||||
show_cgroup_one_by_path(path, prefix, n_columns, !!last, flags);
|
show_cgroup_one_by_path(path, prefix, n_columns, !!last, flags);
|
||||||
|
|
||||||
if (last) {
|
if (last) {
|
||||||
printf("%s%s%s\n", prefix, special_glyph(SPECIAL_GLYPH_TREE_RIGHT), cg_unescape(basename(last)));
|
r = show_cgroup_name(last, prefix, special_glyph(SPECIAL_GLYPH_TREE_RIGHT));
|
||||||
|
if (r < 0)
|
||||||
|
return r;
|
||||||
|
|
||||||
if (!p2) {
|
if (!p2) {
|
||||||
p2 = strjoin(prefix, " ");
|
p2 = strjoin(prefix, " ");
|
||||||
|
|
Loading…
Reference in New Issue