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)
Wed, May 8, 8:39 PM
Unknown Object (File)
Thu, May 2, 10:09 AM
Unknown Object (File)
Thu, May 2, 10:08 AM
Unknown Object (File)
Thu, May 2, 10:08 AM
Unknown Object (File)
Thu, May 2, 10:08 AM
Unknown Object (File)
Thu, May 2, 7:36 AM
Unknown Object (File)
Thu, May 2, 12:43 AM
Unknown Object (File)
Thu, Apr 25, 12:36 PM
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

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 16292
Build 16236: arc lint + arc unit

Event Timeline

sys/arm/include/cpufunc.h
503

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

sys/arm/include/cpufunc.h
503

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

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

sys/arm/include/cpufunc.h
503

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.