2014-12-01 18:38:25 +00:00
|
|
|
recovery_only(`
|
|
|
|
|
2014-11-26 21:26:14 +00:00
|
|
|
# Secure adb (setup_adbd)
|
|
|
|
allow adbd adb_keys_file:dir search;
|
2014-12-01 18:38:25 +00:00
|
|
|
allow recovery adb_keys_file:dir r_dir_perms;
|
2014-11-26 21:26:14 +00:00
|
|
|
allow recovery adb_keys_file:file r_file_perms;
|
|
|
|
allow recovery shell_prop:property_service set;
|
|
|
|
|
|
|
|
# Recovery dialogs
|
|
|
|
unix_socket_connect(recovery, vold, vold)
|
|
|
|
allow recovery tmpfs:sock_file create_file_perms;
|
2014-12-01 18:38:25 +00:00
|
|
|
|
|
|
|
# Read packages.xml
|
|
|
|
allow recovery system_data_file:file r_file_perms;
|
|
|
|
|
|
|
|
# Manage fstab and /adb_keys
|
|
|
|
allow recovery rootfs:file create_file_perms;
|
|
|
|
allow recovery rootfs:dir { write add_name };
|
|
|
|
|
2014-12-14 16:36:10 +00:00
|
|
|
# Read /data/media files and directories
|
|
|
|
allow recovery media_rw_data_file:dir r_dir_perms;
|
|
|
|
allow recovery media_rw_data_file:file r_file_perms;
|
|
|
|
|
2014-12-01 18:38:25 +00:00
|
|
|
# Control properties
|
|
|
|
allow recovery recovery_prop:property_service set;
|
|
|
|
|
2015-01-03 04:23:08 +00:00
|
|
|
# recursive rm for wipes... :(
|
|
|
|
allow recovery file_type:dir { rw_dir_perms rmdir };
|
|
|
|
allow recovery file_type:notdevfile_class_set { unlink getattr };
|
|
|
|
# wipe saves and restores the layout version
|
|
|
|
allow recovery install_data_file:file create_file_perms;
|
|
|
|
allow recovery system_data_file:file create;
|
|
|
|
|
2014-12-01 18:38:25 +00:00
|
|
|
')
|