Allow shell to read /proc.

Grant shell read access to /proc taken away by
commit: 0d3f7ddc70

Addresses the following denials encountered when running ps or top.

Bug: 18799966
Change-Id: If764adeade562d884c3d710f1cd1cb34011efe89
This commit is contained in:
dcashman 2015-01-16 13:39:59 -08:00
parent 99940d1af5
commit 25fef2e197

View File

@ -62,3 +62,7 @@ allow shell kernel:system syslog_read;
# allow shell to list services
allow shell servicemanager:service_manager list;
# allow shell to look through /proc/ for ps, top
allow shell domain:dir { search open read getattr };
allow shell domain:{ file lnk_file } { open read getattr };