chiark / gitweb /
834766c90a40befcbafc1616f8d913df48b8f171
[elogind.git] / src / basic / fd-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <dirent.h>
5 #include <stdbool.h>
6 #include <stdio.h>
7 #include <sys/socket.h>
8
9 #include "macro.h"
10
11 /* Make sure we can distinguish fd 0 and NULL */
12 #define FD_TO_PTR(fd) INT_TO_PTR((fd)+1)
13 #define PTR_TO_FD(p) (PTR_TO_INT(p)-1)
14
15 int close_nointr(int fd);
16 int safe_close(int fd);
17 void safe_close_pair(int p[]);
18
19 static inline int safe_close_above_stdio(int fd) {
20         if (fd < 3) /* Don't close stdin/stdout/stderr, but still invalidate the fd by returning -1 */
21                 return -1;
22
23         return safe_close(fd);
24 }
25
26 void close_many(const int fds[], size_t n_fd);
27
28 int fclose_nointr(FILE *f);
29 FILE* safe_fclose(FILE *f);
30 #if 0 /// UNNEEDED by elogind
31 DIR* safe_closedir(DIR *f);
32 #endif // 0
33
34 static inline void closep(int *fd) {
35         safe_close(*fd);
36 }
37
38 static inline void close_pairp(int (*p)[2]) {
39         safe_close_pair(*p);
40 }
41
42 static inline void fclosep(FILE **f) {
43         safe_fclose(*f);
44 }
45
46 DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, pclose);
47 DEFINE_TRIVIAL_CLEANUP_FUNC(DIR*, closedir);
48
49 #define _cleanup_close_ _cleanup_(closep)
50 #define _cleanup_fclose_ _cleanup_(fclosep)
51 #define _cleanup_pclose_ _cleanup_(pclosep)
52 #define _cleanup_closedir_ _cleanup_(closedirp)
53 #define _cleanup_close_pair_ _cleanup_(close_pairp)
54
55 int fd_nonblock(int fd, bool nonblock);
56 int fd_cloexec(int fd, bool cloexec);
57
58 int close_all_fds(const int except[], size_t n_except);
59
60 #if 0 /// UNNEEDED by elogind
61 int same_fd(int a, int b);
62
63 void cmsg_close_all(struct msghdr *mh);
64
65 bool fdname_is_valid(const char *s);
66 #endif // 0
67
68 int fd_get_path(int fd, char **ret);
69
70 int move_fd(int from, int to, int cloexec);
71
72 enum {
73         ACQUIRE_NO_DEV_NULL = 1 << 0,
74         ACQUIRE_NO_MEMFD    = 1 << 1,
75         ACQUIRE_NO_PIPE     = 1 << 2,
76         ACQUIRE_NO_TMPFILE  = 1 << 3,
77         ACQUIRE_NO_REGULAR  = 1 << 4,
78 };
79
80 int acquire_data_fd(const void *data, size_t size, unsigned flags);
81
82 int fd_duplicate_data_fd(int fd);
83
84 /* Hint: ENETUNREACH happens if we try to connect to "non-existing" special IP addresses, such as ::5 */
85 #define ERRNO_IS_DISCONNECT(r) \
86         IN_SET(r, ENOTCONN, ECONNRESET, ECONNREFUSED, ECONNABORTED, EPIPE, ENETUNREACH)
87
88 /* Resource exhaustion, could be our fault or general system trouble */
89 #define ERRNO_IS_RESOURCE(r) \
90         IN_SET(r, ENOMEM, EMFILE, ENFILE)
91
92 int fd_move_above_stdio(int fd);
93
94 int rearrange_stdio(int original_input_fd, int original_output_fd, int original_error_fd);
95
96 static inline int make_null_stdio(void) {
97         return rearrange_stdio(-1, -1, -1);
98 }
99
100 /* Like TAKE_PTR() but for file descriptors, resetting them to -1 */
101 #define TAKE_FD(fd)                             \
102         ({                                      \
103                 int _fd_ = (fd);                \
104                 (fd) = -1;                      \
105                 _fd_;                           \
106         })
107
108 int fd_reopen(int fd, int flags);
109
110 int read_nr_open(void);