Skip to content
Snippets Groups Projects
Commit 5b1cdbca authored by Eino-Ville Talvala's avatar Eino-Ville Talvala Committed by android-build-merger
Browse files

Rework neverallow for /data execute permission

am: c5266df9

Change-Id: Ic641868482260a74a5cf656d8c34e08bfdbab91a
parents 3f2b6600 c5266df9
No related branches found
No related tags found
No related merge requests found
...@@ -432,6 +432,22 @@ neverallow appdomain { ...@@ -432,6 +432,22 @@ neverallow appdomain {
tmpfs tmpfs
}:lnk_file no_w_file_perms; }:lnk_file no_w_file_perms;
# Blacklist app domains not allowed to execute from /data
neverallow {
bluetooth
isolated_app
nfc
platform_app
radio
shared_relro
system_app
} {
data_file_type
-dalvikcache_data_file
-system_data_file # shared libs in apks
-apk_data_file
}:file no_x_file_perms;
# Foreign dex profiles are just markers. Prevent apps to do anything but touch them. # Foreign dex profiles are just markers. Prevent apps to do anything but touch them.
neverallow appdomain user_profile_foreign_dex_data_file:file rw_file_perms; neverallow appdomain user_profile_foreign_dex_data_file:file rw_file_perms;
neverallow appdomain user_profile_foreign_dex_data_file:dir { open getattr read ioctl remove_name }; neverallow appdomain user_profile_foreign_dex_data_file:dir { open getattr read ioctl remove_name };
...@@ -288,9 +288,7 @@ neverallow domain { cache_file cache_backup_file cache_private_backup_file cache ...@@ -288,9 +288,7 @@ neverallow domain { cache_file cache_backup_file cache_private_backup_file cache
# Protect most domains from executing arbitrary content from /data. # Protect most domains from executing arbitrary content from /data.
neverallow { neverallow {
domain domain
-untrusted_app -appdomain
-priv_app
-shell
} { } {
data_file_type data_file_type
-dalvikcache_data_file -dalvikcache_data_file
...@@ -502,6 +500,11 @@ neverallow { ...@@ -502,6 +500,11 @@ neverallow {
-zygote -zygote
} shell:process { transition dyntransition }; } shell:process { transition dyntransition };
# Only domains spawned from zygote and runas may have the appdomain attribute.
neverallow { domain -runas -zygote } {
appdomain -shell userdebug_or_eng(`-su')
}:process { transition dyntransition };
# Minimize read access to shell- or app-writable symlinks. # Minimize read access to shell- or app-writable symlinks.
# This is to prevent malicious symlink attacks. # This is to prevent malicious symlink attacks.
neverallow { neverallow {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment