]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/process-util.h
Merge pull request #6266 from keszybz/drop-autotools
[thirdparty/systemd.git] / src / basic / process-util.h
CommitLineData
0b452006
RC
1#pragma once
2
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
0b452006 22#include <alloca.h>
71d35b6b
TA
23#include <signal.h>
24#include <stdbool.h>
11c3a366 25#include <stddef.h>
0b452006
RC
26#include <stdio.h>
27#include <string.h>
41bf0590 28#include <sys/resource.h>
7f452159 29#include <sys/types.h>
0b452006 30
f97b34a6 31#include "format-util.h"
7f452159 32#include "ioprio.h"
7b3e062c 33#include "macro.h"
0b452006
RC
34
35#define procfs_file_alloca(pid, field) \
36 ({ \
37 pid_t _pid_ = (pid); \
38 const char *_r_; \
39 if (_pid_ == 0) { \
40 _r_ = ("/proc/self/" field); \
41 } else { \
42 _r_ = alloca(strlen("/proc/") + DECIMAL_STR_MAX(pid_t) + 1 + sizeof(field)); \
43 sprintf((char*) _r_, "/proc/"PID_FMT"/" field, _pid_); \
44 } \
45 _r_; \
46 })
47
48int get_process_state(pid_t pid);
49int get_process_comm(pid_t pid, char **name);
50int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
51int get_process_exe(pid_t pid, char **name);
52int get_process_uid(pid_t pid, uid_t *uid);
53int get_process_gid(pid_t pid, gid_t *gid);
54int get_process_capeff(pid_t pid, char **capeff);
55int get_process_cwd(pid_t pid, char **cwd);
56int get_process_root(pid_t pid, char **root);
57int get_process_environ(pid_t pid, char **environ);
6bc73acb 58int get_process_ppid(pid_t pid, pid_t *ppid);
0b452006
RC
59
60int wait_for_terminate(pid_t pid, siginfo_t *status);
61int wait_for_terminate_and_warn(const char *name, pid_t pid, bool check_exit_code);
62
89c9030d
LP
63void sigkill_wait(pid_t pid);
64void sigkill_waitp(pid_t *pid);
4d0d3d41 65
0b452006 66int kill_and_sigcont(pid_t pid, int sig);
405f8907 67
9bfaffd5 68int rename_process(const char name[]);
0b452006 69int is_kernel_thread(pid_t pid);
405f8907 70
0b452006
RC
71int getenv_for_pid(pid_t pid, const char *field, char **_value);
72
73bool pid_is_alive(pid_t pid);
74bool pid_is_unwaited(pid_t pid);
1359fffa 75int pid_from_same_root_fs(pid_t pid);
d4510856
LP
76
77bool is_main_thread(void);
ceee6d3a 78
7b3e062c
LP
79noreturn void freeze(void);
80
81bool oom_score_adjust_is_valid(int oa);
82
83#ifndef PERSONALITY_INVALID
84/* personality(7) documents that 0xffffffffUL is used for querying the
85 * current personality, hence let's use that here as error
86 * indicator. */
87#define PERSONALITY_INVALID 0xffffffffLU
88#endif
89
90unsigned long personality_from_string(const char *p);
91const char *personality_to_string(unsigned long);
92
93int ioprio_class_to_string_alloc(int i, char **s);
94int ioprio_class_from_string(const char *s);
95
96const char *sigchld_code_to_string(int i) _const_;
97int sigchld_code_from_string(const char *s) _pure_;
98
99int sched_policy_to_string_alloc(int i, char **s);
100int sched_policy_from_string(const char *s);
101
ceee6d3a
LP
102#define PTR_TO_PID(p) ((pid_t) ((uintptr_t) p))
103#define PID_TO_PTR(p) ((void*) ((uintptr_t) p))
dcadc967
EV
104
105void valgrind_summary_hack(void);
291d565a
LP
106
107int pid_compare_func(const void *a, const void *b);
41bf0590
LP
108
109static inline bool nice_is_valid(int n) {
110 return n >= PRIO_MIN && n < PRIO_MAX;
111}
7f452159
LP
112
113static inline bool ioprio_class_is_valid(int i) {
114 return IN_SET(i, IOPRIO_CLASS_NONE, IOPRIO_CLASS_RT, IOPRIO_CLASS_BE, IOPRIO_CLASS_IDLE);
115}
116
117static inline bool ioprio_priority_is_valid(int i) {
118 return i >= 0 && i < IOPRIO_BE_NR;
119}
120
121int ioprio_parse_priority(const char *s, int *ret);