【发布时间】:2016-02-08 08:19:50
【问题描述】:
我希望运行 ps 命令来查找系统中正在运行的进程数。但是我在 M 中遇到 SElinux 违规
private 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"
谢谢
【问题讨论】: