Add get_auth_token permission to allow credstore to call keystore2.
This CL adds a new keystore2 permission "get_auth_token"and grants this permission to credstore which needs to call keystore2 to obtain authtokens. Bug: 159475191 Test: CtsVerifier Change-Id: I1c02ea73afa6fe0b12a2d74e51fb4a8a94fd4baf
This commit is contained in:
parent
c0119885d6
commit
db88d1555f
2 changed files with 3 additions and 0 deletions
|
@ -718,6 +718,7 @@ class keystore2
|
|||
change_user
|
||||
clear_ns
|
||||
clear_uid
|
||||
get_auth_token
|
||||
get_state
|
||||
list
|
||||
lock
|
||||
|
|
|
@ -12,6 +12,8 @@ allow credstore credstore_data_file:file create_file_perms;
|
|||
add_service(credstore, credstore_service)
|
||||
allow credstore sec_key_att_app_id_provider_service:service_manager find;
|
||||
allow credstore dropbox_service:service_manager find;
|
||||
allow credstore authorization_service:service_manager find;
|
||||
allow credstore keystore:keystore2 get_auth_token;
|
||||
|
||||
r_dir_file(credstore, cgroup)
|
||||
r_dir_file(credstore, cgroup_v2)
|
||||
|
|
Loading…
Reference in a new issue