chiark / gitweb /
bba623e57d11e77ba0a06651f0bba35aec0f6da5
[elogind.git] / src / basic / selinux-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <stdbool.h>
5 #include <sys/socket.h>
6 #include <sys/types.h>
7
8 #include "macro.h"
9 //#include "label.h"
10
11 bool mac_selinux_use(void);
12 void mac_selinux_retest(void);
13
14 int mac_selinux_init(void);
15 void mac_selinux_finish(void);
16
17 int mac_selinux_fix(const char *path, LabelFixFlags flags);
18 #if 0 /// UNNEEDED by elogind
19 int mac_selinux_apply(const char *path, const char *label);
20
21 int mac_selinux_get_create_label_from_exe(const char *exe, char **label);
22 int mac_selinux_get_our_label(char **label);
23 int mac_selinux_get_child_mls_label(int socket_fd, const char *exe, const char *exec_label, char **label);
24 #endif // 0
25 char* mac_selinux_free(char *label);
26
27 int mac_selinux_create_file_prepare(const char *path, mode_t mode);
28 void mac_selinux_create_file_clear(void);
29 #if 0 /// UNNEEDED by elogind
30
31 int mac_selinux_create_socket_prepare(const char *label);
32 void mac_selinux_create_socket_clear(void);
33
34 int mac_selinux_bind(int fd, const struct sockaddr *addr, socklen_t addrlen);
35 #endif // 0
36
37 DEFINE_TRIVIAL_CLEANUP_FUNC(char*, mac_selinux_free);