lkml.org 
[lkml]   [2019]   [Nov]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectKASAN_INLINE && patchable-function-entry
Hi Torsten,

I've hit a rather unfortunate edge-case when trying to boot an arm64
kernel configured with KASAN_INLINE && FTRACE_WITH_REGS && !MODULES.

I'm not sure if the compiler behaviour is intentional or not, so I've
dumped the relevant details here. There might be a larger set of
problems, so please see the queries at the end (e.g. w.r.t. the naked
attribute).

As a heads-up to the ftrace folk, I think it's possible to work around
this specific issue in the kernel by allowing the arch code to filter
out call sites at init time (probably in ftrace_init_nop()), but I
haven't put that together yet.

When booting a kernel with those options, there's a boot-time splat:

| [ 0.000000] ftrace: allocating 32281 entries in 127 pages
| [ 0.000000] ------------[ cut here ]------------
| [ 0.000000] WARNING: CPU: 0 PID: 0 at kernel/trace/ftrace.c:2019 ftrace_bug+0x27c/0x328
| [ 0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.4.0-rc3-00008-g7f08ae53a7e3 #13
| [ 0.000000] Hardware name: linux,dummy-virt (DT)
| [ 0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO)
| [ 0.000000] pc : ftrace_bug+0x27c/0x328
| [ 0.000000] lr : ftrace_init+0x640/0x6cc
| [ 0.000000] sp : ffffa000120e7e00
| [ 0.000000] x29: ffffa000120e7e00 x28: ffff00006ac01b10
| [ 0.000000] x27: ffff00006ac898c0 x26: dfffa00000000000
| [ 0.000000] x25: ffffa000120ef290 x24: ffffa0001216df40
| [ 0.000000] x23: 000000000000018d x22: ffffa0001244c700
| [ 0.000000] x21: ffffa00011bf393c x20: ffff00006ac898c0
| [ 0.000000] x19: 00000000ffffffff x18: 0000000000001584
| [ 0.000000] x17: 0000000000001540 x16: 0000000000000007
| [ 0.000000] x15: 0000000000000000 x14: ffffa00010432770
| [ 0.000000] x13: ffff940002483519 x12: 1ffff40002483518
| [ 0.000000] x11: 1ffff40002483518 x10: ffff940002483518
| [ 0.000000] x9 : dfffa00000000000 x8 : 0000000000000001
| [ 0.000000] x7 : ffff940002483519 x6 : ffffa0001241a8c0
| [ 0.000000] x5 : ffff940002483519 x4 : ffff940002483519
| [ 0.000000] x3 : ffffa00011780870 x2 : 0000000000000001
| [ 0.000000] x1 : 1fffe0000d591318 x0 : 0000000000000000
| [ 0.000000] Call trace:
| [ 0.000000] ftrace_bug+0x27c/0x328
| [ 0.000000] ftrace_init+0x640/0x6cc
| [ 0.000000] start_kernel+0x27c/0x654
| [ 0.000000] random: get_random_bytes called from print_oops_end_marker+0x30/0x60 with crng_init=0
| [ 0.000000] ---[ end trace 0000000000000000 ]---
| [ 0.000000] ftrace faulted on writing
| [ 0.000000] [<ffffa00011bf393c>] _GLOBAL__sub_D_65535_0___tracepoint_initcall_level+0x4/0x28
| [ 0.000000] Initializing ftrace call sites
| [ 0.000000] ftrace record flags: 0
| [ 0.000000] (0)
| [ 0.000000] expected tramp: ffffa000100b3344

AFAICT, using -fpatchable-function-entry instruments some functions
implicitly generated by the compiler. In this case, that's the
_GLOBAL__sub_D_65535_0_* function, which GCC generated to unregister
KASAN globals, and placed in .exit.text.

The kernel doesn't treat .exit.text as core_kernel_text(), so when built
without modules, the arm64 ftrace init code kernel refuses to patch this
site at init time. When built with modules we assume that any
!core_kernel_text() address is a module address, and happen to silently
get away with this.

In contrast, using -pg does not instrument those functions at all, so
I'm not sure if -fpatchable-function-entry was intended to do something
different here, or whether this is a bug.

To demonstrate, consider the following (saved as test.c):

| unsigned long foo = 0;

Compiling with:

$ aarch64-linux-gcc -pg -fsanitize=kernel-address \
-fasan-shadow-offset=0xdfffa00000000000 --param asan-globals=1 \
--param asan-instrument-allocas=1 -c test.c

... gives (per objdump -d):

| Disassembly of section .text:
|
| 0000000000000000 <_GLOBAL__sub_D_65535_0_foo>:
| 0: a9bf7bfd stp x29, x30, [sp, #-16]!
| 4: 910003fd mov x29, sp
| 8: d2800021 mov x1, #0x1 // #1
| c: 90000000 adrp x0, 0 <_GLOBAL__sub_D_65535_0_foo>
| 10: 91000000 add x0, x0, #0x0
| 14: 94000000 bl 0 <__asan_unregister_globals>
| 18: a8c17bfd ldp x29, x30, [sp], #16
| 1c: d65f03c0 ret
|
| 0000000000000020 <_GLOBAL__sub_I_65535_1_foo>:
| 20: a9bf7bfd stp x29, x30, [sp, #-16]!
| 24: 910003fd mov x29, sp
| 28: d2800021 mov x1, #0x1 // #1
| 2c: 90000000 adrp x0, 0 <_GLOBAL__sub_D_65535_0_foo>
| 30: 91000000 add x0, x0, #0x0
| 34: 94000000 bl 0 <__asan_register_globals>
| 38: a8c17bfd ldp x29, x30, [sp], #16
| 3c: d65f03c0 ret

... which is not instrumented with calls to _mcount.

Compiling with:

$ aarch64-linux-gcc -fpatchable-function-entry=2 \
-fsanitize=kernel-address -fasan-shadow-offset=0xdfffa00000000000 \
--param asan-globals=1 --param asan-instrument-allocas=1 -c test.c

... gives (per objdump -d):

| Disassembly of section .text:
|
| 0000000000000000 <_GLOBAL__sub_D_65535_0_foo>:
| 0: d503201f nop
| 4: d503201f nop
| 8: a9bf7bfd stp x29, x30, [sp, #-16]!
| c: 910003fd mov x29, sp
| 10: d2800021 mov x1, #0x1 // #1
| 14: 90000000 adrp x0, 0 <_GLOBAL__sub_D_65535_0_foo>
| 18: 91000000 add x0, x0, #0x0
| 1c: 94000000 bl 0 <__asan_unregister_globals>
| 20: a8c17bfd ldp x29, x30, [sp], #16
| 24: d65f03c0 ret
|
| 0000000000000028 <_GLOBAL__sub_I_65535_1_foo>:
| 28: d503201f nop
| 2c: d503201f nop
| 30: a9bf7bfd stp x29, x30, [sp, #-16]!
| 34: 910003fd mov x29, sp
| 38: d2800021 mov x1, #0x1 // #1
| 3c: 90000000 adrp x0, 0 <_GLOBAL__sub_D_65535_0_foo>
| 40: 91000000 add x0, x0, #0x0
| 44: 94000000 bl 0 <__asan_register_globals>
| 48: a8c17bfd ldp x29, x30, [sp], #16
| 4c: d65f03c0 ret

... which /is/ instrumented with NOPs, and objdump -r tells me there are
correspoding relocs in __patchable_function_entries:

| RELOCATION RECORDS FOR [__patchable_function_entries]:
| OFFSET TYPE VALUE
| 0000000000000000 R_AARCH64_ABS64 .text
| 0000000000000008 R_AARCH64_ABS64 .text+0x0000000000000028

Was it intended that -fpatachable-function-entry behaved differently
from -pg in this regard?

Is this likely to be problematic for other users?

Are there other implicitly-generated functions we need to look out for
here, for which this would be a problem?

It looks like this also applies to __attribute__((naked)) on ARM, which
seems like a bug given the GCC manual says:

| naked
|
| This attribute allows the compiler to construct the requisite
| function declaration, while allowing the body of the function to be
| assembly code. The specified function will not have
| prologue/epilogue sequences generated by the compiler. Only basic
| asm statements can safely be included in naked functions (see Basic
| Asm). While using extended asm or a mixture of basic asm and C code
| may appear to work, they cannot be depended upon to work reliably
| and are not supported.

... and here an unexpected prologue sequence (of NOPs) is being added.
That could trip up anyone relying on the size of the function or offsets
within it.

Thanks,
Mark.

\
 
 \ /
  Last update: 2019-11-21 19:36    [W:0.063 / U:0.348 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site