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