CVE-2025-39988
Publication date 16 October 2025
Last updated 16 October 2025
Ubuntu priority
Description
In the Linux kernel, the following vulnerability has been resolved: can: etas_es58x: populate ndo_change_mtu() to prevent buffer overflow Sending an PF_PACKET allows to bypass the CAN framework logic and to directly reach the xmit() function of a CAN driver. The only check which is performed by the PF_PACKET framework is to make sure that skb->len fits the interface's MTU. Unfortunately, because the etas_es58x driver does not populate its net_device_ops->ndo_change_mtu(), it is possible for an attacker to configure an invalid MTU by doing, for example: $ ip link set can0 mtu 9999 After doing so, the attacker could open a PF_PACKET socket using the ETH_P_CANXL protocol: socket(PF_PACKET, SOCK_RAW, htons(ETH_P_CANXL)); to inject a malicious CAN XL frames. For example: struct canxl_frame frame = { .flags = 0xff, .len = 2048, }; The CAN drivers' xmit() function are calling can_dev_dropped_skb() to check that the skb is valid, unfortunately under above conditions, the malicious packet is able to go through can_dev_dropped_skb() checks: 1. the skb->protocol is set to ETH_P_CANXL which is valid (the function does not check the actual device capabilities). 2. the length is a valid CAN XL length. And so, es58x_start_xmit() receives a CAN XL frame which it is not able to correctly handle and will thus misinterpret it as a CAN(FD) frame. This can result in a buffer overflow. For example, using the es581.4 variant, the frame will be dispatched to es581_4_tx_can_msg(), go through the last check at the beginning of this function: if (can_is_canfd_skb(skb)) return -EMSGSIZE; and reach this line: memcpy(tx_can_msg->data, cf->data, cf->len); Here, cf->len corresponds to the flags field of the CAN XL frame. In our previous example, we set canxl_frame->flags to 0xff. Because the maximum expected length is 8, a buffer overflow of 247 bytes occurs! Populate net_device_ops->ndo_change_mtu() to ensure that the interface's MTU can not be set to anything bigger than CAN_MTU or CANFD_MTU (depending on the device capabilities). By fixing the root cause, this prevents the buffer overflow.
Status
Package | Ubuntu Release | Status |
---|---|---|
linux | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
16.04 LTS xenial |
Needs evaluation
|
|
14.04 LTS trusty |
Needs evaluation
|
|
linux-hwe | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored replaced by linux-hwe-5.4 | |
16.04 LTS xenial |
Needs evaluation
|
|
linux-hwe-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-hwe-5.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-hwe-5.11 | |
linux-hwe-5.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-hwe-5.13 | |
linux-hwe-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-hwe-5.15 | |
linux-hwe-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-hwe-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-hwe-6.2 | |
linux-hwe-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-hwe-6.5 | |
linux-hwe-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-hwe-6.8 | |
linux-hwe-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-hwe-6.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Ignored superseded by linux-hwe-6.14 | |
22.04 LTS jammy | Not in release | |
linux-hwe-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-hwe-edge | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-hwe-5.4 | |
16.04 LTS xenial | Ignored superseded by linux-hwe | |
linux-lts-xenial | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
14.04 LTS trusty |
Needs evaluation
|
|
linux-kvm | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
16.04 LTS xenial |
Needs evaluation
|
|
linux-allwinner-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored end of kernel support | |
linux-aws | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
16.04 LTS xenial |
Needs evaluation
|
|
14.04 LTS trusty |
Needs evaluation
|
|
linux-aws-5.0 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-aws-5.3 | |
linux-aws-5.3 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-aws-5.4 | |
linux-aws-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-aws-5.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-aws-5.11 | |
linux-aws-5.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-aws-5.13 | |
linux-aws-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-aws-5.15 | |
linux-aws-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-aws-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-aws-6.2 | |
linux-aws-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-aws-6.5 | |
linux-aws-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-aws-6.8 | |
linux-aws-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-aws-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-aws-hwe | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
16.04 LTS xenial |
Needs evaluation
|
|
linux-azure | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic | Ignored superseded by linux-azure-5.3 | |
16.04 LTS xenial |
Needs evaluation
|
|
14.04 LTS trusty |
Needs evaluation
|
|
linux-azure-4.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-azure-5.3 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-azure-5.4 | |
linux-azure-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-azure-5.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-azure-5.11 | |
linux-azure-5.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-azure-5.13 | |
linux-azure-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-azure-5.15 | |
linux-azure-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-azure-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-azure-6.2 | |
linux-azure-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-azure-6.5 | |
linux-azure-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-azure-6.8 | |
linux-azure-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-azure-6.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Ignored superseded by linux-azure-6.14 | |
22.04 LTS jammy | Not in release | |
linux-azure-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-azure-fde | 25.10 questing | Not in release |
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal | Ignored superseded by linux-azure-fde-5.15 | |
linux-azure-fde-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-azure-fde-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-azure-fde-6.2 | |
linux-azure-fde-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored replaced by linux-azure-6.5 | |
linux-azure-fde-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-azure-nvidia | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-azure-nvidia-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-bluefield | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-azure-edge | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-azure-5.3 | |
linux-fips | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
16.04 LTS xenial |
Needs evaluation
|
|
linux-aws-fips | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
linux-azure-fips | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
linux-gcp-fips | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
linux-gcp | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic | Ignored superseded by linux-gcp-5.3 | |
16.04 LTS xenial |
Needs evaluation
|
|
linux-gcp-4.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-gcp-5.3 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-gcp-5.4 | |
linux-gcp-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-gcp-5.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-gcp-5.11 | |
linux-gcp-5.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-gcp-5.13 | |
linux-gcp-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-gcp-5.15 | |
linux-gcp-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-gcp-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-gcp-6.2 | |
linux-gcp-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-gcp-6.5 | |
linux-gcp-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-gcp-6.8 | |
linux-gcp-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-gcp-6.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Ignored superseded by linux-gcp-6.14 | |
22.04 LTS jammy | Not in release | |
linux-gcp-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-gke | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal | Ignored end of kernel support | |
linux-gke-4.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-gke-5.0 | |
linux-gke-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored end of kernel support | |
linux-gke-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored end of kernel support | |
linux-gkeop | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal | Ignored end of kernel support | |
linux-gkeop-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored end of kernel support | |
linux-gkeop-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored end of kernel support | |
linux-ibm | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
linux-ibm-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-ibm-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-ibm-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-intel-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored end of kernel support | |
linux-intel-iotg | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-intel-iotg-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-iot | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-intel-iot-realtime | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-lowlatency | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
linux-lowlatency-hwe-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-lowlatency-hwe-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-lowlatency-hwe-6.2 | |
linux-lowlatency-hwe-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-lowlatency-hwe-6.5 | |
linux-lowlatency-hwe-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-lowlatency-hwe-6.8 | |
linux-lowlatency-hwe-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-lowlatency-hwe-6.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Ignored replaced by linux-hwe-6.14 | |
22.04 LTS jammy | Not in release | |
linux-nvidia | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
linux-nvidia-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-nvidia-6.5 | |
linux-nvidia-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-nvidia-6.8 | |
linux-nvidia-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-nvidia-6.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-nvidia-lowlatency | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-nvidia-tegra | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
linux-nvidia-tegra-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-nvidia-tegra-igx | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-oracle | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
18.04 LTS bionic |
Needs evaluation
|
|
16.04 LTS xenial |
Needs evaluation
|
|
linux-oracle-5.0 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-oracle-5.3 | |
linux-oracle-5.3 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored superseded by linux-oracle-5.4 | |
linux-oracle-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-oracle-5.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-oracle-5.11 | |
linux-oracle-5.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-oracle-5.13 | |
linux-oracle-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-oracle-5.15 | |
linux-oracle-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-oracle-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-oracle-6.8 | |
linux-oracle-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-oracle-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-oem | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic | Ignored replaced by linux-hwe-5.4 | |
linux-oem-5.6 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-oem-5.10 | |
linux-oem-5.10 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-oem-5.13 | |
linux-oem-5.13 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-oem-5.14 | |
linux-oem-5.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored replaced by linux-hwe-5.15 | |
linux-oem-5.17 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-oem-6.1 | |
linux-oem-6.0 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-oem-6.1 | |
linux-oem-6.1 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-oem-6.5 | |
linux-oem-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-oem-6.8 | |
linux-oem-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Ignored superseded by linux-oem-6.14 | |
22.04 LTS jammy | Not in release | |
linux-oem-6.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Ignored superseded by linux-oem-6.14 | |
22.04 LTS jammy | Not in release | |
linux-oem-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-raspi | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
|
linux-raspi2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored replaced by linux-raspi | |
linux-raspi-5.4 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
18.04 LTS bionic |
Needs evaluation
|
|
linux-raspi-realtime | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-realtime | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy |
Needs evaluation
|
|
linux-realtime-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-realtime-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-riscv | 25.10 questing |
Needs evaluation
|
25.04 plucky |
Needs evaluation
|
|
24.04 LTS noble | Ignored replaced by linux-riscv-6.14 | |
22.04 LTS jammy | Ignored end of kernel support | |
20.04 LTS focal | Ignored superseded by linux-riscv-5.8 | |
linux-riscv-5.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-riscv-5.11 | |
linux-riscv-5.11 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal | Ignored superseded by linux-riscv-5.13 | |
linux-riscv-5.15 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Not in release | |
20.04 LTS focal |
Needs evaluation
|
|
linux-riscv-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored end of kernel support | |
linux-riscv-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-riscv-6.8 | |
linux-riscv-6.8 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
linux-riscv-6.14 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble |
Needs evaluation
|
|
22.04 LTS jammy | Not in release | |
linux-starfive-5.19 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored end of kernel support | |
linux-starfive-6.2 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored superseded by linux-starfive-6.5 | |
linux-starfive-6.5 | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy | Ignored end of kernel support | |
linux-xilinx-zynqmp | 25.10 questing | Not in release |
25.04 plucky | Not in release | |
24.04 LTS noble | Not in release | |
22.04 LTS jammy |
Needs evaluation
|
|
20.04 LTS focal |
Needs evaluation
|
References
Other references
- https://www.cve.org/CVERecord?id=CVE-2025-39988
- https://git.kernel.org/linus/38c0abad45b190a30d8284a37264d2127a6ec303 (6.17)
- https://git.kernel.org/stable/c/38c0abad45b190a30d8284a37264d2127a6ec303
- https://git.kernel.org/stable/c/72de0facc50afdb101fb7197d880407f1abfc77f
- https://git.kernel.org/stable/c/b26cccd87dcddc47b450a40f3b1ac3fe346efcff
- https://git.kernel.org/stable/c/c4e582e686c4d683c87f2b4a316385b3d81d370f
- https://git.kernel.org/stable/c/cbc1de71766f326a44bb798aeae4a7ef4a081cc9
- https://git.kernel.org/stable/c/e587af2c89ecc6382c518febea52fa9ba81e47c0