]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/util.h
nspawn: _cleanup_free_ more
[thirdparty/systemd.git] / src / shared / 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
60918275
LP
24#include <inttypes.h>
25#include <time.h>
26#include <sys/time.h>
ec2002f8 27#include <stdarg.h>
60918275 28#include <stdbool.h>
5cb5a6ff 29#include <stdlib.h>
80876c20 30#include <stdio.h>
9a34ec5f 31#include <signal.h>
82c121a4 32#include <sched.h>
8f75a603 33#include <limits.h>
00dc5d76 34#include <sys/stat.h>
3b63d2d3 35#include <dirent.h>
68faf98c 36#include <sys/resource.h>
60918275 37
a838e6a1
LP
38#include "macro.h"
39
60918275 40typedef uint64_t usec_t;
952d817a 41typedef uint64_t nsec_t;
60918275 42
63983207 43typedef struct dual_timestamp {
871d7de4
LP
44 usec_t realtime;
45 usec_t monotonic;
63983207 46} dual_timestamp;
871d7de4 47
034c6ed7
LP
48#define MSEC_PER_SEC 1000ULL
49#define USEC_PER_SEC 1000000ULL
50#define USEC_PER_MSEC 1000ULL
51#define NSEC_PER_SEC 1000000000ULL
52#define NSEC_PER_MSEC 1000000ULL
60918275
LP
53#define NSEC_PER_USEC 1000ULL
54
24a6e4a4 55#define USEC_PER_MINUTE (60ULL*USEC_PER_SEC)
d88a251b 56#define NSEC_PER_MINUTE (60ULL*NSEC_PER_SEC)
24a6e4a4 57#define USEC_PER_HOUR (60ULL*USEC_PER_MINUTE)
d88a251b 58#define NSEC_PER_HOUR (60ULL*NSEC_PER_MINUTE)
24a6e4a4 59#define USEC_PER_DAY (24ULL*USEC_PER_HOUR)
d88a251b 60#define NSEC_PER_DAY (24ULL*NSEC_PER_HOUR)
24a6e4a4 61#define USEC_PER_WEEK (7ULL*USEC_PER_DAY)
d88a251b 62#define NSEC_PER_WEEK (7ULL*NSEC_PER_DAY)
584be568 63#define USEC_PER_MONTH (2629800ULL*USEC_PER_SEC)
d88a251b 64#define NSEC_PER_MONTH (2629800ULL*NSEC_PER_SEC)
584be568 65#define USEC_PER_YEAR (31557600ULL*USEC_PER_SEC)
d88a251b 66#define NSEC_PER_YEAR (31557600ULL*NSEC_PER_SEC)
24a6e4a4 67
44d8db9e 68/* What is interpreted as whitespace? */
4a72ff34 69#define WHITESPACE " \t\n\r"
7072ced8 70#define NEWLINE "\n\r"
97c4a07d
LP
71#define QUOTES "\"\'"
72#define COMMENTS "#;\n"
44d8db9e 73
8b6c7120 74#define FORMAT_TIMESTAMP_MAX 64
584be568 75#define FORMAT_TIMESTAMP_PRETTY_MAX 256
871d7de4 76#define FORMAT_TIMESPAN_MAX 64
a7bc2c2a 77#define FORMAT_BYTES_MAX 8
8b6c7120 78
c1072ea0 79#define ANSI_HIGHLIGHT_ON "\x1B[1;39m"
281605bf 80#define ANSI_HIGHLIGHT_RED_ON "\x1B[1;31m"
2ee68f72 81#define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m"
5f23d5b1 82#define ANSI_HIGHLIGHT_YELLOW_ON "\x1B[1;33m"
61cbdc4b
LP
83#define ANSI_HIGHLIGHT_OFF "\x1B[0m"
84
60918275
LP
85usec_t now(clockid_t clock);
86
63983207 87dual_timestamp* dual_timestamp_get(dual_timestamp *ts);
a185c5aa 88dual_timestamp* dual_timestamp_from_realtime(dual_timestamp *ts, usec_t u);
871d7de4 89
b0c918b9
LP
90#define dual_timestamp_is_set(ts) ((ts)->realtime > 0)
91
60918275
LP
92usec_t timespec_load(const struct timespec *ts);
93struct timespec *timespec_store(struct timespec *ts, usec_t u);
94
95usec_t timeval_load(const struct timeval *tv);
96struct timeval *timeval_store(struct timeval *tv, usec_t u);
97
37f85e66 98size_t page_size(void);
99#define PAGE_ALIGN(l) ALIGN_TO((l), page_size())
100
60918275 101#define streq(a,b) (strcmp((a),(b)) == 0)
3846aeeb 102#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
60918275 103
e05797fb
LP
104bool streq_ptr(const char *a, const char *b);
105
60918275
LP
106#define new(t, n) ((t*) malloc(sizeof(t)*(n)))
107
108#define new0(t, n) ((t*) calloc((n), sizeof(t)))
109
0f0dbc46
LP
110#define newa(t, n) ((t*) alloca(sizeof(t)*(n)))
111
4d768ced 112#define newdup(t, p, n) ((t*) memdup(p, sizeof(t)*(n)))
888c7102 113
60918275
LP
114#define malloc0(n) (calloc((n), 1))
115
116static inline const char* yes_no(bool b) {
117 return b ? "yes" : "no";
118}
119
120static inline const char* strempty(const char *s) {
121 return s ? s : "";
122}
123
124static inline const char* strnull(const char *s) {
125 return s ? s : "(null)";
126}
127
04fd6fe4
LP
128static inline const char *strna(const char *s) {
129 return s ? s : "n/a";
130}
131
9beb3f4d
LP
132static inline bool isempty(const char *p) {
133 return !p || !p[0];
134}
135
60918275
LP
136bool endswith(const char *s, const char *postfix);
137bool startswith(const char *s, const char *prefix);
3177a7fa 138bool startswith_no_case(const char *s, const char *prefix);
60918275 139
79d6d816
LP
140bool first_word(const char *s, const char *word);
141
42f4e3c4 142int close_nointr(int fd);
85f136b5 143void close_nointr_nofail(int fd);
5b6319dc 144void close_many(const int fds[], unsigned n_fd);
60918275 145
85261803 146int parse_boolean(const char *v);
24a6e4a4 147int parse_usec(const char *t, usec_t *usec);
d88a251b 148int parse_nsec(const char *t, nsec_t *nsec);
ab1f0633 149int parse_bytes(const char *t, off_t *bytes);
3ba686c1 150int parse_pid(const char *s, pid_t* ret_pid);
034a2a52
LP
151int parse_uid(const char *s, uid_t* ret_uid);
152#define parse_gid(s, ret_uid) parse_uid(s, ret_uid)
85261803
LP
153
154int safe_atou(const char *s, unsigned *ret_u);
155int safe_atoi(const char *s, int *ret_i);
156
8f75a603
LP
157int safe_atollu(const char *s, unsigned long long *ret_u);
158int safe_atolli(const char *s, long long int *ret_i);
159
160#if __WORDSIZE == 32
161static inline int safe_atolu(const char *s, unsigned long *ret_u) {
162 assert_cc(sizeof(unsigned long) == sizeof(unsigned));
163 return safe_atou(s, (unsigned*) ret_u);
164}
165static inline int safe_atoli(const char *s, long int *ret_u) {
166 assert_cc(sizeof(long int) == sizeof(int));
167 return safe_atoi(s, (int*) ret_u);
168}
169#else
170static inline int safe_atolu(const char *s, unsigned long *ret_u) {
171 assert_cc(sizeof(unsigned long) == sizeof(unsigned long long));
172 return safe_atollu(s, (unsigned long long*) ret_u);
173}
174static inline int safe_atoli(const char *s, long int *ret_u) {
175 assert_cc(sizeof(long int) == sizeof(long long int));
176 return safe_atolli(s, (long long int*) ret_u);
177}
178#endif
179
a838e6a1
LP
180static inline int safe_atou32(const char *s, uint32_t *ret_u) {
181 assert_cc(sizeof(uint32_t) == sizeof(unsigned));
182 return safe_atou(s, (unsigned*) ret_u);
183}
184
8f75a603 185static inline int safe_atoi32(const char *s, int32_t *ret_i) {
a838e6a1 186 assert_cc(sizeof(int32_t) == sizeof(int));
8f75a603 187 return safe_atoi(s, (int*) ret_i);
a838e6a1
LP
188}
189
8f75a603
LP
190static inline int safe_atou64(const char *s, uint64_t *ret_u) {
191 assert_cc(sizeof(uint64_t) == sizeof(unsigned long long));
192 return safe_atollu(s, (unsigned long long*) ret_u);
193}
034c6ed7 194
8f75a603
LP
195static inline int safe_atoi64(const char *s, int64_t *ret_i) {
196 assert_cc(sizeof(int64_t) == sizeof(long long int));
197 return safe_atolli(s, (long long int*) ret_i);
198}
034c6ed7 199
65d2ebdc 200char *split(const char *c, size_t *l, const char *separator, char **state);
034c6ed7 201char *split_quoted(const char *c, size_t *l, char **state);
a41e8209 202
034c6ed7 203#define FOREACH_WORD(word, length, s, state) \
f62c0e4f 204 for ((state) = NULL, (word) = split((s), &(length), WHITESPACE, &(state)); (word); (word) = split((s), &(length), WHITESPACE, &(state)))
65d2ebdc
LP
205
206#define FOREACH_WORD_SEPARATOR(word, length, s, separator, state) \
f62c0e4f 207 for ((state) = NULL, (word) = split((s), &(length), (separator), &(state)); (word); (word) = split((s), &(length), (separator), &(state)))
a41e8209 208
034c6ed7 209#define FOREACH_WORD_QUOTED(word, length, s, state) \
f62c0e4f 210 for ((state) = NULL, (word) = split_quoted((s), &(length), &(state)); (word); (word) = split_quoted((s), &(length), &(state)))
034c6ed7 211
034c6ed7 212pid_t get_parent_of_pid(pid_t pid, pid_t *ppid);
7640a5de 213int get_starttime_of_pid(pid_t pid, unsigned long long *st);
034c6ed7
LP
214
215int write_one_line_file(const char *fn, const char *line);
34ca941c 216int write_one_line_file_atomic(const char *fn, const char *line);
034c6ed7 217int read_one_line_file(const char *fn, char **line);
34ca941c 218int read_full_file(const char *fn, char **contents, size_t *size);
97c4a07d 219
c899f8c6 220int parse_env_file(const char *fname, const char *separator, ...) _sentinel_;
8c7be95e 221int load_env_file(const char *fname, char ***l);
7640a5de 222int write_env_file(const char *fname, char **l);
034c6ed7 223
44d8db9e 224char *strappend(const char *s, const char *suffix);
fab56fc5
LP
225char *strnappend(const char *s, const char *suffix, size_t length);
226
227char *replace_env(const char *format, char **env);
228char **replace_env_argv(char **argv, char **env);
44d8db9e 229
87f0e418 230int readlink_malloc(const char *p, char **r);
2c7108c4 231int readlink_and_make_absolute(const char *p, char **r);
83096483 232int readlink_and_canonicalize(const char *p, char **r);
87f0e418 233
2a987ee8
LP
234int reset_all_signal_handlers(void);
235
4a72ff34 236char *strstrip(char *s);
ee9b5e01 237char *delete_chars(char *s, const char *bad);
7072ced8 238char *truncate_nl(char *s);
ee9b5e01 239
4a72ff34
LP
240char *file_in_same_dir(const char *path, const char *filename);
241
c32dd69b
LP
242int rmdir_parents(const char *path, const char *stop);
243
87d2c1ff
LP
244int get_process_comm(pid_t pid, char **name);
245int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
246int get_process_exe(pid_t pid, char **name);
7e4ab3c5 247int get_process_uid(pid_t pid, uid_t *uid);
7072ced8 248
fb624d04 249char hexchar(int x);
4fe88d28
LP
250int unhexchar(char c);
251char octchar(int x);
252int unoctchar(char c);
5af98f82
LP
253char decchar(int x);
254int undecchar(char c);
4fe88d28
LP
255
256char *cescape(const char *s);
257char *cunescape(const char *s);
6febfd0d 258char *cunescape_length(const char *s, size_t length);
5b4c61cd 259char *cunescape_length_with_prefix(const char *s, size_t length, const char *prefix);
6febfd0d
LP
260
261char *xescape(const char *s, const char *bad);
262
263char *bus_path_escape(const char *s);
264char *bus_path_unescape(const char *s);
4fe88d28 265
4fe88d28
LP
266char *ascii_strlower(char *path);
267
87d2c1ff
LP
268bool dirent_is_file(const struct dirent *de);
269bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix);
270
c85dc17b
LP
271bool ignore_file(const char *filename);
272
db12775d
LP
273bool chars_intersect(const char *a, const char *b);
274
8b6c7120 275char *format_timestamp(char *buf, size_t l, usec_t t);
584be568 276char *format_timestamp_pretty(char *buf, size_t l, usec_t t);
871d7de4 277char *format_timespan(char *buf, size_t l, usec_t t);
8b6c7120 278
843d2643 279int make_stdio(int fd);
ade509ce 280int make_null_stdio(void);
cd3bd60a 281int make_console_stdio(void);
843d2643 282
d3782d60
LP
283unsigned long long random_ull(void);
284
4e240ab0
MS
285#define __DEFINE_STRING_TABLE_LOOKUP(name,type,scope) \
286 scope const char *name##_to_string(type i) { \
1dccbe19
LP
287 if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \
288 return NULL; \
289 return name##_table[i]; \
290 } \
4e240ab0 291 scope type name##_from_string(const char *s) { \
1dccbe19 292 type i; \
a7610064 293 unsigned u = 0; \
1dccbe19
LP
294 assert(s); \
295 for (i = 0; i < (type)ELEMENTSOF(name##_table); i++) \
4fd5948e
LP
296 if (name##_table[i] && \
297 streq(name##_table[i], s)) \
1dccbe19 298 return i; \
d3725859
LP
299 if (safe_atou(s, &u) >= 0 && \
300 u < ELEMENTSOF(name##_table)) \
301 return (type) u; \
1dccbe19
LP
302 return (type) -1; \
303 } \
304 struct __useless_struct_to_allow_trailing_semicolon__
305
4e240ab0
MS
306#define DEFINE_STRING_TABLE_LOOKUP(name,type) __DEFINE_STRING_TABLE_LOOKUP(name,type,)
307#define DEFINE_PRIVATE_STRING_TABLE_LOOKUP(name,type) __DEFINE_STRING_TABLE_LOOKUP(name,type,static)
1dccbe19 308
3a0ecb08
LP
309int fd_nonblock(int fd, bool nonblock);
310int fd_cloexec(int fd, bool cloexec);
311
a0d40ac5
LP
312int close_all_fds(const int except[], unsigned n_except);
313
42856c10
LP
314bool fstype_is_network(const char *fstype);
315
601f6a1e
LP
316int chvt(int vt);
317
8f2d43a0 318int read_one_char(FILE *f, char *ret, usec_t timeout, bool *need_nl);
80876c20
LP
319int ask(char *ret, const char *replies, const char *text, ...);
320
512947d4 321int reset_terminal_fd(int fd, bool switch_to_text);
6ea832a2
LP
322int reset_terminal(const char *name);
323
80876c20 324int open_terminal(const char *name, int mode);
af6da548 325int acquire_terminal(const char *name, bool fail, bool force, bool ignore_tiocstty_eperm, usec_t timeout);
80876c20
LP
326int release_terminal(void);
327
328int flush_fd(int fd);
329
9a34ec5f
LP
330int ignore_signals(int sig, ...);
331int default_signals(int sig, ...);
332int sigaction_many(const struct sigaction *sa, ...);
a337c6fc 333
8d567588 334int close_pipe(int p[]);
5a3ab509 335int fopen_temporary(const char *path, FILE **_f, char **_temp_path);
8d567588 336
eb22ac37
LP
337ssize_t loop_read(int fd, void *buf, size_t nbytes, bool do_poll);
338ssize_t loop_write(int fd, const void *buf, size_t nbytes, bool do_poll);
8d567588 339
8407a5d0
LP
340bool is_device_path(const char *path);
341
01f78473
LP
342int dir_is_empty(const char *path);
343
5b6319dc 344void rename_process(const char name[8]);
2d368c14 345
7d793605
LP
346void sigset_add_many(sigset_t *ss, ...);
347
344de609 348bool hostname_is_set(void);
7c5f152a
LP
349
350char* gethostname_malloc(void);
ef2f1067 351char* getlogname_malloc(void);
7c5f152a 352char* getusername_malloc(void);
fc116c6a
LP
353
354int getttyname_malloc(int fd, char **r);
355int getttyname_harder(int fd, char **r);
356
4d6d6518
LP
357int get_ctty_devnr(pid_t pid, dev_t *d);
358int get_ctty(pid_t, dev_t *_devnr, char **r);
8c6db833
LP
359
360int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid);
f4b47811 361int fchmod_and_fchown(int fd, mode_t mode, uid_t uid, gid_t gid);
8c6db833 362
597f43c7 363int rm_rf_children(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev);
f56d5db9 364int rm_rf_children_dangerous(int fd, bool only_dirs, bool honour_sticky, struct stat *root_dev);
ad293f5a 365int rm_rf(const char *path, bool only_dirs, bool delete_root, bool honour_sticky);
f56d5db9 366int rm_rf_dangerous(const char *path, bool only_dirs, bool delete_root, bool honour_sticky);
ef2f1067 367
1325aa42
LP
368int pipe_eof(int fd);
369
82c121a4
LP
370cpu_set_t* cpu_set_malloc(unsigned *ncpus);
371
67e5cc4f
LP
372void status_vprintf(const char *status, bool ellipse, const char *format, va_list ap);
373void status_printf(const char *status, bool ellipse, const char *format, ...);
c846ff47 374void status_welcome(void);
9e58ff9c 375
81beb750 376int fd_columns(int fd);
72f59706 377unsigned columns(void);
11f96fac 378unsigned columns_uncached(void);
fa776d8e 379
8f2d43a0
LP
380int fd_lines(int fd);
381unsigned lines(void);
382
b4f10a5e
LP
383int running_in_chroot(void);
384
72f59706
LP
385char *ellipsize(const char *s, size_t length, unsigned percent);
386char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigned percent);
8fe914ec 387
f6144808
LP
388int touch(const char *path);
389
97c4a07d 390char *unquote(const char *s, const char *quotes);
5f7c426e 391char *normalize_env_assignment(const char *s);
11ce3427 392
8e12a6ae 393int wait_for_terminate(pid_t pid, siginfo_t *status);
97c4a07d 394int wait_for_terminate_and_warn(const char *name, pid_t pid);
2e78aa99 395
3c14d26c
LP
396_noreturn_ void freeze(void);
397
00dc5d76 398bool null_or_empty(struct stat *st);
83096483 399int null_or_empty_path(const char *fn);
00dc5d76 400
a247755d 401DIR *xopendirat(int dirfd, const char *name, int flags);
3b63d2d3 402
10717a1a 403void dual_timestamp_serialize(FILE *f, const char *name, dual_timestamp *t);
799fd0fd 404void dual_timestamp_deserialize(const char *value, dual_timestamp *t);
10717a1a 405
e23a0ce8
LP
406char *fstab_node_to_udev_node(const char *p);
407
f212ac12 408bool tty_is_vc(const char *tty);
3043935f 409bool tty_is_vc_resolve(const char *tty);
d1122ad5 410bool tty_is_console(const char *tty);
98a28fef 411int vtnr_from_tty(const char *tty);
e3aa71c3
LP
412const char *default_term_for_tty(const char *tty);
413
83cc030f
LP
414void execute_directory(const char *directory, DIR *_d, char *argv[]);
415
430c18ed
LP
416int kill_and_sigcont(pid_t pid, int sig);
417
05feefe0
LP
418bool nulstr_contains(const char*nulstr, const char *needle);
419
6faa1114
LP
420bool plymouth_running(void);
421
9beb3f4d
LP
422bool hostname_is_valid(const char *s);
423char* hostname_cleanup(char *s);
424
425char* strshorten(char *s, size_t l);
426
6ea832a2
LP
427int terminal_vhangup_fd(int fd);
428int terminal_vhangup(const char *name);
429
430int vt_disallocate(const char *name);
431
34ca941c 432int copy_file(const char *from, const char *to);
424a19f8
LP
433
434int symlink_atomic(const char *from, const char *to);
34ca941c
LP
435
436int fchmod_umask(int fd, mode_t mode);
437
4d6d6518
LP
438bool display_is_local(const char *display);
439int socket_from_display(const char *display, char **path);
440
d05c5031 441int get_user_creds(const char **username, uid_t *uid, gid_t *gid, const char **home, const char **shell);
4b67834e 442int get_group_creds(const char **groupname, gid_t *gid);
1cccf435 443
43673799
LP
444int in_group(const char *name);
445
8092a428
LP
446int glob_exists(const char *path);
447
83096483
LP
448int dirent_ensure_type(DIR *d, struct dirent *de);
449
450int in_search_path(const char *path, char **search);
034a2a52 451int get_files_in_directory(const char *path, char ***list);
83096483 452
b7def684 453char *strjoin(const char *x, ...) _sentinel_;
911a4828 454
b636465b
LP
455bool is_main_thread(void);
456
ab1f0633
LP
457bool in_charset(const char *s, const char* charset);
458
94959f0f
LP
459int block_get_whole_disk(dev_t d, dev_t *ret);
460
8d53b453 461int file_is_priv_sticky(const char *p);
ad293f5a 462
fb9de93d
LP
463int strdup_or_null(const char *a, char **b);
464
e23a0ce8 465#define NULSTR_FOREACH(i, l) \
c4e2ceae
LP
466 for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
467
5c0532d1
LP
468#define NULSTR_FOREACH_PAIR(i, j, l) \
469 for ((i) = (l), (j) = strchr((i), 0)+1; (i) && *(i); (i) = strchr((j), 0)+1, (j) = *(i) ? strchr((i), 0)+1 : (i))
470
1dccbe19
LP
471const char *ioprio_class_to_string(int i);
472int ioprio_class_from_string(const char *s);
473
474const char *sigchld_code_to_string(int i);
475int sigchld_code_from_string(const char *s);
476
7d76f312
LP
477const char *log_facility_unshifted_to_string(int i);
478int log_facility_unshifted_from_string(const char *s);
1dccbe19
LP
479
480const char *log_level_to_string(int i);
481int log_level_from_string(const char *s);
482
483const char *sched_policy_to_string(int i);
484int sched_policy_from_string(const char *s);
485
486const char *rlimit_to_string(int i);
487int rlimit_from_string(const char *s);
488
4fd5948e
LP
489const char *ip_tos_to_string(int i);
490int ip_tos_from_string(const char *s);
491
2e22afe9
LP
492const char *signal_to_string(int i);
493int signal_from_string(const char *s);
494
8a0867d6
LP
495int signal_from_string_try_harder(const char *s);
496
9a0e6896
LP
497extern int saved_argc;
498extern char **saved_argv;
499
65457142
FC
500bool kexec_loaded(void);
501
87d2c1ff
LP
502int prot_from_flags(int flags);
503
babfc091
LP
504char *format_bytes(char *buf, size_t l, off_t t);
505
8f2d43a0 506int fd_wait_for_event(int fd, int event, usec_t timeout);
df50185b 507
55d7bfc1
LP
508void* memdup(const void *p, size_t l);
509
1e5678d0
LP
510int is_kernel_thread(pid_t pid);
511
bb99a35a
LP
512int fd_inc_sndbuf(int fd, size_t n);
513int fd_inc_rcvbuf(int fd, size_t n);
6bb92a16 514
9bdc770c 515int fork_agent(pid_t *pid, const int except[], unsigned n_except, const char *path, ...);
6bb92a16 516
68faf98c
LP
517int setrlimit_closest(int resource, const struct rlimit *rlim);
518
ab94af92
LP
519int getenv_for_pid(pid_t pid, const char *field, char **_value);
520
d889a206
LP
521int can_sleep(const char *type);
522
49dbfa7b
LP
523bool is_valid_documentation_url(const char *url);
524
9be346c9 525bool in_initrd(void);
069cfc85
LP
526
527void warn_melody(void);
528
7c5f152a
LP
529int get_shell(char **ret);
530int get_home_dir(char **ret);
2fbe635a
LP
531
532void freep(void *p);
533void fclosep(FILE **f);
e67f47e5 534void closep(int *fd);
a05f97b3 535void closedirp(DIR **d);