2 * Copyright (C) 2019 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #ifndef _COMPAT_DIRECTORY_HANDLE_H
19 #define _COMPAT_DIRECTORY_HANDLE_H
21 #include <common/macros.h>
22 #include <common/credentials.h>
24 enum lttng_directory_handle_rmdir_recursive_flags
{
25 LTTNG_DIRECTORY_HANDLE_FAIL_NON_EMPTY_FLAG
= (1U << 0),
26 LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG
= (1U << 1),
30 * Some platforms, such as Solaris 10, do not support directory file descriptors
31 * and their associated functions (*at(...)), which are defined in POSIX.2008.
33 * This wrapper provides a handle that is either a copy of a directory's path
34 * or a directory file descriptors, depending on the platform's capabilities.
37 struct lttng_directory_handle
{
42 int lttng_directory_handle_get_dirfd(
43 const struct lttng_directory_handle
*handle
)
49 struct lttng_directory_handle
{
55 * Initialize a directory handle to the provided path. Passing a NULL path
56 * returns a handle to the current working directory.
58 * An initialized directory handle must be finalized using
59 * lttng_directory_handle_fini().
62 int lttng_directory_handle_init(struct lttng_directory_handle
*handle
,
66 * Initialize a new directory handle to a path relative to an existing handle.
68 * The provided path must already exist. Note that the creation of a
69 * subdirectory and the creation of a handle are kept as separate operations
70 * to highlight the fact that there is an inherent race between the creation of
71 * a directory and the creation of a handle to it.
73 * Passing a NULL path effectively copies the original handle.
75 * An initialized directory handle must be finalized using
76 * lttng_directory_handle_fini().
79 int lttng_directory_handle_init_from_handle(
80 struct lttng_directory_handle
*new_handle
,
82 const struct lttng_directory_handle
*handle
);
85 * Initialize a new directory handle from an existing directory fd.
87 * The new directory handle assumes the ownership of the directory fd.
88 * Note that this method should only be used in very specific cases, such as
89 * re-creating a directory handle from a dirfd passed over a unix socket.
91 * An initialized directory handle must be finalized using
92 * lttng_directory_handle_fini().
95 int lttng_directory_handle_init_from_dirfd(
96 struct lttng_directory_handle
*handle
, int dirfd
);
99 * Copy a directory handle.
102 int lttng_directory_handle_copy(const struct lttng_directory_handle
*handle
,
103 struct lttng_directory_handle
*new_copy
);
106 * Move a directory handle. The original directory handle may no longer be
107 * used after this call. This call cannot fail; directly assign the
108 * return value to the new directory handle.
110 * It is safe (but unnecessary) to call lttng_directory_handle_fini on the
114 struct lttng_directory_handle
115 lttng_directory_handle_move(struct lttng_directory_handle
*original
);
118 * Release the resources of a directory handle.
121 void lttng_directory_handle_fini(struct lttng_directory_handle
*handle
);
124 * Create a subdirectory relative to a directory handle.
127 int lttng_directory_handle_create_subdirectory(
128 const struct lttng_directory_handle
*handle
,
129 const char *subdirectory
,
133 * Create a subdirectory relative to a directory handle
137 int lttng_directory_handle_create_subdirectory_as_user(
138 const struct lttng_directory_handle
*handle
,
139 const char *subdirectory
,
140 mode_t mode
, const struct lttng_credentials
*creds
);
143 * Recursively create a directory relative to a directory handle.
146 int lttng_directory_handle_create_subdirectory_recursive(
147 const struct lttng_directory_handle
*handle
,
148 const char *subdirectory_path
,
152 * Recursively create a directory relative to a directory handle
156 int lttng_directory_handle_create_subdirectory_recursive_as_user(
157 const struct lttng_directory_handle
*handle
,
158 const char *subdirectory_path
,
159 mode_t mode
, const struct lttng_credentials
*creds
);
162 * Open a file descriptor to a path relative to a directory handle.
165 int lttng_directory_handle_open_file(
166 const struct lttng_directory_handle
*handle
,
167 const char *filename
,
168 int flags
, mode_t mode
);
171 * Open a file descriptor to a path relative to a directory handle
175 int lttng_directory_handle_open_file_as_user(
176 const struct lttng_directory_handle
*handle
,
177 const char *filename
,
178 int flags
, mode_t mode
,
179 const struct lttng_credentials
*creds
);
182 * Unlink a file to a path relative to a directory handle.
185 int lttng_directory_handle_unlink_file(
186 const struct lttng_directory_handle
*handle
,
187 const char *filename
);
190 * Unlink a file to a path relative to a directory handle as a given user.
193 int lttng_directory_handle_unlink_file_as_user(
194 const struct lttng_directory_handle
*handle
,
195 const char *filename
,
196 const struct lttng_credentials
*creds
);
199 * Rename a file from a path relative to a directory handle to a new
200 * name relative to another directory handle.
203 int lttng_directory_handle_rename(
204 const struct lttng_directory_handle
*old_handle
,
205 const char *old_name
,
206 const struct lttng_directory_handle
*new_handle
,
207 const char *new_name
);
210 * Rename a file from a path relative to a directory handle to a new
211 * name relative to another directory handle as a given user.
214 int lttng_directory_handle_rename_as_user(
215 const struct lttng_directory_handle
*old_handle
,
216 const char *old_name
,
217 const struct lttng_directory_handle
*new_handle
,
218 const char *new_name
,
219 const struct lttng_credentials
*creds
);
222 * Remove a subdirectory relative to a directory handle.
225 int lttng_directory_handle_remove_subdirectory(
226 const struct lttng_directory_handle
*handle
,
230 * Remove a subdirectory relative to a directory handle as a given user.
233 int lttng_directory_handle_remove_subdirectory_as_user(
234 const struct lttng_directory_handle
*handle
,
236 const struct lttng_credentials
*creds
);
239 * Remove a subdirectory and remove its contents if it only
240 * consists in empty directories.
241 * @flags: enum lttng_directory_handle_rmdir_recursive_flags
244 int lttng_directory_handle_remove_subdirectory_recursive(
245 const struct lttng_directory_handle
*handle
,
246 const char *name
, int flags
);
249 * Remove a subdirectory and remove its contents if it only
250 * consists in empty directories as a given user.
251 * @flags: enum lttng_directory_handle_rmdir_recursive_flags
254 int lttng_directory_handle_remove_subdirectory_recursive_as_user(
255 const struct lttng_directory_handle
*handle
,
257 const struct lttng_credentials
*creds
,
260 #endif /* _COMPAT_PATH_HANDLE_H */