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