module: kallsyms: Ensure preemption in add_kallsyms() with PREEMPT_RT
authorAaron Tomlin <atomlin@redhat.com>
Mon, 11 Jul 2022 17:17:19 +0000 (18:17 +0100)
committerLuis Chamberlain <mcgrof@kernel.org>
Mon, 11 Jul 2022 17:19:09 +0000 (10:19 -0700)
commite69a66147d49506062cd837f3b230ee3e98102ab
tree1d2690c89d6befa274bb80a8bb908baac1d2f2cd
parent2cc39179acbbe524127f0427cee92b629db4d64b
module: kallsyms: Ensure preemption in add_kallsyms() with PREEMPT_RT

The commit 08126db5ff73 ("module: kallsyms: Fix suspicious rcu usage")
under PREEMPT_RT=y, disabling preemption introduced an unbounded
latency since the loop is not fixed. This change caused a regression
since previously preemption was not disabled and we would dereference
RCU-protected pointers explicitly. That being said, these pointers
cannot change.

Before kallsyms-specific data is prepared/or set-up, we ensure that
the unformed module is known to be unique i.e. does not already exist
(see load_module()). Therefore, we can fix this by using the common and
more appropriate RCU flavour as this section of code can be safely
preempted.

Reported-by: Steven Rostedt <rostedt@goodmis.org>
Fixes: 08126db5ff73 ("module: kallsyms: Fix suspicious rcu usage")
Signed-off-by: Aaron Tomlin <atomlin@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
kernel/module/kallsyms.c