]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/util.h
Merge pull request #1639 from alkino/master
[thirdparty/systemd.git] / src / basic / util.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
c2f1db8f 3#pragma once
60918275 4
a7334b09
LP
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
a7334b09 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
31885cd5 24#include <alloca.h>
f6c2284a 25#include <dirent.h>
370c860f 26#include <fcntl.h>
60918275 27#include <inttypes.h>
f6c2284a
LP
28#include <limits.h>
29#include <locale.h>
30#include <mntent.h>
ec2002f8 31#include <stdarg.h>
60918275 32#include <stdbool.h>
f6c2284a 33#include <stddef.h>
80876c20 34#include <stdio.h>
f6c2284a
LP
35#include <stdlib.h>
36#include <sys/inotify.h>
2c35d880 37#include <sys/socket.h>
00dc5d76 38#include <sys/stat.h>
c6878637 39#include <sys/statfs.h>
f6c2284a
LP
40#include <sys/types.h>
41#include <time.h>
42#include <unistd.h>
60918275 43
f6c2284a 44#include "formats-util.h"
a838e6a1 45#include "macro.h"
dced1557 46#include "missing.h"
9a98c7a1 47#include "time-util.h"
871d7de4 48
44d8db9e 49/* What is interpreted as whitespace? */
4a72ff34 50#define WHITESPACE " \t\n\r"
e3e0314b
ZJS
51#define NEWLINE "\n\r"
52#define QUOTES "\"\'"
53#define COMMENTS "#;"
54#define GLOB_CHARS "*?["
44d8db9e 55
0ce5a806
MM
56/* What characters are special in the shell? */
57/* must be escaped outside and inside double-quotes */
58#define SHELL_NEED_ESCAPE "\"\\`$"
59/* can be escaped or double-quoted */
60#define SHELL_NEED_QUOTES SHELL_NEED_ESCAPE GLOB_CHARS "'()<>|&;"
61
a7bc2c2a 62#define FORMAT_BYTES_MAX 8
8b6c7120 63
2e857429 64size_t page_size(void) _pure_;
37f85e66 65#define PAGE_ALIGN(l) ALIGN_TO((l), page_size())
66
60918275 67#define streq(a,b) (strcmp((a),(b)) == 0)
3846aeeb 68#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
b43d1d01
TA
69#define strcaseeq(a,b) (strcasecmp((a),(b)) == 0)
70#define strncaseeq(a, b, n) (strncasecmp((a), (b), (n)) == 0)
60918275 71
44a6b1b6 72bool streq_ptr(const char *a, const char *b) _pure_;
c030a850 73int strcmp_ptr(const char *a, const char *b) _pure_;
e05797fb 74
4b8772bf 75#define new(t, n) ((t*) malloc_multiply(sizeof(t), (n)))
60918275
LP
76
77#define new0(t, n) ((t*) calloc((n), sizeof(t)))
78
0f0dbc46
LP
79#define newa(t, n) ((t*) alloca(sizeof(t)*(n)))
80
7629889c
LP
81#define newa0(t, n) ((t*) alloca0(sizeof(t)*(n)))
82
4b8772bf 83#define newdup(t, p, n) ((t*) memdup_multiply(p, sizeof(t), (n)))
888c7102 84
f80bb1f7 85#define malloc0(n) (calloc(1, (n)))
60918275 86
97b11eed
DH
87static inline void *mfree(void *memory) {
88 free(memory);
89 return NULL;
90}
91
60918275
LP
92static inline const char* yes_no(bool b) {
93 return b ? "yes" : "no";
94}
95
5232c42e
LS
96static inline const char* true_false(bool b) {
97 return b ? "true" : "false";
98}
99
769d324c
LP
100static inline const char* one_zero(bool b) {
101 return b ? "1" : "0";
102}
103
60918275
LP
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
9beb3f4d
LP
116static inline bool isempty(const char *p) {
117 return !p || !p[0];
118}
119
11adc1ae
LP
120static inline char *startswith(const char *s, const char *prefix) {
121 size_t l;
122
123 l = strlen(prefix);
124 if (strncmp(s, prefix, l) == 0)
125 return (char*) s + l;
126
df89481a
KS
127 return NULL;
128}
129
11adc1ae
LP
130static inline char *startswith_no_case(const char *s, const char *prefix) {
131 size_t l;
132
133 l = strlen(prefix);
134 if (strncasecmp(s, prefix, l) == 0)
135 return (char*) s + l;
136
df89481a
KS
137 return NULL;
138}
139
44a6b1b6 140char *endswith(const char *s, const char *postfix) _pure_;
d3226d77 141char *endswith_no_case(const char *s, const char *postfix) _pure_;
60918275 142
5cb36f41 143char *first_word(const char *s, const char *word) _pure_;
79d6d816 144
42f4e3c4 145int close_nointr(int fd);
03e334a1 146int safe_close(int fd);
3d94f76c 147void safe_close_pair(int p[]);
03e334a1 148
5b6319dc 149void close_many(const int fds[], unsigned n_fd);
60918275 150
74ca738f
LP
151int fclose_nointr(FILE *f);
152FILE* safe_fclose(FILE *f);
ed0d4022 153DIR* safe_closedir(DIR *f);
74ca738f 154
59f448cf 155int parse_size(const char *t, uint64_t base, uint64_t *size);
5556b5fe 156
44a6b1b6 157int parse_boolean(const char *v) _pure_;
3ba686c1 158int parse_pid(const char *s, pid_t* ret_pid);
034a2a52 159int parse_uid(const char *s, uid_t* ret_uid);
a1f686da
LP
160#define parse_gid(s, ret_gid) parse_uid(s, ret_gid)
161
162bool uid_is_valid(uid_t uid);
c077529b
LP
163
164static inline bool gid_is_valid(gid_t gid) {
165 return uid_is_valid((uid_t) gid);
166}
85261803
LP
167
168int safe_atou(const char *s, unsigned *ret_u);
169int safe_atoi(const char *s, int *ret_i);
170
8f75a603
LP
171int safe_atollu(const char *s, unsigned long long *ret_u);
172int safe_atolli(const char *s, long long int *ret_i);
173
f7900e25
TA
174int safe_atod(const char *s, double *ret_d);
175
b914e211
LP
176int safe_atou8(const char *s, uint8_t *ret);
177
8507eb20 178#if LONG_MAX == INT_MAX
8f75a603
LP
179static inline int safe_atolu(const char *s, unsigned long *ret_u) {
180 assert_cc(sizeof(unsigned long) == sizeof(unsigned));
181 return safe_atou(s, (unsigned*) ret_u);
182}
183static inline int safe_atoli(const char *s, long int *ret_u) {
184 assert_cc(sizeof(long int) == sizeof(int));
185 return safe_atoi(s, (int*) ret_u);
186}
187#else
188static inline int safe_atolu(const char *s, unsigned long *ret_u) {
189 assert_cc(sizeof(unsigned long) == sizeof(unsigned long long));
190 return safe_atollu(s, (unsigned long long*) ret_u);
191}
192static inline int safe_atoli(const char *s, long int *ret_u) {
193 assert_cc(sizeof(long int) == sizeof(long long int));
194 return safe_atolli(s, (long long int*) ret_u);
195}
196#endif
197
a838e6a1
LP
198static inline int safe_atou32(const char *s, uint32_t *ret_u) {
199 assert_cc(sizeof(uint32_t) == sizeof(unsigned));
200 return safe_atou(s, (unsigned*) ret_u);
201}
202
8f75a603 203static inline int safe_atoi32(const char *s, int32_t *ret_i) {
a838e6a1 204 assert_cc(sizeof(int32_t) == sizeof(int));
8f75a603 205 return safe_atoi(s, (int*) ret_i);
a838e6a1
LP
206}
207
8f75a603
LP
208static inline int safe_atou64(const char *s, uint64_t *ret_u) {
209 assert_cc(sizeof(uint64_t) == sizeof(unsigned long long));
210 return safe_atollu(s, (unsigned long long*) ret_u);
211}
034c6ed7 212
8f75a603
LP
213static inline int safe_atoi64(const char *s, int64_t *ret_i) {
214 assert_cc(sizeof(int64_t) == sizeof(long long int));
215 return safe_atolli(s, (long long int*) ret_i);
216}
034c6ed7 217
781fa938
LP
218int safe_atou16(const char *s, uint16_t *ret);
219int safe_atoi16(const char *s, int16_t *ret);
220
a2a5291b 221const char* split(const char **state, size_t *l, const char *separator, bool quoted);
a41e8209 222
034c6ed7 223#define FOREACH_WORD(word, length, s, state) \
bf85c24d 224 _FOREACH_WORD(word, length, s, WHITESPACE, false, state)
65d2ebdc
LP
225
226#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
bf85c24d 227 _FOREACH_WORD(word, length, s, separator, false, state)
a41e8209 228
034c6ed7 229#define FOREACH_WORD_QUOTED(word, length, s, state) \
bf85c24d
SP
230 _FOREACH_WORD(word, length, s, WHITESPACE, true, state)
231
bf85c24d 232#define _FOREACH_WORD(word, length, s, separator, quoted, state) \
a2a5291b 233 for ((state) = (s), (word) = split(&(state), &(length), (separator), (quoted)); (word); (word) = split(&(state), &(length), (separator), (quoted)))
034c6ed7 234
44d8db9e 235char *strappend(const char *s, const char *suffix);
fab56fc5
LP
236char *strnappend(const char *s, const char *suffix, size_t length);
237
849958d1 238int readlinkat_malloc(int fd, const char *p, char **ret);
87f0e418 239int readlink_malloc(const char *p, char **r);
9a67bcf2 240int readlink_value(const char *p, char **ret);
2c7108c4 241int readlink_and_make_absolute(const char *p, char **r);
83096483 242int readlink_and_canonicalize(const char *p, char **r);
87f0e418 243
4a72ff34 244char *strstrip(char *s);
ee9b5e01 245char *delete_chars(char *s, const char *bad);
7072ced8 246char *truncate_nl(char *s);
ee9b5e01 247
4a72ff34
LP
248char *file_in_same_dir(const char *path, const char *filename);
249
c32dd69b
LP
250int rmdir_parents(const char *path, const char *stop);
251
bcb92f48
CR
252char hexchar(int x) _const_;
253int unhexchar(char c) _const_;
254char octchar(int x) _const_;
255int unoctchar(char c) _const_;
256char decchar(int x) _const_;
257int undecchar(char c) _const_;
919a7f5f
TG
258char base32hexchar(int x) _const_;
259int unbase32hexchar(char c) _const_;
13a5d76b
TG
260char base64char(int x) _const_;
261int unbase64char(char c) _const_;
4fe88d28
LP
262
263char *cescape(const char *s);
0b452006 264size_t cescape_char(char c, char *buf);
527b7a42
LP
265
266typedef enum UnescapeFlags {
267 UNESCAPE_RELAX = 1,
268} UnescapeFlags;
269
270int cunescape(const char *s, UnescapeFlags flags, char **ret);
271int cunescape_length(const char *s, size_t length, UnescapeFlags flags, char **ret);
272int cunescape_length_with_prefix(const char *s, size_t length, const char *prefix, UnescapeFlags flags, char **ret);
6febfd0d
LP
273
274char *xescape(const char *s, const char *bad);
275
4fe88d28
LP
276char *ascii_strlower(char *path);
277
44a6b1b6
ZJS
278bool dirent_is_file(const struct dirent *de) _pure_;
279bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) _pure_;
87d2c1ff 280
a34bf9db 281bool hidden_file(const char *filename) _pure_;
c85dc17b 282
44a6b1b6 283bool chars_intersect(const char *a, const char *b) _pure_;
db12775d 284
f8b69d1d 285/* For basic lookup tables with strictly enumerated entries */
b9a5f858 286#define _DEFINE_STRING_TABLE_LOOKUP_TO_STRING(name,type,scope) \
4e240ab0 287 scope const char *name##_to_string(type i) { \
1dccbe19
LP
288 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
289 return NULL; \
290 return name##_table[i]; \
b9a5f858
LP
291 }
292
9cad100e
BB
293ssize_t string_table_lookup(const char * const *table, size_t len, const char *key);
294
8c721f2b
LP
295#define _DEFINE_STRING_TABLE_LOOKUP_FROM_STRING(name,type,scope) \
296 scope type name##_from_string(const char *s) { \
297 return (type) string_table_lookup(name##_table, ELEMENTSOF(name##_table), s); \
b9a5f858
LP
298 }
299
300#define _DEFINE_STRING_TABLE_LOOKUP(name,type,scope) \
301 _DEFINE_STRING_TABLE_LOOKUP_TO_STRING(name,type,scope) \
302 _DEFINE_STRING_TABLE_LOOKUP_FROM_STRING(name,type,scope) \
1dccbe19
LP
303 struct __useless_struct_to_allow_trailing_semicolon__
304
b9a5f858
LP
305#define DEFINE_STRING_TABLE_LOOKUP(name,type) _DEFINE_STRING_TABLE_LOOKUP(name,type,)
306#define DEFINE_PRIVATE_STRING_TABLE_LOOKUP(name,type) _DEFINE_STRING_TABLE_LOOKUP(name,type,static)
307#define DEFINE_PRIVATE_STRING_TABLE_LOOKUP_TO_STRING(name,type) _DEFINE_STRING_TABLE_LOOKUP_TO_STRING(name,type,static)
308#define DEFINE_PRIVATE_STRING_TABLE_LOOKUP_FROM_STRING(name,type) _DEFINE_STRING_TABLE_LOOKUP_FROM_STRING(name,type,static)
1dccbe19 309
f8b69d1d
MS
310/* For string conversions where numbers are also acceptable */
311#define DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(name,type,max) \
312 int name##_to_string_alloc(type i, char **str) { \
313 char *s; \
f8b69d1d
MS
314 if (i < 0 || i > max) \
315 return -ERANGE; \
316 if (i < (type) ELEMENTSOF(name##_table)) { \
317 s = strdup(name##_table[i]); \
318 if (!s) \
8c721f2b 319 return -ENOMEM; \
f8b69d1d 320 } else { \
8c721f2b
LP
321 if (asprintf(&s, "%i", i) < 0) \
322 return -ENOMEM; \
f8b69d1d
MS
323 } \
324 *str = s; \
325 return 0; \
326 } \
327 type name##_from_string(const char *s) { \
328 type i; \
329 unsigned u = 0; \
8c721f2b
LP
330 if (!s) \
331 return (type) -1; \
332 for (i = 0; i < (type) ELEMENTSOF(name##_table); i++) \
333 if (streq_ptr(name##_table[i], s)) \
f8b69d1d 334 return i; \
8511dd18 335 if (safe_atou(s, &u) >= 0 && u <= max) \
f8b69d1d
MS
336 return (type) u; \
337 return (type) -1; \
338 } \
339 struct __useless_struct_to_allow_trailing_semicolon__
340
3a0ecb08
LP
341int fd_nonblock(int fd, bool nonblock);
342int fd_cloexec(int fd, bool cloexec);
343
a0d40ac5
LP
344int close_all_fds(const int except[], unsigned n_except);
345
42856c10
LP
346bool fstype_is_network(const char *fstype);
347
80876c20
LP
348int flush_fd(int fd);
349
5a3ab509 350int fopen_temporary(const char *path, FILE **_f, char **_temp_path);
8d567588 351
eb22ac37 352ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
a6dcc7e5 353int loop_read_exact(int fd, void *buf, size_t nbytes, bool do_poll);
553acb7b 354int loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
8d567588 355
8407a5d0
LP
356bool is_device_path(const char *path);
357
01f78473 358int dir_is_empty(const char *path);
844ec79b 359char* dirname_malloc(const char *path);
01f78473 360
f1566e63 361char* lookup_uid(uid_t uid);
ef2f1067 362char* getlogname_malloc(void);
7c5f152a 363char* getusername_malloc(void);
fc116c6a 364
8c6db833 365int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
f4b47811 366int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid);
8c6db833 367
d1678248
ILG
368typedef long statfs_f_type_t;
369
370bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
371int fd_check_fstype(int fd, statfs_f_type_t magic_value);
372int path_check_fstype(const char *path, statfs_f_type_t magic_value);
373
c6878637
LP
374bool is_temporary_fs(const struct statfs *s) _pure_;
375int fd_is_temporary_fs(int fd);
ef2f1067 376
1325aa42
LP
377int pipe_eof(int fd);
378
a8b62610
MS
379#define xsprintf(buf, fmt, ...) \
380 assert_message_se((size_t) snprintf(buf, ELEMENTSOF(buf), fmt, __VA_ARGS__) < ELEMENTSOF(buf), \
381 "xsprintf: " #buf "[] must be big enough")
5ffa8c81 382
9d9951a4
HH
383int files_same(const char *filea, const char *fileb);
384
b4f10a5e
LP
385int running_in_chroot(void);
386
72f59706 387char *ellipsize(const char *s, size_t length, unsigned percent);
f405e86d 388 /* bytes columns */
72f59706 389char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent);
8fe914ec 390
c38dfac9 391int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
f6144808
LP
392int touch(const char *path);
393
919ce0b7 394noreturn void freeze(void);
3c14d26c 395
44a6b1b6 396bool null_or_empty(struct stat *st) _pure_;
83096483 397int null_or_empty_path(const char *fn);
ed88bcfb 398int null_or_empty_fd(int fd);
00dc5d76 399
a247755d 400DIR *xopendirat(int dirfd, const char *name, int flags);
3b63d2d3 401
e23a0ce8
LP
402char *fstab_node_to_udev_node(const char *p);
403
e801700e 404void execute_directories(const char* const* directories, usec_t timeout, char *argv[]);
83cc030f 405
05feefe0
LP
406bool nulstr_contains(const char*nulstr, const char *needle);
407
a88c8750
TG
408bool plymouth_running(void);
409
9beb3f4d
LP
410char* strshorten(char *s, size_t l);
411
875e1014 412int symlink_idempotent(const char *from, const char *to);
6ea832a2 413
424a19f8 414int symlink_atomic(const char *from, const char *to);
1554afae
LP
415int mknod_atomic(const char *path, mode_t mode, dev_t dev);
416int mkfifo_atomic(const char *path, mode_t mode);
34ca941c
LP
417
418int fchmod_umask(int fd, mode_t mode);
419
44a6b1b6 420bool display_is_local(const char *display) _pure_;
4d6d6518
LP
421int socket_from_display(const char *display, char **path);
422
d05c5031 423int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
4b67834e 424int get_group_creds(const char **groupname, gid_t *gid);
1cccf435 425
4468addc 426int in_gid(gid_t gid);
43673799
LP
427int in_group(const char *name);
428
59164be4 429char* uid_to_name(uid_t uid);
4468addc 430char* gid_to_name(gid_t gid);
59164be4 431
8092a428 432int glob_exists(const char *path);
8d98da3f 433int glob_extend(char ***strv, const char *path);
8092a428 434
83096483
LP
435int dirent_ensure_type(DIR *d, struct dirent *de);
436
034a2a52 437int get_files_in_directory(const char *path, char ***list);
83096483 438
b7def684 439char *strjoin(const char *x, ...) _sentinel_;
911a4828 440
b636465b
LP
441bool is_main_thread(void);
442
01f83c1c
JT
443static inline bool _pure_ in_charset(const char *s, const char* charset) {
444 assert(s);
445 assert(charset);
446 return s[strspn(s, charset)] == '\0';
447}
ab1f0633 448
94959f0f
LP
449int block_get_whole_disk(dev_t d, dev_t *ret);
450
e23a0ce8 451#define NULSTR_FOREACH(i, l) \
c4e2ceae
LP
452 for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
453
5c0532d1
LP
454#define NULSTR_FOREACH_PAIR(i, j, l) \
455 for ((i) = (l), (j) = strchr((i), 0)+1; (i) && *(i); (i) = strchr((j), 0)+1, (j) = *(i) ? strchr((i), 0)+1 : (i))
456
f8b69d1d 457int ioprio_class_to_string_alloc(int i, char **s);
1dccbe19
LP
458int ioprio_class_from_string(const char *s);
459
44a6b1b6
ZJS
460const char *sigchld_code_to_string(int i) _const_;
461int sigchld_code_from_string(const char *s) _pure_;
1dccbe19 462
f8b69d1d 463int log_facility_unshifted_to_string_alloc(int i, char **s);
7d76f312 464int log_facility_unshifted_from_string(const char *s);
adb8ec96 465bool log_facility_unshifted_is_valid(int faciliy);
1dccbe19 466
f8b69d1d 467int log_level_to_string_alloc(int i, char **s);
1dccbe19 468int log_level_from_string(const char *s);
adb8ec96 469bool log_level_is_valid(int level);
1dccbe19 470
f8b69d1d 471int sched_policy_to_string_alloc(int i, char **s);
1dccbe19
LP
472int sched_policy_from_string(const char *s);
473
44a6b1b6
ZJS
474const char *rlimit_to_string(int i) _const_;
475int rlimit_from_string(const char *s) _pure_;
1dccbe19 476
f8b69d1d 477int ip_tos_to_string_alloc(int i, char **s);
4fd5948e
LP
478int ip_tos_from_string(const char *s);
479
9a0e6896
LP
480extern int saved_argc;
481extern char **saved_argv;
482
65457142
FC
483bool kexec_loaded(void);
484
44a6b1b6 485int prot_from_flags(int flags) _const_;
87d2c1ff 486
59f448cf 487char *format_bytes(char *buf, size_t l, uint64_t t);
babfc091 488
8f2d43a0 489int fd_wait_for_event(int fd, int event, usec_t timeout);
df50185b 490
750ef272 491void* memdup(const void *p, size_t l) _alloc_(2);
55d7bfc1 492
bb99a35a
LP
493int fd_inc_sndbuf(int fd, size_t n);
494int fd_inc_rcvbuf(int fd, size_t n);
6bb92a16 495
9bdc770c 496int fork_agent(pid_t *pid, const int except[], unsigned n_except, const char *path, ...);
6bb92a16 497
68faf98c
LP
498int setrlimit_closest(int resource, const struct rlimit *rlim);
499
a2e03378
LP
500bool http_url_is_valid(const char *url) _pure_;
501bool documentation_url_is_valid(const char *url) _pure_;
49dbfa7b 502
3d7415f4
LP
503bool http_etag_is_valid(const char *etag);
504
9be346c9 505bool in_initrd(void);
069cfc85 506
7c5f152a 507int get_home_dir(char **ret);
2cfbd749 508int get_shell(char **_ret);
2fbe635a 509
a740c14c
MS
510static inline void freep(void *p) {
511 free(*(void**) p);
512}
513
dfb33a97 514static inline void closep(int *fd) {
03e334a1 515 safe_close(*fd);
dfb33a97
LP
516}
517
dfb33a97
LP
518static inline void umaskp(mode_t *u) {
519 umask(*u);
763c7aa2
ZJS
520}
521
3d94f76c
LP
522static inline void close_pairp(int (*p)[2]) {
523 safe_close_pair(*p);
04d39279
LP
524}
525
74ca738f
LP
526static inline void fclosep(FILE **f) {
527 safe_fclose(*f);
528}
529
14bf2c9d
LP
530DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, pclose);
531DEFINE_TRIVIAL_CLEANUP_FUNC(DIR*, closedir);
532DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, endmntent);
5862d652 533
dfb33a97 534#define _cleanup_free_ _cleanup_(freep)
dfb33a97 535#define _cleanup_close_ _cleanup_(closep)
dfb33a97
LP
536#define _cleanup_umask_ _cleanup_(umaskp)
537#define _cleanup_globfree_ _cleanup_(globfree)
1ca208fb
ZJS
538#define _cleanup_fclose_ _cleanup_(fclosep)
539#define _cleanup_pclose_ _cleanup_(pclosep)
540#define _cleanup_closedir_ _cleanup_(closedirp)
5862d652 541#define _cleanup_endmntent_ _cleanup_(endmntentp)
3d94f76c 542#define _cleanup_close_pair_ _cleanup_(close_pairp)
c84a9488 543
750ef272 544_malloc_ _alloc_(1, 2) static inline void *malloc_multiply(size_t a, size_t b) {
368504f4 545 if (_unlikely_(b != 0 && a > ((size_t) -1) / b))
4b8772bf
LP
546 return NULL;
547
548 return malloc(a * b);
549}
550
9489490a
DH
551_alloc_(2, 3) static inline void *realloc_multiply(void *p, size_t a, size_t b) {
552 if (_unlikely_(b != 0 && a > ((size_t) -1) / b))
553 return NULL;
554
555 return realloc(p, a * b);
556}
557
750ef272 558_alloc_(2, 3) static inline void *memdup_multiply(const void *p, size_t a, size_t b) {
368504f4 559 if (_unlikely_(b != 0 && a > ((size_t) -1) / b))
4b8772bf
LP
560 return NULL;
561
562 return memdup(p, a * b);
563}
0b507b17 564
ae6c3cc0 565bool filename_is_valid(const char *p) _pure_;
44a6b1b6
ZJS
566bool path_is_safe(const char *p) _pure_;
567bool string_is_safe(const char *p) _pure_;
6294aa76 568bool string_has_cc(const char *p, const char *ok) _pure_;
cfbc22ab 569
e3e0314b
ZJS
570/**
571 * Check if a string contains any glob patterns.
572 */
573_pure_ static inline bool string_is_glob(const char *p) {
574 return !!strpbrk(p, GLOB_CHARS);
575}
576
a9e12476
KS
577void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
578 int (*compar) (const void *, const void *, void *),
579 void *arg);
09017585 580
20f56fdd 581#define _(String) gettext (String)
88ced61b 582#define N_(String) String
20f56fdd 583void init_gettext(void);
09017585 584bool is_locale_utf8(void);
c339d977
MS
585
586typedef enum DrawSpecialChar {
6b01f1d3 587 DRAW_TREE_VERTICAL,
45a5ff0d
MS
588 DRAW_TREE_BRANCH,
589 DRAW_TREE_RIGHT,
55c0b89c 590 DRAW_TREE_SPACE,
c339d977 591 DRAW_TRIANGULAR_BULLET,
3deadb91 592 DRAW_BLACK_CIRCLE,
6b01f1d3 593 DRAW_ARROW,
13f8b8cb 594 DRAW_DASH,
c339d977
MS
595 _DRAW_SPECIAL_CHAR_MAX
596} DrawSpecialChar;
6b01f1d3 597
c339d977 598const char *draw_special_char(DrawSpecialChar ch);
409bc9c3
LP
599
600char *strreplace(const char *text, const char *old_string, const char *new_string);
e8bc0ea2
LP
601
602char *strip_tab_ansi(char **p, size_t *l);
240dbaa4
LP
603
604int on_ac_power(void);
f74e605f 605
4cf7ea55
MM
606int search_and_fopen(const char *path, const char *mode, const char *root, const char **search, FILE **_f);
607int search_and_fopen_nulstr(const char *path, const char *mode, const char *root, const char *search, FILE **_f);
fabe5c0e 608
9db11a99
LP
609#define FOREACH_LINE(line, f, on_error) \
610 for (;;) \
f74e605f
LP
611 if (!fgets(line, sizeof(line), f)) { \
612 if (ferror(f)) { \
613 on_error; \
614 } \
615 break; \
616 } else
9db11a99
LP
617
618#define FOREACH_DIRENT(de, d, on_error) \
619 for (errno = 0, de = readdir(d);; errno = 0, de = readdir(d)) \
620 if (!de) { \
8333c77e 621 if (errno > 0) { \
9db11a99
LP
622 on_error; \
623 } \
624 break; \
a34bf9db 625 } else if (hidden_file((de)->d_name)) \
9db11a99
LP
626 continue; \
627 else
cd61c3bf
LP
628
629#define FOREACH_DIRENT_ALL(de, d, on_error) \
630 for (errno = 0, de = readdir(d);; errno = 0, de = readdir(d)) \
631 if (!de) { \
632 if (errno > 0) { \
633 on_error; \
634 } \
635 break; \
636 } else
6282c859
MS
637
638static inline void *mempset(void *s, int c, size_t n) {
639 memset(s, c, n);
dfb33a97 640 return (uint8_t*)s + n;
6282c859 641}
66e35261
LP
642
643char *hexmem(const void *p, size_t l);
30494563 644int unhexmem(const char *p, size_t l, void **mem, size_t *len);
2181a7f5 645
919a7f5f
TG
646char *base32hexmem(const void *p, size_t l, bool padding);
647int unbase32hexmem(const char *p, size_t l, bool padding, void **mem, size_t *len);
648
13a5d76b
TG
649char *base64mem(const void *p, size_t l);
650int unbase64mem(const char *p, size_t l, void **mem, size_t *len);
651
a432cb69 652char *strextend(char **x, ...) _sentinel_;
9a17484d 653char *strrep(const char *s, unsigned n);
392d5b37 654
ca2d3784
ZJS
655void* greedy_realloc(void **p, size_t *allocated, size_t need, size_t size);
656void* greedy_realloc0(void **p, size_t *allocated, size_t need, size_t size);
657#define GREEDY_REALLOC(array, allocated, need) \
658 greedy_realloc((void**) &(array), &(allocated), (need), sizeof((array)[0]))
659
660#define GREEDY_REALLOC0(array, allocated, need) \
661 greedy_realloc0((void**) &(array), &(allocated), (need), sizeof((array)[0]))
a1937e67 662
5c0d398d 663static inline void _reset_errno_(int *saved_errno) {
5c0aa72a
LP
664 errno = *saved_errno;
665}
666
2a371001 667#define PROTECT_ERRNO _cleanup_(_reset_errno_) __attribute__((unused)) int _saved_errno_ = errno
5c0d398d 668
44dd2c6e
DH
669static inline int negative_errno(void) {
670 /* This helper should be used to shut up gcc if you know 'errno' is
671 * negative. Instead of "return -errno;", use "return negative_errno();"
672 * It will suppress bogus gcc warnings in case it assumes 'errno' might
673 * be 0 and thus the caller's error-handling might not be triggered. */
674 assert_return(errno > 0, -EINVAL);
675 return -errno;
676}
677
d6dd604b 678struct _umask_struct_ {
5c0d398d
LP
679 mode_t mask;
680 bool quit;
681};
682
d6dd604b 683static inline void _reset_umask_(struct _umask_struct_ *s) {
5c0d398d
LP
684 umask(s->mask);
685};
686
687#define RUN_WITH_UMASK(mask) \
d6dd604b 688 for (_cleanup_(_reset_umask_) struct _umask_struct_ _saved_umask_ = { umask(mask), false }; \
5c0d398d
LP
689 !_saved_umask_.quit ; \
690 _saved_umask_.quit = true)
144e51ec
CR
691
692static inline unsigned u64log2(uint64_t n) {
ec417ccc 693#if __SIZEOF_LONG_LONG__ == 8
693eb9a2 694 return (n > 1) ? (unsigned) __builtin_clzll(n) ^ 63U : 0;
ec417ccc
LP
695#else
696#error "Wut?"
697#endif
698}
699
700static inline unsigned u32ctz(uint32_t n) {
701#if __SIZEOF_INT__ == 4
702 return __builtin_ctz(n);
703#else
704#error "Wut?"
705#endif
144e51ec 706}
79d860fe 707
7d328b54 708static inline unsigned log2i(int x) {
8fe90522
ZJS
709 assert(x > 0);
710
711 return __SIZEOF_INT__ * 8 - __builtin_clz(x) - 1;
712}
713
b5de6d98
MS
714static inline unsigned log2u(unsigned x) {
715 assert(x > 0);
716
717 return sizeof(unsigned) * 8 - __builtin_clz(x) - 1;
718}
719
720static inline unsigned log2u_round_up(unsigned x) {
721 assert(x > 0);
722
723 if (x == 1)
724 return 0;
725
726 return log2u(x - 1) + 1;
727}
728
79d860fe
MP
729static inline bool logind_running(void) {
730 return access("/run/systemd/seats/", F_OK) >= 0;
731}
4b73a0c0 732
82da66fb
LP
733#define DECIMAL_STR_WIDTH(x) \
734 ({ \
735 typeof(x) _x_ = (x); \
736 unsigned ans = 1; \
737 while (_x_ /= 10) \
738 ans++; \
739 ans; \
740 })
75add28a 741
4b73a0c0 742int unlink_noerrno(const char *path);
ed5c5dbd 743
82da66fb
LP
744#define alloca0(n) \
745 ({ \
746 char *_new_; \
747 size_t _len_ = n; \
748 _new_ = alloca(_len_); \
749 (void *) memset(_new_, 0, _len_); \
ed5c5dbd 750 })
95d78c7e 751
257224b0 752/* It's not clear what alignment glibc/gcc alloca() guarantee, hence provide a guaranteed safe version */
95d78c7e
DH
753#define alloca_align(size, align) \
754 ({ \
755 void *_ptr_; \
756 size_t _mask_ = (align) - 1; \
757 _ptr_ = alloca((size) + _mask_); \
758 (void*)(((uintptr_t)_ptr_ + _mask_) & ~_mask_); \
759 })
760
761#define alloca0_align(size, align) \
762 ({ \
763 void *_new_; \
764 size_t _size_ = (size); \
765 _new_ = alloca_align(_size_, (align)); \
766 (void*)memset(_new_, 0, _size_); \
767 })
66060897 768
63c372cb
LP
769#define strjoina(a, ...) \
770 ({ \
771 const char *_appendees_[] = { a, __VA_ARGS__ }; \
772 char *_d_, *_p_; \
773 int _len_ = 0; \
774 unsigned _i_; \
775 for (_i_ = 0; _i_ < ELEMENTSOF(_appendees_) && _appendees_[_i_]; _i_++) \
776 _len_ += strlen(_appendees_[_i_]); \
777 _p_ = _d_ = alloca(_len_ + 1); \
778 for (_i_ = 0; _i_ < ELEMENTSOF(_appendees_) && _appendees_[_i_]; _i_++) \
779 _p_ = stpcpy(_p_, _appendees_[_i_]); \
780 *_p_ = 0; \
781 _d_; \
f39d4a08
HH
782 })
783
44a6b1b6 784bool id128_is_valid(const char *s) _pure_;
d4ac85c6
LP
785
786int split_pair(const char *s, const char *sep, char **l, char **r);
7ff7394d 787
74df0fca 788int shall_restore_state(void);
295edddf 789
7ff7394d
ZJS
790/**
791 * Normal qsort requires base to be nonnull. Here were require
792 * that only if nmemb > 0.
793 */
aeb24f30 794static inline void qsort_safe(void *base, size_t nmemb, size_t size, comparison_fn_t compar) {
1dbd13d8 795 if (nmemb <= 1)
aeb24f30
LP
796 return;
797
798 assert(base);
799 qsort(base, nmemb, size, compar);
7ff7394d 800}
74df0fca 801
6e6c21c8
LP
802/* Normal memmem() requires haystack to be nonnull, which is annoying for zero-length buffers */
803static inline void *memmem_safe(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen) {
804
805 if (needlelen <= 0)
806 return (void*) haystack;
807
808 if (haystacklen < needlelen)
809 return NULL;
810
811 assert(haystack);
812 assert(needle);
813
814 return memmem(haystack, haystacklen, needle, needlelen);
815}
816
74df0fca 817int proc_cmdline(char **ret);
059cb385 818int parse_proc_cmdline(int (*parse_word)(const char *key, const char *value));
1a299299 819int get_proc_cmdline_key(const char *parameter, char **value);
bc9fd78c
LP
820
821int container_get_leader(const char *machine, pid_t *pid);
822
671c3419
RM
823int namespace_open(pid_t pid, int *pidns_fd, int *mntns_fd, int *netns_fd, int *userns_fd, int *root_fd);
824int namespace_enter(int pidns_fd, int mntns_fd, int netns_fd, int userns_fd, int root_fd);
bf108e55 825
eff05270
LP
826int getpeercred(int fd, struct ucred *ucred);
827int getpeersec(int fd, char **ret);
8e33886e 828
65b3903f
ZJS
829int writev_safe(int fd, const struct iovec *w, int j);
830
831int mkostemp_safe(char *pattern, int flags);
8e33886e 832int open_tmpfile(const char *path, int flags);
fdb9161c
LP
833
834int fd_warn_permissions(const char *path, int fd);
6afc95b7 835
050f7277
LP
836#ifndef PERSONALITY_INVALID
837/* personality(7) documents that 0xffffffffUL is used for querying the
838 * current personality, hence let's use that here as error
839 * indicator. */
840#define PERSONALITY_INVALID 0xffffffffLU
841#endif
842
ac45f971
LP
843unsigned long personality_from_string(const char *p);
844const char *personality_to_string(unsigned long);
1c231f56
LP
845
846uint64_t physical_memory(void);
6db615c1 847
29bfbcd6 848void hexdump(FILE *f, const void *p, size_t s);
370c860f
DR
849
850union file_handle_union {
c5220a94
MO
851 struct file_handle handle;
852 char padding[sizeof(struct file_handle) + MAX_HANDLE_SZ];
370c860f 853};
2695c5c4 854#define FILE_HANDLE_INIT { .handle.handle_bytes = MAX_HANDLE_SZ }
c5220a94
MO
855
856int update_reboot_param_file(const char *param);
6d313367
LP
857
858int umount_recursive(const char *target, int flags);
d6797c92
LP
859
860int bind_remount_recursive(const char *prefix, bool ro);
1b992147
LP
861
862int fflush_and_check(FILE *f);
2e78fa79 863
14bcf25c
LP
864int tempfn_xxxxxx(const char *p, const char *extra, char **ret);
865int tempfn_random(const char *p, const char *extra, char **ret);
866int tempfn_random_child(const char *p, const char *extra, char **ret);
fecc80c1 867
45035609 868int take_password_lock(const char *root);
5261ba90 869
7629889c 870int is_symlink(const char *path);
be57e297 871int is_dir(const char *path, bool follow);
ce5b3ad4 872int is_device_node(const char *path);
7629889c 873
68685607
RM
874typedef enum ExtractFlags {
875 EXTRACT_RELAX = 1,
876 EXTRACT_CUNESCAPE = 2,
877 EXTRACT_CUNESCAPE_RELAX = 4,
12ba2c44 878 EXTRACT_QUOTES = 8,
206644ae 879 EXTRACT_DONT_COALESCE_SEPARATORS = 16,
68685607
RM
880} ExtractFlags;
881
882int extract_first_word(const char **p, char **ret, const char *separators, ExtractFlags flags);
883int extract_first_word_and_warn(const char **p, char **ret, const char *separators, ExtractFlags flags, const char *unit, const char *filename, unsigned line, const char *rvalue);
884int extract_many_words(const char **p, const char *separators, ExtractFlags flags, ...) _sentinel_;
2928b0a8
LP
885
886int free_and_strdup(char **p, const char *s);
605f81a8 887
f7c1ad4f
LP
888#define INOTIFY_EVENT_MAX (sizeof(struct inotify_event) + NAME_MAX + 1)
889
890#define FOREACH_INOTIFY_EVENT(e, buffer, sz) \
0254e944
SL
891 for ((e) = &buffer.ev; \
892 (uint8_t*) (e) < (uint8_t*) (buffer.raw) + (sz); \
f7c1ad4f 893 (e) = (struct inotify_event*) ((uint8_t*) (e) + sizeof(struct inotify_event) + (e)->len))
72648326 894
0254e944
SL
895union inotify_event_buffer {
896 struct inotify_event ev;
897 uint8_t raw[INOTIFY_EVENT_MAX];
898};
899
72648326 900#define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), AT_SYMLINK_NOFOLLOW)
ee451d76 901
10f9c755
LP
902ssize_t fgetxattrat_fake(int dirfd, const char *filename, const char *attribute, void *value, size_t size, int flags);
903
4a4d89b6
LP
904int fd_setcrtime(int fd, usec_t usec);
905int fd_getcrtime(int fd, usec_t *usec);
906int path_getcrtime(const char *p, usec_t *usec);
10f9c755 907int fd_getcrtime_at(int dirfd, const char *name, usec_t *usec, int flags);
a354329f
LP
908
909int same_fd(int a, int b);
11689d2a 910
1ed8f8c1
LP
911int chattr_fd(int fd, unsigned value, unsigned mask);
912int chattr_path(const char *p, unsigned value, unsigned mask);
de45d726 913
01b72568
LP
914int read_attr_fd(int fd, unsigned *ret);
915int read_attr_path(const char *p, unsigned *ret);
916
de45d726 917#define RLIMIT_MAKE_CONST(lim) ((struct rlimit) { lim, lim })
ff6a7460
LP
918
919ssize_t sparse_write(int fd, const void *p, size_t sz, size_t run_length);
3576d631
LP
920
921void sigkill_wait(pid_t *pid);
922#define _cleanup_sigkill_wait_ _cleanup_(sigkill_wait)
3d7415f4
LP
923
924int syslog_parse_priority(const char **p, int *priority, bool with_facility);
1c8da044
LP
925
926void cmsg_close_all(struct msghdr *mh);
f85ef957
AC
927
928int rename_noreplace(int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
019c7fba 929
61ee6939 930char *shell_escape(const char *s, const char *bad);
019c7fba 931char *shell_maybe_quote(const char *s);
2ff7b0a5
LP
932
933int parse_mode(const char *s, mode_t *ret);
6458ec20
LP
934
935int mount_move_root(const char *path);
b4da6d6b
LP
936
937int reset_uid_gid(void);
7b9c9ab8
WC
938
939int getxattr_malloc(const char *path, const char *name, char **value, bool allow_symlink);
940int fgetxattr_malloc(int fd, const char *name, char **value);
d9603714 941
3ee897d6
LP
942int send_one_fd(int transport_fd, int fd, int flags);
943int receive_one_fd(int transport_fd, int flags);
189d5bac
LP
944
945void nop_signal_handler(int sig);
3f6fd1ba
LP
946
947int version(void);
8dd4c05b
LP
948
949bool fdname_is_valid(const char *s);
257b0719
EV
950
951bool oom_score_adjust_is_valid(int oa);
1602b008
LP
952
953#define memory_erase(p, l) memset((p), 'x', (l))
954void string_erase(char *x);
ab84f5b9
ZJS
955
956char *string_free_erase(char *s);
957DEFINE_TRIVIAL_CLEANUP_FUNC(char *, string_free_erase);
958#define _cleanup_string_free_erase_ _cleanup_(string_free_erasep)