Skip to content
Snippets Groups Projects
Commit 0300a073 authored by Robert Sesek's avatar Robert Sesek Committed by android-build-merger
Browse files

Merge "SELinux changes to accomodate starting the webview_zygote as a child of...

Merge "SELinux changes to accomodate starting the webview_zygote as a child of the zygote." am: 50fa7be7
am: 0089f284

Change-Id: I366e68c19a1344c6c4ec0584f2eda42bae3e9e6e
parents 9680dcde 0089f284
No related branches found
No related tags found
No related merge requests found
...@@ -104,6 +104,7 @@ user=radio seinfo=platform domain=radio type=radio_data_file ...@@ -104,6 +104,7 @@ user=radio seinfo=platform domain=radio type=radio_data_file
user=shared_relro domain=shared_relro user=shared_relro domain=shared_relro
user=shell seinfo=platform domain=shell type=shell_data_file user=shell seinfo=platform domain=shell type=shell_data_file
user=_isolated domain=isolated_app levelFrom=user user=_isolated domain=isolated_app levelFrom=user
user=webview_zygote seinfo=webview_zygote domain=webview_zygote
user=_app seinfo=media domain=mediaprovider name=android.process.media type=app_data_file levelFrom=user user=_app seinfo=media domain=mediaprovider name=android.process.media type=app_data_file levelFrom=user
user=_app seinfo=platform domain=platform_app type=app_data_file levelFrom=user user=_app seinfo=platform domain=platform_app type=app_data_file levelFrom=user
user=_app isV2App=true isEphemeralApp=true domain=ephemeral_app type=app_data_file levelFrom=user user=_app isV2App=true isEphemeralApp=true domain=ephemeral_app type=app_data_file levelFrom=user
......
...@@ -36,6 +36,7 @@ allow system_server zygote:process sigchld; ...@@ -36,6 +36,7 @@ allow system_server zygote:process sigchld;
# May kill zygote on crashes. # May kill zygote on crashes.
allow system_server zygote:process sigkill; allow system_server zygote:process sigkill;
allow system_server crash_dump:process sigkill; allow system_server crash_dump:process sigkill;
allow system_server webview_zygote:process sigkill;
# Read /system/bin/app_process. # Read /system/bin/app_process.
allow system_server zygote_exec:file r_file_perms; allow system_server zygote_exec:file r_file_perms;
......
...@@ -61,6 +61,15 @@ selinux_check_access(webview_zygote) ...@@ -61,6 +61,15 @@ selinux_check_access(webview_zygote)
# Directory listing in /system. # Directory listing in /system.
allow webview_zygote system_file:dir r_dir_perms; allow webview_zygote system_file:dir r_dir_perms;
# Read system properties managed by zygote.
allow webview_zygote zygote_tmpfs:file read;
# Child of zygote.
allow webview_zygote zygote:fd use;
allow webview_zygote zygote:process sigchld;
# Allow apps access to /vendor/overlay
r_dir_file(webview_zygote, vendor_overlay_file)
##### #####
##### Neverallow ##### Neverallow
##### #####
...@@ -75,9 +84,10 @@ neverallow webview_zygote { domain -crash_dump }:process transition; ...@@ -75,9 +84,10 @@ neverallow webview_zygote { domain -crash_dump }:process transition;
# Having said that, exec() above is not allowed. # Having said that, exec() above is not allowed.
neverallow webview_zygote *:file execute_no_trans; neverallow webview_zygote *:file execute_no_trans;
# The only way to enter this domain is for init to exec() us. # The only way to enter this domain is for init to exec() us or the zygote
# to fork a new webview_zygote child.
neverallow { domain -init } webview_zygote:process transition; neverallow { domain -init } webview_zygote:process transition;
neverallow * webview_zygote:process dyntransition; neverallow { domain -zygote } webview_zygote:process dyntransition;
# Disallow write access to properties. # Disallow write access to properties.
neverallow webview_zygote property_socket:sock_file write; neverallow webview_zygote property_socket:sock_file write;
......
...@@ -16,6 +16,7 @@ allow zygote self:global_capability_class_set setpcap; ...@@ -16,6 +16,7 @@ allow zygote self:global_capability_class_set setpcap;
allow zygote self:process setcurrent; allow zygote self:process setcurrent;
allow zygote system_server:process dyntransition; allow zygote system_server:process dyntransition;
allow zygote appdomain:process dyntransition; allow zygote appdomain:process dyntransition;
allow zygote webview_zygote:process dyntransition;
# Allow zygote to read app /proc/pid dirs (b/10455872). # Allow zygote to read app /proc/pid dirs (b/10455872).
allow zygote appdomain:dir { getattr search }; allow zygote appdomain:dir { getattr search };
...@@ -121,8 +122,8 @@ get_prop(zygote, exported_overlay_prop) ...@@ -121,8 +122,8 @@ get_prop(zygote, exported_overlay_prop)
# written on appdomain are applied to all app processes. # written on appdomain are applied to all app processes.
# This is achieved by ensuring that it is impossible for zygote to # This is achieved by ensuring that it is impossible for zygote to
# setcon (dyntransition) to any types other than those associated # setcon (dyntransition) to any types other than those associated
# with appdomain plus system_server. # with appdomain plus system_server and webview_zygote.
neverallow zygote ~{ appdomain system_server }:process dyntransition; neverallow zygote ~{ appdomain system_server webview_zygote }:process dyntransition;
# Zygote should never execute anything from /data except for /data/dalvik-cache files. # Zygote should never execute anything from /data except for /data/dalvik-cache files.
neverallow zygote { neverallow zygote {
......
...@@ -903,6 +903,7 @@ full_treble_only(` ...@@ -903,6 +903,7 @@ full_treble_only(`
-init -init
-installd -installd
-system_server -system_server
-webview_zygote
-zygote -zygote
} vendor_overlay_file:dir { getattr open read search }; } vendor_overlay_file:dir { getattr open read search };
...@@ -913,6 +914,7 @@ full_treble_only(` ...@@ -913,6 +914,7 @@ full_treble_only(`
-init -init
-installd -installd
-system_server -system_server
-webview_zygote
-zygote -zygote
} vendor_overlay_file:{ file lnk_file } r_file_perms; } vendor_overlay_file:{ file lnk_file } r_file_perms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment