Module Name: src Committed By: kamil Date: Thu May 2 22:23:49 UTC 2019
Modified Files: src/sys/kern: kern_lwp.c kern_sig.c sys_lwp.c Log Message: Introduce fixes for ptrace(2) Stop disabling LWP create and exit events for PT_SYSCALL tracing. PT_SYSCALL disabled EXEC reporting for legacy reasons, there is no need to repeat it for LWP and CHLD events. Pass full siginfo from trapsignal events (SEGV, BUS, ILL, TRAP, FPE). This adds missing information about signals like fault address. Set ps_lwp always. Before passing siginfo to userland through p_sigctx.ps_info, make sure that it was zeroed for unused bytes. LWP and CHLD events do not set si_addr and si_trap, these pieces of information are passed for crashes (like software breakpoint). LLDB crash reporting works now correctly: (lldb) r Process 552 launched: '/tmp/a.out' (x86_64) Process 552 stopped * thread #1, stop reason = signal SIGSEGV: invalid address (fault address: 0x123456) To generate a diff of this commit: cvs rdiff -u -r1.198 -r1.199 src/sys/kern/kern_lwp.c cvs rdiff -u -r1.355 -r1.356 src/sys/kern/kern_sig.c cvs rdiff -u -r1.65 -r1.66 src/sys/kern/sys_lwp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.