mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-17 21:47:37 +00:00
Limit process name match to cmdline only
We are only interested in Zygote forked processed
This commit is contained in:
parent
b1afd554fc
commit
b51feffe80
@ -68,6 +68,7 @@ void crawl_procfs(const function<bool (int)> &fn) {
|
|||||||
bool proc_name_match(int pid, const char *name) {
|
bool proc_name_match(int pid, const char *name) {
|
||||||
char buf[4019];
|
char buf[4019];
|
||||||
FILE *f;
|
FILE *f;
|
||||||
|
#if 0
|
||||||
sprintf(buf, "/proc/%d/comm", pid);
|
sprintf(buf, "/proc/%d/comm", pid);
|
||||||
if ((f = fopen(buf, "re"))) {
|
if ((f = fopen(buf, "re"))) {
|
||||||
fgets(buf, sizeof(buf), f);
|
fgets(buf, sizeof(buf), f);
|
||||||
@ -78,6 +79,7 @@ bool proc_name_match(int pid, const char *name) {
|
|||||||
// The PID is already killed
|
// The PID is already killed
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
sprintf(buf, "/proc/%d/cmdline", pid);
|
sprintf(buf, "/proc/%d/cmdline", pid);
|
||||||
if ((f = fopen(buf, "re"))) {
|
if ((f = fopen(buf, "re"))) {
|
||||||
@ -85,17 +87,17 @@ bool proc_name_match(int pid, const char *name) {
|
|||||||
fclose(f);
|
fclose(f);
|
||||||
if (strcmp(basename(buf), name) == 0)
|
if (strcmp(basename(buf), name) == 0)
|
||||||
return true;
|
return true;
|
||||||
} else {
|
|
||||||
// The PID is already killed
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
|
|
||||||
|
#if 0
|
||||||
sprintf(buf, "/proc/%d/exe", pid);
|
sprintf(buf, "/proc/%d/exe", pid);
|
||||||
ssize_t len;
|
ssize_t len;
|
||||||
if ((len = readlink(buf, buf, sizeof(buf))) < 0)
|
if ((len = readlink(buf, buf, sizeof(buf))) < 0)
|
||||||
return false;
|
return false;
|
||||||
buf[len] = '\0';
|
buf[len] = '\0';
|
||||||
return strcmp(basename(buf), name) == 0;
|
return strcmp(basename(buf), name) == 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void kill_process(const char *name) {
|
static void kill_process(const char *name) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user