1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# SPDX-License-Identifier: GPL-2.0-or-later
#
# PASST - Plug A Simple Socket Transport
# for qemu/UNIX domain socket mode
#
# contrib/selinux/passt.if - SELinux profile: Interface File for passt
#
# Copyright (c) 2022 Red Hat GmbH
# Author: Stefano Brivio <sbrivio@redhat.com>
interface(`passt_domtrans',`
gen_require(`
type passt_t, passt_exec_t;
')
corecmd_search_bin($1)
domtrans_pattern($1, passt_exec_t, passt_t)
')
interface(`passt_socket_dir',`
gen_require(`
type passt_t;
')
allow passt_t $1:dir add_entry_dir_perms;
')
interface(`passt_socket_create',`
gen_require(`
type passt_t;
')
allow passt_t $1:sock_file create;
')
interface(`passt_socket_use',`
gen_require(`
type passt_t;
')
allow $1 passt_t:unix_stream_socket connectto;
allow $1 $2:sock_file { read write };
allow passt_t $2:sock_file { read write };
')
interface(`passt_socket_delete',`
gen_require(`
type passt_t;
')
allow $1 $2:sock_file unlink;
')
interface(`passt_logfile_dir',`
gen_require(`
type passt_t;
')
allow passt_t $1:dir add_entry_dir_perms;
')
interface(`passt_logfile_use',`
gen_require(`
type passt_t;
')
logging_log_file($1);
allow passt_t $1:file { create open read write };
')
interface(`passt_pidfile_dir',`
gen_require(`
type passt_t;
')
allow passt_t $1:dir add_entry_dir_perms;
')
interface(`passt_pidfile_write',`
gen_require(`
type passt_t;
')
files_pid_file($1);
allow passt_t $1:file { create open write };
')
interface(`passt_pidfile_read',`
gen_require(`
type passt_t;
')
allow $1 $2:file { open read };
')
interface(`passt_pidfile_delete',`
gen_require(`
type passt_t;
')
allow $1 $2:file unlink;
')
interface(`passt_kill',`
gen_require(`
type passt_t;
')
allow $1 passt_t:process { signal sigkill };
')
|