Page MenuHomeFreeBSD

syscalls: if ptrace(PT_SETREG) occured during syscall, do not do set_syscall_retval()
Needs ReviewPublic

Authored by kib on Oct 30 2025, 6:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Sep 12, 12:52 PM
Unknown Object (File)
Sun, Sep 6, 9:02 PM
Unknown Object (File)
Sun, Sep 6, 5:45 PM
Unknown Object (File)
Sun, Sep 6, 4:21 PM
Unknown Object (File)
Sun, Sep 6, 12:20 PM
Unknown Object (File)
Sun, Sep 6, 8:09 AM
Unknown Object (File)
Sat, Sep 5, 8:01 PM
Unknown Object (File)
Sat, Sep 5, 12:56 AM
Subscribers

Details

Summary
to preserve the register state enforced by debugger.  This is only
relevant for transparent attach to the slow syscalls where sleeps are
not interrupted.

PR:     290008


kern/subr_syscalls.c: declare 'traced' local variables boolean

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

kib requested review of this revision.Oct 30 2025, 6:41 PM

That said, I disagree that this is a kernel bug at all.

sys/kern/subr_syscall.c
119

Don't we need the proc lock here?

kib marked an inline comment as done.

Clear TDB_USERWR under proc lock. Do it earlier.

I'm not sure if we should make such a change, but it looks ok to me.

This revision is now accepted and ready to land.Nov 2 2025, 5:48 PM
kib updated this revision to Diff 165700.

Rebase