aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2014-01-13 11:52:17 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-13 11:52:17 -0800
commit7e0d30667cf53a182525f87dd0c8cb0e2628a1ed (patch)
tree8effd2f8aa84d3b4297af291d07bd0578baa4a20 /etc
parent27efc8f9d1711134051b45d28b2fc38bfb4c7dc6 (diff)
parentfc729512375c4f0d351f6f67f0d7f500ea1b9233 (diff)
downloadbootable_recovery-7e0d30667cf53a182525f87dd0c8cb0e2628a1ed.zip
bootable_recovery-7e0d30667cf53a182525f87dd0c8cb0e2628a1ed.tar.gz
bootable_recovery-7e0d30667cf53a182525f87dd0c8cb0e2628a1ed.tar.bz2
am fc729512: Merge "Set SELinux security contexts correctly for init and services."
* commit 'fc729512375c4f0d351f6f67f0d7f500ea1b9233': Set SELinux security contexts correctly for init and services.
Diffstat (limited to 'etc')
-rw-r--r--etc/init.rc11
1 files changed, 11 insertions, 0 deletions
diff --git a/etc/init.rc b/etc/init.rc
index 1754890..5f9ce80 100644
--- a/etc/init.rc
+++ b/etc/init.rc
@@ -1,6 +1,13 @@
import /init.recovery.${ro.hardware}.rc
on early-init
+ # Apply strict SELinux checking of PROT_EXEC on mmap/mprotect calls.
+ write /sys/fs/selinux/checkreqprot 0
+
+ # Set the security context for the init process.
+ # This should occur before anything else (e.g. ueventd) is started.
+ setcon u:r:init:s0
+
start ueventd
start healthd
@@ -43,15 +50,19 @@ on property:sys.powerctl=*
service ueventd /sbin/ueventd
critical
+ seclabel u:r:ueventd:s0
service healthd /sbin/healthd -n
critical
+ seclabel u:r:healthd:s0
service recovery /sbin/recovery
+ seclabel u:r:recovery:s0
service adbd /sbin/adbd recovery
disabled
socket adbd stream 660 system system
+ seclabel u:r:adbd:s0
# Always start adbd on userdebug and eng builds
on property:ro.debuggable=1