public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [BUG] staging: rtl8712: possible ABBA deadlocks
@ 2021-12-28  7:18 Jia-Ju Bai
  0 siblings, 0 replies; only message in thread
From: Jia-Ju Bai @ 2021-12-28  7:18 UTC (permalink / raw)
  To: Larry Finger, gregkh, zhansayabagdaulet, christophe.jaillet,
	insafonov, paskripkin, deborahbrouwer3563
  Cc: linux-staging, linux-kernel

Hello,

My static analysis tool reports several possible ABBA deadlocks in the 
rtl8712 driver in Linux 5.10:

# BUG1:
r8712_free_all_stainfo()
   spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL); --> Line 202 (Lock A)
   r8712_free_stainfo()
     r8712_free_xmitframe_queue()
       spin_lock_irqsave(&(pframequeue->lock), irqL); --> Line 834 (Lock B)

r8711_wx_set_wap()
   spin_lock_irqsave(&queue->lock, irqL); --> Line 1049 (Lock B)
   r8712_set_802_11_infrastructure_mode()
     r8712_free_assoc_resources()
       r8712_get_stainfo()
         spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL); --> Line 228 
(Lock A)

When r8712_free_all_stainfo() and r8711_wx_set_wap() are concurrently 
executed, the deadlocks can occur.

# BUG2:
r8712_joinbss_event_callback()
   spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL2); --> Line 735 (Lock A)
   r8712_free_stainfo()
     r8712_free_xmitframe_queue()
       spin_lock_irqsave(&(pframequeue->lock), irqL); --> Line 834 (Lock B)

r8711_wx_set_wap()
   spin_lock_irqsave(&queue->lock, irqL); --> Line 1049 (Lock B)
   r8712_set_802_11_infrastructure_mode()
     r8712_free_assoc_resources()
       r8712_get_stainfo()
         spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL); --> Line 228 
(Lock A)

When r8712_joinbss_event_callback() and r8711_wx_set_wap() are 
concurrently executed, the deadlocks can occur.

# BUG3:
r8712_stadel_event_callback()
   spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL); --> Line 932 (Lock A)
   r8712_free_stainfo()
     r8712_free_xmitframe_queue()
       spin_lock_irqsave(&(pframequeue->lock), irqL); --> Line 834 (Lock B)

r8711_wx_set_wap()
   spin_lock_irqsave(&queue->lock, irqL); --> Line 1049 (Lock B)
   r8712_set_802_11_infrastructure_mode()
     r8712_free_assoc_resources()
       r8712_get_stainfo()
         spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL); --> Line 228 
(Lock A)

When r8712_stadel_event_callback() and r8711_wx_set_wap() are 
concurrently executed, the deadlocks can occur.


I am not quite sure whether these possible deadlocks are real and how to 
fix them if them are real.
Any feedback would be appreciated, thanks :)

Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>


Best wishes,
Jia-Ju Bai

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-28  7:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-28  7:18 [BUG] staging: rtl8712: possible ABBA deadlocks Jia-Ju Bai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox