diff --git a/private/app_neverallows.te b/private/app_neverallows.te
index 1e824046b4f2670daafa993ddbdfb0644d8e98d4..344ecd54449bdef71b4bf31473d706ccef4589fc 100644
--- a/private/app_neverallows.te
+++ b/private/app_neverallows.te
@@ -274,6 +274,3 @@ neverallow all_untrusted_apps mediaextractor_update_service:service_manager find
 # This will go away in a future Android release
 neverallow { all_untrusted_apps -untrusted_app_25 } proc_tty_drivers:file r_file_perms;
 neverallow all_untrusted_apps proc_tty_drivers:file ~r_file_perms;
-
-# Untrusted apps are not allowed to use cgroups.
-neverallow all_untrusted_apps cgroup:file *;
diff --git a/private/priv_app.te b/private/priv_app.te
index 192221db0639f3cead76973d61963b82befc7397..e12cce7657c350106016dd82ef317837cfd51b16 100644
--- a/private/priv_app.te
+++ b/private/priv_app.te
@@ -218,6 +218,3 @@ neverallow priv_app file_type:file link;
 # upon traceur to pass a file descriptor which they can then read
 neverallow priv_app trace_data_file:dir *;
 neverallow priv_app trace_data_file:file { no_w_file_perms open };
-
-# Do not allow priv_app access to cgroups.
-neverallow priv_app cgroup:file *;
diff --git a/private/system_app.te b/private/system_app.te
index 4bfcc18f4d0d7e187c5db6f9fedb04f7c66d1593..40fec6acfdbad96383351d11657f120a9ddb58dc 100644
--- a/private/system_app.te
+++ b/private/system_app.te
@@ -122,9 +122,6 @@ allow system_app {
   proc_version
 }:file r_file_perms;
 
-# Settings app writes to /dev/stune/foreground/tasks.
-allow system_app cgroup:file w_file_perms;
-
 control_logd(system_app)
 read_runtime_log_tags(system_app)
 get_prop(system_app, device_logging_prop)
diff --git a/public/app.te b/public/app.te
index 800e891b4d7f187f3315de6a27e18d99dc2e85db..5a8215211b23ad717200b7232208382b545ba870 100644
--- a/public/app.te
+++ b/public/app.te
@@ -22,6 +22,10 @@ allow appdomain zygote_exec:file rx_file_perms;
 # Notify zygote of death;
 allow appdomain zygote:process sigchld;
 
+# Place process into foreground / background
+allow appdomain cgroup:dir { search write };
+allow appdomain cgroup:file rw_file_perms;
+
 # Read /data/dalvik-cache.
 allow appdomain dalvikcache_data_file:dir { search getattr };
 allow appdomain dalvikcache_data_file:file r_file_perms;
diff --git a/public/domain.te b/public/domain.te
index 2eb2e15a8d153138c8672707106926b7b22b8189..16cc0988476324a581c980a3dd6c62ea6c19e7fa 100644
--- a/public/domain.te
+++ b/public/domain.te
@@ -258,17 +258,9 @@ allow domain selinuxfs:file getattr;
 allow domain sysfs:dir search;
 allow domain selinuxfs:filesystem getattr;
 
-# Path resolution access in cgroups.
-allow domain cgroup:dir search;
-allow { coredomain -appdomain } cgroup:dir w_dir_perms;
-allow { coredomain -appdomain } cgroup:file w_file_perms;
-# TODO(b/110043362): Clean up cgroup access from non-system domains.
-allow { domain -coredomain } cgroup:file w_file_perms;
-auditallow {
-  domain
-  -coredomain
-  -vendor_init
-} cgroup:file w_file_perms;
+# For /acct/uid/*/tasks.
+allow domain cgroup:dir { search write };
+allow domain cgroup:file w_file_perms;
 
 # Almost all processes log tracing information to
 # /sys/kernel/debug/tracing/trace_marker
diff --git a/public/init.te b/public/init.te
index 31fa79733309104e2c4e24bcb723912bce842972..18d11b6c69b2d7e174d32dbfbe9766c64fe91bf3 100644
--- a/public/init.te
+++ b/public/init.te
@@ -93,7 +93,7 @@ allow init sysfs:dir mounton;
 allow init tmpfs:dir create_dir_perms;
 allow init tmpfs:dir mounton;
 allow init cgroup:dir create_dir_perms;
-allow init cgroup:file rw_file_perms;
+r_dir_file(init, cgroup)
 allow init cpuctl_device:dir { create mounton };
 
 # /config
diff --git a/public/vendor_init.te b/public/vendor_init.te
index b6502d234dcebc06198b1013c130ddea619bcd92..dfd4d8fa8b1909ca556b951fc99972e2d6892176 100644
--- a/public/vendor_init.te
+++ b/public/vendor_init.te
@@ -15,7 +15,6 @@ allow vendor_init rootfs:lnk_file { create unlink };
 
 # Create cgroups mount points in tmpfs and mount cgroups on them.
 allow vendor_init cgroup:dir create_dir_perms;
-allow vendor_init cgroup:file w_file_perms;
 
 # /config
 allow vendor_init configfs:dir mounton;