Skip to content
Snippets Groups Projects
Commit 89041472 authored by Alan Stokes's avatar Alan Stokes
Browse files

Audit execution of app_data_file native code.

On debug builds, introduce audit logging of apps targeting SDK <= 28
that execute native code from a non-priv app home directory via
execve() or dl_open().

Bug: 111338677
Test: Builds + boots.
Test: Launch app that uses private .so files, see granted logs.
Change-Id: I5880801d3a29cbf2c1cf4e0d72adc69a9d548952
parent c2dbce06
No related branches found
No related tags found
No related merge requests found
...@@ -49,6 +49,7 @@ allow untrusted_app_25 { apk_data_file app_data_file asec_public_file }:file exe ...@@ -49,6 +49,7 @@ allow untrusted_app_25 { apk_data_file app_data_file asec_public_file }:file exe
# directories for targetApi<=25. This is also allowed for targetAPIs 26, # directories for targetApi<=25. This is also allowed for targetAPIs 26,
# 27, and 28 in untrusted_app_27.te. # 27, and 28 in untrusted_app_27.te.
allow untrusted_app_25 app_data_file:file { execute execute_no_trans }; allow untrusted_app_25 app_data_file:file { execute execute_no_trans };
userdebug_or_eng(`auditallow untrusted_app_25 app_data_file:file { execute execute_no_trans };')
# The ability to invoke dex2oat. Historically required by ART, now only # The ability to invoke dex2oat. Historically required by ART, now only
# allowed for targetApi<=28 for compat reasons. # allowed for targetApi<=28 for compat reasons.
......
...@@ -30,6 +30,7 @@ bluetooth_domain(untrusted_app_27) ...@@ -30,6 +30,7 @@ bluetooth_domain(untrusted_app_27)
# The ability to call exec() or dlopen() on files in the apps home # The ability to call exec() or dlopen() on files in the apps home
# directories for targetApi 26, 27, and 28. # directories for targetApi 26, 27, and 28.
allow untrusted_app_27 app_data_file:file { execute execute_no_trans }; allow untrusted_app_27 app_data_file:file { execute execute_no_trans };
userdebug_or_eng(`auditallow untrusted_app_27 app_data_file:file { execute execute_no_trans };')
# The ability to invoke dex2oat. Historically required by ART, now only # The ability to invoke dex2oat. Historically required by ART, now only
# allowed for targetApi<=28 for compat reasons. # allowed for targetApi<=28 for compat reasons.
......
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