blob: 4ceb68dd352150fdf370b1fbc604c7f4f2c1d641 [file] [log] [blame]
Jim Miller264eb652015-05-12 15:16:06 -07001type fingerprintd, domain;
2type fingerprintd_exec, exec_type, file_type;
3
4# fingerprintd
5init_daemon_domain(fingerprintd)
6binder_use(fingerprintd)
7
8# need to find KeyStore and add self
9allow fingerprintd fingerprintd_service:service_manager { add find };
10
11# allow HAL module to read dir contents
12allow fingerprintd fingerprintd_data_file:file { create_file_perms };
13
14# allow HAL module to read/write/unlink contents of this dir
15allow fingerprintd fingerprintd_data_file:dir rw_dir_perms;
16
17# Need to add auth tokens to KeyStore
18use_keystore(fingerprintd)
19allow fingerprintd keystore:keystore_key { add_auth };
20
21# For permissions checking
22binder_call(fingerprintd, system_server);
23allow fingerprintd permission_service:service_manager find;