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

systemd / systemd / 14255132001

03 Apr 2025 10:15PM UTC coverage: 71.907% (-0.05%) from 71.955%
14255132001

push

github

bluca
mkosi: Fix arch build script version sed expression

Yours truly got rid of the _tag variable in the Arch Linux PKGBUILD
a while ago, so actually adapt the build script to that by changing
the pkgver= variable instead.

297094 of 413162 relevant lines covered (71.91%)

653278.23 hits per line

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

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

4
#include <errno.h>
5
#include <sched.h>
6
#include <signal.h>
7
#include <stdbool.h>
8
#include <stddef.h>
9
#include <stdio.h>
10
#include <string.h>
11
#include <sys/resource.h>
12
#include <sys/types.h>
13

14
#include "alloc-util.h"
15
#include "format-util.h"
16
#include "macro.h"
17
#include "pidref.h"
18
#include "time-util.h"
19

20
#define procfs_file_alloca(pid, field)                                  \
21
        ({                                                              \
22
                pid_t _pid_ = (pid);                                    \
23
                const char *_field_ = (field);                          \
24
                char *_r_;                                              \
25
                if (_pid_ == 0) {                                       \
26
                        _r_ = newa(char, STRLEN("/proc/self/") + strlen(_field_) + 1); \
27
                        strcpy(stpcpy(_r_, "/proc/self/"), _field_);    \
28
                } else {                                                \
29
                        _r_ = newa(char, STRLEN("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + strlen(_field_) + 1); \
30
                        sprintf(_r_, "/proc/" PID_FMT "/%s", _pid_, _field_); \
31
                }                                                       \
32
                (const char*) _r_;                                      \
33
        })
34

35
typedef enum ProcessCmdlineFlags {
36
        PROCESS_CMDLINE_COMM_FALLBACK = 1 << 0,
37
        PROCESS_CMDLINE_USE_LOCALE    = 1 << 1,
38
        PROCESS_CMDLINE_QUOTE         = 1 << 2,
39
        PROCESS_CMDLINE_QUOTE_POSIX   = 1 << 3,
40
} ProcessCmdlineFlags;
41

42
int pid_get_comm(pid_t pid, char **ret);
43
int pidref_get_comm(const PidRef *pid, char **ret);
44
int pid_get_cmdline(pid_t pid, size_t max_columns, ProcessCmdlineFlags flags, char **ret);
45
int pidref_get_cmdline(const PidRef *pid, size_t max_columns, ProcessCmdlineFlags flags, char **ret);
46
int pid_get_cmdline_strv(pid_t pid, ProcessCmdlineFlags flags, char ***ret);
47
int pidref_get_cmdline_strv(const PidRef *pid, ProcessCmdlineFlags flags, char ***ret);
48
int get_process_exe(pid_t pid, char **ret);
49
int pid_get_uid(pid_t pid, uid_t *ret);
50
int pidref_get_uid(const PidRef *pid, uid_t *ret);
51
int get_process_gid(pid_t pid, gid_t *ret);
52
int get_process_cwd(pid_t pid, char **ret);
53
int get_process_root(pid_t pid, char **ret);
54
int get_process_environ(pid_t pid, char **ret);
55
int pid_get_ppid(pid_t pid, pid_t *ret);
56
int pidref_get_ppid(const PidRef *pidref, pid_t *ret);
57
int pidref_get_ppid_as_pidref(const PidRef *pidref, PidRef *ret);
58
int pid_get_start_time(pid_t pid, usec_t *ret);
59
int pidref_get_start_time(const PidRef *pid, usec_t *ret);
60
int get_process_umask(pid_t pid, mode_t *ret);
61

62
int container_get_leader(const char *machine, pid_t *pid);
63

64
static inline bool SIGINFO_CODE_IS_DEAD(int code) {
31,713✔
65
        return IN_SET(code, CLD_EXITED, CLD_KILLED, CLD_DUMPED);
31,713✔
66
}
67

68
int wait_for_terminate(pid_t pid, siginfo_t *ret);
69

70
typedef enum WaitFlags {
71
        WAIT_LOG_ABNORMAL             = 1 << 0,
72
        WAIT_LOG_NON_ZERO_EXIT_STATUS = 1 << 1,
73

74
        /* A shortcut for requesting the most complete logging */
75
        WAIT_LOG = WAIT_LOG_ABNORMAL|WAIT_LOG_NON_ZERO_EXIT_STATUS,
76
} WaitFlags;
77

78
int pidref_wait_for_terminate_and_check(const char *name, PidRef *pidref, WaitFlags flags);
79
int wait_for_terminate_and_check(const char *name, pid_t pid, WaitFlags flags);
80

81
int wait_for_terminate_with_timeout(pid_t pid, usec_t timeout);
82

83
void sigkill_wait(pid_t pid);
84
void sigkill_waitp(pid_t *pid);
85
void sigterm_wait(pid_t pid);
86
void sigkill_nowait(pid_t pid);
87
void sigkill_nowaitp(pid_t *pid);
88

89
int kill_and_sigcont(pid_t pid, int sig);
90

91
int pid_is_kernel_thread(pid_t pid);
92
int pidref_is_kernel_thread(const PidRef *pid);
93

94
int getenv_for_pid(pid_t pid, const char *field, char **_value);
95

96
int pid_is_alive(pid_t pid);
97
int pidref_is_alive(const PidRef *pidref);
98
int pid_is_unwaited(pid_t pid);
99
int pidref_is_unwaited(PidRef *pidref);
100
int pid_is_my_child(pid_t pid);
101
int pidref_is_my_child(PidRef *pidref);
102
int pidref_from_same_root_fs(PidRef *a, PidRef *b);
103

104
bool is_main_thread(void);
105

106
bool oom_score_adjust_is_valid(int oa);
107

108
#ifndef PERSONALITY_INVALID
109
/* personality(2) documents that 0xFFFFFFFFUL is used for querying the
110
 * current personality, hence let's use that here as error
111
 * indicator. */
112
#define PERSONALITY_INVALID 0xFFFFFFFFUL
113
#endif
114

115
/* The personality() syscall returns a 32-bit value where the top three bytes are reserved for flags that
116
 * emulate historical or architectural quirks, and only the least significant byte reflects the actual
117
 * personality we're interested in. */
118
#define OPINIONATED_PERSONALITY_MASK 0xFFUL
119

120
unsigned long personality_from_string(const char *p);
121
const char* personality_to_string(unsigned long);
122

123
int safe_personality(unsigned long p);
124
int opinionated_personality(unsigned long *ret);
125

126
const char* sigchld_code_to_string(int i) _const_;
127
int sigchld_code_from_string(const char *s) _pure_;
128

129
int sched_policy_to_string_alloc(int i, char **s);
130
int sched_policy_from_string(const char *s);
131

132
static inline pid_t PTR_TO_PID(const void *p) {
1,123✔
133
        return (pid_t) ((uintptr_t) p);
1,123✔
134
}
135

136
static inline void* PID_TO_PTR(pid_t pid) {
406,540✔
137
        return (void*) ((uintptr_t) pid);
406,477✔
138
}
139

140
void valgrind_summary_hack(void);
141

142
int pid_compare_func(const pid_t *a, const pid_t *b);
143

144
static inline bool nice_is_valid(int n) {
668✔
145
        return n >= PRIO_MIN && n < PRIO_MAX;
668✔
146
}
147

148
static inline bool sched_policy_is_valid(int i) {
×
149
        return IN_SET(i, SCHED_OTHER, SCHED_BATCH, SCHED_IDLE, SCHED_FIFO, SCHED_RR);
×
150
}
151

152
static inline bool sched_priority_is_valid(int i) {
153
        return i >= 0 && i <= sched_get_priority_max(SCHED_RR);
154
}
155

156
#define PID_AUTOMATIC ((pid_t) INT_MIN) /* special value indicating "acquire pid from connection peer" */
157

158
static inline bool pid_is_valid(pid_t p) {
159
        return p > 0;
160
}
161

162
static inline bool pid_is_automatic(pid_t p) {
1✔
163
        return p == PID_AUTOMATIC;
1✔
164
}
165

166
pid_t getpid_cached(void);
167
void reset_cached_pid(void);
168

169
int must_be_root(void);
170

171
pid_t clone_with_nested_stack(int (*fn)(void *), int flags, void *userdata);
172

173
/* 💣 Note that FORK_NEW_USERNS, FORK_NEW_MOUNTNS, FORK_NEW_NETNS or FORK_NEW_PIDNS should not be called in threaded
174
 * programs, because they cause us to use raw_clone() which does not synchronize the glibc malloc() locks,
175
 * and thus will cause deadlocks if the parent uses threads and the child does memory allocations. Hence: if
176
 * the parent is threaded these flags may not be used. These flags cannot be used if the parent uses threads
177
 * or the child uses malloc(). 💣 */
178
typedef enum ForkFlags {
179
        FORK_RESET_SIGNALS      = 1 <<  0, /* Reset all signal handlers and signal mask */
180
        FORK_CLOSE_ALL_FDS      = 1 <<  1, /* Close all open file descriptors in the child, except for 0,1,2 */
181
        FORK_DEATHSIG_SIGTERM   = 1 <<  2, /* Set PR_DEATHSIG in the child to SIGTERM */
182
        FORK_DEATHSIG_SIGINT    = 1 <<  3, /* Set PR_DEATHSIG in the child to SIGINT */
183
        FORK_DEATHSIG_SIGKILL   = 1 <<  4, /* Set PR_DEATHSIG in the child to SIGKILL */
184
        FORK_REARRANGE_STDIO    = 1 <<  5, /* Connect 0,1,2 to specified fds or /dev/null */
185
        FORK_REOPEN_LOG         = 1 <<  6, /* Reopen log connection */
186
        FORK_LOG                = 1 <<  7, /* Log above LOG_DEBUG log level about failures */
187
        FORK_WAIT               = 1 <<  8, /* Wait until child exited */
188
        FORK_MOUNTNS_SLAVE      = 1 <<  9, /* Make child's mount namespace MS_SLAVE */
189
        FORK_PRIVATE_TMP        = 1 << 10, /* Mount new /tmp/ in the child (combine with FORK_NEW_MOUNTNS!) */
190
        FORK_RLIMIT_NOFILE_SAFE = 1 << 11, /* Set RLIMIT_NOFILE soft limit to 1K for select() compat */
191
        FORK_STDOUT_TO_STDERR   = 1 << 12, /* Make stdout a copy of stderr */
192
        FORK_FLUSH_STDIO        = 1 << 13, /* fflush() stdout (and stderr) before forking */
193
        FORK_CLOEXEC_OFF        = 1 << 14, /* In the child: turn off O_CLOEXEC on all fds in except_fds[] */
194
        FORK_KEEP_NOTIFY_SOCKET = 1 << 15, /* Unless this specified, $NOTIFY_SOCKET will be unset. */
195
        FORK_DETACH             = 1 << 16, /* Double fork if needed to ensure PID1/subreaper is parent */
196
        FORK_PACK_FDS           = 1 << 17, /* Rearrange the passed FDs to be FD 3,4,5,etc. Updates the array in place (combine with FORK_CLOSE_ALL_FDS!) */
197
        FORK_NEW_MOUNTNS        = 1 << 18, /* Run child in its own mount namespace                               💣 DO NOT USE IN THREADED PROGRAMS! 💣 */
198
        FORK_NEW_USERNS         = 1 << 19, /* Run child in its own user namespace                                💣 DO NOT USE IN THREADED PROGRAMS! 💣 */
199
        FORK_NEW_NETNS          = 1 << 20, /* Run child in its own network namespace                             💣 DO NOT USE IN THREADED PROGRAMS! 💣 */
200
        FORK_NEW_PIDNS          = 1 << 21, /* Run child in its own PID namespace                                 💣 DO NOT USE IN THREADED PROGRAMS! 💣 */
201
        FORK_FREEZE             = 1 << 22, /* Don't return in child, just call freeze() instead */
202
        FORK_PID_ONLY           = 1 << 23, /* Don't open a pidfd referencing the child process */
203
} ForkFlags;
204

205
int pidref_safe_fork_full(
206
                const char *name,
207
                const int stdio_fds[3],
208
                int except_fds[],
209
                size_t n_except_fds,
210
                ForkFlags flags,
211
                PidRef *ret_pid);
212

213
static inline int pidref_safe_fork(const char *name, ForkFlags flags, PidRef *ret_pid) {
6,320✔
214
        return pidref_safe_fork_full(name, NULL, NULL, 0, flags, ret_pid);
6,320✔
215
}
216

217
int safe_fork_full(
218
                const char *name,
219
                const int stdio_fds[3],
220
                int except_fds[],
221
                size_t n_except_fds,
222
                ForkFlags flags,
223
                pid_t *ret_pid);
224

225
static inline int safe_fork(const char *name, ForkFlags flags, pid_t *ret_pid) {
8,893✔
226
        return safe_fork_full(name, NULL, NULL, 0, flags, ret_pid);
8,893✔
227
}
228

229
int namespace_fork(
230
                const char *outer_name,
231
                const char *inner_name,
232
                int except_fds[],
233
                size_t n_except_fds,
234
                ForkFlags flags,
235
                int pidns_fd,
236
                int mntns_fd,
237
                int netns_fd,
238
                int userns_fd,
239
                int root_fd,
240
                pid_t *ret_pid);
241

242
int set_oom_score_adjust(int value);
243
int get_oom_score_adjust(int *ret);
244

245
/* The highest possibly (theoretic) pid_t value on this architecture. */
246
#define PID_T_MAX ((pid_t) INT32_MAX)
247
/* The maximum number of concurrent processes Linux allows on this architecture, as well as the highest valid PID value
248
 * the kernel will potentially assign. This reflects a value compiled into the kernel (PID_MAX_LIMIT), and sets the
249
 * upper boundary on what may be written to the /proc/sys/kernel/pid_max sysctl (but do note that the sysctl is off by
250
 * 1, since PID 0 can never exist and there can hence only be one process less than the limit would suggest). Since
251
 * these values are documented in proc(5) we feel quite confident that they are stable enough for the near future at
252
 * least to define them here too. */
253
#define TASKS_MAX 4194303U
254

255
assert_cc(TASKS_MAX <= (unsigned long) PID_T_MAX);
256

257
/* Like TAKE_PTR() but for pid_t, resetting them to 0 */
258
#define TAKE_PID(pid) TAKE_GENERIC(pid, pid_t, 0)
259

260
int setpriority_closest(int priority);
261

262
_noreturn_ void freeze(void);
263

264
int get_process_threads(pid_t pid);
265

266
int is_reaper_process(void);
267
int make_reaper_process(bool b);
268

269
int posix_spawn_wrapper(
270
                const char *path,
271
                char * const *argv,
272
                char * const *envp,
273
                const char *cgroup,
274
                PidRef *ret_pidref);
275

276
int proc_dir_open(DIR **ret);
277
int proc_dir_read(DIR *d, pid_t *ret);
278
int proc_dir_read_pidref(DIR *d, PidRef *ret);
279

280
_noreturn_ void report_errno_and_exit(int errno_fd, int error);
281
int read_errno(int errno_fd);
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