CVE-2026-43038: ipv6: icmp: clear skb2->cb[] in ip6_err_gen_icmpv6_unreach()
In the Linux kernel, the following vulnerability has been resolved:
ipv6: icmp: clear skb2->cb[] in ip6errgenicmpv6unreach()
Sashiko AI-review observed:
In ip6errgenicmpv6unreach(), the skb is an outer IPv4 ICMP error packet where its cb contains an IPv4 inetskbparm. When skb is cloned into skb2 and passed to icmp6send(), it uses IP6CB(skb2).
IP6CB interprets the IPv4 inetskbparm as an inet6skbparm. The cipso offset in inetskbparm.opt directly overlaps with dsthao in inet6skbparm at offset 18.
If an attacker sends a forged ICMPv4 error with a CIPSO IP option, dsthao would be a non-zero offset. Inside icmp6send(), mip6addrswap() is called and uses ipv6findtlv(skb, opt->dsthao, IPV6TLVHAO).
This would scan the inner, attacker-controlled IPv6 packet starting at that offset, potentially returning a fake TLV without checking if the remaining packet length can hold the full 18-byte struct ipv6destopthao.
Could mip6addrswap() then perform a 16-byte swap that extends past the end of the packet data into skbsharedinfo?
Should the cb array also be cleared in ip6errgenicmpv6unreach() and ip6ip6err() to prevent this?
This patch implements the first suggestion.
I am not sure if ip6ip6err() needs to be changed. A separate patch would be better anyway.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
debian/linuxto a version that resolves this vulnerability.Fixed in 5.10.262-1Fixed in 6.1.176-1Fixed in 6.1.180-1Fixed in 6.12.94-1Fixed in 6.12.101-1Fixed in 7.1.8-1Fixed in 7.1.8-2 - Upgrade
Upgrade
debian/linux-6.1to a version that resolves this vulnerability.Fixed in 6.1.180-1~deb11u1 - Configuration
In ip6_err_gen_icmpv6_unreach(), clear skb2->cb[] (IPv4 inet_skb_parm stored in cb) before skb2 is used, to prevent inet_skb_parm.opt overlapping with dsthao when later calling icmp6_send() / ipv6_find_tlv(skb, opt->dsthao, IPV6_TLV_HAO).
Linux kernel (ipv6/icmp: ip6_err_gen_icmpv6_unreach) clear skb2->cb[] / IP6CB skb2 control buffer = clear - Compensating control
Ensure any paths that parse TLVs referenced by opt->dsthao (via ipv6_find_tlv with IPV6_TLV_HAO) verify that the remaining packet length can hold the full 18-byte struct ipv6_destopt_hao, so a forged ICMPv4 error with a non-zero CIPSO offset cannot cause searching beyond the available data.
Event History
Frequently Asked Questions
What is the severity of CVE-2026-43038?
CVE-2026-43038 has been classified as a medium severity vulnerability in the Linux kernel.
How do I fix CVE-2026-43038?
To resolve CVE-2026-43038, you should update your Linux kernel to the latest patched version provided by your distribution.
What impact does CVE-2026-43038 have on my system?
CVE-2026-43038 can potentially lead to denial of service conditions due to improper handling of ICMPv6 error packets.
Is CVE-2026-43038 a zero-day vulnerability?
CVE-2026-43038 is not a zero-day vulnerability as it has been disclosed and mitigated in updated kernel versions.
Which Linux kernel versions are affected by CVE-2026-43038?
CVE-2026-43038 affects specific older versions of the Linux kernel; refer to your distribution's advisory for details.