]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/process-util.h
log: minimize includes in log.h
[thirdparty/systemd.git] / src / basic / process-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
0b452006
RC
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2010 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
0b452006 23#include <alloca.h>
dccca82b 24#include <errno.h>
29ea9f0f 25#include <sched.h>
71d35b6b
TA
26#include <signal.h>
27#include <stdbool.h>
11c3a366 28#include <stddef.h>
0b452006
RC
29#include <stdio.h>
30#include <string.h>
41bf0590 31#include <sys/resource.h>
7f452159 32#include <sys/types.h>
0b452006 33
f97b34a6 34#include "format-util.h"
7f452159 35#include "ioprio.h"
7b3e062c 36#include "macro.h"
d5641e0d 37#include "time-util.h"
0b452006
RC
38
39#define procfs_file_alloca(pid, field) \
40 ({ \
41 pid_t _pid_ = (pid); \
42 const char *_r_; \
43 if (_pid_ == 0) { \
44 _r_ = ("/proc/self/" field); \
45 } else { \
fbd0b64f 46 _r_ = alloca(STRLEN("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + sizeof(field)); \
0b452006
RC
47 sprintf((char*) _r_, "/proc/"PID_FMT"/" field, _pid_); \
48 } \
49 _r_; \
50 })
51
52int get_process_state(pid_t pid);
53int get_process_comm(pid_t pid, char **name);
54int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
55int get_process_exe(pid_t pid, char **name);
56int get_process_uid(pid_t pid, uid_t *uid);
57int get_process_gid(pid_t pid, gid_t *gid);
58int get_process_capeff(pid_t pid, char **capeff);
59int get_process_cwd(pid_t pid, char **cwd);
60int get_process_root(pid_t pid, char **root);
61int get_process_environ(pid_t pid, char **environ);
6bc73acb 62int get_process_ppid(pid_t pid, pid_t *ppid);
0b452006
RC
63
64int wait_for_terminate(pid_t pid, siginfo_t *status);
7d4904fe
LP
65
66typedef enum WaitFlags {
67 WAIT_LOG_ABNORMAL = 1U << 0,
68 WAIT_LOG_NON_ZERO_EXIT_STATUS = 1U << 1,
69
70 /* A shortcut for requesting the most complete logging */
71 WAIT_LOG = WAIT_LOG_ABNORMAL|WAIT_LOG_NON_ZERO_EXIT_STATUS,
72} WaitFlags;
73
74int wait_for_terminate_and_check(const char *name, pid_t pid, WaitFlags flags);
d5641e0d 75int wait_for_terminate_with_timeout(pid_t pid, usec_t timeout);
0b452006 76
89c9030d
LP
77void sigkill_wait(pid_t pid);
78void sigkill_waitp(pid_t *pid);
4d0d3d41 79
0b452006 80int kill_and_sigcont(pid_t pid, int sig);
405f8907 81
9bfaffd5 82int rename_process(const char name[]);
0b452006 83int is_kernel_thread(pid_t pid);
405f8907 84
0b452006
RC
85int getenv_for_pid(pid_t pid, const char *field, char **_value);
86
87bool pid_is_alive(pid_t pid);
88bool pid_is_unwaited(pid_t pid);
1359fffa 89int pid_from_same_root_fs(pid_t pid);
d4510856
LP
90
91bool is_main_thread(void);
ceee6d3a 92
7b3e062c
LP
93noreturn void freeze(void);
94
95bool oom_score_adjust_is_valid(int oa);
96
97#ifndef PERSONALITY_INVALID
98/* personality(7) documents that 0xffffffffUL is used for querying the
99 * current personality, hence let's use that here as error
100 * indicator. */
101#define PERSONALITY_INVALID 0xffffffffLU
102#endif
103
104unsigned long personality_from_string(const char *p);
105const char *personality_to_string(unsigned long);
106
21022b9d 107int safe_personality(unsigned long p);
e8132d63
LP
108int opinionated_personality(unsigned long *ret);
109
7b3e062c
LP
110int ioprio_class_to_string_alloc(int i, char **s);
111int ioprio_class_from_string(const char *s);
112
113const char *sigchld_code_to_string(int i) _const_;
114int sigchld_code_from_string(const char *s) _pure_;
115
116int sched_policy_to_string_alloc(int i, char **s);
117int sched_policy_from_string(const char *s);
118
ceee6d3a
LP
119#define PTR_TO_PID(p) ((pid_t) ((uintptr_t) p))
120#define PID_TO_PTR(p) ((void*) ((uintptr_t) p))
dcadc967
EV
121
122void valgrind_summary_hack(void);
291d565a
LP
123
124int pid_compare_func(const void *a, const void *b);
41bf0590
LP
125
126static inline bool nice_is_valid(int n) {
127 return n >= PRIO_MIN && n < PRIO_MAX;
128}
7f452159 129
29ea9f0f
YW
130static inline bool sched_policy_is_valid(int i) {
131 return IN_SET(i, SCHED_OTHER, SCHED_BATCH, SCHED_IDLE, SCHED_FIFO, SCHED_RR);
132}
133
134static inline bool sched_priority_is_valid(int i) {
135 return i >= 0 && i <= sched_get_priority_max(SCHED_RR);
136}
137
7f452159
LP
138static inline bool ioprio_class_is_valid(int i) {
139 return IN_SET(i, IOPRIO_CLASS_NONE, IOPRIO_CLASS_RT, IOPRIO_CLASS_BE, IOPRIO_CLASS_IDLE);
140}
141
142static inline bool ioprio_priority_is_valid(int i) {
143 return i >= 0 && i < IOPRIO_BE_NR;
144}
145
54191eb3
LP
146static inline bool pid_is_valid(pid_t p) {
147 return p > 0;
148}
149
33d12153
YW
150static inline int sched_policy_to_string_alloc_with_check(int n, char **s) {
151 if (!sched_policy_is_valid(n))
152 return -EINVAL;
153
154 return sched_policy_to_string_alloc(n, s);
155}
156
7f452159 157int ioprio_parse_priority(const char *s, int *ret);
5c30a6d2
LP
158
159pid_t getpid_cached(void);
799a960d 160void reset_cached_pid(void);
fba868fa
LP
161
162int must_be_root(void);
4c253ed1
LP
163
164typedef enum ForkFlags {
165 FORK_RESET_SIGNALS = 1U << 0,
166 FORK_CLOSE_ALL_FDS = 1U << 1,
167 FORK_DEATHSIG = 1U << 2,
168 FORK_NULL_STDIO = 1U << 3,
169 FORK_REOPEN_LOG = 1U << 4,
b6e1fff1 170 FORK_LOG = 1U << 5,
1f5d1e02 171 FORK_WAIT = 1U << 6,
be39f6ee 172 FORK_NEW_MOUNTNS = 1U << 7,
4c253ed1
LP
173} ForkFlags;
174
175int safe_fork_full(const char *name, const int except_fds[], size_t n_except_fds, ForkFlags flags, pid_t *ret_pid);
176
177static inline int safe_fork(const char *name, ForkFlags flags, pid_t *ret_pid) {
178 return safe_fork_full(name, NULL, 0, flags, ret_pid);
179}
78752f2e
LP
180
181int fork_agent(const char *name, const int except[], unsigned n_except, pid_t *pid, const char *path, ...);