我希望运行ps命令来查找系统中正在运行的进程数。但是我在M
中违反了SElinuxprivate int read_procs() {
int nProcs = 0;
String line = null;
// "ps" output
try {
Process p = Runtime.getRuntime().exec("ps");
BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
if (in == null) {
mLog.e("cmd output _in_ is null");
return 1;
}
while ((line = in.readLine()) != null) {
nProcs++;
}
in.close();
mLog.i("Processes :" + (nProcs-1));
} catch (Exception e) {
e.printStackTrace();
}
return nProcs;
}
如何设置策略以允许“ps”命令访问:
avc: denied { getattr } for path="/proc/2" dev="proc" ino=9461 scontext=u:r:system_app:s0 tcontext=u:r:kernel:s0 tclass=dir permissive=0 ppid=3853 pcomm="Thread-52" tgid=3761 tgcomm="test:app"
由于
答案 0 :(得分:2)
我通过添加如下的规则解决了这个问题
allow [source context] [target context object]:[type] [permission needed];
allow system_app kernel:dir getattr;
-