]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/selinux-util.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.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 int mac_selinux_apply(const char *path, const char *label);
19
20 int mac_selinux_get_create_label_from_exe(const char *exe, char **label);
21 int mac_selinux_get_our_label(char **label);
22 int mac_selinux_get_child_mls_label(int socket_fd, const char *exe, const char *exec_label, char **label);
23 char* mac_selinux_free(char *label);
24
25 int mac_selinux_create_file_prepare(const char *path, mode_t mode);
26 void mac_selinux_create_file_clear(void);
27
28 int mac_selinux_create_socket_prepare(const char *label);
29 void mac_selinux_create_socket_clear(void);
30
31 int mac_selinux_bind(int fd, const struct sockaddr *addr, socklen_t addrlen);
32
33 DEFINE_TRIVIAL_CLEANUP_FUNC(char*, mac_selinux_free);