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