]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/util.h
build-sys: Angstrom support
[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>
00dc5d76 34#include <sys/stat.h>
3b63d2d3 35#include <dirent.h>
60918275 36
a838e6a1
LP
37#include "macro.h"
38
60918275
LP
39typedef uint64_t usec_t;
40
63983207 41typedef struct dual_timestamp {
871d7de4
LP
42 usec_t realtime;
43 usec_t monotonic;
63983207 44} dual_timestamp;
871d7de4 45
034c6ed7
LP
46#define MSEC_PER_SEC 1000ULL
47#define USEC_PER_SEC 1000000ULL
48#define USEC_PER_MSEC 1000ULL
49#define NSEC_PER_SEC 1000000000ULL
50#define NSEC_PER_MSEC 1000000ULL
60918275
LP
51#define NSEC_PER_USEC 1000ULL
52
24a6e4a4
LP
53#define USEC_PER_MINUTE (60ULL*USEC_PER_SEC)
54#define USEC_PER_HOUR (60ULL*USEC_PER_MINUTE)
55#define USEC_PER_DAY (24ULL*USEC_PER_HOUR)
56#define USEC_PER_WEEK (7ULL*USEC_PER_DAY)
584be568
LP
57#define USEC_PER_MONTH (2629800ULL*USEC_PER_SEC)
58#define USEC_PER_YEAR (31557600ULL*USEC_PER_SEC)
24a6e4a4 59
44d8db9e 60/* What is interpreted as whitespace? */
4a72ff34 61#define WHITESPACE " \t\n\r"
7072ced8 62#define NEWLINE "\n\r"
97c4a07d
LP
63#define QUOTES "\"\'"
64#define COMMENTS "#;\n"
44d8db9e 65
8b6c7120 66#define FORMAT_TIMESTAMP_MAX 64
584be568 67#define FORMAT_TIMESTAMP_PRETTY_MAX 256
871d7de4 68#define FORMAT_TIMESPAN_MAX 64
8b6c7120 69
61cbdc4b 70#define ANSI_HIGHLIGHT_ON "\x1B[1;31m"
2ee68f72 71#define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m"
61cbdc4b
LP
72#define ANSI_HIGHLIGHT_OFF "\x1B[0m"
73
60918275
LP
74usec_t now(clockid_t clock);
75
63983207 76dual_timestamp* dual_timestamp_get(dual_timestamp *ts);
871d7de4 77
b0c918b9
LP
78#define dual_timestamp_is_set(ts) ((ts)->realtime > 0)
79
60918275
LP
80usec_t timespec_load(const struct timespec *ts);
81struct timespec *timespec_store(struct timespec *ts, usec_t u);
82
83usec_t timeval_load(const struct timeval *tv);
84struct timeval *timeval_store(struct timeval *tv, usec_t u);
85
37f85e66 86size_t page_size(void);
87#define PAGE_ALIGN(l) ALIGN_TO((l), page_size())
88
60918275 89#define streq(a,b) (strcmp((a),(b)) == 0)
3846aeeb 90#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
60918275 91
e05797fb
LP
92bool streq_ptr(const char *a, const char *b);
93
60918275
LP
94#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
95
96#define new0(t, n) ((t*) calloc((n), sizeof(t)))
97
98#define malloc0(n) (calloc((n), 1))
99
100static inline const char* yes_no(bool b) {
101 return b ? "yes" : "no";
102}
103
104static inline const char* strempty(const char *s) {
105 return s ? s : "";
106}
107
108static inline const char* strnull(const char *s) {
109 return s ? s : "(null)";
110}
111
04fd6fe4
LP
112static inline const char *strna(const char *s) {
113 return s ? s : "n/a";
114}
115
116static inline bool is_path_absolute(const char *p) {
117 return *p == '/';
118}
119
9beb3f4d
LP
120static inline bool isempty(const char *p) {
121 return !p || !p[0];
122}
123
60918275
LP
124bool endswith(const char *s, const char *postfix);
125bool startswith(const char *s, const char *prefix);
3177a7fa 126bool startswith_no_case(const char *s, const char *prefix);
60918275 127
79d6d816
LP
128bool first_word(const char *s, const char *word);
129
42f4e3c4 130int close_nointr(int fd);
85f136b5 131void close_nointr_nofail(int fd);
5b6319dc 132void close_many(const int fds[], unsigned n_fd);
60918275 133
85261803 134int parse_boolean(const char *v);
24a6e4a4 135int parse_usec(const char *t, usec_t *usec);
3ba686c1 136int parse_pid(const char *s, pid_t* ret_pid);
85261803
LP
137
138int safe_atou(const char *s, unsigned *ret_u);
139int safe_atoi(const char *s, int *ret_i);
140
8f75a603
LP
141int safe_atollu(const char *s, unsigned long long *ret_u);
142int safe_atolli(const char *s, long long int *ret_i);
143
144#if __WORDSIZE == 32
145static inline int safe_atolu(const char *s, unsigned long *ret_u) {
146 assert_cc(sizeof(unsigned long) == sizeof(unsigned));
147 return safe_atou(s, (unsigned*) ret_u);
148}
149static inline int safe_atoli(const char *s, long int *ret_u) {
150 assert_cc(sizeof(long int) == sizeof(int));
151 return safe_atoi(s, (int*) ret_u);
152}
153#else
154static inline int safe_atolu(const char *s, unsigned long *ret_u) {
155 assert_cc(sizeof(unsigned long) == sizeof(unsigned long long));
156 return safe_atollu(s, (unsigned long long*) ret_u);
157}
158static inline int safe_atoli(const char *s, long int *ret_u) {
159 assert_cc(sizeof(long int) == sizeof(long long int));
160 return safe_atolli(s, (long long int*) ret_u);
161}
162#endif
163
a838e6a1
LP
164static inline int safe_atou32(const char *s, uint32_t *ret_u) {
165 assert_cc(sizeof(uint32_t) == sizeof(unsigned));
166 return safe_atou(s, (unsigned*) ret_u);
167}
168
8f75a603 169static inline int safe_atoi32(const char *s, int32_t *ret_i) {
a838e6a1 170 assert_cc(sizeof(int32_t) == sizeof(int));
8f75a603 171 return safe_atoi(s, (int*) ret_i);
a838e6a1
LP
172}
173
8f75a603
LP
174static inline int safe_atou64(const char *s, uint64_t *ret_u) {
175 assert_cc(sizeof(uint64_t) == sizeof(unsigned long long));
176 return safe_atollu(s, (unsigned long long*) ret_u);
177}
034c6ed7 178
8f75a603
LP
179static inline int safe_atoi64(const char *s, int64_t *ret_i) {
180 assert_cc(sizeof(int64_t) == sizeof(long long int));
181 return safe_atolli(s, (long long int*) ret_i);
182}
034c6ed7 183
65d2ebdc 184char *split(const char *c, size_t *l, const char *separator, char **state);
034c6ed7 185char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 186
034c6ed7 187#define FOREACH_WORD(word, length, s, state) \
f62c0e4f 188 for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
65d2ebdc
LP
189
190#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
f62c0e4f 191 for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
a41e8209 192
034c6ed7 193#define FOREACH_WORD_QUOTED(word, length, s, state) \
f62c0e4f 194 for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
034c6ed7 195
65d2ebdc 196char **split_path_and_make_absolute(const char *p);
82919e3d 197
034c6ed7 198pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
7640a5de 199int get_starttime_of_pid(pid_t pid, unsigned long long *st);
034c6ed7
LP
200
201int write_one_line_file(const char *fn, const char *line);
202int read_one_line_file(const char *fn, char **line);
97c4a07d
LP
203int read_full_file(const char *fn, char **contents);
204
c899f8c6 205int parse_env_file(const char *fname, const char *separator, ...) _sentinel_;
8c7be95e 206int load_env_file(const char *fname, char ***l);
7640a5de 207int write_env_file(const char *fname, char **l);
034c6ed7 208
44d8db9e 209char *strappend(const char *s, const char *suffix);
fab56fc5
LP
210char *strnappend(const char *s, const char *suffix, size_t length);
211
212char *replace_env(const char *format, char **env);
213char **replace_env_argv(char **argv, char **env);
44d8db9e 214
87f0e418 215int readlink_malloc(const char *p, char **r);
2c7108c4 216int readlink_and_make_absolute(const char *p, char **r);
87f0e418
LP
217
218char *file_name_from_path(const char *p);
0301abf4
LP
219bool is_path(const char *p);
220
221bool path_is_absolute(const char *p);
222char *path_make_absolute(const char *p, const char *prefix);
65d2ebdc 223char *path_make_absolute_cwd(const char *p);
c3f6d675 224
65d2ebdc 225char **strv_path_make_absolute_cwd(char **l);
c3f6d675 226char **strv_path_canonicalize(char **l);
a9dd2082 227char **strv_path_remove_empty(char **l);
87f0e418 228
2a987ee8
LP
229int reset_all_signal_handlers(void);
230
4a72ff34 231char *strstrip(char *s);
ee9b5e01 232char *delete_chars(char *s, const char *bad);
7072ced8 233char *truncate_nl(char *s);
ee9b5e01 234
4a72ff34 235char *file_in_same_dir(const char *path, const char *filename);
8c6db833 236int safe_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid);
a9f5d454 237int mkdir_parents(const char *path, mode_t mode);
bbd67135 238int mkdir_p(const char *path, mode_t mode);
4a72ff34 239
35d2e7ec
LP
240int parent_of_path(const char *path, char **parent);
241
c32dd69b
LP
242int rmdir_parents(const char *path, const char *stop);
243
7072ced8 244int get_process_name(pid_t pid, char **name);
c59760ee 245int get_process_cmdline(pid_t pid, size_t max_length, char **line);
7072ced8 246
fb624d04 247char hexchar(int x);
4fe88d28
LP
248int unhexchar(char c);
249char octchar(int x);
250int unoctchar(char c);
5af98f82
LP
251char decchar(int x);
252int undecchar(char c);
4fe88d28
LP
253
254char *cescape(const char *s);
255char *cunescape(const char *s);
6febfd0d
LP
256char *cunescape_length(const char *s, size_t length);
257
258char *xescape(const char *s, const char *bad);
259
260char *bus_path_escape(const char *s);
261char *bus_path_unescape(const char *s);
4fe88d28
LP
262
263char *path_kill_slashes(char *path);
264
265bool path_startswith(const char *path, const char *prefix);
15ae422b 266bool path_equal(const char *a, const char *b);
4fe88d28
LP
267
268char *ascii_strlower(char *path);
269
c85dc17b
LP
270bool ignore_file(const char *filename);
271
db12775d
LP
272bool chars_intersect(const char *a, const char *b);
273
8b6c7120 274char *format_timestamp(char *buf, size_t l, usec_t t);
584be568 275char *format_timestamp_pretty(char *buf, size_t l, usec_t t);
871d7de4 276char *format_timespan(char *buf, size_t l, usec_t t);
8b6c7120 277
843d2643 278int make_stdio(int fd);
ade509ce 279int make_null_stdio(void);
843d2643 280
d3782d60
LP
281unsigned long long random_ull(void);
282
1dccbe19
LP
283#define DEFINE_STRING_TABLE_LOOKUP(name,type) \
284 const char *name##_to_string(type i) { \
285 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
286 return NULL; \
287 return name##_table[i]; \
288 } \
289 type name##_from_string(const char *s) { \
290 type i; \
a7610064 291 unsigned u = 0; \
1dccbe19
LP
292 assert(s); \
293 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \
4fd5948e
LP
294 if (name##_table[i] && \
295 streq(name##_table[i], s)) \
1dccbe19 296 return i; \
d3725859
LP
297 if (safe_atou(s, &u) >= 0 && \
298 u < ELEMENTSOF(name##_table)) \
299 return (type) u; \
1dccbe19
LP
300 return (type) -1; \
301 } \
302 struct __useless_struct_to_allow_trailing_semicolon__
303
304
3a0ecb08
LP
305int fd_nonblock(int fd, bool nonblock);
306int fd_cloexec(int fd, bool cloexec);
307
a0d40ac5
LP
308int close_all_fds(const int except[], unsigned n_except);
309
42856c10
LP
310bool fstype_is_network(const char *fstype);
311
601f6a1e
LP
312int chvt(int vt);
313
80876c20
LP
314int read_one_char(FILE *f, char *ret, bool *need_nl);
315int ask(char *ret, const char *replies, const char *text, ...);
316
317int reset_terminal(int fd);
318int open_terminal(const char *name, int mode);
21de3988 319int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm);
80876c20
LP
320int release_terminal(void);
321
322int flush_fd(int fd);
323
9a34ec5f
LP
324int ignore_signals(int sig, ...);
325int default_signals(int sig, ...);
326int sigaction_many(const struct sigaction *sa, ...);
a337c6fc 327
8d567588
LP
328int close_pipe(int p[]);
329
eb22ac37
LP
330ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
331ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
8d567588
LP
332
333int path_is_mount_point(const char *path);
334
8407a5d0
LP
335bool is_device_path(const char *path);
336
01f78473
LP
337int dir_is_empty(const char *path);
338
5b6319dc 339void rename_process(const char name[8]);
2d368c14 340
7d793605
LP
341void sigset_add_many(sigset_t *ss, ...);
342
ef2f1067
LP
343char* gethostname_malloc(void);
344char* getlogname_malloc(void);
fc116c6a
LP
345
346int getttyname_malloc(int fd, char **r);
347int getttyname_harder(int fd, char **r);
348
349int get_ctty_devnr(dev_t *d);
46824d0e 350int get_ctty(char **r, dev_t *_devnr);
8c6db833
LP
351
352int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
353
354int rm_rf(const char *path, bool only_dirs, bool delete_root);
ef2f1067 355
82c121a4
LP
356cpu_set_t* cpu_set_malloc(unsigned *ncpus);
357
9e58ff9c 358void status_vprintf(const char *format, va_list ap);
c846ff47
LP
359void status_printf(const char *format, ...);
360void status_welcome(void);
9e58ff9c 361
fa776d8e
LP
362int columns(void);
363
b4f10a5e
LP
364int running_in_chroot(void);
365
8fe914ec
LP
366char *ellipsize(const char *s, unsigned length, unsigned percent);
367
f6144808
LP
368int touch(const char *path);
369
97c4a07d 370char *unquote(const char *s, const char *quotes);
5f7c426e 371char *normalize_env_assignment(const char *s);
11ce3427 372
8e12a6ae 373int wait_for_terminate(pid_t pid, siginfo_t *status);
97c4a07d 374int wait_for_terminate_and_warn(const char *name, pid_t pid);
2e78aa99 375
3c14d26c
LP
376_noreturn_ void freeze(void);
377
00dc5d76
LP
378bool null_or_empty(struct stat *st);
379
a247755d 380DIR *xopendirat(int dirfd, const char *name, int flags);
3b63d2d3 381
10717a1a 382void dual_timestamp_serialize(FILE *f, const char *name, dual_timestamp *t);
799fd0fd 383void dual_timestamp_deserialize(const char *value, dual_timestamp *t);
10717a1a 384
e23a0ce8
LP
385char *fstab_node_to_udev_node(const char *p);
386
e9ddabc2
LP
387void filter_environ(const char *prefix);
388
f212ac12 389bool tty_is_vc(const char *tty);
e3aa71c3
LP
390const char *default_term_for_tty(const char *tty);
391
07faed4f 392int detect_vm(const char **id);
ef2df9f4 393int detect_container(const char **id);
07faed4f 394int detect_virtualization(const char **id);
46a08e38 395
83cc030f
LP
396void execute_directory(const char *directory, DIR *_d, char *argv[]);
397
430c18ed
LP
398int kill_and_sigcont(pid_t pid, int sig);
399
05feefe0
LP
400bool nulstr_contains(const char*nulstr, const char *needle);
401
6faa1114
LP
402bool plymouth_running(void);
403
7c3b203c
LP
404void parse_syslog_priority(char **p, int *priority);
405
ac123445
LP
406int have_effective_cap(int value);
407
9beb3f4d
LP
408bool hostname_is_valid(const char *s);
409char* hostname_cleanup(char *s);
410
411char* strshorten(char *s, size_t l);
412
e23a0ce8 413#define NULSTR_FOREACH(i, l) \
c4e2ceae
LP
414 for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
415
5c0532d1
LP
416#define NULSTR_FOREACH_PAIR(i, j, l) \
417 for ((i) = (l), (j) = strchr((i), 0)+1; (i) && *(i); (i) = strchr((j), 0)+1, (j) = *(i) ? strchr((i), 0)+1 : (i))
418
1dccbe19
LP
419const char *ioprio_class_to_string(int i);
420int ioprio_class_from_string(const char *s);
421
422const char *sigchld_code_to_string(int i);
423int sigchld_code_from_string(const char *s);
424
7d76f312
LP
425const char *log_facility_unshifted_to_string(int i);
426int log_facility_unshifted_from_string(const char *s);
1dccbe19
LP
427
428const char *log_level_to_string(int i);
429int log_level_from_string(const char *s);
430
431const char *sched_policy_to_string(int i);
432int sched_policy_from_string(const char *s);
433
434const char *rlimit_to_string(int i);
435int rlimit_from_string(const char *s);
436
4fd5948e
LP
437const char *ip_tos_to_string(int i);
438int ip_tos_from_string(const char *s);
439
2e22afe9
LP
440const char *signal_to_string(int i);
441int signal_from_string(const char *s);
442
8a0867d6
LP
443int signal_from_string_try_harder(const char *s);
444
44143309 445int conf_files_list(char ***strv, const char *suffix, const char *dir, ...);
60918275 446#endif