summaryrefslogtreecommitdiffstats
path: root/src/shared/label-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/label-util.h')
-rw-r--r--src/shared/label-util.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/shared/label-util.h b/src/shared/label-util.h
new file mode 100644
index 0000000..7fb98c7
--- /dev/null
+++ b/src/shared/label-util.h
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+#pragma once
+
+#include <fcntl.h>
+#include <stdbool.h>
+#include <sys/types.h>
+
+typedef enum LabelFixFlags {
+ LABEL_IGNORE_ENOENT = 1 << 0,
+ LABEL_IGNORE_EROFS = 1 << 1,
+} LabelFixFlags;
+
+int label_fix_full(int atfd, const char *inode_path, const char *label_path, LabelFixFlags flags);
+
+static inline int label_fix(const char *path, LabelFixFlags flags) {
+ return label_fix_full(AT_FDCWD, path, path, flags);
+}
+
+int symlink_label(const char *old_path, const char *new_path);
+int symlink_atomic_full_label(const char *from, const char *to, bool make_relative);
+static inline int symlink_atomic_label(const char *from, const char *to) {
+ return symlink_atomic_full_label(from, to, false);
+}
+int mknod_label(const char *pathname, mode_t mode, dev_t dev);
+
+int btrfs_subvol_make_label(const char *path);
+
+int mac_init(void);
+int mac_init_lazy(void);