Skip to content

Commit 78abc03

Browse files
wifi: rtw88: fix the 'para' buffer size to avoid reading out of bounds
jira VULN-71889 cve CVE-2025-38159 commit-author Alexey Kodanev <aleksei.kodanev@bell-sw.com> commit 4c2c372 Set the size to 6 instead of 2, since 'para' array is passed to 'rtw_fw_bt_wifi_control(rtwdev, para[0], &para[1])', which reads 5 bytes: void rtw_fw_bt_wifi_control(struct rtw_dev *rtwdev, u8 op_code, u8 *data) { ... SET_BT_WIFI_CONTROL_DATA1(h2c_pkt, *data); SET_BT_WIFI_CONTROL_DATA2(h2c_pkt, *(data + 1)); ... SET_BT_WIFI_CONTROL_DATA5(h2c_pkt, *(data + 4)); Detected using the static analysis tool - Svace. Fixes: 4136214 ("rtw88: add BT co-existence support") Signed-off-by: Alexey Kodanev <aleksei.kodanev@bell-sw.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://patch.msgid.link/20250513121304.124141-1-aleksei.kodanev@bell-sw.com (cherry picked from commit 4c2c372) Signed-off-by: Shreeya Patel <spatel@ciq.com>
1 parent ea0235f commit 78abc03

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/realtek/rtw88

1 file changed

+1
-1
lines changed

drivers/net/wireless/realtek/rtw88/coex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ static void rtw_coex_tdma_timer_base(struct rtw_dev *rtwdev, u8 type)
309309
{
310310
struct rtw_coex *coex = &rtwdev->coex;
311311
struct rtw_coex_stat *coex_stat = &coex->stat;
312-
u8 para[2] = {0};
312+
u8 para[6] = {};
313313
u8 times;
314314
u16 tbtt_interval = coex_stat->wl_beacon_interval;
315315

0 commit comments

Comments
 (0)