blob: 5ea7434f7ce9a06497ddb954ccc09055144e3d0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
module iio-qipcrtr 1.0;
require {
type iiosensorproxy_t;
type systemd_userdbd_t;
type xdm_var_run_t;
class sock_file read;
class qipcrtr_socket { create getattr getopt setopt };
}
#============= iiosensorproxy_t ==============
#!!!! This avc is allowed in the current policy
allow iiosensorproxy_t self:qipcrtr_socket { create getattr getopt setopt };
#============= systemd_userdbd_t ==============
#!!!! This avc is allowed in the current policy
allow systemd_userdbd_t xdm_var_run_t:sock_file read;
|