23c9d91b46
Currently, both untrusted apps and priv-apps use the SELinux file label "app_data_file" for files in their /data/data directory. This is problematic, as we really want different rules for such files. For example, we may want to allow untrusted apps to load executable code from priv-app directories, but disallow untrusted apps from loading executable code from their own home directories. This change adds a new file type "privapp_data_file". For compatibility, we adjust the policy to support access privapp_data_files almost everywhere we were previously granting access to app_data_files (adbd and run-as being exceptions). Additional future tightening is possible here by removing some of these newly added rules. This label will start getting used in a followup change to system/sepolicy/private/seapp_contexts, similar to: -user=_app isPrivApp=true domain=priv_app type=app_data_file levelFrom=user +user=_app isPrivApp=true domain=priv_app type=privapp_data_file levelFrom=user For now, this newly introduced label has no usage, so this change is essentially a no-op. Test: Factory reset and boot - no problems on fresh install. Test: Upgrade to new version and test. No compatibility problems on filesystem upgrade. Change-Id: I9618b7d91d1c2bcb5837cdabc949f0cf741a2837
26 lines
864 B
Text
26 lines
864 B
Text
# android debug logging, logpersist domains
|
|
type logpersist, domain;
|
|
|
|
###
|
|
### Neverallow rules
|
|
###
|
|
### logpersist should NEVER do any of this
|
|
|
|
# Block device access.
|
|
neverallow logpersist dev_type:blk_file { read write };
|
|
|
|
# ptrace any other app
|
|
neverallow logpersist domain:process ptrace;
|
|
|
|
# Write to files in /data/data or system files on /data except misc_logd_file
|
|
neverallow logpersist { privapp_data_file app_data_file system_data_file }:dir_file_class_set write;
|
|
|
|
# Only init should be allowed to enter the logpersist domain via exec()
|
|
# Following is a list of debug domains we know that transition to logpersist
|
|
# neverallow_with_undefined_domains {
|
|
# domain
|
|
# -init # goldfish, logcatd, raft
|
|
# -mmi # bat, mtp8996, msmcobalt
|
|
# -system_app # Smith.apk
|
|
# } logpersist:process transition;
|
|
neverallow * logpersist:process dyntransition;
|