mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
When injecting frames a temporary node is faked, during this several
uses of ic_curchan occur. Due to the nature of a scan, switching channels constantly and all this happening without any kind of locks held, it might happen that ic_curchan points to nowhere leading to panics. Fix this by not allowing frame injections while in SCAN state. Tested by: Paul B. Mahol <onemda at gmail.com>
This commit is contained in:
parent
9d36b055fd
commit
0d9aed8ad6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219604
@ -419,7 +419,8 @@ ieee80211_output(struct ifnet *ifp, struct mbuf *m,
|
||||
"block %s frame in CAC state\n", "raw data");
|
||||
vap->iv_stats.is_tx_badstate++;
|
||||
senderr(EIO); /* XXX */
|
||||
}
|
||||
} else if (vap->iv_state == IEEE80211_S_SCAN)
|
||||
senderr(EIO);
|
||||
/* XXX bypass bridge, pfil, carp, etc. */
|
||||
|
||||
if (m->m_pkthdr.len < sizeof(struct ieee80211_frame_ack))
|
||||
|
Loading…
Reference in New Issue
Block a user