]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/cgroup-util.h
core: unified cgroup hierarchy support
[thirdparty/systemd.git] / src / basic / cgroup-util.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
8c6db833 2
c2f1db8f 3#pragma once
8c6db833
LP
4
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
8c6db833
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
8c6db833 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
8c6db833
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24#include <sys/types.h>
c6c18be3 25#include <stdio.h>
35d2e7ec 26#include <dirent.h>
c6c18be3
LP
27
28#include "set.h"
f6a6225e 29#include "def.h"
8c6db833 30
efdb0237
LP
31/* An enum of well known cgroup controllers */
32typedef enum CGroupController {
33 CGROUP_CONTROLLER_CPU,
34 CGROUP_CONTROLLER_CPUACCT,
35 CGROUP_CONTROLLER_BLKIO,
36 CGROUP_CONTROLLER_MEMORY,
37 CGROUP_CONTROLLER_DEVICE,
38 _CGROUP_CONTROLLER_MAX,
39 _CGROUP_CONTROLLER_INVALID = -1,
40} CGroupController;
41
42#define CGROUP_CONTROLLER_TO_MASK(c) (1 << (c))
43
4ad49000 44/* A bit mask of well known cgroup controllers */
efdb0237
LP
45typedef enum CGroupMask {
46 CGROUP_MASK_CPU = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPU),
47 CGROUP_MASK_CPUACCT = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPUACCT),
48 CGROUP_MASK_BLKIO = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BLKIO),
49 CGROUP_MASK_MEMORY = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_MEMORY),
50 CGROUP_MASK_DEVICE = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_DEVICE),
51 _CGROUP_MASK_ALL = CGROUP_CONTROLLER_TO_MASK(_CGROUP_CONTROLLER_MAX) - 1
52} CGroupMask;
4ad49000 53
5954c074
LP
54/*
55 * General rules:
56 *
57 * We accept named hierarchies in the syntax "foo" and "name=foo".
58 *
59 * We expect that named hierarchies do not conflict in name with a
60 * kernel hierarchy, modulo the "name=" prefix.
61 *
62 * We always generate "normalized" controller names, i.e. without the
63 * "name=" prefix.
64 *
65 * We require absolute cgroup paths. When returning, we will always
66 * generate paths with multiple adjacent / removed.
67 */
68
c6c18be3 69int cg_enumerate_processes(const char *controller, const char *path, FILE **_f);
c6c18be3
LP
70int cg_read_pid(FILE *f, pid_t *_pid);
71
35d2e7ec
LP
72int cg_enumerate_subgroups(const char *controller, const char *path, DIR **_d);
73int cg_read_subgroup(DIR *d, char **fn);
74
430c18ed
LP
75int cg_kill(const char *controller, const char *path, int sig, bool sigcont, bool ignore_self, Set *s);
76int cg_kill_recursive(const char *controller, const char *path, int sig, bool sigcont, bool ignore_self, bool remove, Set *s);
8c6db833 77
246aa6dd
LP
78int cg_migrate(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self);
79int cg_migrate_recursive(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self, bool remove);
13b84ec7 80int cg_migrate_recursive_fallback(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self, bool rem);
35d2e7ec
LP
81
82int cg_split_spec(const char *spec, char **controller, char **path);
7027ff61 83int cg_mangle_path(const char *path, char **result);
8c6db833
LP
84
85int cg_get_path(const char *controller, const char *path, const char *suffix, char **fs);
3474ae3c 86int cg_get_path_and_check(const char *controller, const char *path, const char *suffix, char **fs);
7027ff61
LP
87
88int cg_pid_get_path(const char *controller, pid_t pid, char **path);
8c6db833
LP
89
90int cg_trim(const char *controller, const char *path, bool delete_root);
35d2e7ec 91
4ad49000 92int cg_rmdir(const char *controller, const char *path);
8c6db833 93
4ad49000 94int cg_create(const char *controller, const char *path);
8c6db833 95int cg_attach(const char *controller, const char *path, pid_t pid);
13b84ec7 96int cg_attach_fallback(const char *controller, const char *path, pid_t pid);
8c6db833
LP
97int cg_create_and_attach(const char *controller, const char *path, pid_t pid);
98
4ad49000 99int cg_set_attribute(const char *controller, const char *path, const char *attribute, const char *value);
934277fe 100int cg_get_attribute(const char *controller, const char *path, const char *attribute, char **ret);
4ad49000 101
8c6db833 102int cg_set_group_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
4ad49000 103int cg_set_task_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
8c6db833
LP
104
105int cg_install_release_agent(const char *controller, const char *agent);
ad929bcc 106int cg_uninstall_release_agent(const char *controller);
8c6db833 107
6f883237
LP
108int cg_is_empty(const char *controller, const char *path);
109int cg_is_empty_recursive(const char *controller, const char *path);
8c6db833 110
7027ff61 111int cg_get_root_path(char **path);
6c03089c 112
7027ff61 113int cg_path_get_session(const char *path, char **session);
ae018d9b 114int cg_path_get_owner_uid(const char *path, uid_t *uid);
6c03089c
LP
115int cg_path_get_unit(const char *path, char **unit);
116int cg_path_get_user_unit(const char *path, char **unit);
7027ff61 117int cg_path_get_machine_name(const char *path, char **machine);
1021b21b 118int cg_path_get_slice(const char *path, char **slice);
329ac4bc 119int cg_path_get_user_slice(const char *path, char **slice);
7027ff61 120
751bc6ac 121int cg_shift_path(const char *cgroup, const char *cached_root, const char **shifted);
e9174f29 122int cg_pid_get_path_shifted(pid_t pid, const char *cached_root, char **cgroup);
6c03089c 123
7027ff61 124int cg_pid_get_session(pid_t pid, char **session);
ae018d9b 125int cg_pid_get_owner_uid(pid_t pid, uid_t *uid);
ba1261bc 126int cg_pid_get_unit(pid_t pid, char **unit);
ef1673d1 127int cg_pid_get_user_unit(pid_t pid, char **unit);
7027ff61 128int cg_pid_get_machine_name(pid_t pid, char **machine);
1021b21b 129int cg_pid_get_slice(pid_t pid, char **slice);
329ac4bc 130int cg_pid_get_user_slice(pid_t pid, char **slice);
1f73f0f1 131
7027ff61 132int cg_path_decode_unit(const char *cgroup, char **unit);
96cde13a 133
ae018d9b 134char *cg_escape(const char *p);
44a6b1b6 135char *cg_unescape(const char *p) _pure_;
78edb35a 136
185a0874 137bool cg_controller_is_valid(const char *p);
a016b922
LP
138
139int cg_slice_to_path(const char *unit, char **ret);
4ad49000 140
efdb0237 141typedef const char* (*cg_migrate_callback_t)(CGroupMask mask, void *userdata);
03b90d4b 142
efdb0237
LP
143int cg_create_everywhere(CGroupMask supported, CGroupMask mask, const char *path);
144int cg_attach_everywhere(CGroupMask supported, const char *path, pid_t pid, cg_migrate_callback_t callback, void *userdata);
145int cg_attach_many_everywhere(CGroupMask supported, const char *path, Set* pids, cg_migrate_callback_t callback, void *userdata);
146int cg_migrate_everywhere(CGroupMask supported, const char *from, const char *to, cg_migrate_callback_t callback, void *userdata);
147int cg_trim_everywhere(CGroupMask supported, const char *path, bool delete_root);
148int cg_enable_everywhere(CGroupMask supported, CGroupMask mask, const char *p);
4ad49000 149
efdb0237 150int cg_mask_supported(CGroupMask *ret);
b12afc8c
LP
151
152int cg_kernel_controllers(Set *controllers);
efdb0237
LP
153
154int cg_unified(void);
155void cg_unified_flush(void);
156
157bool cg_is_unified_wanted(void);
158bool cg_is_legacy_wanted(void);
159
160const char* cgroup_controller_to_string(CGroupController c) _const_;
161CGroupController cgroup_controller_from_string(const char *s) _pure_;