diff options
author | Gerald Schaefer <gerald.schaefer@de.ibm.com> | 2013-05-24 12:07:49 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-05-28 03:40:22 -0400 |
commit | 41261b6a832ea0e788627f6a8707854423f9ff49 (patch) | |
tree | da525ae676d3794ff05ff7cdb9fbf2a74ca65066 | |
parent | d07e75a6e0e8582bdecefe8868b0bfbdf2ee7085 (diff) |
sched/autogroup: Fix race with task_groups list
In autogroup_create(), a tg is allocated and added to the task_groups
list. If CONFIG_RT_GROUP_SCHED is set, this tg is then modified while on
the list, without locking. This can race with someone walking the list,
like __enable_runtime() during CPU unplug, and result in a use-after-free
bug.
To fix this, move sched_online_group(), which adds the tg to the list,
to the end of the autogroup_create() function after the modification.
Signed-off-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1369411669-46971-2-git-send-email-gerald.schaefer@de.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | kernel/sched/auto_group.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/sched/auto_group.c b/kernel/sched/auto_group.c index 64de5f8b0c9e..4a073539c58e 100644 --- a/kernel/sched/auto_group.c +++ b/kernel/sched/auto_group.c | |||
@@ -77,8 +77,6 @@ static inline struct autogroup *autogroup_create(void) | |||
77 | if (IS_ERR(tg)) | 77 | if (IS_ERR(tg)) |
78 | goto out_free; | 78 | goto out_free; |
79 | 79 | ||
80 | sched_online_group(tg, &root_task_group); | ||
81 | |||
82 | kref_init(&ag->kref); | 80 | kref_init(&ag->kref); |
83 | init_rwsem(&ag->lock); | 81 | init_rwsem(&ag->lock); |
84 | ag->id = atomic_inc_return(&autogroup_seq_nr); | 82 | ag->id = atomic_inc_return(&autogroup_seq_nr); |
@@ -98,6 +96,7 @@ static inline struct autogroup *autogroup_create(void) | |||
98 | #endif | 96 | #endif |
99 | tg->autogroup = ag; | 97 | tg->autogroup = ag; |
100 | 98 | ||
99 | sched_online_group(tg, &root_task_group); | ||
101 | return ag; | 100 | return ag; |
102 | 101 | ||
103 | out_free: | 102 | out_free: |