]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/process-util.h
Merge pull request #30610 from YHNdnzj/logind-serialize-pidref
[thirdparty/systemd.git] / src / basic / process-util.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
0b452006
RC
2#pragma once
3
dccca82b 4#include <errno.h>
29ea9f0f 5#include <sched.h>
71d35b6b
TA
6#include <signal.h>
7#include <stdbool.h>
11c3a366 8#include <stddef.h>
0b452006
RC
9#include <stdio.h>
10#include <string.h>
41bf0590 11#include <sys/resource.h>
7f452159 12#include <sys/types.h>
0b452006 13
0cb8e3d1 14#include "alloc-util.h"
f97b34a6 15#include "format-util.h"
7b3e062c 16#include "macro.h"
ade39d9a 17#include "namespace-util.h"
d5641e0d 18#include "time-util.h"
0b452006
RC
19
20#define procfs_file_alloca(pid, field) \
21 ({ \
22 pid_t _pid_ = (pid); \
a07f18cd
LP
23 const char *_field_ = (field); \
24 char *_r_; \
0b452006 25 if (_pid_ == 0) { \
a07f18cd
LP
26 _r_ = newa(char, STRLEN("/proc/self/") + strlen(_field_) + 1); \
27 strcpy(stpcpy(_r_, "/proc/self/"), _field_); \
0b452006 28 } else { \
a07f18cd
LP
29 _r_ = newa(char, STRLEN("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + strlen(_field_) + 1); \
30 sprintf(_r_, "/proc/" PID_FMT "/%s", _pid_, _field_); \
0b452006 31 } \
a07f18cd 32 (const char*) _r_; \
0b452006
RC
33 })
34
09c1dcee
ZJS
35typedef enum ProcessCmdlineFlags {
36 PROCESS_CMDLINE_COMM_FALLBACK = 1 << 0,
e3b4efd2 37 PROCESS_CMDLINE_USE_LOCALE = 1 << 1,
61977664 38 PROCESS_CMDLINE_QUOTE = 1 << 2,
99009ed0 39 PROCESS_CMDLINE_QUOTE_POSIX = 1 << 3,
09c1dcee
ZJS
40} ProcessCmdlineFlags;
41
d7d74854
LP
42int pid_get_comm(pid_t pid, char **ret);
43int pidref_get_comm(const PidRef *pid, char **ret);
a034620f
LP
44int pid_get_cmdline(pid_t pid, size_t max_columns, ProcessCmdlineFlags flags, char **ret);
45int pidref_get_cmdline(const PidRef *pid, size_t max_columns, ProcessCmdlineFlags flags, char **ret);
46int pid_get_cmdline_strv(pid_t pid, ProcessCmdlineFlags flags, char ***ret);
47int pidref_get_cmdline_strv(const PidRef *pid, ProcessCmdlineFlags flags, char ***ret);
95a511b7 48int get_process_exe(pid_t pid, char **ret);
8b513415
LP
49int pid_get_uid(pid_t pid, uid_t *ret);
50int pidref_get_uid(const PidRef *pid, uid_t *ret);
95a511b7
YW
51int get_process_gid(pid_t pid, gid_t *ret);
52int get_process_capeff(pid_t pid, char **ret);
53int get_process_cwd(pid_t pid, char **ret);
54int get_process_root(pid_t pid, char **ret);
55int get_process_environ(pid_t pid, char **ret);
56int get_process_ppid(pid_t pid, pid_t *ret);
3dee63b7
LP
57int pid_get_start_time(pid_t pid, uint64_t *ret);
58int pidref_get_start_time(const PidRef* pid, uint64_t *ret);
95a511b7 59int get_process_umask(pid_t pid, mode_t *ret);
0b452006 60
3ec2ad35
ZJS
61int container_get_leader(const char *machine, pid_t *pid);
62
ade39d9a
NR
63int namespace_get_leader(pid_t pid, NamespaceType type, pid_t *ret);
64
0b452006 65int wait_for_terminate(pid_t pid, siginfo_t *status);
7d4904fe
LP
66
67typedef enum WaitFlags {
ef31828d
LP
68 WAIT_LOG_ABNORMAL = 1 << 0,
69 WAIT_LOG_NON_ZERO_EXIT_STATUS = 1 << 1,
7d4904fe
LP
70
71 /* A shortcut for requesting the most complete logging */
72 WAIT_LOG = WAIT_LOG_ABNORMAL|WAIT_LOG_NON_ZERO_EXIT_STATUS,
73} WaitFlags;
74
75int wait_for_terminate_and_check(const char *name, pid_t pid, WaitFlags flags);
d5641e0d 76int wait_for_terminate_with_timeout(pid_t pid, usec_t timeout);
0b452006 77
89c9030d
LP
78void sigkill_wait(pid_t pid);
79void sigkill_waitp(pid_t *pid);
392cf1d0 80void sigterm_wait(pid_t pid);
b293bb23
LP
81void sigkill_nowait(pid_t pid);
82void sigkill_nowaitp(pid_t *pid);
4d0d3d41 83
0b452006 84int kill_and_sigcont(pid_t pid, int sig);
405f8907 85
fc87713b
LP
86int pid_is_kernel_thread(pid_t pid);
87int pidref_is_kernel_thread(const PidRef *pid);
405f8907 88
0b452006
RC
89int getenv_for_pid(pid_t pid, const char *field, char **_value);
90
becdfcb9
LP
91int pid_is_alive(pid_t pid);
92int pidref_is_alive(const PidRef *pidref);
4d9f092b
LP
93int pid_is_unwaited(pid_t pid);
94int pidref_is_unwaited(const PidRef *pidref);
4d051546 95int pid_is_my_child(pid_t pid);
6774be42 96int pidref_is_my_child(const PidRef *pidref);
1359fffa 97int pid_from_same_root_fs(pid_t pid);
d4510856
LP
98
99bool is_main_thread(void);
ceee6d3a 100
c4412d4d
LP
101bool oom_score_adjust_is_valid(int oa);
102
7b3e062c
LP
103#ifndef PERSONALITY_INVALID
104/* personality(7) documents that 0xffffffffUL is used for querying the
105 * current personality, hence let's use that here as error
106 * indicator. */
107#define PERSONALITY_INVALID 0xffffffffLU
108#endif
109
110unsigned long personality_from_string(const char *p);
111const char *personality_to_string(unsigned long);
112
21022b9d 113int safe_personality(unsigned long p);
e8132d63
LP
114int opinionated_personality(unsigned long *ret);
115
7b3e062c
LP
116const char *sigchld_code_to_string(int i) _const_;
117int sigchld_code_from_string(const char *s) _pure_;
118
119int sched_policy_to_string_alloc(int i, char **s);
120int sched_policy_from_string(const char *s);
121
bc2fcf7f
LP
122static inline pid_t PTR_TO_PID(const void *p) {
123 return (pid_t) ((uintptr_t) p);
124}
125
126static inline void* PID_TO_PTR(pid_t pid) {
127 return (void*) ((uintptr_t) pid);
128}
dcadc967
EV
129
130void valgrind_summary_hack(void);
291d565a 131
93bab288 132int pid_compare_func(const pid_t *a, const pid_t *b);
41bf0590
LP
133
134static inline bool nice_is_valid(int n) {
135 return n >= PRIO_MIN && n < PRIO_MAX;
136}
7f452159 137
29ea9f0f
YW
138static inline bool sched_policy_is_valid(int i) {
139 return IN_SET(i, SCHED_OTHER, SCHED_BATCH, SCHED_IDLE, SCHED_FIFO, SCHED_RR);
140}
141
142static inline bool sched_priority_is_valid(int i) {
143 return i >= 0 && i <= sched_get_priority_max(SCHED_RR);
144}
145
54191eb3
LP
146static inline bool pid_is_valid(pid_t p) {
147 return p > 0;
148}
149
5c30a6d2 150pid_t getpid_cached(void);
799a960d 151void reset_cached_pid(void);
fba868fa
LP
152
153int must_be_root(void);
4c253ed1 154
29c3520f
LP
155pid_t clone_with_nested_stack(int (*fn)(void *), int flags, void *userdata);
156
01ab446c
LP
157/* 💣 Note that FORK_NEW_USERNS + FORK_NEW_MOUNTNS should not be called in threaded programs, because they
158 * cause us to use raw_clone() which does not synchronize the glibc malloc() locks, and thus will cause
159 * deadlocks if the parent uses threads and the child does memory allocations. Hence: if the parent is
160 * threaded these flags may not be used. These flags cannot be used if the parent uses threads or the child
161 * uses malloc(). 💣 */
4c253ed1 162typedef enum ForkFlags {
8987afc4
LP
163 FORK_RESET_SIGNALS = 1 << 0, /* Reset all signal handlers and signal mask */
164 FORK_CLOSE_ALL_FDS = 1 << 1, /* Close all open file descriptors in the child, except for 0,1,2 */
e9ccae31 165 FORK_DEATHSIG_SIGTERM = 1 << 2, /* Set PR_DEATHSIG in the child to SIGTERM */
97033ba4 166 FORK_DEATHSIG_SIGINT = 1 << 3, /* Set PR_DEATHSIG in the child to SIGINT */
e9ccae31
LP
167 FORK_DEATHSIG_SIGKILL = 1 << 4, /* Set PR_DEATHSIG in the child to SIGKILL */
168 FORK_REARRANGE_STDIO = 1 << 5, /* Connect 0,1,2 to specified fds or /dev/null */
169 FORK_REOPEN_LOG = 1 << 6, /* Reopen log connection */
170 FORK_LOG = 1 << 7, /* Log above LOG_DEBUG log level about failures */
171 FORK_WAIT = 1 << 8, /* Wait until child exited */
172 FORK_NEW_MOUNTNS = 1 << 9, /* Run child in its own mount namespace 💣 DO NOT USE IN THREADED PROGRAMS! 💣 */
173 FORK_MOUNTNS_SLAVE = 1 << 10, /* Make child's mount namespace MS_SLAVE */
174 FORK_PRIVATE_TMP = 1 << 11, /* Mount new /tmp/ in the child (combine with FORK_NEW_MOUNTNS!) */
175 FORK_RLIMIT_NOFILE_SAFE = 1 << 12, /* Set RLIMIT_NOFILE soft limit to 1K for select() compat */
176 FORK_STDOUT_TO_STDERR = 1 << 13, /* Make stdout a copy of stderr */
177 FORK_FLUSH_STDIO = 1 << 14, /* fflush() stdout (and stderr) before forking */
178 FORK_NEW_USERNS = 1 << 15, /* Run child in its own user namespace 💣 DO NOT USE IN THREADED PROGRAMS! 💣 */
179 FORK_CLOEXEC_OFF = 1 << 16, /* In the child: turn off O_CLOEXEC on all fds in except_fds[] */
180 FORK_KEEP_NOTIFY_SOCKET = 1 << 17, /* Unless this specified, $NOTIFY_SOCKET will be unset. */
181 FORK_DETACH = 1 << 18, /* Double fork if needed to ensure PID1/subreaper is parent */
4c253ed1
LP
182} ForkFlags;
183
911f8f01
YW
184int safe_fork_full(
185 const char *name,
186 const int stdio_fds[3],
187 const int except_fds[],
188 size_t n_except_fds,
189 ForkFlags flags,
190 pid_t *ret_pid);
4c253ed1
LP
191
192static inline int safe_fork(const char *name, ForkFlags flags, pid_t *ret_pid) {
911f8f01 193 return safe_fork_full(name, NULL, NULL, 0, flags, ret_pid);
4c253ed1 194}
78752f2e 195
f1713226
LP
196int pidref_safe_fork_full(
197 const char *name,
198 const int stdio_fds[3],
199 const int except_fds[],
200 size_t n_except_fds,
201 ForkFlags flags,
202 PidRef *ret_pid);
203
204static inline int pidref_safe_fork(const char *name, ForkFlags flags, PidRef *ret_pid) {
205 return pidref_safe_fork_full(name, NULL, NULL, 0, flags, ret_pid);
206}
207
c85cb3bc 208int namespace_fork(const char *outer_name, const char *inner_name, const int except_fds[], size_t n_except_fds, ForkFlags flags, int pidns_fd, int mntns_fd, int netns_fd, int userns_fd, int root_fd, pid_t *ret_pid);
27096982 209
9f8168eb 210int set_oom_score_adjust(int value);
2c37c613 211int get_oom_score_adjust(int *ret);
9f8168eb 212
f3a367d6
LP
213/* The highest possibly (theoretic) pid_t value on this architecture. */
214#define PID_T_MAX ((pid_t) INT32_MAX)
215/* The maximum number of concurrent processes Linux allows on this architecture, as well as the highest valid PID value
216 * the kernel will potentially assign. This reflects a value compiled into the kernel (PID_MAX_LIMIT), and sets the
217 * upper boundary on what may be written to the /proc/sys/kernel/pid_max sysctl (but do note that the sysctl is off by
218 * 1, since PID 0 can never exist and there can hence only be one process less than the limit would suggest). Since
219 * these values are documented in proc(5) we feel quite confident that they are stable enough for the near future at
220 * least to define them here too. */
221#define TASKS_MAX 4194303U
f3a367d6 222
ab1a1ba5 223assert_cc(TASKS_MAX <= (unsigned long) PID_T_MAX);
342f6f80 224
40c5cc2b
DS
225/* Like TAKE_PTR() but for pid_t, resetting them to 0 */
226#define TAKE_PID(pid) TAKE_GENERIC(pid, pid_t, 0)
298f466f
LP
227
228int pidfd_get_pid(int fd, pid_t *ret);
f840c7d5 229int pidfd_verify_pid(int pidfd, pid_t pid);
39090201
DJL
230
231int setpriority_closest(int priority);
2306d177 232
8ddefb8e 233_noreturn_ void freeze(void);
6aa90884
LP
234
235int get_process_threads(pid_t pid);
09f9530b
LP
236
237int is_reaper_process(void);
8c3fe1b5 238int make_reaper_process(bool b);
6ecdfe7d
LB
239
240int posix_spawn_wrapper(const char *path, char *const *argv, char *const *envp, pid_t *ret_pid);
eefb7d22
LP
241
242int proc_dir_open(DIR **ret);
243int proc_dir_read(DIR *d, pid_t *ret);
244int proc_dir_read_pidref(DIR *d, PidRef *ret);