diff options
author | Simon Shields <keepcalm444@gmail.com> | 2016-02-09 12:22:50 +1100 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-02-16 14:56:50 +0100 |
commit | d2625d17e9bc3597a5b3d9d7a1adc5f07a3c0a3a (patch) | |
tree | 388b7d3fc2b8e82ee68cefd0c33a72cbaa5b0bc1 | |
parent | d99e71458bbca6c5eeed3aa44a66530d26b1421d (diff) | |
download | device_samsung_smdk4412-common-d2625d17e9bc3597a5b3d9d7a1adc5f07a3c0a3a.zip device_samsung_smdk4412-common-d2625d17e9bc3597a5b3d9d7a1adc5f07a3c0a3a.tar.gz device_samsung_smdk4412-common-d2625d17e9bc3597a5b3d9d7a1adc5f07a3c0a3a.tar.bz2 |
smdk4412-common: add macloader and tinyplay sepolicy [1/2]
Change-Id: I1dcc6f97ba7f6d95ed92770d5f38d03b4e3b3d57
-rwxr-xr-x | BoardCommonConfig.mk | 3 | ||||
-rw-r--r-- | selinux/file_contexts | 2 | ||||
-rw-r--r-- | selinux/macloader.te | 11 | ||||
-rw-r--r-- | selinux/tinyplay.te | 8 |
4 files changed, 24 insertions, 0 deletions
diff --git a/BoardCommonConfig.mk b/BoardCommonConfig.mk index 41692b6..d257b34 100755 --- a/BoardCommonConfig.mk +++ b/BoardCommonConfig.mk @@ -150,6 +150,9 @@ BOARD_HAS_LARGE_FILESYSTEM := true BOARD_HAS_NO_MISC_PARTITION := true BOARD_HAS_NO_SELECT_BUTTON := true +# SELinux +BOARD_SEPOLICY_DIRS += device/samsung/smdk4412-common/selinux + # Charging mode BOARD_CHARGING_MODE_BOOTING_LPM := /sys/class/power_supply/battery/batt_lp_charging BOARD_BATTERY_DEVICE_NAME := "battery" diff --git a/selinux/file_contexts b/selinux/file_contexts new file mode 100644 index 0000000..30f284f --- /dev/null +++ b/selinux/file_contexts @@ -0,0 +1,2 @@ +/system/bin/macloader u:object_r:macloader_exec:s0 +/system/bin/tinyplay u:object_r:tinyplay_exec:s0 diff --git a/selinux/macloader.te b/selinux/macloader.te new file mode 100644 index 0000000..a3eb4a2 --- /dev/null +++ b/selinux/macloader.te @@ -0,0 +1,11 @@ +type macloader, domain; +type macloader_exec, exec_type, file_type; +init_daemon_domain(macloader); + +allow macloader efs_file:dir search; +allow macloader efs_device_file:dir search; +allow macloader wifi_data_file:file { read getattr open write setattr }; +allow macloader self:capability { dac_override chown fowner fsetid }; +allow macloader system_data_file:dir w_dir_perms; + +domain_trans(init, rootfs, macloader) diff --git a/selinux/tinyplay.te b/selinux/tinyplay.te new file mode 100644 index 0000000..49a5f37 --- /dev/null +++ b/selinux/tinyplay.te @@ -0,0 +1,8 @@ +type tinyplay, domain; +type tinyplay_exec, exec_type, file_type; +init_daemon_domain(tinyplay) + +allow tinyplay audio_device:chr_file { open read write ioctl }; +allow tinyplay audio_device:dir search; + +domain_trans(init, rootfs, tinyplay) |