diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/label.c | 12 | ||||
-rw-r--r-- | src/shared/label.h | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/shared/label.c b/src/shared/label.c index fde39f2259..5c7cc1c906 100644 --- a/src/shared/label.c +++ b/src/shared/label.c @@ -384,3 +384,15 @@ skipped: #endif return bind(fd, addr, addrlen) < 0 ? -errno : 0; } + +int label_apply(const char *path, const char *label) { + int r = 0; + +#ifdef HAVE_SELINUX + if (!use_selinux()) + return 0; + + r = setfilecon(path, (char *)label); +#endif + return r; +} diff --git a/src/shared/label.h b/src/shared/label.h index 09e15e3c08..b190e69a61 100644 --- a/src/shared/label.h +++ b/src/shared/label.h @@ -46,6 +46,8 @@ void label_retest_selinux(void); int label_bind(int fd, const struct sockaddr *addr, socklen_t addrlen); +int label_apply(const char *path, const char *label); + int label_write_one_line_file_atomic(const char *fn, const char *line); int label_write_env_file(const char *fname, char **l); int label_fopen_temporary(const char *path, FILE **_f, char **_temp_path); |