Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / common / compat / directory-handle.h
diff --git a/src/common/compat/directory-handle.h b/src/common/compat/directory-handle.h
deleted file mode 100644 (file)
index f50cef6..0000000
+++ /dev/null
@@ -1,213 +0,0 @@
-/*
- * Copyright (C) 2019 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License, version 2 only,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef _COMPAT_DIRECTORY_HANDLE_H
-#define _COMPAT_DIRECTORY_HANDLE_H
-
-#include <common/macros.h>
-#include <common/credentials.h>
-
-/*
- * Some platforms, such as Solaris 10, do not support directory file descriptors
- * and their associated functions (*at(...)), which are defined in POSIX.2008.
- *
- * This wrapper provides a handle that is either a copy of a directory's path
- * or a directory file descriptors, depending on the platform's capabilities.
- */
-#ifdef COMPAT_DIRFD
-struct lttng_directory_handle {
-       int dirfd;
-};
-
-static inline
-int lttng_directory_handle_get_dirfd(
-               const struct lttng_directory_handle *handle)
-{
-       return handle->dirfd;
-}
-
-#else
-struct lttng_directory_handle {
-       char *base_path;
-};
-#endif
-
-/*
- * Initialize a directory handle to the provided path. Passing a NULL path
- * returns a handle to the current working directory.
- *
- * An initialized directory handle must be finalized using
- * lttng_directory_handle_fini().
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_init(struct lttng_directory_handle *handle,
-               const char *path);
-
-/*
- * Initialize a new directory handle to a path relative to an existing handle.
- *
- * The provided path must already exist. Note that the creation of a
- * subdirectory and the creation of a handle are kept as separate operations
- * to highlight the fact that there is an inherent race between the creation of
- * a directory and the creation of a handle to it.
- *
- * Passing a NULL path effectively copies the original handle.
- *
- * An initialized directory handle must be finalized using
- * lttng_directory_handle_fini().
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_init_from_handle(
-               struct lttng_directory_handle *new_handle,
-               const char *path,
-               const struct lttng_directory_handle *handle);
-
-/*
- * Initialize a new directory handle from an existing directory fd.
- *
- * The new directory handle assumes the ownership of the directory fd.
- * Note that this method should only be used in very specific cases, such as
- * re-creating a directory handle from a dirfd passed over a unix socket.
- *
- * An initialized directory handle must be finalized using
- * lttng_directory_handle_fini().
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_init_from_dirfd(
-               struct lttng_directory_handle *handle, int dirfd);
-
-/*
- * Copy a directory handle.
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_copy(const struct lttng_directory_handle *handle,
-               struct lttng_directory_handle *new_copy);
-
-/*
- * Move a directory handle. The original directory handle may no longer be
- * used after this call. This call cannot fail; directly assign the
- * return value to the new directory handle.
- *
- * It is safe (but unnecessary) to call lttng_directory_handle_fini on the
- * original handle.
- */
-LTTNG_HIDDEN
-struct lttng_directory_handle
-lttng_directory_handle_move(struct lttng_directory_handle *original);
-
-/*
- * Release the resources of a directory handle.
- */
-LTTNG_HIDDEN
-void lttng_directory_handle_fini(struct lttng_directory_handle *handle);
-
-/*
- * Create a subdirectory relative to a directory handle.
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_create_subdirectory(
-               const struct lttng_directory_handle *handle,
-               const char *subdirectory,
-               mode_t mode);
-
-/*
- * Create a subdirectory relative to a directory handle
- * as a given user.
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_create_subdirectory_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *subdirectory,
-               mode_t mode, const struct lttng_credentials *creds);
-
-/*
- * Recursively create a directory relative to a directory handle.
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_create_subdirectory_recursive(
-               const struct lttng_directory_handle *handle,
-               const char *subdirectory_path,
-               mode_t mode);
-
-/*
- * Recursively create a directory relative to a directory handle
- * as a given user.
- */
-LTTNG_HIDDEN
-int lttng_directory_handle_create_subdirectory_recursive_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *subdirectory_path,
-               mode_t mode, const struct lttng_credentials *creds);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_open_file(
-               const struct lttng_directory_handle *handle,
-               const char *filename,
-               int flags, mode_t mode);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_open_file_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *filename,
-               int flags, mode_t mode,
-               const struct lttng_credentials *creds);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_unlink_file(
-               const struct lttng_directory_handle *handle,
-               const char *filename);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_unlink_file_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *filename,
-               const struct lttng_credentials *creds);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_rename(
-               const struct lttng_directory_handle *handle,
-               const char *old, const char *new);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_rename_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *old, const char *new,
-               const struct lttng_credentials *creds);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_rmdir(
-               const struct lttng_directory_handle *handle,
-               const char *name);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_rmdir_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *name,
-               const struct lttng_credentials *creds);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_rmdir_recursive(
-               const struct lttng_directory_handle *handle,
-               const char *name);
-
-LTTNG_HIDDEN
-int lttng_directory_handle_rmdir_recursive_as_user(
-               const struct lttng_directory_handle *handle,
-               const char *name,
-               const struct lttng_credentials *creds);
-
-#endif /* _COMPAT_PATH_HANDLE_H */
This page took 0.025756 seconds and 4 git commands to generate.