Skip to content

Commit 693aa0c

Browse files
committed
net: atlantic: fix aq_vec index out of range error
jira VULN-69391 cve CVE-2022-50066 commit-author Chia-Lin Kao (AceLan) <[email protected]> commit 2ba5e47 The final update statement of the for loop exceeds the array range, the dereference of self->aq_vec[i] is not checked and then leads to the index out of range error. Also fixed this kind of coding style in other for loop. [ 97.937604] UBSAN: array-index-out-of-bounds in drivers/net/ethernet/aquantia/atlantic/aq_nic.c:1404:48 [ 97.937607] index 8 is out of range for type 'aq_vec_s *[8]' [ 97.937608] CPU: 38 PID: 3767 Comm: kworker/u256:18 Not tainted 5.19.0+ #2 [ 97.937610] Hardware name: Dell Inc. Precision 7865 Tower/, BIOS 1.0.0 06/12/2022 [ 97.937611] Workqueue: events_unbound async_run_entry_fn [ 97.937616] Call Trace: [ 97.937617] <TASK> [ 97.937619] dump_stack_lvl+0x49/0x63 [ 97.937624] dump_stack+0x10/0x16 [ 97.937626] ubsan_epilogue+0x9/0x3f [ 97.937627] __ubsan_handle_out_of_bounds.cold+0x44/0x49 [ 97.937629] ? __scm_send+0x348/0x440 [ 97.937632] ? aq_vec_stop+0x72/0x80 [atlantic] [ 97.937639] aq_nic_stop+0x1b6/0x1c0 [atlantic] [ 97.937644] aq_suspend_common+0x88/0x90 [atlantic] [ 97.937648] aq_pm_suspend_poweroff+0xe/0x20 [atlantic] [ 97.937653] pci_pm_suspend+0x7e/0x1a0 [ 97.937655] ? pci_pm_suspend_noirq+0x2b0/0x2b0 [ 97.937657] dpm_run_callback+0x54/0x190 [ 97.937660] __device_suspend+0x14c/0x4d0 [ 97.937661] async_suspend+0x23/0x70 [ 97.937663] async_run_entry_fn+0x33/0x120 [ 97.937664] process_one_work+0x21f/0x3f0 [ 97.937666] worker_thread+0x4a/0x3c0 [ 97.937668] ? process_one_work+0x3f0/0x3f0 [ 97.937669] kthread+0xf0/0x120 [ 97.937671] ? kthread_complete_and_exit+0x20/0x20 [ 97.937672] ret_from_fork+0x22/0x30 [ 97.937676] </TASK> v2. fixed "warning: variable 'aq_vec' set but not used" v3. simplified a for loop Fixes: 97bde5c ("net: ethernet: aquantia: Support for NIC-specific code") Signed-off-by: Chia-Lin Kao (AceLan) <[email protected]> Acked-by: Sudarsana Reddy Kalluru <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]> (cherry picked from commit 2ba5e47) Signed-off-by: Anmol Jain <[email protected]>
1 parent 157f0d2 commit 693aa0c

File tree

1 file changed

+8
-13
lines changed
  • drivers/net/ethernet/aquantia/atlantic

1 file changed

+8
-13
lines changed

drivers/net/ethernet/aquantia/atlantic/aq_nic.c

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -265,12 +265,10 @@ static void aq_nic_service_timer_cb(struct timer_list *t)
265265
static void aq_nic_polling_timer_cb(struct timer_list *t)
266266
{
267267
struct aq_nic_s *self = from_timer(self, t, polling_timer);
268-
struct aq_vec_s *aq_vec = NULL;
269268
unsigned int i = 0U;
270269

271-
for (i = 0U, aq_vec = self->aq_vec[0];
272-
self->aq_vecs > i; ++i, aq_vec = self->aq_vec[i])
273-
aq_vec_isr(i, (void *)aq_vec);
270+
for (i = 0U; self->aq_vecs > i; ++i)
271+
aq_vec_isr(i, (void *)self->aq_vec[i]);
274272

275273
mod_timer(&self->polling_timer, jiffies +
276274
AQ_CFG_POLLING_TIMER_INTERVAL);
@@ -872,7 +870,6 @@ int aq_nic_get_regs_count(struct aq_nic_s *self)
872870

873871
u64 *aq_nic_get_stats(struct aq_nic_s *self, u64 *data)
874872
{
875-
struct aq_vec_s *aq_vec = NULL;
876873
struct aq_stats_s *stats;
877874
unsigned int count = 0U;
878875
unsigned int i = 0U;
@@ -916,11 +913,11 @@ u64 *aq_nic_get_stats(struct aq_nic_s *self, u64 *data)
916913
data += i;
917914

918915
for (tc = 0U; tc < self->aq_nic_cfg.tcs; tc++) {
919-
for (i = 0U, aq_vec = self->aq_vec[0];
920-
aq_vec && self->aq_vecs > i;
921-
++i, aq_vec = self->aq_vec[i]) {
916+
for (i = 0U; self->aq_vecs > i; ++i) {
917+
if (!self->aq_vec[i])
918+
break;
922919
data += count;
923-
count = aq_vec_get_sw_stats(aq_vec, tc, data);
920+
count = aq_vec_get_sw_stats(self->aq_vec[i], tc, data);
924921
}
925922
}
926923

@@ -1234,7 +1231,6 @@ int aq_nic_set_loopback(struct aq_nic_s *self)
12341231

12351232
int aq_nic_stop(struct aq_nic_s *self)
12361233
{
1237-
struct aq_vec_s *aq_vec = NULL;
12381234
unsigned int i = 0U;
12391235

12401236
netif_tx_disable(self->ndev);
@@ -1252,9 +1248,8 @@ int aq_nic_stop(struct aq_nic_s *self)
12521248

12531249
aq_ptp_irq_free(self);
12541250

1255-
for (i = 0U, aq_vec = self->aq_vec[0];
1256-
self->aq_vecs > i; ++i, aq_vec = self->aq_vec[i])
1257-
aq_vec_stop(aq_vec);
1251+
for (i = 0U; self->aq_vecs > i; ++i)
1252+
aq_vec_stop(self->aq_vec[i]);
12581253

12591254
aq_ptp_ring_stop(self);
12601255

0 commit comments

Comments
 (0)