Skip to content

Commit 59f1916

Browse files
walacroxanan1996
authored andcommitted
kernel/fork: beware of __put_task_struct() calling context
BugLink: https://bugs.launchpad.net/bugs/2043416 [ Upstream commit d243b34 ] Under PREEMPT_RT, __put_task_struct() indirectly acquires sleeping locks. Therefore, it can't be called from an non-preemptible context. One practical example is splat inside inactive_task_timer(), which is called in a interrupt context: CPU: 1 PID: 2848 Comm: life Kdump: loaded Tainted: G W --------- Hardware name: HP ProLiant DL388p Gen8, BIOS P70 07/15/2012 Call Trace: dump_stack_lvl+0x57/0x7d mark_lock_irq.cold+0x33/0xba mark_lock+0x1e7/0x400 mark_usage+0x11d/0x140 __lock_acquire+0x30d/0x930 lock_acquire.part.0+0x9c/0x210 rt_spin_lock+0x27/0xe0 refill_obj_stock+0x3d/0x3a0 kmem_cache_free+0x357/0x560 inactive_task_timer+0x1ad/0x340 __run_hrtimer+0x8a/0x1a0 __hrtimer_run_queues+0x91/0x130 hrtimer_interrupt+0x10f/0x220 __sysvec_apic_timer_interrupt+0x7b/0xd0 sysvec_apic_timer_interrupt+0x4f/0xd0 asm_sysvec_apic_timer_interrupt+0x12/0x20 RIP: 0033:0x7fff196bf6f5 Instead of calling __put_task_struct() directly, we defer it using call_rcu(). A more natural approach would use a workqueue, but since in PREEMPT_RT, we can't allocate dynamic memory from atomic context, the code would become more complex because we would need to put the work_struct instance in the task_struct and initialize it when we allocate a new task_struct. The issue is reproducible with stress-ng: while true; do stress-ng --sched deadline --sched-period 1000000000 \ --sched-runtime 800000000 --sched-deadline \ 1000000000 --mmapfork 23 -t 20 done Reported-by: Hu Chunyu <[email protected]> Suggested-by: Oleg Nesterov <[email protected]> Suggested-by: Valentin Schneider <[email protected]> Suggested-by: Peter Zijlstra <[email protected]> Signed-off-by: Wander Lairson Costa <[email protected]> Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Kamal Mostafa <[email protected]> Signed-off-by: Roxana Nicolescu <[email protected]>
1 parent 1f3e237 commit 59f1916

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

include/linux/sched/task.h

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,36 @@ static inline struct task_struct *get_task_struct(struct task_struct *t)
118118
}
119119

120120
extern void __put_task_struct(struct task_struct *t);
121+
extern void __put_task_struct_rcu_cb(struct rcu_head *rhp);
121122

122123
static inline void put_task_struct(struct task_struct *t)
123124
{
124-
if (refcount_dec_and_test(&t->usage))
125+
if (!refcount_dec_and_test(&t->usage))
126+
return;
127+
128+
/*
129+
* under PREEMPT_RT, we can't call put_task_struct
130+
* in atomic context because it will indirectly
131+
* acquire sleeping locks.
132+
*
133+
* call_rcu() will schedule delayed_put_task_struct_rcu()
134+
* to be called in process context.
135+
*
136+
* __put_task_struct() is called when
137+
* refcount_dec_and_test(&t->usage) succeeds.
138+
*
139+
* This means that it can't "conflict" with
140+
* put_task_struct_rcu_user() which abuses ->rcu the same
141+
* way; rcu_users has a reference so task->usage can't be
142+
* zero after rcu_users 1 -> 0 transition.
143+
*
144+
* delayed_free_task() also uses ->rcu, but it is only called
145+
* when it fails to fork a process. Therefore, there is no
146+
* way it can conflict with put_task_struct().
147+
*/
148+
if (IS_ENABLED(CONFIG_PREEMPT_RT) && !preemptible())
149+
call_rcu(&t->rcu, __put_task_struct_rcu_cb);
150+
else
125151
__put_task_struct(t);
126152
}
127153

kernel/fork.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,14 @@ void __put_task_struct(struct task_struct *tsk)
990990
}
991991
EXPORT_SYMBOL_GPL(__put_task_struct);
992992

993+
void __put_task_struct_rcu_cb(struct rcu_head *rhp)
994+
{
995+
struct task_struct *task = container_of(rhp, struct task_struct, rcu);
996+
997+
__put_task_struct(task);
998+
}
999+
EXPORT_SYMBOL_GPL(__put_task_struct_rcu_cb);
1000+
9931001
void __init __weak arch_task_cache_init(void) { }
9941002

9951003
/*

0 commit comments

Comments
 (0)