bin: compile lttng-sessiond as C++
[lttng-tools.git] / src / common / compat / directory-handle.h
CommitLineData
18710679 1/*
ab5be9fa 2 * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
18710679 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
18710679 5 *
18710679
JG
6 */
7
8#ifndef _COMPAT_DIRECTORY_HANDLE_H
9#define _COMPAT_DIRECTORY_HANDLE_H
10
18710679 11#include <common/credentials.h>
57b14318
JG
12#include <common/macros.h>
13#include <sys/stat.h>
cbf53d23 14#include <urcu/ref.h>
18710679 15
7966af57
SM
16#ifdef __cplusplus
17extern "C" {
18#endif
19
f75c5439
MD
20enum lttng_directory_handle_rmdir_recursive_flags {
21 LTTNG_DIRECTORY_HANDLE_FAIL_NON_EMPTY_FLAG = (1U << 0),
22 LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG = (1U << 1),
23};
24
18710679
JG
25/*
26 * Some platforms, such as Solaris 10, do not support directory file descriptors
27 * and their associated functions (*at(...)), which are defined in POSIX.2008.
28 *
29 * This wrapper provides a handle that is either a copy of a directory's path
30 * or a directory file descriptors, depending on the platform's capabilities.
31 */
4fb28dfc 32#ifdef HAVE_DIRFD
dd95933f
JG
33
34struct lttng_directory_handle;
35
36typedef void (*lttng_directory_handle_destroy_cb)(
37 struct lttng_directory_handle *handle, void *data);
38
18710679 39struct lttng_directory_handle {
cbf53d23 40 struct urcu_ref ref;
0e985513 41 ino_t directory_inode;
18710679 42 int dirfd;
dd95933f
JG
43 lttng_directory_handle_destroy_cb destroy_cb;
44 void *destroy_cb_data;
18710679 45};
facc1162
JG
46
47static inline
48int lttng_directory_handle_get_dirfd(
49 const struct lttng_directory_handle *handle)
50{
51 return handle->dirfd;
52}
53
18710679
JG
54#else
55struct lttng_directory_handle {
cbf53d23 56 struct urcu_ref ref;
18710679
JG
57 char *base_path;
58};
59#endif
60
61/*
cbf53d23 62 * Create a directory handle to the provided path. Passing a NULL path
fd774fc6 63 * returns a handle to the current working directory.
18710679 64 *
cbf53d23
JG
65 * The reference to the directory handle must be released using
66 * lttng_directory_handle_put().
18710679 67 */
cbf53d23 68struct lttng_directory_handle *lttng_directory_handle_create(
18710679
JG
69 const char *path);
70
fd774fc6 71/*
cbf53d23 72 * Create a new directory handle to a path relative to an existing handle.
fd774fc6
JG
73 *
74 * The provided path must already exist. Note that the creation of a
75 * subdirectory and the creation of a handle are kept as separate operations
76 * to highlight the fact that there is an inherent race between the creation of
77 * a directory and the creation of a handle to it.
78 *
79 * Passing a NULL path effectively copies the original handle.
80 *
cbf53d23
JG
81 * The reference to the directory handle must be released using
82 * lttng_directory_handle_put().
fd774fc6 83 */
cbf53d23 84struct lttng_directory_handle *lttng_directory_handle_create_from_handle(
fd774fc6 85 const char *path,
cbf53d23 86 const struct lttng_directory_handle *ref_handle);
fd774fc6 87
15d59b1d 88/*
cbf53d23 89 * Create a new directory handle from an existing directory fd.
15d59b1d
JG
90 *
91 * The new directory handle assumes the ownership of the directory fd.
92 * Note that this method should only be used in very specific cases, such as
93 * re-creating a directory handle from a dirfd passed over a unix socket.
94 *
cbf53d23
JG
95 * The reference to the directory handle must be released using
96 * lttng_directory_handle_put().
15d59b1d 97 */
cbf53d23
JG
98struct lttng_directory_handle *lttng_directory_handle_create_from_dirfd(
99 int dirfd);
18710679 100
578e21bd
JG
101/*
102 * Copy a directory handle.
cbf53d23
JG
103 *
104 * The reference to the directory handle must be released using
105 * lttng_directory_handle_put().
578e21bd 106 */
cbf53d23
JG
107struct lttng_directory_handle *lttng_directory_handle_copy(
108 const struct lttng_directory_handle *handle);
578e21bd 109
46307ffe 110/*
cbf53d23 111 * Acquire a reference to a directory handle.
46307ffe 112 */
cbf53d23 113bool lttng_directory_handle_get(struct lttng_directory_handle *handle);
46307ffe 114
18710679 115/*
cbf53d23 116 * Release a reference to a directory handle.
18710679 117 */
cbf53d23 118void lttng_directory_handle_put(struct lttng_directory_handle *handle);
18710679
JG
119
120/*
121 * Create a subdirectory relative to a directory handle.
122 */
18710679
JG
123int lttng_directory_handle_create_subdirectory(
124 const struct lttng_directory_handle *handle,
125 const char *subdirectory,
126 mode_t mode);
127
128/*
129 * Create a subdirectory relative to a directory handle
130 * as a given user.
131 */
18710679
JG
132int lttng_directory_handle_create_subdirectory_as_user(
133 const struct lttng_directory_handle *handle,
134 const char *subdirectory,
69e3a560 135 mode_t mode, const struct lttng_credentials *creds);
18710679
JG
136
137/*
138 * Recursively create a directory relative to a directory handle.
139 */
18710679
JG
140int lttng_directory_handle_create_subdirectory_recursive(
141 const struct lttng_directory_handle *handle,
142 const char *subdirectory_path,
143 mode_t mode);
144
145/*
146 * Recursively create a directory relative to a directory handle
147 * as a given user.
148 */
18710679
JG
149int lttng_directory_handle_create_subdirectory_recursive_as_user(
150 const struct lttng_directory_handle *handle,
151 const char *subdirectory_path,
69e3a560 152 mode_t mode, const struct lttng_credentials *creds);
18710679 153
642e96c6
JG
154/*
155 * Open a file descriptor to a path relative to a directory handle.
156 */
2912cead
JG
157int lttng_directory_handle_open_file(
158 const struct lttng_directory_handle *handle,
159 const char *filename,
160 int flags, mode_t mode);
161
642e96c6
JG
162/*
163 * Open a file descriptor to a path relative to a directory handle
164 * as a given user.
165 */
2912cead
JG
166int lttng_directory_handle_open_file_as_user(
167 const struct lttng_directory_handle *handle,
168 const char *filename,
169 int flags, mode_t mode,
170 const struct lttng_credentials *creds);
171
642e96c6
JG
172/*
173 * Unlink a file to a path relative to a directory handle.
174 */
2912cead
JG
175int lttng_directory_handle_unlink_file(
176 const struct lttng_directory_handle *handle,
177 const char *filename);
178
642e96c6
JG
179/*
180 * Unlink a file to a path relative to a directory handle as a given user.
181 */
2912cead
JG
182int lttng_directory_handle_unlink_file_as_user(
183 const struct lttng_directory_handle *handle,
184 const char *filename,
185 const struct lttng_credentials *creds);
186
642e96c6
JG
187/*
188 * Rename a file from a path relative to a directory handle to a new
189 * name relative to another directory handle.
190 */
d2956687 191int lttng_directory_handle_rename(
93bed9fe
JG
192 const struct lttng_directory_handle *old_handle,
193 const char *old_name,
194 const struct lttng_directory_handle *new_handle,
195 const char *new_name);
d2956687 196
642e96c6
JG
197/*
198 * Rename a file from a path relative to a directory handle to a new
199 * name relative to another directory handle as a given user.
200 */
d2956687 201int lttng_directory_handle_rename_as_user(
93bed9fe
JG
202 const struct lttng_directory_handle *old_handle,
203 const char *old_name,
204 const struct lttng_directory_handle *new_handle,
205 const char *new_name,
d2956687
JG
206 const struct lttng_credentials *creds);
207
642e96c6
JG
208/*
209 * Remove a subdirectory relative to a directory handle.
210 */
93bed9fe 211int lttng_directory_handle_remove_subdirectory(
d2956687
JG
212 const struct lttng_directory_handle *handle,
213 const char *name);
214
642e96c6
JG
215/*
216 * Remove a subdirectory relative to a directory handle as a given user.
217 */
93bed9fe 218int lttng_directory_handle_remove_subdirectory_as_user(
d2956687
JG
219 const struct lttng_directory_handle *handle,
220 const char *name,
221 const struct lttng_credentials *creds);
222
642e96c6
JG
223/*
224 * Remove a subdirectory and remove its contents if it only
225 * consists in empty directories.
f75c5439 226 * @flags: enum lttng_directory_handle_rmdir_recursive_flags
642e96c6 227 */
93bed9fe 228int lttng_directory_handle_remove_subdirectory_recursive(
d2956687 229 const struct lttng_directory_handle *handle,
f75c5439 230 const char *name, int flags);
d2956687 231
642e96c6
JG
232/*
233 * Remove a subdirectory and remove its contents if it only
234 * consists in empty directories as a given user.
f75c5439 235 * @flags: enum lttng_directory_handle_rmdir_recursive_flags
642e96c6 236 */
93bed9fe 237int lttng_directory_handle_remove_subdirectory_recursive_as_user(
d2956687
JG
238 const struct lttng_directory_handle *handle,
239 const char *name,
f75c5439
MD
240 const struct lttng_credentials *creds,
241 int flags);
d2956687 242
57b14318
JG
243/*
244 * stat() a file relative to a directory handle.
245 */
57b14318
JG
246int lttng_directory_handle_stat(
247 const struct lttng_directory_handle *handle,
248 const char *name,
249 struct stat *stat_buf);
250
9a1a997f
JG
251/*
252 * Returns true if this directory handle is backed by a file
253 * descriptor, false otherwise.
254 */
9a1a997f
JG
255bool lttng_directory_handle_uses_fd(
256 const struct lttng_directory_handle *handle);
257
0e985513
JG
258/*
259 * Compare two directory handles.
260 *
261 * Returns true if the two directory handles are equal, false otherwise.
262 */
0e985513
JG
263bool lttng_directory_handle_equals(const struct lttng_directory_handle *lhs,
264 const struct lttng_directory_handle *rhs);
265
7966af57
SM
266
267#ifdef __cplusplus
268}
269#endif
270
18710679 271#endif /* _COMPAT_PATH_HANDLE_H */
This page took 0.048779 seconds and 4 git commands to generate.