hal_memtrack: Add sepolicy for memtrack service.
Bug: 31180823
Test: reduced sepolicy errors
Change-Id: Ibfba2efa903adec340e37abec2afb3b94a262678
Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
diff --git a/private/file_contexts b/private/file_contexts
index b4a7087..61126eb 100644
--- a/private/file_contexts
+++ b/private/file_contexts
@@ -223,6 +223,7 @@
/system/bin/hw/android\.hardware\.audio@2\.0-service u:object_r:hal_audio_exec:s0
/system/bin/hw/android\.hardware\.boot@1\.0-service u:object_r:hal_boot_exec:s0
/system/bin/hw/android\.hardware\.light@2\.0-service u:object_r:hal_light_exec:s0
+/system/bin/hw/android\.hardware\.memtrack@1\.0-service u:object_r:hal_memtrack_exec:s0
/system/bin/hw/android\.hardware\.nfc@1\.0-service u:object_r:hal_nfc_exec:s0
/system/bin/hw/android\.hardware\.power@1\.0-service u:object_r:hal_power_exec:s0
/system/bin/hw/android\.hardware\.vibrator@1\.0-service u:object_r:hal_vibrator_exec:s0
diff --git a/private/hal_memtrack.te b/private/hal_memtrack.te
new file mode 100644
index 0000000..89c7b8e
--- /dev/null
+++ b/private/hal_memtrack.te
@@ -0,0 +1,2 @@
+# may be started by init
+init_daemon_domain(hal_memtrack)
diff --git a/public/hal_memtrack.te b/public/hal_memtrack.te
new file mode 100644
index 0000000..07c1292
--- /dev/null
+++ b/public/hal_memtrack.te
@@ -0,0 +1,6 @@
+# memtrack subsystem
+type hal_memtrack, domain;
+type hal_memtrack_exec, exec_type, file_type;
+
+# hwbinder access
+hwbinder_use(hal_memtrack);
diff --git a/public/system_server.te b/public/system_server.te
index 6bec0aa..9c075fb 100644
--- a/public/system_server.te
+++ b/public/system_server.te
@@ -149,6 +149,7 @@
binder_use(system_server)
binder_call(system_server, hal_boot)
binder_call(system_server, hal_light)
+binder_call(system_server, hal_memtrack)
binder_call(system_server, hal_power)
binder_call(system_server, hal_vibrator)
binder_call(system_server, hal_vr)