Page MenuHomeFreeBSD

Export a breakpoint() function to userland.
ClosedPublic

Authored by jhb on Apr 25 2018, 2:43 AM.
Tags
None
Referenced Files
F167534671: D15191.id44667.diff
Sat, Aug 22, 1:26 PM
F167528060: D15191.id44979.diff
Sat, Aug 22, 12:25 PM
F167501803: D15191.id41829.diff
Sat, Aug 22, 8:20 AM
F167432001: D15191.id42636.diff
Fri, Aug 21, 5:04 PM
F167430745: D15191.id41829.diff
Fri, Aug 21, 4:50 PM
F167430654: D15191.id44667.diff
Fri, Aug 21, 4:49 PM
Unknown Object (File)
Fri, Aug 21, 2:21 PM
Unknown Object (File)
Fri, Aug 21, 1:31 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

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 17736
Build 17536: arc lint + arc unit

Event Timeline

sys/arm/include/cpufunc.h
516

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

sys/arm/include/cpufunc.h
516

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
516

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

sys/arm/include/cpufunc.h
516

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.