chiark / gitweb /
cgroup: drop unused parameter from function
[elogind.git] / src / core / cgroup.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2013 Lennart Poettering
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <fcntl.h>
21 #include <fnmatch.h>
22
23 #include "alloc-util.h"
24 //#include "bpf-firewall.h"
25 #include "cgroup-util.h"
26 #include "cgroup.h"
27 #include "fd-util.h"
28 #include "fileio.h"
29 #include "fs-util.h"
30 #include "parse-util.h"
31 #include "path-util.h"
32 #include "process-util.h"
33 //#include "special.h"
34 #include "stdio-util.h"
35 #include "string-table.h"
36 #include "string-util.h"
37
38 #define CGROUP_CPU_QUOTA_PERIOD_USEC ((usec_t) 100 * USEC_PER_MSEC)
39
40 #if 0 /// UNNEEDED by elogind
41 static void cgroup_compat_warn(void) {
42         static bool cgroup_compat_warned = false;
43
44         if (cgroup_compat_warned)
45                 return;
46
47         log_warning("cgroup compatibility translation between legacy and unified hierarchy settings activated. See cgroup-compat debug messages for details.");
48         cgroup_compat_warned = true;
49 }
50
51 #define log_cgroup_compat(unit, fmt, ...) do {                                  \
52                 cgroup_compat_warn();                                           \
53                 log_unit_debug(unit, "cgroup-compat: " fmt, ##__VA_ARGS__);     \
54         } while (false)
55
56 void cgroup_context_init(CGroupContext *c) {
57         assert(c);
58
59         /* Initialize everything to the kernel defaults, assuming the
60          * structure is preinitialized to 0 */
61
62         c->cpu_weight = CGROUP_WEIGHT_INVALID;
63         c->startup_cpu_weight = CGROUP_WEIGHT_INVALID;
64         c->cpu_quota_per_sec_usec = USEC_INFINITY;
65
66         c->cpu_shares = CGROUP_CPU_SHARES_INVALID;
67         c->startup_cpu_shares = CGROUP_CPU_SHARES_INVALID;
68
69         c->memory_high = CGROUP_LIMIT_MAX;
70         c->memory_max = CGROUP_LIMIT_MAX;
71         c->memory_swap_max = CGROUP_LIMIT_MAX;
72
73         c->memory_limit = CGROUP_LIMIT_MAX;
74
75         c->io_weight = CGROUP_WEIGHT_INVALID;
76         c->startup_io_weight = CGROUP_WEIGHT_INVALID;
77
78         c->blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID;
79         c->startup_blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID;
80
81         c->tasks_max = (uint64_t) -1;
82 }
83
84 void cgroup_context_free_device_allow(CGroupContext *c, CGroupDeviceAllow *a) {
85         assert(c);
86         assert(a);
87
88         LIST_REMOVE(device_allow, c->device_allow, a);
89         free(a->path);
90         free(a);
91 }
92
93 void cgroup_context_free_io_device_weight(CGroupContext *c, CGroupIODeviceWeight *w) {
94         assert(c);
95         assert(w);
96
97         LIST_REMOVE(device_weights, c->io_device_weights, w);
98         free(w->path);
99         free(w);
100 }
101
102 void cgroup_context_free_io_device_limit(CGroupContext *c, CGroupIODeviceLimit *l) {
103         assert(c);
104         assert(l);
105
106         LIST_REMOVE(device_limits, c->io_device_limits, l);
107         free(l->path);
108         free(l);
109 }
110
111 void cgroup_context_free_blockio_device_weight(CGroupContext *c, CGroupBlockIODeviceWeight *w) {
112         assert(c);
113         assert(w);
114
115         LIST_REMOVE(device_weights, c->blockio_device_weights, w);
116         free(w->path);
117         free(w);
118 }
119
120 void cgroup_context_free_blockio_device_bandwidth(CGroupContext *c, CGroupBlockIODeviceBandwidth *b) {
121         assert(c);
122         assert(b);
123
124         LIST_REMOVE(device_bandwidths, c->blockio_device_bandwidths, b);
125         free(b->path);
126         free(b);
127 }
128
129 void cgroup_context_done(CGroupContext *c) {
130         assert(c);
131
132         while (c->io_device_weights)
133                 cgroup_context_free_io_device_weight(c, c->io_device_weights);
134
135         while (c->io_device_limits)
136                 cgroup_context_free_io_device_limit(c, c->io_device_limits);
137
138         while (c->blockio_device_weights)
139                 cgroup_context_free_blockio_device_weight(c, c->blockio_device_weights);
140
141         while (c->blockio_device_bandwidths)
142                 cgroup_context_free_blockio_device_bandwidth(c, c->blockio_device_bandwidths);
143
144         while (c->device_allow)
145                 cgroup_context_free_device_allow(c, c->device_allow);
146
147         c->ip_address_allow = ip_address_access_free_all(c->ip_address_allow);
148         c->ip_address_deny = ip_address_access_free_all(c->ip_address_deny);
149 }
150
151 void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix) {
152         CGroupIODeviceLimit *il;
153         CGroupIODeviceWeight *iw;
154         CGroupBlockIODeviceBandwidth *b;
155         CGroupBlockIODeviceWeight *w;
156         CGroupDeviceAllow *a;
157         IPAddressAccessItem *iaai;
158         char u[FORMAT_TIMESPAN_MAX];
159
160         assert(c);
161         assert(f);
162
163         prefix = strempty(prefix);
164
165         fprintf(f,
166                 "%sCPUAccounting=%s\n"
167                 "%sIOAccounting=%s\n"
168                 "%sBlockIOAccounting=%s\n"
169                 "%sMemoryAccounting=%s\n"
170                 "%sTasksAccounting=%s\n"
171                 "%sIPAccounting=%s\n"
172                 "%sCPUWeight=%" PRIu64 "\n"
173                 "%sStartupCPUWeight=%" PRIu64 "\n"
174                 "%sCPUShares=%" PRIu64 "\n"
175                 "%sStartupCPUShares=%" PRIu64 "\n"
176                 "%sCPUQuotaPerSecSec=%s\n"
177                 "%sIOWeight=%" PRIu64 "\n"
178                 "%sStartupIOWeight=%" PRIu64 "\n"
179                 "%sBlockIOWeight=%" PRIu64 "\n"
180                 "%sStartupBlockIOWeight=%" PRIu64 "\n"
181                 "%sMemoryLow=%" PRIu64 "\n"
182                 "%sMemoryHigh=%" PRIu64 "\n"
183                 "%sMemoryMax=%" PRIu64 "\n"
184                 "%sMemorySwapMax=%" PRIu64 "\n"
185                 "%sMemoryLimit=%" PRIu64 "\n"
186                 "%sTasksMax=%" PRIu64 "\n"
187                 "%sDevicePolicy=%s\n"
188                 "%sDelegate=%s\n",
189                 prefix, yes_no(c->cpu_accounting),
190                 prefix, yes_no(c->io_accounting),
191                 prefix, yes_no(c->blockio_accounting),
192                 prefix, yes_no(c->memory_accounting),
193                 prefix, yes_no(c->tasks_accounting),
194                 prefix, yes_no(c->ip_accounting),
195                 prefix, c->cpu_weight,
196                 prefix, c->startup_cpu_weight,
197                 prefix, c->cpu_shares,
198                 prefix, c->startup_cpu_shares,
199                 prefix, format_timespan(u, sizeof(u), c->cpu_quota_per_sec_usec, 1),
200                 prefix, c->io_weight,
201                 prefix, c->startup_io_weight,
202                 prefix, c->blockio_weight,
203                 prefix, c->startup_blockio_weight,
204                 prefix, c->memory_low,
205                 prefix, c->memory_high,
206                 prefix, c->memory_max,
207                 prefix, c->memory_swap_max,
208                 prefix, c->memory_limit,
209                 prefix, c->tasks_max,
210                 prefix, cgroup_device_policy_to_string(c->device_policy),
211                 prefix, yes_no(c->delegate));
212
213         if (c->delegate) {
214                 _cleanup_free_ char *t = NULL;
215
216                 (void) cg_mask_to_string(c->delegate_controllers, &t);
217
218                 fprintf(f, "%sDelegateControllers=%s\n",
219                         prefix,
220                         strempty(t));
221         }
222
223         LIST_FOREACH(device_allow, a, c->device_allow)
224                 fprintf(f,
225                         "%sDeviceAllow=%s %s%s%s\n",
226                         prefix,
227                         a->path,
228                         a->r ? "r" : "", a->w ? "w" : "", a->m ? "m" : "");
229
230         LIST_FOREACH(device_weights, iw, c->io_device_weights)
231                 fprintf(f,
232                         "%sIODeviceWeight=%s %" PRIu64,
233                         prefix,
234                         iw->path,
235                         iw->weight);
236
237         LIST_FOREACH(device_limits, il, c->io_device_limits) {
238                 char buf[FORMAT_BYTES_MAX];
239                 CGroupIOLimitType type;
240
241                 for (type = 0; type < _CGROUP_IO_LIMIT_TYPE_MAX; type++)
242                         if (il->limits[type] != cgroup_io_limit_defaults[type])
243                                 fprintf(f,
244                                         "%s%s=%s %s\n",
245                                         prefix,
246                                         cgroup_io_limit_type_to_string(type),
247                                         il->path,
248                                         format_bytes(buf, sizeof(buf), il->limits[type]));
249         }
250
251         LIST_FOREACH(device_weights, w, c->blockio_device_weights)
252                 fprintf(f,
253                         "%sBlockIODeviceWeight=%s %" PRIu64,
254                         prefix,
255                         w->path,
256                         w->weight);
257
258         LIST_FOREACH(device_bandwidths, b, c->blockio_device_bandwidths) {
259                 char buf[FORMAT_BYTES_MAX];
260
261                 if (b->rbps != CGROUP_LIMIT_MAX)
262                         fprintf(f,
263                                 "%sBlockIOReadBandwidth=%s %s\n",
264                                 prefix,
265                                 b->path,
266                                 format_bytes(buf, sizeof(buf), b->rbps));
267                 if (b->wbps != CGROUP_LIMIT_MAX)
268                         fprintf(f,
269                                 "%sBlockIOWriteBandwidth=%s %s\n",
270                                 prefix,
271                                 b->path,
272                                 format_bytes(buf, sizeof(buf), b->wbps));
273         }
274
275         LIST_FOREACH(items, iaai, c->ip_address_allow) {
276                 _cleanup_free_ char *k = NULL;
277
278                 (void) in_addr_to_string(iaai->family, &iaai->address, &k);
279                 fprintf(f, "%sIPAddressAllow=%s/%u\n", prefix, strnull(k), iaai->prefixlen);
280         }
281
282         LIST_FOREACH(items, iaai, c->ip_address_deny) {
283                 _cleanup_free_ char *k = NULL;
284
285                 (void) in_addr_to_string(iaai->family, &iaai->address, &k);
286                 fprintf(f, "%sIPAddressDeny=%s/%u\n", prefix, strnull(k), iaai->prefixlen);
287         }
288 }
289
290 static int lookup_block_device(const char *p, dev_t *dev) {
291         struct stat st;
292         int r;
293
294         assert(p);
295         assert(dev);
296
297         r = stat(p, &st);
298         if (r < 0)
299                 return log_warning_errno(errno, "Couldn't stat device %s: %m", p);
300
301         if (S_ISBLK(st.st_mode))
302                 *dev = st.st_rdev;
303         else if (major(st.st_dev) != 0) {
304                 /* If this is not a device node then find the block
305                  * device this file is stored on */
306                 *dev = st.st_dev;
307
308                 /* If this is a partition, try to get the originating
309                  * block device */
310                 block_get_whole_disk(*dev, dev);
311         } else {
312                 log_warning("%s is not a block device and file system block device cannot be determined or is not local.", p);
313                 return -ENODEV;
314         }
315
316         return 0;
317 }
318
319 static int whitelist_device(const char *path, const char *node, const char *acc) {
320         char buf[2+DECIMAL_STR_MAX(dev_t)*2+2+4];
321         struct stat st;
322         bool ignore_notfound;
323         int r;
324
325         assert(path);
326         assert(acc);
327
328         if (node[0] == '-') {
329                 /* Non-existent paths starting with "-" must be silently ignored */
330                 node++;
331                 ignore_notfound = true;
332         } else
333                 ignore_notfound = false;
334
335         if (stat(node, &st) < 0) {
336                 if (errno == ENOENT && ignore_notfound)
337                         return 0;
338
339                 return log_warning_errno(errno, "Couldn't stat device %s: %m", node);
340         }
341
342         if (!S_ISCHR(st.st_mode) && !S_ISBLK(st.st_mode)) {
343                 log_warning("%s is not a device.", node);
344                 return -ENODEV;
345         }
346
347         sprintf(buf,
348                 "%c %u:%u %s",
349                 S_ISCHR(st.st_mode) ? 'c' : 'b',
350                 major(st.st_rdev), minor(st.st_rdev),
351                 acc);
352
353         r = cg_set_attribute("devices", path, "devices.allow", buf);
354         if (r < 0)
355                 log_full_errno(IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
356                                "Failed to set devices.allow on %s: %m", path);
357
358         return r;
359 }
360
361 static int whitelist_major(const char *path, const char *name, char type, const char *acc) {
362         _cleanup_fclose_ FILE *f = NULL;
363         char line[LINE_MAX];
364         bool good = false;
365         int r;
366
367         assert(path);
368         assert(acc);
369         assert(IN_SET(type, 'b', 'c'));
370
371         f = fopen("/proc/devices", "re");
372         if (!f)
373                 return log_warning_errno(errno, "Cannot open /proc/devices to resolve %s (%c): %m", name, type);
374
375         FOREACH_LINE(line, f, goto fail) {
376                 char buf[2+DECIMAL_STR_MAX(unsigned)+3+4], *p, *w;
377                 unsigned maj;
378
379                 truncate_nl(line);
380
381                 if (type == 'c' && streq(line, "Character devices:")) {
382                         good = true;
383                         continue;
384                 }
385
386                 if (type == 'b' && streq(line, "Block devices:")) {
387                         good = true;
388                         continue;
389                 }
390
391                 if (isempty(line)) {
392                         good = false;
393                         continue;
394                 }
395
396                 if (!good)
397                         continue;
398
399                 p = strstrip(line);
400
401                 w = strpbrk(p, WHITESPACE);
402                 if (!w)
403                         continue;
404                 *w = 0;
405
406                 r = safe_atou(p, &maj);
407                 if (r < 0)
408                         continue;
409                 if (maj <= 0)
410                         continue;
411
412                 w++;
413                 w += strspn(w, WHITESPACE);
414
415                 if (fnmatch(name, w, 0) != 0)
416                         continue;
417
418                 sprintf(buf,
419                         "%c %u:* %s",
420                         type,
421                         maj,
422                         acc);
423
424                 r = cg_set_attribute("devices", path, "devices.allow", buf);
425                 if (r < 0)
426                         log_full_errno(IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
427                                        "Failed to set devices.allow on %s: %m", path);
428         }
429
430         return 0;
431
432 fail:
433         return log_warning_errno(errno, "Failed to read /proc/devices: %m");
434 }
435
436 static bool cgroup_context_has_cpu_weight(CGroupContext *c) {
437         return c->cpu_weight != CGROUP_WEIGHT_INVALID ||
438                 c->startup_cpu_weight != CGROUP_WEIGHT_INVALID;
439 }
440
441 static bool cgroup_context_has_cpu_shares(CGroupContext *c) {
442         return c->cpu_shares != CGROUP_CPU_SHARES_INVALID ||
443                 c->startup_cpu_shares != CGROUP_CPU_SHARES_INVALID;
444 }
445
446 static uint64_t cgroup_context_cpu_weight(CGroupContext *c, ManagerState state) {
447         if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
448             c->startup_cpu_weight != CGROUP_WEIGHT_INVALID)
449                 return c->startup_cpu_weight;
450         else if (c->cpu_weight != CGROUP_WEIGHT_INVALID)
451                 return c->cpu_weight;
452         else
453                 return CGROUP_WEIGHT_DEFAULT;
454 }
455
456 static uint64_t cgroup_context_cpu_shares(CGroupContext *c, ManagerState state) {
457         if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
458             c->startup_cpu_shares != CGROUP_CPU_SHARES_INVALID)
459                 return c->startup_cpu_shares;
460         else if (c->cpu_shares != CGROUP_CPU_SHARES_INVALID)
461                 return c->cpu_shares;
462         else
463                 return CGROUP_CPU_SHARES_DEFAULT;
464 }
465
466 static void cgroup_apply_unified_cpu_config(Unit *u, uint64_t weight, uint64_t quota) {
467         char buf[MAX(DECIMAL_STR_MAX(uint64_t) + 1, (DECIMAL_STR_MAX(usec_t) + 1) * 2)];
468         int r;
469
470         xsprintf(buf, "%" PRIu64 "\n", weight);
471         r = cg_set_attribute("cpu", u->cgroup_path, "cpu.weight", buf);
472         if (r < 0)
473                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
474                               "Failed to set cpu.weight: %m");
475
476         if (quota != USEC_INFINITY)
477                 xsprintf(buf, USEC_FMT " " USEC_FMT "\n",
478                          quota * CGROUP_CPU_QUOTA_PERIOD_USEC / USEC_PER_SEC, CGROUP_CPU_QUOTA_PERIOD_USEC);
479         else
480                 xsprintf(buf, "max " USEC_FMT "\n", CGROUP_CPU_QUOTA_PERIOD_USEC);
481
482         r = cg_set_attribute("cpu", u->cgroup_path, "cpu.max", buf);
483
484         if (r < 0)
485                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
486                               "Failed to set cpu.max: %m");
487 }
488
489 static void cgroup_apply_legacy_cpu_config(Unit *u, uint64_t shares, uint64_t quota) {
490         char buf[MAX(DECIMAL_STR_MAX(uint64_t), DECIMAL_STR_MAX(usec_t)) + 1];
491         int r;
492
493         xsprintf(buf, "%" PRIu64 "\n", shares);
494         r = cg_set_attribute("cpu", u->cgroup_path, "cpu.shares", buf);
495         if (r < 0)
496                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
497                               "Failed to set cpu.shares: %m");
498
499         xsprintf(buf, USEC_FMT "\n", CGROUP_CPU_QUOTA_PERIOD_USEC);
500         r = cg_set_attribute("cpu", u->cgroup_path, "cpu.cfs_period_us", buf);
501         if (r < 0)
502                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
503                               "Failed to set cpu.cfs_period_us: %m");
504
505         if (quota != USEC_INFINITY) {
506                 xsprintf(buf, USEC_FMT "\n", quota * CGROUP_CPU_QUOTA_PERIOD_USEC / USEC_PER_SEC);
507                 r = cg_set_attribute("cpu", u->cgroup_path, "cpu.cfs_quota_us", buf);
508         } else
509                 r = cg_set_attribute("cpu", u->cgroup_path, "cpu.cfs_quota_us", "-1");
510         if (r < 0)
511                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
512                               "Failed to set cpu.cfs_quota_us: %m");
513 }
514
515 static uint64_t cgroup_cpu_shares_to_weight(uint64_t shares) {
516         return CLAMP(shares * CGROUP_WEIGHT_DEFAULT / CGROUP_CPU_SHARES_DEFAULT,
517                      CGROUP_WEIGHT_MIN, CGROUP_WEIGHT_MAX);
518 }
519
520 static uint64_t cgroup_cpu_weight_to_shares(uint64_t weight) {
521         return CLAMP(weight * CGROUP_CPU_SHARES_DEFAULT / CGROUP_WEIGHT_DEFAULT,
522                      CGROUP_CPU_SHARES_MIN, CGROUP_CPU_SHARES_MAX);
523 }
524
525 static bool cgroup_context_has_io_config(CGroupContext *c) {
526         return c->io_accounting ||
527                 c->io_weight != CGROUP_WEIGHT_INVALID ||
528                 c->startup_io_weight != CGROUP_WEIGHT_INVALID ||
529                 c->io_device_weights ||
530                 c->io_device_limits;
531 }
532
533 static bool cgroup_context_has_blockio_config(CGroupContext *c) {
534         return c->blockio_accounting ||
535                 c->blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID ||
536                 c->startup_blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID ||
537                 c->blockio_device_weights ||
538                 c->blockio_device_bandwidths;
539 }
540
541 static uint64_t cgroup_context_io_weight(CGroupContext *c, ManagerState state) {
542         if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
543             c->startup_io_weight != CGROUP_WEIGHT_INVALID)
544                 return c->startup_io_weight;
545         else if (c->io_weight != CGROUP_WEIGHT_INVALID)
546                 return c->io_weight;
547         else
548                 return CGROUP_WEIGHT_DEFAULT;
549 }
550
551 static uint64_t cgroup_context_blkio_weight(CGroupContext *c, ManagerState state) {
552         if (IN_SET(state, MANAGER_STARTING, MANAGER_INITIALIZING) &&
553             c->startup_blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID)
554                 return c->startup_blockio_weight;
555         else if (c->blockio_weight != CGROUP_BLKIO_WEIGHT_INVALID)
556                 return c->blockio_weight;
557         else
558                 return CGROUP_BLKIO_WEIGHT_DEFAULT;
559 }
560
561 static uint64_t cgroup_weight_blkio_to_io(uint64_t blkio_weight) {
562         return CLAMP(blkio_weight * CGROUP_WEIGHT_DEFAULT / CGROUP_BLKIO_WEIGHT_DEFAULT,
563                      CGROUP_WEIGHT_MIN, CGROUP_WEIGHT_MAX);
564 }
565
566 static uint64_t cgroup_weight_io_to_blkio(uint64_t io_weight) {
567         return CLAMP(io_weight * CGROUP_BLKIO_WEIGHT_DEFAULT / CGROUP_WEIGHT_DEFAULT,
568                      CGROUP_BLKIO_WEIGHT_MIN, CGROUP_BLKIO_WEIGHT_MAX);
569 }
570
571 static void cgroup_apply_io_device_weight(Unit *u, const char *dev_path, uint64_t io_weight) {
572         char buf[DECIMAL_STR_MAX(dev_t)*2+2+DECIMAL_STR_MAX(uint64_t)+1];
573         dev_t dev;
574         int r;
575
576         r = lookup_block_device(dev_path, &dev);
577         if (r < 0)
578                 return;
579
580         xsprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), io_weight);
581         r = cg_set_attribute("io", u->cgroup_path, "io.weight", buf);
582         if (r < 0)
583                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
584                               "Failed to set io.weight: %m");
585 }
586
587 static void cgroup_apply_blkio_device_weight(Unit *u, const char *dev_path, uint64_t blkio_weight) {
588         char buf[DECIMAL_STR_MAX(dev_t)*2+2+DECIMAL_STR_MAX(uint64_t)+1];
589         dev_t dev;
590         int r;
591
592         r = lookup_block_device(dev_path, &dev);
593         if (r < 0)
594                 return;
595
596         xsprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), blkio_weight);
597         r = cg_set_attribute("blkio", u->cgroup_path, "blkio.weight_device", buf);
598         if (r < 0)
599                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
600                               "Failed to set blkio.weight_device: %m");
601 }
602
603 static unsigned cgroup_apply_io_device_limit(Unit *u, const char *dev_path, uint64_t *limits) {
604         char limit_bufs[_CGROUP_IO_LIMIT_TYPE_MAX][DECIMAL_STR_MAX(uint64_t)];
605         char buf[DECIMAL_STR_MAX(dev_t)*2+2+(6+DECIMAL_STR_MAX(uint64_t)+1)*4];
606         CGroupIOLimitType type;
607         dev_t dev;
608         unsigned n = 0;
609         int r;
610
611         r = lookup_block_device(dev_path, &dev);
612         if (r < 0)
613                 return 0;
614
615         for (type = 0; type < _CGROUP_IO_LIMIT_TYPE_MAX; type++) {
616                 if (limits[type] != cgroup_io_limit_defaults[type]) {
617                         xsprintf(limit_bufs[type], "%" PRIu64, limits[type]);
618                         n++;
619                 } else {
620                         xsprintf(limit_bufs[type], "%s", limits[type] == CGROUP_LIMIT_MAX ? "max" : "0");
621                 }
622         }
623
624         xsprintf(buf, "%u:%u rbps=%s wbps=%s riops=%s wiops=%s\n", major(dev), minor(dev),
625                  limit_bufs[CGROUP_IO_RBPS_MAX], limit_bufs[CGROUP_IO_WBPS_MAX],
626                  limit_bufs[CGROUP_IO_RIOPS_MAX], limit_bufs[CGROUP_IO_WIOPS_MAX]);
627         r = cg_set_attribute("io", u->cgroup_path, "io.max", buf);
628         if (r < 0)
629                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
630                               "Failed to set io.max: %m");
631         return n;
632 }
633
634 static unsigned cgroup_apply_blkio_device_limit(Unit *u, const char *dev_path, uint64_t rbps, uint64_t wbps) {
635         char buf[DECIMAL_STR_MAX(dev_t)*2+2+DECIMAL_STR_MAX(uint64_t)+1];
636         dev_t dev;
637         unsigned n = 0;
638         int r;
639
640         r = lookup_block_device(dev_path, &dev);
641         if (r < 0)
642                 return 0;
643
644         if (rbps != CGROUP_LIMIT_MAX)
645                 n++;
646         sprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), rbps);
647         r = cg_set_attribute("blkio", u->cgroup_path, "blkio.throttle.read_bps_device", buf);
648         if (r < 0)
649                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
650                               "Failed to set blkio.throttle.read_bps_device: %m");
651
652         if (wbps != CGROUP_LIMIT_MAX)
653                 n++;
654         sprintf(buf, "%u:%u %" PRIu64 "\n", major(dev), minor(dev), wbps);
655         r = cg_set_attribute("blkio", u->cgroup_path, "blkio.throttle.write_bps_device", buf);
656         if (r < 0)
657                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
658                               "Failed to set blkio.throttle.write_bps_device: %m");
659
660         return n;
661 }
662
663 static bool cgroup_context_has_unified_memory_config(CGroupContext *c) {
664         return c->memory_low > 0 || c->memory_high != CGROUP_LIMIT_MAX || c->memory_max != CGROUP_LIMIT_MAX || c->memory_swap_max != CGROUP_LIMIT_MAX;
665 }
666
667 static void cgroup_apply_unified_memory_limit(Unit *u, const char *file, uint64_t v) {
668         char buf[DECIMAL_STR_MAX(uint64_t) + 1] = "max";
669         int r;
670
671         if (v != CGROUP_LIMIT_MAX)
672                 xsprintf(buf, "%" PRIu64 "\n", v);
673
674         r = cg_set_attribute("memory", u->cgroup_path, file, buf);
675         if (r < 0)
676                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
677                               "Failed to set %s: %m", file);
678 }
679
680 static void cgroup_apply_firewall(Unit *u) {
681         int r;
682
683         assert(u);
684
685         if (u->type == UNIT_SLICE) /* Skip this for slice units, they are inner cgroup nodes, and since bpf/cgroup is
686                                     * not recursive we don't ever touch the bpf on them */
687                 return;
688
689         r = bpf_firewall_compile(u);
690         if (r < 0)
691                 return;
692
693         (void) bpf_firewall_install(u);
694         return;
695 }
696
697 static void cgroup_context_apply(
698                 Unit *u,
699                 CGroupMask apply_mask,
700                 bool apply_bpf,
701                 ManagerState state) {
702
703         const char *path;
704         CGroupContext *c;
705         bool is_root;
706         int r;
707
708         assert(u);
709
710         c = unit_get_cgroup_context(u);
711         path = u->cgroup_path;
712
713         assert(c);
714         assert(path);
715
716         /* Nothing to do? Exit early! */
717         if (apply_mask == 0 && !apply_bpf)
718                 return;
719
720         /* Some cgroup attributes are not supported on the root cgroup,
721          * hence silently ignore */
722         is_root = isempty(path) || path_equal(path, "/");
723         if (is_root)
724                 /* Make sure we don't try to display messages with an empty path. */
725                 path = "/";
726
727         /* We generally ignore errors caused by read-only mounted
728          * cgroup trees (assuming we are running in a container then),
729          * and missing cgroups, i.e. EROFS and ENOENT. */
730
731         if ((apply_mask & CGROUP_MASK_CPU) && !is_root) {
732                 bool has_weight, has_shares;
733
734                 has_weight = cgroup_context_has_cpu_weight(c);
735                 has_shares = cgroup_context_has_cpu_shares(c);
736
737                 if (cg_all_unified() > 0) {
738                         uint64_t weight;
739
740                         if (has_weight)
741                                 weight = cgroup_context_cpu_weight(c, state);
742                         else if (has_shares) {
743                                 uint64_t shares = cgroup_context_cpu_shares(c, state);
744
745                                 weight = cgroup_cpu_shares_to_weight(shares);
746
747                                 log_cgroup_compat(u, "Applying [Startup]CpuShares %" PRIu64 " as [Startup]CpuWeight %" PRIu64 " on %s",
748                                                   shares, weight, path);
749                         } else
750                                 weight = CGROUP_WEIGHT_DEFAULT;
751
752                         cgroup_apply_unified_cpu_config(u, weight, c->cpu_quota_per_sec_usec);
753                 } else {
754                         uint64_t shares;
755
756                         if (has_weight) {
757                                 uint64_t weight = cgroup_context_cpu_weight(c, state);
758
759                                 shares = cgroup_cpu_weight_to_shares(weight);
760
761                                 log_cgroup_compat(u, "Applying [Startup]CpuWeight %" PRIu64 " as [Startup]CpuShares %" PRIu64 " on %s",
762                                                   weight, shares, path);
763                         } else if (has_shares)
764                                 shares = cgroup_context_cpu_shares(c, state);
765                         else
766                                 shares = CGROUP_CPU_SHARES_DEFAULT;
767
768                         cgroup_apply_legacy_cpu_config(u, shares, c->cpu_quota_per_sec_usec);
769                 }
770         }
771
772         if (apply_mask & CGROUP_MASK_IO) {
773                 bool has_io = cgroup_context_has_io_config(c);
774                 bool has_blockio = cgroup_context_has_blockio_config(c);
775
776                 if (!is_root) {
777                         char buf[8+DECIMAL_STR_MAX(uint64_t)+1];
778                         uint64_t weight;
779
780                         if (has_io)
781                                 weight = cgroup_context_io_weight(c, state);
782                         else if (has_blockio) {
783                                 uint64_t blkio_weight = cgroup_context_blkio_weight(c, state);
784
785                                 weight = cgroup_weight_blkio_to_io(blkio_weight);
786
787                                 log_cgroup_compat(u, "Applying [Startup]BlockIOWeight %" PRIu64 " as [Startup]IOWeight %" PRIu64,
788                                                   blkio_weight, weight);
789                         } else
790                                 weight = CGROUP_WEIGHT_DEFAULT;
791
792                         xsprintf(buf, "default %" PRIu64 "\n", weight);
793                         r = cg_set_attribute("io", path, "io.weight", buf);
794                         if (r < 0)
795                                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
796                                               "Failed to set io.weight: %m");
797
798                         if (has_io) {
799                                 CGroupIODeviceWeight *w;
800
801                                 /* FIXME: no way to reset this list */
802                                 LIST_FOREACH(device_weights, w, c->io_device_weights)
803                                         cgroup_apply_io_device_weight(u, w->path, w->weight);
804                         } else if (has_blockio) {
805                                 CGroupBlockIODeviceWeight *w;
806
807                                 /* FIXME: no way to reset this list */
808                                 LIST_FOREACH(device_weights, w, c->blockio_device_weights) {
809                                         weight = cgroup_weight_blkio_to_io(w->weight);
810
811                                         log_cgroup_compat(u, "Applying BlockIODeviceWeight %" PRIu64 " as IODeviceWeight %" PRIu64 " for %s",
812                                                           w->weight, weight, w->path);
813
814                                         cgroup_apply_io_device_weight(u, w->path, weight);
815                                 }
816                         }
817                 }
818
819                 /* Apply limits and free ones without config. */
820                 if (has_io) {
821                         CGroupIODeviceLimit *l, *next;
822
823                         LIST_FOREACH_SAFE(device_limits, l, next, c->io_device_limits) {
824                                 if (!cgroup_apply_io_device_limit(u, l->path, l->limits))
825                                         cgroup_context_free_io_device_limit(c, l);
826                         }
827                 } else if (has_blockio) {
828                         CGroupBlockIODeviceBandwidth *b, *next;
829
830                         LIST_FOREACH_SAFE(device_bandwidths, b, next, c->blockio_device_bandwidths) {
831                                 uint64_t limits[_CGROUP_IO_LIMIT_TYPE_MAX];
832                                 CGroupIOLimitType type;
833
834                                 for (type = 0; type < _CGROUP_IO_LIMIT_TYPE_MAX; type++)
835                                         limits[type] = cgroup_io_limit_defaults[type];
836
837                                 limits[CGROUP_IO_RBPS_MAX] = b->rbps;
838                                 limits[CGROUP_IO_WBPS_MAX] = b->wbps;
839
840                                 log_cgroup_compat(u, "Applying BlockIO{Read|Write}Bandwidth %" PRIu64 " %" PRIu64 " as IO{Read|Write}BandwidthMax for %s",
841                                                   b->rbps, b->wbps, b->path);
842
843                                 if (!cgroup_apply_io_device_limit(u, b->path, limits))
844                                         cgroup_context_free_blockio_device_bandwidth(c, b);
845                         }
846                 }
847         }
848
849         if (apply_mask & CGROUP_MASK_BLKIO) {
850                 bool has_io = cgroup_context_has_io_config(c);
851                 bool has_blockio = cgroup_context_has_blockio_config(c);
852
853                 if (!is_root) {
854                         char buf[DECIMAL_STR_MAX(uint64_t)+1];
855                         uint64_t weight;
856
857                         if (has_io) {
858                                 uint64_t io_weight = cgroup_context_io_weight(c, state);
859
860                                 weight = cgroup_weight_io_to_blkio(cgroup_context_io_weight(c, state));
861
862                                 log_cgroup_compat(u, "Applying [Startup]IOWeight %" PRIu64 " as [Startup]BlockIOWeight %" PRIu64,
863                                                   io_weight, weight);
864                         } else if (has_blockio)
865                                 weight = cgroup_context_blkio_weight(c, state);
866                         else
867                                 weight = CGROUP_BLKIO_WEIGHT_DEFAULT;
868
869                         xsprintf(buf, "%" PRIu64 "\n", weight);
870                         r = cg_set_attribute("blkio", path, "blkio.weight", buf);
871                         if (r < 0)
872                                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
873                                               "Failed to set blkio.weight: %m");
874
875                         if (has_io) {
876                                 CGroupIODeviceWeight *w;
877
878                                 /* FIXME: no way to reset this list */
879                                 LIST_FOREACH(device_weights, w, c->io_device_weights) {
880                                         weight = cgroup_weight_io_to_blkio(w->weight);
881
882                                         log_cgroup_compat(u, "Applying IODeviceWeight %" PRIu64 " as BlockIODeviceWeight %" PRIu64 " for %s",
883                                                           w->weight, weight, w->path);
884
885                                         cgroup_apply_blkio_device_weight(u, w->path, weight);
886                                 }
887                         } else if (has_blockio) {
888                                 CGroupBlockIODeviceWeight *w;
889
890                                 /* FIXME: no way to reset this list */
891                                 LIST_FOREACH(device_weights, w, c->blockio_device_weights)
892                                         cgroup_apply_blkio_device_weight(u, w->path, w->weight);
893                         }
894                 }
895
896                 /* Apply limits and free ones without config. */
897                 if (has_io) {
898                         CGroupIODeviceLimit *l, *next;
899
900                         LIST_FOREACH_SAFE(device_limits, l, next, c->io_device_limits) {
901                                 log_cgroup_compat(u, "Applying IO{Read|Write}Bandwidth %" PRIu64 " %" PRIu64 " as BlockIO{Read|Write}BandwidthMax for %s",
902                                                   l->limits[CGROUP_IO_RBPS_MAX], l->limits[CGROUP_IO_WBPS_MAX], l->path);
903
904                                 if (!cgroup_apply_blkio_device_limit(u, l->path, l->limits[CGROUP_IO_RBPS_MAX], l->limits[CGROUP_IO_WBPS_MAX]))
905                                         cgroup_context_free_io_device_limit(c, l);
906                         }
907                 } else if (has_blockio) {
908                         CGroupBlockIODeviceBandwidth *b, *next;
909
910                         LIST_FOREACH_SAFE(device_bandwidths, b, next, c->blockio_device_bandwidths)
911                                 if (!cgroup_apply_blkio_device_limit(u, b->path, b->rbps, b->wbps))
912                                         cgroup_context_free_blockio_device_bandwidth(c, b);
913                 }
914         }
915
916         if ((apply_mask & CGROUP_MASK_MEMORY) && !is_root) {
917                 if (cg_all_unified() > 0) {
918                         uint64_t max, swap_max = CGROUP_LIMIT_MAX;
919
920                         if (cgroup_context_has_unified_memory_config(c)) {
921                                 max = c->memory_max;
922                                 swap_max = c->memory_swap_max;
923                         } else {
924                                 max = c->memory_limit;
925
926                                 if (max != CGROUP_LIMIT_MAX)
927                                         log_cgroup_compat(u, "Applying MemoryLimit %" PRIu64 " as MemoryMax", max);
928                         }
929
930                         cgroup_apply_unified_memory_limit(u, "memory.low", c->memory_low);
931                         cgroup_apply_unified_memory_limit(u, "memory.high", c->memory_high);
932                         cgroup_apply_unified_memory_limit(u, "memory.max", max);
933                         cgroup_apply_unified_memory_limit(u, "memory.swap.max", swap_max);
934                 } else {
935                         char buf[DECIMAL_STR_MAX(uint64_t) + 1];
936                         uint64_t val;
937
938                         if (cgroup_context_has_unified_memory_config(c)) {
939                                 val = c->memory_max;
940                                 log_cgroup_compat(u, "Applying MemoryMax %" PRIi64 " as MemoryLimit", val);
941                         } else
942                                 val = c->memory_limit;
943
944                         if (val == CGROUP_LIMIT_MAX)
945                                 strncpy(buf, "-1\n", sizeof(buf));
946                         else
947                                 xsprintf(buf, "%" PRIu64 "\n", val);
948
949                         r = cg_set_attribute("memory", path, "memory.limit_in_bytes", buf);
950                         if (r < 0)
951                                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
952                                               "Failed to set memory.limit_in_bytes: %m");
953                 }
954         }
955
956         if ((apply_mask & CGROUP_MASK_DEVICES) && !is_root) {
957                 CGroupDeviceAllow *a;
958
959                 /* Changing the devices list of a populated cgroup
960                  * might result in EINVAL, hence ignore EINVAL
961                  * here. */
962
963                 if (c->device_allow || c->device_policy != CGROUP_AUTO)
964                         r = cg_set_attribute("devices", path, "devices.deny", "a");
965                 else
966                         r = cg_set_attribute("devices", path, "devices.allow", "a");
967                 if (r < 0)
968                         log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EINVAL, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
969                                       "Failed to reset devices.list: %m");
970
971                 if (c->device_policy == CGROUP_CLOSED ||
972                     (c->device_policy == CGROUP_AUTO && c->device_allow)) {
973                         static const char auto_devices[] =
974                                 "/dev/null\0" "rwm\0"
975                                 "/dev/zero\0" "rwm\0"
976                                 "/dev/full\0" "rwm\0"
977                                 "/dev/random\0" "rwm\0"
978                                 "/dev/urandom\0" "rwm\0"
979                                 "/dev/tty\0" "rwm\0"
980                                 "/dev/pts/ptmx\0" "rw\0" /* /dev/pts/ptmx may not be duplicated, but accessed */
981                                 /* Allow /run/elogind/inaccessible/{chr,blk} devices for mapping InaccessiblePaths */
982                                 /* Allow /run/systemd/inaccessible/{chr,blk} devices for mapping InaccessiblePaths */
983                                 "-/run/systemd/inaccessible/chr\0" "rwm\0"
984                                 "-/run/systemd/inaccessible/blk\0" "rwm\0";
985
986                         const char *x, *y;
987
988                         NULSTR_FOREACH_PAIR(x, y, auto_devices)
989                                 whitelist_device(path, x, y);
990
991                         whitelist_major(path, "pts", 'c', "rw");
992                 }
993
994                 LIST_FOREACH(device_allow, a, c->device_allow) {
995                         char acc[4], *val;
996                         unsigned k = 0;
997
998                         if (a->r)
999                                 acc[k++] = 'r';
1000                         if (a->w)
1001                                 acc[k++] = 'w';
1002                         if (a->m)
1003                                 acc[k++] = 'm';
1004
1005                         if (k == 0)
1006                                 continue;
1007
1008                         acc[k++] = 0;
1009
1010                         if (path_startswith(a->path, "/dev/"))
1011                                 whitelist_device(path, a->path, acc);
1012                         else if ((val = startswith(a->path, "block-")))
1013                                 whitelist_major(path, val, 'b', acc);
1014                         else if ((val = startswith(a->path, "char-")))
1015                                 whitelist_major(path, val, 'c', acc);
1016                         else
1017                                 log_unit_debug(u, "Ignoring device %s while writing cgroup attribute.", a->path);
1018                 }
1019         }
1020
1021         if ((apply_mask & CGROUP_MASK_PIDS) && !is_root) {
1022
1023                 if (c->tasks_max != CGROUP_LIMIT_MAX) {
1024                         char buf[DECIMAL_STR_MAX(uint64_t) + 2];
1025
1026                         sprintf(buf, "%" PRIu64 "\n", c->tasks_max);
1027                         r = cg_set_attribute("pids", path, "pids.max", buf);
1028                 } else
1029                         r = cg_set_attribute("pids", path, "pids.max", "max");
1030
1031                 if (r < 0)
1032                         log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
1033                                       "Failed to set pids.max: %m");
1034         }
1035
1036         if (apply_bpf)
1037                 cgroup_apply_firewall(u);
1038 }
1039
1040 CGroupMask cgroup_context_get_mask(CGroupContext *c) {
1041         CGroupMask mask = 0;
1042
1043         /* Figure out which controllers we need */
1044
1045         if (c->cpu_accounting ||
1046             cgroup_context_has_cpu_weight(c) ||
1047             cgroup_context_has_cpu_shares(c) ||
1048             c->cpu_quota_per_sec_usec != USEC_INFINITY)
1049                 mask |= CGROUP_MASK_CPUACCT | CGROUP_MASK_CPU;
1050
1051         if (cgroup_context_has_io_config(c) || cgroup_context_has_blockio_config(c))
1052                 mask |= CGROUP_MASK_IO | CGROUP_MASK_BLKIO;
1053
1054         if (c->memory_accounting ||
1055             c->memory_limit != CGROUP_LIMIT_MAX ||
1056             cgroup_context_has_unified_memory_config(c))
1057                 mask |= CGROUP_MASK_MEMORY;
1058
1059         if (c->device_allow ||
1060             c->device_policy != CGROUP_AUTO)
1061                 mask |= CGROUP_MASK_DEVICES;
1062
1063         if (c->tasks_accounting ||
1064             c->tasks_max != (uint64_t) -1)
1065                 mask |= CGROUP_MASK_PIDS;
1066
1067         return mask;
1068 }
1069
1070 CGroupMask unit_get_own_mask(Unit *u) {
1071         CGroupContext *c;
1072
1073         /* Returns the mask of controllers the unit needs for itself */
1074
1075         c = unit_get_cgroup_context(u);
1076         if (!c)
1077                 return 0;
1078
1079         return cgroup_context_get_mask(c) | unit_get_delegate_mask(u);
1080 }
1081
1082 CGroupMask unit_get_delegate_mask(Unit *u) {
1083         CGroupContext *c;
1084
1085         /* If delegation is turned on, then turn on selected controllers, unless we are on the legacy hierarchy and the
1086          * process we fork into is known to drop privileges, and hence shouldn't get access to the controllers.
1087          *
1088          * Note that on the unified hierarchy it is safe to delegate controllers to unprivileged services. */
1089
1090         if (u->type == UNIT_SLICE)
1091                 return 0;
1092
1093         c = unit_get_cgroup_context(u);
1094         if (!c)
1095                 return 0;
1096
1097         if (!c->delegate)
1098                 return 0;
1099
1100         if (cg_all_unified() <= 0) {
1101                 ExecContext *e;
1102
1103                 e = unit_get_exec_context(u);
1104                 if (e && !exec_context_maintains_privileges(e))
1105                         return 0;
1106         }
1107
1108         return c->delegate_controllers;
1109 }
1110
1111 CGroupMask unit_get_members_mask(Unit *u) {
1112         assert(u);
1113
1114         /* Returns the mask of controllers all of the unit's children require, merged */
1115
1116         if (u->cgroup_members_mask_valid)
1117                 return u->cgroup_members_mask;
1118
1119         u->cgroup_members_mask = 0;
1120
1121         if (u->type == UNIT_SLICE) {
1122                 void *v;
1123                 Unit *member;
1124                 Iterator i;
1125
1126                 HASHMAP_FOREACH_KEY(v, member, u->dependencies[UNIT_BEFORE], i) {
1127
1128                         if (member == u)
1129                                 continue;
1130
1131                         if (UNIT_DEREF(member->slice) != u)
1132                                 continue;
1133
1134                         u->cgroup_members_mask |= unit_get_subtree_mask(member); /* note that this calls ourselves again, for the children */
1135                 }
1136         }
1137
1138         u->cgroup_members_mask_valid = true;
1139         return u->cgroup_members_mask;
1140 }
1141
1142 CGroupMask unit_get_siblings_mask(Unit *u) {
1143         assert(u);
1144
1145         /* Returns the mask of controllers all of the unit's siblings
1146          * require, i.e. the members mask of the unit's parent slice
1147          * if there is one. */
1148
1149         if (UNIT_ISSET(u->slice))
1150                 return unit_get_members_mask(UNIT_DEREF(u->slice));
1151
1152         return unit_get_subtree_mask(u); /* we are the top-level slice */
1153 }
1154
1155 CGroupMask unit_get_subtree_mask(Unit *u) {
1156
1157         /* Returns the mask of this subtree, meaning of the group
1158          * itself and its children. */
1159
1160         return unit_get_own_mask(u) | unit_get_members_mask(u);
1161 }
1162
1163 CGroupMask unit_get_target_mask(Unit *u) {
1164         CGroupMask mask;
1165
1166         /* This returns the cgroup mask of all controllers to enable
1167          * for a specific cgroup, i.e. everything it needs itself,
1168          * plus all that its children need, plus all that its siblings
1169          * need. This is primarily useful on the legacy cgroup
1170          * hierarchy, where we need to duplicate each cgroup in each
1171          * hierarchy that shall be enabled for it. */
1172
1173         mask = unit_get_own_mask(u) | unit_get_members_mask(u) | unit_get_siblings_mask(u);
1174         mask &= u->manager->cgroup_supported;
1175
1176         return mask;
1177 }
1178
1179 CGroupMask unit_get_enable_mask(Unit *u) {
1180         CGroupMask mask;
1181
1182         /* This returns the cgroup mask of all controllers to enable
1183          * for the children of a specific cgroup. This is primarily
1184          * useful for the unified cgroup hierarchy, where each cgroup
1185          * controls which controllers are enabled for its children. */
1186
1187         mask = unit_get_members_mask(u);
1188         mask &= u->manager->cgroup_supported;
1189
1190         return mask;
1191 }
1192
1193 bool unit_get_needs_bpf(Unit *u) {
1194         CGroupContext *c;
1195         Unit *p;
1196         assert(u);
1197
1198         /* We never attach BPF to slice units, as they are inner cgroup nodes and cgroup/BPF is not recursive at the
1199          * moment. */
1200         if (u->type == UNIT_SLICE)
1201                 return false;
1202
1203         c = unit_get_cgroup_context(u);
1204         if (!c)
1205                 return false;
1206
1207         if (c->ip_accounting ||
1208             c->ip_address_allow ||
1209             c->ip_address_deny)
1210                 return true;
1211
1212         /* If any parent slice has an IP access list defined, it applies too */
1213         for (p = UNIT_DEREF(u->slice); p; p = UNIT_DEREF(p->slice)) {
1214                 c = unit_get_cgroup_context(p);
1215                 if (!c)
1216                         return false;
1217
1218                 if (c->ip_address_allow ||
1219                     c->ip_address_deny)
1220                         return true;
1221         }
1222
1223         return false;
1224 }
1225
1226 /* Recurse from a unit up through its containing slices, propagating
1227  * mask bits upward. A unit is also member of itself. */
1228 void unit_update_cgroup_members_masks(Unit *u) {
1229         CGroupMask m;
1230         bool more;
1231
1232         assert(u);
1233
1234         /* Calculate subtree mask */
1235         m = unit_get_subtree_mask(u);
1236
1237         /* See if anything changed from the previous invocation. If
1238          * not, we're done. */
1239         if (u->cgroup_subtree_mask_valid && m == u->cgroup_subtree_mask)
1240                 return;
1241
1242         more =
1243                 u->cgroup_subtree_mask_valid &&
1244                 ((m & ~u->cgroup_subtree_mask) != 0) &&
1245                 ((~m & u->cgroup_subtree_mask) == 0);
1246
1247         u->cgroup_subtree_mask = m;
1248         u->cgroup_subtree_mask_valid = true;
1249
1250         if (UNIT_ISSET(u->slice)) {
1251                 Unit *s = UNIT_DEREF(u->slice);
1252
1253                 if (more)
1254                         /* There's more set now than before. We
1255                          * propagate the new mask to the parent's mask
1256                          * (not caring if it actually was valid or
1257                          * not). */
1258
1259                         s->cgroup_members_mask |= m;
1260
1261                 else
1262                         /* There's less set now than before (or we
1263                          * don't know), we need to recalculate
1264                          * everything, so let's invalidate the
1265                          * parent's members mask */
1266
1267                         s->cgroup_members_mask_valid = false;
1268
1269                 /* And now make sure that this change also hits our
1270                  * grandparents */
1271                 unit_update_cgroup_members_masks(s);
1272         }
1273 }
1274
1275 static const char *migrate_callback(CGroupMask mask, void *userdata) {
1276         Unit *u = userdata;
1277
1278         assert(mask != 0);
1279         assert(u);
1280
1281         while (u) {
1282                 if (u->cgroup_path &&
1283                     u->cgroup_realized &&
1284                     (u->cgroup_realized_mask & mask) == mask)
1285                         return u->cgroup_path;
1286
1287                 u = UNIT_DEREF(u->slice);
1288         }
1289
1290         return NULL;
1291 }
1292
1293 char *unit_default_cgroup_path(Unit *u) {
1294         _cleanup_free_ char *escaped = NULL, *slice = NULL;
1295         int r;
1296
1297         assert(u);
1298
1299         if (unit_has_name(u, SPECIAL_ROOT_SLICE))
1300                 return strdup(u->manager->cgroup_root);
1301
1302         if (UNIT_ISSET(u->slice) && !unit_has_name(UNIT_DEREF(u->slice), SPECIAL_ROOT_SLICE)) {
1303                 r = cg_slice_to_path(UNIT_DEREF(u->slice)->id, &slice);
1304                 if (r < 0)
1305                         return NULL;
1306         }
1307
1308         escaped = cg_escape(u->id);
1309         if (!escaped)
1310                 return NULL;
1311
1312         if (slice)
1313                 return strjoin(u->manager->cgroup_root, "/", slice, "/",
1314                                escaped);
1315         else
1316                 return strjoin(u->manager->cgroup_root, "/", escaped);
1317 }
1318
1319 int unit_set_cgroup_path(Unit *u, const char *path) {
1320         _cleanup_free_ char *p = NULL;
1321         int r;
1322
1323         assert(u);
1324
1325         if (path) {
1326                 p = strdup(path);
1327                 if (!p)
1328                         return -ENOMEM;
1329         } else
1330                 p = NULL;
1331
1332         if (streq_ptr(u->cgroup_path, p))
1333                 return 0;
1334
1335         if (p) {
1336                 r = hashmap_put(u->manager->cgroup_unit, p, u);
1337                 if (r < 0)
1338                         return r;
1339         }
1340
1341         unit_release_cgroup(u);
1342
1343         u->cgroup_path = p;
1344         p = NULL;
1345
1346         return 1;
1347 }
1348
1349 int unit_watch_cgroup(Unit *u) {
1350         _cleanup_free_ char *events = NULL;
1351         int r;
1352
1353         assert(u);
1354
1355         if (!u->cgroup_path)
1356                 return 0;
1357
1358         if (u->cgroup_inotify_wd >= 0)
1359                 return 0;
1360
1361         /* Only applies to the unified hierarchy */
1362         r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
1363         if (r < 0)
1364                 return log_error_errno(r, "Failed to determine whether the name=systemd hierarchy is unified: %m");
1365         if (r == 0)
1366                 return 0;
1367
1368         /* Don't watch the root slice, it's pointless. */
1369         if (unit_has_name(u, SPECIAL_ROOT_SLICE))
1370                 return 0;
1371
1372         r = hashmap_ensure_allocated(&u->manager->cgroup_inotify_wd_unit, &trivial_hash_ops);
1373         if (r < 0)
1374                 return log_oom();
1375
1376         r = cg_get_path(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, "cgroup.events", &events);
1377         if (r < 0)
1378                 return log_oom();
1379
1380         u->cgroup_inotify_wd = inotify_add_watch(u->manager->cgroup_inotify_fd, events, IN_MODIFY);
1381         if (u->cgroup_inotify_wd < 0) {
1382
1383                 if (errno == ENOENT) /* If the directory is already
1384                                       * gone we don't need to track
1385                                       * it, so this is not an error */
1386                         return 0;
1387
1388                 return log_unit_error_errno(u, errno, "Failed to add inotify watch descriptor for control group %s: %m", u->cgroup_path);
1389         }
1390
1391         r = hashmap_put(u->manager->cgroup_inotify_wd_unit, INT_TO_PTR(u->cgroup_inotify_wd), u);
1392         if (r < 0)
1393                 return log_unit_error_errno(u, r, "Failed to add inotify watch descriptor to hash map: %m");
1394
1395         return 0;
1396 }
1397
1398 static int unit_create_cgroup(
1399                 Unit *u,
1400                 CGroupMask target_mask,
1401                 CGroupMask enable_mask,
1402                 bool needs_bpf) {
1403
1404         CGroupContext *c;
1405         int r;
1406
1407         assert(u);
1408
1409         c = unit_get_cgroup_context(u);
1410         if (!c)
1411                 return 0;
1412
1413         if (!u->cgroup_path) {
1414                 _cleanup_free_ char *path = NULL;
1415
1416                 path = unit_default_cgroup_path(u);
1417                 if (!path)
1418                         return log_oom();
1419
1420                 r = unit_set_cgroup_path(u, path);
1421                 if (r == -EEXIST)
1422                         return log_unit_error_errno(u, r, "Control group %s exists already.", path);
1423                 if (r < 0)
1424                         return log_unit_error_errno(u, r, "Failed to set unit's control group path to %s: %m", path);
1425         }
1426
1427         /* First, create our own group */
1428         r = cg_create_everywhere(u->manager->cgroup_supported, target_mask, u->cgroup_path);
1429         if (r < 0)
1430                 return log_unit_error_errno(u, r, "Failed to create cgroup %s: %m", u->cgroup_path);
1431
1432         /* Start watching it */
1433         (void) unit_watch_cgroup(u);
1434
1435         /* Enable all controllers we need */
1436         r = cg_enable_everywhere(u->manager->cgroup_supported, enable_mask, u->cgroup_path);
1437         if (r < 0)
1438                 log_unit_warning_errno(u, r, "Failed to enable controllers on cgroup %s, ignoring: %m", u->cgroup_path);
1439
1440         /* Keep track that this is now realized */
1441         u->cgroup_realized = true;
1442         u->cgroup_realized_mask = target_mask;
1443         u->cgroup_enabled_mask = enable_mask;
1444         u->cgroup_bpf_state = needs_bpf ? UNIT_CGROUP_BPF_ON : UNIT_CGROUP_BPF_OFF;
1445
1446         if (u->type != UNIT_SLICE && !c->delegate) {
1447
1448                 /* Then, possibly move things over, but not if
1449                  * subgroups may contain processes, which is the case
1450                  * for slice and delegation units. */
1451                 r = cg_migrate_everywhere(u->manager->cgroup_supported, u->cgroup_path, u->cgroup_path, migrate_callback, u);
1452                 if (r < 0)
1453                         log_unit_warning_errno(u, r, "Failed to migrate cgroup from to %s, ignoring: %m", u->cgroup_path);
1454         }
1455
1456         return 0;
1457 }
1458
1459 int unit_attach_pids_to_cgroup(Unit *u) {
1460         int r;
1461         assert(u);
1462
1463         r = unit_realize_cgroup(u);
1464         if (r < 0)
1465                 return r;
1466
1467         r = cg_attach_many_everywhere(u->manager->cgroup_supported, u->cgroup_path, u->pids, migrate_callback, u);
1468         if (r < 0)
1469                 return r;
1470
1471         return 0;
1472 }
1473
1474 static void cgroup_xattr_apply(Unit *u) {
1475         char ids[SD_ID128_STRING_MAX];
1476         int r;
1477
1478         assert(u);
1479
1480         if (!MANAGER_IS_SYSTEM(u->manager))
1481                 return;
1482
1483         if (sd_id128_is_null(u->invocation_id))
1484                 return;
1485
1486         r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path,
1487                          "trusted.invocation_id",
1488                          sd_id128_to_string(u->invocation_id, ids), 32,
1489                          0);
1490         if (r < 0)
1491                 log_unit_debug_errno(u, r, "Failed to set invocation ID on control group %s, ignoring: %m", u->cgroup_path);
1492 }
1493
1494 static bool unit_has_mask_realized(
1495                 Unit *u,
1496                 CGroupMask target_mask,
1497                 CGroupMask enable_mask,
1498                 bool needs_bpf) {
1499
1500         assert(u);
1501
1502         return u->cgroup_realized &&
1503                 u->cgroup_realized_mask == target_mask &&
1504                 u->cgroup_enabled_mask == enable_mask &&
1505                 ((needs_bpf && u->cgroup_bpf_state == UNIT_CGROUP_BPF_ON) ||
1506                  (!needs_bpf && u->cgroup_bpf_state == UNIT_CGROUP_BPF_OFF));
1507 }
1508
1509 /* Check if necessary controllers and attributes for a unit are in place.
1510  *
1511  * If so, do nothing.
1512  * If not, create paths, move processes over, and set attributes.
1513  *
1514  * Returns 0 on success and < 0 on failure. */
1515 static int unit_realize_cgroup_now(Unit *u, ManagerState state) {
1516         CGroupMask target_mask, enable_mask;
1517         bool needs_bpf, apply_bpf;
1518         int r;
1519
1520         assert(u);
1521
1522         if (u->in_cgroup_realize_queue) {
1523                 LIST_REMOVE(cgroup_realize_queue, u->manager->cgroup_realize_queue, u);
1524                 u->in_cgroup_realize_queue = false;
1525         }
1526
1527         target_mask = unit_get_target_mask(u);
1528         enable_mask = unit_get_enable_mask(u);
1529         needs_bpf = unit_get_needs_bpf(u);
1530
1531         if (unit_has_mask_realized(u, target_mask, enable_mask, needs_bpf))
1532                 return 0;
1533
1534         /* Make sure we apply the BPF filters either when one is configured, or if none is configured but previously
1535          * the state was anything but off. This way, if a unit with a BPF filter applied is reconfigured to lose it
1536          * this will trickle down properly to cgroupfs. */
1537         apply_bpf = needs_bpf || u->cgroup_bpf_state != UNIT_CGROUP_BPF_OFF;
1538
1539         /* First, realize parents */
1540         if (UNIT_ISSET(u->slice)) {
1541                 r = unit_realize_cgroup_now(UNIT_DEREF(u->slice), state);
1542                 if (r < 0)
1543                         return r;
1544         }
1545
1546         /* And then do the real work */
1547         r = unit_create_cgroup(u, target_mask, enable_mask, needs_bpf);
1548         if (r < 0)
1549                 return r;
1550
1551         /* Finally, apply the necessary attributes. */
1552         cgroup_context_apply(u, target_mask, apply_bpf, state);
1553         cgroup_xattr_apply(u);
1554
1555         return 0;
1556 }
1557
1558 static void unit_add_to_cgroup_realize_queue(Unit *u) {
1559         assert(u);
1560
1561         if (u->in_cgroup_realize_queue)
1562                 return;
1563
1564         LIST_PREPEND(cgroup_realize_queue, u->manager->cgroup_realize_queue, u);
1565         u->in_cgroup_realize_queue = true;
1566 }
1567
1568 unsigned manager_dispatch_cgroup_realize_queue(Manager *m) {
1569         ManagerState state;
1570         unsigned n = 0;
1571         Unit *i;
1572         int r;
1573
1574         assert(m);
1575
1576         state = manager_state(m);
1577
1578         while ((i = m->cgroup_realize_queue)) {
1579                 assert(i->in_cgroup_realize_queue);
1580
1581                 r = unit_realize_cgroup_now(i, state);
1582                 if (r < 0)
1583                         log_warning_errno(r, "Failed to realize cgroups for queued unit %s, ignoring: %m", i->id);
1584
1585                 n++;
1586         }
1587
1588         return n;
1589 }
1590
1591 static void unit_add_siblings_to_cgroup_realize_queue(Unit *u) {
1592         Unit *slice;
1593
1594         /* This adds the siblings of the specified unit and the
1595          * siblings of all parent units to the cgroup queue. (But
1596          * neither the specified unit itself nor the parents.) */
1597
1598         while ((slice = UNIT_DEREF(u->slice))) {
1599                 Iterator i;
1600                 Unit *m;
1601                 void *v;
1602
1603                 HASHMAP_FOREACH_KEY(v, m, u->dependencies[UNIT_BEFORE], i) {
1604                         if (m == u)
1605                                 continue;
1606
1607                         /* Skip units that have a dependency on the slice
1608                          * but aren't actually in it. */
1609                         if (UNIT_DEREF(m->slice) != slice)
1610                                 continue;
1611
1612                         /* No point in doing cgroup application for units
1613                          * without active processes. */
1614                         if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(m)))
1615                                 continue;
1616
1617                         /* If the unit doesn't need any new controllers
1618                          * and has current ones realized, it doesn't need
1619                          * any changes. */
1620                         if (unit_has_mask_realized(m,
1621                                                    unit_get_target_mask(m),
1622                                                    unit_get_enable_mask(m),
1623                                                    unit_get_needs_bpf(m)))
1624                                 continue;
1625
1626                         unit_add_to_cgroup_realize_queue(m);
1627                 }
1628
1629                 u = slice;
1630         }
1631 }
1632
1633 int unit_realize_cgroup(Unit *u) {
1634         assert(u);
1635
1636         if (!UNIT_HAS_CGROUP_CONTEXT(u))
1637                 return 0;
1638
1639         /* So, here's the deal: when realizing the cgroups for this
1640          * unit, we need to first create all parents, but there's more
1641          * actually: for the weight-based controllers we also need to
1642          * make sure that all our siblings (i.e. units that are in the
1643          * same slice as we are) have cgroups, too. Otherwise, things
1644          * would become very uneven as each of their processes would
1645          * get as much resources as all our group together. This call
1646          * will synchronously create the parent cgroups, but will
1647          * defer work on the siblings to the next event loop
1648          * iteration. */
1649
1650         /* Add all sibling slices to the cgroup queue. */
1651         unit_add_siblings_to_cgroup_realize_queue(u);
1652
1653         /* And realize this one now (and apply the values) */
1654         return unit_realize_cgroup_now(u, manager_state(u->manager));
1655 }
1656
1657 void unit_release_cgroup(Unit *u) {
1658         assert(u);
1659
1660         /* Forgets all cgroup details for this cgroup */
1661
1662         if (u->cgroup_path) {
1663                 (void) hashmap_remove(u->manager->cgroup_unit, u->cgroup_path);
1664                 u->cgroup_path = mfree(u->cgroup_path);
1665         }
1666
1667         if (u->cgroup_inotify_wd >= 0) {
1668                 if (inotify_rm_watch(u->manager->cgroup_inotify_fd, u->cgroup_inotify_wd) < 0)
1669                         log_unit_debug_errno(u, errno, "Failed to remove cgroup inotify watch %i for %s, ignoring", u->cgroup_inotify_wd, u->id);
1670
1671                 (void) hashmap_remove(u->manager->cgroup_inotify_wd_unit, INT_TO_PTR(u->cgroup_inotify_wd));
1672                 u->cgroup_inotify_wd = -1;
1673         }
1674 }
1675
1676 void unit_prune_cgroup(Unit *u) {
1677         int r;
1678         bool is_root_slice;
1679
1680         assert(u);
1681
1682         /* Removes the cgroup, if empty and possible, and stops watching it. */
1683
1684         if (!u->cgroup_path)
1685                 return;
1686
1687         (void) unit_get_cpu_usage(u, NULL); /* Cache the last CPU usage value before we destroy the cgroup */
1688
1689         is_root_slice = unit_has_name(u, SPECIAL_ROOT_SLICE);
1690
1691         r = cg_trim_everywhere(u->manager->cgroup_supported, u->cgroup_path, !is_root_slice);
1692         if (r < 0) {
1693                 log_unit_debug_errno(u, r, "Failed to destroy cgroup %s, ignoring: %m", u->cgroup_path);
1694                 return;
1695         }
1696
1697         if (is_root_slice)
1698                 return;
1699
1700         unit_release_cgroup(u);
1701
1702         u->cgroup_realized = false;
1703         u->cgroup_realized_mask = 0;
1704         u->cgroup_enabled_mask = 0;
1705 }
1706
1707 int unit_search_main_pid(Unit *u, pid_t *ret) {
1708         _cleanup_fclose_ FILE *f = NULL;
1709         pid_t pid = 0, npid, mypid;
1710         int r;
1711
1712         assert(u);
1713         assert(ret);
1714
1715         if (!u->cgroup_path)
1716                 return -ENXIO;
1717
1718         r = cg_enumerate_processes(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, &f);
1719         if (r < 0)
1720                 return r;
1721
1722         mypid = getpid_cached();
1723         while (cg_read_pid(f, &npid) > 0)  {
1724                 pid_t ppid;
1725
1726                 if (npid == pid)
1727                         continue;
1728
1729                 /* Ignore processes that aren't our kids */
1730                 if (get_process_ppid(npid, &ppid) >= 0 && ppid != mypid)
1731                         continue;
1732
1733                 if (pid != 0)
1734                         /* Dang, there's more than one daemonized PID
1735                         in this group, so we don't know what process
1736                         is the main process. */
1737
1738                         return -ENODATA;
1739
1740                 pid = npid;
1741         }
1742
1743         *ret = pid;
1744         return 0;
1745 }
1746
1747 static int unit_watch_pids_in_path(Unit *u, const char *path) {
1748         _cleanup_closedir_ DIR *d = NULL;
1749         _cleanup_fclose_ FILE *f = NULL;
1750         int ret = 0, r;
1751
1752         assert(u);
1753         assert(path);
1754
1755         r = cg_enumerate_processes(SYSTEMD_CGROUP_CONTROLLER, path, &f);
1756         if (r < 0)
1757                 ret = r;
1758         else {
1759                 pid_t pid;
1760
1761                 while ((r = cg_read_pid(f, &pid)) > 0) {
1762                         r = unit_watch_pid(u, pid);
1763                         if (r < 0 && ret >= 0)
1764                                 ret = r;
1765                 }
1766
1767                 if (r < 0 && ret >= 0)
1768                         ret = r;
1769         }
1770
1771         r = cg_enumerate_subgroups(SYSTEMD_CGROUP_CONTROLLER, path, &d);
1772         if (r < 0) {
1773                 if (ret >= 0)
1774                         ret = r;
1775         } else {
1776                 char *fn;
1777
1778                 while ((r = cg_read_subgroup(d, &fn)) > 0) {
1779                         _cleanup_free_ char *p = NULL;
1780
1781                         p = strjoin(path, "/", fn);
1782                         free(fn);
1783
1784                         if (!p)
1785                                 return -ENOMEM;
1786
1787                         r = unit_watch_pids_in_path(u, p);
1788                         if (r < 0 && ret >= 0)
1789                                 ret = r;
1790                 }
1791
1792                 if (r < 0 && ret >= 0)
1793                         ret = r;
1794         }
1795
1796         return ret;
1797 }
1798
1799 int unit_watch_all_pids(Unit *u) {
1800         int r;
1801
1802         assert(u);
1803
1804         /* Adds all PIDs from our cgroup to the set of PIDs we
1805          * watch. This is a fallback logic for cases where we do not
1806          * get reliable cgroup empty notifications: we try to use
1807          * SIGCHLD as replacement. */
1808
1809         if (!u->cgroup_path)
1810                 return -ENOENT;
1811
1812         r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
1813         if (r < 0)
1814                 return r;
1815         if (r > 0) /* On unified we can use proper notifications */
1816                 return 0;
1817
1818         return unit_watch_pids_in_path(u, u->cgroup_path);
1819 }
1820
1821 static int on_cgroup_empty_event(sd_event_source *s, void *userdata) {
1822         Manager *m = userdata;
1823         Unit *u;
1824         int r;
1825
1826         assert(s);
1827         assert(m);
1828
1829         u = m->cgroup_empty_queue;
1830         if (!u)
1831                 return 0;
1832
1833         assert(u->in_cgroup_empty_queue);
1834         u->in_cgroup_empty_queue = false;
1835         LIST_REMOVE(cgroup_empty_queue, m->cgroup_empty_queue, u);
1836
1837         if (m->cgroup_empty_queue) {
1838                 /* More stuff queued, let's make sure we remain enabled */
1839                 r = sd_event_source_set_enabled(s, SD_EVENT_ONESHOT);
1840                 if (r < 0)
1841                         log_debug_errno(r, "Failed to reenable cgroup empty event source: %m");
1842         }
1843
1844         unit_add_to_gc_queue(u);
1845
1846         if (UNIT_VTABLE(u)->notify_cgroup_empty)
1847                 UNIT_VTABLE(u)->notify_cgroup_empty(u);
1848
1849         return 0;
1850 }
1851
1852 void unit_add_to_cgroup_empty_queue(Unit *u) {
1853         int r;
1854
1855         assert(u);
1856
1857         /* Note that there are four different ways how cgroup empty events reach us:
1858          *
1859          * 1. On the unified hierarchy we get an inotify event on the cgroup
1860          *
1861          * 2. On the legacy hierarchy, when running in system mode, we get a datagram on the cgroup agent socket
1862          *
1863          * 3. On the legacy hierarchy, when running in user mode, we get a D-Bus signal on the system bus
1864          *
1865          * 4. On the legacy hierarchy, in service units we start watching all processes of the cgroup for SIGCHLD as
1866          *    soon as we get one SIGCHLD, to deal with unreliable cgroup notifications.
1867          *
1868          * Regardless which way we got the notification, we'll verify it here, and then add it to a separate
1869          * queue. This queue will be dispatched at a lower priority than the SIGCHLD handler, so that we always use
1870          * SIGCHLD if we can get it first, and only use the cgroup empty notifications if there's no SIGCHLD pending
1871          * (which might happen if the cgroup doesn't contain processes that are our own child, which is typically the
1872          * case for scope units). */
1873
1874         if (u->in_cgroup_empty_queue)
1875                 return;
1876
1877         /* Let's verify that the cgroup is really empty */
1878         if (!u->cgroup_path)
1879                 return;
1880         r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path);
1881         if (r < 0) {
1882                 log_unit_debug_errno(u, r, "Failed to determine whether cgroup %s is empty: %m", u->cgroup_path);
1883                 return;
1884         }
1885         if (r == 0)
1886                 return;
1887
1888         LIST_PREPEND(cgroup_empty_queue, u->manager->cgroup_empty_queue, u);
1889         u->in_cgroup_empty_queue = true;
1890
1891         /* Trigger the defer event */
1892         r = sd_event_source_set_enabled(u->manager->cgroup_empty_event_source, SD_EVENT_ONESHOT);
1893         if (r < 0)
1894                 log_debug_errno(r, "Failed to enable cgroup empty event source: %m");
1895 }
1896
1897 static int on_cgroup_inotify_event(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
1898         Manager *m = userdata;
1899
1900         assert(s);
1901         assert(fd >= 0);
1902         assert(m);
1903
1904         for (;;) {
1905                 union inotify_event_buffer buffer;
1906                 struct inotify_event *e;
1907                 ssize_t l;
1908
1909                 l = read(fd, &buffer, sizeof(buffer));
1910                 if (l < 0) {
1911                         if (IN_SET(errno, EINTR, EAGAIN))
1912                                 return 0;
1913
1914                         return log_error_errno(errno, "Failed to read control group inotify events: %m");
1915                 }
1916
1917                 FOREACH_INOTIFY_EVENT(e, buffer, l) {
1918                         Unit *u;
1919
1920                         if (e->wd < 0)
1921                                 /* Queue overflow has no watch descriptor */
1922                                 continue;
1923
1924                         if (e->mask & IN_IGNORED)
1925                                 /* The watch was just removed */
1926                                 continue;
1927
1928                         u = hashmap_get(m->cgroup_inotify_wd_unit, INT_TO_PTR(e->wd));
1929                         if (!u) /* Not that inotify might deliver
1930                                  * events for a watch even after it
1931                                  * was removed, because it was queued
1932                                  * before the removal. Let's ignore
1933                                  * this here safely. */
1934                                 continue;
1935
1936                         unit_add_to_cgroup_empty_queue(u);
1937                 }
1938         }
1939 }
1940 #endif // 0
1941
1942 int manager_setup_cgroup(Manager *m) {
1943         _cleanup_free_ char *path = NULL;
1944         const char *scope_path;
1945         CGroupController c;
1946         int r, all_unified;
1947         char *e;
1948
1949         assert(m);
1950
1951         /* 1. Determine hierarchy */
1952         m->cgroup_root = mfree(m->cgroup_root);
1953 #if 0 /// elogind is not init and must therefore search for PID 1 instead of self.
1954         r = cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER, 0, &m->cgroup_root);
1955 #else
1956         r = cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER, 1, &m->cgroup_root);
1957 #endif // 0
1958         if (r < 0)
1959                 return log_error_errno(r, "Cannot determine cgroup we are running in: %m");
1960
1961 #if 0 /// elogind does not support systemd scopes and slices
1962         /* Chop off the init scope, if we are already located in it */
1963         e = endswith(m->cgroup_root, "/" SPECIAL_INIT_SCOPE);
1964
1965         /* LEGACY: Also chop off the system slice if we are in
1966          * it. This is to support live upgrades from older systemd
1967          * versions where PID 1 was moved there. Also see
1968          * cg_get_root_path(). */
1969         if (!e && MANAGER_IS_SYSTEM(m)) {
1970                 e = endswith(m->cgroup_root, "/" SPECIAL_SYSTEM_SLICE);
1971                 if (!e)
1972                         e = endswith(m->cgroup_root, "/system"); /* even more legacy */
1973         }
1974         if (e)
1975                 *e = 0;
1976 #endif // 0
1977
1978         /* And make sure to store away the root value without trailing
1979          * slash, even for the root dir, so that we can easily prepend
1980          * it everywhere. */
1981         while ((e = endswith(m->cgroup_root, "/")))
1982                 *e = 0;
1983         log_debug_elogind("Cgroup Controller \"%s\" -> root \"%s\"",
1984                           SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root);
1985
1986         /* 2. Show data */
1987         r = cg_get_path(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root, NULL, &path);
1988         if (r < 0)
1989                 return log_error_errno(r, "Cannot find cgroup mount point: %m");
1990
1991         r = cg_unified_flush();
1992         if (r < 0)
1993                 return log_error_errno(r, "Couldn't determine if we are running in the unified hierarchy: %m");
1994
1995         all_unified = cg_all_unified();
1996         if (all_unified < 0)
1997                 return log_error_errno(all_unified, "Couldn't determine whether we are in all unified mode: %m");
1998         if (all_unified > 0)
1999                 log_debug("Unified cgroup hierarchy is located at %s.", path);
2000         else {
2001                 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
2002                 if (r < 0)
2003                         return log_error_errno(r, "Failed to determine whether systemd's own controller is in unified mode: %m");
2004                 if (r > 0)
2005                         log_debug("Unified cgroup hierarchy is located at %s. Controllers are on legacy hierarchies.", path);
2006                 else
2007                         log_debug("Using cgroup controller " SYSTEMD_CGROUP_CONTROLLER_LEGACY ". File system hierarchy is at %s.", path);
2008         }
2009
2010 #if 0 /// elogind is not init, and does not install the agent here.
2011         /* 3. Allocate cgroup empty defer event source */
2012         m->cgroup_empty_event_source = sd_event_source_unref(m->cgroup_empty_event_source);
2013         r = sd_event_add_defer(m->event, &m->cgroup_empty_event_source, on_cgroup_empty_event, m);
2014         if (r < 0)
2015                 return log_error_errno(r, "Failed to create cgroup empty event source: %m");
2016
2017         r = sd_event_source_set_priority(m->cgroup_empty_event_source, SD_EVENT_PRIORITY_NORMAL-5);
2018         if (r < 0)
2019                 return log_error_errno(r, "Failed to set priority of cgroup empty event source: %m");
2020
2021         r = sd_event_source_set_enabled(m->cgroup_empty_event_source, SD_EVENT_OFF);
2022         if (r < 0)
2023                 return log_error_errno(r, "Failed to disable cgroup empty event source: %m");
2024
2025         (void) sd_event_source_set_description(m->cgroup_empty_event_source, "cgroup-empty");
2026
2027         /* 4. Install notifier inotify object, or agent */
2028         if (cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER) > 0) {
2029
2030                 /* In the unified hierarchy we can get cgroup empty notifications via inotify. */
2031
2032                 m->cgroup_inotify_event_source = sd_event_source_unref(m->cgroup_inotify_event_source);
2033                 safe_close(m->cgroup_inotify_fd);
2034
2035                 m->cgroup_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
2036                 if (m->cgroup_inotify_fd < 0)
2037                         return log_error_errno(errno, "Failed to create control group inotify object: %m");
2038
2039                 r = sd_event_add_io(m->event, &m->cgroup_inotify_event_source, m->cgroup_inotify_fd, EPOLLIN, on_cgroup_inotify_event, m);
2040                 if (r < 0)
2041                         return log_error_errno(r, "Failed to watch control group inotify object: %m");
2042
2043                 /* Process cgroup empty notifications early, but after service notifications and SIGCHLD. Also
2044                  * see handling of cgroup agent notifications, for the classic cgroup hierarchy support. */
2045                 r = sd_event_source_set_priority(m->cgroup_inotify_event_source, SD_EVENT_PRIORITY_NORMAL-4);
2046                 if (r < 0)
2047                         return log_error_errno(r, "Failed to set priority of inotify event source: %m");
2048
2049                 (void) sd_event_source_set_description(m->cgroup_inotify_event_source, "cgroup-inotify");
2050
2051         } else if (MANAGER_IS_SYSTEM(m) && m->test_run_flags == 0) {
2052
2053                 /* On the legacy hierarchy we only get notifications via cgroup agents. (Which isn't really reliable,
2054                  * since it does not generate events when control groups with children run empty. */
2055
2056                 r = cg_install_release_agent(SYSTEMD_CGROUP_CONTROLLER, SYSTEMD_CGROUP_AGENT_PATH);
2057                 if (r < 0)
2058                         log_warning_errno(r, "Failed to install release agent, ignoring: %m");
2059                 else if (r > 0)
2060                         log_debug("Installed release agent.");
2061                 else if (r == 0)
2062                         log_debug("Release agent already installed.");
2063         }
2064
2065         /* 5. Make sure we are in the special "init.scope" unit in the root slice. */
2066         scope_path = strjoina(m->cgroup_root, "/" SPECIAL_INIT_SCOPE);
2067         r = cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER, scope_path, 0);
2068 #else
2069         /* Note:
2070                 * This method is in core, and normally called by systemd
2071                 * being init. As elogind is never init, we can not install
2072                 * our agent here. We do so when mounting our cgroup file
2073                 * system, so only if elogind is its own tiny controller.
2074                 * Further, elogind is not meant to run in systemd init scope. */
2075         if (MANAGER_IS_SYSTEM(m))
2076                 // we are our own cgroup controller
2077                 scope_path = strjoina("");
2078         else if (streq(m->cgroup_root, "/elogind"))
2079                 // root already is our cgroup
2080                 scope_path = strjoina(m->cgroup_root);
2081         else
2082                 // we have to create our own group
2083                 scope_path = strjoina(m->cgroup_root, "/elogind");
2084         r = cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER, scope_path, 0);
2085 #endif // 0
2086         if (r < 0)
2087                 return log_error_errno(r, "Failed to create %s control group: %m", scope_path);
2088         log_debug_elogind("Created control group \"%s\"", scope_path);
2089
2090 #if 0 /// elogind is not a "sub-controller" like systemd, so migration is not needed.
2091         /* Also, move all other userspace processes remaining in the root cgroup into that scope. */
2092         r = cg_migrate(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root, SYSTEMD_CGROUP_CONTROLLER, scope_path, 0);
2093         if (r < 0)
2094                 log_warning_errno(r, "Couldn't move remaining userspace processes, ignoring: %m");
2095 #endif // 0
2096
2097         /* 6. And pin it, so that it cannot be unmounted */
2098         safe_close(m->pin_cgroupfs_fd);
2099         m->pin_cgroupfs_fd = open(path, O_RDONLY|O_CLOEXEC|O_DIRECTORY|O_NOCTTY|O_NONBLOCK);
2100         if (m->pin_cgroupfs_fd < 0)
2101                 return log_error_errno(errno, "Failed to open pin file: %m");
2102
2103         /* 7. Always enable hierarchical support if it exists... */
2104         if (!all_unified && m->test_run_flags == 0)
2105                 (void) cg_set_attribute("memory", "/", "memory.use_hierarchy", "1");
2106
2107         /* 8. Figure out which controllers are supported, and log about it */
2108         r = cg_mask_supported(&m->cgroup_supported);
2109         if (r < 0)
2110                 return log_error_errno(r, "Failed to determine supported controllers: %m");
2111         for (c = 0; c < _CGROUP_CONTROLLER_MAX; c++)
2112                 log_debug("Controller '%s' supported: %s", cgroup_controller_to_string(c), yes_no(m->cgroup_supported & CGROUP_CONTROLLER_TO_MASK(c)));
2113
2114         return 0;
2115 }
2116
2117 void manager_shutdown_cgroup(Manager *m, bool delete) {
2118         assert(m);
2119
2120         /* We can't really delete the group, since we are in it. But
2121          * let's trim it. */
2122         if (delete && m->cgroup_root)
2123                 (void) cg_trim(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_root, false);
2124
2125 #if 0 /// elogind is not init
2126         m->cgroup_empty_event_source = sd_event_source_unref(m->cgroup_empty_event_source);
2127
2128         m->cgroup_inotify_wd_unit = hashmap_free(m->cgroup_inotify_wd_unit);
2129
2130         m->cgroup_inotify_event_source = sd_event_source_unref(m->cgroup_inotify_event_source);
2131         m->cgroup_inotify_fd = safe_close(m->cgroup_inotify_fd);
2132 #endif // 0
2133
2134         m->pin_cgroupfs_fd = safe_close(m->pin_cgroupfs_fd);
2135
2136         m->cgroup_root = mfree(m->cgroup_root);
2137 }
2138
2139 #if 0 /// UNNEEDED by elogind
2140 Unit* manager_get_unit_by_cgroup(Manager *m, const char *cgroup) {
2141         char *p;
2142         Unit *u;
2143
2144         assert(m);
2145         assert(cgroup);
2146
2147         u = hashmap_get(m->cgroup_unit, cgroup);
2148         if (u)
2149                 return u;
2150
2151         p = strdupa(cgroup);
2152         for (;;) {
2153                 char *e;
2154
2155                 e = strrchr(p, '/');
2156                 if (!e || e == p)
2157                         return hashmap_get(m->cgroup_unit, SPECIAL_ROOT_SLICE);
2158
2159                 *e = 0;
2160
2161                 u = hashmap_get(m->cgroup_unit, p);
2162                 if (u)
2163                         return u;
2164         }
2165 }
2166
2167 Unit *manager_get_unit_by_pid_cgroup(Manager *m, pid_t pid) {
2168         _cleanup_free_ char *cgroup = NULL;
2169         int r;
2170
2171         assert(m);
2172
2173         if (pid <= 0)
2174                 return NULL;
2175
2176         r = cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER, pid, &cgroup);
2177         if (r < 0)
2178                 return NULL;
2179
2180         return manager_get_unit_by_cgroup(m, cgroup);
2181 }
2182
2183 Unit *manager_get_unit_by_pid(Manager *m, pid_t pid) {
2184         Unit *u;
2185
2186         assert(m);
2187
2188         if (pid <= 0)
2189                 return NULL;
2190
2191         if (pid == 1)
2192                 return hashmap_get(m->units, SPECIAL_INIT_SCOPE);
2193
2194         u = hashmap_get(m->watch_pids1, PID_TO_PTR(pid));
2195         if (u)
2196                 return u;
2197
2198         u = hashmap_get(m->watch_pids2, PID_TO_PTR(pid));
2199         if (u)
2200                 return u;
2201
2202         return manager_get_unit_by_pid_cgroup(m, pid);
2203 }
2204 #endif // 0
2205
2206 #if 0 /// elogind must substitute this with its own variant
2207 int manager_notify_cgroup_empty(Manager *m, const char *cgroup) {
2208         Unit *u;
2209
2210         assert(m);
2211         assert(cgroup);
2212
2213         /* Called on the legacy hierarchy whenever we get an explicit cgroup notification from the cgroup agent process
2214          * or from the --system instance */
2215
2216         log_debug("Got cgroup empty notification for: %s", cgroup);
2217
2218         u = manager_get_unit_by_cgroup(m, cgroup);
2219         if (!u)
2220                 return 0;
2221
2222         unit_add_to_cgroup_empty_queue(u);
2223         return 1;
2224 }
2225 #else
2226 int manager_notify_cgroup_empty(Manager *m, const char *cgroup) {
2227         Session *s;
2228
2229         assert(m);
2230         assert(cgroup);
2231
2232         log_debug("Got cgroup empty notification for: %s", cgroup);
2233
2234         s = hashmap_get(m->sessions, cgroup);
2235
2236         if (s) {
2237                 session_finalize(s);
2238                 session_free(s);
2239         } else
2240                 log_warning("Session not found: %s", cgroup);
2241
2242         return 0;
2243 }
2244 #endif // 0
2245 #if 0 /// UNNEEDED by elogind
2246 int unit_get_memory_current(Unit *u, uint64_t *ret) {
2247         _cleanup_free_ char *v = NULL;
2248         int r;
2249
2250         assert(u);
2251         assert(ret);
2252
2253         if (!UNIT_CGROUP_BOOL(u, memory_accounting))
2254                 return -ENODATA;
2255
2256         if (!u->cgroup_path)
2257                 return -ENODATA;
2258
2259         if ((u->cgroup_realized_mask & CGROUP_MASK_MEMORY) == 0)
2260                 return -ENODATA;
2261
2262         r = cg_all_unified();
2263         if (r < 0)
2264                 return r;
2265         if (r > 0)
2266                 r = cg_get_attribute("memory", u->cgroup_path, "memory.current", &v);
2267         else
2268                 r = cg_get_attribute("memory", u->cgroup_path, "memory.usage_in_bytes", &v);
2269         if (r == -ENOENT)
2270                 return -ENODATA;
2271         if (r < 0)
2272                 return r;
2273
2274         return safe_atou64(v, ret);
2275 }
2276
2277 int unit_get_tasks_current(Unit *u, uint64_t *ret) {
2278         _cleanup_free_ char *v = NULL;
2279         int r;
2280
2281         assert(u);
2282         assert(ret);
2283
2284         if (!UNIT_CGROUP_BOOL(u, tasks_accounting))
2285                 return -ENODATA;
2286
2287         if (!u->cgroup_path)
2288                 return -ENODATA;
2289
2290         if ((u->cgroup_realized_mask & CGROUP_MASK_PIDS) == 0)
2291                 return -ENODATA;
2292
2293         r = cg_get_attribute("pids", u->cgroup_path, "pids.current", &v);
2294         if (r == -ENOENT)
2295                 return -ENODATA;
2296         if (r < 0)
2297                 return r;
2298
2299         return safe_atou64(v, ret);
2300 }
2301
2302 static int unit_get_cpu_usage_raw(Unit *u, nsec_t *ret) {
2303         _cleanup_free_ char *v = NULL;
2304         uint64_t ns;
2305         int r;
2306
2307         assert(u);
2308         assert(ret);
2309
2310         if (!u->cgroup_path)
2311                 return -ENODATA;
2312
2313         r = cg_all_unified();
2314         if (r < 0)
2315                 return r;
2316         if (r > 0) {
2317                 const char *keys[] = { "usage_usec", NULL };
2318                 _cleanup_free_ char *val = NULL;
2319                 uint64_t us;
2320
2321                 if ((u->cgroup_realized_mask & CGROUP_MASK_CPU) == 0)
2322                         return -ENODATA;
2323
2324                 r = cg_get_keyed_attribute("cpu", u->cgroup_path, "cpu.stat", keys, &val);
2325                 if (r < 0)
2326                         return r;
2327
2328                 r = safe_atou64(val, &us);
2329                 if (r < 0)
2330                         return r;
2331
2332                 ns = us * NSEC_PER_USEC;
2333         } else {
2334                 if ((u->cgroup_realized_mask & CGROUP_MASK_CPUACCT) == 0)
2335                         return -ENODATA;
2336
2337                 r = cg_get_attribute("cpuacct", u->cgroup_path, "cpuacct.usage", &v);
2338                 if (r == -ENOENT)
2339                         return -ENODATA;
2340                 if (r < 0)
2341                         return r;
2342
2343                 r = safe_atou64(v, &ns);
2344                 if (r < 0)
2345                         return r;
2346         }
2347
2348         *ret = ns;
2349         return 0;
2350 }
2351
2352 int unit_get_cpu_usage(Unit *u, nsec_t *ret) {
2353         nsec_t ns;
2354         int r;
2355
2356         assert(u);
2357
2358         /* Retrieve the current CPU usage counter. This will subtract the CPU counter taken when the unit was
2359          * started. If the cgroup has been removed already, returns the last cached value. To cache the value, simply
2360          * call this function with a NULL return value. */
2361
2362         if (!UNIT_CGROUP_BOOL(u, cpu_accounting))
2363                 return -ENODATA;
2364
2365         r = unit_get_cpu_usage_raw(u, &ns);
2366         if (r == -ENODATA && u->cpu_usage_last != NSEC_INFINITY) {
2367                 /* If we can't get the CPU usage anymore (because the cgroup was already removed, for example), use our
2368                  * cached value. */
2369
2370                 if (ret)
2371                         *ret = u->cpu_usage_last;
2372                 return 0;
2373         }
2374         if (r < 0)
2375                 return r;
2376
2377         if (ns > u->cpu_usage_base)
2378                 ns -= u->cpu_usage_base;
2379         else
2380                 ns = 0;
2381
2382         u->cpu_usage_last = ns;
2383         if (ret)
2384                 *ret = ns;
2385
2386         return 0;
2387 }
2388
2389 int unit_get_ip_accounting(
2390                 Unit *u,
2391                 CGroupIPAccountingMetric metric,
2392                 uint64_t *ret) {
2393
2394         uint64_t value;
2395         int fd, r;
2396
2397         assert(u);
2398         assert(metric >= 0);
2399         assert(metric < _CGROUP_IP_ACCOUNTING_METRIC_MAX);
2400         assert(ret);
2401
2402         /* IP accounting is currently not recursive, and hence we refuse to return any data for slice nodes. Slices are
2403          * inner cgroup nodes and hence have no processes directly attached, hence their counters would be zero
2404          * anyway. And if we block this now we can later open this up, if the kernel learns recursive BPF cgroup
2405          * filters. */
2406         if (u->type == UNIT_SLICE)
2407                 return -ENODATA;
2408
2409         if (!UNIT_CGROUP_BOOL(u, ip_accounting))
2410                 return -ENODATA;
2411
2412         fd = IN_SET(metric, CGROUP_IP_INGRESS_BYTES, CGROUP_IP_INGRESS_PACKETS) ?
2413                 u->ip_accounting_ingress_map_fd :
2414                 u->ip_accounting_egress_map_fd;
2415
2416         if (fd < 0)
2417                 return -ENODATA;
2418
2419         if (IN_SET(metric, CGROUP_IP_INGRESS_BYTES, CGROUP_IP_EGRESS_BYTES))
2420                 r = bpf_firewall_read_accounting(fd, &value, NULL);
2421         else
2422                 r = bpf_firewall_read_accounting(fd, NULL, &value);
2423         if (r < 0)
2424                 return r;
2425
2426         /* Add in additional metrics from a previous runtime. Note that when reexecing/reloading the daemon we compile
2427          * all BPF programs and maps anew, but serialize the old counters. When deserializing we store them in the
2428          * ip_accounting_extra[] field, and add them in here transparently. */
2429
2430         *ret = value + u->ip_accounting_extra[metric];
2431
2432         return r;
2433 }
2434
2435 int unit_reset_cpu_accounting(Unit *u) {
2436         nsec_t ns;
2437         int r;
2438
2439         assert(u);
2440
2441         u->cpu_usage_last = NSEC_INFINITY;
2442
2443         r = unit_get_cpu_usage_raw(u, &ns);
2444         if (r < 0) {
2445                 u->cpu_usage_base = 0;
2446                 return r;
2447         }
2448
2449         u->cpu_usage_base = ns;
2450         return 0;
2451 }
2452
2453 int unit_reset_ip_accounting(Unit *u) {
2454         int r = 0, q = 0;
2455
2456         assert(u);
2457
2458         if (u->ip_accounting_ingress_map_fd >= 0)
2459                 r = bpf_firewall_reset_accounting(u->ip_accounting_ingress_map_fd);
2460
2461         if (u->ip_accounting_egress_map_fd >= 0)
2462                 q = bpf_firewall_reset_accounting(u->ip_accounting_egress_map_fd);
2463
2464         zero(u->ip_accounting_extra);
2465
2466         return r < 0 ? r : q;
2467 }
2468
2469 void unit_invalidate_cgroup(Unit *u, CGroupMask m) {
2470         assert(u);
2471
2472         if (!UNIT_HAS_CGROUP_CONTEXT(u))
2473                 return;
2474
2475         if (m == 0)
2476                 return;
2477
2478         /* always invalidate compat pairs together */
2479         if (m & (CGROUP_MASK_IO | CGROUP_MASK_BLKIO))
2480                 m |= CGROUP_MASK_IO | CGROUP_MASK_BLKIO;
2481
2482         if (m & (CGROUP_MASK_CPU | CGROUP_MASK_CPUACCT))
2483                 m |= CGROUP_MASK_CPU | CGROUP_MASK_CPUACCT;
2484
2485         if ((u->cgroup_realized_mask & m) == 0)
2486                 return;
2487
2488         u->cgroup_realized_mask &= ~m;
2489         unit_add_to_cgroup_realize_queue(u);
2490 }
2491
2492 void unit_invalidate_cgroup_bpf(Unit *u) {
2493         assert(u);
2494
2495         if (!UNIT_HAS_CGROUP_CONTEXT(u))
2496                 return;
2497
2498         if (u->cgroup_bpf_state == UNIT_CGROUP_BPF_INVALIDATED)
2499                 return;
2500
2501         u->cgroup_bpf_state = UNIT_CGROUP_BPF_INVALIDATED;
2502         unit_add_to_cgroup_realize_queue(u);
2503
2504         /* If we are a slice unit, we also need to put compile a new BPF program for all our children, as the IP access
2505          * list of our children includes our own. */
2506         if (u->type == UNIT_SLICE) {
2507                 Unit *member;
2508                 Iterator i;
2509                 void *v;
2510
2511                 HASHMAP_FOREACH_KEY(v, member, u->dependencies[UNIT_BEFORE], i) {
2512                         if (member == u)
2513                                 continue;
2514
2515                         if (UNIT_DEREF(member->slice) != u)
2516                                 continue;
2517
2518                         unit_invalidate_cgroup_bpf(member);
2519                 }
2520         }
2521 }
2522
2523 void manager_invalidate_startup_units(Manager *m) {
2524         Iterator i;
2525         Unit *u;
2526
2527         assert(m);
2528
2529         SET_FOREACH(u, m->startup_units, i)
2530                 unit_invalidate_cgroup(u, CGROUP_MASK_CPU|CGROUP_MASK_IO|CGROUP_MASK_BLKIO);
2531 }
2532
2533 static const char* const cgroup_device_policy_table[_CGROUP_DEVICE_POLICY_MAX] = {
2534         [CGROUP_AUTO] = "auto",
2535         [CGROUP_CLOSED] = "closed",
2536         [CGROUP_STRICT] = "strict",
2537 };
2538
2539 DEFINE_STRING_TABLE_LOOKUP(cgroup_device_policy, CGroupDevicePolicy);
2540 #endif // 0