6 #include <linux/limits.h>
8 #include <linux/sched.h>
14 #include "cgroup_helpers.h"
17 * To avoid relying on the system setup, when setup_cgroup_env is called
18 * we create a new mount namespace, and cgroup namespace. The cgroup2
19 * root is mounted at CGROUP_MOUNT_PATH
21 * Unfortunately, most people don't have cgroupv2 enabled at this point in time.
22 * It's easier to create our own mount namespace and manage it ourselves.
24 * We assume /mnt exists.
27 #define WALK_FD_LIMIT 16
28 #define CGROUP_MOUNT_PATH "/mnt"
29 #define CGROUP_WORK_DIR "/cgroup-test-work-dir"
30 #define format_cgroup_path(buf, path) \
31 snprintf(buf, sizeof(buf), "%s%s%s", CGROUP_MOUNT_PATH, \
32 CGROUP_WORK_DIR, path)
35 * setup_cgroup_environment() - Setup the cgroup environment
37 * After calling this function, cleanup_cgroup_environment should be called
38 * once testing is complete.
40 * This function will print an error to stderr and return 1 if it is unable
41 * to setup the cgroup environment. If setup is successful, 0 is returned.
43 int setup_cgroup_environment(void)
45 char cgroup_workdir
[PATH_MAX
+ 1];
47 format_cgroup_path(cgroup_workdir
, "");
49 if (unshare(CLONE_NEWNS
)) {
54 if (mount("none", "/", NULL
, MS_REC
| MS_PRIVATE
, NULL
)) {
55 log_err("mount fakeroot");
59 if (mount("none", CGROUP_MOUNT_PATH
, "cgroup2", 0, NULL
)) {
60 log_err("mount cgroup2");
64 /* Cleanup existing failed runs, now that the environment is setup */
65 cleanup_cgroup_environment();
67 if (mkdir(cgroup_workdir
, 0777) && errno
!= EEXIST
) {
68 log_err("mkdir cgroup work dir");
75 static int nftwfunc(const char *filename
, const struct stat
*statptr
,
76 int fileflags
, struct FTW
*pfwt
)
78 if ((fileflags
& FTW_D
) && rmdir(filename
))
79 log_err("Removing cgroup: %s", filename
);
84 static int join_cgroup_from_top(char *cgroup_path
)
86 char cgroup_procs_path
[PATH_MAX
+ 1];
90 snprintf(cgroup_procs_path
, sizeof(cgroup_procs_path
),
91 "%s/cgroup.procs", cgroup_path
);
93 fd
= open(cgroup_procs_path
, O_WRONLY
);
95 log_err("Opening Cgroup Procs: %s", cgroup_procs_path
);
99 if (dprintf(fd
, "%d\n", pid
) < 0) {
100 log_err("Joining Cgroup");
109 * join_cgroup() - Join a cgroup
110 * @path: The cgroup path, relative to the workdir, to join
112 * This function expects a cgroup to already be created, relative to the cgroup
113 * work dir, and it joins it. For example, passing "/my-cgroup" as the path
114 * would actually put the calling process into the cgroup
115 * "/cgroup-test-work-dir/my-cgroup"
117 * On success, it returns 0, otherwise on failure it returns 1.
119 int join_cgroup(char *path
)
121 char cgroup_path
[PATH_MAX
+ 1];
123 format_cgroup_path(cgroup_path
, path
);
124 return join_cgroup_from_top(cgroup_path
);
128 * cleanup_cgroup_environment() - Cleanup Cgroup Testing Environment
130 * This is an idempotent function to delete all temporary cgroups that
131 * have been created during the test, including the cgroup testing work
134 * At call time, it moves the calling process to the root cgroup, and then
135 * runs the deletion process. It is idempotent, and should not fail, unless
136 * a process is lingering.
138 * On failure, it will print an error to stderr, and try to continue.
140 void cleanup_cgroup_environment(void)
142 char cgroup_workdir
[PATH_MAX
+ 1];
144 format_cgroup_path(cgroup_workdir
, "");
145 join_cgroup_from_top(CGROUP_MOUNT_PATH
);
146 nftw(cgroup_workdir
, nftwfunc
, WALK_FD_LIMIT
, FTW_DEPTH
| FTW_MOUNT
);
150 * create_and_get_cgroup() - Create a cgroup, relative to workdir, and get the FD
151 * @path: The cgroup path, relative to the workdir, to join
153 * This function creates a cgroup under the top level workdir and returns the
154 * file descriptor. It is idempotent.
156 * On success, it returns the file descriptor. On failure it returns 0.
157 * If there is a failure, it prints the error to stderr.
159 int create_and_get_cgroup(char *path
)
161 char cgroup_path
[PATH_MAX
+ 1];
164 format_cgroup_path(cgroup_path
, path
);
165 if (mkdir(cgroup_path
, 0777) && errno
!= EEXIST
) {
166 log_err("mkdiring cgroup");
170 fd
= open(cgroup_path
, O_RDONLY
);
172 log_err("Opening Cgroup");