• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemd / systemd / 19448983682

17 Nov 2025 11:32PM UTC coverage: 72.503% (-0.2%) from 72.719%
19448983682

push

github

web-flow
core/unit: unit_process_job() tweaks (#39753)

6 of 8 new or added lines in 1 file covered. (75.0%)

3363 existing lines in 68 files now uncovered.

308308 of 425234 relevant lines covered (72.5%)

1141671.45 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/basic/cgroup-util.h
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
#pragma once
3

4
#include "basic-forward.h"
5

6
#define SYSTEMD_CGROUP_CONTROLLER "_systemd"
7

8
/* An enum of well known cgroup controllers */
9
typedef enum CGroupController {
10
        /* Original cgroup controllers */
11
        CGROUP_CONTROLLER_CPU,
12
        CGROUP_CONTROLLER_CPUACCT,    /* v1 only */
13
        CGROUP_CONTROLLER_CPUSET,     /* v2 only */
14
        CGROUP_CONTROLLER_IO,         /* v2 only */
15
        CGROUP_CONTROLLER_BLKIO,      /* v1 only */
16
        CGROUP_CONTROLLER_MEMORY,
17
        CGROUP_CONTROLLER_DEVICES,    /* v1 only */
18
        CGROUP_CONTROLLER_PIDS,
19

20
        /* BPF-based pseudo-controllers, v2 only */
21
        CGROUP_CONTROLLER_BPF_FIREWALL,
22
        CGROUP_CONTROLLER_BPF_DEVICES,
23
        CGROUP_CONTROLLER_BPF_FOREIGN,
24
        CGROUP_CONTROLLER_BPF_SOCKET_BIND,
25
        CGROUP_CONTROLLER_BPF_RESTRICT_NETWORK_INTERFACES,
26
        /* The BPF hook implementing RestrictFileSystems= is not defined here.
27
         * It's applied as late as possible in exec_invoke() so we don't block
28
         * our own unit setup code. */
29

30
        _CGROUP_CONTROLLER_MAX,
31
        _CGROUP_CONTROLLER_INVALID = -EINVAL,
32
} CGroupController;
33

34
#define CGROUP_CONTROLLER_TO_MASK(c) (1U << (c))
35

36
/* A bit mask of well known cgroup controllers */
37
typedef enum CGroupMask {
38
        CGROUP_MASK_CPU = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPU),
39
        CGROUP_MASK_CPUACCT = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPUACCT),
40
        CGROUP_MASK_CPUSET = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_CPUSET),
41
        CGROUP_MASK_IO = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_IO),
42
        CGROUP_MASK_BLKIO = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BLKIO),
43
        CGROUP_MASK_MEMORY = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_MEMORY),
44
        CGROUP_MASK_DEVICES = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_DEVICES),
45
        CGROUP_MASK_PIDS = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_PIDS),
46
        CGROUP_MASK_BPF_FIREWALL = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BPF_FIREWALL),
47
        CGROUP_MASK_BPF_DEVICES = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BPF_DEVICES),
48
        CGROUP_MASK_BPF_FOREIGN = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BPF_FOREIGN),
49
        CGROUP_MASK_BPF_SOCKET_BIND = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BPF_SOCKET_BIND),
50
        CGROUP_MASK_BPF_RESTRICT_NETWORK_INTERFACES = CGROUP_CONTROLLER_TO_MASK(CGROUP_CONTROLLER_BPF_RESTRICT_NETWORK_INTERFACES),
51

52
        /* All real cgroup v1 controllers */
53
        CGROUP_MASK_V1 = CGROUP_MASK_CPU|CGROUP_MASK_CPUACCT|CGROUP_MASK_BLKIO|CGROUP_MASK_MEMORY|CGROUP_MASK_DEVICES|CGROUP_MASK_PIDS,
54

55
        /* All real cgroup v2 controllers */
56
        CGROUP_MASK_V2 = CGROUP_MASK_CPU|CGROUP_MASK_CPUSET|CGROUP_MASK_IO|CGROUP_MASK_MEMORY|CGROUP_MASK_PIDS,
57

58
        /* All controllers we want to delegate in case of Delegate=yes. Which are pretty much the v2 controllers only, as delegation on v1 is not safe, and bpf stuff isn't a real controller */
