x86/stacktrace: Prevent infinite loop in arch_stack_walk_user()
authorEiichi Tsukata <devel@etsukata.com>
Thu, 11 Jul 2019 02:35:01 +0000 (11:35 +0900)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 11 Jul 2019 06:22:03 +0000 (08:22 +0200)
commitcbf5b73d162b22e044fe0b7d51dcaa33be065253
treef4baca1e7a79277c48261f22285361808633911b
parent7652ac92018536eb807b6c2130100c85f1ba7e3b
x86/stacktrace: Prevent infinite loop in arch_stack_walk_user()

arch_stack_walk_user() checks `if (fp == frame.next_fp)` to prevent a
infinite loop by self reference but it's not enogh for circular reference.

Once a lack of return address is found, there is no point to continue the
loop, so break out.

Fixes: 02b67518e2b1 ("tracing: add support for userspace stacktraces in tracing/iter_ctrl")
Signed-off-by: Eiichi Tsukata <devel@etsukata.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Link: https://lkml.kernel.org/r/20190711023501.963-1-devel@etsukata.com
arch/x86/kernel/stacktrace.c