OSDN Git Service

mac80211: Fix kernel panic due to use of txq after free
authorBhagavathi Perumal S <bperumal@codeaurora.org>
Tue, 16 Apr 2019 07:24:40 +0000 (12:54 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 25 May 2019 16:23:43 +0000 (18:23 +0200)
commit9c045d8c97390c44a3bea8c2f53930daf84e8960
tree1066880d021891f6716bdabe7b8edc8689d01a51
parenta0a49d8712de474404381f94b0b54f72fa0db0fb
mac80211: Fix kernel panic due to use of txq after free

[ Upstream commit f1267cf3c01b12e0f843fb6a7450a7f0b2efab8a ]

The txq of vif is added to active_txqs list for ATF TXQ scheduling
in the function ieee80211_queue_skb(), but it was not properly removed
before freeing the txq object. It was causing use after free of the txq
objects from the active_txqs list, result was kernel panic
due to invalid memory access.

Fix kernel invalid memory access by properly removing txq object
from active_txqs list before free the object.

Signed-off-by: Bhagavathi Perumal S <bperumal@codeaurora.org>
Acked-by: Toke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/mac80211/iface.c