59
        CGROUP_MASK_DELEGATE = CGROUP_MASK_V2,
60

61
        /* All cgroup v2 BPF pseudo-controllers */
62
        CGROUP_MASK_BPF = CGROUP_MASK_BPF_FIREWALL|CGROUP_MASK_BPF_DEVICES|CGROUP_MASK_BPF_FOREIGN|CGROUP_MASK_BPF_SOCKET_BIND|CGROUP_MASK_BPF_RESTRICT_NETWORK_INTERFACES,
63

64
        _CGROUP_MASK_ALL = CGROUP_CONTROLLER_TO_MASK(_CGROUP_CONTROLLER_MAX) - 1,
65
} CGroupMask;
66

67
/* Special values for all weight knobs on unified hierarchy */
68
#define CGROUP_WEIGHT_INVALID UINT64_MAX
69
#define CGROUP_WEIGHT_IDLE UINT64_C(0)
70
#define CGROUP_WEIGHT_MIN UINT64_C(1)
71
#define CGROUP_WEIGHT_MAX UINT64_C(10000)
72
#define CGROUP_WEIGHT_DEFAULT UINT64_C(100)
73

74
#define CGROUP_LIMIT_MIN UINT64_C(0)
75
#define CGROUP_LIMIT_MAX UINT64_MAX
76

UNCOV
77
static inline bool CGROUP_WEIGHT_IS_OK(uint64_t x) {
×
UNCOV
78
        return
×
79
            x == CGROUP_WEIGHT_INVALID ||
×
80
            (x >= CGROUP_WEIGHT_MIN && x <= CGROUP_WEIGHT_MAX);
×
81
}
82

83
/* IO limits on unified hierarchy */
84
typedef enum CGroupIOLimitType {
85
        CGROUP_IO_RBPS_MAX,
86
        CGROUP_IO_WBPS_MAX,
87
        CGROUP_IO_RIOPS_MAX,
88
        CGROUP_IO_WIOPS_MAX,
89

90
        _CGROUP_IO_LIMIT_TYPE_MAX,
91
        _CGROUP_IO_LIMIT_TYPE_INVALID = -EINVAL,
92
} CGroupIOLimitType;
93

94
extern const uint64_t cgroup_io_limit_defaults[_CGROUP_IO_LIMIT_TYPE_MAX];
95

96
const char* cgroup_io_limit_type_to_string(CGroupIOLimitType t) _const_;
97
CGroupIOLimitType cgroup_io_limit_type_from_string(const char *s) _pure_;
98
void cgroup_io_limits_list(void);
99

100
/* Special values for the io.bfq.weight attribute */
101
#define CGROUP_BFQ_WEIGHT_INVALID UINT64_MAX
102
#define CGROUP_BFQ_WEIGHT_MIN UINT64_C(1)
103
#define CGROUP_BFQ_WEIGHT_MAX UINT64_C(1000)
104
#define CGROUP_BFQ_WEIGHT_DEFAULT UINT64_C(100)
105

106
/* Convert the normal io.weight value to io.bfq.weight */
UNCOV
107
static inline uint64_t BFQ_WEIGHT(uint64_t io_weight) {
×
UNCOV
108
        return
×
109
            io_weight <= CGROUP_WEIGHT_DEFAULT ?
110
            CGROUP_BFQ_WEIGHT_DEFAULT - (CGROUP_WEIGHT_DEFAULT - io_weight) * (CGROUP_BFQ_WEIGHT_DEFAULT - CGROUP_BFQ_WEIGHT_MIN) / (CGROUP_WEIGHT_DEFAULT - CGROUP_WEIGHT_MIN) :
×
UNCOV
111
            CGROUP_BFQ_WEIGHT_DEFAULT + (io_weight - CGROUP_WEIGHT_DEFAULT) * (CGROUP_BFQ_WEIGHT_MAX - CGROUP_BFQ_WEIGHT_DEFAULT) / (CGROUP_WEIGHT_MAX - CGROUP_WEIGHT_DEFAULT);
×
112
}
113

114
/*
115
 * General rules:
116
 *
117
 * We require absolute cgroup paths. When returning, we will always
118
 * generate paths with multiple adjacent / removed.
119
 */
120

