CVE-2024-38558

Updated: 2024-08-13 01:39:44.616628

Description:

In the Linux kernel, the following vulnerability has been resolved: net: openvswitch: fix overwriting ct original tuple for ICMPv6 OVS_PACKET_CMD_EXECUTE has 3 main attributes: - OVS_PACKET_ATTR_KEY - Packet metadata in a netlink format. - OVS_PACKET_ATTR_PACKET - Binary packet content. - OVS_PACKET_ATTR_ACTIONS - Actions to execute on the packet. OVS_PACKET_ATTR_KEY is parsed first to populate sw_flow_key structure with the metadata like conntrack state, input port, recirculation id, etc. Then the packet itself gets parsed to populate the rest of the keys from the packet headers. Whenever the packet parsing code starts parsing the ICMPv6 header, it first zeroes out fields in the key corresponding to Neighbor Discovery information even if it is not an ND packet. It is an 'ipv6.nd' field. However, the 'ipv6' is a union that shares the space between 'nd' and 'ct_orig' that holds the original tuple conntrack metadata parsed from the OVS_PACKET_ATTR_KEY. ND packets should not normally have conntrack state, so it's fine to share the space, but normal ICMPv6 Echo packets or maybe other types of ICMPv6 can have the state attached and it should not be overwritten. The issue results in all but the last 4 bytes of the destination address being wiped from the original conntrack tuple leading to incorrect packet matching and potentially executing wrong actions in case this packet recirculates within the datapath or goes back to userspace. ND fields should not be accessed in non-ND packets, so not clearing them should be fine. Executing memset() only for actual ND packets to avoid the issue. Initializing the whole thing before parsing is needed because ND packet may not contain all the options. The issue only affects the OVS_PACKET_CMD_EXECUTE path and doesn't affect packets entering OVS datapath from network interfaces, because in this case CT metadata is populated from skb after the packet is already parsed.


Links NIST CIRCL RHEL Ubuntu

Severity

Severity Score
CVSS Version 2.x NONE 0
CVSS Version 3.x MEDIUM 5.5

Status

OS name Project name Version Score Severity Status Errata Last updated
AlmaLinux 9.2 ESU kernel 5.14.0 5.5 MEDIUM Released CLSA-2024:1725293298 2024-09-02 12:12:50
AlmaLinux 9.2 FIPS kernel 5.14.0 5.5 MEDIUM Released CLSA-2024:1725304408 2024-09-02 17:23:33
CentOS 6 ELS kernel 2.6.32 5.5 MEDIUM Ignored 2024-08-15 12:08:40
CentOS 7 ELS kernel 3.10.0 5.5 MEDIUM Ignored 2024-08-15 12:08:40
CentOS 8.4 ELS kernel 4.18.0 5.5 MEDIUM Released CLSA-2024:1727690947 2024-09-30 10:53:35
CentOS 8.5 ELS kernel 4.18.0 5.5 MEDIUM Released CLSA-2024:1727690025 2024-09-30 10:53:35
CentOS Stream 8 ELS kernel 4.18.0 5.5 MEDIUM Released CLSA-2024:1727815919 2024-10-01 17:36:17
CloudLinux 6 ELS kernel 2.6.32 5.5 MEDIUM Ignored 2024-08-15 12:08:40
CloudLinux 7 ELS kernel 3.10.0 5.5 MEDIUM Ignored 2024-08-15 12:08:40
Oracle Linux 6 ELS kernel 2.6.32 5.5 MEDIUM Ignored 2024-08-15 12:08:40
Total: 13