blob: 6110f9a8809d2ec031cf25177fab96044c27405f [file] [log] [blame]
Steve Kondik06ec5852014-12-01 10:38:25 -08001recovery_only(`
2
Tom Marshall39a42442014-11-26 13:26:14 -08003# Secure adb (setup_adbd)
4allow adbd adb_keys_file:dir search;
Steve Kondik06ec5852014-12-01 10:38:25 -08005allow recovery adb_keys_file:dir r_dir_perms;
Tom Marshall39a42442014-11-26 13:26:14 -08006allow recovery adb_keys_file:file r_file_perms;
7allow recovery shell_prop:property_service set;
8
9# Recovery dialogs
10unix_socket_connect(recovery, vold, vold)
11allow recovery tmpfs:sock_file create_file_perms;
Steve Kondik06ec5852014-12-01 10:38:25 -080012
13# Read packages.xml
14allow recovery system_data_file:file r_file_perms;
15
16# Manage fstab and /adb_keys
17allow recovery rootfs:file create_file_perms;
18allow recovery rootfs:dir { write add_name };
19
Dan Pasanene33cc1d2014-12-14 10:36:10 -060020# Read /data/media files and directories
21allow recovery media_rw_data_file:dir r_dir_perms;
22allow recovery media_rw_data_file:file r_file_perms;
23
Steve Kondik06ec5852014-12-01 10:38:25 -080024# Control properties
25allow recovery recovery_prop:property_service set;
26
27')