]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/cgroups/cgfsng.c
Merge pull request #2773 from brauner/2018-01-09/fix_cgroup_deletion
[mirror_lxc.git] / src / lxc / cgroups / cgfsng.c
1 /*
2 * lxc: linux Container library
3 *
4 * Copyright © 2016 Canonical Ltd.
5 *
6 * Authors:
7 * Serge Hallyn <serge.hallyn@ubuntu.com>
8 * Christian Brauner <christian.brauner@ubuntu.com>
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25 /*
26 * cgfs-ng.c: this is a new, simplified implementation of a filesystem
27 * cgroup backend. The original cgfs.c was designed to be as flexible
28 * as possible. It would try to find cgroup filesystems no matter where
29 * or how you had them mounted, and deduce the most usable mount for
30 * each controller.
31 *
32 * This new implementation assumes that cgroup filesystems are mounted
33 * under /sys/fs/cgroup/clist where clist is either the controller, or
34 * a comma-separated list of controllers.
35 */
36
37 #ifndef _GNU_SOURCE
38 #define _GNU_SOURCE 1
39 #endif
40 #include <ctype.h>
41 #include <dirent.h>
42 #include <errno.h>
43 #include <grp.h>
44 #include <linux/kdev_t.h>
45 #include <linux/types.h>
46 #include <stdint.h>
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <sys/types.h>
51 #include <unistd.h>
52
53 #include "caps.h"
54 #include "cgroup.h"
55 #include "cgroup_utils.h"
56 #include "commands.h"
57 #include "conf.h"
58 #include "config.h"
59 #include "log.h"
60 #include "macro.h"
61 #include "storage/storage.h"
62 #include "utils.h"
63
64 #ifndef HAVE_STRLCPY
65 #include "include/strlcpy.h"
66 #endif
67
68 #ifndef HAVE_STRLCAT
69 #include "include/strlcat.h"
70 #endif
71
72 lxc_log_define(cgfsng, cgroup);
73
74 static void free_string_list(char **clist)
75 {
76 int i;
77
78 if (!clist)
79 return;
80
81 for (i = 0; clist[i]; i++)
82 free(clist[i]);
83
84 free(clist);
85 }
86
87 /* Given a pointer to a null-terminated array of pointers, realloc to add one
88 * entry, and point the new entry to NULL. Do not fail. Return the index to the
89 * second-to-last entry - that is, the one which is now available for use
90 * (keeping the list null-terminated).
91 */
92 static int append_null_to_list(void ***list)
93 {
94 int newentry = 0;
95
96 if (*list)
97 for (; (*list)[newentry]; newentry++)
98 ;
99
100 *list = must_realloc(*list, (newentry + 2) * sizeof(void **));
101 (*list)[newentry + 1] = NULL;
102 return newentry;
103 }
104
105 /* Given a null-terminated array of strings, check whether @entry is one of the
106 * strings.
107 */
108 static bool string_in_list(char **list, const char *entry)
109 {
110 int i;
111
112 if (!list)
113 return false;
114
115 for (i = 0; list[i]; i++)
116 if (strcmp(list[i], entry) == 0)
117 return true;
118
119 return false;
120 }
121
122 /* Return a copy of @entry prepending "name=", i.e. turn "systemd" into
123 * "name=systemd". Do not fail.
124 */
125 static char *cg_legacy_must_prefix_named(char *entry)
126 {
127 size_t len;
128 char *prefixed;
129
130 len = strlen(entry);
131 prefixed = must_realloc(NULL, len + 6);
132
133 memcpy(prefixed, "name=", STRLITERALLEN("name="));
134 memcpy(prefixed + STRLITERALLEN("name="), entry, len);
135 prefixed[len + 5] = '\0';
136
137 return prefixed;
138 }
139
140 /* Append an entry to the clist. Do not fail. @clist must be NULL the first time
141 * we are called.
142 *
143 * We also handle named subsystems here. Any controller which is not a kernel
144 * subsystem, we prefix "name=". Any which is both a kernel and named subsystem,
145 * we refuse to use because we're not sure which we have here.
146 * (TODO: We could work around this in some cases by just remounting to be
147 * unambiguous, or by comparing mountpoint contents with current cgroup.)
148 *
149 * The last entry will always be NULL.
150 */
151 static void must_append_controller(char **klist, char **nlist, char ***clist,
152 char *entry)
153 {
154 int newentry;
155 char *copy;
156
157 if (string_in_list(klist, entry) && string_in_list(nlist, entry)) {
158 ERROR("Refusing to use ambiguous controller \"%s\"", entry);
159 ERROR("It is both a named and kernel subsystem");
160 return;
161 }
162
163 newentry = append_null_to_list((void ***)clist);
164
165 if (strncmp(entry, "name=", 5) == 0)
166 copy = must_copy_string(entry);
167 else if (string_in_list(klist, entry))
168 copy = must_copy_string(entry);
169 else
170 copy = cg_legacy_must_prefix_named(entry);
171
172 (*clist)[newentry] = copy;
173 }
174
175 /* Given a handler's cgroup data, return the struct hierarchy for the controller
176 * @c, or NULL if there is none.
177 */
178 struct hierarchy *get_hierarchy(struct cgroup_ops *ops, const char *controller)
179 {
180 int i;
181
182 errno = ENOENT;
183
184 if (!ops->hierarchies) {
185 TRACE("There are no useable cgroup controllers");
186 return NULL;
187 }
188
189 for (i = 0; ops->hierarchies[i]; i++) {
190 if (!controller) {
191 /* This is the empty unified hierarchy. */
192 if (ops->hierarchies[i]->controllers &&
193 !ops->hierarchies[i]->controllers[0])
194 return ops->hierarchies[i];
195
196 continue;
197 }
198
199 if (string_in_list(ops->hierarchies[i]->controllers, controller))
200 return ops->hierarchies[i];
201 }
202
203 if (controller)
204 WARN("There is no useable %s controller", controller);
205 else
206 WARN("There is no empty unified cgroup hierarchy");
207
208 return NULL;
209 }
210
211 #define BATCH_SIZE 50
212 static void batch_realloc(char **mem, size_t oldlen, size_t newlen)
213 {
214 int newbatches = (newlen / BATCH_SIZE) + 1;
215 int oldbatches = (oldlen / BATCH_SIZE) + 1;
216
217 if (!*mem || newbatches > oldbatches) {
218 *mem = must_realloc(*mem, newbatches * BATCH_SIZE);
219 }
220 }
221
222 static void append_line(char **dest, size_t oldlen, char *new, size_t newlen)
223 {
224 size_t full = oldlen + newlen;
225
226 batch_realloc(dest, oldlen, full + 1);
227
228 memcpy(*dest + oldlen, new, newlen + 1);
229 }
230
231 /* Slurp in a whole file */
232 static char *read_file(const char *fnam)
233 {
234 FILE *f;
235 char *line = NULL, *buf = NULL;
236 size_t len = 0, fulllen = 0;
237 int linelen;
238
239 f = fopen(fnam, "r");
240 if (!f)
241 return NULL;
242 while ((linelen = getline(&line, &len, f)) != -1) {
243 append_line(&buf, fulllen, line, linelen);
244 fulllen += linelen;
245 }
246 fclose(f);
247 free(line);
248 return buf;
249 }
250
251 /* Taken over modified from the kernel sources. */
252 #define NBITS 32 /* bits in uint32_t */
253 #define DIV_ROUND_UP(n, d) (((n) + (d)-1) / (d))
254 #define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, NBITS)
255
256 static void set_bit(unsigned bit, uint32_t *bitarr)
257 {
258 bitarr[bit / NBITS] |= (1 << (bit % NBITS));
259 }
260
261 static void clear_bit(unsigned bit, uint32_t *bitarr)
262 {
263 bitarr[bit / NBITS] &= ~(1 << (bit % NBITS));
264 }
265
266 static bool is_set(unsigned bit, uint32_t *bitarr)
267 {
268 return (bitarr[bit / NBITS] & (1 << (bit % NBITS))) != 0;
269 }
270
271 /* Create cpumask from cpulist aka turn:
272 *
273 * 0,2-3
274 *
275 * into bit array
276 *
277 * 1 0 1 1
278 */
279 static uint32_t *lxc_cpumask(char *buf, size_t nbits)
280 {
281 char *token;
282 size_t arrlen;
283 uint32_t *bitarr;
284
285 arrlen = BITS_TO_LONGS(nbits);
286 bitarr = calloc(arrlen, sizeof(uint32_t));
287 if (!bitarr)
288 return NULL;
289
290 lxc_iterate_parts(token, buf, ",") {
291 errno = 0;
292 unsigned end, start;
293 char *range;
294
295 start = strtoul(token, NULL, 0);
296 end = start;
297 range = strchr(token, '-');
298 if (range)
299 end = strtoul(range + 1, NULL, 0);
300
301 if (!(start <= end)) {
302 free(bitarr);
303 return NULL;
304 }
305
306 if (end >= nbits) {
307 free(bitarr);
308 return NULL;
309 }
310
311 while (start <= end)
312 set_bit(start++, bitarr);
313 }
314
315 return bitarr;
316 }
317
318 /* Turn cpumask into simple, comma-separated cpulist. */
319 static char *lxc_cpumask_to_cpulist(uint32_t *bitarr, size_t nbits)
320 {
321 int ret;
322 size_t i;
323 char **cpulist = NULL;
324 char numstr[INTTYPE_TO_STRLEN(size_t)] = {0};
325
326 for (i = 0; i <= nbits; i++) {
327 if (!is_set(i, bitarr))
328 continue;
329
330 ret = snprintf(numstr, sizeof(numstr), "%zu", i);
331 if (ret < 0 || (size_t)ret >= sizeof(numstr)) {
332 lxc_free_array((void **)cpulist, free);
333 return NULL;
334 }
335
336 ret = lxc_append_string(&cpulist, numstr);
337 if (ret < 0) {
338 lxc_free_array((void **)cpulist, free);
339 return NULL;
340 }
341 }
342
343 if (!cpulist)
344 return NULL;
345
346 return lxc_string_join(",", (const char **)cpulist, false);
347 }
348
349 static ssize_t get_max_cpus(char *cpulist)
350 {
351 char *c1, *c2;
352 char *maxcpus = cpulist;
353 size_t cpus = 0;
354
355 c1 = strrchr(maxcpus, ',');
356 if (c1)
357 c1++;
358
359 c2 = strrchr(maxcpus, '-');
360 if (c2)
361 c2++;
362
363 if (!c1 && !c2)
364 c1 = maxcpus;
365 else if (c1 > c2)
366 c2 = c1;
367 else if (c1 < c2)
368 c1 = c2;
369 else if (!c1 && c2)
370 c1 = c2;
371
372 errno = 0;
373 cpus = strtoul(c1, NULL, 0);
374 if (errno != 0)
375 return -1;
376
377 return cpus;
378 }
379
380 #define __ISOL_CPUS "/sys/devices/system/cpu/isolated"
381 static bool cg_legacy_filter_and_set_cpus(char *path, bool am_initialized)
382 {
383 int ret;
384 ssize_t i;
385 char *lastslash, *fpath, oldv;
386 ssize_t maxisol = 0, maxposs = 0;
387 char *cpulist = NULL, *isolcpus = NULL, *posscpus = NULL;
388 uint32_t *isolmask = NULL, *possmask = NULL;
389 bool bret = false, flipped_bit = false;
390
391 lastslash = strrchr(path, '/');
392 if (!lastslash) {
393 ERROR("Failed to detect \"/\" in \"%s\"", path);
394 return bret;
395 }
396 oldv = *lastslash;
397 *lastslash = '\0';
398 fpath = must_make_path(path, "cpuset.cpus", NULL);
399 posscpus = read_file(fpath);
400 if (!posscpus) {
401 SYSERROR("Failed to read file \"%s\"", fpath);
402 goto on_error;
403 }
404
405 /* Get maximum number of cpus found in possible cpuset. */
406 maxposs = get_max_cpus(posscpus);
407 if (maxposs < 0 || maxposs >= INT_MAX - 1)
408 goto on_error;
409
410 if (!file_exists(__ISOL_CPUS)) {
411 /* This system doesn't expose isolated cpus. */
412 DEBUG("The path \""__ISOL_CPUS"\" to read isolated cpus from does not exist");
413 cpulist = posscpus;
414 /* No isolated cpus but we weren't already initialized by
415 * someone. We should simply copy the parents cpuset.cpus
416 * values.
417 */
418 if (!am_initialized) {
419 DEBUG("Copying cpu settings of parent cgroup");
420 goto copy_parent;
421 }
422 /* No isolated cpus but we were already initialized by someone.
423 * Nothing more to do for us.
424 */
425 goto on_success;
426 }
427
428 isolcpus = read_file(__ISOL_CPUS);
429 if (!isolcpus) {
430 SYSERROR("Failed to read file \""__ISOL_CPUS"\"");
431 goto on_error;
432 }
433 if (!isdigit(isolcpus[0])) {
434 TRACE("No isolated cpus detected");
435 cpulist = posscpus;
436 /* No isolated cpus but we weren't already initialized by
437 * someone. We should simply copy the parents cpuset.cpus
438 * values.
439 */
440 if (!am_initialized) {
441 DEBUG("Copying cpu settings of parent cgroup");
442 goto copy_parent;
443 }
444 /* No isolated cpus but we were already initialized by someone.
445 * Nothing more to do for us.
446 */
447 goto on_success;
448 }
449
450 /* Get maximum number of cpus found in isolated cpuset. */
451 maxisol = get_max_cpus(isolcpus);
452 if (maxisol < 0 || maxisol >= INT_MAX - 1)
453 goto on_error;
454
455 if (maxposs < maxisol)
456 maxposs = maxisol;
457 maxposs++;
458
459 possmask = lxc_cpumask(posscpus, maxposs);
460 if (!possmask) {
461 ERROR("Failed to create cpumask for possible cpus");
462 goto on_error;
463 }
464
465 isolmask = lxc_cpumask(isolcpus, maxposs);
466 if (!isolmask) {
467 ERROR("Failed to create cpumask for isolated cpus");
468 goto on_error;
469 }
470
471 for (i = 0; i <= maxposs; i++) {
472 if (!is_set(i, isolmask) || !is_set(i, possmask))
473 continue;
474
475 flipped_bit = true;
476 clear_bit(i, possmask);
477 }
478
479 if (!flipped_bit) {
480 DEBUG("No isolated cpus present in cpuset");
481 goto on_success;
482 }
483 DEBUG("Removed isolated cpus from cpuset");
484
485 cpulist = lxc_cpumask_to_cpulist(possmask, maxposs);
486 if (!cpulist) {
487 ERROR("Failed to create cpu list");
488 goto on_error;
489 }
490
491 copy_parent:
492 *lastslash = oldv;
493 free(fpath);
494 fpath = must_make_path(path, "cpuset.cpus", NULL);
495 ret = lxc_write_to_file(fpath, cpulist, strlen(cpulist), false, 0666);
496 if (ret < 0) {
497 SYSERROR("Failed to write cpu list to \"%s\"", fpath);
498 goto on_error;
499 }
500
501 on_success:
502 bret = true;
503
504 on_error:
505 free(fpath);
506
507 free(isolcpus);
508 free(isolmask);
509
510 if (posscpus != cpulist)
511 free(posscpus);
512 free(possmask);
513
514 free(cpulist);
515 return bret;
516 }
517
518 /* Copy contents of parent(@path)/@file to @path/@file */
519 static bool copy_parent_file(char *path, char *file)
520 {
521 int ret;
522 char *fpath, *lastslash, oldv;
523 int len = 0;
524 char *value = NULL;
525
526 lastslash = strrchr(path, '/');
527 if (!lastslash) {
528 ERROR("Failed to detect \"/\" in \"%s\"", path);
529 return false;
530 }
531 oldv = *lastslash;
532 *lastslash = '\0';
533 fpath = must_make_path(path, file, NULL);
534 len = lxc_read_from_file(fpath, NULL, 0);
535 if (len <= 0)
536 goto on_error;
537
538 value = must_realloc(NULL, len + 1);
539 ret = lxc_read_from_file(fpath, value, len);
540 if (ret != len)
541 goto on_error;
542 free(fpath);
543
544 *lastslash = oldv;
545 fpath = must_make_path(path, file, NULL);
546 ret = lxc_write_to_file(fpath, value, len, false, 0666);
547 if (ret < 0)
548 SYSERROR("Failed to write \"%s\" to file \"%s\"", value, fpath);
549 free(fpath);
550 free(value);
551 return ret >= 0;
552
553 on_error:
554 SYSERROR("Failed to read file \"%s\"", fpath);
555 free(fpath);
556 free(value);
557 return false;
558 }
559
560 /* Initialize the cpuset hierarchy in first directory of @gname and set
561 * cgroup.clone_children so that children inherit settings. Since the
562 * h->base_path is populated by init or ourselves, we know it is already
563 * initialized.
564 */
565 static bool cg_legacy_handle_cpuset_hierarchy(struct hierarchy *h, char *cgname)
566 {
567 int ret;
568 char v;
569 char *cgpath, *clonechildrenpath, *slash;
570
571 if (!string_in_list(h->controllers, "cpuset"))
572 return true;
573
574 if (*cgname == '/')
575 cgname++;
576 slash = strchr(cgname, '/');
577 if (slash)
578 *slash = '\0';
579
580 cgpath = must_make_path(h->mountpoint, h->container_base_path, cgname, NULL);
581 if (slash)
582 *slash = '/';
583
584 ret = mkdir(cgpath, 0755);
585 if (ret < 0) {
586 if (errno != EEXIST) {
587 SYSERROR("Failed to create directory \"%s\"", cgpath);
588 free(cgpath);
589 return false;
590 }
591 }
592
593 clonechildrenpath = must_make_path(cgpath, "cgroup.clone_children", NULL);
594 /* unified hierarchy doesn't have clone_children */
595 if (!file_exists(clonechildrenpath)) {
596 free(clonechildrenpath);
597 free(cgpath);
598 return true;
599 }
600
601 ret = lxc_read_from_file(clonechildrenpath, &v, 1);
602 if (ret < 0) {
603 SYSERROR("Failed to read file \"%s\"", clonechildrenpath);
604 free(clonechildrenpath);
605 free(cgpath);
606 return false;
607 }
608
609 /* Make sure any isolated cpus are removed from cpuset.cpus. */
610 if (!cg_legacy_filter_and_set_cpus(cgpath, v == '1')) {
611 SYSERROR("Failed to remove isolated cpus");
612 free(clonechildrenpath);
613 free(cgpath);
614 return false;
615 }
616
617 /* Already set for us by someone else. */
618 if (v == '1') {
619 DEBUG("\"cgroup.clone_children\" was already set to \"1\"");
620 free(clonechildrenpath);
621 free(cgpath);
622 return true;
623 }
624
625 /* copy parent's settings */
626 if (!copy_parent_file(cgpath, "cpuset.mems")) {
627 SYSERROR("Failed to copy \"cpuset.mems\" settings");
628 free(cgpath);
629 free(clonechildrenpath);
630 return false;
631 }
632 free(cgpath);
633
634 ret = lxc_write_to_file(clonechildrenpath, "1", 1, false, 0666);
635 if (ret < 0) {
636 /* Set clone_children so children inherit our settings */
637 SYSERROR("Failed to write 1 to \"%s\"", clonechildrenpath);
638 free(clonechildrenpath);
639 return false;
640 }
641 free(clonechildrenpath);
642 return true;
643 }
644
645 /* Given two null-terminated lists of strings, return true if any string is in
646 * both.
647 */
648 static bool controller_lists_intersect(char **l1, char **l2)
649 {
650 int i;
651
652 if (!l1 || !l2)
653 return false;
654
655 for (i = 0; l1[i]; i++) {
656 if (string_in_list(l2, l1[i]))
657 return true;
658 }
659
660 return false;
661 }
662
663 /* For a null-terminated list of controllers @clist, return true if any of those
664 * controllers is already listed the null-terminated list of hierarchies @hlist.
665 * Realistically, if one is present, all must be present.
666 */
667 static bool controller_list_is_dup(struct hierarchy **hlist, char **clist)
668 {
669 int i;
670
671 if (!hlist)
672 return false;
673
674 for (i = 0; hlist[i]; i++)
675 if (controller_lists_intersect(hlist[i]->controllers, clist))
676 return true;
677
678 return false;
679 }
680
681 /* Return true if the controller @entry is found in the null-terminated list of
682 * hierarchies @hlist.
683 */
684 static bool controller_found(struct hierarchy **hlist, char *entry)
685 {
686 int i;
687
688 if (!hlist)
689 return false;
690
691 for (i = 0; hlist[i]; i++)
692 if (string_in_list(hlist[i]->controllers, entry))
693 return true;
694
695 return false;
696 }
697
698 /* Return true if all of the controllers which we require have been found. The
699 * required list is freezer and anything in lxc.cgroup.use.
700 */
701 static bool all_controllers_found(struct cgroup_ops *ops)
702 {
703 char **cur;
704 struct hierarchy **hlist = ops->hierarchies;
705
706 if (!ops->cgroup_use)
707 return true;
708
709 for (cur = ops->cgroup_use; cur && *cur; cur++)
710 if (!controller_found(hlist, *cur)) {
711 ERROR("No %s controller mountpoint found", *cur);
712 return false;
713 }
714
715 return true;
716 }
717
718 /* Get the controllers from a mountinfo line There are other ways we could get
719 * this info. For lxcfs, field 3 is /cgroup/controller-list. For cgroupfs, we
720 * could parse the mount options. But we simply assume that the mountpoint must
721 * be /sys/fs/cgroup/controller-list
722 */
723 static char **cg_hybrid_get_controllers(char **klist, char **nlist, char *line,
724 int type)
725 {
726 /* The fourth field is /sys/fs/cgroup/comma-delimited-controller-list
727 * for legacy hierarchies.
728 */
729 int i;
730 char *dup, *p2, *tok;
731 char *p = line, *sep = ",";
732 char **aret = NULL;
733
734 for (i = 0; i < 4; i++) {
735 p = strchr(p, ' ');
736 if (!p)
737 return NULL;
738 p++;
739 }
740
741 /* Note, if we change how mountinfo works, then our caller will need to
742 * verify /sys/fs/cgroup/ in this field.
743 */
744 if (strncmp(p, "/sys/fs/cgroup/", 15) != 0) {
745 ERROR("Found hierarchy not under /sys/fs/cgroup: \"%s\"", p);
746 return NULL;
747 }
748
749 p += 15;
750 p2 = strchr(p, ' ');
751 if (!p2) {
752 ERROR("Corrupt mountinfo");
753 return NULL;
754 }
755 *p2 = '\0';
756
757 if (type == CGROUP_SUPER_MAGIC) {
758 /* strdup() here for v1 hierarchies. Otherwise
759 * lxc_iterate_parts() will destroy mountpoints such as
760 * "/sys/fs/cgroup/cpu,cpuacct".
761 */
762 dup = strdup(p);
763 if (!dup)
764 return NULL;
765
766 lxc_iterate_parts(tok, dup, sep) {
767 must_append_controller(klist, nlist, &aret, tok);
768 }
769
770 free(dup);
771 }
772 *p2 = ' ';
773
774 return aret;
775 }
776
777 static char **cg_unified_make_empty_controller(void)
778 {
779 int newentry;
780 char **aret = NULL;
781
782 newentry = append_null_to_list((void ***)&aret);
783 aret[newentry] = NULL;
784 return aret;
785 }
786
787 static char **cg_unified_get_controllers(const char *file)
788 {
789 char *buf, *tok;
790 char *sep = " \t\n";
791 char **aret = NULL;
792
793 buf = read_file(file);
794 if (!buf)
795 return NULL;
796
797 lxc_iterate_parts(tok, buf, sep) {
798 int newentry;
799 char *copy;
800
801 newentry = append_null_to_list((void ***)&aret);
802 copy = must_copy_string(tok);
803 aret[newentry] = copy;
804 }
805
806 free(buf);
807 return aret;
808 }
809
810 static struct hierarchy *add_hierarchy(struct hierarchy ***h, char **clist, char *mountpoint,
811 char *container_base_path, int type)
812 {
813 struct hierarchy *new;
814 int newentry;
815
816 new = must_realloc(NULL, sizeof(*new));
817 new->controllers = clist;
818 new->mountpoint = mountpoint;
819 new->container_base_path = container_base_path;
820 new->container_full_path = NULL;
821 new->monitor_full_path = NULL;
822 new->version = type;
823
824 newentry = append_null_to_list((void ***)h);
825 (*h)[newentry] = new;
826 return new;
827 }
828
829 /* Get a copy of the mountpoint from @line, which is a line from
830 * /proc/self/mountinfo.
831 */
832 static char *cg_hybrid_get_mountpoint(char *line)
833 {
834 int i;
835 size_t len;
836 char *p2;
837 char *p = line, *sret = NULL;
838
839 for (i = 0; i < 4; i++) {
840 p = strchr(p, ' ');
841 if (!p)
842 return NULL;
843 p++;
844 }
845
846 if (strncmp(p, "/sys/fs/cgroup/", 15) != 0)
847 return NULL;
848
849 p2 = strchr(p + 15, ' ');
850 if (!p2)
851 return NULL;
852 *p2 = '\0';
853
854 len = strlen(p);
855 sret = must_realloc(NULL, len + 1);
856 memcpy(sret, p, len);
857 sret[len] = '\0';
858 return sret;
859 }
860
861 /* Given a multi-line string, return a null-terminated copy of the current line. */
862 static char *copy_to_eol(char *p)
863 {
864 char *p2 = strchr(p, '\n'), *sret;
865 size_t len;
866
867 if (!p2)
868 return NULL;
869
870 len = p2 - p;
871 sret = must_realloc(NULL, len + 1);
872 memcpy(sret, p, len);
873 sret[len] = '\0';
874 return sret;
875 }
876
877 /* cgline: pointer to character after the first ':' in a line in a \n-terminated
878 * /proc/self/cgroup file. Check whether controller c is present.
879 */
880 static bool controller_in_clist(char *cgline, char *c)
881 {
882 char *tok, *eol, *tmp;
883 size_t len;
884
885 eol = strchr(cgline, ':');
886 if (!eol)
887 return false;
888
889 len = eol - cgline;
890 tmp = alloca(len + 1);
891 memcpy(tmp, cgline, len);
892 tmp[len] = '\0';
893
894 lxc_iterate_parts(tok, tmp, ",") {
895 if (strcmp(tok, c) == 0)
896 return true;
897 }
898
899 return false;
900 }
901
902 /* @basecginfo is a copy of /proc/$$/cgroup. Return the current cgroup for
903 * @controller.
904 */
905 static char *cg_hybrid_get_current_cgroup(char *basecginfo, char *controller,
906 int type)
907 {
908 char *p = basecginfo;
909
910 for (;;) {
911 bool is_cgv2_base_cgroup = false;
912
913 /* cgroup v2 entry in "/proc/<pid>/cgroup": "0::/some/path" */
914 if ((type == CGROUP2_SUPER_MAGIC) && (*p == '0'))
915 is_cgv2_base_cgroup = true;
916
917 p = strchr(p, ':');
918 if (!p)
919 return NULL;
920 p++;
921
922 if (is_cgv2_base_cgroup || (controller && controller_in_clist(p, controller))) {
923 p = strchr(p, ':');
924 if (!p)
925 return NULL;
926 p++;
927 return copy_to_eol(p);
928 }
929
930 p = strchr(p, '\n');
931 if (!p)
932 return NULL;
933 p++;
934 }
935 }
936
937 static void must_append_string(char ***list, char *entry)
938 {
939 int newentry;
940 char *copy;
941
942 newentry = append_null_to_list((void ***)list);
943 copy = must_copy_string(entry);
944 (*list)[newentry] = copy;
945 }
946
947 static int get_existing_subsystems(char ***klist, char ***nlist)
948 {
949 FILE *f;
950 char *line = NULL;
951 size_t len = 0;
952
953 f = fopen("/proc/self/cgroup", "r");
954 if (!f)
955 return -1;
956
957 while (getline(&line, &len, f) != -1) {
958 char *p, *p2, *tok;
959 p = strchr(line, ':');
960 if (!p)
961 continue;
962 p++;
963 p2 = strchr(p, ':');
964 if (!p2)
965 continue;
966 *p2 = '\0';
967
968 /* If the kernel has cgroup v2 support, then /proc/self/cgroup
969 * contains an entry of the form:
970 *
971 * 0::/some/path
972 *
973 * In this case we use "cgroup2" as controller name.
974 */
975 if ((p2 - p) == 0) {
976 must_append_string(klist, "cgroup2");
977 continue;
978 }
979
980 lxc_iterate_parts(tok, p, ",") {
981 if (strncmp(tok, "name=", 5) == 0)
982 must_append_string(nlist, tok);
983 else
984 must_append_string(klist, tok);
985 }
986 }
987
988 free(line);
989 fclose(f);
990 return 0;
991 }
992
993 static void trim(char *s)
994 {
995 size_t len;
996
997 len = strlen(s);
998 while ((len > 1) && (s[len - 1] == '\n'))
999 s[--len] = '\0';
1000 }
1001
1002 static void lxc_cgfsng_print_hierarchies(struct cgroup_ops *ops)
1003 {
1004 int i;
1005 struct hierarchy **it;
1006
1007 if (!ops->hierarchies) {
1008 TRACE(" No hierarchies found");
1009 return;
1010 }
1011
1012 TRACE(" Hierarchies:");
1013 for (i = 0, it = ops->hierarchies; it && *it; it++, i++) {
1014 int j;
1015 char **cit;
1016
1017 TRACE(" %d: base_cgroup: %s", i, (*it)->container_base_path ? (*it)->container_base_path : "(null)");
1018 TRACE(" mountpoint: %s", (*it)->mountpoint ? (*it)->mountpoint : "(null)");
1019 TRACE(" controllers:");
1020 for (j = 0, cit = (*it)->controllers; cit && *cit; cit++, j++)
1021 TRACE(" %d: %s", j, *cit);
1022 }
1023 }
1024
1025 static void lxc_cgfsng_print_basecg_debuginfo(char *basecginfo, char **klist,
1026 char **nlist)
1027 {
1028 int k;
1029 char **it;
1030
1031 TRACE("basecginfo is:");
1032 TRACE("%s", basecginfo);
1033
1034 for (k = 0, it = klist; it && *it; it++, k++)
1035 TRACE("kernel subsystem %d: %s", k, *it);
1036
1037 for (k = 0, it = nlist; it && *it; it++, k++)
1038 TRACE("named subsystem %d: %s", k, *it);
1039 }
1040
1041 static int cgroup_rmdir(struct hierarchy **hierarchies,
1042 const char *container_cgroup)
1043 {
1044 int i;
1045
1046 if (!container_cgroup || !hierarchies)
1047 return 0;
1048
1049 for (i = 0; hierarchies[i]; i++) {
1050 int ret;
1051 struct hierarchy *h = hierarchies[i];
1052
1053 if (!h->container_full_path)
1054 continue;
1055
1056 ret = recursive_destroy(h->container_full_path);
1057 if (ret < 0)
1058 WARN("Failed to destroy \"%s\"", h->container_full_path);
1059
1060 free(h->container_full_path);
1061 h->container_full_path = NULL;
1062 }
1063
1064 return 0;
1065 }
1066
1067 struct generic_userns_exec_data {
1068 struct hierarchy **hierarchies;
1069 const char *container_cgroup;
1070 struct lxc_conf *conf;
1071 uid_t origuid; /* target uid in parent namespace */
1072 char *path;
1073 };
1074
1075 static int cgroup_rmdir_wrapper(void *data)
1076 {
1077 int ret;
1078 struct generic_userns_exec_data *arg = data;
1079 uid_t nsuid = (arg->conf->root_nsuid_map != NULL) ? 0 : arg->conf->init_uid;
1080 gid_t nsgid = (arg->conf->root_nsgid_map != NULL) ? 0 : arg->conf->init_gid;
1081
1082 ret = setresgid(nsgid, nsgid, nsgid);
1083 if (ret < 0) {
1084 SYSERROR("Failed to setresgid(%d, %d, %d)", (int)nsgid,
1085 (int)nsgid, (int)nsgid);
1086 return -1;
1087 }
1088
1089 ret = setresuid(nsuid, nsuid, nsuid);
1090 if (ret < 0) {
1091 SYSERROR("Failed to setresuid(%d, %d, %d)", (int)nsuid,
1092 (int)nsuid, (int)nsuid);
1093 return -1;
1094 }
1095
1096 ret = setgroups(0, NULL);
1097 if (ret < 0 && errno != EPERM) {
1098 SYSERROR("Failed to setgroups(0, NULL)");
1099 return -1;
1100 }
1101
1102 return cgroup_rmdir(arg->hierarchies, arg->container_cgroup);
1103 }
1104
1105 __cgfsng_ops static void cgfsng_payload_destroy(struct cgroup_ops *ops,
1106 struct lxc_handler *handler)
1107 {
1108 int ret;
1109 struct generic_userns_exec_data wrap;
1110
1111 wrap.origuid = 0;
1112 wrap.container_cgroup = ops->container_cgroup;
1113 wrap.hierarchies = ops->hierarchies;
1114 wrap.conf = handler->conf;
1115
1116 if (handler->conf && !lxc_list_empty(&handler->conf->id_map))
1117 ret = userns_exec_1(handler->conf, cgroup_rmdir_wrapper, &wrap,
1118 "cgroup_rmdir_wrapper");
1119 else
1120 ret = cgroup_rmdir(ops->hierarchies, ops->container_cgroup);
1121 if (ret < 0) {
1122 WARN("Failed to destroy cgroups");
1123 return;
1124 }
1125 }
1126
1127 __cgfsng_ops static void cgfsng_monitor_destroy(struct cgroup_ops *ops,
1128 struct lxc_handler *handler)
1129 {
1130 int len;
1131 char *pivot_path;
1132 struct lxc_conf *conf = handler->conf;
1133 char pidstr[INTTYPE_TO_STRLEN(pid_t)];
1134
1135 if (!ops->hierarchies)
1136 return;
1137
1138 len = snprintf(pidstr, sizeof(pidstr), "%d", handler->monitor_pid);
1139 if (len < 0 || (size_t)len >= sizeof(pidstr))
1140 return;
1141
1142 for (int i = 0; ops->hierarchies[i]; i++) {
1143 int ret;
1144 char *chop;
1145 char pivot_cgroup[] = PIVOT_CGROUP;
1146 struct hierarchy *h = ops->hierarchies[i];
1147
1148 if (!h->monitor_full_path)
1149 continue;
1150
1151 if (conf && conf->cgroup_meta.dir)
1152 pivot_path = must_make_path(h->mountpoint,
1153 h->container_base_path,
1154 conf->cgroup_meta.dir,
1155 PIVOT_CGROUP,
1156 "cgroup.procs", NULL);
1157 else
1158 pivot_path = must_make_path(h->mountpoint,
1159 h->container_base_path,
1160 PIVOT_CGROUP,
1161 "cgroup.procs", NULL);
1162
1163 chop = strrchr(pivot_path, '/');
1164 if (chop)
1165 *chop = '\0';
1166
1167 /*
1168 * Make sure not to pass in the ro string literal PIVOT_CGROUP
1169 * here.
1170 */
1171 if (!cg_legacy_handle_cpuset_hierarchy(h, pivot_cgroup)) {
1172 WARN("Failed to handle legacy cpuset controller");
1173 goto next;
1174 }
1175
1176 ret = mkdir_p(pivot_path, 0755);
1177 if (ret < 0 && errno != EEXIST) {
1178 SYSWARN("Failed to create cgroup \"%s\"\n", pivot_path);
1179 goto next;
1180 }
1181
1182 if (chop)
1183 *chop = '/';
1184
1185 /* Move ourselves into the pivot cgroup to delete our own
1186 * cgroup.
1187 */
1188 ret = lxc_write_to_file(pivot_path, pidstr, len, false, 0666);
1189 if (ret != 0) {
1190 SYSWARN("Failed to move monitor %s to \"%s\"\n", pidstr, pivot_path);
1191 goto next;
1192 }
1193
1194 ret = recursive_destroy(h->monitor_full_path);
1195 if (ret < 0)
1196 WARN("Failed to destroy \"%s\"", h->monitor_full_path);
1197
1198 next:
1199 free(pivot_path);
1200 }
1201 }
1202
1203 static bool cg_unified_create_cgroup(struct hierarchy *h, char *cgname)
1204 {
1205 size_t i, parts_len;
1206 char **it;
1207 size_t full_len = 0;
1208 char *add_controllers = NULL, *cgroup = NULL;
1209 char **parts = NULL;
1210 bool bret = false;
1211
1212 if (h->version != CGROUP2_SUPER_MAGIC)
1213 return true;
1214
1215 if (!h->controllers)
1216 return true;
1217
1218 /* For now we simply enable all controllers that we have detected by
1219 * creating a string like "+memory +pids +cpu +io".
1220 * TODO: In the near future we might want to support "-<controller>"
1221 * etc. but whether supporting semantics like this make sense will need
1222 * some thinking.
1223 */
1224 for (it = h->controllers; it && *it; it++) {
1225 full_len += strlen(*it) + 2;
1226 add_controllers = must_realloc(add_controllers, full_len + 1);
1227
1228 if (h->controllers[0] == *it)
1229 add_controllers[0] = '\0';
1230
1231 (void)strlcat(add_controllers, "+", full_len + 1);
1232 (void)strlcat(add_controllers, *it, full_len + 1);
1233
1234 if ((it + 1) && *(it + 1))
1235 (void)strlcat(add_controllers, " ", full_len + 1);
1236 }
1237
1238 parts = lxc_string_split(cgname, '/');
1239 if (!parts)
1240 goto on_error;
1241
1242 parts_len = lxc_array_len((void **)parts);
1243 if (parts_len > 0)
1244 parts_len--;
1245
1246 cgroup = must_make_path(h->mountpoint, h->container_base_path, NULL);
1247 for (i = 0; i < parts_len; i++) {
1248 int ret;
1249 char *target;
1250
1251 cgroup = must_append_path(cgroup, parts[i], NULL);
1252 target = must_make_path(cgroup, "cgroup.subtree_control", NULL);
1253 ret = lxc_write_to_file(target, add_controllers, full_len, false, 0666);
1254 free(target);
1255 if (ret < 0) {
1256 SYSERROR("Could not enable \"%s\" controllers in the "
1257 "unified cgroup \"%s\"", add_controllers, cgroup);
1258 goto on_error;
1259 }
1260 }
1261
1262 bret = true;
1263
1264 on_error:
1265 lxc_free_array((void **)parts, free);
1266 free(add_controllers);
1267 free(cgroup);
1268 return bret;
1269 }
1270
1271 static int mkdir_eexist_on_last(const char *dir, mode_t mode)
1272 {
1273 const char *tmp = dir;
1274 const char *orig = dir;
1275 size_t orig_len;
1276
1277 orig_len = strlen(dir);
1278 do {
1279 int ret;
1280 size_t cur_len;
1281 char *makeme;
1282
1283 dir = tmp + strspn(tmp, "/");
1284 tmp = dir + strcspn(dir, "/");
1285
1286 errno = ENOMEM;
1287 cur_len = dir - orig;
1288 makeme = strndup(orig, cur_len);
1289 if (!makeme)
1290 return -1;
1291
1292 ret = mkdir(makeme, mode);
1293 if (ret < 0) {
1294 if ((errno != EEXIST) || (orig_len == cur_len)) {
1295 SYSERROR("Failed to create directory \"%s\"", makeme);
1296 free(makeme);
1297 return -1;
1298 }
1299 }
1300 free(makeme);
1301
1302 } while (tmp != dir);
1303
1304 return 0;
1305 }
1306
1307 static bool monitor_create_path_for_hierarchy(struct hierarchy *h, char *cgname)
1308 {
1309 int ret;
1310
1311 if (!cg_legacy_handle_cpuset_hierarchy(h, cgname)) {
1312 ERROR("Failed to handle legacy cpuset controller");
1313 return false;
1314 }
1315
1316 h->monitor_full_path = must_make_path(h->mountpoint, h->container_base_path, cgname, NULL);
1317 ret = mkdir_eexist_on_last(h->monitor_full_path, 0755);
1318 if (ret < 0) {
1319 ERROR("Failed to create cgroup \"%s\"", h->monitor_full_path);
1320 return false;
1321 }
1322
1323 return cg_unified_create_cgroup(h, cgname);
1324 }
1325
1326 static bool container_create_path_for_hierarchy(struct hierarchy *h, char *cgname)
1327 {
1328 int ret;
1329
1330 if (!cg_legacy_handle_cpuset_hierarchy(h, cgname)) {
1331 ERROR("Failed to handle legacy cpuset controller");
1332 return false;
1333 }
1334
1335 h->container_full_path = must_make_path(h->mountpoint, h->container_base_path, cgname, NULL);
1336 ret = mkdir_eexist_on_last(h->container_full_path, 0755);
1337 if (ret < 0) {
1338 ERROR("Failed to create cgroup \"%s\"", h->container_full_path);
1339 return false;
1340 }
1341
1342 return cg_unified_create_cgroup(h, cgname);
1343 }
1344
1345 static void remove_path_for_hierarchy(struct hierarchy *h, char *cgname, bool monitor)
1346 {
1347 int ret;
1348 char *full_path;
1349
1350 if (monitor)
1351 full_path = h->monitor_full_path;
1352 else
1353 full_path = h->container_full_path;
1354
1355 ret = rmdir(full_path);
1356 if (ret < 0)
1357 SYSERROR("Failed to rmdir(\"%s\") from failed creation attempt", full_path);
1358
1359 free(full_path);
1360
1361 if (monitor)
1362 h->monitor_full_path = NULL;
1363 else
1364 h->container_full_path = NULL;
1365 }
1366
1367 __cgfsng_ops static inline bool cgfsng_monitor_create(struct cgroup_ops *ops,
1368 struct lxc_handler *handler)
1369 {
1370 char *monitor_cgroup, *offset, *tmp;
1371 int i, idx = 0;
1372 size_t len;
1373 bool bret = false;
1374 struct lxc_conf *conf = handler->conf;
1375
1376 if (!conf)
1377 return bret;
1378
1379 if (conf->cgroup_meta.dir)
1380 tmp = lxc_string_join("/",
1381 (const char *[]){conf->cgroup_meta.dir,
1382 ops->monitor_pattern,
1383 handler->name, NULL},
1384 false);
1385 else
1386 tmp = must_make_path(ops->monitor_pattern, handler->name, NULL);
1387 if (!tmp)
1388 return bret;
1389
1390 len = strlen(tmp) + 5; /* leave room for -NNN\0 */
1391 monitor_cgroup = must_realloc(tmp, len);
1392 offset = monitor_cgroup + len - 5;
1393 *offset = 0;
1394
1395 do {
1396 if (idx) {
1397 int ret = snprintf(offset, 5, "-%d", idx);
1398 if (ret < 0 || (size_t)ret >= 5)
1399 goto on_error;
1400 }
1401
1402 for (i = 0; ops->hierarchies[i]; i++) {
1403 if (!monitor_create_path_for_hierarchy(ops->hierarchies[i], monitor_cgroup)) {
1404 ERROR("Failed to create cgroup \"%s\"", ops->hierarchies[i]->monitor_full_path);
1405 for (int j = 0; j < i; j++)
1406 remove_path_for_hierarchy(ops->hierarchies[j], monitor_cgroup, true);
1407
1408 idx++;
1409 break;
1410 }
1411 }
1412 } while (ops->hierarchies[i] && idx > 0 && idx < 1000);
1413
1414 if (idx < 1000) {
1415 bret = true;
1416 INFO("The monitor process uses \"%s\" as cgroup", monitor_cgroup);
1417 }
1418
1419 on_error:
1420 free(monitor_cgroup);
1421
1422 return bret;
1423 }
1424
1425 /* Try to create the same cgroup in all hierarchies. Start with cgroup_pattern;
1426 * next cgroup_pattern-1, -2, ..., -999.
1427 */
1428 __cgfsng_ops static inline bool cgfsng_payload_create(struct cgroup_ops *ops,
1429 struct lxc_handler *handler)
1430 {
1431 int i;
1432 size_t len;
1433 char *container_cgroup, *offset, *tmp;
1434 int idx = 0;
1435 struct lxc_conf *conf = handler->conf;
1436
1437 if (ops->container_cgroup) {
1438 WARN("cgfsng_create called a second time: %s", ops->container_cgroup);
1439 return false;
1440 }
1441
1442 if (!conf)
1443 return false;
1444
1445 if (conf->cgroup_meta.dir)
1446 tmp = lxc_string_join("/", (const char *[]){conf->cgroup_meta.dir, handler->name, NULL}, false);
1447 else
1448 tmp = lxc_string_replace("%n", handler->name, ops->cgroup_pattern);
1449 if (!tmp) {
1450 ERROR("Failed expanding cgroup name pattern");
1451 return false;
1452 }
1453
1454 len = strlen(tmp) + 5; /* leave room for -NNN\0 */
1455 container_cgroup = must_realloc(NULL, len);
1456 (void)strlcpy(container_cgroup, tmp, len);
1457 free(tmp);
1458 offset = container_cgroup + len - 5;
1459
1460 again:
1461 if (idx == 1000) {
1462 ERROR("Too many conflicting cgroup names");
1463 goto out_free;
1464 }
1465
1466 if (idx) {
1467 int ret;
1468
1469 ret = snprintf(offset, 5, "-%d", idx);
1470 if (ret < 0 || (size_t)ret >= 5) {
1471 FILE *f = fopen("/dev/null", "w");
1472 if (f) {
1473 fprintf(f, "Workaround for GCC7 bug: "
1474 "https://gcc.gnu.org/bugzilla/"
1475 "show_bug.cgi?id=78969");
1476 fclose(f);
1477 }
1478 }
1479 }
1480
1481 for (i = 0; ops->hierarchies[i]; i++) {
1482 if (!container_create_path_for_hierarchy(ops->hierarchies[i], container_cgroup)) {
1483 ERROR("Failed to create cgroup \"%s\"", ops->hierarchies[i]->container_full_path);
1484 for (int j = 0; j < i; j++)
1485 remove_path_for_hierarchy(ops->hierarchies[j], container_cgroup, false);
1486 idx++;
1487 goto again;
1488 }
1489 }
1490
1491 ops->container_cgroup = container_cgroup;
1492 INFO("The container uses \"%s\" as cgroup", container_cgroup);
1493
1494 return true;
1495
1496 out_free:
1497 free(container_cgroup);
1498
1499 return false;
1500 }
1501
1502 __cgfsng_ops static bool __do_cgroup_enter(struct cgroup_ops *ops, pid_t pid,
1503 bool monitor)
1504 {
1505 int len;
1506 char pidstr[INTTYPE_TO_STRLEN(pid_t)];
1507
1508 len = snprintf(pidstr, sizeof(pidstr), "%d", pid);
1509 if (len < 0 || (size_t)len >= sizeof(pidstr))
1510 return false;
1511
1512 for (int i = 0; ops->hierarchies[i]; i++) {
1513 int ret;
1514 char *path;
1515
1516 if (monitor)
1517 path = must_make_path(ops->hierarchies[i]->monitor_full_path,
1518 "cgroup.procs", NULL);
1519 else
1520 path = must_make_path(ops->hierarchies[i]->container_full_path,
1521 "cgroup.procs", NULL);
1522 ret = lxc_write_to_file(path, pidstr, len, false, 0666);
1523 if (ret != 0) {
1524 SYSERROR("Failed to enter cgroup \"%s\"", path);
1525 free(path);
1526 return false;
1527 }
1528 free(path);
1529 }
1530
1531 return true;
1532 }
1533
1534 __cgfsng_ops static bool cgfsng_monitor_enter(struct cgroup_ops *ops, pid_t pid)
1535 {
1536 return __do_cgroup_enter(ops, pid, true);
1537 }
1538
1539 static bool cgfsng_payload_enter(struct cgroup_ops *ops, pid_t pid)
1540 {
1541 return __do_cgroup_enter(ops, pid, false);
1542 }
1543
1544 static int chowmod(char *path, uid_t chown_uid, gid_t chown_gid,
1545 mode_t chmod_mode)
1546 {
1547 int ret;
1548
1549 ret = chown(path, chown_uid, chown_gid);
1550 if (ret < 0) {
1551 SYSWARN("Failed to chown(%s, %d, %d)", path, (int)chown_uid, (int)chown_gid);
1552 return -1;
1553 }
1554
1555 ret = chmod(path, chmod_mode);
1556 if (ret < 0) {
1557 SYSWARN("Failed to chmod(%s, %d)", path, (int)chmod_mode);
1558 return -1;
1559 }
1560
1561 return 0;
1562 }
1563
1564 /* chgrp the container cgroups to container group. We leave
1565 * the container owner as cgroup owner. So we must make the
1566 * directories 775 so that the container can create sub-cgroups.
1567 *
1568 * Also chown the tasks and cgroup.procs files. Those may not
1569 * exist depending on kernel version.
1570 */
1571 static int chown_cgroup_wrapper(void *data)
1572 {
1573 int i, ret;
1574 uid_t destuid;
1575 struct generic_userns_exec_data *arg = data;
1576 uid_t nsuid = (arg->conf->root_nsuid_map != NULL) ? 0 : arg->conf->init_uid;
1577 gid_t nsgid = (arg->conf->root_nsgid_map != NULL) ? 0 : arg->conf->init_gid;
1578
1579 ret = setresgid(nsgid, nsgid, nsgid);
1580 if (ret < 0) {
1581 SYSERROR("Failed to setresgid(%d, %d, %d)",
1582 (int)nsgid, (int)nsgid, (int)nsgid);
1583 return -1;
1584 }
1585
1586 ret = setresuid(nsuid, nsuid, nsuid);
1587 if (ret < 0) {
1588 SYSERROR("Failed to setresuid(%d, %d, %d)",
1589 (int)nsuid, (int)nsuid, (int)nsuid);
1590 return -1;
1591 }
1592
1593 ret = setgroups(0, NULL);
1594 if (ret < 0 && errno != EPERM) {
1595 SYSERROR("Failed to setgroups(0, NULL)");
1596 return -1;
1597 }
1598
1599 destuid = get_ns_uid(arg->origuid);
1600 if (destuid == LXC_INVALID_UID)
1601 destuid = 0;
1602
1603 for (i = 0; arg->hierarchies[i]; i++) {
1604 char *fullpath;
1605 char *path = arg->hierarchies[i]->container_full_path;
1606
1607 ret = chowmod(path, destuid, nsgid, 0775);
1608 if (ret < 0)
1609 return -1;
1610
1611 /* Failures to chown() these are inconvenient but not
1612 * detrimental We leave these owned by the container launcher,
1613 * so that container root can write to the files to attach. We
1614 * chmod() them 664 so that container systemd can write to the
1615 * files (which systemd in wily insists on doing).
1616 */
1617
1618 if (arg->hierarchies[i]->version == CGROUP_SUPER_MAGIC) {
1619 fullpath = must_make_path(path, "tasks", NULL);
1620 (void)chowmod(fullpath, destuid, nsgid, 0664);
1621 free(fullpath);
1622 }
1623
1624 fullpath = must_make_path(path, "cgroup.procs", NULL);
1625 (void)chowmod(fullpath, destuid, nsgid, 0664);
1626 free(fullpath);
1627
1628 if (arg->hierarchies[i]->version != CGROUP2_SUPER_MAGIC)
1629 continue;
1630
1631 fullpath = must_make_path(path, "cgroup.subtree_control", NULL);
1632 (void)chowmod(fullpath, destuid, nsgid, 0664);
1633 free(fullpath);
1634
1635 fullpath = must_make_path(path, "cgroup.threads", NULL);
1636 (void)chowmod(fullpath, destuid, nsgid, 0664);
1637 free(fullpath);
1638 }
1639
1640 return 0;
1641 }
1642
1643 __cgfsng_ops static bool cgfsng_chown(struct cgroup_ops *ops,
1644 struct lxc_conf *conf)
1645 {
1646 struct generic_userns_exec_data wrap;
1647
1648 if (lxc_list_empty(&conf->id_map))
1649 return true;
1650
1651 wrap.origuid = geteuid();
1652 wrap.path = NULL;
1653 wrap.hierarchies = ops->hierarchies;
1654 wrap.conf = conf;
1655
1656 if (userns_exec_1(conf, chown_cgroup_wrapper, &wrap,
1657 "chown_cgroup_wrapper") < 0) {
1658 ERROR("Error requesting cgroup chown in new user namespace");
1659 return false;
1660 }
1661
1662 return true;
1663 }
1664
1665 /* cgroup-full:* is done, no need to create subdirs */
1666 static bool cg_mount_needs_subdirs(int type)
1667 {
1668 if (type >= LXC_AUTO_CGROUP_FULL_RO)
1669 return false;
1670
1671 return true;
1672 }
1673
1674 /* After $rootfs/sys/fs/container/controller/the/cg/path has been created,
1675 * remount controller ro if needed and bindmount the cgroupfs onto
1676 * control/the/cg/path.
1677 */
1678 static int cg_legacy_mount_controllers(int type, struct hierarchy *h,
1679 char *controllerpath, char *cgpath,
1680 const char *container_cgroup)
1681 {
1682 int ret, remount_flags;
1683 char *sourcepath;
1684 int flags = MS_BIND;
1685
1686 if (type == LXC_AUTO_CGROUP_RO || type == LXC_AUTO_CGROUP_MIXED) {
1687 ret = mount(controllerpath, controllerpath, "cgroup", MS_BIND, NULL);
1688 if (ret < 0) {
1689 SYSERROR("Failed to bind mount \"%s\" onto \"%s\"",
1690 controllerpath, controllerpath);
1691 return -1;
1692 }
1693
1694 remount_flags = add_required_remount_flags(controllerpath,
1695 controllerpath,
1696 flags | MS_REMOUNT);
1697 ret = mount(controllerpath, controllerpath, "cgroup",
1698 remount_flags | MS_REMOUNT | MS_BIND | MS_RDONLY,
1699 NULL);
1700 if (ret < 0) {
1701 SYSERROR("Failed to remount \"%s\" ro", controllerpath);
1702 return -1;
1703 }
1704
1705 INFO("Remounted %s read-only", controllerpath);
1706 }
1707
1708 sourcepath = must_make_path(h->mountpoint, h->container_base_path,
1709 container_cgroup, NULL);
1710 if (type == LXC_AUTO_CGROUP_RO)
1711 flags |= MS_RDONLY;
1712
1713 ret = mount(sourcepath, cgpath, "cgroup", flags, NULL);
1714 if (ret < 0) {
1715 SYSERROR("Failed to mount \"%s\" onto \"%s\"", h->controllers[0], cgpath);
1716 free(sourcepath);
1717 return -1;
1718 }
1719 INFO("Mounted \"%s\" onto \"%s\"", h->controllers[0], cgpath);
1720
1721 if (flags & MS_RDONLY) {
1722 remount_flags = add_required_remount_flags(sourcepath, cgpath,
1723 flags | MS_REMOUNT);
1724 ret = mount(sourcepath, cgpath, "cgroup", remount_flags, NULL);
1725 if (ret < 0) {
1726 SYSERROR("Failed to remount \"%s\" ro", cgpath);
1727 free(sourcepath);
1728 return -1;
1729 }
1730 INFO("Remounted %s read-only", cgpath);
1731 }
1732
1733 free(sourcepath);
1734 INFO("Completed second stage cgroup automounts for \"%s\"", cgpath);
1735 return 0;
1736 }
1737
1738 /* __cg_mount_direct
1739 *
1740 * Mount cgroup hierarchies directly without using bind-mounts. The main
1741 * uses-cases are mounting cgroup hierarchies in cgroup namespaces and mounting
1742 * cgroups for the LXC_AUTO_CGROUP_FULL option.
1743 */
1744 static int __cg_mount_direct(int type, struct hierarchy *h,
1745 const char *controllerpath)
1746 {
1747 int ret;
1748 char *controllers = NULL;
1749 char *fstype = "cgroup2";
1750 unsigned long flags = 0;
1751
1752 flags |= MS_NOSUID;
1753 flags |= MS_NOEXEC;
1754 flags |= MS_NODEV;
1755 flags |= MS_RELATIME;
1756
1757 if (type == LXC_AUTO_CGROUP_RO || type == LXC_AUTO_CGROUP_FULL_RO)
1758 flags |= MS_RDONLY;
1759
1760 if (h->version != CGROUP2_SUPER_MAGIC) {
1761 controllers = lxc_string_join(",", (const char **)h->controllers, false);
1762 if (!controllers)
1763 return -ENOMEM;
1764 fstype = "cgroup";
1765 }
1766
1767 ret = mount("cgroup", controllerpath, fstype, flags, controllers);
1768 free(controllers);
1769 if (ret < 0) {
1770 SYSERROR("Failed to mount \"%s\" with cgroup filesystem type %s", controllerpath, fstype);
1771 return -1;
1772 }
1773
1774 DEBUG("Mounted \"%s\" with cgroup filesystem type %s", controllerpath, fstype);
1775 return 0;
1776 }
1777
1778 static inline int cg_mount_in_cgroup_namespace(int type, struct hierarchy *h,
1779 const char *controllerpath)
1780 {
1781 return __cg_mount_direct(type, h, controllerpath);
1782 }
1783
1784 static inline int cg_mount_cgroup_full(int type, struct hierarchy *h,
1785 const char *controllerpath)
1786 {
1787 if (type < LXC_AUTO_CGROUP_FULL_RO || type > LXC_AUTO_CGROUP_FULL_MIXED)
1788 return 0;
1789
1790 return __cg_mount_direct(type, h, controllerpath);
1791 }
1792
1793 __cgfsng_ops static bool cgfsng_mount(struct cgroup_ops *ops,
1794 struct lxc_handler *handler,
1795 const char *root, int type)
1796 {
1797 int i, ret;
1798 char *tmpfspath = NULL;
1799 bool has_cgns = false, retval = false, wants_force_mount = false;
1800
1801 if ((type & LXC_AUTO_CGROUP_MASK) == 0)
1802 return true;
1803
1804 if (type & LXC_AUTO_CGROUP_FORCE) {
1805 type &= ~LXC_AUTO_CGROUP_FORCE;
1806 wants_force_mount = true;
1807 }
1808
1809 if (!wants_force_mount){
1810 if (!lxc_list_empty(&handler->conf->keepcaps))
1811 wants_force_mount = !in_caplist(CAP_SYS_ADMIN, &handler->conf->keepcaps);
1812 else
1813 wants_force_mount = in_caplist(CAP_SYS_ADMIN, &handler->conf->caps);
1814 }
1815
1816 has_cgns = cgns_supported();
1817 if (has_cgns && !wants_force_mount)
1818 return true;
1819
1820 if (type == LXC_AUTO_CGROUP_NOSPEC)
1821 type = LXC_AUTO_CGROUP_MIXED;
1822 else if (type == LXC_AUTO_CGROUP_FULL_NOSPEC)
1823 type = LXC_AUTO_CGROUP_FULL_MIXED;
1824
1825 /* Mount tmpfs */
1826 tmpfspath = must_make_path(root, "/sys/fs/cgroup", NULL);
1827 ret = safe_mount(NULL, tmpfspath, "tmpfs",
1828 MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_RELATIME,
1829 "size=10240k,mode=755", root);
1830 if (ret < 0)
1831 goto on_error;
1832
1833 for (i = 0; ops->hierarchies[i]; i++) {
1834 char *controllerpath, *path2;
1835 struct hierarchy *h = ops->hierarchies[i];
1836 char *controller = strrchr(h->mountpoint, '/');
1837
1838 if (!controller)
1839 continue;
1840 controller++;
1841
1842 controllerpath = must_make_path(tmpfspath, controller, NULL);
1843 if (dir_exists(controllerpath)) {
1844 free(controllerpath);
1845 continue;
1846 }
1847
1848 ret = mkdir(controllerpath, 0755);
1849 if (ret < 0) {
1850 SYSERROR("Error creating cgroup path: %s", controllerpath);
1851 free(controllerpath);
1852 goto on_error;
1853 }
1854
1855 if (has_cgns && wants_force_mount) {
1856 /* If cgroup namespaces are supported but the container
1857 * will not have CAP_SYS_ADMIN after it has started we
1858 * need to mount the cgroups manually.
1859 */
1860 ret = cg_mount_in_cgroup_namespace(type, h, controllerpath);
1861 free(controllerpath);
1862 if (ret < 0)
1863 goto on_error;
1864
1865 continue;
1866 }
1867
1868 ret = cg_mount_cgroup_full(type, h, controllerpath);
1869 if (ret < 0) {
1870 free(controllerpath);
1871 goto on_error;
1872 }
1873
1874 if (!cg_mount_needs_subdirs(type)) {
1875 free(controllerpath);
1876 continue;
1877 }
1878
1879 path2 = must_make_path(controllerpath, h->container_base_path,
1880 ops->container_cgroup, NULL);
1881 ret = mkdir_p(path2, 0755);
1882 if (ret < 0) {
1883 free(controllerpath);
1884 free(path2);
1885 goto on_error;
1886 }
1887
1888 ret = cg_legacy_mount_controllers(type, h, controllerpath,
1889 path2, ops->container_cgroup);
1890 free(controllerpath);
1891 free(path2);
1892 if (ret < 0)
1893 goto on_error;
1894 }
1895 retval = true;
1896
1897 on_error:
1898 free(tmpfspath);
1899 return retval;
1900 }
1901
1902 static int recursive_count_nrtasks(char *dirname)
1903 {
1904 struct dirent *direntp;
1905 DIR *dir;
1906 int count = 0, ret;
1907 char *path;
1908
1909 dir = opendir(dirname);
1910 if (!dir)
1911 return 0;
1912
1913 while ((direntp = readdir(dir))) {
1914 struct stat mystat;
1915
1916 if (!strcmp(direntp->d_name, ".") ||
1917 !strcmp(direntp->d_name, ".."))
1918 continue;
1919
1920 path = must_make_path(dirname, direntp->d_name, NULL);
1921
1922 if (lstat(path, &mystat))
1923 goto next;
1924
1925 if (!S_ISDIR(mystat.st_mode))
1926 goto next;
1927
1928 count += recursive_count_nrtasks(path);
1929 next:
1930 free(path);
1931 }
1932
1933 path = must_make_path(dirname, "cgroup.procs", NULL);
1934 ret = lxc_count_file_lines(path);
1935 if (ret != -1)
1936 count += ret;
1937 free(path);
1938
1939 (void)closedir(dir);
1940
1941 return count;
1942 }
1943
1944 __cgfsng_ops static int cgfsng_nrtasks(struct cgroup_ops *ops)
1945 {
1946 int count;
1947 char *path;
1948
1949 if (!ops->container_cgroup || !ops->hierarchies)
1950 return -1;
1951
1952 path = must_make_path(ops->hierarchies[0]->container_full_path, NULL);
1953 count = recursive_count_nrtasks(path);
1954 free(path);
1955 return count;
1956 }
1957
1958 /* Only root needs to escape to the cgroup of its init. */
1959 __cgfsng_ops static bool cgfsng_escape(const struct cgroup_ops *ops,
1960 struct lxc_conf *conf)
1961 {
1962 int i;
1963
1964 if (conf->cgroup_meta.relative || geteuid())
1965 return true;
1966
1967 for (i = 0; ops->hierarchies[i]; i++) {
1968 int ret;
1969 char *fullpath;
1970
1971 fullpath = must_make_path(ops->hierarchies[i]->mountpoint,
1972 ops->hierarchies[i]->container_base_path,
1973 "cgroup.procs", NULL);
1974 ret = lxc_write_to_file(fullpath, "0", 2, false, 0666);
1975 if (ret != 0) {
1976 SYSERROR("Failed to escape to cgroup \"%s\"", fullpath);
1977 free(fullpath);
1978 return false;
1979 }
1980 free(fullpath);
1981 }
1982
1983 return true;
1984 }
1985
1986 __cgfsng_ops static int cgfsng_num_hierarchies(struct cgroup_ops *ops)
1987 {
1988 int i;
1989
1990 for (i = 0; ops->hierarchies[i]; i++)
1991 ;
1992
1993 return i;
1994 }
1995
1996 __cgfsng_ops static bool cgfsng_get_hierarchies(struct cgroup_ops *ops, int n, char ***out)
1997 {
1998 int i;
1999
2000 /* sanity check n */
2001 for (i = 0; i < n; i++)
2002 if (!ops->hierarchies[i])
2003 return false;
2004
2005 *out = ops->hierarchies[i]->controllers;
2006
2007 return true;
2008 }
2009
2010 #define THAWED "THAWED"
2011 #define THAWED_LEN (strlen(THAWED))
2012
2013 /* TODO: If the unified cgroup hierarchy grows a freezer controller this needs
2014 * to be adapted.
2015 */
2016 __cgfsng_ops static bool cgfsng_unfreeze(struct cgroup_ops *ops)
2017 {
2018 int ret;
2019 char *fullpath;
2020 struct hierarchy *h;
2021
2022 h = get_hierarchy(ops, "freezer");
2023 if (!h)
2024 return false;
2025
2026 fullpath = must_make_path(h->container_full_path, "freezer.state", NULL);
2027 ret = lxc_write_to_file(fullpath, THAWED, THAWED_LEN, false, 0666);
2028 free(fullpath);
2029 if (ret < 0)
2030 return false;
2031
2032 return true;
2033 }
2034
2035 __cgfsng_ops static const char *cgfsng_get_cgroup(struct cgroup_ops *ops,
2036 const char *controller)
2037 {
2038 struct hierarchy *h;
2039
2040 h = get_hierarchy(ops, controller);
2041 if (!h) {
2042 WARN("Failed to find hierarchy for controller \"%s\"",
2043 controller ? controller : "(null)");
2044 return NULL;
2045 }
2046
2047 return h->container_full_path ? h->container_full_path + strlen(h->mountpoint) : NULL;
2048 }
2049
2050 /* Given a cgroup path returned from lxc_cmd_get_cgroup_path, build a full path,
2051 * which must be freed by the caller.
2052 */
2053 static inline char *build_full_cgpath_from_monitorpath(struct hierarchy *h,
2054 const char *inpath,
2055 const char *filename)
2056 {
2057 return must_make_path(h->mountpoint, inpath, filename, NULL);
2058 }
2059
2060 /* Technically, we're always at a delegation boundary here (This is especially
2061 * true when cgroup namespaces are available.). The reasoning is that in order
2062 * for us to have been able to start a container in the first place the root
2063 * cgroup must have been a leaf node. Now, either the container's init system
2064 * has populated the cgroup and kept it as a leaf node or it has created
2065 * subtrees. In the former case we will simply attach to the leaf node we
2066 * created when we started the container in the latter case we create our own
2067 * cgroup for the attaching process.
2068 */
2069 static int __cg_unified_attach(const struct hierarchy *h, const char *name,
2070 const char *lxcpath, const char *pidstr,
2071 size_t pidstr_len, const char *controller)
2072 {
2073 int ret;
2074 size_t len;
2075 int fret = -1, idx = 0;
2076 char *base_path = NULL, *container_cgroup = NULL, *full_path = NULL;
2077
2078 container_cgroup = lxc_cmd_get_cgroup_path(name, lxcpath, controller);
2079 /* not running */
2080 if (!container_cgroup)
2081 return 0;
2082
2083 base_path = must_make_path(h->mountpoint, container_cgroup, NULL);
2084 full_path = must_make_path(base_path, "cgroup.procs", NULL);
2085 /* cgroup is populated */
2086 ret = lxc_write_to_file(full_path, pidstr, pidstr_len, false, 0666);
2087 if (ret < 0 && errno != EBUSY)
2088 goto on_error;
2089
2090 if (ret == 0)
2091 goto on_success;
2092
2093 free(full_path);
2094
2095 len = strlen(base_path) + STRLITERALLEN("/lxc-1000") +
2096 STRLITERALLEN("/cgroup-procs");
2097 full_path = must_realloc(NULL, len + 1);
2098 do {
2099 if (idx)
2100 ret = snprintf(full_path, len + 1, "%s/lxc-%d",
2101 base_path, idx);
2102 else
2103 ret = snprintf(full_path, len + 1, "%s/lxc", base_path);
2104 if (ret < 0 || (size_t)ret >= len + 1)
2105 goto on_error;
2106
2107 ret = mkdir_p(full_path, 0755);
2108 if (ret < 0 && errno != EEXIST)
2109 goto on_error;
2110
2111 (void)strlcat(full_path, "/cgroup.procs", len + 1);
2112 ret = lxc_write_to_file(full_path, pidstr, len, false, 0666);
2113 if (ret == 0)
2114 goto on_success;
2115
2116 /* this is a non-leaf node */
2117 if (errno != EBUSY)
2118 goto on_error;
2119
2120 idx++;
2121 } while (idx < 1000);
2122
2123 on_success:
2124 if (idx < 1000)
2125 fret = 0;
2126
2127 on_error:
2128 free(base_path);
2129 free(container_cgroup);
2130 free(full_path);
2131
2132 return fret;
2133 }
2134
2135 __cgfsng_ops static bool cgfsng_attach(struct cgroup_ops *ops, const char *name,
2136 const char *lxcpath, pid_t pid)
2137 {
2138 int i, len, ret;
2139 char pidstr[INTTYPE_TO_STRLEN(pid_t)];
2140
2141 len = snprintf(pidstr, sizeof(pidstr), "%d", pid);
2142 if (len < 0 || (size_t)len >= sizeof(pidstr))
2143 return false;
2144
2145 for (i = 0; ops->hierarchies[i]; i++) {
2146 char *path;
2147 char *fullpath = NULL;
2148 struct hierarchy *h = ops->hierarchies[i];
2149
2150 if (h->version == CGROUP2_SUPER_MAGIC) {
2151 ret = __cg_unified_attach(h, name, lxcpath, pidstr, len,
2152 h->controllers[0]);
2153 if (ret < 0)
2154 return false;
2155
2156 continue;
2157 }
2158
2159 path = lxc_cmd_get_cgroup_path(name, lxcpath, h->controllers[0]);
2160 /* not running */
2161 if (!path)
2162 continue;
2163
2164 fullpath = build_full_cgpath_from_monitorpath(h, path, "cgroup.procs");
2165 free(path);
2166 ret = lxc_write_to_file(fullpath, pidstr, len, false, 0666);
2167 if (ret < 0) {
2168 SYSERROR("Failed to attach %d to %s", (int)pid, fullpath);
2169 free(fullpath);
2170 return false;
2171 }
2172 free(fullpath);
2173 }
2174
2175 return true;
2176 }
2177
2178 /* Called externally (i.e. from 'lxc-cgroup') to query cgroup limits. Here we
2179 * don't have a cgroup_data set up, so we ask the running container through the
2180 * commands API for the cgroup path.
2181 */
2182 __cgfsng_ops static int cgfsng_get(struct cgroup_ops *ops, const char *filename,
2183 char *value, size_t len, const char *name,
2184 const char *lxcpath)
2185 {
2186 int ret = -1;
2187 size_t controller_len;
2188 char *controller, *p, *path;
2189 struct hierarchy *h;
2190
2191 controller_len = strlen(filename);
2192 controller = alloca(controller_len + 1);
2193 (void)strlcpy(controller, filename, controller_len + 1);
2194
2195 p = strchr(controller, '.');
2196 if (p)
2197 *p = '\0';
2198
2199 path = lxc_cmd_get_cgroup_path(name, lxcpath, controller);
2200 /* not running */
2201 if (!path)
2202 return -1;
2203
2204 h = get_hierarchy(ops, controller);
2205 if (h) {
2206 char *fullpath;
2207
2208 fullpath = build_full_cgpath_from_monitorpath(h, path, filename);
2209 ret = lxc_read_from_file(fullpath, value, len);
2210 free(fullpath);
2211 }
2212 free(path);
2213
2214 return ret;
2215 }
2216
2217 /* Called externally (i.e. from 'lxc-cgroup') to set new cgroup limits. Here we
2218 * don't have a cgroup_data set up, so we ask the running container through the
2219 * commands API for the cgroup path.
2220 */
2221 __cgfsng_ops static int cgfsng_set(struct cgroup_ops *ops,
2222 const char *filename, const char *value,
2223 const char *name, const char *lxcpath)
2224 {
2225 int ret = -1;
2226 size_t controller_len;
2227 char *controller, *p, *path;
2228 struct hierarchy *h;
2229
2230 controller_len = strlen(filename);
2231 controller = alloca(controller_len + 1);
2232 (void)strlcpy(controller, filename, controller_len + 1);
2233
2234 p = strchr(controller, '.');
2235 if (p)
2236 *p = '\0';
2237
2238 path = lxc_cmd_get_cgroup_path(name, lxcpath, controller);
2239 /* not running */
2240 if (!path)
2241 return -1;
2242
2243 h = get_hierarchy(ops, controller);
2244 if (h) {
2245 char *fullpath;
2246
2247 fullpath = build_full_cgpath_from_monitorpath(h, path, filename);
2248 ret = lxc_write_to_file(fullpath, value, strlen(value), false, 0666);
2249 free(fullpath);
2250 }
2251 free(path);
2252
2253 return ret;
2254 }
2255
2256 /* take devices cgroup line
2257 * /dev/foo rwx
2258 * and convert it to a valid
2259 * type major:minor mode
2260 * line. Return <0 on error. Dest is a preallocated buffer long enough to hold
2261 * the output.
2262 */
2263 static int convert_devpath(const char *invalue, char *dest)
2264 {
2265 int n_parts;
2266 char *p, *path, type;
2267 unsigned long minor, major;
2268 struct stat sb;
2269 int ret = -EINVAL;
2270 char *mode = NULL;
2271
2272 path = must_copy_string(invalue);
2273
2274 /* Read path followed by mode. Ignore any trailing text.
2275 * A ' # comment' would be legal. Technically other text is not
2276 * legal, we could check for that if we cared to.
2277 */
2278 for (n_parts = 1, p = path; *p && n_parts < 3; p++) {
2279 if (*p != ' ')
2280 continue;
2281 *p = '\0';
2282
2283 if (n_parts != 1)
2284 break;
2285 p++;
2286 n_parts++;
2287
2288 while (*p == ' ')
2289 p++;
2290
2291 mode = p;
2292
2293 if (*p == '\0')
2294 goto out;
2295 }
2296
2297 if (n_parts == 1)
2298 goto out;
2299
2300 ret = stat(path, &sb);
2301 if (ret < 0)
2302 goto out;
2303
2304 mode_t m = sb.st_mode & S_IFMT;
2305 switch (m) {
2306 case S_IFBLK:
2307 type = 'b';
2308 break;
2309 case S_IFCHR:
2310 type = 'c';
2311 break;
2312 default:
2313 ERROR("Unsupported device type %i for \"%s\"", m, path);
2314 ret = -EINVAL;
2315 goto out;
2316 }
2317
2318 major = MAJOR(sb.st_rdev);
2319 minor = MINOR(sb.st_rdev);
2320 ret = snprintf(dest, 50, "%c %lu:%lu %s", type, major, minor, mode);
2321 if (ret < 0 || ret >= 50) {
2322 ERROR("Error on configuration value \"%c %lu:%lu %s\" (max 50 "
2323 "chars)", type, major, minor, mode);
2324 ret = -ENAMETOOLONG;
2325 goto out;
2326 }
2327 ret = 0;
2328
2329 out:
2330 free(path);
2331 return ret;
2332 }
2333
2334 /* Called from setup_limits - here we have the container's cgroup_data because
2335 * we created the cgroups.
2336 */
2337 static int cg_legacy_set_data(struct cgroup_ops *ops, const char *filename,
2338 const char *value)
2339 {
2340 size_t len;
2341 char *fullpath, *p;
2342 /* "b|c <2^64-1>:<2^64-1> r|w|m" = 47 chars max */
2343 char converted_value[50];
2344 struct hierarchy *h;
2345 int ret = 0;
2346 char *controller = NULL;
2347
2348 len = strlen(filename);
2349 controller = alloca(len + 1);
2350 (void)strlcpy(controller, filename, len + 1);
2351
2352 p = strchr(controller, '.');
2353 if (p)
2354 *p = '\0';
2355
2356 if (strcmp("devices.allow", filename) == 0 && value[0] == '/') {
2357 ret = convert_devpath(value, converted_value);
2358 if (ret < 0)
2359 return ret;
2360 value = converted_value;
2361 }
2362
2363 h = get_hierarchy(ops, controller);
2364 if (!h) {
2365 ERROR("Failed to setup limits for the \"%s\" controller. "
2366 "The controller seems to be unused by \"cgfsng\" cgroup "
2367 "driver or not enabled on the cgroup hierarchy",
2368 controller);
2369 errno = ENOENT;
2370 return -ENOENT;
2371 }
2372
2373 fullpath = must_make_path(h->container_full_path, filename, NULL);
2374 ret = lxc_write_to_file(fullpath, value, strlen(value), false, 0666);
2375 free(fullpath);
2376 return ret;
2377 }
2378
2379 static bool __cg_legacy_setup_limits(struct cgroup_ops *ops,
2380 struct lxc_list *cgroup_settings,
2381 bool do_devices)
2382 {
2383 struct lxc_list *iterator, *next, *sorted_cgroup_settings;
2384 struct lxc_cgroup *cg;
2385 bool ret = false;
2386
2387 if (lxc_list_empty(cgroup_settings))
2388 return true;
2389
2390 sorted_cgroup_settings = sort_cgroup_settings(cgroup_settings);
2391 if (!sorted_cgroup_settings)
2392 return false;
2393
2394 lxc_list_for_each(iterator, sorted_cgroup_settings) {
2395 cg = iterator->elem;
2396
2397 if (do_devices == !strncmp("devices", cg->subsystem, 7)) {
2398 if (cg_legacy_set_data(ops, cg->subsystem, cg->value)) {
2399 if (do_devices && (errno == EACCES || errno == EPERM)) {
2400 WARN("Failed to set \"%s\" to \"%s\"",
2401 cg->subsystem, cg->value);
2402 continue;
2403 }
2404 WARN("Failed to set \"%s\" to \"%s\"",
2405 cg->subsystem, cg->value);
2406 goto out;
2407 }
2408 DEBUG("Set controller \"%s\" set to \"%s\"",
2409 cg->subsystem, cg->value);
2410 }
2411 }
2412
2413 ret = true;
2414 INFO("Limits for the legacy cgroup hierarchies have been setup");
2415 out:
2416 lxc_list_for_each_safe(iterator, sorted_cgroup_settings, next) {
2417 lxc_list_del(iterator);
2418 free(iterator);
2419 }
2420 free(sorted_cgroup_settings);
2421 return ret;
2422 }
2423
2424 static bool __cg_unified_setup_limits(struct cgroup_ops *ops,
2425 struct lxc_list *cgroup_settings)
2426 {
2427 struct lxc_list *iterator;
2428 struct hierarchy *h = ops->unified;
2429
2430 if (lxc_list_empty(cgroup_settings))
2431 return true;
2432
2433 if (!h)
2434 return false;
2435
2436 lxc_list_for_each(iterator, cgroup_settings) {
2437 int ret;
2438 char *fullpath;
2439 struct lxc_cgroup *cg = iterator->elem;
2440
2441 fullpath = must_make_path(h->container_full_path, cg->subsystem, NULL);
2442 ret = lxc_write_to_file(fullpath, cg->value, strlen(cg->value), false, 0666);
2443 free(fullpath);
2444 if (ret < 0) {
2445 SYSERROR("Failed to set \"%s\" to \"%s\"",
2446 cg->subsystem, cg->value);
2447 return false;
2448 }
2449 TRACE("Set \"%s\" to \"%s\"", cg->subsystem, cg->value);
2450 }
2451
2452 INFO("Limits for the unified cgroup hierarchy have been setup");
2453 return true;
2454 }
2455
2456 __cgfsng_ops static bool cgfsng_setup_limits(struct cgroup_ops *ops,
2457 struct lxc_conf *conf,
2458 bool do_devices)
2459 {
2460 bool bret;
2461
2462 bret = __cg_legacy_setup_limits(ops, &conf->cgroup, do_devices);
2463 if (!bret)
2464 return false;
2465
2466 return __cg_unified_setup_limits(ops, &conf->cgroup2);
2467 }
2468
2469 static bool cgroup_use_wants_controllers(const struct cgroup_ops *ops,
2470 char **controllers)
2471 {
2472 char **cur_ctrl, **cur_use;
2473
2474 if (!ops->cgroup_use)
2475 return true;
2476
2477 for (cur_ctrl = controllers; cur_ctrl && *cur_ctrl; cur_ctrl++) {
2478 bool found = false;
2479
2480 for (cur_use = ops->cgroup_use; cur_use && *cur_use; cur_use++) {
2481 if (strcmp(*cur_use, *cur_ctrl) != 0)
2482 continue;
2483
2484 found = true;
2485 break;
2486 }
2487
2488 if (found)
2489 continue;
2490
2491 return false;
2492 }
2493
2494 return true;
2495 }
2496
2497 /* At startup, parse_hierarchies finds all the info we need about cgroup
2498 * mountpoints and current cgroups, and stores it in @d.
2499 */
2500 static bool cg_hybrid_init(struct cgroup_ops *ops, bool relative)
2501 {
2502 int ret;
2503 char *basecginfo;
2504 FILE *f;
2505 size_t len = 0;
2506 char *line = NULL;
2507 char **klist = NULL, **nlist = NULL;
2508
2509 /* Root spawned containers escape the current cgroup, so use init's
2510 * cgroups as our base in that case.
2511 */
2512 if (!relative && (geteuid() == 0))
2513 basecginfo = read_file("/proc/1/cgroup");
2514 else
2515 basecginfo = read_file("/proc/self/cgroup");
2516 if (!basecginfo)
2517 return false;
2518
2519 ret = get_existing_subsystems(&klist, &nlist);
2520 if (ret < 0) {
2521 ERROR("Failed to retrieve available legacy cgroup controllers");
2522 free(basecginfo);
2523 return false;
2524 }
2525
2526 f = fopen("/proc/self/mountinfo", "r");
2527 if (!f) {
2528 ERROR("Failed to open \"/proc/self/mountinfo\"");
2529 free(basecginfo);
2530 return false;
2531 }
2532
2533 lxc_cgfsng_print_basecg_debuginfo(basecginfo, klist, nlist);
2534
2535 while (getline(&line, &len, f) != -1) {
2536 int type;
2537 bool writeable;
2538 struct hierarchy *new;
2539 char *base_cgroup = NULL, *mountpoint = NULL;
2540 char **controller_list = NULL;
2541
2542 type = get_cgroup_version(line);
2543 if (type == 0)
2544 continue;
2545
2546 if (type == CGROUP2_SUPER_MAGIC && ops->unified)
2547 continue;
2548
2549 if (ops->cgroup_layout == CGROUP_LAYOUT_UNKNOWN) {
2550 if (type == CGROUP2_SUPER_MAGIC)
2551 ops->cgroup_layout = CGROUP_LAYOUT_UNIFIED;
2552 else if (type == CGROUP_SUPER_MAGIC)
2553 ops->cgroup_layout = CGROUP_LAYOUT_LEGACY;
2554 } else if (ops->cgroup_layout == CGROUP_LAYOUT_UNIFIED) {
2555 if (type == CGROUP_SUPER_MAGIC)
2556 ops->cgroup_layout = CGROUP_LAYOUT_HYBRID;
2557 } else if (ops->cgroup_layout == CGROUP_LAYOUT_LEGACY) {
2558 if (type == CGROUP2_SUPER_MAGIC)
2559 ops->cgroup_layout = CGROUP_LAYOUT_HYBRID;
2560 }
2561
2562 controller_list = cg_hybrid_get_controllers(klist, nlist, line, type);
2563 if (!controller_list && type == CGROUP_SUPER_MAGIC)
2564 continue;
2565
2566 if (type == CGROUP_SUPER_MAGIC)
2567 if (controller_list_is_dup(ops->hierarchies, controller_list))
2568 goto next;
2569
2570 mountpoint = cg_hybrid_get_mountpoint(line);
2571 if (!mountpoint) {
2572 ERROR("Failed parsing mountpoint from \"%s\"", line);
2573 goto next;
2574 }
2575
2576 if (type == CGROUP_SUPER_MAGIC)
2577 base_cgroup = cg_hybrid_get_current_cgroup(basecginfo, controller_list[0], CGROUP_SUPER_MAGIC);
2578 else
2579 base_cgroup = cg_hybrid_get_current_cgroup(basecginfo, NULL, CGROUP2_SUPER_MAGIC);
2580 if (!base_cgroup) {
2581 ERROR("Failed to find current cgroup");
2582 goto next;
2583 }
2584
2585 trim(base_cgroup);
2586 prune_init_scope(base_cgroup);
2587 if (type == CGROUP2_SUPER_MAGIC)
2588 writeable = test_writeable_v2(mountpoint, base_cgroup);
2589 else
2590 writeable = test_writeable_v1(mountpoint, base_cgroup);
2591 if (!writeable)
2592 goto next;
2593
2594 if (type == CGROUP2_SUPER_MAGIC) {
2595 char *cgv2_ctrl_path;
2596
2597 cgv2_ctrl_path = must_make_path(mountpoint, base_cgroup,
2598 "cgroup.controllers",
2599 NULL);
2600
2601 controller_list = cg_unified_get_controllers(cgv2_ctrl_path);
2602 free(cgv2_ctrl_path);
2603 if (!controller_list) {
2604 controller_list = cg_unified_make_empty_controller();
2605 TRACE("No controllers are enabled for "
2606 "delegation in the unified hierarchy");
2607 }
2608 }
2609
2610 /* Exclude all controllers that cgroup use does not want. */
2611 if (!cgroup_use_wants_controllers(ops, controller_list))
2612 goto next;
2613
2614 new = add_hierarchy(&ops->hierarchies, controller_list, mountpoint, base_cgroup, type);
2615 if (type == CGROUP2_SUPER_MAGIC && !ops->unified)
2616 ops->unified = new;
2617
2618 continue;
2619
2620 next:
2621 free_string_list(controller_list);
2622 free(mountpoint);
2623 free(base_cgroup);
2624 }
2625
2626 free_string_list(klist);
2627 free_string_list(nlist);
2628
2629 free(basecginfo);
2630
2631 fclose(f);
2632 free(line);
2633
2634 TRACE("Writable cgroup hierarchies:");
2635 lxc_cgfsng_print_hierarchies(ops);
2636
2637 /* verify that all controllers in cgroup.use and all crucial
2638 * controllers are accounted for
2639 */
2640 if (!all_controllers_found(ops))
2641 return false;
2642
2643 return true;
2644 }
2645
2646 static int cg_is_pure_unified(void)
2647 {
2648
2649 int ret;
2650 struct statfs fs;
2651
2652 ret = statfs("/sys/fs/cgroup", &fs);
2653 if (ret < 0)
2654 return -ENOMEDIUM;
2655
2656 if (is_fs_type(&fs, CGROUP2_SUPER_MAGIC))
2657 return CGROUP2_SUPER_MAGIC;
2658
2659 return 0;
2660 }
2661
2662 /* Get current cgroup from /proc/self/cgroup for the cgroupfs v2 hierarchy. */
2663 static char *cg_unified_get_current_cgroup(bool relative)
2664 {
2665 char *basecginfo, *base_cgroup;
2666 char *copy = NULL;
2667
2668 if (!relative && (geteuid() == 0))
2669 basecginfo = read_file("/proc/1/cgroup");
2670 else
2671 basecginfo = read_file("/proc/self/cgroup");
2672 if (!basecginfo)
2673 return NULL;
2674
2675 base_cgroup = strstr(basecginfo, "0::/");
2676 if (!base_cgroup)
2677 goto cleanup_on_err;
2678
2679 base_cgroup = base_cgroup + 3;
2680 copy = copy_to_eol(base_cgroup);
2681 if (!copy)
2682 goto cleanup_on_err;
2683
2684 cleanup_on_err:
2685 free(basecginfo);
2686 if (copy)
2687 trim(copy);
2688
2689 return copy;
2690 }
2691
2692 static int cg_unified_init(struct cgroup_ops *ops, bool relative)
2693 {
2694 int ret;
2695 char *mountpoint, *subtree_path;
2696 char **delegatable;
2697 char *base_cgroup = NULL;
2698
2699 ret = cg_is_pure_unified();
2700 if (ret == -ENOMEDIUM)
2701 return -ENOMEDIUM;
2702
2703 if (ret != CGROUP2_SUPER_MAGIC)
2704 return 0;
2705
2706 base_cgroup = cg_unified_get_current_cgroup(relative);
2707 if (!base_cgroup)
2708 return -EINVAL;
2709 prune_init_scope(base_cgroup);
2710
2711 /* We assume that we have already been given controllers to delegate
2712 * further down the hierarchy. If not it is up to the user to delegate
2713 * them to us.
2714 */
2715 mountpoint = must_copy_string("/sys/fs/cgroup");
2716 subtree_path = must_make_path(mountpoint, base_cgroup,
2717 "cgroup.subtree_control", NULL);
2718 delegatable = cg_unified_get_controllers(subtree_path);
2719 free(subtree_path);
2720 if (!delegatable)
2721 delegatable = cg_unified_make_empty_controller();
2722 if (!delegatable[0])
2723 TRACE("No controllers are enabled for delegation");
2724
2725 /* TODO: If the user requested specific controllers via lxc.cgroup.use
2726 * we should verify here. The reason I'm not doing it right is that I'm
2727 * not convinced that lxc.cgroup.use will be the future since it is a
2728 * global property. I much rather have an option that lets you request
2729 * controllers per container.
2730 */
2731
2732 add_hierarchy(&ops->hierarchies, delegatable, mountpoint, base_cgroup, CGROUP2_SUPER_MAGIC);
2733
2734 ops->cgroup_layout = CGROUP_LAYOUT_UNIFIED;
2735 return CGROUP2_SUPER_MAGIC;
2736 }
2737
2738 static bool cg_init(struct cgroup_ops *ops, struct lxc_conf *conf)
2739 {
2740 int ret;
2741 const char *tmp;
2742 bool relative = conf->cgroup_meta.relative;
2743
2744 tmp = lxc_global_config_value("lxc.cgroup.use");
2745 if (tmp) {
2746 char *chop, *cur, *pin;
2747
2748 pin = must_copy_string(tmp);
2749 chop = pin;
2750
2751 lxc_iterate_parts(cur, chop, ",") {
2752 must_append_string(&ops->cgroup_use, cur);
2753 }
2754
2755 free(pin);
2756 }
2757
2758 ret = cg_unified_init(ops, relative);
2759 if (ret < 0)
2760 return false;
2761
2762 if (ret == CGROUP2_SUPER_MAGIC)
2763 return true;
2764
2765 return cg_hybrid_init(ops, relative);
2766 }
2767
2768 __cgfsng_ops static bool cgfsng_data_init(struct cgroup_ops *ops)
2769 {
2770 const char *cgroup_pattern;
2771
2772 /* copy system-wide cgroup information */
2773 cgroup_pattern = lxc_global_config_value("lxc.cgroup.pattern");
2774 if (!cgroup_pattern) {
2775 /* lxc.cgroup.pattern is only NULL on error. */
2776 ERROR("Failed to retrieve cgroup pattern");
2777 return false;
2778 }
2779 ops->cgroup_pattern = must_copy_string(cgroup_pattern);
2780 ops->monitor_pattern = MONITOR_CGROUP;
2781
2782 return true;
2783 }
2784
2785 struct cgroup_ops *cgfsng_ops_init(struct lxc_conf *conf)
2786 {
2787 struct cgroup_ops *cgfsng_ops;
2788
2789 cgfsng_ops = malloc(sizeof(struct cgroup_ops));
2790 if (!cgfsng_ops)
2791 return NULL;
2792
2793 memset(cgfsng_ops, 0, sizeof(struct cgroup_ops));
2794 cgfsng_ops->cgroup_layout = CGROUP_LAYOUT_UNKNOWN;
2795
2796 if (!cg_init(cgfsng_ops, conf)) {
2797 free(cgfsng_ops);
2798 return NULL;
2799 }
2800
2801 cgfsng_ops->data_init = cgfsng_data_init;
2802 cgfsng_ops->payload_destroy = cgfsng_payload_destroy;
2803 cgfsng_ops->monitor_destroy = cgfsng_monitor_destroy;
2804 cgfsng_ops->monitor_create = cgfsng_monitor_create;
2805 cgfsng_ops->monitor_enter = cgfsng_monitor_enter;
2806 cgfsng_ops->payload_create = cgfsng_payload_create;
2807 cgfsng_ops->payload_enter = cgfsng_payload_enter;
2808 cgfsng_ops->escape = cgfsng_escape;
2809 cgfsng_ops->num_hierarchies = cgfsng_num_hierarchies;
2810 cgfsng_ops->get_hierarchies = cgfsng_get_hierarchies;
2811 cgfsng_ops->get_cgroup = cgfsng_get_cgroup;
2812 cgfsng_ops->get = cgfsng_get;
2813 cgfsng_ops->set = cgfsng_set;
2814 cgfsng_ops->unfreeze = cgfsng_unfreeze;
2815 cgfsng_ops->setup_limits = cgfsng_setup_limits;
2816 cgfsng_ops->driver = "cgfsng";
2817 cgfsng_ops->version = "1.0.0";
2818 cgfsng_ops->attach = cgfsng_attach;
2819 cgfsng_ops->chown = cgfsng_chown;
2820 cgfsng_ops->mount = cgfsng_mount;
2821 cgfsng_ops->nrtasks = cgfsng_nrtasks;
2822
2823 return cgfsng_ops;
2824 }