Release Date: | 2024-07-30 |
In the Linux kernel, the following vulnerability has been resolved:\nbnx2x: Fix multiple UBSAN array-index-out-of-bounds\nFix UBSAN warnings that occur when using a system with 32 physical\ncpu cores or more, or when the user defines a number of Ethernet\nqueues greater than or equal to FP_SB_MAX_E1x using the num_queues\nmodule parameter.\nCurrently there is a read/write out of bounds that occurs on the array\n'struct stats_query_entry query' present inside the 'bnx2x_fw_stats_req'\nstruct in 'drivers/net/ethernet/broadcom/bnx2x/bnx2x.h'.\nLooking at the definition of the 'struct stats_query_entry query' array:\nstruct stats_query_entry query[FP_SB_MAX_E1x+\nBNX2X_FIRST_QUEUE_QUERY_IDX];\nFP_SB_MAX_E1x is defined as the maximum number of fast path interrupts and\nhas a value of 16, while BNX2X_FIRST_QUEUE_QUERY_IDX has a value of 3\nmeaning the array has a total size of 19.\nSince accesses to 'struct stats_query_entry query' are offset-ted by\nBNX2X_FIRST_QUEUE_QUERY_IDX, that means that the total number of Ethernet\nqueues should not exceed FP_SB_MAX_E1x (16). However one of these queues\nis reserved for FCOE and thus the number of Ethernet queues should be set\nto [FP_SB_MAX_E1x -1] (15) if FCOE is enabled or [FP_SB_MAX_E1x] (16) if\nit is not.\nThis is also described in a comment in the source code in\ndrivers/net/ethernet/broadcom/bnx2x/bnx2x.h just above the Macro definition\nof FP_SB_MAX_E1x. Below is the part of this explanation that it important\nfor this patch\n/*\n* The total number of L2 queues, MSIX vectors and HW contexts (CIDs) is\n* control by the number of fast-path status blocks supported by the\n* device (HW/FW). Each fast-path status block (FP-SB) aka non-default\n* status block represents an independent interrupts context that can\n* serve a regular L2 networking queue. However special L2 queues such\n* as the FCoE queue do not require a FP-SB and other components like\n* the CNIC may consume FP-SB reducing the number of possible L2 queues\n*\n* If the maximum number of FP-SB available is X then:\n* a. If CNIC is supported it consumes 1 FP-SB thus the max number of\n* regular L2 queues is Y=X-1\n* b. In MF mode the actual number of L2 queues is Y= (X-1/MF_factor)\n* c. If the FCoE L2 queue is supported the actual number of L2 queues\n* is Y+1\n* d. The number of irqs (MSIX vectors) is either Y+1 (one extra for\n* slow-path interrupts) or Y+2 if CNIC is supported (one additional\n* FP interrupt context for the CNIC).\n* e. The number of HW context (CID count) is always X or X+1 if FCoE\n* L2 queue is supported. The cid for the FCoE L2 queue is always X.\n*/\nHowever this driver also supports NICs that use the E2 controller which can\nhandle more queues due to having more FP-SB represented by FP_SB_MAX_E2.\nLooking at the commits when the E2 support was added, it was originally\nusing the E1x parameters: commit f2e0899f0f27 ('bnx2x: Add 57712 support').\nBack then FP_SB_MAX_E2 was set to 16 the same as E1x. However the driver\nwas later updated to take full advantage of the E2 instead of having it be\nlimited to the capabilities of the E1x. But as far as we can tell, the\narray 'stats_query_entry query' was still limited to using the FP-SB\navailable to the E1x cards as part of an oversignt when the driver was\nupdated to take full advantage of the E2, and now with the driver being\naware of the greater queue size supported by E2 NICs, it causes the UBSAN\nwarnings seen in the stack traces below.\nThis patch increases the size of the 'stats_query_entry query' array by\nreplacing FP_SB_MAX_E1x with FP_SB_MAX_E2 to be large enough to handle\nboth types of NICs.\nStack traces:\nUBSAN: array-index-out-of-bounds in\ndrivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.c:1529:11\nindex 20 is out of range for type 'stats_query_entry [19]'\nCPU: 12 PID: 858 Comm: systemd-network Not tainted 6.9.0-060900rc7-generic\n#202405052133\nHardware name: HP ProLiant DL360 Gen9/ProLiant DL360 \n---truncated---
See more information about CVE-2024-42148 from MITRE CVE dictionary and NIST NVD
NOTE: The following CVSS v3.1 metrics and score provided are preliminary and subject to review.
Base Score: | 5.2 | CVSS Vector: | CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:L/I:L/A:H |
Attack Vector: | Local network | Attack Complexity: | High |
Privileges Required: | High | User Interaction: | None |
Scope: | Unchanged | Confidentiality Impact: | Low |
Integrity Impact: | Low | Availability Impact: | High |
Platform | Errata | Release Date |
Oracle Linux version 7 (kernel-uek) | ELSA-2024-12610 | 2024-09-10 |
Oracle Linux version 7 (kernel-uek) | ELSA-2024-12779 | 2024-10-11 |
Oracle Linux version 7 (kernel-uek-container) | ELSA-2024-12612 | 2024-09-11 |
Oracle Linux version 8 (kernel-uek) | ELSA-2024-12610 | 2024-09-10 |
Oracle Linux version 8 (kernel-uek) | ELSA-2024-12618 | 2024-09-12 |
Oracle Linux version 8 (kernel-uek-container) | ELSA-2024-12612 | 2024-09-11 |
Oracle Linux version 9 (kernel-uek) | ELSA-2024-12618 | 2024-09-12 |
This page is generated automatically and has not been checked for errors or omissions. For clarification or corrections: