Answer in brief
CVE-2022-49872 records a High severity (CVSS 7.5) vulnerability in net: gso: fix panic on frag_list with mixed head alloc types. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
Answer in brief
CVE-2022-49872 records a High severity (CVSS 7.5) vulnerability in net: gso: fix panic on frag_list with mixed head alloc types. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
CVSS is 7.5. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:5.3:-:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc1:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc2:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc4:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=162a5a8c3aff15c449e6b38355cdf80ab4f77a5a <5876b7f249a1ecbbcc8e35072c3828d6526d1c3a || >=55fb612bef7fd237fb70068e2b6ff1cd1543a8ef <0a9f56e525ea871d3950b90076912f5c7494f00f || >=821302dd0c51d29269ef73a595bdff294419e2cd <bd5362e58721e4d0d1a37796593bd6e51536ce7a || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <65ad047fd83502447269fda8fd26c99077a9af47 || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <50868de7dc4e7f0fcadd6029f32bf4387c102ee6 || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <ad25a115f50800c6847e0d841c5c7992a9f7c1b3 || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <598d9e30927b15731e83797fbd700ecf399f42dd || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <9e4b7a99a03aefd37ba7bb1f022c8efab5019165 || 92984818ff8cfd97311a5e0ac27f148a00df2b54 || >=4.9.194 <4.9.334 || >=4.14.145 <4.14.300 || >=4.19.74 <4.19.267 || >=5.2.16 <5.3 | 5876b7f249a1ecbbcc8e35072c3828d6526d1c3a, 0a9f56e525ea871d3950b90076912f5c7494f00f, bd5362e58721e4d0d1a37796593bd6e51536ce7a, 65ad047fd83502447269fda8fd26c99077a9af47, 50868de7dc4e7f0fcadd6029f32bf4387c102ee6, ad25a115f50800c6847e0d841c5c7992a9f7c1b3, 598d9e30927b15731e83797fbd700ecf399f42dd, 9e4b7a99a03aefd37ba7bb1f022c8efab5019165, 4.9.334, 4.14.300, 4.19.267, 5.3 |
| Linux/Linuxgeneric | 5.3 | Not reported |
Published upstream
May 1, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 4, 2026
In the Linux kernel, the following vulnerability has been resolved: net: gso: fix panic on frag_list with mixed head alloc types Since commit 3dcbdb134f32 ("net: gso: Fix skb_segment splat when splitting gso_size mangled skb having linear-headed frag_list"), it is allowed to change gso_size of a GRO packet. However, that commit assumes that "checking the first list_skb member suffices; i.e if either of the list_skb members have non head_frag head, then the first one has too". It turns out this assumption does not hold. We've seen BUG_ON being hit in skb_segment when skbs on the frag_list had differing head_frag with the vmxnet3 driver. This happens because __netdev_alloc_skb and __napi_alloc_skb can return a skb that is page backed or kmalloced depending on the requested size. As the result, the last small skb in the GRO packet can be kmalloced. There are three different locations where this can be fixed: (1) We could check head_frag in GRO and not allow GROing skbs with different head_frag. However, that would lead to performance regression on normal forward paths with unmodified gso_size, where !head_frag in the last packet is not a problem. (2) Set a flag in bpf_skb_net_grow and bpf_skb_net_shrink indicating that NETIF_F_SG is undesirable. That would need to eat a bit in sk_buff. Furthermore, that flag can be unset when all skbs on the frag_list are page backed. To retain good performance, bpf_skb_net_grow/shrink would have to walk the frag_list. (3) Walk the frag_list in skb_segment when determining whether NETIF_F_SG should be cleared. This of course slows things down. This patch implements (3). To limit the performance impact in skb_segment, the list is walked only for skbs with SKB_GSO_DODGY set that have gso_size changed. Normal paths thus will not hit it. We could check only the last skb but since we need to walk the whole list anyway, let's stay on the safe side.
Quoted source text, attributed separately from HOL analysis.
CVSS is 7.5. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:5.3:-:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc1:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc2:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc3:*:*:*:*:*:* | Not reported | Not reported |
| cpe:2.3:o:linux:linux_kernel:6.1:rc4:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=162a5a8c3aff15c449e6b38355cdf80ab4f77a5a <5876b7f249a1ecbbcc8e35072c3828d6526d1c3a || >=55fb612bef7fd237fb70068e2b6ff1cd1543a8ef <0a9f56e525ea871d3950b90076912f5c7494f00f || >=821302dd0c51d29269ef73a595bdff294419e2cd <bd5362e58721e4d0d1a37796593bd6e51536ce7a || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <65ad047fd83502447269fda8fd26c99077a9af47 || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <50868de7dc4e7f0fcadd6029f32bf4387c102ee6 || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <ad25a115f50800c6847e0d841c5c7992a9f7c1b3 || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <598d9e30927b15731e83797fbd700ecf399f42dd || >=3dcbdb134f329842a38f0e6797191b885ab00a00 <9e4b7a99a03aefd37ba7bb1f022c8efab5019165 || 92984818ff8cfd97311a5e0ac27f148a00df2b54 || >=4.9.194 <4.9.334 || >=4.14.145 <4.14.300 || >=4.19.74 <4.19.267 || >=5.2.16 <5.3 | 5876b7f249a1ecbbcc8e35072c3828d6526d1c3a, 0a9f56e525ea871d3950b90076912f5c7494f00f, bd5362e58721e4d0d1a37796593bd6e51536ce7a, 65ad047fd83502447269fda8fd26c99077a9af47, 50868de7dc4e7f0fcadd6029f32bf4387c102ee6, ad25a115f50800c6847e0d841c5c7992a9f7c1b3, 598d9e30927b15731e83797fbd700ecf399f42dd, 9e4b7a99a03aefd37ba7bb1f022c8efab5019165, 4.9.334, 4.14.300, 4.19.267, 5.3 |
| Linux/Linuxgeneric | 5.3 | Not reported |
Published upstream
May 1, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 4, 2026
In the Linux kernel, the following vulnerability has been resolved: net: gso: fix panic on frag_list with mixed head alloc types Since commit 3dcbdb134f32 ("net: gso: Fix skb_segment splat when splitting gso_size mangled skb having linear-headed frag_list"), it is allowed to change gso_size of a GRO packet. However, that commit assumes that "checking the first list_skb member suffices; i.e if either of the list_skb members have non head_frag head, then the first one has too". It turns out this assumption does not hold. We've seen BUG_ON being hit in skb_segment when skbs on the frag_list had differing head_frag with the vmxnet3 driver. This happens because __netdev_alloc_skb and __napi_alloc_skb can return a skb that is page backed or kmalloced depending on the requested size. As the result, the last small skb in the GRO packet can be kmalloced. There are three different locations where this can be fixed: (1) We could check head_frag in GRO and not allow GROing skbs with different head_frag. However, that would lead to performance regression on normal forward paths with unmodified gso_size, where !head_frag in the last packet is not a problem. (2) Set a flag in bpf_skb_net_grow and bpf_skb_net_shrink indicating that NETIF_F_SG is undesirable. That would need to eat a bit in sk_buff. Furthermore, that flag can be unset when all skbs on the frag_list are page backed. To retain good performance, bpf_skb_net_grow/shrink would have to walk the frag_list. (3) Walk the frag_list in skb_segment when determining whether NETIF_F_SG should be cleared. This of course slows things down. This patch implements (3). To limit the performance impact in skb_segment, the list is walked only for skbs with SKB_GSO_DODGY set that have gso_size changed. Normal paths thus will not hit it. We could check only the last skb but since we need to walk the whole list anyway, let's stay on the safe side.
Quoted source text, attributed separately from HOL analysis.