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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
use ax_runtime::hal::cpu::uspace::{ExceptionInfo, ExceptionKind, ReturnReason, UserContext};
use ax_task::TaskInner;
use starry_process::Pid;
use starry_signal::{SignalInfo, Signo};
use starry_vm::{VmMutPtr, VmPtr};
use syscalls::Sysno;
use super::{
AsThread, SyscallRestartInfo, SyscallTraceState, TimerState, check_signals,
ptrace_stop_current, ptrace_syscall_stop_current, raise_signal_fatal, set_timer_state,
unblock_next_signal, wait_existing_ptrace_stop_current,
};
use crate::syscall::{handle_syscall, syscall_allows_signal_restart};
/// Create a new user task.
pub fn new_user_task(name: &str, mut uctx: UserContext, set_child_tid: usize) -> TaskInner {
TaskInner::new(
move || {
let curr = ax_task::current();
if let Some(tid) = (set_child_tid as *mut Pid).nullable() {
tid.vm_write(curr.id().as_u64() as Pid).ok();
}
info!("Enter user space: ip={:#x}, sp={:#x}", uctx.ip(), uctx.sp());
let thr = curr.as_thread();
if thr.proc_data.ptrace_stop_signo_for(thr.tid()).is_some() {
wait_existing_ptrace_stop_current(thr, &mut uctx);
} else if thr.tid() == thr.proc_data.proc.pid()
&& thr.proc_data.ptrace_stop_signo().is_some()
{
let _ = ptrace_stop_current(thr, Signo::SIGSTOP, &mut uctx);
}
while !thr.pending_exit() {
if thr.proc_data.is_ptrace_singlestep_for(thr.tid())
&& (thr.proc_data.is_ptrace_traceme() || thr.proc_data.is_ptrace_attached())
{
#[cfg(target_arch = "riscv64")]
crate::syscall::ptrace_setup_singlestep(&thr.proc_data, thr.tid(), &mut uctx);
}
let reason = uctx.run();
set_timer_state(&curr, TimerState::Kernel);
let saved_a0 = uctx.arg0();
let saved_sysno = uctx.sysno();
let is_syscall = matches!(reason, ReturnReason::Syscall);
match reason {
ReturnReason::Syscall => {
let tid = thr.tid();
let trace_state = thr.proc_data.take_ptrace_syscall_trace_for(tid);
if matches!(trace_state, SyscallTraceState::Entry)
&& ptrace_syscall_stop_current(thr, Signo::SIGTRAP, &mut uctx).is_some()
{
match thr.proc_data.take_ptrace_syscall_trace_for(tid) {
SyscallTraceState::Entry | SyscallTraceState::Exit => {
thr.proc_data.set_ptrace_syscall_trace_state_for(
tid,
SyscallTraceState::Exit,
)
}
SyscallTraceState::None => {}
}
}
if let Some(exit_code) = ptrace_exit_event_code(saved_sysno, saved_a0)
&& crate::syscall::ptrace_notify_exit(
thr.proc_data.proc.pid(),
exit_code,
)
{
let _ = ptrace_stop_current(thr, Signo::SIGTRAP, &mut uctx);
}
handle_syscall(&mut uctx);
if thr.proc_data.has_ptrace_pending_event_for(tid)
&& let Some(_resume_sig) =
ptrace_stop_current(thr, Signo::SIGTRAP, &mut uctx)
{
continue;
}
if matches!(
thr.proc_data.take_ptrace_syscall_trace_for(tid),
SyscallTraceState::Exit
) {
let _ = ptrace_syscall_stop_current(thr, Signo::SIGTRAP, &mut uctx);
}
if thr.proc_data.take_ptrace_exec_stop_pending() {
let _is_event =
crate::syscall::ptrace_notify_exec(thr.proc_data.proc.pid());
if let Some(_resume_sig) =
ptrace_stop_current(thr, Signo::SIGTRAP, &mut uctx)
{
continue;
}
}
}
ReturnReason::PageFault(addr, flags) => {
if !thr.proc_data.aspace().lock().handle_page_fault(addr, flags) {
info!(
"{:?}: segmentation fault at {:#x} {:?}",
thr.proc_data.proc, addr, flags
);
raise_signal_fatal(SignalInfo::new_kernel(Signo::SIGSEGV), &uctx)
.expect("Failed to send SIGSEGV");
}
}
ReturnReason::Interrupt => {}
#[allow(unused_labels)]
ReturnReason::Exception(exc_info) => 'exc: {
let kind = exc_info.kind();
// A uprobe plants an `int3` in user text (delivered as a
// #BP / Breakpoint exception) and completes its
// out-of-line single-step via a #DB / Debug exception.
// Route both to this process' uprobe manager before any
// ptrace / signal handling: if a uprobe owns the
// faulting address it fixes up `uctx` (sets the
// out-of-line PC + single-step, or restores PC after the
// step) and we resume directly. If not, fall through.
match kind {
ExceptionKind::Breakpoint
if crate::uprobe::break_uprobe_handler(&mut uctx).is_some() =>
{
break 'exc;
}
// x86_64 completes the out-of-line single-step via a
// #DB; other arches handle stepping inside the
// breakpoint path, so the debug hook is x86_64-only.
#[cfg(target_arch = "x86_64")]
ExceptionKind::Debug
if crate::uprobe::debug_uprobe_handler(&mut uctx).is_some() =>
{
break 'exc;
}
_ => {}
}
if matches!(kind, ExceptionKind::Breakpoint)
&& (thr.proc_data.is_ptrace_traceme()
|| thr.proc_data.is_ptrace_attached())
{
let saved_insn = thr.proc_data.take_ptrace_ss_saved_insn_for(thr.tid());
if let Some((addr, insn)) = saved_insn {
if addr == uctx.ip() {
let aspace = thr.proc_data.aspace();
let aspace = aspace.lock();
let _ = aspace.write(
ax_memory_addr::VirtAddr::from_usize(addr),
&(insn as u16).to_ne_bytes(),
);
#[cfg(target_arch = "riscv64")]
ax_runtime::hal::cpu::asm::flush_icache_all();
} else {
thr.proc_data.set_ptrace_ss_saved_insn_for(
thr.tid(),
Some((addr, insn)),
);
}
}
if let Some(_resume_sig) =
ptrace_stop_current(thr, Signo::SIGTRAP, &mut uctx)
{
break 'exc;
}
}
warn!(
"user exception: ip={:#x}, fault_addr={:#x}, kind={:?}, esr={:#x}, \
ec={:#x}, iss={:#x}, info={:?}",
uctx.ip(),
exception_fault_addr(&exc_info),
kind,
exception_esr_value(&exc_info),
exception_ec_value(&exc_info),
exception_iss_value(&exc_info),
exc_info
);
let signo = match kind {
ExceptionKind::Misaligned => {
#[cfg(target_arch = "loongarch64")]
if unsafe { uctx.emulate_unaligned() }.is_ok() {
break 'exc;
}
Signo::SIGBUS
}
ExceptionKind::Breakpoint => Signo::SIGTRAP,
ExceptionKind::IllegalInstruction => {
// AArch64 EL0 reads of ID_AA64*_EL1 (CPU feature
// detection, e.g. the Go runtime) trap as EC=0 /
// IllegalInstruction. Emulate them like Linux
// instead of killing the program with SIGILL.
#[cfg(target_arch = "aarch64")]
if unsafe { uctx.emulate_mrs_id_reg() } {
break 'exc;
}
Signo::SIGILL
}
_ => Signo::SIGTRAP,
};
raise_signal_fatal(SignalInfo::new_kernel(signo), &uctx)
.expect("Failed to send SIGTRAP");
}
r => {
warn!("Unexpected return reason: {r:?}");
raise_signal_fatal(SignalInfo::new_kernel(Signo::SIGSEGV), &uctx)
.expect("Failed to send SIGSEGV");
}
}
if !unblock_next_signal() {
let eintr_code = -(ax_errno::LinuxError::EINTR.code() as isize);
let restart = if is_syscall
&& (uctx.retval() as isize) == eintr_code
&& syscall_allows_signal_restart(saved_sysno)
{
Some(SyscallRestartInfo {
saved_a0,
saved_sysno,
})
} else {
None
};
// Single-shot: the first delivered signal decides
// whether to restart. Subsequent signals in the same
// loop must not re-apply the decision.
let mut pending_restart = restart.as_ref();
while check_signals(thr, &mut uctx, None, pending_restart) {
pending_restart = None;
}
}
set_timer_state(&curr, TimerState::User);
curr.clear_interrupt();
}
},
name.into(),
crate::config::KERNEL_STACK_SIZE,
)
}
fn ptrace_exit_event_code(sysno: usize, arg0: usize) -> Option<i32> {
match Sysno::new(sysno) {
Some(Sysno::exit | Sysno::exit_group) => Some((arg0 as i32) << 8),
_ => None,
}
}
#[cfg(target_arch = "aarch64")]
fn exception_fault_addr(exc_info: &ExceptionInfo) -> usize {
exc_info.far
}
#[cfg(target_arch = "aarch64")]
fn exception_esr_value(exc_info: &ExceptionInfo) -> u64 {
exc_info.esr_value()
}
#[cfg(target_arch = "aarch64")]
fn exception_ec_value(exc_info: &ExceptionInfo) -> u64 {
exc_info.ec_value()
}
#[cfg(target_arch = "aarch64")]
fn exception_iss_value(exc_info: &ExceptionInfo) -> u64 {
exc_info.iss_value()
}
#[cfg(target_arch = "riscv64")]
fn exception_fault_addr(exc_info: &ExceptionInfo) -> usize {
exc_info.stval
}
#[cfg(target_arch = "riscv64")]
fn exception_esr_value(_exc_info: &ExceptionInfo) -> u64 {
0
}
#[cfg(target_arch = "riscv64")]
fn exception_ec_value(_exc_info: &ExceptionInfo) -> u64 {
0
}
#[cfg(target_arch = "riscv64")]
fn exception_iss_value(_exc_info: &ExceptionInfo) -> u64 {
0
}
#[cfg(target_arch = "loongarch64")]
fn exception_fault_addr(exc_info: &ExceptionInfo) -> usize {
exc_info.badv
}
#[cfg(target_arch = "loongarch64")]
fn exception_esr_value(_exc_info: &ExceptionInfo) -> u64 {
0
}
#[cfg(target_arch = "loongarch64")]
fn exception_ec_value(_exc_info: &ExceptionInfo) -> u64 {
_exc_info.ecode as u64
}
#[cfg(target_arch = "loongarch64")]
fn exception_iss_value(_exc_info: &ExceptionInfo) -> u64 {
_exc_info.esubcode as u64
}
#[cfg(target_arch = "x86_64")]
fn exception_fault_addr(exc_info: &ExceptionInfo) -> usize {
exc_info.cr2
}
#[cfg(target_arch = "x86_64")]
fn exception_esr_value(_exc_info: &ExceptionInfo) -> u64 {
0
}
#[cfg(target_arch = "x86_64")]
fn exception_ec_value(_exc_info: &ExceptionInfo) -> u64 {
0
}
#[cfg(target_arch = "x86_64")]
fn exception_iss_value(_exc_info: &ExceptionInfo) -> u64 {
0
}