The packet transmission path in rtw_xmit.c contained TODO comments
indicating a missing lock. This patch implements spin_lock_bh and
spin_unlock_bh around the station attribute update section.
This prevents a potential race condition where station security and
PHY information could be modified on another CPU core during
transmission. The use of _bh variants ensures safety in bottom-half
contexts common in network transmit paths.
Verified that psta is NULL-checked prior to acquisition and that no
double-unlocks occur on the exit path.
Signed-off-by: Karthikey D Kadati <karthikey3608@gmail.com>
Link: https://patch.msgid.link/20251227113348.26272-1-karthikey3608@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
if (!(psta->state & _FW_LINKED))
return _FAIL;
- /* TODO:_lock */
+ spin_lock_bh(&psta->lock);
if (update_attrib_sec_info(padapter, pattrib, psta) == _FAIL) {
+ spin_unlock_bh(&psta->lock);
res = _FAIL;
goto exit;
}
update_attrib_phy_info(padapter, pattrib, psta);
pattrib->psta = psta;
- /* TODO:_unlock */
+ spin_unlock_bh(&psta->lock);
pattrib->pctrl = 0;