]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/util.h
Merge pull request #1652 from filbranden/extract1
[thirdparty/systemd.git] / src / basic / util.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
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
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
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
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <alloca.h>
25 #include <dirent.h>
26 #include <fcntl.h>
27 #include <inttypes.h>
28 #include <limits.h>
29 #include <locale.h>
30 #include <mntent.h>
31 #include <stdarg.h>
32 #include <stdbool.h>
33 #include <stddef.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <sys/inotify.h>
37 #include <sys/socket.h>
38 #include <sys/stat.h>
39 #include <sys/statfs.h>
40 #include <sys/types.h>
41 #include <time.h>
42 #include <unistd.h>
43
44 #include "formats-util.h"
45 #include "macro.h"
46 #include "missing.h"
47 #include "time-util.h"
48
49 /* What is interpreted as whitespace? */
50 #define WHITESPACE " \t\n\r"
51 #define NEWLINE "\n\r"
52 #define QUOTES "\"\'"
53 #define COMMENTS "#;"
54 #define GLOB_CHARS "*?["
55
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
62 #define FORMAT_BYTES_MAX 8
63
64 size_t page_size(void) _pure_;
65 #define PAGE_ALIGN(l) ALIGN_TO((l), page_size())
66
67 #define streq(a,b) (strcmp((a),(b)) == 0)
68 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
69 #define strcaseeq(a,b) (strcasecmp((a),(b)) == 0)
70 #define strncaseeq(a, b, n) (strncasecmp((a), (b), (n)) == 0)
71
72 bool streq_ptr(const char *a, const char *b) _pure_;
73 int strcmp_ptr(const char *a, const char *b) _pure_;
74
75 #define new(t, n) ((t*) malloc_multiply(sizeof(t), (n)))
76
77 #define new0(t, n) ((t*) calloc((n), sizeof(t)))
78
79 #define newa(t, n) ((t*) alloca(sizeof(t)*(n)))
80
81 #define newa0(t, n) ((t*) alloca0(sizeof(t)*(n)))
82
83 #define newdup(t, p, n) ((t*) memdup_multiply(p, sizeof(t), (n)))
84
85 #define malloc0(n) (calloc(1, (n)))
86
87 static inline void *mfree(void *memory) {
88 free(memory);
89 return NULL;
90 }
91
92 static inline const char* yes_no(bool b) {
93 return b ? "yes" : "no";
94 }
95
96 static inline const char* true_false(bool b) {
97 return b ? "true" : "false";
98 }
99
100 static inline const char* one_zero(bool b) {
101 return b ? "1" : "0";
102 }
103
104 static inline const char* strempty(const char *s) {
105 return s ? s : "";
106 }
107
108 static inline const char* strnull(const char *s) {
109 return s ? s : "(null)";
110 }
111
112 static inline const char *strna(const char *s) {
113 return s ? s : "n/a";
114 }
115
116 static inline bool isempty(const char *p) {
117 return !p || !p[0];
118 }
119
120 static 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
127 return NULL;
128 }
129
130 static 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
137 return NULL;
138 }
139
140 char *endswith(const char *s, const char *postfix) _pure_;
141 char *endswith_no_case(const char *s, const char *postfix) _pure_;
142
143 char *first_word(const char *s, const char *word) _pure_;
144
145 int close_nointr(int fd);
146 int safe_close(int fd);
147 void safe_close_pair(int p[]);
148
149 void close_many(const int fds[], unsigned n_fd);
150
151 int fclose_nointr(FILE *f);
152 FILE* safe_fclose(FILE *f);
153 DIR* safe_closedir(DIR *f);
154
155 int parse_size(const char *t, uint64_t base, uint64_t *size);
156
157 int parse_boolean(const char *v) _pure_;
158 int parse_pid(const char *s, pid_t* ret_pid);
159 int parse_uid(const char *s, uid_t* ret_uid);
160 #define parse_gid(s, ret_gid) parse_uid(s, ret_gid)
161
162 bool uid_is_valid(uid_t uid);
163
164 static inline bool gid_is_valid(gid_t gid) {
165 return uid_is_valid((uid_t) gid);
166 }
167
168 int safe_atou(const char *s, unsigned *ret_u);
169 int safe_atoi(const char *s, int *ret_i);
170
171 int safe_atollu(const char *s, unsigned long long *ret_u);
172 int safe_atolli(const char *s, long long int *ret_i);
173
174 int safe_atod(const char *s, double *ret_d);
175
176 int safe_atou8(const char *s, uint8_t *ret);
177
178 #if LONG_MAX == INT_MAX
179 static 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 }
183 static 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
188 static 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 }
192 static 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
198 static 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
203 static inline int safe_atoi32(const char *s, int32_t *ret_i) {
204 assert_cc(sizeof(int32_t) == sizeof(int));
205 return safe_atoi(s, (int*) ret_i);
206 }
207
208 static 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 }
212
213 static 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 }
217
218 int safe_atou16(const char *s, uint16_t *ret);
219 int safe_atoi16(const char *s, int16_t *ret);
220
221 const char* split(const char **state, size_t *l, const char *separator, bool quoted);
222
223 #define FOREACH_WORD(word, length, s, state) \
224 _FOREACH_WORD(word, length, s, WHITESPACE, false, state)
225
226 #define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
227 _FOREACH_WORD(word, length, s, separator, false, state)
228
229 #define FOREACH_WORD_QUOTED(word, length, s, state) \
230 _FOREACH_WORD(word, length, s, WHITESPACE, true, state)
231
232 #define _FOREACH_WORD(word, length, s, separator, quoted, state) \
233 for ((state) = (s), (word) = split(&(state), &(length), (separator), (quoted)); (word); (word) = split(&(state), &(length), (separator), (quoted)))
234
235 char *strappend(const char *s, const char *suffix);
236 char *strnappend(const char *s, const char *suffix, size_t length);
237
238 int readlinkat_malloc(int fd, const char *p, char **ret);
239 int readlink_malloc(const char *p, char **r);
240 int readlink_value(const char *p, char **ret);
241 int readlink_and_make_absolute(const char *p, char **r);
242 int readlink_and_canonicalize(const char *p, char **r);
243
244 char *strstrip(char *s);
245 char *delete_chars(char *s, const char *bad);
246 char *truncate_nl(char *s);
247
248 char *file_in_same_dir(const char *path, const char *filename);
249
250 int rmdir_parents(const char *path, const char *stop);
251
252 char hexchar(int x) _const_;
253 int unhexchar(char c) _const_;
254 char octchar(int x) _const_;
255 int unoctchar(char c) _const_;
256 char decchar(int x) _const_;
257 int undecchar(char c) _const_;
258 char base32hexchar(int x) _const_;
259 int unbase32hexchar(char c) _const_;
260 char base64char(int x) _const_;
261 int unbase64char(char c) _const_;
262
263 char *cescape(const char *s);
264 size_t cescape_char(char c, char *buf);
265
266 typedef enum UnescapeFlags {
267 UNESCAPE_RELAX = 1,
268 } UnescapeFlags;
269
270 int cunescape(const char *s, UnescapeFlags flags, char **ret);
271 int cunescape_length(const char *s, size_t length, UnescapeFlags flags, char **ret);
272 int cunescape_length_with_prefix(const char *s, size_t length, const char *prefix, UnescapeFlags flags, char **ret);
273
274 char *xescape(const char *s, const char *bad);
275
276 char *ascii_strlower(char *path);
277
278 bool dirent_is_file(const struct dirent *de) _pure_;
279 bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) _pure_;
280
281 bool hidden_file(const char *filename) _pure_;
282
283 bool chars_intersect(const char *a, const char *b) _pure_;
284
285 /* For basic lookup tables with strictly enumerated entries */
286 #define _DEFINE_STRING_TABLE_LOOKUP_TO_STRING(name,type,scope) \
287 scope const char *name##_to_string(type i) { \
288 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
289 return NULL; \
290 return name##_table[i]; \
291 }
292
293 ssize_t string_table_lookup(const char * const *table, size_t len, const char *key);
294
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); \
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) \
303 struct __useless_struct_to_allow_trailing_semicolon__
304
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)
309
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; \
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) \
319 return -ENOMEM; \
320 } else { \
321 if (asprintf(&s, "%i", i) < 0) \
322 return -ENOMEM; \
323 } \
324 *str = s; \
325 return 0; \
326 } \
327 type name##_from_string(const char *s) { \
328 type i; \
329 unsigned u = 0; \
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)) \
334 return i; \
335 if (safe_atou(s, &u) >= 0 && u <= max) \
336 return (type) u; \
337 return (type) -1; \
338 } \
339 struct __useless_struct_to_allow_trailing_semicolon__
340
341 int fd_nonblock(int fd, bool nonblock);
342 int fd_cloexec(int fd, bool cloexec);
343
344 int close_all_fds(const int except[], unsigned n_except);
345
346 bool fstype_is_network(const char *fstype);
347
348 int flush_fd(int fd);
349
350 int fopen_temporary(const char *path, FILE **_f, char **_temp_path);
351
352 ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
353 int loop_read_exact(int fd, void *buf, size_t nbytes, bool do_poll);
354 int loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
355
356 bool is_device_path(const char *path);
357
358 int dir_is_empty(const char *path);
359 char* dirname_malloc(const char *path);
360
361 static inline int dir_is_populated(const char *path) {
362 int r;
363 r = dir_is_empty(path);
364 if (r < 0)
365 return r;
366 return !r;
367 }
368
369 char* lookup_uid(uid_t uid);
370 char* getlogname_malloc(void);
371 char* getusername_malloc(void);
372
373 int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
374 int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid);
375
376 typedef long statfs_f_type_t;
377
378 bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
379 int fd_check_fstype(int fd, statfs_f_type_t magic_value);
380 int path_check_fstype(const char *path, statfs_f_type_t magic_value);
381
382 bool is_temporary_fs(const struct statfs *s) _pure_;
383 int fd_is_temporary_fs(int fd);
384
385 int pipe_eof(int fd);
386
387 #define xsprintf(buf, fmt, ...) \
388 assert_message_se((size_t) snprintf(buf, ELEMENTSOF(buf), fmt, __VA_ARGS__) < ELEMENTSOF(buf), \
389 "xsprintf: " #buf "[] must be big enough")
390
391 int files_same(const char *filea, const char *fileb);
392
393 int running_in_chroot(void);
394
395 char *ellipsize(const char *s, size_t length, unsigned percent);
396 /* bytes columns */
397 char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent);
398
399 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
400 int touch(const char *path);
401
402 noreturn void freeze(void);
403
404 bool null_or_empty(struct stat *st) _pure_;
405 int null_or_empty_path(const char *fn);
406 int null_or_empty_fd(int fd);
407
408 DIR *xopendirat(int dirfd, const char *name, int flags);
409
410 char *fstab_node_to_udev_node(const char *p);
411
412 void execute_directories(const char* const* directories, usec_t timeout, char *argv[]);
413
414 bool nulstr_contains(const char*nulstr, const char *needle);
415
416 bool plymouth_running(void);
417
418 char* strshorten(char *s, size_t l);
419
420 int symlink_idempotent(const char *from, const char *to);
421
422 int symlink_atomic(const char *from, const char *to);
423 int mknod_atomic(const char *path, mode_t mode, dev_t dev);
424 int mkfifo_atomic(const char *path, mode_t mode);
425
426 int fchmod_umask(int fd, mode_t mode);
427
428 bool display_is_local(const char *display) _pure_;
429 int socket_from_display(const char *display, char **path);
430
431 int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
432 int get_group_creds(const char **groupname, gid_t *gid);
433
434 int in_gid(gid_t gid);
435 int in_group(const char *name);
436
437 char* uid_to_name(uid_t uid);
438 char* gid_to_name(gid_t gid);
439
440 int glob_exists(const char *path);
441 int glob_extend(char ***strv, const char *path);
442
443 int dirent_ensure_type(DIR *d, struct dirent *de);
444
445 int get_files_in_directory(const char *path, char ***list);
446
447 char *strjoin(const char *x, ...) _sentinel_;
448
449 bool is_main_thread(void);
450
451 static inline bool _pure_ in_charset(const char *s, const char* charset) {
452 assert(s);
453 assert(charset);
454 return s[strspn(s, charset)] == '\0';
455 }
456
457 int block_get_whole_disk(dev_t d, dev_t *ret);
458
459 #define NULSTR_FOREACH(i, l) \
460 for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
461
462 #define NULSTR_FOREACH_PAIR(i, j, l) \
463 for ((i) = (l), (j) = strchr((i), 0)+1; (i) && *(i); (i) = strchr((j), 0)+1, (j) = *(i) ? strchr((i), 0)+1 : (i))
464
465 int ioprio_class_to_string_alloc(int i, char **s);
466 int ioprio_class_from_string(const char *s);
467
468 const char *sigchld_code_to_string(int i) _const_;
469 int sigchld_code_from_string(const char *s) _pure_;
470
471 int log_facility_unshifted_to_string_alloc(int i, char **s);
472 int log_facility_unshifted_from_string(const char *s);
473 bool log_facility_unshifted_is_valid(int faciliy);
474
475 int log_level_to_string_alloc(int i, char **s);
476 int log_level_from_string(const char *s);
477 bool log_level_is_valid(int level);
478
479 int sched_policy_to_string_alloc(int i, char **s);
480 int sched_policy_from_string(const char *s);
481
482 const char *rlimit_to_string(int i) _const_;
483 int rlimit_from_string(const char *s) _pure_;
484
485 int ip_tos_to_string_alloc(int i, char **s);
486 int ip_tos_from_string(const char *s);
487
488 extern int saved_argc;
489 extern char **saved_argv;
490
491 bool kexec_loaded(void);
492
493 int prot_from_flags(int flags) _const_;
494
495 char *format_bytes(char *buf, size_t l, uint64_t t);
496
497 int fd_wait_for_event(int fd, int event, usec_t timeout);
498
499 void* memdup(const void *p, size_t l) _alloc_(2);
500
501 int fd_inc_sndbuf(int fd, size_t n);
502 int fd_inc_rcvbuf(int fd, size_t n);
503
504 int fork_agent(pid_t *pid, const int except[], unsigned n_except, const char *path, ...);
505
506 int setrlimit_closest(int resource, const struct rlimit *rlim);
507
508 bool http_url_is_valid(const char *url) _pure_;
509 bool documentation_url_is_valid(const char *url) _pure_;
510
511 bool http_etag_is_valid(const char *etag);
512
513 bool in_initrd(void);
514
515 int get_home_dir(char **ret);
516 int get_shell(char **_ret);
517
518 static inline void freep(void *p) {
519 free(*(void**) p);
520 }
521
522 static inline void closep(int *fd) {
523 safe_close(*fd);
524 }
525
526 static inline void umaskp(mode_t *u) {
527 umask(*u);
528 }
529
530 static inline void close_pairp(int (*p)[2]) {
531 safe_close_pair(*p);
532 }
533
534 static inline void fclosep(FILE **f) {
535 safe_fclose(*f);
536 }
537
538 DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, pclose);
539 DEFINE_TRIVIAL_CLEANUP_FUNC(DIR*, closedir);
540 DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, endmntent);
541
542 #define _cleanup_free_ _cleanup_(freep)
543 #define _cleanup_close_ _cleanup_(closep)
544 #define _cleanup_umask_ _cleanup_(umaskp)
545 #define _cleanup_globfree_ _cleanup_(globfree)
546 #define _cleanup_fclose_ _cleanup_(fclosep)
547 #define _cleanup_pclose_ _cleanup_(pclosep)
548 #define _cleanup_closedir_ _cleanup_(closedirp)
549 #define _cleanup_endmntent_ _cleanup_(endmntentp)
550 #define _cleanup_close_pair_ _cleanup_(close_pairp)
551
552 _malloc_ _alloc_(1, 2) static inline void *malloc_multiply(size_t a, size_t b) {
553 if (_unlikely_(b != 0 && a > ((size_t) -1) / b))
554 return NULL;
555
556 return malloc(a * b);
557 }
558
559 _alloc_(2, 3) static inline void *realloc_multiply(void *p, size_t a, size_t b) {
560 if (_unlikely_(b != 0 && a > ((size_t) -1) / b))
561 return NULL;
562
563 return realloc(p, a * b);
564 }
565
566 _alloc_(2, 3) static inline void *memdup_multiply(const void *p, size_t a, size_t b) {
567 if (_unlikely_(b != 0 && a > ((size_t) -1) / b))
568 return NULL;
569
570 return memdup(p, a * b);
571 }
572
573 bool filename_is_valid(const char *p) _pure_;
574 bool path_is_safe(const char *p) _pure_;
575 bool string_is_safe(const char *p) _pure_;
576 bool string_has_cc(const char *p, const char *ok) _pure_;
577
578 /**
579 * Check if a string contains any glob patterns.
580 */
581 _pure_ static inline bool string_is_glob(const char *p) {
582 return !!strpbrk(p, GLOB_CHARS);
583 }
584
585 void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
586 int (*compar) (const void *, const void *, void *),
587 void *arg);
588
589 #define _(String) gettext (String)
590 #define N_(String) String
591 void init_gettext(void);
592 bool is_locale_utf8(void);
593
594 typedef enum DrawSpecialChar {
595 DRAW_TREE_VERTICAL,
596 DRAW_TREE_BRANCH,
597 DRAW_TREE_RIGHT,
598 DRAW_TREE_SPACE,
599 DRAW_TRIANGULAR_BULLET,
600 DRAW_BLACK_CIRCLE,
601 DRAW_ARROW,
602 DRAW_DASH,
603 _DRAW_SPECIAL_CHAR_MAX
604 } DrawSpecialChar;
605
606 const char *draw_special_char(DrawSpecialChar ch);
607
608 char *strreplace(const char *text, const char *old_string, const char *new_string);
609
610 char *strip_tab_ansi(char **p, size_t *l);
611
612 int on_ac_power(void);
613
614 int search_and_fopen(const char *path, const char *mode, const char *root, const char **search, FILE **_f);
615 int search_and_fopen_nulstr(const char *path, const char *mode, const char *root, const char *search, FILE **_f);
616
617 #define FOREACH_LINE(line, f, on_error) \
618 for (;;) \
619 if (!fgets(line, sizeof(line), f)) { \
620 if (ferror(f)) { \
621 on_error; \
622 } \
623 break; \
624 } else
625
626 #define FOREACH_DIRENT(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 if (hidden_file((de)->d_name)) \
634 continue; \
635 else
636
637 #define FOREACH_DIRENT_ALL(de, d, on_error) \
638 for (errno = 0, de = readdir(d);; errno = 0, de = readdir(d)) \
639 if (!de) { \
640 if (errno > 0) { \
641 on_error; \
642 } \
643 break; \
644 } else
645
646 static inline void *mempset(void *s, int c, size_t n) {
647 memset(s, c, n);
648 return (uint8_t*)s + n;
649 }
650
651 char *hexmem(const void *p, size_t l);
652 int unhexmem(const char *p, size_t l, void **mem, size_t *len);
653
654 char *base32hexmem(const void *p, size_t l, bool padding);
655 int unbase32hexmem(const char *p, size_t l, bool padding, void **mem, size_t *len);
656
657 char *base64mem(const void *p, size_t l);
658 int unbase64mem(const char *p, size_t l, void **mem, size_t *len);
659
660 char *strextend(char **x, ...) _sentinel_;
661 char *strrep(const char *s, unsigned n);
662
663 void* greedy_realloc(void **p, size_t *allocated, size_t need, size_t size);
664 void* greedy_realloc0(void **p, size_t *allocated, size_t need, size_t size);
665 #define GREEDY_REALLOC(array, allocated, need) \
666 greedy_realloc((void**) &(array), &(allocated), (need), sizeof((array)[0]))
667
668 #define GREEDY_REALLOC0(array, allocated, need) \
669 greedy_realloc0((void**) &(array), &(allocated), (need), sizeof((array)[0]))
670
671 static inline void _reset_errno_(int *saved_errno) {
672 errno = *saved_errno;
673 }
674
675 #define PROTECT_ERRNO _cleanup_(_reset_errno_) __attribute__((unused)) int _saved_errno_ = errno
676
677 static inline int negative_errno(void) {
678 /* This helper should be used to shut up gcc if you know 'errno' is
679 * negative. Instead of "return -errno;", use "return negative_errno();"
680 * It will suppress bogus gcc warnings in case it assumes 'errno' might
681 * be 0 and thus the caller's error-handling might not be triggered. */
682 assert_return(errno > 0, -EINVAL);
683 return -errno;
684 }
685
686 struct _umask_struct_ {
687 mode_t mask;
688 bool quit;
689 };
690
691 static inline void _reset_umask_(struct _umask_struct_ *s) {
692 umask(s->mask);
693 };
694
695 #define RUN_WITH_UMASK(mask) \
696 for (_cleanup_(_reset_umask_) struct _umask_struct_ _saved_umask_ = { umask(mask), false }; \
697 !_saved_umask_.quit ; \
698 _saved_umask_.quit = true)
699
700 static inline unsigned u64log2(uint64_t n) {
701 #if __SIZEOF_LONG_LONG__ == 8
702 return (n > 1) ? (unsigned) __builtin_clzll(n) ^ 63U : 0;
703 #else
704 #error "Wut?"
705 #endif
706 }
707
708 static inline unsigned u32ctz(uint32_t n) {
709 #if __SIZEOF_INT__ == 4
710 return __builtin_ctz(n);
711 #else
712 #error "Wut?"
713 #endif
714 }
715
716 static inline unsigned log2i(int x) {
717 assert(x > 0);
718
719 return __SIZEOF_INT__ * 8 - __builtin_clz(x) - 1;
720 }
721
722 static inline unsigned log2u(unsigned x) {
723 assert(x > 0);
724
725 return sizeof(unsigned) * 8 - __builtin_clz(x) - 1;
726 }
727
728 static inline unsigned log2u_round_up(unsigned x) {
729 assert(x > 0);
730
731 if (x == 1)
732 return 0;
733
734 return log2u(x - 1) + 1;
735 }
736
737 static inline bool logind_running(void) {
738 return access("/run/systemd/seats/", F_OK) >= 0;
739 }
740
741 #define DECIMAL_STR_WIDTH(x) \
742 ({ \
743 typeof(x) _x_ = (x); \
744 unsigned ans = 1; \
745 while (_x_ /= 10) \
746 ans++; \
747 ans; \
748 })
749
750 int unlink_noerrno(const char *path);
751
752 #define alloca0(n) \
753 ({ \
754 char *_new_; \
755 size_t _len_ = n; \
756 _new_ = alloca(_len_); \
757 (void *) memset(_new_, 0, _len_); \
758 })
759
760 /* It's not clear what alignment glibc/gcc alloca() guarantee, hence provide a guaranteed safe version */
761 #define alloca_align(size, align) \
762 ({ \
763 void *_ptr_; \
764 size_t _mask_ = (align) - 1; \
765 _ptr_ = alloca((size) + _mask_); \
766 (void*)(((uintptr_t)_ptr_ + _mask_) & ~_mask_); \
767 })
768
769 #define alloca0_align(size, align) \
770 ({ \
771 void *_new_; \
772 size_t _size_ = (size); \
773 _new_ = alloca_align(_size_, (align)); \
774 (void*)memset(_new_, 0, _size_); \
775 })
776
777 #define strjoina(a, ...) \
778 ({ \
779 const char *_appendees_[] = { a, __VA_ARGS__ }; \
780 char *_d_, *_p_; \
781 int _len_ = 0; \
782 unsigned _i_; \
783 for (_i_ = 0; _i_ < ELEMENTSOF(_appendees_) && _appendees_[_i_]; _i_++) \
784 _len_ += strlen(_appendees_[_i_]); \
785 _p_ = _d_ = alloca(_len_ + 1); \
786 for (_i_ = 0; _i_ < ELEMENTSOF(_appendees_) && _appendees_[_i_]; _i_++) \
787 _p_ = stpcpy(_p_, _appendees_[_i_]); \
788 *_p_ = 0; \
789 _d_; \
790 })
791
792 bool id128_is_valid(const char *s) _pure_;
793
794 int split_pair(const char *s, const char *sep, char **l, char **r);
795
796 int shall_restore_state(void);
797
798 /**
799 * Normal qsort requires base to be nonnull. Here were require
800 * that only if nmemb > 0.
801 */
802 static inline void qsort_safe(void *base, size_t nmemb, size_t size, comparison_fn_t compar) {
803 if (nmemb <= 1)
804 return;
805
806 assert(base);
807 qsort(base, nmemb, size, compar);
808 }
809
810 /* Normal memmem() requires haystack to be nonnull, which is annoying for zero-length buffers */
811 static inline void *memmem_safe(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen) {
812
813 if (needlelen <= 0)
814 return (void*) haystack;
815
816 if (haystacklen < needlelen)
817 return NULL;
818
819 assert(haystack);
820 assert(needle);
821
822 return memmem(haystack, haystacklen, needle, needlelen);
823 }
824
825 int proc_cmdline(char **ret);
826 int parse_proc_cmdline(int (*parse_word)(const char *key, const char *value));
827 int get_proc_cmdline_key(const char *parameter, char **value);
828
829 int container_get_leader(const char *machine, pid_t *pid);
830
831 int namespace_open(pid_t pid, int *pidns_fd, int *mntns_fd, int *netns_fd, int *userns_fd, int *root_fd);
832 int namespace_enter(int pidns_fd, int mntns_fd, int netns_fd, int userns_fd, int root_fd);
833
834 int getpeercred(int fd, struct ucred *ucred);
835 int getpeersec(int fd, char **ret);
836
837 int writev_safe(int fd, const struct iovec *w, int j);
838
839 int mkostemp_safe(char *pattern, int flags);
840 int open_tmpfile(const char *path, int flags);
841
842 int fd_warn_permissions(const char *path, int fd);
843
844 #ifndef PERSONALITY_INVALID
845 /* personality(7) documents that 0xffffffffUL is used for querying the
846 * current personality, hence let's use that here as error
847 * indicator. */
848 #define PERSONALITY_INVALID 0xffffffffLU
849 #endif
850
851 unsigned long personality_from_string(const char *p);
852 const char *personality_to_string(unsigned long);
853
854 uint64_t physical_memory(void);
855
856 void hexdump(FILE *f, const void *p, size_t s);
857
858 union file_handle_union {
859 struct file_handle handle;
860 char padding[sizeof(struct file_handle) + MAX_HANDLE_SZ];
861 };
862 #define FILE_HANDLE_INIT { .handle.handle_bytes = MAX_HANDLE_SZ }
863
864 int update_reboot_param_file(const char *param);
865
866 int umount_recursive(const char *target, int flags);
867
868 int bind_remount_recursive(const char *prefix, bool ro);
869
870 int fflush_and_check(FILE *f);
871
872 int tempfn_xxxxxx(const char *p, const char *extra, char **ret);
873 int tempfn_random(const char *p, const char *extra, char **ret);
874 int tempfn_random_child(const char *p, const char *extra, char **ret);
875
876 int take_password_lock(const char *root);
877
878 int is_symlink(const char *path);
879 int is_dir(const char *path, bool follow);
880 int is_device_node(const char *path);
881
882 typedef enum ExtractFlags {
883 EXTRACT_RELAX = 1,
884 EXTRACT_CUNESCAPE = 2,
885 EXTRACT_CUNESCAPE_RELAX = 4,
886 EXTRACT_QUOTES = 8,
887 EXTRACT_DONT_COALESCE_SEPARATORS = 16,
888 } ExtractFlags;
889
890 int extract_first_word(const char **p, char **ret, const char *separators, ExtractFlags flags);
891 int 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);
892 int extract_many_words(const char **p, const char *separators, ExtractFlags flags, ...) _sentinel_;
893
894 int free_and_strdup(char **p, const char *s);
895
896 #define INOTIFY_EVENT_MAX (sizeof(struct inotify_event) + NAME_MAX + 1)
897
898 #define FOREACH_INOTIFY_EVENT(e, buffer, sz) \
899 for ((e) = &buffer.ev; \
900 (uint8_t*) (e) < (uint8_t*) (buffer.raw) + (sz); \
901 (e) = (struct inotify_event*) ((uint8_t*) (e) + sizeof(struct inotify_event) + (e)->len))
902
903 union inotify_event_buffer {
904 struct inotify_event ev;
905 uint8_t raw[INOTIFY_EVENT_MAX];
906 };
907
908 #define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), AT_SYMLINK_NOFOLLOW)
909
910 ssize_t fgetxattrat_fake(int dirfd, const char *filename, const char *attribute, void *value, size_t size, int flags);
911
912 int fd_setcrtime(int fd, usec_t usec);
913 int fd_getcrtime(int fd, usec_t *usec);
914 int path_getcrtime(const char *p, usec_t *usec);
915 int fd_getcrtime_at(int dirfd, const char *name, usec_t *usec, int flags);
916
917 int same_fd(int a, int b);
918
919 int chattr_fd(int fd, unsigned value, unsigned mask);
920 int chattr_path(const char *p, unsigned value, unsigned mask);
921
922 int read_attr_fd(int fd, unsigned *ret);
923 int read_attr_path(const char *p, unsigned *ret);
924
925 #define RLIMIT_MAKE_CONST(lim) ((struct rlimit) { lim, lim })
926
927 ssize_t sparse_write(int fd, const void *p, size_t sz, size_t run_length);
928
929 void sigkill_wait(pid_t *pid);
930 #define _cleanup_sigkill_wait_ _cleanup_(sigkill_wait)
931
932 int syslog_parse_priority(const char **p, int *priority, bool with_facility);
933
934 void cmsg_close_all(struct msghdr *mh);
935
936 int rename_noreplace(int olddirfd, const char *oldpath, int newdirfd, const char *newpath);
937
938 char *shell_escape(const char *s, const char *bad);
939 char *shell_maybe_quote(const char *s);
940
941 int parse_mode(const char *s, mode_t *ret);
942
943 int mount_move_root(const char *path);
944
945 int reset_uid_gid(void);
946
947 int getxattr_malloc(const char *path, const char *name, char **value, bool allow_symlink);
948 int fgetxattr_malloc(int fd, const char *name, char **value);
949
950 int send_one_fd(int transport_fd, int fd, int flags);
951 int receive_one_fd(int transport_fd, int flags);
952
953 void nop_signal_handler(int sig);
954
955 int version(void);
956
957 bool fdname_is_valid(const char *s);
958
959 bool oom_score_adjust_is_valid(int oa);
960
961 #define memory_erase(p, l) memset((p), 'x', (l))
962 void string_erase(char *x);
963
964 char *string_free_erase(char *s);
965 DEFINE_TRIVIAL_CLEANUP_FUNC(char *, string_free_erase);
966 #define _cleanup_string_free_erase_ _cleanup_(string_free_erasep)