121
int cg_is_available(void);
122

123
int cg_path_open(const char *path);
124
int cg_cgroupid_open(int cgroupfs_fd, uint64_t id);
125

126
int cg_path_from_cgroupid(int cgroupfs_fd, uint64_t id, char **ret);
127
int cg_get_cgroupid_at(int dfd, const char *path, uint64_t *ret);
128
static inline int cg_path_get_cgroupid(const char *path, uint64_t *ret) {
5,542✔
129
        return cg_get_cgroupid_at(AT_FDCWD, path, ret);
5,542✔
130
}
131
static inline int cg_fd_get_cgroupid(int fd, uint64_t *ret) {
46✔
132
        return cg_get_cgroupid_at(fd, NULL, ret);
46✔
133
}
134

135
typedef enum CGroupFlags {
136
        CGROUP_SIGCONT            = 1 << 0,
137
        CGROUP_IGNORE_SELF        = 1 << 1,
138
        CGROUP_DONT_SKIP_UNMAPPED = 1 << 2,
139
} CGroupFlags;
140

141
int cg_enumerate_processes(const char *path, FILE **ret);
142
int cg_read_pid(FILE *f, pid_t *ret, CGroupFlags flags);
143
int cg_read_pidref(FILE *f, PidRef *ret, CGroupFlags flags);
144

145
int cg_enumerate_subgroups(const char *path, DIR **ret);
146
int cg_read_subgroup(DIR *d, char **ret);
147

148
typedef int (*cg_kill_log_func_t)(const PidRef *pid, int sig, void *userdata);
149

150
int cg_kill(const char *path, int sig, CGroupFlags flags, Set *killed_pids, cg_kill_log_func_t log_kill, void *userdata);
151
int cg_kill_kernel_sigkill(const char *path);
152
int cg_kill_recursive(const char *path, int sig, CGroupFlags flags, Set *killed_pids, cg_kill_log_func_t log_kill, void *userdata);
153

154
int cg_split_spec(const char *spec, char **ret_controller, char **ret_path);
155

156
int cg_get_path(const char *path, const char *suffix, char **ret);
157

158
int cg_pid_get_path(pid_t pid, char **ret);
159
int cg_pidref_get_path(const PidRef *pidref, char **ret);
160

161
int cg_is_threaded(const char *path);
162

163
int cg_is_delegated(const char *path);
164
int cg_is_delegated_fd(int fd);
165

166
int cg_has_coredump_receive(const char *path);
167

168
int cg_set_attribute(const char *path, const char *attribute, const char *value);
169
int cg_get_attribute(const char *path, const char *attribute, char **ret);
170
int cg_get_attribute_as_uint64(const char *path, const char *attribute, uint64_t *ret);
171
int cg_get_attribute_as_bool(const char *path, const char *attribute);
172

173
int cg_get_keyed_attribute(const char *path, const char *attribute, char * const *keys, char **values);
174

175
int cg_get_owner(const char *path, uid_t *ret_uid);
176

177
int cg_set_xattr(const char *path, const char *name, const void *value, size_t size, int flags);
178
int cg_get_xattr(const char *path, const char *name, char **ret, size_t *ret_size);
179
/* Returns negative on error, and 0 or 1 on success for the bool value */
180
int cg_get_xattr_bool(const char *path, const char *name);
181
int cg_remove_xattr(const char *path, const char *name);
182

183
int cg_is_empty(const char *path);
184

185
int cg_get_root_path(char **path);
186

187
int cg_path_get_session(const char *path, char **ret_session);
188
int cg_path_get_owner_uid(const char *path, uid_t *ret_uid);
189
int cg_path_get_unit_full(const char *path, char **ret_unit, char **ret_subgroup);
190
static inline int cg_path_get_unit(const char *path, char **ret_unit) {
16,967✔
191
        return cg_path_get_unit_full(path, ret_unit, NULL);
16,967✔
192
}
193
int cg_path_get_unit_path(const char *path, char **ret_unit);
194
int cg_path_get_user_unit_full(const char *path, char **ret_unit, char **ret_subgroup);
195
static inline int cg_path_get_user_unit(const char *path, char **ret_unit) {
7,846✔
196
        return cg_path_get_user_unit_full(path, ret_unit, NULL);
7,846✔
197
}
198
int cg_path_get_machine_name(const char *path, char **ret_machine);
199
int cg_path_get_slice(const char *path, char **ret_slice);
200
int cg_path_get_user_slice(const char *path, char **ret_slice);
201

