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