]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/cgroup.h
Merge pull request #8175 from keszybz/gc-cleanup
[thirdparty/systemd.git] / src / core / cgroup.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2013 Lennart Poettering
8
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21 ***/
22
23 #include <stdbool.h>
24
25 #include "cgroup-util.h"
26 #include "ip-address-access.h"
27 #include "list.h"
28 #include "time-util.h"
29
30 typedef struct CGroupContext CGroupContext;
31 typedef struct CGroupDeviceAllow CGroupDeviceAllow;
32 typedef struct CGroupIODeviceWeight CGroupIODeviceWeight;
33 typedef struct CGroupIODeviceLimit CGroupIODeviceLimit;
34 typedef struct CGroupBlockIODeviceWeight CGroupBlockIODeviceWeight;
35 typedef struct CGroupBlockIODeviceBandwidth CGroupBlockIODeviceBandwidth;
36
37 typedef enum CGroupDevicePolicy {
38
39 /* When devices listed, will allow those, plus built-in ones,
40 if none are listed will allow everything. */
41 CGROUP_AUTO,
42
43 /* Everything forbidden, except built-in ones and listed ones. */
44 CGROUP_CLOSED,
45
46 /* Everythings forbidden, except for the listed devices */
47 CGROUP_STRICT,
48
49 _CGROUP_DEVICE_POLICY_MAX,
50 _CGROUP_DEVICE_POLICY_INVALID = -1
51 } CGroupDevicePolicy;
52
53 struct CGroupDeviceAllow {
54 LIST_FIELDS(CGroupDeviceAllow, device_allow);
55 char *path;
56 bool r:1;
57 bool w:1;
58 bool m:1;
59 };
60
61 struct CGroupIODeviceWeight {
62 LIST_FIELDS(CGroupIODeviceWeight, device_weights);
63 char *path;
64 uint64_t weight;
65 };
66
67 struct CGroupIODeviceLimit {
68 LIST_FIELDS(CGroupIODeviceLimit, device_limits);
69 char *path;
70 uint64_t limits[_CGROUP_IO_LIMIT_TYPE_MAX];
71 };
72
73 struct CGroupBlockIODeviceWeight {
74 LIST_FIELDS(CGroupBlockIODeviceWeight, device_weights);
75 char *path;
76 uint64_t weight;
77 };
78
79 struct CGroupBlockIODeviceBandwidth {
80 LIST_FIELDS(CGroupBlockIODeviceBandwidth, device_bandwidths);
81 char *path;
82 uint64_t rbps;
83 uint64_t wbps;
84 };
85
86 struct CGroupContext {
87 bool cpu_accounting;
88 bool io_accounting;
89 bool blockio_accounting;
90 bool memory_accounting;
91 bool tasks_accounting;
92 bool ip_accounting;
93
94 /* For unified hierarchy */
95 uint64_t cpu_weight;
96 uint64_t startup_cpu_weight;
97 usec_t cpu_quota_per_sec_usec;
98
99 uint64_t io_weight;
100 uint64_t startup_io_weight;
101 LIST_HEAD(CGroupIODeviceWeight, io_device_weights);
102 LIST_HEAD(CGroupIODeviceLimit, io_device_limits);
103
104 uint64_t memory_low;
105 uint64_t memory_high;
106 uint64_t memory_max;
107 uint64_t memory_swap_max;
108
109 LIST_HEAD(IPAddressAccessItem, ip_address_allow);
110 LIST_HEAD(IPAddressAccessItem, ip_address_deny);
111
112 /* For legacy hierarchies */
113 uint64_t cpu_shares;
114 uint64_t startup_cpu_shares;
115
116 uint64_t blockio_weight;
117 uint64_t startup_blockio_weight;
118 LIST_HEAD(CGroupBlockIODeviceWeight, blockio_device_weights);
119 LIST_HEAD(CGroupBlockIODeviceBandwidth, blockio_device_bandwidths);
120
121 uint64_t memory_limit;
122
123 CGroupDevicePolicy device_policy;
124 LIST_HEAD(CGroupDeviceAllow, device_allow);
125
126 /* Common */
127 uint64_t tasks_max;
128
129 bool delegate;
130 CGroupMask delegate_controllers;
131 };
132
133 /* Used when querying IP accounting data */
134 typedef enum CGroupIPAccountingMetric {
135 CGROUP_IP_INGRESS_BYTES,
136 CGROUP_IP_INGRESS_PACKETS,
137 CGROUP_IP_EGRESS_BYTES,
138 CGROUP_IP_EGRESS_PACKETS,
139 _CGROUP_IP_ACCOUNTING_METRIC_MAX,
140 _CGROUP_IP_ACCOUNTING_METRIC_INVALID = -1,
141 } CGroupIPAccountingMetric;
142
143 #include "unit.h"
144
145 void cgroup_context_init(CGroupContext *c);
146 void cgroup_context_done(CGroupContext *c);
147 void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix);
148
149 CGroupMask cgroup_context_get_mask(CGroupContext *c);
150
151 void cgroup_context_free_device_allow(CGroupContext *c, CGroupDeviceAllow *a);
152 void cgroup_context_free_io_device_weight(CGroupContext *c, CGroupIODeviceWeight *w);
153 void cgroup_context_free_io_device_limit(CGroupContext *c, CGroupIODeviceLimit *l);
154 void cgroup_context_free_blockio_device_weight(CGroupContext *c, CGroupBlockIODeviceWeight *w);
155 void cgroup_context_free_blockio_device_bandwidth(CGroupContext *c, CGroupBlockIODeviceBandwidth *b);
156
157 CGroupMask unit_get_own_mask(Unit *u);
158 CGroupMask unit_get_delegate_mask(Unit *u);
159 CGroupMask unit_get_members_mask(Unit *u);
160 CGroupMask unit_get_siblings_mask(Unit *u);
161 CGroupMask unit_get_subtree_mask(Unit *u);
162
163 CGroupMask unit_get_target_mask(Unit *u);
164 CGroupMask unit_get_enable_mask(Unit *u);
165
166 bool unit_get_needs_bpf(Unit *u);
167
168 void unit_update_cgroup_members_masks(Unit *u);
169
170 const char *unit_get_realized_cgroup_path(Unit *u, CGroupMask mask);
171 char *unit_default_cgroup_path(Unit *u);
172 int unit_set_cgroup_path(Unit *u, const char *path);
173 int unit_pick_cgroup_path(Unit *u);
174
175 int unit_realize_cgroup(Unit *u);
176 void unit_release_cgroup(Unit *u);
177 void unit_prune_cgroup(Unit *u);
178 int unit_watch_cgroup(Unit *u);
179
180 void unit_add_to_cgroup_empty_queue(Unit *u);
181
182 int unit_attach_pids_to_cgroup(Unit *u, Set *pids, const char *suffix_path);
183
184 int manager_setup_cgroup(Manager *m);
185 void manager_shutdown_cgroup(Manager *m, bool delete);
186
187 unsigned manager_dispatch_cgroup_realize_queue(Manager *m);
188
189 Unit *manager_get_unit_by_cgroup(Manager *m, const char *cgroup);
190 Unit *manager_get_unit_by_pid_cgroup(Manager *m, pid_t pid);
191 Unit* manager_get_unit_by_pid(Manager *m, pid_t pid);
192
193 int unit_search_main_pid(Unit *u, pid_t *ret);
194 int unit_watch_all_pids(Unit *u);
195
196 int unit_synthesize_cgroup_empty_event(Unit *u);
197
198 int unit_get_memory_current(Unit *u, uint64_t *ret);
199 int unit_get_tasks_current(Unit *u, uint64_t *ret);
200 int unit_get_cpu_usage(Unit *u, nsec_t *ret);
201 int unit_get_ip_accounting(Unit *u, CGroupIPAccountingMetric metric, uint64_t *ret);
202
203 int unit_reset_cpu_accounting(Unit *u);
204 int unit_reset_ip_accounting(Unit *u);
205
206 #define UNIT_CGROUP_BOOL(u, name) \
207 ({ \
208 CGroupContext *cc = unit_get_cgroup_context(u); \
209 cc ? cc->name : false; \
210 })
211
212 bool unit_has_root_cgroup(Unit *u);
213
214 int manager_notify_cgroup_empty(Manager *m, const char *group);
215
216 void unit_invalidate_cgroup(Unit *u, CGroupMask m);
217 void unit_invalidate_cgroup_bpf(Unit *u);
218
219 void manager_invalidate_startup_units(Manager *m);
220
221 const char* cgroup_device_policy_to_string(CGroupDevicePolicy i) _const_;
222 CGroupDevicePolicy cgroup_device_policy_from_string(const char *s) _pure_;
223
224 bool unit_cgroup_delegate(Unit *u);