diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-10-26 12:38:38 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-10-26 12:38:38 -0400 |
commit | 915508d0d3989b8945a8dc54d585e4eb2aa0324a (patch) | |
tree | 6b623a37eb9ab33b07d7a789eccf785c5eb017fa /src/shared/label.c | |
parent | 1040c8000f851b93ed77719752575f8b0c25a88a (diff) |
src/shared/mkdir-label.c: move and rename mkdir_label()
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared/label.c')
-rw-r--r-- | src/shared/label.c | 20 |
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; |