CVE-2026-80982
Reported by Linux · Published September 11, 2026
In the Linux kernel, the following vulnerability has been resolved: net/smc: fix use-after-free in smc_rx_pipe_buf_release() smc_rx_splice() hands RMB pages to a pipe and takes a socket reference per entry so the smc_sock stays alive until the reader finishes. The connection does not: a concurrent close runs smc_conn_free(), which releases the receive buffer back to the link group pool. smc_rx_pipe_buf_release() tests sk_state before taking the socket lock. The state can change between the test and the lock, and smc_rx_update_cons() then dereferences conn->rmb_desc and walks conn->lgr, which smc_conn_free() has already released. On the is_reg_err path smcr_buf_unuse() frees the descriptor outright, so this is a use-after-free. Take the socket lock first and test conn->freed instead. smc_conn_free() sets that flag before releasing anything, and every caller holds the socket lock. The two paths exclude each other: either the pipe release runs first with everything valid, or it sees the flag and skips the update.
EPSS 0.16% · 5.5th percentile
Risk Scores
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | 9014db202cb764b8e14c53e7bacc81f9a1a2ba7f, 9014db202cb764b8e14c53e7bacc81f9a1a2ba7f, 9014db202cb764b8e14c53e7bacc81f9a1a2ba7f |
| Linux | Linux | 4.18, 0, 6.1.188 |
| Linux | Linux | 7.3-rc1, 7.3-rc1, 9014db202cb764b8e14c53e7bacc81f9a1a2ba7f |
| linux | linux_kernel | 4.18, 4.18, 4.18 |
Timeline
- Sep 11, 2026 CVE Published
- Sep 12, 2026 EPSS Score
- Sep 12, 2026 Coalition ESS Score
- Sep 13, 2026 EPSS Score
- Sep 14, 2026 CVE Updated
- Sep 16, 2026 EPSS Score