mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update
[ Upstream commit1184950e34
] Replace rcu_dereference() with rcu_access_pointer() since we hold the lock here (and aren't in an RCU critical section). Fixes:32af9a9e10
("wifi: cfg80211: free beacon_ies when overridden from hidden BSS") Reported-and-tested-by: syzbot+864a269c27ee06b58374@syzkaller.appspotmail.com Signed-off-by: Edward Adam Davis <eadavis@qq.com> Link: https://msgid.link/tencent_BF8F0DF0258C8DBF124CDDE4DD8D992DCF07@qq.com Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2d5228be5e
commit
8a67b8d2ad
@ -1830,7 +1830,7 @@ __cfg80211_bss_update(struct cfg80211_registered_device *rdev,
|
||||
&hidden->hidden_list);
|
||||
hidden->refcount++;
|
||||
|
||||
ies = (void *)rcu_dereference(new->pub.beacon_ies);
|
||||
ies = (void *)rcu_access_pointer(new->pub.beacon_ies);
|
||||
rcu_assign_pointer(new->pub.beacon_ies,
|
||||
hidden->pub.beacon_ies);
|
||||
if (ies)
|
||||
|
Loading…
Reference in New Issue
Block a user