From 66b6d9d5b5b13a97c9f275aed0d9fe5608495be9 Mon Sep 17 00:00:00 2001 From: WaLyong Cho Date: Thu, 23 Oct 2014 17:23:45 +0900 Subject: label: rearrange mandatory access control(MAC) apis move label apis to selinux-util.ch or smack-util.ch appropriately. --- src/shared/selinux-util.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'src/shared/selinux-util.h') diff --git a/src/shared/selinux-util.h b/src/shared/selinux-util.h index 4b81202741..bdde8f5a24 100644 --- a/src/shared/selinux-util.h +++ b/src/shared/selinux-util.h @@ -21,7 +21,34 @@ along with systemd; If not, see . ***/ +#include +#include #include bool use_selinux(void); void retest_selinux(void); + +int label_init(const char *prefix); +int label_fix_selinux(const char *path, bool ignore_enoent, bool ignore_erofs); +void label_finish(void); + +int label_socket_set(const char *label); +void label_socket_clear(void); + +int label_context_set(const char *path, mode_t mode); +void label_context_clear(void); + +void label_free(const char *label); +int label_mkdir_selinux(const char *path, mode_t mode); + +int label_get_create_label_from_exe(const char *exe, char **label); +int label_get_our_label(char **label); +int label_get_child_mls_label(int socket_fd, const char *exec, char **label); + +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); -- cgit v1.2.3-54-g00ecf