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