summaryrefslogtreecommitdiff
path: root/src/shared/selinux-util.h
diff options
context:
space:
mode:
authorWaLyong Cho <walyong.cho@samsung.com>2014-10-25 13:28:03 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-10-25 13:28:03 -0400
commit1b6c7e7255cf5d03d049f63dfdea24f6f64328d1 (patch)
tree610cdafe2c6e04fe7af8d8211d728d9ced85b98e /src/shared/selinux-util.h
parenta79876e097b87ede8c75301a99e4cd964b83a933 (diff)
label: rearrange mandatory access control(MAC) apis
move label apis to selinux-util.ch or smack-util.ch appropriately. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared/selinux-util.h')
-rw-r--r--src/shared/selinux-util.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/shared/selinux-util.h b/src/shared/selinux-util.h
index 3bcd17ce7a..8a52b6840c 100644
--- a/src/shared/selinux-util.h
+++ b/src/shared/selinux-util.h
@@ -19,7 +19,34 @@
#pragma once
+#include <sys/socket.h>
+#include <stdio.h>
#include <stdbool.h>
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);