summaryrefslogtreecommitdiff
path: root/src/shared/label.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/label.c')
-rw-r--r--src/shared/label.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/shared/label.c b/src/shared/label.c
index 6c0e96f970..59b49ecc70 100644
--- a/src/shared/label.c
+++ b/src/shared/label.c
@@ -34,6 +34,26 @@ int label_fix(const char *path, bool ignore_enoent, bool ignore_erofs) {
return 0;
}
+int mkdir_label(const char *path, mode_t mode) {
+ int r;
+
+ assert(path);
+
+ r = mac_selinux_create_file_prepare(path, S_IFDIR);
+ if (r < 0)
+ return r;
+
+ if (mkdir(path, mode) < 0)
+ r = -errno;
+
+ mac_selinux_create_file_clear();
+
+ if (r < 0)
+ return r;
+
+ return mac_smack_fix(path, false, false);
+}
+
int symlink_label(const char *old_path, const char *new_path) {
int r;