1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
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.
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.
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/>.
25 #include <sys/types.h>
27 #include <sys/mount.h>
31 #include "cgroup-util.h"
34 int cgroup_bonding_realize(CGroupBonding *b) {
39 assert(b->controller);
44 if ((r = cg_create(b->controller, b->path)) < 0)
49 if (b->only_us && b->clean_up)
50 cg_trim(b->controller, b->path, false);
55 int cgroup_bonding_realize_list(CGroupBonding *first) {
59 LIST_FOREACH(by_unit, b, first)
60 if ((r = cgroup_bonding_realize(b)) < 0)
66 void cgroup_bonding_free(CGroupBonding *b) {
72 LIST_REMOVE(CGroupBonding, by_unit, b->unit->meta.cgroup_bondings, b);
74 assert_se(f = hashmap_get(b->unit->meta.manager->cgroup_bondings, b->path));
75 LIST_REMOVE(CGroupBonding, by_path, f, b);
78 hashmap_replace(b->unit->meta.manager->cgroup_bondings, b->path, f);
80 hashmap_remove(b->unit->meta.manager->cgroup_bondings, b->path);
83 if (b->realized && b->only_us && b->clean_up) {
85 if (cgroup_bonding_is_empty(b) > 0)
86 cg_delete(b->controller, b->path);
88 cg_trim(b->controller, b->path, false);
96 void cgroup_bonding_free_list(CGroupBonding *first) {
99 LIST_FOREACH_SAFE(by_unit, b, n, first)
100 cgroup_bonding_free(b);
103 void cgroup_bonding_trim(CGroupBonding *b, bool delete_root) {
106 if (b->realized && b->only_us && b->clean_up)
107 cg_trim(b->controller, b->path, delete_root);
110 void cgroup_bonding_trim_list(CGroupBonding *first, bool delete_root) {
113 LIST_FOREACH(by_unit, b, first)
114 cgroup_bonding_trim(b, delete_root);
117 int cgroup_bonding_install(CGroupBonding *b, pid_t pid) {
123 if ((r = cg_create_and_attach(b->controller, b->path, pid)) < 0)
130 int cgroup_bonding_install_list(CGroupBonding *first, pid_t pid) {
134 LIST_FOREACH(by_unit, b, first)
135 if ((r = cgroup_bonding_install(b, pid)) < 0)
141 int cgroup_bonding_kill(CGroupBonding *b, int sig, Set *s) {
147 if ((r = cgroup_bonding_realize(b)) < 0)
152 return cg_kill_recursive(b->controller, b->path, sig, true, false, s);
155 int cgroup_bonding_kill_list(CGroupBonding *first, int sig, Set *s) {
157 Set *allocated_set = NULL;
158 int ret = -EAGAIN, r;
161 if (!(s = allocated_set = set_new(trivial_hash_func, trivial_compare_func)))
164 LIST_FOREACH(by_unit, b, first) {
165 if ((r = cgroup_bonding_kill(b, sig, s)) < 0) {
166 if (r == -EAGAIN || r == -ESRCH)
173 if (ret < 0 || r > 0)
179 set_free(allocated_set);
184 /* Returns 1 if the group is empty, 0 if it is not, -EAGAIN if we
186 int cgroup_bonding_is_empty(CGroupBonding *b) {
191 if ((r = cg_is_empty_recursive(b->controller, b->path, true)) < 0)
194 /* If it is empty it is empty */
198 /* It's not only us using this cgroup, so we just don't know */
199 return b->only_us ? 0 : -EAGAIN;
202 int cgroup_bonding_is_empty_list(CGroupBonding *first) {
205 LIST_FOREACH(by_unit, b, first) {
208 if ((r = cgroup_bonding_is_empty(b)) < 0) {
209 /* If this returned -EAGAIN, then we don't know if the
210 * group is empty, so let's see if another group can
222 int manager_setup_cgroup(Manager *m) {
223 char *current = NULL, *path = NULL;
229 /* 1. Determine hierarchy */
230 if ((r = cg_get_by_pid(SYSTEMD_CGROUP_CONTROLLER, 0, ¤t)) < 0)
233 snprintf(suffix, sizeof(suffix), "/systemd-%lu", (unsigned long) getpid());
234 char_array_0(suffix);
236 free(m->cgroup_hierarchy);
237 if (endswith(current, suffix)) {
238 /* We probably got reexecuted and can continue to use our root cgroup */
239 m->cgroup_hierarchy = current;
243 /* We need a new root cgroup */
244 m->cgroup_hierarchy = NULL;
245 if (asprintf(&m->cgroup_hierarchy, "%s%s", streq(current, "/") ? "" : current, suffix) < 0) {
252 if ((r = cg_get_path(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_hierarchy, NULL, &path)) < 0)
255 log_debug("Using cgroup controller " SYSTEMD_CGROUP_CONTROLLER ". File system hierarchy is at %s.", path);
257 /* 3. Install agent */
258 if ((r = cg_install_release_agent(SYSTEMD_CGROUP_CONTROLLER, CGROUP_AGENT_PATH)) < 0)
259 log_warning("Failed to install release agent, ignoring: %s", strerror(-r));
261 log_debug("Installed release agent.");
263 log_debug("Release agent already installed.");
265 /* 4. Realize the group */
266 if ((r = cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_hierarchy, 0)) < 0) {
267 log_error("Failed to create root cgroup hierarchy: %s", strerror(-r));
271 /* 5. And pin it, so that it cannot be unmounted */
272 if (m->pin_cgroupfs_fd >= 0)
273 close_nointr_nofail(m->pin_cgroupfs_fd);
275 if ((m->pin_cgroupfs_fd = open(path, O_RDONLY|O_CLOEXEC|O_DIRECTORY|O_NOCTTY|O_NONBLOCK)) < 0) {
280 log_debug("Created root group.");
289 void manager_shutdown_cgroup(Manager *m, bool delete) {
292 if (delete && m->cgroup_hierarchy)
293 cg_delete(SYSTEMD_CGROUP_CONTROLLER, m->cgroup_hierarchy);
295 if (m->pin_cgroupfs_fd >= 0) {
296 close_nointr_nofail(m->pin_cgroupfs_fd);
297 m->pin_cgroupfs_fd = -1;
300 free(m->cgroup_hierarchy);
301 m->cgroup_hierarchy = NULL;
304 int cgroup_notify_empty(Manager *m, const char *group) {
305 CGroupBonding *l, *b;
310 if (!(l = hashmap_get(m->cgroup_bondings, group)))
313 LIST_FOREACH(by_path, b, l) {
319 if ((t = cgroup_bonding_is_empty_list(b)) < 0) {
321 /* If we don't know, we don't know */
323 log_warning("Failed to check whether cgroup is empty: %s", strerror(errno));
329 if (UNIT_VTABLE(b->unit)->cgroup_notify_empty)
330 UNIT_VTABLE(b->unit)->cgroup_notify_empty(b->unit);
336 Unit* cgroup_unit_by_pid(Manager *m, pid_t pid) {
337 CGroupBonding *l, *b;
345 if (cg_get_by_pid(SYSTEMD_CGROUP_CONTROLLER, pid, &group) < 0)
348 l = hashmap_get(m->cgroup_bondings, group);
353 while ((slash = strrchr(group, '/'))) {
359 if ((l = hashmap_get(m->cgroup_bondings, group)))
366 LIST_FOREACH(by_path, b, l) {
378 CGroupBonding *cgroup_bonding_find_list(CGroupBonding *first, const char *controller) {
383 LIST_FOREACH(by_unit, b, first)
384 if (streq(b->controller, controller))
390 char *cgroup_bonding_to_string(CGroupBonding *b) {
395 if (asprintf(&r, "%s:%s", b->controller, b->path) < 0)