chiark / gitweb /
Prep v229: Add missing fixes from upstream [1/6] src/basic
[elogind.git] / src / basic / cgroup-util.h
1 #pragma once
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 Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 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   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <dirent.h>
23 #include <stdbool.h>
24 #include <stdint.h>
25 #include <stdio.h>
26 #include <sys/types.h>
27
28 #include "def.h"
29 //#include "hashmap.h"
30 //#include "macro.h"
31 #include "set.h"
32
33 /* An enum of well known cgroup controllers */
34 typedef enum CGroupController {
35         CGROUP_CONTROLLER_CPU,
36         CGROUP_CONTROLLER_CPUACCT,
37         CGROUP_CONTROLLER_BLKIO,
38         CGROUP_CONTROLLER_MEMORY,
39         CGROUP_CONTROLLER_DEVICES,
40         CGROUP_CONTROLLER_PIDS,
41         _CGROUP_CONTROLLER_MAX,
42         _CGROUP_CONTROLLER_INVALID = -1,
43 } CGroupController;
44
45 #define CGROUP_CONTROLLER_TO_MASK(c) (1 << (c))
46
47 /* A bit mask of well known cgroup controllers */
48 typedef enum CGroupMask {
49         CGROUP_MASK_CPU = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPU),
50         CGROUP_MASK_CPUACCT = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPUACCT),
51         CGROUP_MASK_BLKIO = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BLKIO),
52         CGROUP_MASK_MEMORY = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_MEMORY),
53         CGROUP_MASK_DEVICES = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_DEVICES),
54         CGROUP_MASK_PIDS = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_PIDS),
55         _CGROUP_MASK_ALL = CGROUP_CONTROLLER_TO_MASK(_CGROUP_CONTROLLER_MAX) - 1
56 } CGroupMask;
57
58 #if 0 /// UNNEEDED by elogind
59 /* Special values for the cpu.shares attribute */
60 #define CGROUP_CPU_SHARES_INVALID ((uint64_t) -1)
61 #define CGROUP_CPU_SHARES_MIN UINT64_C(2)
62 #define CGROUP_CPU_SHARES_MAX UINT64_C(262144)
63 #define CGROUP_CPU_SHARES_DEFAULT UINT64_C(1024)
64
65 static inline bool CGROUP_CPU_SHARES_IS_OK(uint64_t x) {
66         return
67             x == CGROUP_CPU_SHARES_INVALID ||
68             (x >= CGROUP_CPU_SHARES_MIN && x <= CGROUP_CPU_SHARES_MAX);
69 }
70
71 /* Special values for the blkio.weight attribute */
72 #define CGROUP_BLKIO_WEIGHT_INVALID ((uint64_t) -1)
73 #define CGROUP_BLKIO_WEIGHT_MIN UINT64_C(10)
74 #define CGROUP_BLKIO_WEIGHT_MAX UINT64_C(1000)
75 #define CGROUP_BLKIO_WEIGHT_DEFAULT UINT64_C(500)
76
77 static inline bool CGROUP_BLKIO_WEIGHT_IS_OK(uint64_t x) {
78         return
79             x == CGROUP_BLKIO_WEIGHT_INVALID ||
80             (x >= CGROUP_BLKIO_WEIGHT_MIN && x <= CGROUP_BLKIO_WEIGHT_MAX);
81 }
82 #endif // 0
83
84 /*
85  * General rules:
86  *
87  * We accept named hierarchies in the syntax "foo" and "name=foo".
88  *
89  * We expect that named hierarchies do not conflict in name with a
90  * kernel hierarchy, modulo the "name=" prefix.
91  *
92  * We always generate "normalized" controller names, i.e. without the
93  * "name=" prefix.
94  *
95  * We require absolute cgroup paths. When returning, we will always
96  * generate paths with multiple adjacent / removed.
97  */
98
99 int cg_enumerate_processes(const char *controller, const char *path, FILE **_f);
100 int cg_read_pid(FILE *f, pid_t *_pid);
101
102 int cg_enumerate_subgroups(const char *controller, const char *path, DIR **_d);
103 int cg_read_subgroup(DIR *d, char **fn);
104
105 int cg_kill(const char *controller, const char *path, int sig, bool sigcont, bool ignore_self, Set *s);
106 int cg_kill_recursive(const char *controller, const char *path, int sig, bool sigcont, bool ignore_self, bool remove, Set *s);
107
108 int cg_migrate(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self);
109 int cg_migrate_recursive(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self, bool remove);
110 int cg_migrate_recursive_fallback(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self, bool rem);
111
112 int cg_split_spec(const char *spec, char **controller, char **path);
113 int cg_mangle_path(const char *path, char **result);
114
115 int cg_get_path(const char *controller, const char *path, const char *suffix, char **fs);
116 int cg_get_path_and_check(const char *controller, const char *path, const char *suffix, char **fs);
117
118 int cg_pid_get_path(const char *controller, pid_t pid, char **path);
119
120 int cg_trim(const char *controller, const char *path, bool delete_root);
121
122 int cg_rmdir(const char *controller, const char *path);
123
124 int cg_create(const char *controller, const char *path);
125 int cg_attach(const char *controller, const char *path, pid_t pid);
126 int cg_attach_fallback(const char *controller, const char *path, pid_t pid);
127 int cg_create_and_attach(const char *controller, const char *path, pid_t pid);
128
129 int cg_set_attribute(const char *controller, const char *path, const char *attribute, const char *value);
130 #if 0 /// UNNEEDED by elogind
131 int cg_get_attribute(const char *controller, const char *path, const char *attribute, char **ret);
132
133 int cg_set_group_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
134 int cg_set_task_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
135 #endif // 0
136 int cg_install_release_agent(const char *controller, const char *agent);
137 int cg_uninstall_release_agent(const char *controller);
138
139 int cg_is_empty(const char *controller, const char *path);
140 int cg_is_empty_recursive(const char *controller, const char *path);
141
142 int cg_get_root_path(char **path);
143
144 int cg_path_get_session(const char *path, char **session);
145 #if 0 /// UNNEEDED by elogind
146 int cg_path_get_owner_uid(const char *path, uid_t *uid);
147 int cg_path_get_unit(const char *path, char **unit);
148 int cg_path_get_user_unit(const char *path, char **unit);
149 int cg_path_get_machine_name(const char *path, char **machine);
150 int cg_path_get_slice(const char *path, char **slice);
151 int cg_path_get_user_slice(const char *path, char **slice);
152 #endif // 0
153 int cg_shift_path(const char *cgroup, const char *cached_root, const char **shifted);
154 int cg_pid_get_path_shifted(pid_t pid, const char *cached_root, char **cgroup);
155
156 int cg_pid_get_session(pid_t pid, char **session);
157 #if 0 /// UNNEEDED by elogind
158 int cg_pid_get_owner_uid(pid_t pid, uid_t *uid);
159 int cg_pid_get_unit(pid_t pid, char **unit);
160 int cg_pid_get_user_unit(pid_t pid, char **unit);
161 int cg_pid_get_machine_name(pid_t pid, char **machine);
162 int cg_pid_get_slice(pid_t pid, char **slice);
163 int cg_pid_get_user_slice(pid_t pid, char **slice);
164
165 int cg_path_decode_unit(const char *cgroup, char **unit);
166 #endif // 0
167 char *cg_escape(const char *p);
168 char *cg_unescape(const char *p) _pure_;
169
170 bool cg_controller_is_valid(const char *p);
171 #if 0 /// UNNEEDED by elogind
172 int cg_slice_to_path(const char *unit, char **ret);
173
174 typedef const char* (*cg_migrate_callback_t)(CGroupMask mask, void *userdata);
175
176 int cg_create_everywhere(CGroupMask supported, CGroupMask mask, const char *path);
177 int cg_attach_everywhere(CGroupMask supported, const char *path, pid_t pid, cg_migrate_callback_t callback, void *userdata);
178 int cg_attach_many_everywhere(CGroupMask supported, const char *path, Set* pids, cg_migrate_callback_t callback, void *userdata);
179 int cg_migrate_everywhere(CGroupMask supported, const char *from, const char *to, cg_migrate_callback_t callback, void *userdata);
180 int cg_trim_everywhere(CGroupMask supported, const char *path, bool delete_root);
181 int cg_enable_everywhere(CGroupMask supported, CGroupMask mask, const char *p);
182 #endif // 0
183 int cg_mask_supported(CGroupMask *ret);
184 #if 0 /// UNNEEDED by elogind
185 int cg_kernel_controllers(Set *controllers);
186 #endif // 0
187 int cg_unified(void);
188 #if 0 /// UNNEEDED by elogind
189 void cg_unified_flush(void);
190
191 bool cg_is_unified_wanted(void);
192 #endif // 0
193 bool cg_is_legacy_wanted(void);
194
195 const char* cgroup_controller_to_string(CGroupController c) _const_;
196 CGroupController cgroup_controller_from_string(const char *s) _pure_;
197 #if 0 /// UNNEEDED by elogind
198 int cg_cpu_shares_parse(const char *s, uint64_t *ret);
199 int cg_blkio_weight_parse(const char *s, uint64_t *ret);
200 #endif // 0