mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 20:15:29 +00:00
parent
bb15671046
commit
dad20f6a2d
@ -362,14 +362,18 @@ static bool check_pid(int pid) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void new_zygote(int pid) {
|
static void new_zygote(int pid) {
|
||||||
if (zygote_map.count(pid))
|
|
||||||
return;
|
|
||||||
|
|
||||||
LOGD("proc_monitor: ptrace zygote PID=[%d]\n", pid);
|
|
||||||
|
|
||||||
struct stat st;
|
struct stat st;
|
||||||
if (read_ns(pid, &st))
|
if (read_ns(pid, &st))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
auto it = zygote_map.find(pid);
|
||||||
|
if (it != zygote_map.end()) {
|
||||||
|
// Update namespace info
|
||||||
|
it->second = st;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LOGD("proc_monitor: ptrace zygote PID=[%d]\n", pid);
|
||||||
zygote_map[pid] = st;
|
zygote_map[pid] = st;
|
||||||
|
|
||||||
xptrace(PTRACE_ATTACH, pid);
|
xptrace(PTRACE_ATTACH, pid);
|
||||||
|
Loading…
Reference in New Issue
Block a user