You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
901 B
29 lines
901 B
4 months ago
|
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;
|
||
|
|
||
|
r_dir_file(fingerprintd, cgroup)
|
||
|
r_dir_file(fingerprintd, sysfs_type)
|
||
|
allow fingerprintd ion_device:chr_file r_file_perms;
|