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