platform_system_sepolicy/public/fingerprintd.te
Tri Vo aa2c667bdb Remove fingerprintd access to sysfs_type and cgroup label.
Bug: 65643247
Test: device boots without denials from fingerprintd
to sysfs_type and cgroup.
Change-Id: I76e3c8dbc45fbb80945ce0686a0c92259c353551
2017-09-19 17:12:14 -07:00

26 lines
831 B
Text

type fingerprintd, domain;
type fingerprintd_exec, exec_type, file_type;
binder_use(fingerprintd)
# Scan through /system/lib64/hw looking for installed HALs
allow fingerprintd system_file:dir r_dir_perms;
# need to find KeyStore and add self
add_service(fingerprintd, fingerprintd_service)
# allow HAL module to read dir contents
allow fingerprintd fingerprintd_data_file:file { create_file_perms };
# allow HAL module to read/write/unlink contents of this dir
allow fingerprintd fingerprintd_data_file:dir rw_dir_perms;
# Need to add auth tokens to KeyStore
use_keystore(fingerprintd)
allow fingerprintd keystore:keystore_key { add_auth };
# For permissions checking
binder_call(fingerprintd, system_server);
allow fingerprintd permission_service:service_manager find;
allow fingerprintd ion_device:chr_file r_file_perms;