kdb: Make memory allocations more robust
authorSumit Garg <sumit.garg@linaro.org>
Fri, 22 Jan 2021 11:05:56 +0000 (16:35 +0530)
committerDaniel Thompson <daniel.thompson@linaro.org>
Mon, 8 Feb 2021 13:42:50 +0000 (13:42 +0000)
commit93f7a6d818deef69d0ba652d46bae6fbabbf365c
tree8f6fe0ec2e9c508da4104d7abdb6a49cf3c78c08
parent0759d8072843fe621b4d7abb31a7b7bc84ae4159
kdb: Make memory allocations more robust

Currently kdb uses in_interrupt() to determine whether its library
code has been called from the kgdb trap handler or from a saner calling
context such as driver init. This approach is broken because
in_interrupt() alone isn't able to determine kgdb trap handler entry from
normal task context. This can happen during normal use of basic features
such as breakpoints and can also be trivially reproduced using:
echo g > /proc/sysrq-trigger

We can improve this by adding check for in_dbg_master() instead which
explicitly determines if we are running in debugger context.

Cc: stable@vger.kernel.org
Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
Link: https://lore.kernel.org/r/1611313556-4004-1-git-send-email-sumit.garg@linaro.org
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
kernel/debug/kdb/kdb_private.h