Answer in brief
CVE-2026-53191 records a High severity (CVSS 7.8) vulnerability in io_uring/net: inherit IORING_CQE_F_BUF_MORE across bundle recv retries. 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.8. 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.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <f40570fda3f3a1f96aeaa4aef665ba274b2810b5 || >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <0bbc9481f970b0b4ddb08cfa464db1cc93b74b56 || >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <4973232a67e4137ab9399f504f7f2bdd847f96d2 || >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <ed46f39c47eb5530a9c161481a2080d3a869cfaf | f40570fda3f3a1f96aeaa4aef665ba274b2810b5, 0bbc9481f970b0b4ddb08cfa464db1cc93b74b56, 4973232a67e4137ab9399f504f7f2bdd847f96d2, ed46f39c47eb5530a9c161481a2080d3a869cfaf |
| Linux/Linuxgeneric | 6.12 | Not reported |
Published upstream
Jun 25, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 25, 2026
In the Linux kernel, the following vulnerability has been resolved: io_uring/net: inherit IORING_CQE_F_BUF_MORE across bundle recv retries When a bundle recv retries inside io_recv_finish(), the merge logic OR the saved cflags from the previous iteration with the cflags returned by the new iteration: cflags = req->cqe.flags | (cflags & CQE_F_MASK); Bits listed in CQE_F_MASK are inherited from the new iteration, and all other bits (notably IORING_CQE_F_BUFFER and the buffer ID) come from the saved cflags. Before this change CQE_F_MASK covered only IORING_CQE_F_SOCK_NONEMPTY and IORING_CQE_F_MORE. When using provided buffer rings (IOU_PBUF_RING_INC) with incremental mode, and bundle recv, io_kbuf_inc_commit() can leave the head ring entry partially consumed, __io_put_kbufs() then sets IORING_CQE_F_BUF_MORE on the returned cflags so userspace knows the buffer ID will be reused for subsequent completions. Because IORING_CQE_F_BUF_MORE was not in CQE_F_MASK, the merge above silently dropped it whenever the final retry iteration partially consumed the buffer, and the subsequent req->cqe.flags = cflags & ~CQE_F_MASK save would have left a stale IORING_CQE_F_BUF_MORE in the carried-over cflags had one been present. Userspace would then wrongfully advance it ring head past an entry the kernel still uses. Add IORING_CQE_F_BUF_MORE to CQE_F_MASK so it is both inherited from the new iteration into the user-visible CQE and stripped from the saved cflags between iterations.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-53191 records a High severity (CVSS 7.8) vulnerability in io_uring/net: inherit IORING_CQE_F_BUF_MORE across bundle recv retries. 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.8. 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.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <f40570fda3f3a1f96aeaa4aef665ba274b2810b5 || >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <0bbc9481f970b0b4ddb08cfa464db1cc93b74b56 || >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <4973232a67e4137ab9399f504f7f2bdd847f96d2 || >=ae98dbf43d755b4e111fcd086e53939bef3e9a1a <ed46f39c47eb5530a9c161481a2080d3a869cfaf | f40570fda3f3a1f96aeaa4aef665ba274b2810b5, 0bbc9481f970b0b4ddb08cfa464db1cc93b74b56, 4973232a67e4137ab9399f504f7f2bdd847f96d2, ed46f39c47eb5530a9c161481a2080d3a869cfaf |
| Linux/Linuxgeneric | 6.12 | Not reported |
Published upstream
Jun 25, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 25, 2026
In the Linux kernel, the following vulnerability has been resolved: io_uring/net: inherit IORING_CQE_F_BUF_MORE across bundle recv retries When a bundle recv retries inside io_recv_finish(), the merge logic OR the saved cflags from the previous iteration with the cflags returned by the new iteration: cflags = req->cqe.flags | (cflags & CQE_F_MASK); Bits listed in CQE_F_MASK are inherited from the new iteration, and all other bits (notably IORING_CQE_F_BUFFER and the buffer ID) come from the saved cflags. Before this change CQE_F_MASK covered only IORING_CQE_F_SOCK_NONEMPTY and IORING_CQE_F_MORE. When using provided buffer rings (IOU_PBUF_RING_INC) with incremental mode, and bundle recv, io_kbuf_inc_commit() can leave the head ring entry partially consumed, __io_put_kbufs() then sets IORING_CQE_F_BUF_MORE on the returned cflags so userspace knows the buffer ID will be reused for subsequent completions. Because IORING_CQE_F_BUF_MORE was not in CQE_F_MASK, the merge above silently dropped it whenever the final retry iteration partially consumed the buffer, and the subsequent req->cqe.flags = cflags & ~CQE_F_MASK save would have left a stale IORING_CQE_F_BUF_MORE in the carried-over cflags had one been present. Userspace would then wrongfully advance it ring head past an entry the kernel still uses. Add IORING_CQE_F_BUF_MORE to CQE_F_MASK so it is both inherited from the new iteration into the user-visible CQE and stripped from the saved cflags between iterations.
Quoted source text, attributed separately from HOL analysis.