]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/util.h
util: use waitid() instead of waitpid() everywhere to avoid confusion due to SIGSTOP
[thirdparty/systemd.git] / src / util.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275
LP
2
3#ifndef fooutilhfoo
4#define fooutilhfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
60918275
LP
25#include <inttypes.h>
26#include <time.h>
27#include <sys/time.h>
28#include <stdbool.h>
5cb5a6ff 29#include <stdlib.h>
80876c20 30#include <stdio.h>
9a34ec5f 31#include <signal.h>
82c121a4 32#include <sched.h>
8f75a603 33#include <limits.h>
60918275 34
a838e6a1
LP
35#include "macro.h"
36
60918275
LP
37typedef uint64_t usec_t;
38
63983207 39typedef struct dual_timestamp {
871d7de4
LP
40 usec_t realtime;
41 usec_t monotonic;
63983207 42} dual_timestamp;
871d7de4 43
034c6ed7
LP
44#define MSEC_PER_SEC 1000ULL
45#define USEC_PER_SEC 1000000ULL
46#define USEC_PER_MSEC 1000ULL
47#define NSEC_PER_SEC 1000000000ULL
48#define NSEC_PER_MSEC 1000000ULL
60918275
LP
49#define NSEC_PER_USEC 1000ULL
50
24a6e4a4
LP
51#define USEC_PER_MINUTE (60ULL*USEC_PER_SEC)
52#define USEC_PER_HOUR (60ULL*USEC_PER_MINUTE)
53#define USEC_PER_DAY (24ULL*USEC_PER_HOUR)
54#define USEC_PER_WEEK (7ULL*USEC_PER_DAY)
584be568
LP
55#define USEC_PER_MONTH (2629800ULL*USEC_PER_SEC)
56#define USEC_PER_YEAR (31557600ULL*USEC_PER_SEC)
24a6e4a4 57
44d8db9e 58/* What is interpreted as whitespace? */
4a72ff34 59#define WHITESPACE " \t\n\r"
7072ced8 60#define NEWLINE "\n\r"
44d8db9e 61
8b6c7120 62#define FORMAT_TIMESTAMP_MAX 64
584be568 63#define FORMAT_TIMESTAMP_PRETTY_MAX 256
871d7de4 64#define FORMAT_TIMESPAN_MAX 64
8b6c7120 65
61cbdc4b 66#define ANSI_HIGHLIGHT_ON "\x1B[1;31m"
2ee68f72 67#define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m"
61cbdc4b
LP
68#define ANSI_HIGHLIGHT_OFF "\x1B[0m"
69
60918275
LP
70usec_t now(clockid_t clock);
71
63983207 72dual_timestamp* dual_timestamp_get(dual_timestamp *ts);
871d7de4 73
60918275
LP
74usec_t timespec_load(const struct timespec *ts);
75struct timespec *timespec_store(struct timespec *ts, usec_t u);
76
77usec_t timeval_load(const struct timeval *tv);
78struct timeval *timeval_store(struct timeval *tv, usec_t u);
79
80#define streq(a,b) (strcmp((a),(b)) == 0)
81
e05797fb
LP
82bool streq_ptr(const char *a, const char *b);
83
60918275
LP
84#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
85
86#define new0(t, n) ((t*) calloc((n), sizeof(t)))
87
88#define malloc0(n) (calloc((n), 1))
89
90static inline const char* yes_no(bool b) {
91 return b ? "yes" : "no";
92}
93
94static inline const char* strempty(const char *s) {
95 return s ? s : "";
96}
97
98static inline const char* strnull(const char *s) {
99 return s ? s : "(null)";
100}
101
04fd6fe4
LP
102static inline const char *strna(const char *s) {
103 return s ? s : "n/a";
104}
105
106static inline bool is_path_absolute(const char *p) {
107 return *p == '/';
108}
109
60918275
LP
110bool endswith(const char *s, const char *postfix);
111bool startswith(const char *s, const char *prefix);
3177a7fa 112bool startswith_no_case(const char *s, const char *prefix);
60918275 113
79d6d816
LP
114bool first_word(const char *s, const char *word);
115
42f4e3c4 116int close_nointr(int fd);
85f136b5 117void close_nointr_nofail(int fd);
5b6319dc 118void close_many(const int fds[], unsigned n_fd);
60918275 119
85261803 120int parse_boolean(const char *v);
24a6e4a4 121int parse_usec(const char *t, usec_t *usec);
3ba686c1 122int parse_pid(const char *s, pid_t* ret_pid);
85261803
LP
123
124int safe_atou(const char *s, unsigned *ret_u);
125int safe_atoi(const char *s, int *ret_i);
126
8f75a603
LP
127int safe_atollu(const char *s, unsigned long long *ret_u);
128int safe_atolli(const char *s, long long int *ret_i);
129
130#if __WORDSIZE == 32
131static inline int safe_atolu(const char *s, unsigned long *ret_u) {
132 assert_cc(sizeof(unsigned long) == sizeof(unsigned));
133 return safe_atou(s, (unsigned*) ret_u);
134}
135static inline int safe_atoli(const char *s, long int *ret_u) {
136 assert_cc(sizeof(long int) == sizeof(int));
137 return safe_atoi(s, (int*) ret_u);
138}
139#else
140static inline int safe_atolu(const char *s, unsigned long *ret_u) {
141 assert_cc(sizeof(unsigned long) == sizeof(unsigned long long));
142 return safe_atollu(s, (unsigned long long*) ret_u);
143}
144static inline int safe_atoli(const char *s, long int *ret_u) {
145 assert_cc(sizeof(long int) == sizeof(long long int));
146 return safe_atolli(s, (long long int*) ret_u);
147}
148#endif
149
a838e6a1
LP
150static inline int safe_atou32(const char *s, uint32_t *ret_u) {
151 assert_cc(sizeof(uint32_t) == sizeof(unsigned));
152 return safe_atou(s, (unsigned*) ret_u);
153}
154
8f75a603 155static inline int safe_atoi32(const char *s, int32_t *ret_i) {
a838e6a1 156 assert_cc(sizeof(int32_t) == sizeof(int));
8f75a603 157 return safe_atoi(s, (int*) ret_i);
a838e6a1
LP
158}
159
8f75a603
LP
160static inline int safe_atou64(const char *s, uint64_t *ret_u) {
161 assert_cc(sizeof(uint64_t) == sizeof(unsigned long long));
162 return safe_atollu(s, (unsigned long long*) ret_u);
163}
034c6ed7 164
8f75a603
LP
165static inline int safe_atoi64(const char *s, int64_t *ret_i) {
166 assert_cc(sizeof(int64_t) == sizeof(long long int));
167 return safe_atolli(s, (long long int*) ret_i);
168}
034c6ed7 169
65d2ebdc 170char *split(const char *c, size_t *l, const char *separator, char **state);
034c6ed7 171char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 172
034c6ed7 173#define FOREACH_WORD(word, length, s, state) \
f62c0e4f 174 for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
65d2ebdc
LP
175
176#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
f62c0e4f 177 for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
a41e8209 178
034c6ed7 179#define FOREACH_WORD_QUOTED(word, length, s, state) \
f62c0e4f 180 for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
034c6ed7 181
65d2ebdc 182char **split_path_and_make_absolute(const char *p);
82919e3d 183
034c6ed7
LP
184pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
185
186int write_one_line_file(const char *fn, const char *line);
187int read_one_line_file(const char *fn, char **line);
188
44d8db9e 189char *strappend(const char *s, const char *suffix);
fab56fc5
LP
190char *strnappend(const char *s, const char *suffix, size_t length);
191
192char *replace_env(const char *format, char **env);
193char **replace_env_argv(char **argv, char **env);
44d8db9e 194
87f0e418 195int readlink_malloc(const char *p, char **r);
2c7108c4 196int readlink_and_make_absolute(const char *p, char **r);
87f0e418
LP
197
198char *file_name_from_path(const char *p);
0301abf4
LP
199bool is_path(const char *p);
200
201bool path_is_absolute(const char *p);
202char *path_make_absolute(const char *p, const char *prefix);
65d2ebdc 203char *path_make_absolute_cwd(const char *p);
c3f6d675 204
65d2ebdc 205char **strv_path_make_absolute_cwd(char **l);
c3f6d675 206char **strv_path_canonicalize(char **l);
87f0e418 207
2a987ee8
LP
208int reset_all_signal_handlers(void);
209
4a72ff34 210char *strstrip(char *s);
ee9b5e01 211char *delete_chars(char *s, const char *bad);
7072ced8 212char *truncate_nl(char *s);
ee9b5e01 213
4a72ff34 214char *file_in_same_dir(const char *path, const char *filename);
8c6db833 215int safe_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid);
a9f5d454 216int mkdir_parents(const char *path, mode_t mode);
bbd67135 217int mkdir_p(const char *path, mode_t mode);
4a72ff34 218
35d2e7ec
LP
219int parent_of_path(const char *path, char **parent);
220
c32dd69b
LP
221int rmdir_parents(const char *path, const char *stop);
222
7072ced8 223int get_process_name(pid_t pid, char **name);
c59760ee 224int get_process_cmdline(pid_t pid, size_t max_length, char **line);
7072ced8 225
fb624d04 226char hexchar(int x);
4fe88d28
LP
227int unhexchar(char c);
228char octchar(int x);
229int unoctchar(char c);
5af98f82
LP
230char decchar(int x);
231int undecchar(char c);
4fe88d28
LP
232
233char *cescape(const char *s);
234char *cunescape(const char *s);
6febfd0d
LP
235char *cunescape_length(const char *s, size_t length);
236
237char *xescape(const char *s, const char *bad);
238
239char *bus_path_escape(const char *s);
240char *bus_path_unescape(const char *s);
4fe88d28
LP
241
242char *path_kill_slashes(char *path);
243
244bool path_startswith(const char *path, const char *prefix);
15ae422b 245bool path_equal(const char *a, const char *b);
4fe88d28
LP
246
247char *ascii_strlower(char *path);
248
c85dc17b
LP
249bool ignore_file(const char *filename);
250
db12775d
LP
251bool chars_intersect(const char *a, const char *b);
252
8b6c7120 253char *format_timestamp(char *buf, size_t l, usec_t t);
584be568 254char *format_timestamp_pretty(char *buf, size_t l, usec_t t);
871d7de4 255char *format_timespan(char *buf, size_t l, usec_t t);
8b6c7120 256
843d2643
LP
257int make_stdio(int fd);
258
cb8a8f78 259bool is_clean_exit(int code, int status);
d06dacd0 260bool is_clean_exit_lsb(int code, int status);
cb8a8f78 261
d3782d60
LP
262unsigned long long random_ull(void);
263
1dccbe19
LP
264#define DEFINE_STRING_TABLE_LOOKUP(name,type) \
265 const char *name##_to_string(type i) { \
266 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
267 return NULL; \
268 return name##_table[i]; \
269 } \
270 type name##_from_string(const char *s) { \
271 type i; \
a7610064 272 unsigned u = 0; \
1dccbe19
LP
273 assert(s); \
274 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \
4fd5948e
LP
275 if (name##_table[i] && \
276 streq(name##_table[i], s)) \
1dccbe19 277 return i; \
d3725859
LP
278 if (safe_atou(s, &u) >= 0 && \
279 u < ELEMENTSOF(name##_table)) \
280 return (type) u; \
1dccbe19
LP
281 return (type) -1; \
282 } \
283 struct __useless_struct_to_allow_trailing_semicolon__
284
285
3a0ecb08
LP
286int fd_nonblock(int fd, bool nonblock);
287int fd_cloexec(int fd, bool cloexec);
288
a0d40ac5
LP
289int close_all_fds(const int except[], unsigned n_except);
290
42856c10
LP
291bool fstype_is_network(const char *fstype);
292
601f6a1e
LP
293int chvt(int vt);
294
80876c20
LP
295int read_one_char(FILE *f, char *ret, bool *need_nl);
296int ask(char *ret, const char *replies, const char *text, ...);
297
298int reset_terminal(int fd);
299int open_terminal(const char *name, int mode);
21de3988 300int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm);
80876c20
LP
301int release_terminal(void);
302
303int flush_fd(int fd);
304
9a34ec5f
LP
305int ignore_signals(int sig, ...);
306int default_signals(int sig, ...);
307int sigaction_many(const struct sigaction *sa, ...);
a337c6fc 308
8d567588
LP
309int close_pipe(int p[]);
310
eb22ac37
LP
311ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
312ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
8d567588
LP
313
314int path_is_mount_point(const char *path);
315
8407a5d0
LP
316bool is_device_path(const char *path);
317
01f78473
LP
318int dir_is_empty(const char *path);
319
5b6319dc 320void rename_process(const char name[8]);
2d368c14 321
7d793605
LP
322void sigset_add_many(sigset_t *ss, ...);
323
ef2f1067
LP
324char* gethostname_malloc(void);
325char* getlogname_malloc(void);
8c6db833 326int getttyname_malloc(char **r);
8c6db833
LP
327
328int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
329
330int rm_rf(const char *path, bool only_dirs, bool delete_root);
ef2f1067 331
82c121a4
LP
332cpu_set_t* cpu_set_malloc(unsigned *ncpus);
333
9e58ff9c 334void status_vprintf(const char *format, va_list ap);
c846ff47
LP
335void status_printf(const char *format, ...);
336void status_welcome(void);
9e58ff9c 337
fa776d8e
LP
338int columns(void);
339
b4f10a5e
LP
340int running_in_chroot(void);
341
8fe914ec
LP
342char *ellipsize(const char *s, unsigned length, unsigned percent);
343
f6144808
LP
344int touch(const char *path);
345
11ce3427
LP
346char *unquote(const char *s, const char quote);
347
8e12a6ae 348int wait_for_terminate(pid_t pid, siginfo_t *status);
2e78aa99 349
c4e2ceae
LP
350#define NULSTR_FOREACH(i, l) \
351 for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
352
1dccbe19
LP
353const char *ioprio_class_to_string(int i);
354int ioprio_class_from_string(const char *s);
355
356const char *sigchld_code_to_string(int i);
357int sigchld_code_from_string(const char *s);
358
359const char *log_facility_to_string(int i);
360int log_facility_from_string(const char *s);
361
362const char *log_level_to_string(int i);
363int log_level_from_string(const char *s);
364
365const char *sched_policy_to_string(int i);
366int sched_policy_from_string(const char *s);
367
368const char *rlimit_to_string(int i);
369int rlimit_from_string(const char *s);
370
4fd5948e
LP
371const char *ip_tos_to_string(int i);
372int ip_tos_from_string(const char *s);
373
2e22afe9
LP
374const char *signal_to_string(int i);
375int signal_from_string(const char *s);
376
60918275 377#endif