-
Notifications
You must be signed in to change notification settings - Fork 0
/
cgroup.c
237 lines (199 loc) · 4.41 KB
/
cgroup.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/*
* Code related to setting up a blkio cgroup
*/
#include <stdio.h>
#include <stdlib.h>
#include <mntent.h>
#include <sys/stat.h>
#include "fio.h"
#include "flist.h"
#include "cgroup.h"
#include "smalloc.h"
static struct fio_sem *lock;
struct cgroup_member {
struct flist_head list;
char *root;
unsigned int cgroup_nodelete;
};
static struct cgroup_mnt *find_cgroup_mnt(struct thread_data *td)
{
struct cgroup_mnt *cgroup_mnt = NULL;
struct mntent *mnt, dummy;
char buf[256] = {0};
FILE *f;
bool cgroup2 = false;
f = setmntent("/proc/mounts", "r");
if (!f) {
td_verror(td, errno, "setmntent /proc/mounts");
return NULL;
}
while ((mnt = getmntent_r(f, &dummy, buf, sizeof(buf))) != NULL) {
if (!strcmp(mnt->mnt_type, "cgroup") &&
strstr(mnt->mnt_opts, "blkio"))
break;
if (!strcmp(mnt->mnt_type, "cgroup2")) {
cgroup2 = true;
break;
}
}
if (mnt) {
cgroup_mnt = smalloc(sizeof(*cgroup_mnt));
if (cgroup_mnt) {
cgroup_mnt->path = smalloc_strdup(mnt->mnt_dir);
if (!cgroup_mnt->path) {
sfree(cgroup_mnt);
log_err("fio: could not allocate memory\n");
} else {
cgroup_mnt->cgroup2 = cgroup2;
}
}
} else {
log_err("fio: cgroup blkio does not appear to be mounted\n");
}
endmntent(f);
return cgroup_mnt;
}
static void add_cgroup(struct thread_data *td, const char *name,
struct flist_head *clist)
{
struct cgroup_member *cm;
if (!lock)
return;
cm = smalloc(sizeof(*cm));
if (!cm) {
err:
log_err("fio: failed to allocate cgroup member\n");
return;
}
INIT_FLIST_HEAD(&cm->list);
cm->root = smalloc_strdup(name);
if (!cm->root) {
sfree(cm);
goto err;
}
if (td->o.cgroup_nodelete)
cm->cgroup_nodelete = 1;
fio_sem_down(lock);
flist_add_tail(&cm->list, clist);
fio_sem_up(lock);
}
void cgroup_kill(struct flist_head *clist)
{
struct flist_head *n, *tmp;
struct cgroup_member *cm;
if (!lock)
return;
fio_sem_down(lock);
flist_for_each_safe(n, tmp, clist) {
cm = flist_entry(n, struct cgroup_member, list);
if (!cm->cgroup_nodelete)
rmdir(cm->root);
flist_del(&cm->list);
sfree(cm->root);
sfree(cm);
}
fio_sem_up(lock);
}
static char *get_cgroup_root(struct thread_data *td, struct cgroup_mnt *mnt)
{
char *str = malloc(64);
if (td->o.cgroup)
sprintf(str, "%s/%s", mnt->path, td->o.cgroup);
else
sprintf(str, "%s/%s", mnt->path, td->o.name);
return str;
}
static int write_int_to_file(struct thread_data *td, const char *path,
const char *filename, unsigned int val,
const char *onerr)
{
char tmp[256];
FILE *f;
sprintf(tmp, "%s/%s", path, filename);
f = fopen(tmp, "w");
if (!f) {
td_verror(td, errno, onerr);
return 1;
}
fprintf(f, "%u", val);
fclose(f);
return 0;
}
static int cgroup_write_pid(struct thread_data *td, char *path, bool cgroup2)
{
unsigned int val = td->pid;
if (cgroup2)
return write_int_to_file(td, path, "cgroup.procs",
val, "cgroup write pid");
return write_int_to_file(td, path, "tasks", val, "cgroup write pid");
}
/*
* Move pid to root class
*/
static int cgroup_del_pid(struct thread_data *td, struct cgroup_mnt *mnt)
{
return cgroup_write_pid(td, mnt->path, mnt->cgroup2);
}
int cgroup_setup(struct thread_data *td, struct flist_head *clist, struct cgroup_mnt **mnt)
{
char *root;
if (!clist)
return 1;
if (!*mnt) {
*mnt = find_cgroup_mnt(td);
if (!*mnt)
return 1;
}
/*
* Create container, if it doesn't exist
*/
root = get_cgroup_root(td, *mnt);
if (mkdir(root, 0755) < 0) {
int __e = errno;
if (__e != EEXIST) {
td_verror(td, __e, "cgroup mkdir");
log_err("fio: path %s\n", root);
goto err;
}
} else
add_cgroup(td, root, clist);
if (td->o.cgroup_weight) {
if ((*mnt)->cgroup2) {
log_err("fio: cgroup weit doesn't work with cgroup2\n");
goto err;
}
if (write_int_to_file(td, root, "blkio.weight",
td->o.cgroup_weight,
"cgroup open weight"))
goto err;
}
if (!cgroup_write_pid(td, root, (*mnt)->cgroup2)) {
free(root);
return 0;
}
err:
free(root);
return 1;
}
void cgroup_shutdown(struct thread_data *td, struct cgroup_mnt *mnt)
{
if (mnt == NULL)
return;
if (!td->o.cgroup_weight && !td->o.cgroup)
goto out;
cgroup_del_pid(td, mnt);
out:
if (mnt->path)
sfree(mnt->path);
sfree(mnt);
}
static void fio_init cgroup_init(void)
{
lock = fio_sem_init(FIO_SEM_UNLOCKED);
if (!lock)
log_err("fio: failed to allocate cgroup lock\n");
}
static void fio_exit cgroup_exit(void)
{
fio_sem_remove(lock);
}