public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [BUG] r8188eu: Potential deadlocks in rtw_wx_set_wap/essid functions
@ 2025-02-25 13:02 Gui-Dong Han
  2025-02-25 13:57 ` Phillip Potter
  0 siblings, 1 reply; 3+ messages in thread
From: Gui-Dong Han @ 2025-02-25 13:02 UTC (permalink / raw)
  To: Larry.Finger, phil, paskripkin, Greg KH
  Cc: linux-staging, LKML, baijiaju1990, stable

Hello maintainers,

I would like to report a potential lock ordering issue in the r8188eu
driver. This may lead to deadlocks under certain conditions.

The functions rtw_wx_set_wap() and rtw_wx_set_essid() acquire locks in
an order that contradicts the established locking hierarchy observed
in other parts of the driver:

1. They first take &pmlmepriv->scanned_queue.lock
2. Then call rtw_set_802_11_infrastructure_mode() which takes &pmlmepriv->lock

This is inverted compared to the common pattern seen in functions like
rtw_joinbss_event_prehandle(), rtw_createbss_cmd_callback(), and
others, which typically:

1. Take &pmlmepriv->lock first
2. Then take &pmlmepriv->scanned_queue.lock

This lock inversion creates a potential deadlock scenario when these
code paths execute concurrently.

Moreover, the call chain: rtw_wx_set_* ->
rtw_set_802_11_infrastructure_mode() -> rtw_free_assoc_resources()
could lead to recursive acquisition of &pmlmepriv->scanned_queue.lock,
potentially causing self-deadlock even without concurrency.

This issue exists in longterm kernels containing the r8188eu driver:

5.4.y (until 5.4.290)
5.10.y (until 5.10.234)
5.15.y (until 5.15.178)
6.1.y (until 6.1.129)

The r8188eu driver has been removed from upstream, but older
maintained versions (5.4.x–6.1.x) still include this driver and are
affected.

This issue was identified through static analysis. While I've verified
the locking patterns through code review, I'm not sufficiently
familiar with the driver's internals to propose a safe fix.

Thank you for your attention to this matter.

Best regards,
Gui-Dong Han

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-02-25 14:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-25 13:02 [BUG] r8188eu: Potential deadlocks in rtw_wx_set_wap/essid functions Gui-Dong Han
2025-02-25 13:57 ` Phillip Potter
2025-02-25 14:53   ` Dan Carpenter

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