-
Notifications
You must be signed in to change notification settings - Fork 165
/
isolate-cg-keeper.c
143 lines (117 loc) · 2.83 KB
/
isolate-cg-keeper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
* A Trivial Helper Daemon for Keeping Control Groups in SystemD
*
* (c) 2022--2024 Martin Mares <mj@ucw.cz>
*/
#include "isolate.h"
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <systemd/sd-daemon.h>
#define CGROUP_FS "/sys/fs/cgroup"
void NONRET __attribute__((format(printf,1,2)))
die(char *msg, ...)
{
va_list args;
va_start(args, msg);
vfprintf(stderr, msg, args);
fputc('\n', stderr);
exit(1);
}
static void __attribute__((format(printf,3,4)))
write_cg_attr(const char *cg_root, const char *name, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
char namebuf[1024];
snprintf(namebuf, sizeof(namebuf), "%s/%s", cg_root, name);
char valbuf[1024];
vsnprintf(valbuf, sizeof(valbuf), fmt, args);
int len = strlen(valbuf);
int fd = open(namebuf, O_WRONLY);
if (fd < 0)
die("Cannot open %s: %m", namebuf);
if (write(fd, valbuf, len) != len)
die("Cannot write to %s: %m", namebuf);
close(fd);
va_end(args);
}
static void
check_cgroup_fs(void)
{
struct stat st;
if (stat(CGROUP_FS, &st) < 0)
die("Cannot find %s: %m", CGROUP_FS);
if (stat(CGROUP_FS "/unified", &st) >= 0)
die("Combined cgroup v1+v2 mode is not supported");
if (stat(CGROUP_FS "/cgroup.subtree_control", &st) < 0)
die("Cgroup v2 not found");
}
static char *
get_my_cgroup(void)
{
FILE *f = fopen("/proc/self/cgroup", "r");
if (!f)
die("Cannot open /proc/self/cgroup: %m");
char *line = NULL;
size_t buflen = 0;
ssize_t len;
char *cg = NULL;
while ((len = getline(&line, &buflen, f)) >= 0)
{
if (len > 0 && line[len-1] == '\n')
line[--len] = 0;
if (line[0] == '0' && line[1] == ':' && line[2] == ':')
{
cg = xsprintf(CGROUP_FS "%s", line + 3);
break;
}
}
if (!cg)
die("Cannot find my own cgroup");
free(line);
fclose(f);
return cg;
}
static void
write_auto_cgroup(char *file, char *cg)
{
make_dir_for(file);
FILE *f = fopen(file, "w");
if (!f)
die("Cannot create %s: %m", file);
fprintf(f, "%s\n", cg);
fclose(f);
}
static void
setup_cg(void)
{
char *cg = cf_cg_root;
if (strlen(cf_cg_root) > 5 && !memcmp(cf_cg_root, "auto:", 5))
{
check_cgroup_fs();
cg = get_my_cgroup();
write_auto_cgroup(cf_cg_root + 5, cg);
}
struct stat st;
if (stat(cg, &st), 0)
die("Control group root %s does not exist: %m", cg);
char subgroup[1024];
snprintf(subgroup, sizeof(subgroup), "%s/daemon", cg);
if (mkdir(subgroup, 0777) < 0)
die("Cannot create subgroup %s: %m", subgroup);
write_cg_attr(cg, "daemon/cgroup.procs", "%d\n", (int) getpid());
write_cg_attr(cg, "cgroup.subtree_control", "+cpuset +memory\n");
}
int
main(int argc UNUSED, char **argv UNUSED)
{
cf_parse();
setup_cg();
sd_notify(0, "READY=1");
for (;;)
pause();
}