CVE-2026-22979

Source
https://cve.org/CVERecord?id=CVE-2026-22979
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-22979.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-22979
Downstream
Related
Published
2026-01-23T15:24:01.340Z
Modified
2026-03-24T08:59:27.991853Z
Summary
net: fix memory leak in skb_segment_list for GRO packets
Details

In the Linux kernel, the following vulnerability has been resolved:

net: fix memory leak in skbsegmentlist for GRO packets

When skbsegmentlist() is called during packet forwarding, it handles packets that were aggregated by the GRO engine.

Historically, the segmentation logic in skbsegmentlist assumes that individual segments are split from a parent SKB and may need to carry their own socket memory accounting. Accordingly, the code transfers truesize from the parent to the newly created segments.

Prior to commit ed4cccef64c1 ("gro: fix ownership transfer"), this truesize subtraction in skbsegmentlist() was valid because fragments still carry a reference to the original socket.

However, commit ed4cccef64c1 ("gro: fix ownership transfer") changed this behavior by ensuring that fraglist entries are explicitly orphaned (skb->sk = NULL) to prevent illegal orphaning later in the stack. This change meant that the entire socket memory charge remained with the head SKB, but the corresponding accounting logic in skbsegmentlist() was never updated.

As a result, the current code unconditionally adds each fragment's truesize to deltatruesize and subtracts it from the parent SKB. Since the fragments are no longer charged to the socket, this subtraction results in an effective under-count of memory when the head is freed. This causes skwmem_alloc to remain non-zero, preventing socket destruction and leading to a persistent memory leak.

The leak can be observed via KMEMLEAK when tearing down the networking environment:

unreferenced object 0xffff8881e6eb9100 (size 2048): comm "ping", pid 6720, jiffies 4295492526 backtrace: kmemcacheallocnoprof+0x5c6/0x800 skprotalloc+0x5b/0x220 skalloc+0x35/0xa00 inet6_create.part.0+0x303/0x10d0 __sock_create+0x248/0x640 _syssocket+0x11b/0x1d0

Since skbsegmentlist() is exclusively used for SKBGSOFRAGLIST packets constructed by GRO, the truesize adjustment is removed.

The call to skbreleasehead_state() must be preserved. As documented in commit cf673ed0e057 ("net: fix fraglist segmentation reference count leak"), it is still required to correctly drop references to SKB extensions that may be overwritten during __copyskbheader().

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/22xxx/CVE-2026-22979.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
2eeab8c47c3c0276e0746bc382f405c9a236a5ad
Fixed
0b27828ebd1ed3107d7929c3737adbe862e99e74
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
fc126c1d51e9552eacd2d717b9ffe9262a8a4cd6
Fixed
88bea149db2057112af3aaf63534b24fab5858ab
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
ed4cccef64c1d0d5b91e69f7a8a6697c3a865486
Fixed
3264881431e308b9c72cb8a0159d57a56d67dd79
Fixed
c114a32a2e70b82d447f409f7ffcfa3058f9d5bd
Fixed
238e03d0466239410b72294b79494e43d4fabe77
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0 Unknown introduced commit / All previous commits are affected
Last affected
d225b0ac96dc40d7e8ae2bc227eb2c56e130975f
Last affected
5b3b67f731296027cceb3efad881ae281213f86f

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-22979.json"