]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/process-util.h
Add SPDX license identifiers to source files under the LGPL
[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>
29ea9f0f 24#include <sched.h>
71d35b6b
TA
25#include <signal.h>
26#include <stdbool.h>
11c3a366 27#include <stddef.h>
0b452006
RC
28#include <stdio.h>
29#include <string.h>
41bf0590 30#include <sys/resource.h>
7f452159 31#include <sys/types.h>
0b452006 32
f97b34a6 33#include "format-util.h"
7f452159 34#include "ioprio.h"
7b3e062c 35#include "macro.h"
0b452006
RC
36
37#define procfs_file_alloca(pid, field) \
38 ({ \
39 pid_t _pid_ = (pid); \
40 const char *_r_; \
41 if (_pid_ == 0) { \
42 _r_ = ("/proc/self/" field); \
43 } else { \
44 _r_ = alloca(strlen("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + sizeof(field)); \
45 sprintf((char*) _r_, "/proc/"PID_FMT"/" field, _pid_); \
46 } \
47 _r_; \
48 })
49
50int get_process_state(pid_t pid);
51int get_process_comm(pid_t pid, char **name);
52int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
53int get_process_exe(pid_t pid, char **name);
54int get_process_uid(pid_t pid, uid_t *uid);
55int get_process_gid(pid_t pid, gid_t *gid);
56int get_process_capeff(pid_t pid, char **capeff);
57int get_process_cwd(pid_t pid, char **cwd);
58int get_process_root(pid_t pid, char **root);
59int get_process_environ(pid_t pid, char **environ);
6bc73acb 60int get_process_ppid(pid_t pid, pid_t *ppid);
0b452006
RC
61
62int wait_for_terminate(pid_t pid, siginfo_t *status);
63int wait_for_terminate_and_warn(const char *name, pid_t pid, bool check_exit_code);
64
89c9030d
LP
65void sigkill_wait(pid_t pid);
66void sigkill_waitp(pid_t *pid);
4d0d3d41 67
0b452006 68int kill_and_sigcont(pid_t pid, int sig);
405f8907 69
9bfaffd5 70int rename_process(const char name[]);
0b452006 71int is_kernel_thread(pid_t pid);
405f8907 72
0b452006
RC
73int getenv_for_pid(pid_t pid, const char *field, char **_value);
74
75bool pid_is_alive(pid_t pid);
76bool pid_is_unwaited(pid_t pid);
1359fffa 77int pid_from_same_root_fs(pid_t pid);
d4510856
LP
78
79bool is_main_thread(void);
ceee6d3a 80
7b3e062c
LP
81noreturn void freeze(void);
82
83bool oom_score_adjust_is_valid(int oa);
84
85#ifndef PERSONALITY_INVALID
86/* personality(7) documents that 0xffffffffUL is used for querying the
87 * current personality, hence let's use that here as error
88 * indicator. */
89#define PERSONALITY_INVALID 0xffffffffLU
90#endif
91
92unsigned long personality_from_string(const char *p);
93const char *personality_to_string(unsigned long);
94
21022b9d 95int safe_personality(unsigned long p);
e8132d63
LP
96int opinionated_personality(unsigned long *ret);
97
7b3e062c
LP
98int ioprio_class_to_string_alloc(int i, char **s);
99int ioprio_class_from_string(const char *s);
100
101const char *sigchld_code_to_string(int i) _const_;
102int sigchld_code_from_string(const char *s) _pure_;
103
104int sched_policy_to_string_alloc(int i, char **s);
105int sched_policy_from_string(const char *s);
106
ceee6d3a
LP
107#define PTR_TO_PID(p) ((pid_t) ((uintptr_t) p))
108#define PID_TO_PTR(p) ((void*) ((uintptr_t) p))
dcadc967
EV
109
110void valgrind_summary_hack(void);
291d565a
LP
111
112int pid_compare_func(const void *a, const void *b);
41bf0590
LP
113
114static inline bool nice_is_valid(int n) {
115 return n >= PRIO_MIN && n < PRIO_MAX;
116}
7f452159 117
29ea9f0f
YW
118static inline bool sched_policy_is_valid(int i) {
119 return IN_SET(i, SCHED_OTHER, SCHED_BATCH, SCHED_IDLE, SCHED_FIFO, SCHED_RR);
120}
121
122static inline bool sched_priority_is_valid(int i) {
123 return i >= 0 && i <= sched_get_priority_max(SCHED_RR);
124}
125
7f452159
LP
126static inline bool ioprio_class_is_valid(int i) {
127 return IN_SET(i, IOPRIO_CLASS_NONE, IOPRIO_CLASS_RT, IOPRIO_CLASS_BE, IOPRIO_CLASS_IDLE);
128}
129
130static inline bool ioprio_priority_is_valid(int i) {
131 return i >= 0 && i < IOPRIO_BE_NR;
132}
133
54191eb3
LP
134static inline bool pid_is_valid(pid_t p) {
135 return p > 0;
136}
137
7f452159 138int ioprio_parse_priority(const char *s, int *ret);
5c30a6d2
LP
139
140pid_t getpid_cached(void);