1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
import os
import signal
import socket
import select
import subprocess
from typing import Optional
import ptrace.debugger
from ptrace.debugger import (
ProcessExit,
ProcessEvent,
ProcessSignal,
PtraceProcess,
NewProcessEvent,
ProcessExecution,
)
# If scheduler does not provide input within this time (seconds),
# continue running the last chosen thread.
SCHED_TIMEOUT = 0
class Scheduler:
def __init__(self, sched_socket_path: str = '/tmp/memcached_scheduler.sock'):
self.debugger = ptrace.debugger.PtraceDebugger()
self.debugger.traceClone()
self.debugger.traceFork()
self.debugger.traceExec()
self._first_clone_ignored = True
self._ignored_tid = None
if os.path.exists(sched_socket_path):
os.unlink(sched_socket_path)
self.srv = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
self.srv.bind(sched_socket_path)
self.srv.listen(1)
print(f"Waiting for scheduler connection on {sched_socket_path}")
self.conn, _ = self.srv.accept()
print("Scheduler connected")
def _next(self, processes, current_proc: Optional[PtraceProcess]) -> Optional[PtraceProcess]:
"""
processes: dict[tid] -> PtraceProcess
current_proc: PtraceProcess or None
"""
timeout = SCHED_TIMEOUT if SCHED_TIMEOUT > 0 else 0
r, _, _ = select.select([self.conn], [], [], timeout)
if not r:
return current_proc # no input → continue with current
data = self.conn.recv(8)
if not data:
return current_proc
try:
tid = int.from_bytes(data, byteorder='little', signed=False)
except ValueError:
print(f"Scheduler: invalid data {data!r}")
return current_proc
print(f'All processes:\n{processes}')
proc = processes.get(tid)
if proc is not None:
print(f"Scheduler picked TID {tid}")
return proc
print(f"Scheduler sent inactive TID {tid}, ignoring")
return current_proc
def _handle_signal(self, event: ProcessSignal):
proc: PtraceProcess = event.process
proc.syscall(event.signum)
def _handle_clone(self, event: NewProcessEvent):
child = event.process
parent = child.parent
child_tid = child.pid
if not self._first_clone_ignored:
self._first_clone_ignored = True
self._ignored_tid = child_tid
print(f"First clone: created TID {child_tid} — IGNORING it")
# Detach ignored child so it runs untraced
child.detach()
# Remove from debugger
self.debugger.deleteProcess(child)
# Resume parent so clone() completes
parent.syscall()
else:
# LATER clones are traced
print(f"New traced thread {child_tid} (parent {parent.pid})")
# Arm both child and parent again
try:
child.syscall()
except Exception as e:
print(f"Error arming child {child_tid}: {e}")
try:
self.debugger.deleteProcess(child)
except Exception:
pass
try:
parent.syscall()
except Exception as e:
print(f"Error arming parent {parent.pid}: {e}")
try:
self.debugger.deleteProcess(parent)
except Exception:
pass
def _handle_exit(self, event: ProcessExit):
dead_proc: PtraceProcess = event.process
tid: int = dead_proc.pid
print(f"TID {tid} exited (exitcode={event.exitcode})")
dead_proc.detach()
self.debugger.deleteProcess(dead_proc)
def _handle_syscall(self, event: ProcessExecution):
try:
ip = event.process.getInstrPointer()
print(f"TID {self.current_proc.pid} syscall-stop at {hex(ip)}")
except Exception as e:
print(f"Error reading IP for TID {self.current_proc.pid}: {e}")
# Scheduler decides what to run next
self.current_proc = self._next(self.debugger.dict, event.process)
if self.current_proc is None or self.current_proc not in self.debugger.list:
if self.is_exited():
return
self.current_proc = self.debugger.list[0]
# Resume chosen thread
self.current_proc.syscall()
def is_exited(self):
return len(self.debugger.list) == 0
def schedule(self, pid: int):
print(f"Attach process {pid}")
self.current_proc = self.debugger.addProcess(pid, False)
# Arm the first process: run until its first event/syscall
self.current_proc.syscall()
while not self.is_exited():
try:
event: ProcessEvent = self.debugger.waitSyscall()
except NewProcessEvent as event:
self._handle_clone(event)
continue
except ProcessSignal as event:
self._handle_signal(event)
continue
except ProcessExit as event:
self._handle_exit(event)
continue
self._handle_syscall(event)
def __del__(self):
self.conn.close()
self.srv.close()
self.debugger.quit()
# ----------------------------------------------------------------------
# Entry point
# ----------------------------------------------------------------------
def quoted(s: str) -> str:
return f'"{s}"'
if __name__ == "__main__":
env = os.environ.copy()
qemu = [
"qemu-x86_64",
"-g",
"12348",
"/nix/store/dmpq06y392i752zwhcna07kb2x5l58l5-memcached-static-x86_64-unknown-linux-musl-1.6.37/bin/memcached",
"-p",
"11211",
"-t",
"4",
"-vv"
]
proc = subprocess.Popen(qemu, env=env)
try:
scheduler = Scheduler()
scheduler.schedule(proc.pid)
except Exception as e:
print(f"Scheduling failed: {e}")
proc.kill()
raise
exit(0)
|