proc: test /proc/thread-self symlink
[linux/fpc-iii.git] / tools / testing / selftests / cgroup / cgroup_util.c
blob1c5d2b2a583b3348b13f47b89c75d5ce504ac621
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define _GNU_SOURCE
5 #include <errno.h>
6 #include <fcntl.h>
7 #include <linux/limits.h>
8 #include <signal.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <sys/stat.h>
13 #include <sys/types.h>
14 #include <sys/wait.h>
15 #include <unistd.h>
17 #include "cgroup_util.h"
19 static ssize_t read_text(const char *path, char *buf, size_t max_len)
21 ssize_t len;
22 int fd;
24 fd = open(path, O_RDONLY);
25 if (fd < 0)
26 return fd;
28 len = read(fd, buf, max_len - 1);
29 if (len < 0)
30 goto out;
32 buf[len] = 0;
33 out:
34 close(fd);
35 return len;
38 static ssize_t write_text(const char *path, char *buf, ssize_t len)
40 int fd;
42 fd = open(path, O_WRONLY | O_APPEND);
43 if (fd < 0)
44 return fd;
46 len = write(fd, buf, len);
47 if (len < 0) {
48 close(fd);
49 return len;
52 close(fd);
54 return len;
57 char *cg_name(const char *root, const char *name)
59 size_t len = strlen(root) + strlen(name) + 2;
60 char *ret = malloc(len);
62 snprintf(ret, len, "%s/%s", root, name);
64 return ret;
67 char *cg_name_indexed(const char *root, const char *name, int index)
69 size_t len = strlen(root) + strlen(name) + 10;
70 char *ret = malloc(len);
72 snprintf(ret, len, "%s/%s_%d", root, name, index);
74 return ret;
77 int cg_read(const char *cgroup, const char *control, char *buf, size_t len)
79 char path[PATH_MAX];
81 snprintf(path, sizeof(path), "%s/%s", cgroup, control);
83 if (read_text(path, buf, len) >= 0)
84 return 0;
86 return -1;
89 int cg_read_strcmp(const char *cgroup, const char *control,
90 const char *expected)
92 size_t size = strlen(expected) + 1;
93 char *buf;
95 buf = malloc(size);
96 if (!buf)
97 return -1;
99 if (cg_read(cgroup, control, buf, size))
100 return -1;
102 return strcmp(expected, buf);
105 int cg_read_strstr(const char *cgroup, const char *control, const char *needle)
107 char buf[PAGE_SIZE];
109 if (cg_read(cgroup, control, buf, sizeof(buf)))
110 return -1;
112 return strstr(buf, needle) ? 0 : -1;
115 long cg_read_long(const char *cgroup, const char *control)
117 char buf[128];
119 if (cg_read(cgroup, control, buf, sizeof(buf)))
120 return -1;
122 return atol(buf);
125 long cg_read_key_long(const char *cgroup, const char *control, const char *key)
127 char buf[PAGE_SIZE];
128 char *ptr;
130 if (cg_read(cgroup, control, buf, sizeof(buf)))
131 return -1;
133 ptr = strstr(buf, key);
134 if (!ptr)
135 return -1;
137 return atol(ptr + strlen(key));
140 int cg_write(const char *cgroup, const char *control, char *buf)
142 char path[PATH_MAX];
143 ssize_t len = strlen(buf);
145 snprintf(path, sizeof(path), "%s/%s", cgroup, control);
147 if (write_text(path, buf, len) == len)
148 return 0;
150 return -1;
153 int cg_find_unified_root(char *root, size_t len)
155 char buf[10 * PAGE_SIZE];
156 char *fs, *mount, *type;
157 const char delim[] = "\n\t ";
159 if (read_text("/proc/self/mounts", buf, sizeof(buf)) <= 0)
160 return -1;
163 * Example:
164 * cgroup /sys/fs/cgroup cgroup2 rw,seclabel,noexec,relatime 0 0
166 for (fs = strtok(buf, delim); fs; fs = strtok(NULL, delim)) {
167 mount = strtok(NULL, delim);
168 type = strtok(NULL, delim);
169 strtok(NULL, delim);
170 strtok(NULL, delim);
171 strtok(NULL, delim);
173 if (strcmp(fs, "cgroup") == 0 &&
174 strcmp(type, "cgroup2") == 0) {
175 strncpy(root, mount, len);
176 return 0;
180 return -1;
183 int cg_create(const char *cgroup)
185 return mkdir(cgroup, 0644);
188 static int cg_killall(const char *cgroup)
190 char buf[PAGE_SIZE];
191 char *ptr = buf;
193 if (cg_read(cgroup, "cgroup.procs", buf, sizeof(buf)))
194 return -1;
196 while (ptr < buf + sizeof(buf)) {
197 int pid = strtol(ptr, &ptr, 10);
199 if (pid == 0)
200 break;
201 if (*ptr)
202 ptr++;
203 else
204 break;
205 if (kill(pid, SIGKILL))
206 return -1;
209 return 0;
212 int cg_destroy(const char *cgroup)
214 int ret;
216 retry:
217 ret = rmdir(cgroup);
218 if (ret && errno == EBUSY) {
219 ret = cg_killall(cgroup);
220 if (ret)
221 return ret;
222 usleep(100);
223 goto retry;
226 if (ret && errno == ENOENT)
227 ret = 0;
229 return ret;
232 int cg_enter_current(const char *cgroup)
234 char pidbuf[64];
236 snprintf(pidbuf, sizeof(pidbuf), "%d", getpid());
237 return cg_write(cgroup, "cgroup.procs", pidbuf);
240 int cg_run(const char *cgroup,
241 int (*fn)(const char *cgroup, void *arg),
242 void *arg)
244 int pid, retcode;
246 pid = fork();
247 if (pid < 0) {
248 return pid;
249 } else if (pid == 0) {
250 char buf[64];
252 snprintf(buf, sizeof(buf), "%d", getpid());
253 if (cg_write(cgroup, "cgroup.procs", buf))
254 exit(EXIT_FAILURE);
255 exit(fn(cgroup, arg));
256 } else {
257 waitpid(pid, &retcode, 0);
258 if (WIFEXITED(retcode))
259 return WEXITSTATUS(retcode);
260 else
261 return -1;
265 int cg_run_nowait(const char *cgroup,
266 int (*fn)(const char *cgroup, void *arg),
267 void *arg)
269 int pid;
271 pid = fork();
272 if (pid == 0) {
273 char buf[64];
275 snprintf(buf, sizeof(buf), "%d", getpid());
276 if (cg_write(cgroup, "cgroup.procs", buf))
277 exit(EXIT_FAILURE);
278 exit(fn(cgroup, arg));
281 return pid;
284 int get_temp_fd(void)
286 return open(".", O_TMPFILE | O_RDWR | O_EXCL);
289 int alloc_pagecache(int fd, size_t size)
291 char buf[PAGE_SIZE];
292 struct stat st;
293 int i;
295 if (fstat(fd, &st))
296 goto cleanup;
298 size += st.st_size;
300 if (ftruncate(fd, size))
301 goto cleanup;
303 for (i = 0; i < size; i += sizeof(buf))
304 read(fd, buf, sizeof(buf));
306 return 0;
308 cleanup:
309 return -1;
312 int alloc_anon(const char *cgroup, void *arg)
314 size_t size = (unsigned long)arg;
315 char *buf, *ptr;
317 buf = malloc(size);
318 for (ptr = buf; ptr < buf + size; ptr += PAGE_SIZE)
319 *ptr = 0;
321 free(buf);
322 return 0;
325 int is_swap_enabled(void)
327 char buf[PAGE_SIZE];
328 const char delim[] = "\n";
329 int cnt = 0;
330 char *line;
332 if (read_text("/proc/swaps", buf, sizeof(buf)) <= 0)
333 return -1;
335 for (line = strtok(buf, delim); line; line = strtok(NULL, delim))
336 cnt++;
338 return cnt > 1;