202
int cg_shift_path(const char *cgroup, const char *cached_root, const char **ret_shifted);
203
int cg_pid_get_path_shifted(pid_t pid, const char *cached_root, char **ret_cgroup);
204

205
int cg_pid_get_session(pid_t pid, char **ret_session);
206
int cg_pidref_get_session(const PidRef *pidref, char **ret);
207
int cg_pid_get_owner_uid(pid_t pid, uid_t *ret_uid);
208
int cg_pidref_get_owner_uid(const PidRef *pidref, uid_t *ret);
209
int cg_pid_get_unit_full(pid_t pid, char **ret_unit, char **ret_subgroup);
210
static inline int cg_pid_get_unit(pid_t pid, char **ret_unit) {
89✔
211
        return cg_pid_get_unit_full(pid, ret_unit, NULL);
89✔
212
}
213
int cg_pidref_get_unit_full(const PidRef *pidref, char **ret_unit, char **ret_subgroup);
214
static inline int cg_pidref_get_unit(const PidRef *pidref, char **ret_unit) {
639✔
215
        return cg_pidref_get_unit_full(pidref, ret_unit, NULL);
639✔
216
}
217
int cg_pid_get_user_unit_full(pid_t pid, char **ret_unit, char **ret_subgroup);
218
static inline int cg_pid_get_user_unit(pid_t pid, char **ret_unit) {
43✔
219
        return cg_pid_get_unit_full(pid, ret_unit, NULL);
43✔
220
}
221
int cg_pidref_get_user_unit_full(const PidRef *pidref, char **ret_unit, char **ret_subgroup);
222
static inline int cg_pidref_get_user_unit(const PidRef *pidref, char **ret_unit) {
13✔
223
        return cg_pidref_get_user_unit_full(pidref, ret_unit, NULL);
13✔
224
}
225
int cg_pid_get_machine_name(pid_t pid, char **ret_machine);
226
int cg_pid_get_slice(pid_t pid, char **ret_slice);
227
int cg_pid_get_user_slice(pid_t pid, char **ret_slice);
228

229
int cg_path_decode_unit(const char *cgroup, char **ret_unit);
230

231
bool cg_needs_escape(const char *p) _pure_;
232
int cg_escape(const char *p, char **ret);
233
char* cg_unescape(const char *p) _pure_;
234

235
int cg_slice_to_path(const char *unit, char **ret);
236

237
int cg_mask_supported(CGroupMask *ret);
238
int cg_mask_supported_subtree(const char *root, CGroupMask *ret);
239
int cg_mask_from_string(const char *s, CGroupMask *ret);
240
int cg_mask_to_string(CGroupMask mask, char **ret);
241

242
bool cg_kill_supported(void);
243

244
const char* cgroup_controller_to_string(CGroupController c) _const_;
245
CGroupController cgroup_controller_from_string(const char *s) _pure_;
246

247
typedef enum ManagedOOMMode {
248
        MANAGED_OOM_AUTO,
249
        MANAGED_OOM_KILL,
250
        _MANAGED_OOM_MODE_MAX,
251
        _MANAGED_OOM_MODE_INVALID = -EINVAL,
252
} ManagedOOMMode;
253

254
const char* managed_oom_mode_to_string(ManagedOOMMode m) _const_;
255
ManagedOOMMode managed_oom_mode_from_string(const char *s) _pure_;
256

257
typedef enum ManagedOOMPreference {
258
        MANAGED_OOM_PREFERENCE_NONE = 0,
259
        MANAGED_OOM_PREFERENCE_AVOID = 1,
260
        MANAGED_OOM_PREFERENCE_OMIT = 2,
261
        _MANAGED_OOM_PREFERENCE_MAX,
262
        _MANAGED_OOM_PREFERENCE_INVALID = -EINVAL,
263
} ManagedOOMPreference;
264

265
const char* managed_oom_preference_to_string(ManagedOOMPreference a) _const_;
266
ManagedOOMPreference managed_oom_preference_from_string(const char *s) _pure_;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc