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