chiark / gitweb /
pkgconfig: update .pc file accordingly
[elogind.git] / src / cgroup.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <assert.h>
24 #include <unistd.h>
25 #include <sys/types.h>
26 #include <signal.h>
27 #include <sys/mount.h>
28 #include <fcntl.h>
29
30 #include "cgroup.h"
31 #include "cgroup-util.h"
32 #include "log.h"
33
34 int cgroup_bonding_realize(CGroupBonding *b) {
35         int r;
36
37         assert(b);
38         assert(b->path);
39         assert(b->controller);
40
41         if (b->realized)
42                 return 0;
43
44         if ((r = cg_create(b->controller, b->path)) < 0)
45                 return r;
46
47         b->realized = true;
48
49         if (b->ours)
50                 cg_trim(b->controller, b->path, false);
51
52         return 0;
53 }
54
55 int cgroup_bonding_realize_list(CGroupBonding *first) {
56         CGroupBonding *b;
57         int r;
58
59         LIST_FOREACH(by_unit, b, first)
60                 if ((r = cgroup_bonding_realize(b)) < 0 && b->essential)
61                         return r;
62
63         return 0;
64 }
65
66 void cgroup_bonding_free(CGroupBonding *b) {
67         assert(b);
68
69         if (b->unit) {
70                 CGroupBonding *f;
71
72                 LIST_REMOVE(CGroupBonding, by_unit, b->unit->meta.cgroup_bondings, b);
73
74                 if (streq(b->controller, SYSTEMD_CGROUP_CONTROLLER)) {
75                         assert_se(f = hashmap_get(b->unit->meta.manager->cgroup_bondings, b->path));
76                         LIST_REMOVE(CGroupBonding, by_path, f, b);
77
78                         if (f)
79                                 hashmap_replace(b->unit->meta.manager->cgroup_bondings, b->path, f);
80                         else
81                                 hashmap_remove(b->unit->meta.manager->cgroup_bondings, b->path);
82                 }
83         }
84
85         if (b->realized && b->ours) {
86
87                 if (cgroup_bonding_is_empty(b) > 0)
88                         cg_delete(b->controller, b->path);
89                 else
90                         cg_trim(b->controller, b->path, false);
91         }
92
93         free(b->controller);
94         free(b->path);
95         free(b);
96 }
97
98 void cgroup_bonding_free_list(CGroupBonding *first) {
99         CGroupBonding *b, *n;
100
101         LIST_FOREACH_SAFE(by_unit, b, n, first)
102                 cgroup_bonding_free(b);
103 }
104
105 void cgroup_bonding_trim(CGroupBonding *b, bool delete_root) {
106         assert(b);
107
108         if (b->realized && b->ours)
109                 cg_trim(b->controller, b->path, delete_root);
110 }
111
112 void cgroup_bonding_trim_list(CGroupBonding *first, bool delete_root) {
113         CGroupBonding *b;
114
115         LIST_FOREACH(by_unit, b, first)
116                 cgroup_bonding_trim(b, delete_root);
117 }
118
119 int cgroup_bonding_install(CGroupBonding *b, pid_t pid) {
120         int r;
121
122         assert(b);
123         assert(pid >= 0);
124
125         if ((r = cg_create_and_attach(b->controller, b->path, pid)) < 0)
126                 return r;
127
128         b->realized = true;
129         return 0;
130 }
131
132 int cgroup_bonding_install_list(CGroupBonding *first, pid_t pid) {
133         CGroupBonding *b;
134         int r;
135
136         LIST_FOREACH(by_unit, b, first)
137                 if ((r = cgroup_bonding_install(b, pid)) < 0 && b->essential)
138                         return r;
139
140         return 0;
141 }
142
143 int cgroup_bonding_kill(CGroupBonding *b, int sig, bool sigcont, Set *s) {
144         assert(b);
145         assert(sig >= 0);
146
147         /* Don't kill cgroups that aren't ours */
148         if (!b->realized || !b->ours)
149                 return 0;
150
151         return cg_kill_recursive(b->controller, b->path, sig, sigcont, true, false, s);
152 }
153
154 int cgroup_bonding_kill_list(CGroupBonding *first, int sig, bool sigcont, Set *s) {
155         CGroupBonding *b;
156         Set *allocated_set = NULL;
157         int ret = -EAGAIN, r;
158
159         if (!s)
160                 if (!(s = allocated_set = set_new(trivial_hash_func, trivial_compare_func)))
161                         return -ENOMEM;
162
163         LIST_FOREACH(by_unit, b, first) {
164                 if ((r = cgroup_bonding_kill(b, sig, sigcont, s)) < 0) {
165                         if (r == -EAGAIN || r == -ESRCH)
166                                 continue;
167
168                         ret = r;
169                         goto finish;
170                 }
171
172                 if (ret < 0 || r > 0)
173                         ret = r;
174         }
175
176 finish:
177         if (allocated_set)
178                 set_free(allocated_set);
179
180         return ret;
181 }
182
183 /* Returns 1 if the group is empty, 0 if it is not, -EAGAIN if we
184  * cannot know */
185 int cgroup_bonding_is_empty(CGroupBonding *b) {
186         int r;
187
188         assert(b);
189
190         if ((r = cg_is_empty_recursive(b->controller, b->path, true)) < 0)
191                 return r;
192
193         /* If it is empty it is empty */
194         if (r > 0)
195                 return 1;
196
197         /* It's not only us using this cgroup, so we just don't know */
198         return b->ours ? 0 : -EAGAIN;
199 }
200
201 int cgroup_bonding_is_empty_list(CGroupBonding *first) {
202         CGroupBonding *b;
203
204         LIST_FOREACH(by_unit, b, first) {
205                 int r;
206
207                 if ((r = cgroup_bonding_is_empty(b)) < 0) {
208                         /* If this returned -EAGAIN, then we don't know if the
209                          * group is empty, so let's see if another group can
210                          * tell us */
211
212                         if (r != -EAGAIN)
213                                 return r;
214                 } else
215                         return r;
216         }
217
218         return -EAGAIN;
219 }
220
221 int manager_setup_cgroup(Manager *m) {
222         char *current = NULL, *path = NULL;
223         int r;
224         char suffix[32];
225
226         assert(m);
227
228         /* 1. Determine hierarchy */
229         if ((r = cg_get_by_pid(SYSTEMD_CGROUP_CONTROLLER, 0, &current)) < 0) {
230                 log_error("Cannot determine cgroup we are running in: %s", strerror(-r));
231                 goto finish;
232         }
233
234         if (m->running_as == MANAGER_SYSTEM)
235                 strcpy(suffix, "/system");
236         else {
237                 snprintf(suffix, sizeof(suffix), "/systemd-%lu", (unsigned long) getpid());
238                 char_array_0(suffix);
239         }
240
241         free(m->cgroup_hierarchy);
242         if (endswith(current, suffix)) {
243                 /* We probably got reexecuted and can continue to use our root cgroup */
244                 m->cgroup_hierarchy = current;
245                 current = NULL;
246
247         } else {
248                 /* We need a new root cgroup */
249                 m->cgroup_hierarchy = NULL;
250                 if (asprintf(&m->cgroup_hierarchy, "%s%s", streq(current, "/") ? "" : current, suffix) < 0) {
251                         log_error("Out of memory");
252                         r = -ENOMEM;
253                         goto finish;
254                 }
255         }
256
257         /* 2. Show data */
258         if ((r = cg_get_path(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_hierarchy, NULL, &path)) < 0) {
259                 log_error("Cannot find cgroup mount point: %s", strerror(-r));
260                 goto finish;
261         }
262
263         log_debug("Using cgroup controller " SYSTEMD_CGROUP_CONTROLLER ". File system hierarchy is at %s.", path);
264
265         /* 3. Install agent */
266         if ((r = cg_install_release_agent(SYSTEMD_CGROUP_CONTROLLER, SYSTEMD_CGROUP_AGENT_PATH)) < 0)
267                 log_warning("Failed to install release agent, ignoring: %s", strerror(-r));
268         else if (r > 0)
269                 log_debug("Installed release agent.");
270         else
271                 log_debug("Release agent already installed.");
272
273         /* 4. Realize the group */
274         if ((r = cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_hierarchy, 0)) < 0) {
275                 log_error("Failed to create root cgroup hierarchy: %s", strerror(-r));
276                 goto finish;
277         }
278
279         /* 5. And pin it, so that it cannot be unmounted */
280         if (m->pin_cgroupfs_fd >= 0)
281                 close_nointr_nofail(m->pin_cgroupfs_fd);
282
283         if ((m->pin_cgroupfs_fd = open(path, O_RDONLY|O_CLOEXEC|O_DIRECTORY|O_NOCTTY|O_NONBLOCK)) < 0) {
284                 log_error("Failed to open pin file: %m");
285                 r = -errno;
286                 goto finish;
287         }
288
289         log_debug("Created root group.");
290
291 finish:
292         free(current);
293         free(path);
294
295         return r;
296 }
297
298 void manager_shutdown_cgroup(Manager *m, bool delete) {
299         assert(m);
300
301         if (delete && m->cgroup_hierarchy)
302                 cg_delete(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_hierarchy);
303
304         if (m->pin_cgroupfs_fd >= 0) {
305                 close_nointr_nofail(m->pin_cgroupfs_fd);
306                 m->pin_cgroupfs_fd = -1;
307         }
308
309         free(m->cgroup_hierarchy);
310         m->cgroup_hierarchy = NULL;
311 }
312
313 int cgroup_notify_empty(Manager *m, const char *group) {
314         CGroupBonding *l, *b;
315
316         assert(m);
317         assert(group);
318
319         if (!(l = hashmap_get(m->cgroup_bondings, group)))
320                 return 0;
321
322         LIST_FOREACH(by_path, b, l) {
323                 int t;
324
325                 if (!b->unit)
326                         continue;
327
328                 if ((t = cgroup_bonding_is_empty_list(b)) < 0) {
329
330                         /* If we don't know, we don't know */
331                         if (t != -EAGAIN)
332                                 log_warning("Failed to check whether cgroup is empty: %s", strerror(errno));
333
334                         continue;
335                 }
336
337                 if (t > 0)
338                         if (UNIT_VTABLE(b->unit)->cgroup_notify_empty)
339                                 UNIT_VTABLE(b->unit)->cgroup_notify_empty(b->unit);
340         }
341
342         return 0;
343 }
344
345 Unit* cgroup_unit_by_pid(Manager *m, pid_t pid) {
346         CGroupBonding *l, *b;
347         char *group = NULL;
348
349         assert(m);
350
351         if (pid <= 1)
352                 return NULL;
353
354         if (cg_get_by_pid(SYSTEMD_CGROUP_CONTROLLER, pid, &group) < 0)
355                 return NULL;
356
357         l = hashmap_get(m->cgroup_bondings, group);
358
359         if (!l) {
360                 char *slash;
361
362                 while ((slash = strrchr(group, '/'))) {
363                         if (slash == group)
364                                 break;
365
366                         *slash = 0;
367
368                         if ((l = hashmap_get(m->cgroup_bondings, group)))
369                                 break;
370                 }
371         }
372
373         free(group);
374
375         LIST_FOREACH(by_path, b, l) {
376
377                 if (!b->unit)
378                         continue;
379
380                 if (b->ours)
381                         return b->unit;
382         }
383
384         return NULL;
385 }
386
387 CGroupBonding *cgroup_bonding_find_list(CGroupBonding *first, const char *controller) {
388         CGroupBonding *b;
389
390         assert(controller);
391
392         LIST_FOREACH(by_unit, b, first)
393                 if (streq(b->controller, controller))
394                         return b;
395
396         return NULL;
397 }
398
399 char *cgroup_bonding_to_string(CGroupBonding *b) {
400         char *r;
401
402         assert(b);
403
404         if (asprintf(&r, "%s:%s", b->controller, b->path) < 0)
405                 return NULL;
406
407         return r;
408 }
409
410 pid_t cgroup_bonding_search_main_pid(CGroupBonding *b) {
411         FILE *f;
412         pid_t pid = 0, npid, mypid;
413
414         assert(b);
415
416         if (!b->ours)
417                 return 0;
418
419         if (cg_enumerate_processes(b->controller, b->path, &f) < 0)
420                 return 0;
421
422         mypid = getpid();
423
424         while (cg_read_pid(f, &npid) > 0)  {
425                 pid_t ppid;
426
427                 if (npid == pid)
428                         continue;
429
430                 /* Ignore processes that aren't our kids */
431                 if (get_parent_of_pid(npid, &ppid) >= 0 && ppid != mypid)
432                         continue;
433
434                 if (pid != 0) {
435                         /* Dang, there's more than one daemonized PID
436                         in this group, so we don't know what process
437                         is the main process. */
438                         pid = 0;
439                         break;
440                 }
441
442                 pid = npid;
443         }
444
445         fclose(f);
446
447         return pid;
448 }
449
450 pid_t cgroup_bonding_search_main_pid_list(CGroupBonding *first) {
451         CGroupBonding *b;
452         pid_t pid;
453
454         /* Try to find a main pid from this cgroup, but checking if
455          * there's only one PID in the cgroup and returning it. Later
456          * on we might want to add additional, smarter heuristics
457          * here. */
458
459         LIST_FOREACH(by_unit, b, first)
460                 if ((pid = cgroup_bonding_search_main_pid(b)) != 0)
461                         return pid;
462
463         return 0;
464
465 }