lkml.org 
[lkml]   [2020]   [Aug]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[PATCH tip/core/rcu 0/12] Add strict short-grace-period Kconfig option
Hello!

This series adds a CONFIG_RCU_STRICT_GRACE_PERIOD Kconfig option that
causes RCU to strive for short grace periods even at great expense in
terms of performance, scalability, and real-time response. This option is
therefore not for production use, but rather to allow tools such as KASAN
to more readily detect pointer leaks from RCU read-side critical sections.
Here is an example of such a pointer leak:

rcu_read_lock();
p = rcu_dereference(gp);
do_something(p);
rcu_read_unlock(); // *p might be freed immediately!
do_something_else(p); // Potential use after free BUG!!!

This series also adds a rcutree.rcu_unlock_delay kernel boot parameter
that delays the specified number of microseconds after the outermost
rcu_read_unlock() in an attempt to further bend the odds in KASAN's favor.

The patches in this series are as follows:

1. Add Kconfig option for strict RCU grace periods.

2. Reduce leaf fanout for strict RCU grace periods.

3. Restrict default jiffies_till_first_fqs for strict RCU GPs.

4. Force DEFAULT_RCU_BLIMIT to 1000 for strict RCU GPs.

5. Always set .need_qs from __rcu_read_lock() for strict GPs.

6. Do full report for .need_qs for strict GPs.

7. Attempt QS when CPU discovers GP for strict GPs.

8. IPI all CPUs at GP start for strict GPs.

9. IPI all CPUs at GP end for strict GPs.

10. Provide optional RCU-reader exit delay for strict GPs.

11. Execute RCU reader shortly after rcu_core for strict GPs.

12. Report QS for outermost PREEMPT=n rcu_read_unlock() for strict GPs.

Thanx, Paul

------------------------------------------------------------------------

Documentation/admin-guide/kernel-parameters.txt | 9 +++
include/linux/rcupdate.h | 7 ++
kernel/rcu/Kconfig | 8 +-
kernel/rcu/Kconfig.debug | 15 +++++
kernel/rcu/tree.c | 65 +++++++++++++++++++++---
kernel/rcu/tree.h | 1
kernel/rcu/tree_plugin.h | 47 +++++++++++++----
7 files changed, 132 insertions(+), 20 deletions(-)

\
 
 \ /
  Last update: 2020-08-13 00:56    [W:0.100 / U:1.244 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site