CVE-2026-74578

Source
https://cve.org/CVERecord?id=CVE-2026-74578
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-74578.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-74578
Downstream
Published
2026-08-16T08:20:32.055Z
Modified
2026-08-18T03:56:52.436541647Z
Severity
  • 7.1 (High) CVSS_V3 - CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N CVSS Calculator
Summary
crypto: algif_skcipher - force synchronous processing on trees without ctx->state
Details

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

crypto: algif_skcipher - force synchronous processing on trees without ctx->state

The AIO/async path in skcipherrecvmsg() passes the socket-wide ctx->iv directly into the skcipher request. After iosubmit() the socket lock is dropped and the request is processed asynchronously, so a concurrent sendmsg(ALGSETIV) can overwrite ctx->iv and make the in-flight request run under an attacker-controlled IV. For CTR/stream modes this is IV/keystream reuse and lets an unprivileged user recover the plaintext of a concurrent operation.

Snapshotting ctx->iv into per-request storage for the async path is not sufficient. For ciphers with statesize == 0 - which includes cbc and ctr - the MSGMORE inter-chunk IV chaining is carried solely by the in-place req->iv writeback, which a snapshot redirects into per-request memory that afalgfreeresources() releases on completion, silently producing wrong output. Writing the IV back from the completion callback instead is not possible either: that would require lock_sock() there, but the callback can run in softirq/atomic context, so it must not sleep.

Make the operation synchronous instead, which removes both the IV race and any writeback race. This is equivalent to the upstream resolution, commit fcc77d33a34c ("net: Remove support for AIO on sockets"), which removed the AIO socket path across net/ entirely and so produces the same end state for this file. This patch deviates from that commit deliberately: rather than removing AIO socket support tree-wide, which would be far too invasive for stable, it removes only the AIO branch in crypto/algifskcipher.c. iosubmit() now completes synchronously; AF_ALG async is rarely used in practice.

The -EIOCBQUEUED check in skcipher_recvmsg() is now dead but harmless, and is left alone to keep the fix minimal.

Tested on 6.6.y: attacker IV injection dropped from 2296/200000 to 0/200000 after the change; MSG_MORE chunked CTR output bit-identical to single-shot.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/74xxx/CVE-2026-74578.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
e870456d8e7c8d57c059ea479b5aadbb55ff4c3a
Fixed
bf09b0be8e851f050e98da702d247c14d81b591a
Fixed
73dd3bf704ca6c20639de70c08e9a10bee904a95
Fixed
f1a87ca0843d74482402a206ea2dfb315ee9acbd
Fixed
7b91e51d0eb7cbb07f7f086f9176bd93dbbc85dd
Fixed
60eafc7b08c6689ea3ad39eff8d97aefc8a087c7
Fixed
d7860b682da55433b5da0591b0e4c1982ecd2689
Fixed
b05defc41b27c7d0c05c45f67bf5b91c28f93669
Fixed
fcc77d33a34cf271702e8daafb6c593e4626776d

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.14.0
Fixed
5.10.261
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.212
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.178
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.145
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.97
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.40
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.5

Database specific

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