]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/util.h
job: only jobs on the runqueue can be run
[thirdparty/systemd.git] / src / shared / 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
5430f7f2
LP
12 under the terms of the GNU Lesser General Public License as published by
13 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
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
5430f7f2 19 Lesser General Public License for more details.
a7334b09 20
5430f7f2 21 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
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>
ec2002f8 28#include <stdarg.h>
60918275 29#include <stdbool.h>
5cb5a6ff 30#include <stdlib.h>
80876c20 31#include <stdio.h>
9a34ec5f 32#include <signal.h>
82c121a4 33#include <sched.h>
8f75a603 34#include <limits.h>
00dc5d76 35#include <sys/stat.h>
3b63d2d3 36#include <dirent.h>
68faf98c 37#include <sys/resource.h>
60918275 38
a838e6a1
LP
39#include "macro.h"
40
60918275
LP
41typedef uint64_t usec_t;
42
63983207 43typedef struct dual_timestamp {
871d7de4
LP
44 usec_t realtime;
45 usec_t monotonic;
63983207 46} dual_timestamp;
871d7de4 47
034c6ed7
LP
48#define MSEC_PER_SEC 1000ULL
49#define USEC_PER_SEC 1000000ULL
50#define USEC_PER_MSEC 1000ULL
51#define NSEC_PER_SEC 1000000000ULL
52#define NSEC_PER_MSEC 1000000ULL
60918275
LP
53#define NSEC_PER_USEC 1000ULL
54
24a6e4a4
LP
55#define USEC_PER_MINUTE (60ULL*USEC_PER_SEC)
56#define USEC_PER_HOUR (60ULL*USEC_PER_MINUTE)
57#define USEC_PER_DAY (24ULL*USEC_PER_HOUR)
58#define USEC_PER_WEEK (7ULL*USEC_PER_DAY)
584be568
LP
59#define USEC_PER_MONTH (2629800ULL*USEC_PER_SEC)
60#define USEC_PER_YEAR (31557600ULL*USEC_PER_SEC)
24a6e4a4 61
44d8db9e 62/* What is interpreted as whitespace? */
4a72ff34 63#define WHITESPACE " \t\n\r"
7072ced8 64#define NEWLINE "\n\r"
97c4a07d
LP
65#define QUOTES "\"\'"
66#define COMMENTS "#;\n"
44d8db9e 67
8b6c7120 68#define FORMAT_TIMESTAMP_MAX 64
584be568 69#define FORMAT_TIMESTAMP_PRETTY_MAX 256
871d7de4 70#define FORMAT_TIMESPAN_MAX 64
a7bc2c2a 71#define FORMAT_BYTES_MAX 8
8b6c7120 72
c1072ea0 73#define ANSI_HIGHLIGHT_ON "\x1B[1;39m"
281605bf 74#define ANSI_HIGHLIGHT_RED_ON "\x1B[1;31m"
2ee68f72 75#define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m"
61cbdc4b
LP
76#define ANSI_HIGHLIGHT_OFF "\x1B[0m"
77
60918275
LP
78usec_t now(clockid_t clock);
79
63983207 80dual_timestamp* dual_timestamp_get(dual_timestamp *ts);
a185c5aa 81dual_timestamp* dual_timestamp_from_realtime(dual_timestamp *ts, usec_t u);
871d7de4 82
b0c918b9
LP
83#define dual_timestamp_is_set(ts) ((ts)->realtime > 0)
84
60918275
LP
85usec_t timespec_load(const struct timespec *ts);
86struct timespec *timespec_store(struct timespec *ts, usec_t u);
87
88usec_t timeval_load(const struct timeval *tv);
89struct timeval *timeval_store(struct timeval *tv, usec_t u);
90
37f85e66 91size_t page_size(void);
92#define PAGE_ALIGN(l) ALIGN_TO((l), page_size())
93
60918275 94#define streq(a,b) (strcmp((a),(b)) == 0)
3846aeeb 95#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
60918275 96
e05797fb
LP
97bool streq_ptr(const char *a, const char *b);
98
60918275
LP
99#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
100
101#define new0(t, n) ((t*) calloc((n), sizeof(t)))
102
0f0dbc46
LP
103#define newa(t, n) ((t*) alloca(sizeof(t)*(n)))
104
888c7102
LP
105#define newdup(t, p, n) ((t*) memdup(p, sizeof(t)*(n))
106
60918275
LP
107#define malloc0(n) (calloc((n), 1))
108
109static inline const char* yes_no(bool b) {
110 return b ? "yes" : "no";
111}
112
113static inline const char* strempty(const char *s) {
114 return s ? s : "";
115}
116
117static inline const char* strnull(const char *s) {
118 return s ? s : "(null)";
119}
120
04fd6fe4
LP
121static inline const char *strna(const char *s) {
122 return s ? s : "n/a";
123}
124
9beb3f4d
LP
125static inline bool isempty(const char *p) {
126 return !p || !p[0];
127}
128
60918275
LP
129bool endswith(const char *s, const char *postfix);
130bool startswith(const char *s, const char *prefix);
3177a7fa 131bool startswith_no_case(const char *s, const char *prefix);
60918275 132
79d6d816
LP
133bool first_word(const char *s, const char *word);
134
42f4e3c4 135int close_nointr(int fd);
85f136b5 136void close_nointr_nofail(int fd);
5b6319dc 137void close_many(const int fds[], unsigned n_fd);
60918275 138
85261803 139int parse_boolean(const char *v);
24a6e4a4 140int parse_usec(const char *t, usec_t *usec);
ab1f0633 141int parse_bytes(const char *t, off_t *bytes);
3ba686c1 142int parse_pid(const char *s, pid_t* ret_pid);
034a2a52
LP
143int parse_uid(const char *s, uid_t* ret_uid);
144#define parse_gid(s, ret_uid) parse_uid(s, ret_uid)
85261803
LP
145
146int safe_atou(const char *s, unsigned *ret_u);
147int safe_atoi(const char *s, int *ret_i);
148
8f75a603
LP
149int safe_atollu(const char *s, unsigned long long *ret_u);
150int safe_atolli(const char *s, long long int *ret_i);
151
152#if __WORDSIZE == 32
153static inline int safe_atolu(const char *s, unsigned long *ret_u) {
154 assert_cc(sizeof(unsigned long) == sizeof(unsigned));
155 return safe_atou(s, (unsigned*) ret_u);
156}
157static inline int safe_atoli(const char *s, long int *ret_u) {
158 assert_cc(sizeof(long int) == sizeof(int));
159 return safe_atoi(s, (int*) ret_u);
160}
161#else
162static inline int safe_atolu(const char *s, unsigned long *ret_u) {
163 assert_cc(sizeof(unsigned long) == sizeof(unsigned long long));
164 return safe_atollu(s, (unsigned long long*) ret_u);
165}
166static inline int safe_atoli(const char *s, long int *ret_u) {
167 assert_cc(sizeof(long int) == sizeof(long long int));
168 return safe_atolli(s, (long long int*) ret_u);
169}
170#endif
171
a838e6a1
LP
172static inline int safe_atou32(const char *s, uint32_t *ret_u) {
173 assert_cc(sizeof(uint32_t) == sizeof(unsigned));
174 return safe_atou(s, (unsigned*) ret_u);
175}
176
8f75a603 177static inline int safe_atoi32(const char *s, int32_t *ret_i) {
a838e6a1 178 assert_cc(sizeof(int32_t) == sizeof(int));
8f75a603 179 return safe_atoi(s, (int*) ret_i);
a838e6a1
LP
180}
181
8f75a603
LP
182static inline int safe_atou64(const char *s, uint64_t *ret_u) {
183 assert_cc(sizeof(uint64_t) == sizeof(unsigned long long));
184 return safe_atollu(s, (unsigned long long*) ret_u);
185}
034c6ed7 186
8f75a603
LP
187static inline int safe_atoi64(const char *s, int64_t *ret_i) {
188 assert_cc(sizeof(int64_t) == sizeof(long long int));
189 return safe_atolli(s, (long long int*) ret_i);
190}
034c6ed7 191
65d2ebdc 192char *split(const char *c, size_t *l, const char *separator, char **state);
034c6ed7 193char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 194
034c6ed7 195#define FOREACH_WORD(word, length, s, state) \
f62c0e4f 196 for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
65d2ebdc
LP
197
198#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
f62c0e4f 199 for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
a41e8209 200
034c6ed7 201#define FOREACH_WORD_QUOTED(word, length, s, state) \
f62c0e4f 202 for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
034c6ed7 203
034c6ed7 204pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
7640a5de 205int get_starttime_of_pid(pid_t pid, unsigned long long *st);
034c6ed7
LP
206
207int write_one_line_file(const char *fn, const char *line);
34ca941c 208int write_one_line_file_atomic(const char *fn, const char *line);
034c6ed7 209int read_one_line_file(const char *fn, char **line);
34ca941c 210int read_full_file(const char *fn, char **contents, size_t *size);
97c4a07d 211
c899f8c6 212int parse_env_file(const char *fname, const char *separator, ...) _sentinel_;
8c7be95e 213int load_env_file(const char *fname, char ***l);
7640a5de 214int write_env_file(const char *fname, char **l);
034c6ed7 215
44d8db9e 216char *strappend(const char *s, const char *suffix);
fab56fc5
LP
217char *strnappend(const char *s, const char *suffix, size_t length);
218
219char *replace_env(const char *format, char **env);
220char **replace_env_argv(char **argv, char **env);
44d8db9e 221
87f0e418 222int readlink_malloc(const char *p, char **r);
2c7108c4 223int readlink_and_make_absolute(const char *p, char **r);
83096483 224int readlink_and_canonicalize(const char *p, char **r);
87f0e418 225
2a987ee8
LP
226int reset_all_signal_handlers(void);
227
4a72ff34 228char *strstrip(char *s);
ee9b5e01 229char *delete_chars(char *s, const char *bad);
7072ced8 230char *truncate_nl(char *s);
ee9b5e01 231
4a72ff34
LP
232char *file_in_same_dir(const char *path, const char *filename);
233
c32dd69b
LP
234int rmdir_parents(const char *path, const char *stop);
235
87d2c1ff
LP
236int get_process_comm(pid_t pid, char **name);
237int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
238int get_process_exe(pid_t pid, char **name);
7e4ab3c5 239int get_process_uid(pid_t pid, uid_t *uid);
7072ced8 240
fb624d04 241char hexchar(int x);
4fe88d28
LP
242int unhexchar(char c);
243char octchar(int x);
244int unoctchar(char c);
5af98f82
LP
245char decchar(int x);
246int undecchar(char c);
4fe88d28
LP
247
248char *cescape(const char *s);
249char *cunescape(const char *s);
6febfd0d
LP
250char *cunescape_length(const char *s, size_t length);
251
252char *xescape(const char *s, const char *bad);
253
254char *bus_path_escape(const char *s);
255char *bus_path_unescape(const char *s);
4fe88d28 256
4fe88d28
LP
257char *ascii_strlower(char *path);
258
87d2c1ff
LP
259bool dirent_is_file(const struct dirent *de);
260bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix);
261
c85dc17b
LP
262bool ignore_file(const char *filename);
263
db12775d
LP
264bool chars_intersect(const char *a, const char *b);
265
8b6c7120 266char *format_timestamp(char *buf, size_t l, usec_t t);
584be568 267char *format_timestamp_pretty(char *buf, size_t l, usec_t t);
871d7de4 268char *format_timespan(char *buf, size_t l, usec_t t);
8b6c7120 269
843d2643 270int make_stdio(int fd);
ade509ce 271int make_null_stdio(void);
843d2643 272
d3782d60
LP
273unsigned long long random_ull(void);
274
4e240ab0
MS
275#define __DEFINE_STRING_TABLE_LOOKUP(name,type,scope) \
276 scope const char *name##_to_string(type i) { \
1dccbe19
LP
277 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
278 return NULL; \
279 return name##_table[i]; \
280 } \
4e240ab0 281 scope type name##_from_string(const char *s) { \
1dccbe19 282 type i; \
a7610064 283 unsigned u = 0; \
1dccbe19
LP
284 assert(s); \
285 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \
4fd5948e
LP
286 if (name##_table[i] && \
287 streq(name##_table[i], s)) \
1dccbe19 288 return i; \
d3725859
LP
289 if (safe_atou(s, &u) >= 0 && \
290 u < ELEMENTSOF(name##_table)) \
291 return (type) u; \
1dccbe19
LP
292 return (type) -1; \
293 } \
294 struct __useless_struct_to_allow_trailing_semicolon__
295
4e240ab0
MS
296#define DEFINE_STRING_TABLE_LOOKUP(name,type) __DEFINE_STRING_TABLE_LOOKUP(name,type,)
297#define DEFINE_PRIVATE_STRING_TABLE_LOOKUP(name,type) __DEFINE_STRING_TABLE_LOOKUP(name,type,static)
1dccbe19 298
3a0ecb08
LP
299int fd_nonblock(int fd, bool nonblock);
300int fd_cloexec(int fd, bool cloexec);
301
a0d40ac5
LP
302int close_all_fds(const int except[], unsigned n_except);
303
42856c10
LP
304bool fstype_is_network(const char *fstype);
305
601f6a1e
LP
306int chvt(int vt);
307
8f2d43a0 308int read_one_char(FILE *f, char *ret, usec_t timeout, bool *need_nl);
80876c20
LP
309int ask(char *ret, const char *replies, const char *text, ...);
310
512947d4 311int reset_terminal_fd(int fd, bool switch_to_text);
6ea832a2
LP
312int reset_terminal(const char *name);
313
80876c20 314int open_terminal(const char *name, int mode);
21de3988 315int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm);
80876c20
LP
316int release_terminal(void);
317
318int flush_fd(int fd);
319
9a34ec5f
LP
320int ignore_signals(int sig, ...);
321int default_signals(int sig, ...);
322int sigaction_many(const struct sigaction *sa, ...);
a337c6fc 323
8d567588 324int close_pipe(int p[]);
5a3ab509 325int fopen_temporary(const char *path, FILE **_f, char **_temp_path);
8d567588 326
eb22ac37
LP
327ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
328ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
8d567588 329
8407a5d0
LP
330bool is_device_path(const char *path);
331
01f78473
LP
332int dir_is_empty(const char *path);
333
5b6319dc 334void rename_process(const char name[8]);
2d368c14 335
7d793605
LP
336void sigset_add_many(sigset_t *ss, ...);
337
ef2f1067
LP
338char* gethostname_malloc(void);
339char* getlogname_malloc(void);
fc116c6a
LP
340
341int getttyname_malloc(int fd, char **r);
342int getttyname_harder(int fd, char **r);
343
4d6d6518
LP
344int get_ctty_devnr(pid_t pid, dev_t *d);
345int get_ctty(pid_t, dev_t *_devnr, char **r);
8c6db833
LP
346
347int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
f4b47811 348int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid);
8c6db833 349
ad293f5a 350int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky);
ef2f1067 351
1325aa42
LP
352int pipe_eof(int fd);
353
82c121a4
LP
354cpu_set_t* cpu_set_malloc(unsigned *ncpus);
355
67e5cc4f
LP
356void status_vprintf(const char *status, bool ellipse, const char *format, va_list ap);
357void status_printf(const char *status, bool ellipse, const char *format, ...);
c846ff47 358void status_welcome(void);
9e58ff9c 359
81beb750 360int fd_columns(int fd);
72f59706 361unsigned columns(void);
fa776d8e 362
8f2d43a0
LP
363int fd_lines(int fd);
364unsigned lines(void);
365
b4f10a5e
LP
366int running_in_chroot(void);
367
72f59706
LP
368char *ellipsize(const char *s, size_t length, unsigned percent);
369char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent);
8fe914ec 370
f6144808
LP
371int touch(const char *path);
372
97c4a07d 373char *unquote(const char *s, const char *quotes);
5f7c426e 374char *normalize_env_assignment(const char *s);
11ce3427 375
8e12a6ae 376int wait_for_terminate(pid_t pid, siginfo_t *status);
97c4a07d 377int wait_for_terminate_and_warn(const char *name, pid_t pid);
2e78aa99 378
3c14d26c
LP
379_noreturn_ void freeze(void);
380
00dc5d76 381bool null_or_empty(struct stat *st);
83096483 382int null_or_empty_path(const char *fn);
00dc5d76 383
a247755d 384DIR *xopendirat(int dirfd, const char *name, int flags);
3b63d2d3 385
10717a1a 386void dual_timestamp_serialize(FILE *f, const char *name, dual_timestamp *t);
799fd0fd 387void dual_timestamp_deserialize(const char *value, dual_timestamp *t);
10717a1a 388
e23a0ce8
LP
389char *fstab_node_to_udev_node(const char *p);
390
f212ac12 391bool tty_is_vc(const char *tty);
3043935f 392bool tty_is_vc_resolve(const char *tty);
d1122ad5 393bool tty_is_console(const char *tty);
98a28fef 394int vtnr_from_tty(const char *tty);
e3aa71c3
LP
395const char *default_term_for_tty(const char *tty);
396
83cc030f
LP
397void execute_directory(const char *directory, DIR *_d, char *argv[]);
398
430c18ed
LP
399int kill_and_sigcont(pid_t pid, int sig);
400
05feefe0
LP
401bool nulstr_contains(const char*nulstr, const char *needle);
402
6faa1114
LP
403bool plymouth_running(void);
404
7c3b203c 405void parse_syslog_priority(char **p, int *priority);
87d2c1ff
LP
406void skip_syslog_pid(char **buf);
407void skip_syslog_date(char **buf);
7c3b203c 408
9beb3f4d
LP
409bool hostname_is_valid(const char *s);
410char* hostname_cleanup(char *s);
411
412char* strshorten(char *s, size_t l);
413
6ea832a2
LP
414int terminal_vhangup_fd(int fd);
415int terminal_vhangup(const char *name);
416
417int vt_disallocate(const char *name);
418
34ca941c
LP
419int copy_file(const char *from, const char *to);
420int symlink_or_copy(const char *from, const char *to);
421int symlink_or_copy_atomic(const char *from, const char *to);
422
423int fchmod_umask(int fd, mode_t mode);
424
4d6d6518
LP
425bool display_is_local(const char *display);
426int socket_from_display(const char *display, char **path);
427
1cccf435 428int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home);
4b67834e 429int get_group_creds(const char **groupname, gid_t *gid);
1cccf435 430
43673799
LP
431int in_group(const char *name);
432
8092a428
LP
433int glob_exists(const char *path);
434
83096483
LP
435int dirent_ensure_type(DIR *d, struct dirent *de);
436
437int in_search_path(const char *path, char **search);
034a2a52 438int get_files_in_directory(const char *path, char ***list);
83096483 439
911a4828
LP
440char *join(const char *x, ...) _sentinel_;
441
b636465b
LP
442bool is_main_thread(void);
443
ab1f0633
LP
444bool in_charset(const char *s, const char* charset);
445
94959f0f
LP
446int block_get_whole_disk(dev_t d, dev_t *ret);
447
8d53b453 448int file_is_priv_sticky(const char *p);
ad293f5a 449
fb9de93d
LP
450int strdup_or_null(const char *a, char **b);
451
e23a0ce8 452#define NULSTR_FOREACH(i, l) \
c4e2ceae
LP
453 for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
454
5c0532d1
LP
455#define NULSTR_FOREACH_PAIR(i, j, l) \
456 for ((i) = (l), (j) = strchr((i), 0)+1; (i) && *(i); (i) = strchr((j), 0)+1, (j) = *(i) ? strchr((i), 0)+1 : (i))
457
1dccbe19
LP
458const char *ioprio_class_to_string(int i);
459int ioprio_class_from_string(const char *s);
460
461const char *sigchld_code_to_string(int i);
462int sigchld_code_from_string(const char *s);
463
7d76f312
LP
464const char *log_facility_unshifted_to_string(int i);
465int log_facility_unshifted_from_string(const char *s);
1dccbe19
LP
466
467const char *log_level_to_string(int i);
468int log_level_from_string(const char *s);
469
470const char *sched_policy_to_string(int i);
471int sched_policy_from_string(const char *s);
472
473const char *rlimit_to_string(int i);
474int rlimit_from_string(const char *s);
475
4fd5948e
LP
476const char *ip_tos_to_string(int i);
477int ip_tos_from_string(const char *s);
478
2e22afe9
LP
479const char *signal_to_string(int i);
480int signal_from_string(const char *s);
481
8a0867d6
LP
482int signal_from_string_try_harder(const char *s);
483
9a0e6896
LP
484extern int saved_argc;
485extern char **saved_argv;
486
65457142
FC
487bool kexec_loaded(void);
488
87d2c1ff
LP
489int prot_from_flags(int flags);
490
babfc091
LP
491char *format_bytes(char *buf, size_t l, off_t t);
492
8f2d43a0 493int fd_wait_for_event(int fd, int event, usec_t timeout);
df50185b 494
55d7bfc1
LP
495void* memdup(const void *p, size_t l);
496
1e5678d0
LP
497int is_kernel_thread(pid_t pid);
498
bb99a35a
LP
499int fd_inc_sndbuf(int fd, size_t n);
500int fd_inc_rcvbuf(int fd, size_t n);
6bb92a16 501
9bdc770c 502int fork_agent(pid_t *pid, const int except[], unsigned n_except, const char *path, ...);
6bb92a16 503
68faf98c
LP
504int setrlimit_closest(int resource, const struct rlimit *rlim);
505
ab94af92
LP
506int getenv_for_pid(pid_t pid, const char *field, char **_value);
507
d889a206
LP
508int can_sleep(const char *type);
509
60918275 510#endif