]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/cgroup.c
core: reduce the number of stalled PIDs from the watched processes list when possible
[thirdparty/systemd.git] / src / core / cgroup.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
8e274523 2
c6c18be3 3#include <fcntl.h>
e41969e3 4#include <fnmatch.h>
8c6db833 5
b5efdb8a 6#include "alloc-util.h"
18c528e9 7#include "blockdev-util.h"
d8b4d14d 8#include "bpf-devices.h"
906c06f6 9#include "bpf-firewall.h"
45c2e068 10#include "btrfs-util.h"
6592b975 11#include "bus-error.h"
03a7b521 12#include "cgroup-util.h"
3ffd4af2
LP
13#include "cgroup.h"
14#include "fd-util.h"
0d39fa9c 15#include "fileio.h"
77601719 16#include "fs-util.h"
d8b4d14d 17#include "nulstr-util.h"
6bedfcbb 18#include "parse-util.h"
9eb977db 19#include "path-util.h"
03a7b521 20#include "process-util.h"
c36a69f4 21#include "procfs-util.h"
9444b1f2 22#include "special.h"
74c48bf5 23#include "stat-util.h"
906c06f6 24#include "stdio-util.h"
8b43440b 25#include "string-table.h"
07630cea 26#include "string-util.h"
cc6271f1 27#include "virt.h"
8e274523 28
10f28641 29#define CGROUP_CPU_QUOTA_DEFAULT_PERIOD_USEC ((usec_t) 100 * USEC_PER_MSEC)
9a054909 30
39b9fefb
LP
31/* Returns the log level to use when cgroup attribute writes fail. When an attribute is missing or we have access
32 * problems we downgrade to LOG_DEBUG. This is supposed to be nice to container managers and kernels which want to mask
33 * out specific attributes from us. */
34#define LOG_LEVEL_CGROUP_WRITE(r) (IN_SET(abs(r), ENOENT, EROFS, EACCES, EPERM) ? LOG_DEBUG : LOG_WARNING)
35
611c4f8a 36bool manager_owns_host_root_cgroup(Manager *m) {
cc6271f1
LP
37 assert(m);
38
39 /* Returns true if we are managing the root cgroup. Note that it isn't sufficient to just check whether the
40 * group root path equals "/" since that will also be the case if CLONE_NEWCGROUP is in the mix. Since there's
41 * appears to be no nice way to detect whether we are in a CLONE_NEWCGROUP namespace we instead just check if
42 * we run in any kind of container virtualization. */
43
28cfdc5a
LP
44 if (MANAGER_IS_USER(m))
45 return false;
46
cc6271f1
LP
47 if (detect_container() > 0)
48 return false;
49
57ea45e1 50 return empty_or_root(m->cgroup_root);
cc6271f1
LP
51}
52
611c4f8a 53bool unit_has_host_root_cgroup(Unit *u) {
f3725e64
LP
54 assert(u);
55
cc6271f1
LP
56 /* Returns whether this unit manages the root cgroup. This will return true if this unit is the root slice and
57 * the manager manages the root cgroup. */
f3725e64 58
611c4f8a 59 if (!manager_owns_host_root_cgroup(u->manager))
f3725e64
LP
60 return false;
61
cc6271f1 62 return unit_has_name(u, SPECIAL_ROOT_SLICE);
f3725e64
LP
63}
64
293d32df
LP
65static int set_attribute_and_warn(Unit *u, const char *controller, const char *attribute, const char *value) {
66 int r;
67
68 r = cg_set_attribute(controller, u->cgroup_path, attribute, value);
69 if (r < 0)
70 log_unit_full(u, LOG_LEVEL_CGROUP_WRITE(r), r, "Failed to set '%s' attribute on '%s' to '%.*s': %m",
71 strna(attribute), isempty(u->cgroup_path) ? "/" : u->cgroup_path, (int) strcspn(value, NEWLINE), value);
72
73 return r;
74}
75
2b40998d 76static void cgroup_compat_warn(void) {
128fadc9
TH
77 static bool cgroup_compat_warned = false;
78
79 if (cgroup_compat_warned)
80 return;
81
cc6271f1
LP
82 log_warning("cgroup compatibility translation between legacy and unified hierarchy settings activated. "
83 "See cgroup-compat debug messages for details.");
84
128fadc9
TH
85 cgroup_compat_warned = true;
86}
87
88#define log_cgroup_compat(unit, fmt, ...) do { \
89 cgroup_compat_warn(); \
90 log_unit_debug(unit, "cgroup-compat: " fmt, ##__VA_ARGS__); \
2b40998d 91 } while (false)
128fadc9 92
4ad49000
LP
93void cgroup_context_init(CGroupContext *c) {
94 assert(c);
95
de8a711a 96 /* Initialize everything to the kernel defaults. */
4ad49000 97
de8a711a
LP
98 *c = (CGroupContext) {
99 .cpu_weight = CGROUP_WEIGHT_INVALID,
100 .startup_cpu_weight = CGROUP_WEIGHT_INVALID,
101 .cpu_quota_per_sec_usec = USEC_INFINITY,
10f28641 102 .cpu_quota_period_usec = USEC_INFINITY,
66ebf6c0 103
de8a711a
LP
104 .cpu_shares = CGROUP_CPU_SHARES_INVALID,
105 .startup_cpu_shares = CGROUP_CPU_SHARES_INVALID,
d53d9474 106
de8a711a
LP
107 .memory_high = CGROUP_LIMIT_MAX,
108 .memory_max = CGROUP_LIMIT_MAX,
109 .memory_swap_max = CGROUP_LIMIT_MAX,
da4d897e 110
de8a711a 111 .memory_limit = CGROUP_LIMIT_MAX,
b2f8b02e 112
de8a711a
LP
113 .io_weight = CGROUP_WEIGHT_INVALID,
114 .startup_io_weight = CGROUP_WEIGHT_INVALID,
13c31542 115
de8a711a
LP
116 .blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID,
117 .startup_blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID,
d53d9474 118
de8a711a
LP
119 .tasks_max = CGROUP_LIMIT_MAX,
120 };
4ad49000 121}
8e274523 122
4ad49000
LP
123void cgroup_context_free_device_allow(CGroupContext *c, CGroupDeviceAllow *a) {
124 assert(c);
125 assert(a);
126
71fda00f 127 LIST_REMOVE(device_allow, c->device_allow, a);
4ad49000
LP
128 free(a->path);
129 free(a);
130}
131
13c31542
TH
132void cgroup_context_free_io_device_weight(CGroupContext *c, CGroupIODeviceWeight *w) {
133 assert(c);
134 assert(w);
135
136 LIST_REMOVE(device_weights, c->io_device_weights, w);
137 free(w->path);
138 free(w);
139}
140
6ae4283c
TH
141void cgroup_context_free_io_device_latency(CGroupContext *c, CGroupIODeviceLatency *l) {
142 assert(c);
143 assert(l);
144
145 LIST_REMOVE(device_latencies, c->io_device_latencies, l);
146 free(l->path);
147 free(l);
148}
149
13c31542
TH
150void cgroup_context_free_io_device_limit(CGroupContext *c, CGroupIODeviceLimit *l) {
151 assert(c);
152 assert(l);
153
154 LIST_REMOVE(device_limits, c->io_device_limits, l);
155 free(l->path);
156 free(l);
157}
158
4ad49000
LP
159void cgroup_context_free_blockio_device_weight(CGroupContext *c, CGroupBlockIODeviceWeight *w) {
160 assert(c);
161 assert(w);
162
71fda00f 163 LIST_REMOVE(device_weights, c->blockio_device_weights, w);
4ad49000
LP
164 free(w->path);
165 free(w);
166}
167
168void cgroup_context_free_blockio_device_bandwidth(CGroupContext *c, CGroupBlockIODeviceBandwidth *b) {
169 assert(c);
8e274523 170 assert(b);
8e274523 171
71fda00f 172 LIST_REMOVE(device_bandwidths, c->blockio_device_bandwidths, b);
4ad49000
LP
173 free(b->path);
174 free(b);
175}
176
177void cgroup_context_done(CGroupContext *c) {
178 assert(c);
179
13c31542
TH
180 while (c->io_device_weights)
181 cgroup_context_free_io_device_weight(c, c->io_device_weights);
182
6ae4283c
TH
183 while (c->io_device_latencies)
184 cgroup_context_free_io_device_latency(c, c->io_device_latencies);
185
13c31542
TH
186 while (c->io_device_limits)
187 cgroup_context_free_io_device_limit(c, c->io_device_limits);
188
4ad49000
LP
189 while (c->blockio_device_weights)
190 cgroup_context_free_blockio_device_weight(c, c->blockio_device_weights);
191
192 while (c->blockio_device_bandwidths)
193 cgroup_context_free_blockio_device_bandwidth(c, c->blockio_device_bandwidths);
194
195 while (c->device_allow)
196 cgroup_context_free_device_allow(c, c->device_allow);
6a48d82f
DM
197
198 c->ip_address_allow = ip_address_access_free_all(c->ip_address_allow);
199 c->ip_address_deny = ip_address_access_free_all(c->ip_address_deny);
4ad49000
LP
200}
201
202void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix) {
13c31542
TH
203 CGroupIODeviceLimit *il;
204 CGroupIODeviceWeight *iw;
6ae4283c 205 CGroupIODeviceLatency *l;
4ad49000
LP
206 CGroupBlockIODeviceBandwidth *b;
207 CGroupBlockIODeviceWeight *w;
208 CGroupDeviceAllow *a;
c21c9906 209 IPAddressAccessItem *iaai;
9a054909 210 char u[FORMAT_TIMESPAN_MAX];
10f28641 211 char v[FORMAT_TIMESPAN_MAX];
4ad49000
LP
212
213 assert(c);
214 assert(f);
215
216 prefix = strempty(prefix);
217
218 fprintf(f,
219 "%sCPUAccounting=%s\n"
13c31542 220 "%sIOAccounting=%s\n"
4ad49000
LP
221 "%sBlockIOAccounting=%s\n"
222 "%sMemoryAccounting=%s\n"
d53d9474 223 "%sTasksAccounting=%s\n"
c21c9906 224 "%sIPAccounting=%s\n"
66ebf6c0
TH
225 "%sCPUWeight=%" PRIu64 "\n"
226 "%sStartupCPUWeight=%" PRIu64 "\n"
d53d9474
LP
227 "%sCPUShares=%" PRIu64 "\n"
228 "%sStartupCPUShares=%" PRIu64 "\n"
b2f8b02e 229 "%sCPUQuotaPerSecSec=%s\n"
10f28641 230 "%sCPUQuotaPeriodSec=%s\n"
13c31542
TH
231 "%sIOWeight=%" PRIu64 "\n"
232 "%sStartupIOWeight=%" PRIu64 "\n"
d53d9474
LP
233 "%sBlockIOWeight=%" PRIu64 "\n"
234 "%sStartupBlockIOWeight=%" PRIu64 "\n"
48422635 235 "%sMemoryMin=%" PRIu64 "\n"
da4d897e
TH
236 "%sMemoryLow=%" PRIu64 "\n"
237 "%sMemoryHigh=%" PRIu64 "\n"
238 "%sMemoryMax=%" PRIu64 "\n"
96e131ea 239 "%sMemorySwapMax=%" PRIu64 "\n"
4ad49000 240 "%sMemoryLimit=%" PRIu64 "\n"
03a7b521 241 "%sTasksMax=%" PRIu64 "\n"
a931ad47
LP
242 "%sDevicePolicy=%s\n"
243 "%sDelegate=%s\n",
4ad49000 244 prefix, yes_no(c->cpu_accounting),
13c31542 245 prefix, yes_no(c->io_accounting),
4ad49000
LP
246 prefix, yes_no(c->blockio_accounting),
247 prefix, yes_no(c->memory_accounting),
d53d9474 248 prefix, yes_no(c->tasks_accounting),
c21c9906 249 prefix, yes_no(c->ip_accounting),
66ebf6c0
TH
250 prefix, c->cpu_weight,
251 prefix, c->startup_cpu_weight,
4ad49000 252 prefix, c->cpu_shares,
95ae05c0 253 prefix, c->startup_cpu_shares,
b1d6dcf5 254 prefix, format_timespan(u, sizeof(u), c->cpu_quota_per_sec_usec, 1),
10f28641 255 prefix, format_timespan(v, sizeof(v), c->cpu_quota_period_usec, 1),
13c31542
TH
256 prefix, c->io_weight,
257 prefix, c->startup_io_weight,
4ad49000 258 prefix, c->blockio_weight,
95ae05c0 259 prefix, c->startup_blockio_weight,
48422635 260 prefix, c->memory_min,
da4d897e
TH
261 prefix, c->memory_low,
262 prefix, c->memory_high,
263 prefix, c->memory_max,
96e131ea 264 prefix, c->memory_swap_max,
4ad49000 265 prefix, c->memory_limit,
03a7b521 266 prefix, c->tasks_max,
a931ad47
LP
267 prefix, cgroup_device_policy_to_string(c->device_policy),
268 prefix, yes_no(c->delegate));
4ad49000 269
02638280
LP
270 if (c->delegate) {
271 _cleanup_free_ char *t = NULL;
272
273 (void) cg_mask_to_string(c->delegate_controllers, &t);
274
47a78d41 275 fprintf(f, "%sDelegateControllers=%s\n",
02638280
LP
276 prefix,
277 strempty(t));
278 }
279
4ad49000
LP
280 LIST_FOREACH(device_allow, a, c->device_allow)
281 fprintf(f,
282 "%sDeviceAllow=%s %s%s%s\n",
283 prefix,
284 a->path,
285 a->r ? "r" : "", a->w ? "w" : "", a->m ? "m" : "");
286
13c31542
TH
287 LIST_FOREACH(device_weights, iw, c->io_device_weights)
288 fprintf(f,
6ae4283c 289 "%sIODeviceWeight=%s %" PRIu64 "\n",
13c31542
TH
290 prefix,
291 iw->path,
292 iw->weight);
293
6ae4283c
TH
294 LIST_FOREACH(device_latencies, l, c->io_device_latencies)
295 fprintf(f,
296 "%sIODeviceLatencyTargetSec=%s %s\n",
297 prefix,
298 l->path,
299 format_timespan(u, sizeof(u), l->target_usec, 1));
300
13c31542
TH
301 LIST_FOREACH(device_limits, il, c->io_device_limits) {
302 char buf[FORMAT_BYTES_MAX];
9be57249
TH
303 CGroupIOLimitType type;
304
305 for (type = 0; type < _CGROUP_IO_LIMIT_TYPE_MAX; type++)
306 if (il->limits[type] != cgroup_io_limit_defaults[type])
307 fprintf(f,
308 "%s%s=%s %s\n",
309 prefix,
310 cgroup_io_limit_type_to_string(type),
311 il->path,
312 format_bytes(buf, sizeof(buf), il->limits[type]));
13c31542
TH
313 }
314
4ad49000
LP
315 LIST_FOREACH(device_weights, w, c->blockio_device_weights)
316 fprintf(f,
d53d9474 317 "%sBlockIODeviceWeight=%s %" PRIu64,
4ad49000
LP
318 prefix,
319 w->path,
320 w->weight);
321
322 LIST_FOREACH(device_bandwidths, b, c->blockio_device_bandwidths) {
323 char buf[FORMAT_BYTES_MAX];
324
979d0311
TH
325 if (b->rbps != CGROUP_LIMIT_MAX)
326 fprintf(f,
327 "%sBlockIOReadBandwidth=%s %s\n",
328 prefix,
329 b->path,
330 format_bytes(buf, sizeof(buf), b->rbps));
331 if (b->wbps != CGROUP_LIMIT_MAX)
332 fprintf(f,
333 "%sBlockIOWriteBandwidth=%s %s\n",
334 prefix,
335 b->path,
336 format_bytes(buf, sizeof(buf), b->wbps));
4ad49000 337 }
c21c9906
LP
338
339 LIST_FOREACH(items, iaai, c->ip_address_allow) {
340 _cleanup_free_ char *k = NULL;
341
342 (void) in_addr_to_string(iaai->family, &iaai->address, &k);
343 fprintf(f, "%sIPAddressAllow=%s/%u\n", prefix, strnull(k), iaai->prefixlen);
344 }
345
346 LIST_FOREACH(items, iaai, c->ip_address_deny) {
347 _cleanup_free_ char *k = NULL;
348
349 (void) in_addr_to_string(iaai->family, &iaai->address, &k);
350 fprintf(f, "%sIPAddressDeny=%s/%u\n", prefix, strnull(k), iaai->prefixlen);
351 }
4ad49000
LP
352}
353
fd870bac
YW
354int cgroup_add_device_allow(CGroupContext *c, const char *dev, const char *mode) {
355 _cleanup_free_ CGroupDeviceAllow *a = NULL;
356 _cleanup_free_ char *d = NULL;
357
358 assert(c);
359 assert(dev);
360 assert(isempty(mode) || in_charset(mode, "rwm"));
361
362 a = new(CGroupDeviceAllow, 1);
363 if (!a)
364 return -ENOMEM;
365
366 d = strdup(dev);
367 if (!d)
368 return -ENOMEM;
369
370 *a = (CGroupDeviceAllow) {
371 .path = TAKE_PTR(d),
490c5a37
LP
372 .r = isempty(mode) || strchr(mode, 'r'),
373 .w = isempty(mode) || strchr(mode, 'w'),
374 .m = isempty(mode) || strchr(mode, 'm'),
fd870bac
YW
375 };
376
377 LIST_PREPEND(device_allow, c->device_allow, a);
378 TAKE_PTR(a);
379
380 return 0;
381}
382
0d2d6fbf
CD
383static void cgroup_xattr_apply(Unit *u) {
384 char ids[SD_ID128_STRING_MAX];
385 int r;
386
387 assert(u);
388
389 if (!MANAGER_IS_SYSTEM(u->manager))
390 return;
391
392 if (sd_id128_is_null(u->invocation_id))
393 return;
394
395 r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
396 "trusted.invocation_id",
397 sd_id128_to_string(u->invocation_id, ids), 32,
398 0);
399 if (r < 0)
400 log_unit_debug_errno(u, r, "Failed to set invocation ID on control group %s, ignoring: %m", u->cgroup_path);
401}
402
45c2e068 403static int lookup_block_device(const char *p, dev_t *ret) {
f5855697
YS
404 dev_t rdev, dev = 0;
405 mode_t mode;
45c2e068 406 int r;
4ad49000
LP
407
408 assert(p);
45c2e068 409 assert(ret);
4ad49000 410
f5855697 411 r = device_path_parse_major_minor(p, &mode, &rdev);
d5aecba6 412 if (r == -ENODEV) { /* not a parsable device node, need to go to disk */
f5855697 413 struct stat st;
d5aecba6
LP
414 if (stat(p, &st) < 0)
415 return log_warning_errno(errno, "Couldn't stat device '%s': %m", p);
f5855697
YS
416 rdev = (dev_t)st.st_rdev;
417 dev = (dev_t)st.st_dev;
418 mode = st.st_mode;
d5aecba6
LP
419 } else if (r < 0)
420 return log_warning_errno(r, "Failed to parse major/minor from path '%s': %m", p);
421
f5855697 422 if (S_ISCHR(mode)) {
d5aecba6
LP
423 log_warning("Device node '%s' is a character device, but block device needed.", p);
424 return -ENOTBLK;
f5855697
YS
425 } else if (S_ISBLK(mode))
426 *ret = rdev;
427 else if (major(dev) != 0)
428 *ret = dev; /* If this is not a device node then use the block device this file is stored on */
45c2e068
LP
429 else {
430 /* If this is btrfs, getting the backing block device is a bit harder */
431 r = btrfs_get_block_device(p, ret);
432 if (r < 0 && r != -ENOTTY)
433 return log_warning_errno(r, "Failed to determine block device backing btrfs file system '%s': %m", p);
434 if (r == -ENOTTY) {
435 log_warning("'%s' is not a block device node, and file system block device cannot be determined or is not local.", p);
436 return -ENODEV;
437 }
4ad49000 438 }
8e274523 439
45c2e068
LP
440 /* If this is a LUKS device, try to get the originating block device */
441 (void) block_get_originating(*ret, ret);
442
443 /* If this is a partition, try to get the originating block device */
444 (void) block_get_whole_disk(*ret, ret);
8e274523 445 return 0;
8e274523
LP
446}
447
084c7007 448static int whitelist_device(BPFProgram *prog, const char *path, const char *node, const char *acc) {
f5855697
YS
449 dev_t rdev;
450 mode_t mode;
8c6db833 451 int r;
8e274523 452
4ad49000
LP
453 assert(path);
454 assert(acc);
8e274523 455
74c48bf5
LP
456 /* Some special handling for /dev/block/%u:%u, /dev/char/%u:%u, /run/systemd/inaccessible/chr and
457 * /run/systemd/inaccessible/blk paths. Instead of stat()ing these we parse out the major/minor directly. This
458 * means clients can use these path without the device node actually around */
f5855697 459 r = device_path_parse_major_minor(node, &mode, &rdev);
74c48bf5
LP
460 if (r < 0) {
461 if (r != -ENODEV)
462 return log_warning_errno(r, "Couldn't parse major/minor from device path '%s': %m", node);
b200489b 463
f5855697 464 struct stat st;
74c48bf5
LP
465 if (stat(node, &st) < 0)
466 return log_warning_errno(errno, "Couldn't stat device %s: %m", node);
e7330dfe 467
74c48bf5
LP
468 if (!S_ISCHR(st.st_mode) && !S_ISBLK(st.st_mode)) {
469 log_warning("%s is not a device.", node);
470 return -ENODEV;
471 }
f5855697
YS
472 rdev = (dev_t) st.st_rdev;
473 mode = st.st_mode;
4ad49000
LP
474 }
475
084c7007
RG
476 if (cg_all_unified() > 0) {
477 if (!prog)
478 return 0;
4ad49000 479
f5855697
YS
480 return cgroup_bpf_whitelist_device(prog, S_ISCHR(mode) ? BPF_DEVCG_DEV_CHAR : BPF_DEVCG_DEV_BLOCK,
481 major(rdev), minor(rdev), acc);
b9839ac9 482
084c7007
RG
483 } else {
484 char buf[2+DECIMAL_STR_MAX(dev_t)*2+2+4];
485
486 sprintf(buf,
487 "%c %u:%u %s",
f5855697
YS
488 S_ISCHR(mode) ? 'c' : 'b',
489 major(rdev), minor(rdev),
084c7007
RG
490 acc);
491
8c838407
LP
492 /* Changing the devices list of a populated cgroup might result in EINVAL, hence ignore EINVAL here. */
493
084c7007
RG
494 r = cg_set_attribute("devices", path, "devices.allow", buf);
495 if (r < 0)
2c74e12b 496 return log_full_errno(IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES, -EPERM) ? LOG_DEBUG : LOG_WARNING,
b9839ac9 497 r, "Failed to set devices.allow on %s: %m", path);
4ad49000 498
b9839ac9
LP
499 return 0;
500 }
8e274523
LP
501}
502
084c7007 503static int whitelist_major(BPFProgram *prog, const char *path, const char *name, char type, const char *acc) {
90060676 504 _cleanup_fclose_ FILE *f = NULL;
8e8b5d2e 505 char buf[2+DECIMAL_STR_MAX(unsigned)+3+4];
90060676 506 bool good = false;
8e8b5d2e 507 unsigned maj;
90060676
LP
508 int r;
509
510 assert(path);
511 assert(acc);
4c701096 512 assert(IN_SET(type, 'b', 'c'));
90060676 513
8e8b5d2e
LP
514 if (streq(name, "*")) {
515 /* If the name is a wildcard, then apply this list to all devices of this type */
516
517 if (cg_all_unified() > 0) {
518 if (!prog)
519 return 0;
520
521 (void) cgroup_bpf_whitelist_class(prog, type == 'c' ? BPF_DEVCG_DEV_CHAR : BPF_DEVCG_DEV_BLOCK, acc);
522 } else {
523 xsprintf(buf, "%c *:* %s", type, acc);
524
525 r = cg_set_attribute("devices", path, "devices.allow", buf);
526 if (r < 0)
527 log_full_errno(IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
528 "Failed to set devices.allow on %s: %m", path);
529 return 0;
530 }
531 }
532
533 if (safe_atou(name, &maj) >= 0 && DEVICE_MAJOR_VALID(maj)) {
534 /* The name is numeric and suitable as major. In that case, let's take is major, and create the entry
535 * directly */
536
537 if (cg_all_unified() > 0) {
538 if (!prog)
539 return 0;
540
541 (void) cgroup_bpf_whitelist_major(prog,
542 type == 'c' ? BPF_DEVCG_DEV_CHAR : BPF_DEVCG_DEV_BLOCK,
543 maj, acc);
544 } else {
545 xsprintf(buf, "%c %u:* %s", type, maj, acc);
546
547 r = cg_set_attribute("devices", path, "devices.allow", buf);
548 if (r < 0)
549 log_full_errno(IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
550 "Failed to set devices.allow on %s: %m", path);
551 }
552
553 return 0;
554 }
555
90060676 556 f = fopen("/proc/devices", "re");
4a62c710
MS
557 if (!f)
558 return log_warning_errno(errno, "Cannot open /proc/devices to resolve %s (%c): %m", name, type);
90060676 559
c66e60a8
LP
560 for (;;) {
561 _cleanup_free_ char *line = NULL;
8e8b5d2e 562 char *w, *p;
90060676 563
c66e60a8
LP
564 r = read_line(f, LONG_LINE_MAX, &line);
565 if (r < 0)
566 return log_warning_errno(r, "Failed to read /proc/devices: %m");
567 if (r == 0)
568 break;
90060676
LP
569
570 if (type == 'c' && streq(line, "Character devices:")) {
571 good = true;
572 continue;
573 }
574
575 if (type == 'b' && streq(line, "Block devices:")) {
576 good = true;
577 continue;
578 }
579
580 if (isempty(line)) {
581 good = false;
582 continue;
583 }
584
585 if (!good)
586 continue;
587
588 p = strstrip(line);
589
590 w = strpbrk(p, WHITESPACE);
591 if (!w)
592 continue;
593 *w = 0;
594
595 r = safe_atou(p, &maj);
596 if (r < 0)
597 continue;
598 if (maj <= 0)
599 continue;
600
601 w++;
602 w += strspn(w, WHITESPACE);
e41969e3
LP
603
604 if (fnmatch(name, w, 0) != 0)
90060676
LP
605 continue;
606
084c7007
RG
607 if (cg_all_unified() > 0) {
608 if (!prog)
609 continue;
90060676 610
913c898c
LP
611 (void) cgroup_bpf_whitelist_major(prog,
612 type == 'c' ? BPF_DEVCG_DEV_CHAR : BPF_DEVCG_DEV_BLOCK,
613 maj, acc);
084c7007 614 } else {
084c7007
RG
615 sprintf(buf,
616 "%c %u:* %s",
617 type,
618 maj,
619 acc);
620
8c838407
LP
621 /* Changing the devices list of a populated cgroup might result in EINVAL, hence ignore EINVAL
622 * here. */
623
084c7007
RG
624 r = cg_set_attribute("devices", path, "devices.allow", buf);
625 if (r < 0)
2c74e12b 626 log_full_errno(IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES, -EPERM) ? LOG_DEBUG : LOG_WARNING,
084c7007
RG
627 r, "Failed to set devices.allow on %s: %m", path);
628 }
90060676
LP
629 }
630
631 return 0;
90060676
LP
632}
633
66ebf6c0
TH
634static bool cgroup_context_has_cpu_weight(CGroupContext *c) {
635 return c->cpu_weight != CGROUP_WEIGHT_INVALID ||
636 c->startup_cpu_weight != CGROUP_WEIGHT_INVALID;
637}
638
639static bool cgroup_context_has_cpu_shares(CGroupContext *c) {
640 return c->cpu_shares != CGROUP_CPU_SHARES_INVALID ||
641 c->startup_cpu_shares != CGROUP_CPU_SHARES_INVALID;
642}
643
644static uint64_t cgroup_context_cpu_weight(CGroupContext *c, ManagerState state) {
645 if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
646 c->startup_cpu_weight != CGROUP_WEIGHT_INVALID)
647 return c->startup_cpu_weight;
648 else if (c->cpu_weight != CGROUP_WEIGHT_INVALID)
649 return c->cpu_weight;
650 else
651 return CGROUP_WEIGHT_DEFAULT;
652}
653
654static uint64_t cgroup_context_cpu_shares(CGroupContext *c, ManagerState state) {
655 if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
656 c->startup_cpu_shares != CGROUP_CPU_SHARES_INVALID)
657 return c->startup_cpu_shares;
658 else if (c->cpu_shares != CGROUP_CPU_SHARES_INVALID)
659 return c->cpu_shares;
660 else
661 return CGROUP_CPU_SHARES_DEFAULT;
662}
663
10f28641
FB
664usec_t cgroup_cpu_adjust_period(usec_t period, usec_t quota, usec_t resolution, usec_t max_period) {
665 /* kernel uses a minimum resolution of 1ms, so both period and (quota * period)
666 * need to be higher than that boundary. quota is specified in USecPerSec.
667 * Additionally, period must be at most max_period. */
668 assert(quota > 0);
669
670 return MIN(MAX3(period, resolution, resolution * USEC_PER_SEC / quota), max_period);
671}
672
673static usec_t cgroup_cpu_adjust_period_and_log(Unit *u, usec_t period, usec_t quota) {
674 usec_t new_period;
675
676 if (quota == USEC_INFINITY)
677 /* Always use default period for infinity quota. */
678 return CGROUP_CPU_QUOTA_DEFAULT_PERIOD_USEC;
679
680 if (period == USEC_INFINITY)
681 /* Default period was requested. */
682 period = CGROUP_CPU_QUOTA_DEFAULT_PERIOD_USEC;
683
684 /* Clamp to interval [1ms, 1s] */
685 new_period = cgroup_cpu_adjust_period(period, quota, USEC_PER_MSEC, USEC_PER_SEC);
686
687 if (new_period != period) {
688 char v[FORMAT_TIMESPAN_MAX];
527ede0c 689 log_unit_full(u, u->warned_clamping_cpu_quota_period ? LOG_DEBUG : LOG_WARNING, 0,
10f28641
FB
690 "Clamping CPU interval for cpu.max: period is now %s",
691 format_timespan(v, sizeof(v), new_period, 1));
527ede0c 692 u->warned_clamping_cpu_quota_period = true;
10f28641
FB
693 }
694
695 return new_period;
696}
697
52fecf20
LP
698static void cgroup_apply_unified_cpu_weight(Unit *u, uint64_t weight) {
699 char buf[DECIMAL_STR_MAX(uint64_t) + 2];
66ebf6c0
TH
700
701 xsprintf(buf, "%" PRIu64 "\n", weight);
293d32df 702 (void) set_attribute_and_warn(u, "cpu", "cpu.weight", buf);
52fecf20
LP
703}
704
10f28641 705static void cgroup_apply_unified_cpu_quota(Unit *u, usec_t quota, usec_t period) {
52fecf20 706 char buf[(DECIMAL_STR_MAX(usec_t) + 1) * 2 + 1];
66ebf6c0 707
10f28641 708 period = cgroup_cpu_adjust_period_and_log(u, period, quota);
66ebf6c0
TH
709 if (quota != USEC_INFINITY)
710 xsprintf(buf, USEC_FMT " " USEC_FMT "\n",
10f28641 711 MAX(quota * period / USEC_PER_SEC, USEC_PER_MSEC), period);
66ebf6c0 712 else
10f28641 713 xsprintf(buf, "max " USEC_FMT "\n", period);
293d32df 714 (void) set_attribute_and_warn(u, "cpu", "cpu.max", buf);
66ebf6c0
TH
715}
716
52fecf20
LP
717static void cgroup_apply_legacy_cpu_shares(Unit *u, uint64_t shares) {
718 char buf[DECIMAL_STR_MAX(uint64_t) + 2];
66ebf6c0
TH
719
720 xsprintf(buf, "%" PRIu64 "\n", shares);
293d32df 721 (void) set_attribute_and_warn(u, "cpu", "cpu.shares", buf);
52fecf20
LP
722}
723
10f28641 724static void cgroup_apply_legacy_cpu_quota(Unit *u, usec_t quota, usec_t period) {
52fecf20 725 char buf[DECIMAL_STR_MAX(usec_t) + 2];
66ebf6c0 726
10f28641
FB
727 period = cgroup_cpu_adjust_period_and_log(u, period, quota);
728
729 xsprintf(buf, USEC_FMT "\n", period);
293d32df 730 (void) set_attribute_and_warn(u, "cpu", "cpu.cfs_period_us", buf);
66ebf6c0
TH
731
732 if (quota != USEC_INFINITY) {
10f28641 733 xsprintf(buf, USEC_FMT "\n", MAX(quota * period / USEC_PER_SEC, USEC_PER_MSEC));
293d32df 734 (void) set_attribute_and_warn(u, "cpu", "cpu.cfs_quota_us", buf);
66ebf6c0 735 } else
589a5f7a 736 (void) set_attribute_and_warn(u, "cpu", "cpu.cfs_quota_us", "-1\n");
66ebf6c0
TH
737}
738
739static uint64_t cgroup_cpu_shares_to_weight(uint64_t shares) {
740 return CLAMP(shares * CGROUP_WEIGHT_DEFAULT / CGROUP_CPU_SHARES_DEFAULT,
741 CGROUP_WEIGHT_MIN, CGROUP_WEIGHT_MAX);
742}
743
744static uint64_t cgroup_cpu_weight_to_shares(uint64_t weight) {
745 return CLAMP(weight * CGROUP_CPU_SHARES_DEFAULT / CGROUP_WEIGHT_DEFAULT,
746 CGROUP_CPU_SHARES_MIN, CGROUP_CPU_SHARES_MAX);
747}
748
508c45da 749static bool cgroup_context_has_io_config(CGroupContext *c) {
538b4852
TH
750 return c->io_accounting ||
751 c->io_weight != CGROUP_WEIGHT_INVALID ||
752 c->startup_io_weight != CGROUP_WEIGHT_INVALID ||
753 c->io_device_weights ||
6ae4283c 754 c->io_device_latencies ||
538b4852
TH
755 c->io_device_limits;
756}
757
508c45da 758static bool cgroup_context_has_blockio_config(CGroupContext *c) {
538b4852
TH
759 return c->blockio_accounting ||
760 c->blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID ||
761 c->startup_blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID ||
762 c->blockio_device_weights ||
763 c->blockio_device_bandwidths;
764}
765
508c45da 766static uint64_t cgroup_context_io_weight(CGroupContext *c, ManagerState state) {
64faf04c
TH
767 if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
768 c->startup_io_weight != CGROUP_WEIGHT_INVALID)
769 return c->startup_io_weight;
770 else if (c->io_weight != CGROUP_WEIGHT_INVALID)
771 return c->io_weight;
772 else
773 return CGROUP_WEIGHT_DEFAULT;
774}
775
508c45da 776static uint64_t cgroup_context_blkio_weight(CGroupContext *c, ManagerState state) {
64faf04c
TH
777 if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
778 c->startup_blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID)
779 return c->startup_blockio_weight;
780 else if (c->blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID)
781 return c->blockio_weight;
782 else
783 return CGROUP_BLKIO_WEIGHT_DEFAULT;
784}
785
508c45da 786static uint64_t cgroup_weight_blkio_to_io(uint64_t blkio_weight) {
538b4852
TH
787 return CLAMP(blkio_weight * CGROUP_WEIGHT_DEFAULT / CGROUP_BLKIO_WEIGHT_DEFAULT,
788 CGROUP_WEIGHT_MIN, CGROUP_WEIGHT_MAX);
789}
790
508c45da 791static uint64_t cgroup_weight_io_to_blkio(uint64_t io_weight) {
538b4852
TH
792 return CLAMP(io_weight * CGROUP_BLKIO_WEIGHT_DEFAULT / CGROUP_WEIGHT_DEFAULT,
793 CGROUP_BLKIO_WEIGHT_MIN, CGROUP_BLKIO_WEIGHT_MAX);
794}
795
f29ff115 796static void cgroup_apply_io_device_weight(Unit *u, const char *dev_path, uint64_t io_weight) {
64faf04c
TH
797 char buf[DECIMAL_STR_MAX(dev_t)*2+2+DECIMAL_STR_MAX(uint64_t)+1];
798 dev_t dev;
799 int r;
800
801 r = lookup_block_device(dev_path, &dev);
802 if (r < 0)
803 return;
804
805 xsprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), io_weight);
293d32df 806 (void) set_attribute_and_warn(u, "io", "io.weight", buf);
64faf04c
TH
807}
808
f29ff115 809static void cgroup_apply_blkio_device_weight(Unit *u, const char *dev_path, uint64_t blkio_weight) {
64faf04c
TH
810 char buf[DECIMAL_STR_MAX(dev_t)*2+2+DECIMAL_STR_MAX(uint64_t)+1];
811 dev_t dev;
812 int r;
813
814 r = lookup_block_device(dev_path, &dev);
815 if (r < 0)
816 return;
817
818 xsprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), blkio_weight);
293d32df 819 (void) set_attribute_and_warn(u, "blkio", "blkio.weight_device", buf);
64faf04c
TH
820}
821
6ae4283c
TH
822static void cgroup_apply_io_device_latency(Unit *u, const char *dev_path, usec_t target) {
823 char buf[DECIMAL_STR_MAX(dev_t)*2+2+7+DECIMAL_STR_MAX(uint64_t)+1];
824 dev_t dev;
825 int r;
826
827 r = lookup_block_device(dev_path, &dev);
828 if (r < 0)
829 return;
830
831 if (target != USEC_INFINITY)
832 xsprintf(buf, "%u:%u target=%" PRIu64 "\n", major(dev), minor(dev), target);
833 else
834 xsprintf(buf, "%u:%u target=max\n", major(dev), minor(dev));
835
293d32df 836 (void) set_attribute_and_warn(u, "io", "io.latency", buf);
6ae4283c
TH
837}
838
17ae2780 839static void cgroup_apply_io_device_limit(Unit *u, const char *dev_path, uint64_t *limits) {
64faf04c
TH
840 char limit_bufs[_CGROUP_IO_LIMIT_TYPE_MAX][DECIMAL_STR_MAX(uint64_t)];
841 char buf[DECIMAL_STR_MAX(dev_t)*2+2+(6+DECIMAL_STR_MAX(uint64_t)+1)*4];
842 CGroupIOLimitType type;
843 dev_t dev;
64faf04c
TH
844 int r;
845
846 r = lookup_block_device(dev_path, &dev);
847 if (r < 0)
17ae2780 848 return;
64faf04c 849
17ae2780
LP
850 for (type = 0; type < _CGROUP_IO_LIMIT_TYPE_MAX; type++)
851 if (limits[type] != cgroup_io_limit_defaults[type])
64faf04c 852 xsprintf(limit_bufs[type], "%" PRIu64, limits[type]);
17ae2780 853 else
64faf04c 854 xsprintf(limit_bufs[type], "%s", limits[type] == CGROUP_LIMIT_MAX ? "max" : "0");
64faf04c
TH
855
856 xsprintf(buf, "%u:%u rbps=%s wbps=%s riops=%s wiops=%s\n", major(dev), minor(dev),
857 limit_bufs[CGROUP_IO_RBPS_MAX], limit_bufs[CGROUP_IO_WBPS_MAX],
858 limit_bufs[CGROUP_IO_RIOPS_MAX], limit_bufs[CGROUP_IO_WIOPS_MAX]);
293d32df 859 (void) set_attribute_and_warn(u, "io", "io.max", buf);
64faf04c
TH
860}
861
17ae2780 862static void cgroup_apply_blkio_device_limit(Unit *u, const char *dev_path, uint64_t rbps, uint64_t wbps) {
64faf04c
TH
863 char buf[DECIMAL_STR_MAX(dev_t)*2+2+DECIMAL_STR_MAX(uint64_t)+1];
864 dev_t dev;
64faf04c
TH
865 int r;
866
867 r = lookup_block_device(dev_path, &dev);
868 if (r < 0)
17ae2780 869 return;
64faf04c 870
64faf04c 871 sprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), rbps);
293d32df 872 (void) set_attribute_and_warn(u, "blkio", "blkio.throttle.read_bps_device", buf);
64faf04c 873
64faf04c 874 sprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), wbps);
293d32df 875 (void) set_attribute_and_warn(u, "blkio", "blkio.throttle.write_bps_device", buf);
64faf04c
TH
876}
877
da4d897e 878static bool cgroup_context_has_unified_memory_config(CGroupContext *c) {
48422635 879 return c->memory_min > 0 || c->memory_low > 0 || c->memory_high != CGROUP_LIMIT_MAX || c->memory_max != CGROUP_LIMIT_MAX || c->memory_swap_max != CGROUP_LIMIT_MAX;
da4d897e
TH
880}
881
f29ff115 882static void cgroup_apply_unified_memory_limit(Unit *u, const char *file, uint64_t v) {
589a5f7a 883 char buf[DECIMAL_STR_MAX(uint64_t) + 1] = "max\n";
da4d897e
TH
884
885 if (v != CGROUP_LIMIT_MAX)
886 xsprintf(buf, "%" PRIu64 "\n", v);
887
293d32df 888 (void) set_attribute_and_warn(u, "memory", file, buf);
da4d897e
TH
889}
890
0f2d84d2 891static void cgroup_apply_firewall(Unit *u) {
0f2d84d2
LP
892 assert(u);
893
acf7f253 894 /* Best-effort: let's apply IP firewalling and/or accounting if that's enabled */
906c06f6 895
acf7f253 896 if (bpf_firewall_compile(u) < 0)
906c06f6
DM
897 return;
898
899 (void) bpf_firewall_install(u);
906c06f6
DM
900}
901
902static void cgroup_context_apply(
903 Unit *u,
904 CGroupMask apply_mask,
906c06f6
DM
905 ManagerState state) {
906
f29ff115
TH
907 const char *path;
908 CGroupContext *c;
52fecf20 909 bool is_host_root, is_local_root;
4ad49000
LP
910 int r;
911
f29ff115
TH
912 assert(u);
913
906c06f6 914 /* Nothing to do? Exit early! */
17f14955 915 if (apply_mask == 0)
4ad49000 916 return;
8e274523 917
52fecf20
LP
918 /* Some cgroup attributes are not supported on the host root cgroup, hence silently ignore them here. And other
919 * attributes should only be managed for cgroups further down the tree. */
920 is_local_root = unit_has_name(u, SPECIAL_ROOT_SLICE);
921 is_host_root = unit_has_host_root_cgroup(u);
f3725e64
LP
922
923 assert_se(c = unit_get_cgroup_context(u));
924 assert_se(path = u->cgroup_path);
925
52fecf20 926 if (is_local_root) /* Make sure we don't try to display messages with an empty path. */
6da13913 927 path = "/";
01efdf13 928
be2c0327
LP
929 /* We generally ignore errors caused by read-only mounted cgroup trees (assuming we are running in a container
930 * then), and missing cgroups, i.e. EROFS and ENOENT. */
714e2e1d 931
be2c0327
LP
932 /* In fully unified mode these attributes don't exist on the host cgroup root. On legacy the weights exist, but
933 * setting the weight makes very little sense on the host root cgroup, as there are no other cgroups at this
934 * level. The quota exists there too, but any attempt to write to it is refused with EINVAL. Inside of
4e1dfa45 935 * containers we want to leave control of these to the container manager (and if cgroup v2 delegation is used
be2c0327
LP
936 * we couldn't even write to them if we wanted to). */
937 if ((apply_mask & CGROUP_MASK_CPU) && !is_local_root) {
8e274523 938
b4cccbc1 939 if (cg_all_unified() > 0) {
be2c0327 940 uint64_t weight;
b2f8b02e 941
be2c0327
LP
942 if (cgroup_context_has_cpu_weight(c))
943 weight = cgroup_context_cpu_weight(c, state);
944 else if (cgroup_context_has_cpu_shares(c)) {
945 uint64_t shares;
66ebf6c0 946
be2c0327
LP
947 shares = cgroup_context_cpu_shares(c, state);
948 weight = cgroup_cpu_shares_to_weight(shares);
66ebf6c0 949
be2c0327
LP
950 log_cgroup_compat(u, "Applying [Startup]CPUShares=%" PRIu64 " as [Startup]CPUWeight=%" PRIu64 " on %s",
951 shares, weight, path);
952 } else
953 weight = CGROUP_WEIGHT_DEFAULT;
66ebf6c0 954
be2c0327 955 cgroup_apply_unified_cpu_weight(u, weight);
10f28641 956 cgroup_apply_unified_cpu_quota(u, c->cpu_quota_per_sec_usec, c->cpu_quota_period_usec);
66ebf6c0 957
52fecf20 958 } else {
be2c0327 959 uint64_t shares;
52fecf20 960
be2c0327
LP
961 if (cgroup_context_has_cpu_weight(c)) {
962 uint64_t weight;
52fecf20 963
be2c0327
LP
964 weight = cgroup_context_cpu_weight(c, state);
965 shares = cgroup_cpu_weight_to_shares(weight);
52fecf20 966
be2c0327
LP
967 log_cgroup_compat(u, "Applying [Startup]CPUWeight=%" PRIu64 " as [Startup]CPUShares=%" PRIu64 " on %s",
968 weight, shares, path);
969 } else if (cgroup_context_has_cpu_shares(c))
970 shares = cgroup_context_cpu_shares(c, state);
971 else
972 shares = CGROUP_CPU_SHARES_DEFAULT;
66ebf6c0 973
be2c0327 974 cgroup_apply_legacy_cpu_shares(u, shares);
10f28641 975 cgroup_apply_legacy_cpu_quota(u, c->cpu_quota_per_sec_usec, c->cpu_quota_period_usec);
66ebf6c0 976 }
4ad49000
LP
977 }
978
4e1dfa45 979 /* The 'io' controller attributes are not exported on the host's root cgroup (being a pure cgroup v2
52fecf20
LP
980 * controller), and in case of containers we want to leave control of these attributes to the container manager
981 * (and we couldn't access that stuff anyway, even if we tried if proper delegation is used). */
982 if ((apply_mask & CGROUP_MASK_IO) && !is_local_root) {
983 char buf[8+DECIMAL_STR_MAX(uint64_t)+1];
984 bool has_io, has_blockio;
985 uint64_t weight;
13c31542 986
52fecf20
LP
987 has_io = cgroup_context_has_io_config(c);
988 has_blockio = cgroup_context_has_blockio_config(c);
13c31542 989
52fecf20
LP
990 if (has_io)
991 weight = cgroup_context_io_weight(c, state);
992 else if (has_blockio) {
993 uint64_t blkio_weight;
128fadc9 994
52fecf20
LP
995 blkio_weight = cgroup_context_blkio_weight(c, state);
996 weight = cgroup_weight_blkio_to_io(blkio_weight);
128fadc9 997
67e2ea15 998 log_cgroup_compat(u, "Applying [Startup]BlockIOWeight=%" PRIu64 " as [Startup]IOWeight=%" PRIu64,
52fecf20
LP
999 blkio_weight, weight);
1000 } else
1001 weight = CGROUP_WEIGHT_DEFAULT;
13c31542 1002
52fecf20
LP
1003 xsprintf(buf, "default %" PRIu64 "\n", weight);
1004 (void) set_attribute_and_warn(u, "io", "io.weight", buf);
538b4852 1005
52fecf20
LP
1006 if (has_io) {
1007 CGroupIODeviceLatency *latency;
1008 CGroupIODeviceLimit *limit;
1009 CGroupIODeviceWeight *w;
128fadc9 1010
52fecf20
LP
1011 LIST_FOREACH(device_weights, w, c->io_device_weights)
1012 cgroup_apply_io_device_weight(u, w->path, w->weight);
128fadc9 1013
52fecf20
LP
1014 LIST_FOREACH(device_limits, limit, c->io_device_limits)
1015 cgroup_apply_io_device_limit(u, limit->path, limit->limits);
6ae4283c 1016
52fecf20
LP
1017 LIST_FOREACH(device_latencies, latency, c->io_device_latencies)
1018 cgroup_apply_io_device_latency(u, latency->path, latency->target_usec);
6ae4283c 1019
52fecf20
LP
1020 } else if (has_blockio) {
1021 CGroupBlockIODeviceWeight *w;
1022 CGroupBlockIODeviceBandwidth *b;
13c31542 1023
52fecf20
LP
1024 LIST_FOREACH(device_weights, w, c->blockio_device_weights) {
1025 weight = cgroup_weight_blkio_to_io(w->weight);
17ae2780 1026
67e2ea15 1027 log_cgroup_compat(u, "Applying BlockIODeviceWeight=%" PRIu64 " as IODeviceWeight=%" PRIu64 " for %s",
52fecf20 1028 w->weight, weight, w->path);
538b4852 1029
52fecf20
LP
1030 cgroup_apply_io_device_weight(u, w->path, weight);
1031 }
538b4852 1032
17ae2780 1033 LIST_FOREACH(device_bandwidths, b, c->blockio_device_bandwidths) {
538b4852
TH
1034 uint64_t limits[_CGROUP_IO_LIMIT_TYPE_MAX];
1035 CGroupIOLimitType type;
1036
1037 for (type = 0; type < _CGROUP_IO_LIMIT_TYPE_MAX; type++)
1038 limits[type] = cgroup_io_limit_defaults[type];
1039
1040 limits[CGROUP_IO_RBPS_MAX] = b->rbps;
1041 limits[CGROUP_IO_WBPS_MAX] = b->wbps;
1042
67e2ea15 1043 log_cgroup_compat(u, "Applying BlockIO{Read|Write}Bandwidth=%" PRIu64 " %" PRIu64 " as IO{Read|Write}BandwidthMax= for %s",
128fadc9
TH
1044 b->rbps, b->wbps, b->path);
1045
17ae2780 1046 cgroup_apply_io_device_limit(u, b->path, limits);
538b4852 1047 }
13c31542
TH
1048 }
1049 }
1050
906c06f6 1051 if (apply_mask & CGROUP_MASK_BLKIO) {
52fecf20 1052 bool has_io, has_blockio;
4ad49000 1053
52fecf20
LP
1054 has_io = cgroup_context_has_io_config(c);
1055 has_blockio = cgroup_context_has_blockio_config(c);
1056
1057 /* Applying a 'weight' never makes sense for the host root cgroup, and for containers this should be
1058 * left to our container manager, too. */
1059 if (!is_local_root) {
64faf04c
TH
1060 char buf[DECIMAL_STR_MAX(uint64_t)+1];
1061 uint64_t weight;
64faf04c 1062
7d862ab8 1063 if (has_io) {
52fecf20 1064 uint64_t io_weight;
128fadc9 1065
52fecf20 1066 io_weight = cgroup_context_io_weight(c, state);
538b4852 1067 weight = cgroup_weight_io_to_blkio(cgroup_context_io_weight(c, state));
128fadc9 1068
67e2ea15 1069 log_cgroup_compat(u, "Applying [Startup]IOWeight=%" PRIu64 " as [Startup]BlockIOWeight=%" PRIu64,
128fadc9 1070 io_weight, weight);
7d862ab8
TH
1071 } else if (has_blockio)
1072 weight = cgroup_context_blkio_weight(c, state);
1073 else
538b4852 1074 weight = CGROUP_BLKIO_WEIGHT_DEFAULT;
64faf04c
TH
1075
1076 xsprintf(buf, "%" PRIu64 "\n", weight);
293d32df 1077 (void) set_attribute_and_warn(u, "blkio", "blkio.weight", buf);
4ad49000 1078
7d862ab8 1079 if (has_io) {
538b4852
TH
1080 CGroupIODeviceWeight *w;
1081
128fadc9
TH
1082 LIST_FOREACH(device_weights, w, c->io_device_weights) {
1083 weight = cgroup_weight_io_to_blkio(w->weight);
1084
67e2ea15 1085 log_cgroup_compat(u, "Applying IODeviceWeight=%" PRIu64 " as BlockIODeviceWeight=%" PRIu64 " for %s",
128fadc9
TH
1086 w->weight, weight, w->path);
1087
1088 cgroup_apply_blkio_device_weight(u, w->path, weight);
1089 }
7d862ab8
TH
1090 } else if (has_blockio) {
1091 CGroupBlockIODeviceWeight *w;
1092
7d862ab8
TH
1093 LIST_FOREACH(device_weights, w, c->blockio_device_weights)
1094 cgroup_apply_blkio_device_weight(u, w->path, w->weight);
538b4852 1095 }
4ad49000
LP
1096 }
1097
52fecf20
LP
1098 /* The bandwith limits are something that make sense to be applied to the host's root but not container
1099 * roots, as there we want the container manager to handle it */
1100 if (is_host_root || !is_local_root) {
1101 if (has_io) {
1102 CGroupIODeviceLimit *l;
538b4852 1103
52fecf20 1104 LIST_FOREACH(device_limits, l, c->io_device_limits) {
67e2ea15 1105 log_cgroup_compat(u, "Applying IO{Read|Write}Bandwidth=%" PRIu64 " %" PRIu64 " as BlockIO{Read|Write}BandwidthMax= for %s",
52fecf20 1106 l->limits[CGROUP_IO_RBPS_MAX], l->limits[CGROUP_IO_WBPS_MAX], l->path);
128fadc9 1107
52fecf20
LP
1108 cgroup_apply_blkio_device_limit(u, l->path, l->limits[CGROUP_IO_RBPS_MAX], l->limits[CGROUP_IO_WBPS_MAX]);
1109 }
1110 } else if (has_blockio) {
1111 CGroupBlockIODeviceBandwidth *b;
7d862ab8 1112
52fecf20
LP
1113 LIST_FOREACH(device_bandwidths, b, c->blockio_device_bandwidths)
1114 cgroup_apply_blkio_device_limit(u, b->path, b->rbps, b->wbps);
1115 }
d686d8a9 1116 }
8e274523
LP
1117 }
1118
be2c0327
LP
1119 /* In unified mode 'memory' attributes do not exist on the root cgroup. In legacy mode 'memory.limit_in_bytes'
1120 * exists on the root cgroup, but any writes to it are refused with EINVAL. And if we run in a container we
4e1dfa45 1121 * want to leave control to the container manager (and if proper cgroup v2 delegation is used we couldn't even
be2c0327
LP
1122 * write to this if we wanted to.) */
1123 if ((apply_mask & CGROUP_MASK_MEMORY) && !is_local_root) {
efdb0237 1124
52fecf20 1125 if (cg_all_unified() > 0) {
be2c0327
LP
1126 uint64_t max, swap_max = CGROUP_LIMIT_MAX;
1127
1128 if (cgroup_context_has_unified_memory_config(c)) {
1129 max = c->memory_max;
1130 swap_max = c->memory_swap_max;
1131 } else {
1132 max = c->memory_limit;
efdb0237 1133
be2c0327
LP
1134 if (max != CGROUP_LIMIT_MAX)
1135 log_cgroup_compat(u, "Applying MemoryLimit=%" PRIu64 " as MemoryMax=", max);
128fadc9 1136 }
da4d897e 1137
be2c0327
LP
1138 cgroup_apply_unified_memory_limit(u, "memory.min", c->memory_min);
1139 cgroup_apply_unified_memory_limit(u, "memory.low", c->memory_low);
1140 cgroup_apply_unified_memory_limit(u, "memory.high", c->memory_high);
1141 cgroup_apply_unified_memory_limit(u, "memory.max", max);
1142 cgroup_apply_unified_memory_limit(u, "memory.swap.max", swap_max);
128fadc9 1143
be2c0327
LP
1144 } else {
1145 char buf[DECIMAL_STR_MAX(uint64_t) + 1];
1146 uint64_t val;
52fecf20 1147
be2c0327
LP
1148 if (cgroup_context_has_unified_memory_config(c)) {
1149 val = c->memory_max;
1150 log_cgroup_compat(u, "Applying MemoryMax=%" PRIi64 " as MemoryLimit=", val);
1151 } else
1152 val = c->memory_limit;
78a4ee59 1153
be2c0327
LP
1154 if (val == CGROUP_LIMIT_MAX)
1155 strncpy(buf, "-1\n", sizeof(buf));
1156 else
1157 xsprintf(buf, "%" PRIu64 "\n", val);
1158
1159 (void) set_attribute_and_warn(u, "memory", "memory.limit_in_bytes", buf);
da4d897e 1160 }
4ad49000 1161 }
8e274523 1162
4e1dfa45 1163 /* On cgroup v2 we can apply BPF everywhere. On cgroup v1 we apply it everywhere except for the root of
52fecf20
LP
1164 * containers, where we leave this to the manager */
1165 if ((apply_mask & (CGROUP_MASK_DEVICES | CGROUP_MASK_BPF_DEVICES)) &&
1166 (is_host_root || cg_all_unified() > 0 || !is_local_root)) {
084c7007 1167 _cleanup_(bpf_program_unrefp) BPFProgram *prog = NULL;
4ad49000 1168 CGroupDeviceAllow *a;
8e274523 1169
084c7007
RG
1170 if (cg_all_unified() > 0) {
1171 r = cgroup_init_device_bpf(&prog, c->device_policy, c->device_allow);
1172 if (r < 0)
1173 log_unit_warning_errno(u, r, "Failed to initialize device control bpf program: %m");
1174 } else {
8c838407 1175 /* Changing the devices list of a populated cgroup might result in EINVAL, hence ignore EINVAL
084c7007 1176 * here. */
714e2e1d 1177
084c7007
RG
1178 if (c->device_allow || c->device_policy != CGROUP_AUTO)
1179 r = cg_set_attribute("devices", path, "devices.deny", "a");
1180 else
1181 r = cg_set_attribute("devices", path, "devices.allow", "a");
1182 if (r < 0)
2c74e12b
LP
1183 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES, -EPERM) ? LOG_DEBUG : LOG_WARNING, r,
1184 "Failed to reset devices.allow/devices.deny: %m");
084c7007 1185 }
fb385181 1186
4ad49000
LP
1187 if (c->device_policy == CGROUP_CLOSED ||
1188 (c->device_policy == CGROUP_AUTO && c->device_allow)) {
1189 static const char auto_devices[] =
7d711efb
LP
1190 "/dev/null\0" "rwm\0"
1191 "/dev/zero\0" "rwm\0"
1192 "/dev/full\0" "rwm\0"
1193 "/dev/random\0" "rwm\0"
1194 "/dev/urandom\0" "rwm\0"
1195 "/dev/tty\0" "rwm\0"
5a7f87a9 1196 "/dev/ptmx\0" "rwm\0"
0d9e7991 1197 /* Allow /run/systemd/inaccessible/{chr,blk} devices for mapping InaccessiblePaths */
74c48bf5
LP
1198 "/run/systemd/inaccessible/chr\0" "rwm\0"
1199 "/run/systemd/inaccessible/blk\0" "rwm\0";
4ad49000
LP
1200
1201 const char *x, *y;
1202
1203 NULSTR_FOREACH_PAIR(x, y, auto_devices)
913c898c 1204 (void) whitelist_device(prog, path, x, y);
7d711efb 1205
5a7f87a9 1206 /* PTS (/dev/pts) devices may not be duplicated, but accessed */
913c898c 1207 (void) whitelist_major(prog, path, "pts", 'c', "rw");
4ad49000
LP
1208 }
1209
1210 LIST_FOREACH(device_allow, a, c->device_allow) {
fb4650aa 1211 char acc[4], *val;
4ad49000
LP
1212 unsigned k = 0;
1213
1214 if (a->r)
1215 acc[k++] = 'r';
1216 if (a->w)
1217 acc[k++] = 'w';
1218 if (a->m)
1219 acc[k++] = 'm';
fb385181 1220
4ad49000
LP
1221 if (k == 0)
1222 continue;
fb385181 1223
4ad49000 1224 acc[k++] = 0;
90060676 1225
27458ed6 1226 if (path_startswith(a->path, "/dev/"))
913c898c 1227 (void) whitelist_device(prog, path, a->path, acc);
fb4650aa 1228 else if ((val = startswith(a->path, "block-")))
913c898c 1229 (void) whitelist_major(prog, path, val, 'b', acc);
fb4650aa 1230 else if ((val = startswith(a->path, "char-")))
913c898c 1231 (void) whitelist_major(prog, path, val, 'c', acc);
90060676 1232 else
8e8b5d2e 1233 log_unit_debug(u, "Ignoring device '%s' while writing cgroup attribute.", a->path);
4ad49000 1234 }
084c7007
RG
1235
1236 r = cgroup_apply_device_bpf(u, prog, c->device_policy, c->device_allow);
1237 if (r < 0) {
1238 static bool warned = false;
1239
1240 log_full_errno(warned ? LOG_DEBUG : LOG_WARNING, r,
1241 "Unit %s configures device ACL, but the local system doesn't seem to support the BPF-based device controller.\n"
1242 "Proceeding WITHOUT applying ACL (all devices will be accessible)!\n"
1243 "(This warning is only shown for the first loaded unit using device ACL.)", u->id);
1244
1245 warned = true;
1246 }
4ad49000 1247 }
03a7b521 1248
00b5974f
LP
1249 if (apply_mask & CGROUP_MASK_PIDS) {
1250
52fecf20 1251 if (is_host_root) {
00b5974f
LP
1252 /* So, the "pids" controller does not expose anything on the root cgroup, in order not to
1253 * replicate knobs exposed elsewhere needlessly. We abstract this away here however, and when
1254 * the knobs of the root cgroup are modified propagate this to the relevant sysctls. There's a
1255 * non-obvious asymmetry however: unlike the cgroup properties we don't really want to take
1256 * exclusive ownership of the sysctls, but we still want to honour things if the user sets
1257 * limits. Hence we employ sort of a one-way strategy: when the user sets a bounded limit
1258 * through us it counts. When the user afterwards unsets it again (i.e. sets it to unbounded)
1259 * it also counts. But if the user never set a limit through us (i.e. we are the default of
1260 * "unbounded") we leave things unmodified. For this we manage a global boolean that we turn on
1261 * the first time we set a limit. Note that this boolean is flushed out on manager reload,
1262 * which is desirable so that there's an offical way to release control of the sysctl from
1263 * systemd: set the limit to unbounded and reload. */
1264
1265 if (c->tasks_max != CGROUP_LIMIT_MAX) {
1266 u->manager->sysctl_pid_max_changed = true;
1267 r = procfs_tasks_set_limit(c->tasks_max);
1268 } else if (u->manager->sysctl_pid_max_changed)
1269 r = procfs_tasks_set_limit(TASKS_MAX);
1270 else
1271 r = 0;
00b5974f 1272 if (r < 0)
39b9fefb 1273 log_unit_full(u, LOG_LEVEL_CGROUP_WRITE(r), r,
00b5974f 1274 "Failed to write to tasks limit sysctls: %m");
52fecf20 1275 }
03a7b521 1276
52fecf20
LP
1277 /* The attribute itself is not available on the host root cgroup, and in the container case we want to
1278 * leave it for the container manager. */
1279 if (!is_local_root) {
00b5974f
LP
1280 if (c->tasks_max != CGROUP_LIMIT_MAX) {
1281 char buf[DECIMAL_STR_MAX(uint64_t) + 2];
03a7b521 1282
00b5974f 1283 sprintf(buf, "%" PRIu64 "\n", c->tasks_max);
293d32df 1284 (void) set_attribute_and_warn(u, "pids", "pids.max", buf);
00b5974f 1285 } else
589a5f7a 1286 (void) set_attribute_and_warn(u, "pids", "pids.max", "max\n");
00b5974f 1287 }
03a7b521 1288 }
906c06f6 1289
17f14955 1290 if (apply_mask & CGROUP_MASK_BPF_FIREWALL)
0f2d84d2 1291 cgroup_apply_firewall(u);
fb385181
LP
1292}
1293
16492445
LP
1294static bool unit_get_needs_bpf_firewall(Unit *u) {
1295 CGroupContext *c;
1296 Unit *p;
1297 assert(u);
1298
1299 c = unit_get_cgroup_context(u);
1300 if (!c)
1301 return false;
1302
1303 if (c->ip_accounting ||
1304 c->ip_address_allow ||
1305 c->ip_address_deny)
1306 return true;
1307
1308 /* If any parent slice has an IP access list defined, it applies too */
1309 for (p = UNIT_DEREF(u->slice); p; p = UNIT_DEREF(p->slice)) {
1310 c = unit_get_cgroup_context(p);
1311 if (!c)
1312 return false;
1313
1314 if (c->ip_address_allow ||
1315 c->ip_address_deny)
1316 return true;
1317 }
1318
1319 return false;
1320}
1321
53aea74a 1322static CGroupMask cgroup_context_get_mask(CGroupContext *c) {
efdb0237 1323 CGroupMask mask = 0;
8e274523 1324
fae9bc29 1325 /* Figure out which controllers we need, based on the cgroup context object */
8e274523 1326
fae9bc29 1327 if (c->cpu_accounting)
f98c2585 1328 mask |= get_cpu_accounting_mask();
fae9bc29
LP
1329
1330 if (cgroup_context_has_cpu_weight(c) ||
66ebf6c0 1331 cgroup_context_has_cpu_shares(c) ||
3a43da28 1332 c->cpu_quota_per_sec_usec != USEC_INFINITY)
fae9bc29 1333 mask |= CGROUP_MASK_CPU;
ecedd90f 1334
538b4852
TH
1335 if (cgroup_context_has_io_config(c) || cgroup_context_has_blockio_config(c))
1336 mask |= CGROUP_MASK_IO | CGROUP_MASK_BLKIO;
ecedd90f 1337
4ad49000 1338 if (c->memory_accounting ||
da4d897e
TH
1339 c->memory_limit != CGROUP_LIMIT_MAX ||
1340 cgroup_context_has_unified_memory_config(c))
efdb0237 1341 mask |= CGROUP_MASK_MEMORY;
8e274523 1342
a931ad47
LP
1343 if (c->device_allow ||
1344 c->device_policy != CGROUP_AUTO)
084c7007 1345 mask |= CGROUP_MASK_DEVICES | CGROUP_MASK_BPF_DEVICES;
4ad49000 1346
03a7b521 1347 if (c->tasks_accounting ||
8793fa25 1348 c->tasks_max != CGROUP_LIMIT_MAX)
03a7b521
LP
1349 mask |= CGROUP_MASK_PIDS;
1350
fae9bc29 1351 return CGROUP_MASK_EXTEND_JOINED(mask);
8e274523
LP
1352}
1353
53aea74a 1354static CGroupMask unit_get_bpf_mask(Unit *u) {
17f14955
RG
1355 CGroupMask mask = 0;
1356
fae9bc29
LP
1357 /* Figure out which controllers we need, based on the cgroup context, possibly taking into account children
1358 * too. */
1359
17f14955
RG
1360 if (unit_get_needs_bpf_firewall(u))
1361 mask |= CGROUP_MASK_BPF_FIREWALL;
1362
1363 return mask;
1364}
1365
efdb0237 1366CGroupMask unit_get_own_mask(Unit *u) {
4ad49000 1367 CGroupContext *c;
8e274523 1368
442ce775
LP
1369 /* Returns the mask of controllers the unit needs for itself. If a unit is not properly loaded, return an empty
1370 * mask, as we shouldn't reflect it in the cgroup hierarchy then. */
1371
1372 if (u->load_state != UNIT_LOADED)
1373 return 0;
efdb0237 1374
4ad49000
LP
1375 c = unit_get_cgroup_context(u);
1376 if (!c)
1377 return 0;
8e274523 1378
c72703e2 1379 return (cgroup_context_get_mask(c) | unit_get_bpf_mask(u) | unit_get_delegate_mask(u)) & ~unit_get_ancestor_disable_mask(u);
02638280
LP
1380}
1381
1382CGroupMask unit_get_delegate_mask(Unit *u) {
1383 CGroupContext *c;
1384
1385 /* If delegation is turned on, then turn on selected controllers, unless we are on the legacy hierarchy and the
1386 * process we fork into is known to drop privileges, and hence shouldn't get access to the controllers.
19af675e 1387 *
02638280 1388 * Note that on the unified hierarchy it is safe to delegate controllers to unprivileged services. */
a931ad47 1389
1d9cc876 1390 if (!unit_cgroup_delegate(u))
02638280
LP
1391 return 0;
1392
1393 if (cg_all_unified() <= 0) {
a931ad47
LP
1394 ExecContext *e;
1395
1396 e = unit_get_exec_context(u);
02638280
LP
1397 if (e && !exec_context_maintains_privileges(e))
1398 return 0;
a931ad47
LP
1399 }
1400
1d9cc876 1401 assert_se(c = unit_get_cgroup_context(u));
fae9bc29 1402 return CGROUP_MASK_EXTEND_JOINED(c->delegate_controllers);
8e274523
LP
1403}
1404
efdb0237 1405CGroupMask unit_get_members_mask(Unit *u) {
4ad49000 1406 assert(u);
bc432dc7 1407
02638280 1408 /* Returns the mask of controllers all of the unit's children require, merged */
efdb0237 1409
bc432dc7 1410 if (u->cgroup_members_mask_valid)
26a17ca2 1411 return u->cgroup_members_mask; /* Use cached value if possible */
bc432dc7 1412
64e844e5 1413 u->cgroup_members_mask = 0;
bc432dc7
LP
1414
1415 if (u->type == UNIT_SLICE) {
eef85c4a 1416 void *v;
bc432dc7
LP
1417 Unit *member;
1418 Iterator i;
1419
eef85c4a 1420 HASHMAP_FOREACH_KEY(v, member, u->dependencies[UNIT_BEFORE], i) {
cb5e3bc3
CD
1421 if (UNIT_DEREF(member->slice) == u)
1422 u->cgroup_members_mask |= unit_get_subtree_mask(member); /* note that this calls ourselves again, for the children */
bc432dc7
LP
1423 }
1424 }
1425
1426 u->cgroup_members_mask_valid = true;
6414b7c9 1427 return u->cgroup_members_mask;
246aa6dd
LP
1428}
1429
efdb0237 1430CGroupMask unit_get_siblings_mask(Unit *u) {
4ad49000 1431 assert(u);
246aa6dd 1432
efdb0237
LP
1433 /* Returns the mask of controllers all of the unit's siblings
1434 * require, i.e. the members mask of the unit's parent slice
1435 * if there is one. */
1436
bc432dc7 1437 if (UNIT_ISSET(u->slice))
637f421e 1438 return unit_get_members_mask(UNIT_DEREF(u->slice));
4ad49000 1439
64e844e5 1440 return unit_get_subtree_mask(u); /* we are the top-level slice */
246aa6dd
LP
1441}
1442
4f6f62e4
CD
1443CGroupMask unit_get_disable_mask(Unit *u) {
1444 CGroupContext *c;
1445
1446 c = unit_get_cgroup_context(u);
1447 if (!c)
1448 return 0;
1449
1450 return c->disable_controllers;
1451}
1452
1453CGroupMask unit_get_ancestor_disable_mask(Unit *u) {
1454 CGroupMask mask;
1455
1456 assert(u);
1457 mask = unit_get_disable_mask(u);
1458
1459 /* Returns the mask of controllers which are marked as forcibly
1460 * disabled in any ancestor unit or the unit in question. */
1461
1462 if (UNIT_ISSET(u->slice))
1463 mask |= unit_get_ancestor_disable_mask(UNIT_DEREF(u->slice));
1464
1465 return mask;
1466}
1467
efdb0237
LP
1468CGroupMask unit_get_subtree_mask(Unit *u) {
1469
1470 /* Returns the mask of this subtree, meaning of the group
1471 * itself and its children. */
1472
1473 return unit_get_own_mask(u) | unit_get_members_mask(u);
1474}
1475
1476CGroupMask unit_get_target_mask(Unit *u) {
1477 CGroupMask mask;
1478
1479 /* This returns the cgroup mask of all controllers to enable
1480 * for a specific cgroup, i.e. everything it needs itself,
1481 * plus all that its children need, plus all that its siblings
1482 * need. This is primarily useful on the legacy cgroup
1483 * hierarchy, where we need to duplicate each cgroup in each
1484 * hierarchy that shall be enabled for it. */
6414b7c9 1485
efdb0237
LP
1486 mask = unit_get_own_mask(u) | unit_get_members_mask(u) | unit_get_siblings_mask(u);
1487 mask &= u->manager->cgroup_supported;
c72703e2 1488 mask &= ~unit_get_ancestor_disable_mask(u);
efdb0237
LP
1489
1490 return mask;
1491}
1492
1493CGroupMask unit_get_enable_mask(Unit *u) {
1494 CGroupMask mask;
1495
1496 /* This returns the cgroup mask of all controllers to enable
1497 * for the children of a specific cgroup. This is primarily
1498 * useful for the unified cgroup hierarchy, where each cgroup
1499 * controls which controllers are enabled for its children. */
1500
1501 mask = unit_get_members_mask(u);
6414b7c9 1502 mask &= u->manager->cgroup_supported;
c72703e2 1503 mask &= ~unit_get_ancestor_disable_mask(u);
6414b7c9
DS
1504
1505 return mask;
1506}
1507
5af88058 1508void unit_invalidate_cgroup_members_masks(Unit *u) {
bc432dc7
LP
1509 assert(u);
1510
5af88058
LP
1511 /* Recurse invalidate the member masks cache all the way up the tree */
1512 u->cgroup_members_mask_valid = false;
bc432dc7 1513
5af88058
LP
1514 if (UNIT_ISSET(u->slice))
1515 unit_invalidate_cgroup_members_masks(UNIT_DEREF(u->slice));
6414b7c9
DS
1516}
1517
6592b975 1518const char *unit_get_realized_cgroup_path(Unit *u, CGroupMask mask) {
03b90d4b 1519
6592b975 1520 /* Returns the realized cgroup path of the specified unit where all specified controllers are available. */
03b90d4b
LP
1521
1522 while (u) {
6592b975 1523
03b90d4b
LP
1524 if (u->cgroup_path &&
1525 u->cgroup_realized &&
d94a24ca 1526 FLAGS_SET(u->cgroup_realized_mask, mask))
03b90d4b
LP
1527 return u->cgroup_path;
1528
1529 u = UNIT_DEREF(u->slice);
1530 }
1531
1532 return NULL;
1533}
1534
6592b975
LP
1535static const char *migrate_callback(CGroupMask mask, void *userdata) {
1536 return unit_get_realized_cgroup_path(userdata, mask);
1537}
1538
303ee601 1539char *unit_default_cgroup_path(const Unit *u) {
efdb0237
LP
1540 _cleanup_free_ char *escaped = NULL, *slice = NULL;
1541 int r;
1542
1543 assert(u);
1544
1545 if (unit_has_name(u, SPECIAL_ROOT_SLICE))
1546 return strdup(u->manager->cgroup_root);
1547
1548 if (UNIT_ISSET(u->slice) && !unit_has_name(UNIT_DEREF(u->slice), SPECIAL_ROOT_SLICE)) {
1549 r = cg_slice_to_path(UNIT_DEREF(u->slice)->id, &slice);
1550 if (r < 0)
1551 return NULL;
1552 }
1553
1554 escaped = cg_escape(u->id);
1555 if (!escaped)
1556 return NULL;
1557
1558 if (slice)
605405c6
ZJS
1559 return strjoin(u->manager->cgroup_root, "/", slice, "/",
1560 escaped);
efdb0237 1561 else
605405c6 1562 return strjoin(u->manager->cgroup_root, "/", escaped);
efdb0237
LP
1563}
1564
1565int unit_set_cgroup_path(Unit *u, const char *path) {
1566 _cleanup_free_ char *p = NULL;
1567 int r;
1568
1569 assert(u);
1570
1571 if (path) {
1572 p = strdup(path);
1573 if (!p)
1574 return -ENOMEM;
1575 } else
1576 p = NULL;
1577
1578 if (streq_ptr(u->cgroup_path, p))
1579 return 0;
1580
1581 if (p) {
1582 r = hashmap_put(u->manager->cgroup_unit, p, u);
1583 if (r < 0)
1584 return r;
1585 }
1586
1587 unit_release_cgroup(u);
1588
ae2a15bc 1589 u->cgroup_path = TAKE_PTR(p);
efdb0237
LP
1590
1591 return 1;
1592}
1593
1594int unit_watch_cgroup(Unit *u) {
ab2c3861 1595 _cleanup_free_ char *events = NULL;
efdb0237
LP
1596 int r;
1597
1598 assert(u);
1599
1600 if (!u->cgroup_path)
1601 return 0;
1602
1603 if (u->cgroup_inotify_wd >= 0)
1604 return 0;
1605
1606 /* Only applies to the unified hierarchy */
c22800e4 1607 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
b4cccbc1
LP
1608 if (r < 0)
1609 return log_error_errno(r, "Failed to determine whether the name=systemd hierarchy is unified: %m");
1610 if (r == 0)
efdb0237
LP
1611 return 0;
1612
1613 /* Don't watch the root slice, it's pointless. */
1614 if (unit_has_name(u, SPECIAL_ROOT_SLICE))
1615 return 0;
1616
1617 r = hashmap_ensure_allocated(&u->manager->cgroup_inotify_wd_unit, &trivial_hash_ops);
1618 if (r < 0)
1619 return log_oom();
1620
ab2c3861 1621 r = cg_get_path(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, "cgroup.events", &events);
efdb0237
LP
1622 if (r < 0)
1623 return log_oom();
1624
ab2c3861 1625 u->cgroup_inotify_wd = inotify_add_watch(u->manager->cgroup_inotify_fd, events, IN_MODIFY);
efdb0237
LP
1626 if (u->cgroup_inotify_wd < 0) {
1627
1628 if (errno == ENOENT) /* If the directory is already
1629 * gone we don't need to track
1630 * it, so this is not an error */
1631 return 0;
1632
1633 return log_unit_error_errno(u, errno, "Failed to add inotify watch descriptor for control group %s: %m", u->cgroup_path);
1634 }
1635
1636 r = hashmap_put(u->manager->cgroup_inotify_wd_unit, INT_TO_PTR(u->cgroup_inotify_wd), u);
1637 if (r < 0)
1638 return log_unit_error_errno(u, r, "Failed to add inotify watch descriptor to hash map: %m");
1639
1640 return 0;
1641}
1642
a4634b21
LP
1643int unit_pick_cgroup_path(Unit *u) {
1644 _cleanup_free_ char *path = NULL;
1645 int r;
1646
1647 assert(u);
1648
1649 if (u->cgroup_path)
1650 return 0;
1651
1652 if (!UNIT_HAS_CGROUP_CONTEXT(u))
1653 return -EINVAL;
1654
1655 path = unit_default_cgroup_path(u);
1656 if (!path)
1657 return log_oom();
1658
1659 r = unit_set_cgroup_path(u, path);
1660 if (r == -EEXIST)
1661 return log_unit_error_errno(u, r, "Control group %s exists already.", path);
1662 if (r < 0)
1663 return log_unit_error_errno(u, r, "Failed to set unit's control group path to %s: %m", path);
1664
1665 return 0;
1666}
1667
efdb0237
LP
1668static int unit_create_cgroup(
1669 Unit *u,
1670 CGroupMask target_mask,
0d2d6fbf
CD
1671 CGroupMask enable_mask,
1672 ManagerState state) {
efdb0237 1673
65be7e06 1674 bool created;
27adcc97 1675 int r;
64747e2d 1676
4ad49000 1677 assert(u);
64747e2d 1678
27c4ed79 1679 if (!UNIT_HAS_CGROUP_CONTEXT(u))
0cd385d3
LP
1680 return 0;
1681
a4634b21
LP
1682 /* Figure out our cgroup path */
1683 r = unit_pick_cgroup_path(u);
1684 if (r < 0)
1685 return r;
b58b8e11 1686
03b90d4b 1687 /* First, create our own group */
efdb0237 1688 r = cg_create_everywhere(u->manager->cgroup_supported, target_mask, u->cgroup_path);
23bbb0de 1689 if (r < 0)
efdb0237 1690 return log_unit_error_errno(u, r, "Failed to create cgroup %s: %m", u->cgroup_path);
490c5a37 1691 created = r;
efdb0237
LP
1692
1693 /* Start watching it */
1694 (void) unit_watch_cgroup(u);
1695
65be7e06 1696 /* Preserve enabled controllers in delegated units, adjust others. */
1fd3a10c 1697 if (created || !u->cgroup_realized || !unit_cgroup_delegate(u)) {
27adcc97 1698 CGroupMask result_mask = 0;
65be7e06
ZJS
1699
1700 /* Enable all controllers we need */
27adcc97 1701 r = cg_enable_everywhere(u->manager->cgroup_supported, enable_mask, u->cgroup_path, &result_mask);
65be7e06 1702 if (r < 0)
27adcc97
LP
1703 log_unit_warning_errno(u, r, "Failed to enable/disable controllers on cgroup %s, ignoring: %m", u->cgroup_path);
1704
1705 /* If we just turned off a controller, this might release the controller for our parent too, let's
1706 * enqueue the parent for re-realization in that case again. */
1707 if (UNIT_ISSET(u->slice)) {
1708 CGroupMask turned_off;
1709
1710 turned_off = (u->cgroup_realized ? u->cgroup_enabled_mask & ~result_mask : 0);
1711 if (turned_off != 0) {
1712 Unit *parent;
1713
1714 /* Force the parent to propagate the enable mask to the kernel again, by invalidating
1715 * the controller we just turned off. */
1716
1717 for (parent = UNIT_DEREF(u->slice); parent; parent = UNIT_DEREF(parent->slice))
1718 unit_invalidate_cgroup(parent, turned_off);
1719 }
1720 }
1721
1722 /* Remember what's actually enabled now */
1723 u->cgroup_enabled_mask = result_mask;
65be7e06 1724 }
03b90d4b
LP
1725
1726 /* Keep track that this is now realized */
4ad49000 1727 u->cgroup_realized = true;
efdb0237 1728 u->cgroup_realized_mask = target_mask;
4ad49000 1729
1d9cc876 1730 if (u->type != UNIT_SLICE && !unit_cgroup_delegate(u)) {
0cd385d3
LP
1731
1732 /* Then, possibly move things over, but not if
1733 * subgroups may contain processes, which is the case
1734 * for slice and delegation units. */
1735 r = cg_migrate_everywhere(u->manager->cgroup_supported, u->cgroup_path, u->cgroup_path, migrate_callback, u);
1736 if (r < 0)
efdb0237 1737 log_unit_warning_errno(u, r, "Failed to migrate cgroup from to %s, ignoring: %m", u->cgroup_path);
0cd385d3 1738 }
03b90d4b 1739
0d2d6fbf
CD
1740 /* Set attributes */
1741 cgroup_context_apply(u, target_mask, state);
1742 cgroup_xattr_apply(u);
1743
64747e2d
LP
1744 return 0;
1745}
1746
6592b975
LP
1747static int unit_attach_pid_to_cgroup_via_bus(Unit *u, pid_t pid, const char *suffix_path) {
1748 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1749 char *pp;
7b3fd631 1750 int r;
6592b975 1751
7b3fd631
LP
1752 assert(u);
1753
6592b975
LP
1754 if (MANAGER_IS_SYSTEM(u->manager))
1755 return -EINVAL;
1756
1757 if (!u->manager->system_bus)
1758 return -EIO;
1759
1760 if (!u->cgroup_path)
1761 return -EINVAL;
1762
1763 /* Determine this unit's cgroup path relative to our cgroup root */
1764 pp = path_startswith(u->cgroup_path, u->manager->cgroup_root);
1765 if (!pp)
1766 return -EINVAL;
1767
1768 pp = strjoina("/", pp, suffix_path);
858d36c1 1769 path_simplify(pp, false);
6592b975
LP
1770
1771 r = sd_bus_call_method(u->manager->system_bus,
1772 "org.freedesktop.systemd1",
1773 "/org/freedesktop/systemd1",
1774 "org.freedesktop.systemd1.Manager",
1775 "AttachProcessesToUnit",
1776 &error, NULL,
1777 "ssau",
1778 NULL /* empty unit name means client's unit, i.e. us */, pp, 1, (uint32_t) pid);
7b3fd631 1779 if (r < 0)
6592b975
LP
1780 return log_unit_debug_errno(u, r, "Failed to attach unit process " PID_FMT " via the bus: %s", pid, bus_error_message(&error, r));
1781
1782 return 0;
1783}
1784
1785int unit_attach_pids_to_cgroup(Unit *u, Set *pids, const char *suffix_path) {
1786 CGroupMask delegated_mask;
1787 const char *p;
1788 Iterator i;
1789 void *pidp;
1790 int r, q;
1791
1792 assert(u);
1793
1794 if (!UNIT_HAS_CGROUP_CONTEXT(u))
1795 return -EINVAL;
1796
1797 if (set_isempty(pids))
1798 return 0;
7b3fd631 1799
6592b975 1800 r = unit_realize_cgroup(u);
7b3fd631
LP
1801 if (r < 0)
1802 return r;
1803
6592b975
LP
1804 if (isempty(suffix_path))
1805 p = u->cgroup_path;
1806 else
1807 p = strjoina(u->cgroup_path, "/", suffix_path);
1808
1809 delegated_mask = unit_get_delegate_mask(u);
1810
1811 r = 0;
1812 SET_FOREACH(pidp, pids, i) {
1813 pid_t pid = PTR_TO_PID(pidp);
1814 CGroupController c;
1815
1816 /* First, attach the PID to the main cgroup hierarchy */
1817 q = cg_attach(SYSTEMD_CGROUP_CONTROLLER, p, pid);
1818 if (q < 0) {
1819 log_unit_debug_errno(u, q, "Couldn't move process " PID_FMT " to requested cgroup '%s': %m", pid, p);
1820
1821 if (MANAGER_IS_USER(u->manager) && IN_SET(q, -EPERM, -EACCES)) {
1822 int z;
1823
1824 /* If we are in a user instance, and we can't move the process ourselves due to
1825 * permission problems, let's ask the system instance about it instead. Since it's more
1826 * privileged it might be able to move the process across the leaves of a subtree who's
1827 * top node is not owned by us. */
1828
1829 z = unit_attach_pid_to_cgroup_via_bus(u, pid, suffix_path);
1830 if (z < 0)
1831 log_unit_debug_errno(u, z, "Couldn't move process " PID_FMT " to requested cgroup '%s' via the system bus either: %m", pid, p);
1832 else
1833 continue; /* When the bus thing worked via the bus we are fully done for this PID. */
1834 }
1835
1836 if (r >= 0)
1837 r = q; /* Remember first error */
1838
1839 continue;
1840 }
1841
1842 q = cg_all_unified();
1843 if (q < 0)
1844 return q;
1845 if (q > 0)
1846 continue;
1847
1848 /* In the legacy hierarchy, attach the process to the request cgroup if possible, and if not to the
1849 * innermost realized one */
1850
1851 for (c = 0; c < _CGROUP_CONTROLLER_MAX; c++) {
1852 CGroupMask bit = CGROUP_CONTROLLER_TO_MASK(c);
1853 const char *realized;
1854
1855 if (!(u->manager->cgroup_supported & bit))
1856 continue;
1857
1858 /* If this controller is delegated and realized, honour the caller's request for the cgroup suffix. */
1859 if (delegated_mask & u->cgroup_realized_mask & bit) {
1860 q = cg_attach(cgroup_controller_to_string(c), p, pid);
1861 if (q >= 0)
1862 continue; /* Success! */
1863
1864 log_unit_debug_errno(u, q, "Failed to attach PID " PID_FMT " to requested cgroup %s in controller %s, falling back to unit's cgroup: %m",
1865 pid, p, cgroup_controller_to_string(c));
1866 }
1867
1868 /* So this controller is either not delegate or realized, or something else weird happened. In
1869 * that case let's attach the PID at least to the closest cgroup up the tree that is
1870 * realized. */
1871 realized = unit_get_realized_cgroup_path(u, bit);
1872 if (!realized)
1873 continue; /* Not even realized in the root slice? Then let's not bother */
1874
1875 q = cg_attach(cgroup_controller_to_string(c), realized, pid);
1876 if (q < 0)
1877 log_unit_debug_errno(u, q, "Failed to attach PID " PID_FMT " to realized cgroup %s in controller %s, ignoring: %m",
1878 pid, realized, cgroup_controller_to_string(c));
1879 }
1880 }
1881
1882 return r;
7b3fd631
LP
1883}
1884
906c06f6
DM
1885static bool unit_has_mask_realized(
1886 Unit *u,
1887 CGroupMask target_mask,
17f14955 1888 CGroupMask enable_mask) {
906c06f6 1889
bc432dc7
LP
1890 assert(u);
1891
d5095dcd
LP
1892 /* Returns true if this unit is fully realized. We check four things:
1893 *
1894 * 1. Whether the cgroup was created at all
4e1dfa45
CD
1895 * 2. Whether the cgroup was created in all the hierarchies we need it to be created in (in case of cgroup v1)
1896 * 3. Whether the cgroup has all the right controllers enabled (in case of cgroup v2)
d5095dcd
LP
1897 * 4. Whether the invalidation mask is currently zero
1898 *
1899 * If you wonder why we mask the target realization and enable mask with CGROUP_MASK_V1/CGROUP_MASK_V2: note
4e1dfa45
CD
1900 * that there are three sets of bitmasks: CGROUP_MASK_V1 (for real cgroup v1 controllers), CGROUP_MASK_V2 (for
1901 * real cgroup v2 controllers) and CGROUP_MASK_BPF (for BPF-based pseudo-controllers). Now, cgroup_realized_mask
1902 * is only matters for cgroup v1 controllers, and cgroup_enabled_mask only used for cgroup v2, and if they
d5095dcd
LP
1903 * differ in the others, we don't really care. (After all, the cgroup_enabled_mask tracks with controllers are
1904 * enabled through cgroup.subtree_control, and since the BPF pseudo-controllers don't show up there, they
1905 * simply don't matter. */
1906
906c06f6 1907 return u->cgroup_realized &&
d5095dcd
LP
1908 ((u->cgroup_realized_mask ^ target_mask) & CGROUP_MASK_V1) == 0 &&
1909 ((u->cgroup_enabled_mask ^ enable_mask) & CGROUP_MASK_V2) == 0 &&
17f14955 1910 u->cgroup_invalidated_mask == 0;
6414b7c9
DS
1911}
1912
4f6f62e4
CD
1913static bool unit_has_mask_disables_realized(
1914 Unit *u,
1915 CGroupMask target_mask,
1916 CGroupMask enable_mask) {
1917
1918 assert(u);
1919
1920 /* Returns true if all controllers which should be disabled are indeed disabled.
1921 *
1922 * Unlike unit_has_mask_realized, we don't care what was enabled, only that anything we want to remove is
1923 * already removed. */
1924
1925 return !u->cgroup_realized ||
1926 (FLAGS_SET(u->cgroup_realized_mask, target_mask & CGROUP_MASK_V1) &&
1927 FLAGS_SET(u->cgroup_enabled_mask, enable_mask & CGROUP_MASK_V2));
1928}
1929
a57669d2
CD
1930static bool unit_has_mask_enables_realized(
1931 Unit *u,
1932 CGroupMask target_mask,
1933 CGroupMask enable_mask) {
1934
1935 assert(u);
1936
1937 /* Returns true if all controllers which should be enabled are indeed enabled.
1938 *
1939 * Unlike unit_has_mask_realized, we don't care about the controllers that are not present, only that anything
1940 * we want to add is already added. */
1941
1942 return u->cgroup_realized &&
c72703e2
CD
1943 ((u->cgroup_realized_mask | target_mask) & CGROUP_MASK_V1) == (u->cgroup_realized_mask & CGROUP_MASK_V1) &&
1944 ((u->cgroup_enabled_mask | enable_mask) & CGROUP_MASK_V2) == (u->cgroup_enabled_mask & CGROUP_MASK_V2);
a57669d2
CD
1945}
1946
27adcc97 1947void unit_add_to_cgroup_realize_queue(Unit *u) {
2aa57a65
LP
1948 assert(u);
1949
1950 if (u->in_cgroup_realize_queue)
1951 return;
1952
1953 LIST_PREPEND(cgroup_realize_queue, u->manager->cgroup_realize_queue, u);
1954 u->in_cgroup_realize_queue = true;
1955}
1956
1957static void unit_remove_from_cgroup_realize_queue(Unit *u) {
1958 assert(u);
1959
1960 if (!u->in_cgroup_realize_queue)
1961 return;
1962
1963 LIST_REMOVE(cgroup_realize_queue, u->manager->cgroup_realize_queue, u);
1964 u->in_cgroup_realize_queue = false;
1965}
1966
a57669d2
CD
1967/* Controllers can only be enabled breadth-first, from the root of the
1968 * hierarchy downwards to the unit in question. */
1969static int unit_realize_cgroup_now_enable(Unit *u, ManagerState state) {
1970 CGroupMask target_mask, enable_mask, new_target_mask, new_enable_mask;
1971 int r;
1972
1973 assert(u);
1974
1975 /* First go deal with this unit's parent, or we won't be able to enable
1976 * any new controllers at this layer. */
1977 if (UNIT_ISSET(u->slice)) {
1978 r = unit_realize_cgroup_now_enable(UNIT_DEREF(u->slice), state);
1979 if (r < 0)
1980 return r;
1981 }
1982
1983 target_mask = unit_get_target_mask(u);
1984 enable_mask = unit_get_enable_mask(u);
1985
1986 /* We can only enable in this direction, don't try to disable anything.
1987 */
1988 if (unit_has_mask_enables_realized(u, target_mask, enable_mask))
1989 return 0;
1990
1991 new_target_mask = u->cgroup_realized_mask | target_mask;
1992 new_enable_mask = u->cgroup_enabled_mask | enable_mask;
1993
c72703e2 1994 return unit_create_cgroup(u, new_target_mask, new_enable_mask, state);
a57669d2
CD
1995}
1996
4f6f62e4
CD
1997/* Controllers can only be disabled depth-first, from the leaves of the
1998 * hierarchy upwards to the unit in question. */
1999static int unit_realize_cgroup_now_disable(Unit *u, ManagerState state) {
2000 Iterator i;
2001 Unit *m;
2002 void *v;
2003
2004 assert(u);
2005
2006 if (u->type != UNIT_SLICE)
2007 return 0;
2008
2009 HASHMAP_FOREACH_KEY(v, m, u->dependencies[UNIT_BEFORE], i) {
2010 CGroupMask target_mask, enable_mask, new_target_mask, new_enable_mask;
2011 int r;
2012
2013 if (UNIT_DEREF(m->slice) != u)
2014 continue;
2015
2016 /* The cgroup for this unit might not actually be fully
2017 * realised yet, in which case it isn't holding any controllers
2018 * open anyway. */
2019 if (!m->cgroup_path)
2020 continue;
2021
2022 /* We must disable those below us first in order to release the
2023 * controller. */
2024 if (m->type == UNIT_SLICE)
2025 (void) unit_realize_cgroup_now_disable(m, state);
2026
2027 target_mask = unit_get_target_mask(m);
2028 enable_mask = unit_get_enable_mask(m);
2029
2030 /* We can only disable in this direction, don't try to enable
2031 * anything. */
2032 if (unit_has_mask_disables_realized(m, target_mask, enable_mask))
2033 continue;
2034
2035 new_target_mask = m->cgroup_realized_mask & target_mask;
2036 new_enable_mask = m->cgroup_enabled_mask & enable_mask;
2037
2038 r = unit_create_cgroup(m, new_target_mask, new_enable_mask, state);
2039 if (r < 0)
2040 return r;
2041 }
2042
2043 return 0;
2044}
a57669d2 2045
6414b7c9
DS
2046/* Check if necessary controllers and attributes for a unit are in place.
2047 *
a57669d2
CD
2048 * - If so, do nothing.
2049 * - If not, create paths, move processes over, and set attributes.
2050 *
2051 * Controllers can only be *enabled* in a breadth-first way, and *disabled* in
2052 * a depth-first way. As such the process looks like this:
2053 *
2054 * Suppose we have a cgroup hierarchy which looks like this:
2055 *
2056 * root
2057 * / \
2058 * / \
2059 * / \
2060 * a b
2061 * / \ / \
2062 * / \ / \
2063 * c d e f
2064 * / \ / \ / \ / \
2065 * h i j k l m n o
2066 *
2067 * 1. We want to realise cgroup "d" now.
c72703e2 2068 * 2. cgroup "a" has DisableControllers=cpu in the associated unit.
a57669d2
CD
2069 * 3. cgroup "k" just started requesting the memory controller.
2070 *
2071 * To make this work we must do the following in order:
2072 *
2073 * 1. Disable CPU controller in k, j
2074 * 2. Disable CPU controller in d
2075 * 3. Enable memory controller in root
2076 * 4. Enable memory controller in a
2077 * 5. Enable memory controller in d
2078 * 6. Enable memory controller in k
2079 *
2080 * Notice that we need to touch j in one direction, but not the other. We also
2081 * don't go beyond d when disabling -- it's up to "a" to get realized if it
2082 * wants to disable further. The basic rules are therefore:
2083 *
2084 * - If you're disabling something, you need to realise all of the cgroups from
2085 * your recursive descendants to the root. This starts from the leaves.
2086 * - If you're enabling something, you need to realise from the root cgroup
2087 * downwards, but you don't need to iterate your recursive descendants.
6414b7c9
DS
2088 *
2089 * Returns 0 on success and < 0 on failure. */
db785129 2090static int unit_realize_cgroup_now(Unit *u, ManagerState state) {
efdb0237 2091 CGroupMask target_mask, enable_mask;
6414b7c9 2092 int r;
64747e2d 2093
4ad49000 2094 assert(u);
64747e2d 2095
2aa57a65 2096 unit_remove_from_cgroup_realize_queue(u);
64747e2d 2097
efdb0237 2098 target_mask = unit_get_target_mask(u);
ccf78df1
TH
2099 enable_mask = unit_get_enable_mask(u);
2100
17f14955 2101 if (unit_has_mask_realized(u, target_mask, enable_mask))
0a1eb06d 2102 return 0;
64747e2d 2103
4f6f62e4
CD
2104 /* Disable controllers below us, if there are any */
2105 r = unit_realize_cgroup_now_disable(u, state);
2106 if (r < 0)
2107 return r;
2108
2109 /* Enable controllers above us, if there are any */
6414b7c9 2110 if (UNIT_ISSET(u->slice)) {
a57669d2 2111 r = unit_realize_cgroup_now_enable(UNIT_DEREF(u->slice), state);
6414b7c9
DS
2112 if (r < 0)
2113 return r;
2114 }
4ad49000 2115
0d2d6fbf
CD
2116 /* Now actually deal with the cgroup we were trying to realise and set attributes */
2117 r = unit_create_cgroup(u, target_mask, enable_mask, state);
6414b7c9
DS
2118 if (r < 0)
2119 return r;
2120
c2baf11c
LP
2121 /* Now, reset the invalidation mask */
2122 u->cgroup_invalidated_mask = 0;
6414b7c9 2123 return 0;
64747e2d
LP
2124}
2125
91a6073e 2126unsigned manager_dispatch_cgroup_realize_queue(Manager *m) {
db785129 2127 ManagerState state;
4ad49000 2128 unsigned n = 0;
db785129 2129 Unit *i;
6414b7c9 2130 int r;
ecedd90f 2131
91a6073e
LP
2132 assert(m);
2133
db785129
LP
2134 state = manager_state(m);
2135
91a6073e
LP
2136 while ((i = m->cgroup_realize_queue)) {
2137 assert(i->in_cgroup_realize_queue);
ecedd90f 2138
2aa57a65
LP
2139 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(i))) {
2140 /* Maybe things changed, and the unit is not actually active anymore? */
2141 unit_remove_from_cgroup_realize_queue(i);
2142 continue;
2143 }
2144
db785129 2145 r = unit_realize_cgroup_now(i, state);
6414b7c9 2146 if (r < 0)
efdb0237 2147 log_warning_errno(r, "Failed to realize cgroups for queued unit %s, ignoring: %m", i->id);
0a1eb06d 2148
4ad49000
LP
2149 n++;
2150 }
ecedd90f 2151
4ad49000 2152 return n;
8e274523
LP
2153}
2154
91a6073e 2155static void unit_add_siblings_to_cgroup_realize_queue(Unit *u) {
4ad49000 2156 Unit *slice;
ca949c9d 2157
4ad49000
LP
2158 /* This adds the siblings of the specified unit and the
2159 * siblings of all parent units to the cgroup queue. (But
2160 * neither the specified unit itself nor the parents.) */
2161
2162 while ((slice = UNIT_DEREF(u->slice))) {
2163 Iterator i;
2164 Unit *m;
eef85c4a 2165 void *v;
8f53a7b8 2166
eef85c4a 2167 HASHMAP_FOREACH_KEY(v, m, u->dependencies[UNIT_BEFORE], i) {
6414b7c9
DS
2168 /* Skip units that have a dependency on the slice
2169 * but aren't actually in it. */
4ad49000 2170 if (UNIT_DEREF(m->slice) != slice)
50159e6a 2171 continue;
8e274523 2172
6414b7c9
DS
2173 /* No point in doing cgroup application for units
2174 * without active processes. */
2175 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(m)))
2176 continue;
2177
2178 /* If the unit doesn't need any new controllers
2179 * and has current ones realized, it doesn't need
2180 * any changes. */
906c06f6
DM
2181 if (unit_has_mask_realized(m,
2182 unit_get_target_mask(m),
17f14955 2183 unit_get_enable_mask(m)))
6414b7c9
DS
2184 continue;
2185
91a6073e 2186 unit_add_to_cgroup_realize_queue(m);
50159e6a
LP
2187 }
2188
4ad49000 2189 u = slice;
8e274523 2190 }
4ad49000
LP
2191}
2192
0a1eb06d 2193int unit_realize_cgroup(Unit *u) {
4ad49000
LP
2194 assert(u);
2195
35b7ff80 2196 if (!UNIT_HAS_CGROUP_CONTEXT(u))
0a1eb06d 2197 return 0;
8e274523 2198
4ad49000
LP
2199 /* So, here's the deal: when realizing the cgroups for this
2200 * unit, we need to first create all parents, but there's more
2201 * actually: for the weight-based controllers we also need to
2202 * make sure that all our siblings (i.e. units that are in the
73e231ab 2203 * same slice as we are) have cgroups, too. Otherwise, things
4ad49000
LP
2204 * would become very uneven as each of their processes would
2205 * get as much resources as all our group together. This call
2206 * will synchronously create the parent cgroups, but will
2207 * defer work on the siblings to the next event loop
2208 * iteration. */
ca949c9d 2209
4ad49000 2210 /* Add all sibling slices to the cgroup queue. */
91a6073e 2211 unit_add_siblings_to_cgroup_realize_queue(u);
4ad49000 2212
6414b7c9 2213 /* And realize this one now (and apply the values) */
db785129 2214 return unit_realize_cgroup_now(u, manager_state(u->manager));
8e274523
LP
2215}
2216
efdb0237
LP
2217void unit_release_cgroup(Unit *u) {
2218 assert(u);
2219
8a0d5388
LP
2220 /* Forgets all cgroup details for this cgroup — but does *not* destroy the cgroup. This is hence OK to call
2221 * when we close down everything for reexecution, where we really want to leave the cgroup in place. */
efdb0237
LP
2222
2223 if (u->cgroup_path) {
2224 (void) hashmap_remove(u->manager->cgroup_unit, u->cgroup_path);
2225 u->cgroup_path = mfree(u->cgroup_path);
2226 }
2227
2228 if (u->cgroup_inotify_wd >= 0) {
2229 if (inotify_rm_watch(u->manager->cgroup_inotify_fd, u->cgroup_inotify_wd) < 0)
5e1ee764 2230 log_unit_debug_errno(u, errno, "Failed to remove cgroup inotify watch %i for %s, ignoring: %m", u->cgroup_inotify_wd, u->id);
efdb0237
LP
2231
2232 (void) hashmap_remove(u->manager->cgroup_inotify_wd_unit, INT_TO_PTR(u->cgroup_inotify_wd));
2233 u->cgroup_inotify_wd = -1;
2234 }
2235}
2236
2237void unit_prune_cgroup(Unit *u) {
8e274523 2238 int r;
efdb0237 2239 bool is_root_slice;
8e274523 2240
4ad49000 2241 assert(u);
8e274523 2242
efdb0237
LP
2243 /* Removes the cgroup, if empty and possible, and stops watching it. */
2244
4ad49000
LP
2245 if (!u->cgroup_path)
2246 return;
8e274523 2247
fe700f46
LP
2248 (void) unit_get_cpu_usage(u, NULL); /* Cache the last CPU usage value before we destroy the cgroup */
2249
efdb0237
LP
2250 is_root_slice = unit_has_name(u, SPECIAL_ROOT_SLICE);
2251
2252 r = cg_trim_everywhere(u->manager->cgroup_supported, u->cgroup_path, !is_root_slice);
dab5bf85 2253 if (r < 0) {
f29ff115 2254 log_unit_debug_errno(u, r, "Failed to destroy cgroup %s, ignoring: %m", u->cgroup_path);
dab5bf85
RL
2255 return;
2256 }
8e274523 2257
efdb0237
LP
2258 if (is_root_slice)
2259 return;
2260
2261 unit_release_cgroup(u);
0a1eb06d 2262
4ad49000 2263 u->cgroup_realized = false;
bc432dc7 2264 u->cgroup_realized_mask = 0;
ccf78df1 2265 u->cgroup_enabled_mask = 0;
084c7007
RG
2266
2267 u->bpf_device_control_installed = bpf_program_unref(u->bpf_device_control_installed);
8e274523
LP
2268}
2269
efdb0237 2270int unit_search_main_pid(Unit *u, pid_t *ret) {
4ad49000 2271 _cleanup_fclose_ FILE *f = NULL;
4d051546 2272 pid_t pid = 0, npid;
efdb0237 2273 int r;
4ad49000
LP
2274
2275 assert(u);
efdb0237 2276 assert(ret);
4ad49000
LP
2277
2278 if (!u->cgroup_path)
efdb0237 2279 return -ENXIO;
4ad49000 2280
efdb0237
LP
2281 r = cg_enumerate_processes(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, &f);
2282 if (r < 0)
2283 return r;
4ad49000 2284
4ad49000 2285 while (cg_read_pid(f, &npid) > 0) {
4ad49000
LP
2286
2287 if (npid == pid)
2288 continue;
8e274523 2289
4d051546 2290 if (pid_is_my_child(npid) == 0)
4ad49000 2291 continue;
8e274523 2292
efdb0237 2293 if (pid != 0)
4ad49000
LP
2294 /* Dang, there's more than one daemonized PID
2295 in this group, so we don't know what process
2296 is the main process. */
efdb0237
LP
2297
2298 return -ENODATA;
8e274523 2299
4ad49000 2300 pid = npid;
8e274523
LP
2301 }
2302
efdb0237
LP
2303 *ret = pid;
2304 return 0;
2305}
2306
2307static int unit_watch_pids_in_path(Unit *u, const char *path) {
b3c5bad3 2308 _cleanup_closedir_ DIR *d = NULL;
efdb0237
LP
2309 _cleanup_fclose_ FILE *f = NULL;
2310 int ret = 0, r;
2311
2312 assert(u);
2313 assert(path);
2314
2315 r = cg_enumerate_processes(SYSTEMD_CGROUP_CONTROLLER, path, &f);
2316 if (r < 0)
2317 ret = r;
2318 else {
2319 pid_t pid;
2320
2321 while ((r = cg_read_pid(f, &pid)) > 0) {
f75f613d 2322 r = unit_watch_pid(u, pid, false);
efdb0237
LP
2323 if (r < 0 && ret >= 0)
2324 ret = r;
2325 }
2326
2327 if (r < 0 && ret >= 0)
2328 ret = r;
2329 }
2330
2331 r = cg_enumerate_subgroups(SYSTEMD_CGROUP_CONTROLLER, path, &d);
2332 if (r < 0) {
2333 if (ret >= 0)
2334 ret = r;
2335 } else {
2336 char *fn;
2337
2338 while ((r = cg_read_subgroup(d, &fn)) > 0) {
2339 _cleanup_free_ char *p = NULL;
2340
605405c6 2341 p = strjoin(path, "/", fn);
efdb0237
LP
2342 free(fn);
2343
2344 if (!p)
2345 return -ENOMEM;
2346
2347 r = unit_watch_pids_in_path(u, p);
2348 if (r < 0 && ret >= 0)
2349 ret = r;
2350 }
2351
2352 if (r < 0 && ret >= 0)
2353 ret = r;
2354 }
2355
2356 return ret;
2357}
2358
11aef522
LP
2359int unit_synthesize_cgroup_empty_event(Unit *u) {
2360 int r;
2361
2362 assert(u);
2363
2364 /* Enqueue a synthetic cgroup empty event if this unit doesn't watch any PIDs anymore. This is compatibility
2365 * support for non-unified systems where notifications aren't reliable, and hence need to take whatever we can
2366 * get as notification source as soon as we stopped having any useful PIDs to watch for. */
2367
2368 if (!u->cgroup_path)
2369 return -ENOENT;
2370
2371 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
2372 if (r < 0)
2373 return r;
2374 if (r > 0) /* On unified we have reliable notifications, and don't need this */
2375 return 0;
2376
2377 if (!set_isempty(u->pids))
2378 return 0;
2379
2380 unit_add_to_cgroup_empty_queue(u);
2381 return 0;
2382}
2383
efdb0237 2384int unit_watch_all_pids(Unit *u) {
b4cccbc1
LP
2385 int r;
2386
efdb0237
LP
2387 assert(u);
2388
2389 /* Adds all PIDs from our cgroup to the set of PIDs we
2390 * watch. This is a fallback logic for cases where we do not
2391 * get reliable cgroup empty notifications: we try to use
2392 * SIGCHLD as replacement. */
2393
2394 if (!u->cgroup_path)
2395 return -ENOENT;
2396
c22800e4 2397 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
b4cccbc1
LP
2398 if (r < 0)
2399 return r;
2400 if (r > 0) /* On unified we can use proper notifications */
efdb0237
LP
2401 return 0;
2402
2403 return unit_watch_pids_in_path(u, u->cgroup_path);
2404}
2405
09e24654
LP
2406static int on_cgroup_empty_event(sd_event_source *s, void *userdata) {
2407 Manager *m = userdata;
2408 Unit *u;
efdb0237
LP
2409 int r;
2410
09e24654
LP
2411 assert(s);
2412 assert(m);
efdb0237 2413
09e24654
LP
2414 u = m->cgroup_empty_queue;
2415 if (!u)
efdb0237
LP
2416 return 0;
2417
09e24654
LP
2418 assert(u->in_cgroup_empty_queue);
2419 u->in_cgroup_empty_queue = false;
2420 LIST_REMOVE(cgroup_empty_queue, m->cgroup_empty_queue, u);
2421
2422 if (m->cgroup_empty_queue) {
2423 /* More stuff queued, let's make sure we remain enabled */
2424 r = sd_event_source_set_enabled(s, SD_EVENT_ONESHOT);
2425 if (r < 0)
19a691a9 2426 log_debug_errno(r, "Failed to reenable cgroup empty event source, ignoring: %m");
09e24654 2427 }
efdb0237
LP
2428
2429 unit_add_to_gc_queue(u);
2430
2431 if (UNIT_VTABLE(u)->notify_cgroup_empty)
2432 UNIT_VTABLE(u)->notify_cgroup_empty(u);
2433
2434 return 0;
2435}
2436
09e24654
LP
2437void unit_add_to_cgroup_empty_queue(Unit *u) {
2438 int r;
2439
2440 assert(u);
2441
2442 /* Note that there are four different ways how cgroup empty events reach us:
2443 *
2444 * 1. On the unified hierarchy we get an inotify event on the cgroup
2445 *
2446 * 2. On the legacy hierarchy, when running in system mode, we get a datagram on the cgroup agent socket
2447 *
2448 * 3. On the legacy hierarchy, when running in user mode, we get a D-Bus signal on the system bus
2449 *
2450 * 4. On the legacy hierarchy, in service units we start watching all processes of the cgroup for SIGCHLD as
2451 * soon as we get one SIGCHLD, to deal with unreliable cgroup notifications.
2452 *
2453 * Regardless which way we got the notification, we'll verify it here, and then add it to a separate
2454 * queue. This queue will be dispatched at a lower priority than the SIGCHLD handler, so that we always use
2455 * SIGCHLD if we can get it first, and only use the cgroup empty notifications if there's no SIGCHLD pending
2456 * (which might happen if the cgroup doesn't contain processes that are our own child, which is typically the
2457 * case for scope units). */
2458
2459 if (u->in_cgroup_empty_queue)
2460 return;
2461
2462 /* Let's verify that the cgroup is really empty */
2463 if (!u->cgroup_path)
2464 return;
2465 r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path);
2466 if (r < 0) {
2467 log_unit_debug_errno(u, r, "Failed to determine whether cgroup %s is empty: %m", u->cgroup_path);
2468 return;
2469 }
2470 if (r == 0)
2471 return;
2472
2473 LIST_PREPEND(cgroup_empty_queue, u->manager->cgroup_empty_queue, u);
2474 u->in_cgroup_empty_queue = true;
2475
2476 /* Trigger the defer event */
2477 r = sd_event_source_set_enabled(u->manager->cgroup_empty_event_source, SD_EVENT_ONESHOT);
2478 if (r < 0)
2479 log_debug_errno(r, "Failed to enable cgroup empty event source: %m");
2480}
2481
efdb0237
LP
2482static int on_cgroup_inotify_event(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
2483 Manager *m = userdata;
2484
2485 assert(s);
2486 assert(fd >= 0);
2487 assert(m);
2488
2489 for (;;) {
2490 union inotify_event_buffer buffer;
2491 struct inotify_event *e;
2492 ssize_t l;
2493
2494 l = read(fd, &buffer, sizeof(buffer));
2495 if (l < 0) {
47249640 2496 if (IN_SET(errno, EINTR, EAGAIN))
efdb0237
LP
2497 return 0;
2498
2499 return log_error_errno(errno, "Failed to read control group inotify events: %m");
2500 }
2501
2502 FOREACH_INOTIFY_EVENT(e, buffer, l) {
2503 Unit *u;
2504
2505 if (e->wd < 0)
2506 /* Queue overflow has no watch descriptor */
2507 continue;
2508
2509 if (e->mask & IN_IGNORED)
2510 /* The watch was just removed */
2511 continue;
2512
2513 u = hashmap_get(m->cgroup_inotify_wd_unit, INT_TO_PTR(e->wd));
2514 if (!u) /* Not that inotify might deliver
2515 * events for a watch even after it
2516 * was removed, because it was queued
2517 * before the removal. Let's ignore
2518 * this here safely. */
2519 continue;
2520
09e24654 2521 unit_add_to_cgroup_empty_queue(u);
efdb0237
LP
2522 }
2523 }
8e274523
LP
2524}
2525
17f14955
RG
2526static int cg_bpf_mask_supported(CGroupMask *ret) {
2527 CGroupMask mask = 0;
2528 int r;
2529
2530 /* BPF-based firewall */
2531 r = bpf_firewall_supported();
2532 if (r > 0)
2533 mask |= CGROUP_MASK_BPF_FIREWALL;
2534
084c7007
RG
2535 /* BPF-based device access control */
2536 r = bpf_devices_supported();
2537 if (r > 0)
2538 mask |= CGROUP_MASK_BPF_DEVICES;
2539
17f14955
RG
2540 *ret = mask;
2541 return 0;
2542}
2543
8e274523 2544int manager_setup_cgroup(Manager *m) {
9444b1f2 2545 _cleanup_free_ char *path = NULL;
10bd3e2e 2546 const char *scope_path;
efdb0237 2547 CGroupController c;
b4cccbc1 2548 int r, all_unified;
17f14955 2549 CGroupMask mask;
efdb0237 2550 char *e;
8e274523
LP
2551
2552 assert(m);
2553
35d2e7ec 2554 /* 1. Determine hierarchy */
efdb0237 2555 m->cgroup_root = mfree(m->cgroup_root);
9444b1f2 2556 r = cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER, 0, &m->cgroup_root);
23bbb0de
MS
2557 if (r < 0)
2558 return log_error_errno(r, "Cannot determine cgroup we are running in: %m");
8e274523 2559
efdb0237
LP
2560 /* Chop off the init scope, if we are already located in it */
2561 e = endswith(m->cgroup_root, "/" SPECIAL_INIT_SCOPE);
0d8c31ff 2562
efdb0237
LP
2563 /* LEGACY: Also chop off the system slice if we are in
2564 * it. This is to support live upgrades from older systemd
2565 * versions where PID 1 was moved there. Also see
2566 * cg_get_root_path(). */
463d0d15 2567 if (!e && MANAGER_IS_SYSTEM(m)) {
9444b1f2 2568 e = endswith(m->cgroup_root, "/" SPECIAL_SYSTEM_SLICE);
15c60e99 2569 if (!e)
efdb0237 2570 e = endswith(m->cgroup_root, "/system"); /* even more legacy */
0baf24dd 2571 }
efdb0237
LP
2572 if (e)
2573 *e = 0;
7ccfb64a 2574
7546145e
LP
2575 /* And make sure to store away the root value without trailing slash, even for the root dir, so that we can
2576 * easily prepend it everywhere. */
2577 delete_trailing_chars(m->cgroup_root, "/");
8e274523 2578
35d2e7ec 2579 /* 2. Show data */
9444b1f2 2580 r = cg_get_path(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root, NULL, &path);
23bbb0de
MS
2581 if (r < 0)
2582 return log_error_errno(r, "Cannot find cgroup mount point: %m");
8e274523 2583
415fc41c
TH
2584 r = cg_unified_flush();
2585 if (r < 0)
2586 return log_error_errno(r, "Couldn't determine if we are running in the unified hierarchy: %m");
5da38d07 2587
b4cccbc1 2588 all_unified = cg_all_unified();
d4c819ed
ZJS
2589 if (all_unified < 0)
2590 return log_error_errno(all_unified, "Couldn't determine whether we are in all unified mode: %m");
2591 if (all_unified > 0)
efdb0237 2592 log_debug("Unified cgroup hierarchy is located at %s.", path);
b4cccbc1 2593 else {
c22800e4 2594 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
b4cccbc1
LP
2595 if (r < 0)
2596 return log_error_errno(r, "Failed to determine whether systemd's own controller is in unified mode: %m");
2597 if (r > 0)
2598 log_debug("Unified cgroup hierarchy is located at %s. Controllers are on legacy hierarchies.", path);
2599 else
2600 log_debug("Using cgroup controller " SYSTEMD_CGROUP_CONTROLLER_LEGACY ". File system hierarchy is at %s.", path);
2601 }
efdb0237 2602
09e24654
LP
2603 /* 3. Allocate cgroup empty defer event source */
2604 m->cgroup_empty_event_source = sd_event_source_unref(m->cgroup_empty_event_source);
2605 r = sd_event_add_defer(m->event, &m->cgroup_empty_event_source, on_cgroup_empty_event, m);
2606 if (r < 0)
2607 return log_error_errno(r, "Failed to create cgroup empty event source: %m");
2608
2609 r = sd_event_source_set_priority(m->cgroup_empty_event_source, SD_EVENT_PRIORITY_NORMAL-5);
2610 if (r < 0)
2611 return log_error_errno(r, "Failed to set priority of cgroup empty event source: %m");
2612
2613 r = sd_event_source_set_enabled(m->cgroup_empty_event_source, SD_EVENT_OFF);
2614 if (r < 0)
2615 return log_error_errno(r, "Failed to disable cgroup empty event source: %m");
2616
2617 (void) sd_event_source_set_description(m->cgroup_empty_event_source, "cgroup-empty");
2618
2619 /* 4. Install notifier inotify object, or agent */
10bd3e2e 2620 if (cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER) > 0) {
c6c18be3 2621
09e24654 2622 /* In the unified hierarchy we can get cgroup empty notifications via inotify. */
efdb0237 2623
10bd3e2e
LP
2624 m->cgroup_inotify_event_source = sd_event_source_unref(m->cgroup_inotify_event_source);
2625 safe_close(m->cgroup_inotify_fd);
efdb0237 2626
10bd3e2e
LP
2627 m->cgroup_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
2628 if (m->cgroup_inotify_fd < 0)
2629 return log_error_errno(errno, "Failed to create control group inotify object: %m");
efdb0237 2630
10bd3e2e
LP
2631 r = sd_event_add_io(m->event, &m->cgroup_inotify_event_source, m->cgroup_inotify_fd, EPOLLIN, on_cgroup_inotify_event, m);
2632 if (r < 0)
2633 return log_error_errno(r, "Failed to watch control group inotify object: %m");
efdb0237 2634
10bd3e2e
LP
2635 /* Process cgroup empty notifications early, but after service notifications and SIGCHLD. Also
2636 * see handling of cgroup agent notifications, for the classic cgroup hierarchy support. */
09e24654 2637 r = sd_event_source_set_priority(m->cgroup_inotify_event_source, SD_EVENT_PRIORITY_NORMAL-4);
10bd3e2e
LP
2638 if (r < 0)
2639 return log_error_errno(r, "Failed to set priority of inotify event source: %m");
efdb0237 2640
10bd3e2e 2641 (void) sd_event_source_set_description(m->cgroup_inotify_event_source, "cgroup-inotify");
efdb0237 2642
611c4f8a 2643 } else if (MANAGER_IS_SYSTEM(m) && manager_owns_host_root_cgroup(m) && !MANAGER_IS_TEST_RUN(m)) {
efdb0237 2644
10bd3e2e
LP
2645 /* On the legacy hierarchy we only get notifications via cgroup agents. (Which isn't really reliable,
2646 * since it does not generate events when control groups with children run empty. */
8e274523 2647
10bd3e2e 2648 r = cg_install_release_agent(SYSTEMD_CGROUP_CONTROLLER, SYSTEMD_CGROUP_AGENT_PATH);
23bbb0de 2649 if (r < 0)
10bd3e2e
LP
2650 log_warning_errno(r, "Failed to install release agent, ignoring: %m");
2651 else if (r > 0)
2652 log_debug("Installed release agent.");
2653 else if (r == 0)
2654 log_debug("Release agent already installed.");
2655 }
efdb0237 2656
09e24654 2657 /* 5. Make sure we are in the special "init.scope" unit in the root slice. */
10bd3e2e
LP
2658 scope_path = strjoina(m->cgroup_root, "/" SPECIAL_INIT_SCOPE);
2659 r = cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER, scope_path, 0);
aa77e234
MS
2660 if (r >= 0) {
2661 /* Also, move all other userspace processes remaining in the root cgroup into that scope. */
2662 r = cg_migrate(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root, SYSTEMD_CGROUP_CONTROLLER, scope_path, 0);
2663 if (r < 0)
2664 log_warning_errno(r, "Couldn't move remaining userspace processes, ignoring: %m");
c6c18be3 2665
aa77e234
MS
2666 /* 6. And pin it, so that it cannot be unmounted */
2667 safe_close(m->pin_cgroupfs_fd);
2668 m->pin_cgroupfs_fd = open(path, O_RDONLY|O_CLOEXEC|O_DIRECTORY|O_NOCTTY|O_NONBLOCK);
2669 if (m->pin_cgroupfs_fd < 0)
2670 return log_error_errno(errno, "Failed to open pin file: %m");
0d8c31ff 2671
638cece4 2672 } else if (!MANAGER_IS_TEST_RUN(m))
aa77e234 2673 return log_error_errno(r, "Failed to create %s control group: %m", scope_path);
10bd3e2e 2674
09e24654 2675 /* 7. Always enable hierarchical support if it exists... */
638cece4 2676 if (!all_unified && !MANAGER_IS_TEST_RUN(m))
10bd3e2e 2677 (void) cg_set_attribute("memory", "/", "memory.use_hierarchy", "1");
c6c18be3 2678
17f14955 2679 /* 8. Figure out which controllers are supported */
efdb0237
LP
2680 r = cg_mask_supported(&m->cgroup_supported);
2681 if (r < 0)
2682 return log_error_errno(r, "Failed to determine supported controllers: %m");
17f14955
RG
2683
2684 /* 9. Figure out which bpf-based pseudo-controllers are supported */
2685 r = cg_bpf_mask_supported(&mask);
2686 if (r < 0)
2687 return log_error_errno(r, "Failed to determine supported bpf-based pseudo-controllers: %m");
2688 m->cgroup_supported |= mask;
2689
2690 /* 10. Log which controllers are supported */
efdb0237 2691 for (c = 0; c < _CGROUP_CONTROLLER_MAX; c++)
eee0a1e4 2692 log_debug("Controller '%s' supported: %s", cgroup_controller_to_string(c), yes_no(m->cgroup_supported & CGROUP_CONTROLLER_TO_MASK(c)));
9156e799 2693
a32360f1 2694 return 0;
8e274523
LP
2695}
2696
c6c18be3 2697void manager_shutdown_cgroup(Manager *m, bool delete) {
8e274523
LP
2698 assert(m);
2699
9444b1f2
LP
2700 /* We can't really delete the group, since we are in it. But
2701 * let's trim it. */
f6c63f6f 2702 if (delete && m->cgroup_root && m->test_run_flags != MANAGER_TEST_RUN_MINIMAL)
efdb0237
LP
2703 (void) cg_trim(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root, false);
2704
09e24654
LP
2705 m->cgroup_empty_event_source = sd_event_source_unref(m->cgroup_empty_event_source);
2706
efdb0237
LP
2707 m->cgroup_inotify_wd_unit = hashmap_free(m->cgroup_inotify_wd_unit);
2708
2709 m->cgroup_inotify_event_source = sd_event_source_unref(m->cgroup_inotify_event_source);
2710 m->cgroup_inotify_fd = safe_close(m->cgroup_inotify_fd);
8e274523 2711
03e334a1 2712 m->pin_cgroupfs_fd = safe_close(m->pin_cgroupfs_fd);
c6c18be3 2713
efdb0237 2714 m->cgroup_root = mfree(m->cgroup_root);
8e274523
LP
2715}
2716
4ad49000 2717Unit* manager_get_unit_by_cgroup(Manager *m, const char *cgroup) {
acb14d31 2718 char *p;
4ad49000 2719 Unit *u;
acb14d31
LP
2720
2721 assert(m);
2722 assert(cgroup);
acb14d31 2723
4ad49000
LP
2724 u = hashmap_get(m->cgroup_unit, cgroup);
2725 if (u)
2726 return u;
acb14d31 2727
8e70580b 2728 p = strdupa(cgroup);
acb14d31
LP
2729 for (;;) {
2730 char *e;
2731
2732 e = strrchr(p, '/');
efdb0237
LP
2733 if (!e || e == p)
2734 return hashmap_get(m->cgroup_unit, SPECIAL_ROOT_SLICE);
acb14d31
LP
2735
2736 *e = 0;
2737
4ad49000
LP
2738 u = hashmap_get(m->cgroup_unit, p);
2739 if (u)
2740 return u;
acb14d31
LP
2741 }
2742}
2743
b3ac818b 2744Unit *manager_get_unit_by_pid_cgroup(Manager *m, pid_t pid) {
4ad49000 2745 _cleanup_free_ char *cgroup = NULL;
8e274523 2746
8c47c732
LP
2747 assert(m);
2748
62a76913 2749 if (!pid_is_valid(pid))
b3ac818b
LP
2750 return NULL;
2751
62a76913 2752 if (cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER, pid, &cgroup) < 0)
b3ac818b
LP
2753 return NULL;
2754
2755 return manager_get_unit_by_cgroup(m, cgroup);
2756}
2757
2758Unit *manager_get_unit_by_pid(Manager *m, pid_t pid) {
62a76913 2759 Unit *u, **array;
b3ac818b
LP
2760
2761 assert(m);
2762
62a76913
LP
2763 /* Note that a process might be owned by multiple units, we return only one here, which is good enough for most
2764 * cases, though not strictly correct. We prefer the one reported by cgroup membership, as that's the most
2765 * relevant one as children of the process will be assigned to that one, too, before all else. */
2766
2767 if (!pid_is_valid(pid))
8c47c732
LP
2768 return NULL;
2769
2ca9d979 2770 if (pid == getpid_cached())
efdb0237
LP
2771 return hashmap_get(m->units, SPECIAL_INIT_SCOPE);
2772
62a76913 2773 u = manager_get_unit_by_pid_cgroup(m, pid);
5fe8876b
LP
2774 if (u)
2775 return u;
2776
62a76913 2777 u = hashmap_get(m->watch_pids, PID_TO_PTR(pid));
5fe8876b
LP
2778 if (u)
2779 return u;
2780
62a76913
LP
2781 array = hashmap_get(m->watch_pids, PID_TO_PTR(-pid));
2782 if (array)
2783 return array[0];
2784
2785 return NULL;
6dde1f33 2786}
4fbf50b3 2787
4ad49000
LP
2788int manager_notify_cgroup_empty(Manager *m, const char *cgroup) {
2789 Unit *u;
4fbf50b3 2790
4ad49000
LP
2791 assert(m);
2792 assert(cgroup);
4fbf50b3 2793
09e24654
LP
2794 /* Called on the legacy hierarchy whenever we get an explicit cgroup notification from the cgroup agent process
2795 * or from the --system instance */
2796
d8fdc620
LP
2797 log_debug("Got cgroup empty notification for: %s", cgroup);
2798
4ad49000 2799 u = manager_get_unit_by_cgroup(m, cgroup);
5ad096b3
LP
2800 if (!u)
2801 return 0;
b56c28c3 2802
09e24654
LP
2803 unit_add_to_cgroup_empty_queue(u);
2804 return 1;
5ad096b3
LP
2805}
2806
2807int unit_get_memory_current(Unit *u, uint64_t *ret) {
2808 _cleanup_free_ char *v = NULL;
2809 int r;
2810
2811 assert(u);
2812 assert(ret);
2813
2e4025c0 2814 if (!UNIT_CGROUP_BOOL(u, memory_accounting))
cf3b4be1
LP
2815 return -ENODATA;
2816
5ad096b3
LP
2817 if (!u->cgroup_path)
2818 return -ENODATA;
2819
1f73aa00 2820 /* The root cgroup doesn't expose this information, let's get it from /proc instead */
611c4f8a 2821 if (unit_has_host_root_cgroup(u))
c482724a 2822 return procfs_memory_get_used(ret);
1f73aa00 2823
efdb0237 2824 if ((u->cgroup_realized_mask & CGROUP_MASK_MEMORY) == 0)
5ad096b3
LP
2825 return -ENODATA;
2826
b4cccbc1
LP
2827 r = cg_all_unified();
2828 if (r < 0)
2829 return r;
2830 if (r > 0)
efdb0237 2831 r = cg_get_attribute("memory", u->cgroup_path, "memory.current", &v);
b4cccbc1
LP
2832 else
2833 r = cg_get_attribute("memory", u->cgroup_path, "memory.usage_in_bytes", &v);
5ad096b3
LP
2834 if (r == -ENOENT)
2835 return -ENODATA;
2836 if (r < 0)
2837 return r;
2838
2839 return safe_atou64(v, ret);
2840}
2841
03a7b521
LP
2842int unit_get_tasks_current(Unit *u, uint64_t *ret) {
2843 _cleanup_free_ char *v = NULL;
2844 int r;
2845
2846 assert(u);
2847 assert(ret);
2848
2e4025c0 2849 if (!UNIT_CGROUP_BOOL(u, tasks_accounting))
cf3b4be1
LP
2850 return -ENODATA;
2851
03a7b521
LP
2852 if (!u->cgroup_path)
2853 return -ENODATA;
2854
c36a69f4 2855 /* The root cgroup doesn't expose this information, let's get it from /proc instead */
611c4f8a 2856 if (unit_has_host_root_cgroup(u))
c36a69f4
LP
2857 return procfs_tasks_get_current(ret);
2858
1f73aa00
LP
2859 if ((u->cgroup_realized_mask & CGROUP_MASK_PIDS) == 0)
2860 return -ENODATA;
2861
03a7b521
LP
2862 r = cg_get_attribute("pids", u->cgroup_path, "pids.current", &v);
2863 if (r == -ENOENT)
2864 return -ENODATA;
2865 if (r < 0)
2866 return r;
2867
2868 return safe_atou64(v, ret);
2869}
2870
5ad096b3
LP
2871static int unit_get_cpu_usage_raw(Unit *u, nsec_t *ret) {
2872 _cleanup_free_ char *v = NULL;
2873 uint64_t ns;
2874 int r;
2875
2876 assert(u);
2877 assert(ret);
2878
2879 if (!u->cgroup_path)
2880 return -ENODATA;
2881
1f73aa00 2882 /* The root cgroup doesn't expose this information, let's get it from /proc instead */
611c4f8a 2883 if (unit_has_host_root_cgroup(u))
1f73aa00
LP
2884 return procfs_cpu_get_usage(ret);
2885
f98c2585
CD
2886 /* Requisite controllers for CPU accounting are not enabled */
2887 if ((get_cpu_accounting_mask() & ~u->cgroup_realized_mask) != 0)
2888 return -ENODATA;
2889
92a99304
LP
2890 r = cg_all_unified();
2891 if (r < 0)
2892 return r;
b4cccbc1 2893 if (r > 0) {
66ebf6c0
TH
2894 _cleanup_free_ char *val = NULL;
2895 uint64_t us;
5ad096b3 2896
b734a4ff 2897 r = cg_get_keyed_attribute("cpu", u->cgroup_path, "cpu.stat", STRV_MAKE("usage_usec"), &val);
b734a4ff
LP
2898 if (IN_SET(r, -ENOENT, -ENXIO))
2899 return -ENODATA;
d742f4b5
LP
2900 if (r < 0)
2901 return r;
66ebf6c0
TH
2902
2903 r = safe_atou64(val, &us);
2904 if (r < 0)
2905 return r;
2906
2907 ns = us * NSEC_PER_USEC;
2908 } else {
66ebf6c0
TH
2909 r = cg_get_attribute("cpuacct", u->cgroup_path, "cpuacct.usage", &v);
2910 if (r == -ENOENT)
2911 return -ENODATA;
2912 if (r < 0)
2913 return r;
2914
2915 r = safe_atou64(v, &ns);
2916 if (r < 0)
2917 return r;
2918 }
5ad096b3
LP
2919
2920 *ret = ns;
2921 return 0;
2922}
2923
2924int unit_get_cpu_usage(Unit *u, nsec_t *ret) {
2925 nsec_t ns;
2926 int r;
2927
fe700f46
LP
2928 assert(u);
2929
2930 /* Retrieve the current CPU usage counter. This will subtract the CPU counter taken when the unit was
2931 * started. If the cgroup has been removed already, returns the last cached value. To cache the value, simply
2932 * call this function with a NULL return value. */
2933
2e4025c0 2934 if (!UNIT_CGROUP_BOOL(u, cpu_accounting))
cf3b4be1
LP
2935 return -ENODATA;
2936
5ad096b3 2937 r = unit_get_cpu_usage_raw(u, &ns);
fe700f46
LP
2938 if (r == -ENODATA && u->cpu_usage_last != NSEC_INFINITY) {
2939 /* If we can't get the CPU usage anymore (because the cgroup was already removed, for example), use our
2940 * cached value. */
2941
2942 if (ret)
2943 *ret = u->cpu_usage_last;
2944 return 0;
2945 }
5ad096b3
LP
2946 if (r < 0)
2947 return r;
2948
66ebf6c0
TH
2949 if (ns > u->cpu_usage_base)
2950 ns -= u->cpu_usage_base;
5ad096b3
LP
2951 else
2952 ns = 0;
2953
fe700f46
LP
2954 u->cpu_usage_last = ns;
2955 if (ret)
2956 *ret = ns;
2957
5ad096b3
LP
2958 return 0;
2959}
2960
906c06f6
DM
2961int unit_get_ip_accounting(
2962 Unit *u,
2963 CGroupIPAccountingMetric metric,
2964 uint64_t *ret) {
2965
6b659ed8 2966 uint64_t value;
906c06f6
DM
2967 int fd, r;
2968
2969 assert(u);
2970 assert(metric >= 0);
2971 assert(metric < _CGROUP_IP_ACCOUNTING_METRIC_MAX);
2972 assert(ret);
2973
2e4025c0 2974 if (!UNIT_CGROUP_BOOL(u, ip_accounting))
cf3b4be1
LP
2975 return -ENODATA;
2976
906c06f6
DM
2977 fd = IN_SET(metric, CGROUP_IP_INGRESS_BYTES, CGROUP_IP_INGRESS_PACKETS) ?
2978 u->ip_accounting_ingress_map_fd :
2979 u->ip_accounting_egress_map_fd;
906c06f6
DM
2980 if (fd < 0)
2981 return -ENODATA;
2982
2983 if (IN_SET(metric, CGROUP_IP_INGRESS_BYTES, CGROUP_IP_EGRESS_BYTES))
6b659ed8 2984 r = bpf_firewall_read_accounting(fd, &value, NULL);
906c06f6 2985 else
6b659ed8
LP
2986 r = bpf_firewall_read_accounting(fd, NULL, &value);
2987 if (r < 0)
2988 return r;
2989
2990 /* Add in additional metrics from a previous runtime. Note that when reexecing/reloading the daemon we compile
2991 * all BPF programs and maps anew, but serialize the old counters. When deserializing we store them in the
2992 * ip_accounting_extra[] field, and add them in here transparently. */
2993
2994 *ret = value + u->ip_accounting_extra[metric];
906c06f6
DM
2995
2996 return r;
2997}
2998
2999int unit_reset_cpu_accounting(Unit *u) {
5ad096b3
LP
3000 nsec_t ns;
3001 int r;
3002
3003 assert(u);
3004
fe700f46
LP
3005 u->cpu_usage_last = NSEC_INFINITY;
3006
5ad096b3
LP
3007 r = unit_get_cpu_usage_raw(u, &ns);
3008 if (r < 0) {
66ebf6c0 3009 u->cpu_usage_base = 0;
5ad096b3 3010 return r;
b56c28c3 3011 }
2633eb83 3012
66ebf6c0 3013 u->cpu_usage_base = ns;
4ad49000 3014 return 0;
4fbf50b3
LP
3015}
3016
906c06f6
DM
3017int unit_reset_ip_accounting(Unit *u) {
3018 int r = 0, q = 0;
3019
3020 assert(u);
3021
3022 if (u->ip_accounting_ingress_map_fd >= 0)
3023 r = bpf_firewall_reset_accounting(u->ip_accounting_ingress_map_fd);
3024
3025 if (u->ip_accounting_egress_map_fd >= 0)
3026 q = bpf_firewall_reset_accounting(u->ip_accounting_egress_map_fd);
3027
6b659ed8
LP
3028 zero(u->ip_accounting_extra);
3029
906c06f6
DM
3030 return r < 0 ? r : q;
3031}
3032
e7ab4d1a
LP
3033void unit_invalidate_cgroup(Unit *u, CGroupMask m) {
3034 assert(u);
3035
3036 if (!UNIT_HAS_CGROUP_CONTEXT(u))
3037 return;
3038
3039 if (m == 0)
3040 return;
3041
538b4852
TH
3042 /* always invalidate compat pairs together */
3043 if (m & (CGROUP_MASK_IO | CGROUP_MASK_BLKIO))
3044 m |= CGROUP_MASK_IO | CGROUP_MASK_BLKIO;
3045
7cce4fb7
LP
3046 if (m & (CGROUP_MASK_CPU | CGROUP_MASK_CPUACCT))
3047 m |= CGROUP_MASK_CPU | CGROUP_MASK_CPUACCT;
3048
e00068e7 3049 if (FLAGS_SET(u->cgroup_invalidated_mask, m)) /* NOP? */
e7ab4d1a
LP
3050 return;
3051
e00068e7 3052 u->cgroup_invalidated_mask |= m;
91a6073e 3053 unit_add_to_cgroup_realize_queue(u);
e7ab4d1a
LP
3054}
3055
906c06f6
DM
3056void unit_invalidate_cgroup_bpf(Unit *u) {
3057 assert(u);
3058
3059 if (!UNIT_HAS_CGROUP_CONTEXT(u))
3060 return;
3061
17f14955 3062 if (u->cgroup_invalidated_mask & CGROUP_MASK_BPF_FIREWALL) /* NOP? */
906c06f6
DM
3063 return;
3064
17f14955 3065 u->cgroup_invalidated_mask |= CGROUP_MASK_BPF_FIREWALL;
91a6073e 3066 unit_add_to_cgroup_realize_queue(u);
906c06f6
DM
3067
3068 /* If we are a slice unit, we also need to put compile a new BPF program for all our children, as the IP access
3069 * list of our children includes our own. */
3070 if (u->type == UNIT_SLICE) {
3071 Unit *member;
3072 Iterator i;
eef85c4a 3073 void *v;
906c06f6 3074
eef85c4a 3075 HASHMAP_FOREACH_KEY(v, member, u->dependencies[UNIT_BEFORE], i) {
cb5e3bc3
CD
3076 if (UNIT_DEREF(member->slice) == u)
3077 unit_invalidate_cgroup_bpf(member);
906c06f6
DM
3078 }
3079 }
3080}
3081
1d9cc876
LP
3082bool unit_cgroup_delegate(Unit *u) {
3083 CGroupContext *c;
3084
3085 assert(u);
3086
3087 if (!UNIT_VTABLE(u)->can_delegate)
3088 return false;
3089
3090 c = unit_get_cgroup_context(u);
3091 if (!c)
3092 return false;
3093
3094 return c->delegate;
3095}
3096
e7ab4d1a
LP
3097void manager_invalidate_startup_units(Manager *m) {
3098 Iterator i;
3099 Unit *u;
3100
3101 assert(m);
3102
3103 SET_FOREACH(u, m->startup_units, i)
13c31542 3104 unit_invalidate_cgroup(u, CGROUP_MASK_CPU|CGROUP_MASK_IO|CGROUP_MASK_BLKIO);
e7ab4d1a
LP
3105}
3106
4ad49000
LP
3107static const char* const cgroup_device_policy_table[_CGROUP_DEVICE_POLICY_MAX] = {
3108 [CGROUP_AUTO] = "auto",
3109 [CGROUP_CLOSED] = "closed",
3110 [CGROUP_STRICT] = "strict",
3111};
4fbf50b3 3112
4ad49000 3113DEFINE_STRING_TABLE_LOOKUP(cgroup_device_policy, CGroupDevicePolicy);