* [PATCH] wifi: ath12k: fix use-after-free of arvif in assign_vif_chanctx()
@ 2026-03-10 2:43 James Kim
2026-04-27 7:26 ` James Kim
0 siblings, 1 reply; 2+ messages in thread
From: James Kim @ 2026-03-10 2:43 UTC (permalink / raw)
To: jjohnson
Cc: quic_srirrama, quic_ramess, kvalo, stable, linux-wireless, ath12k,
linux-kernel, James Kim
In ath12k_mac_op_assign_vif_chanctx(), arvif is obtained from
ath12k_mac_assign_link_vif() and then passed to
ath12k_mac_assign_vif_to_vdev(). Inside that function, when the
target radio (ar) differs from arvif->ar (multi-radio configuration),
the old arvif is freed via ath12k_mac_unassign_link_vif() -> kfree()
and a new one is allocated internally. However, only the ar pointer
is returned to the caller — the caller's arvif still points to the
freed memory.
The caller then continues to dereference this stale arvif pointer
at multiple locations (arvif->vdev_id, arvif->punct_bitmap,
arvif->is_started, etc.), resulting in a use-after-free.
Fix this by re-fetching arvif from ahvif->link[link_id] after
ath12k_mac_assign_vif_to_vdev() returns, since the link pointer
is always updated when a new arvif is assigned.
Fixes: 477cabfdb776 ("wifi: ath12k: modify link arvif creation and removal for MLO")
Cc: stable@vger.kernel.org
Signed-off-by: James Kim <james010kim@gmail.com>
---
drivers/net/wireless/ath/ath12k/mac.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/net/wireless/ath/ath12k/mac.c b/drivers/net/wireless/ath/ath12k/mac.c
index b253d1e3f405..ee44a8b59e9b 100644
--- a/drivers/net/wireless/ath/ath12k/mac.c
+++ b/drivers/net/wireless/ath/ath12k/mac.c
@@ -12069,6 +12069,17 @@ ath12k_mac_op_assign_vif_chanctx(struct ieee80211_hw *hw,
return -EINVAL;
}
+ /* ath12k_mac_assign_vif_to_vdev() may free and reassign arvif
+ * internally when switching radios (ar != arvif->ar). Refresh
+ * arvif from ahvif->link[].
+ */
+ arvif = wiphy_dereference(hw->wiphy, ahvif->link[link_id]);
+ if (!arvif) {
+ ath12k_hw_warn(ah, "failed to get arvif for link %u after vdev assignment",
+ link_id);
+ return -ENOENT;
+ }
+
ab = ar->ab;
ath12k_dbg(ab, ATH12K_DBG_MAC,
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] wifi: ath12k: fix use-after-free of arvif in assign_vif_chanctx()
2026-03-10 2:43 [PATCH] wifi: ath12k: fix use-after-free of arvif in assign_vif_chanctx() James Kim
@ 2026-04-27 7:26 ` James Kim
0 siblings, 0 replies; 2+ messages in thread
From: James Kim @ 2026-04-27 7:26 UTC (permalink / raw)
To: jjohnson
Cc: quic_srirrama, quic_ramess, kvalo, stable, linux-wireless, ath12k,
linux-kernel
Hi,
Just a gentle ping on this patch “wifi: ath12k: fix use-after-free of
arvif in assign_vif_chanctx()” (submitted on March 10, 2026).
It is a small, self-contained bug fix with a Fixes: tag, and the patch
still shows up as “New” in linux-wireless patchwork.
Please let me know if any changes are needed or if there is a better
way to route this fix.
Thanks,
James
On Tue, Mar 10, 2026 at 11:45 AM James Kim <james010kim@gmail.com> wrote:
>
> In ath12k_mac_op_assign_vif_chanctx(), arvif is obtained from
> ath12k_mac_assign_link_vif() and then passed to
> ath12k_mac_assign_vif_to_vdev(). Inside that function, when the
> target radio (ar) differs from arvif->ar (multi-radio configuration),
> the old arvif is freed via ath12k_mac_unassign_link_vif() -> kfree()
> and a new one is allocated internally. However, only the ar pointer
> is returned to the caller — the caller's arvif still points to the
> freed memory.
>
> The caller then continues to dereference this stale arvif pointer
> at multiple locations (arvif->vdev_id, arvif->punct_bitmap,
> arvif->is_started, etc.), resulting in a use-after-free.
>
> Fix this by re-fetching arvif from ahvif->link[link_id] after
> ath12k_mac_assign_vif_to_vdev() returns, since the link pointer
> is always updated when a new arvif is assigned.
>
> Fixes: 477cabfdb776 ("wifi: ath12k: modify link arvif creation and removal for MLO")
> Cc: stable@vger.kernel.org
> Signed-off-by: James Kim <james010kim@gmail.com>
> ---
> drivers/net/wireless/ath/ath12k/mac.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/drivers/net/wireless/ath/ath12k/mac.c b/drivers/net/wireless/ath/ath12k/mac.c
> index b253d1e3f405..ee44a8b59e9b 100644
> --- a/drivers/net/wireless/ath/ath12k/mac.c
> +++ b/drivers/net/wireless/ath/ath12k/mac.c
> @@ -12069,6 +12069,17 @@ ath12k_mac_op_assign_vif_chanctx(struct ieee80211_hw *hw,
> return -EINVAL;
> }
>
> + /* ath12k_mac_assign_vif_to_vdev() may free and reassign arvif
> + * internally when switching radios (ar != arvif->ar). Refresh
> + * arvif from ahvif->link[].
> + */
> + arvif = wiphy_dereference(hw->wiphy, ahvif->link[link_id]);
> + if (!arvif) {
> + ath12k_hw_warn(ah, "failed to get arvif for link %u after vdev assignment",
> + link_id);
> + return -ENOENT;
> + }
> +
> ab = ar->ab;
>
> ath12k_dbg(ab, ATH12K_DBG_MAC,
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-04-27 7:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-10 2:43 [PATCH] wifi: ath12k: fix use-after-free of arvif in assign_vif_chanctx() James Kim
2026-04-27 7:26 ` James Kim
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.