Page MenuHomeFreeBSD

Export a breakpoint() function to userland.
ClosedPublic

Authored by jhb on Apr 25 2018, 2:43 AM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 18 2024, 7:22 PM
Unknown Object (File)
Feb 8 2024, 11:13 AM
Unknown Object (File)
Feb 7 2024, 5:47 AM
Unknown Object (File)
Dec 20 2023, 8:10 AM
Unknown Object (File)
Dec 17 2023, 5:04 PM
Unknown Object (File)
Dec 17 2023, 2:08 AM
Unknown Object (File)
Dec 4 2023, 5:29 AM
Unknown Object (File)
Nov 7 2023, 5:56 AM
Subscribers

Details

Summary

As a result, expand coverage of tests using breakpoint() to more
architectures.

Test Plan
  • I have not tested any of these, so testing by others and/or review would be welcome. I would probably commit these separately, but they are glummed together in the branch this is part of so it's a bit easier to solicit review/testing with a combined patch.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/arm/include/cpufunc.h
503 ↗(On Diff #41829)

What instruction is this? You might also be able to use the .inst directive here.

sys/arm/include/cpufunc.h
503 ↗(On Diff #41829)

This matches GDB5_BREAKPOINT from sys/arm/include/trap.h and it is what GDB uses as the default breakpoint instructions for non-thumb arm:

https://github.com/bsdjhb/gdb/blob/master/gdb/arm-tdep.c#L7761

The in-kernel breakpoint() uses .word with the value of KERNEL_BREAKPOINT and I just used that as my template.

sys/arm/include/cpufunc.h
503 ↗(On Diff #41829)

It seems to be udf 0xfdee. udf is an instruction that raises the undefined instruction exception.

sys/arm/include/cpufunc.h
503 ↗(On Diff #41829)

Perhaps a comment with that reference?

This revision is now accepted and ready to land.May 1 2018, 3:29 PM
This revision was automatically updated to reflect the committed changes.
  • Updated to use 'udf' on 32-bit arm and tested on 32-bit arm.
  • Still need to verify arm64.

Have verified via ptrace_test on arm64 as well now, so both arm and arm64 have been runtime tested.

This revision is now accepted and ready to land.Jul 6 2018, 11:40 AM
This revision was automatically updated to reflect the committed changes.