In the Linux kernel, the following vulnerability has been resolved:
f2fs: read COW data with the original inode during atomic write
When updating an atomic-write file, f2fs_write_begin() may read the previously written data back from the COW inode: prepare_atomic_write_begin() locates the block in the COW inode and sets use_cow, and the read bio is then built with the COW inode:
f2fs_submit_page_read(use_cow ? F2FS_I(inode)->cow_inode : inode, ...);
and f2fs_grab_read_bio() decides whether to schedule fs-layer decryption (STEP_DECRYPT) for the bio based on that inode via fscrypt_inode_uses_fs_layer_crypto().
However, the folio being filled belongs to the original inode (folio->mapping->host == inode), and the data stored in the COW block was encrypted (or left as plaintext) using the original inode's context, not the COW inode's -- see f2fs_encrypt_one_page(), which keys off fio->page->mapping->host. fscrypt_decrypt_pagecache_blocks() likewise operates on folio->mapping->host.
The COW inode is created as a tmpfile in the parent directory and inherits its encryption policy from there. With test_dummy_encryption the newly created COW inode gets the dummy policy and becomes encrypted, while a pre-existing regular file -- created before the policy applied, e.g. already present in the on-disk image -- stays unencrypted. The read path then sets STEP_DECRYPT based on the encrypted COW inode and calls fscrypt_decrypt_pagecache_blocks() on a folio whose host (the unencrypted original inode) has a NULL ->i_crypt_info, dereferencing it:
Oops: general protection fault, probably for non-canonical address ... KASAN: null-ptr-deref in range [0x0000000000000008-0x000000000000000f] RIP: 0010:fscrypt_decrypt_pagecache_blocks+0xa0/0x310 Workqueue: f2fs_post_read_wq f2fs_post_read_work Call Trace: fscrypt_decrypt_bio+0x1eb/0x340 f2fs_post_read_work+0xba/0x140 process_one_work+0x91c/0x1a40 worker_thread+0x677/0xe90 kthread+0x2bc/0x3a0
The COW inode is only needed to locate the on-disk block, and that block address is already resolved into @blkaddr by prepare_atomic_write_begin() via __find_data_block(cow_inode, ...); f2fs_submit_page_read() then reads from that physical @blkaddr directly, so the inode argument only selects the post-read crypto context, not which block is fetched. Reading with @inode therefore returns the same (latest, not-yet-committed) COW data, while making both the fs-layer decryption decision and the inline crypto path use the correct (original inode's) key.
With the COW inode no longer used at the read site, the use_cow flag has no remaining consumer; drop it from f2fs_write_begin() and prepare_atomic_write_begin().
Covered by Rapid7
| Product | Vendor Advisory | Solution File | Added | Published |
|---|---|---|---|---|
| Ubuntu | — | Upgrade linux-image-realtime-64kUpgrade linux-image-realtimeUpgrade linux-image-7.0.0-1014-azureUpgrade linux-image-nvidia-7.0Upgrade linux-image-oem-26.04aUpgrade linux-image-raspiUpgrade linux-image-7.0.0-1012-awsUpgrade linux-image-7.0.0-1011-gcp-64kUpgrade linux-image-gcp-64k-7.0Upgrade linux-image-gcp-64kUpgrade linux-image-generic-7.0Upgrade linux-image-gke-7.0Upgrade linux-image-7.0.0-1018-nvidia-64kUpgrade linux-image-aws-64k-7.0Upgrade linux-image-7.0.0-1019-raspiUpgrade linux-image-7.0.0-31-realtimeUpgrade linux-image-nvidia-bos-64kUpgrade linux-image-realtime-7.0Upgrade linux-image-raspi-realtime-7.0Upgrade linux-image-awsUpgrade linux-image-gke-64kUpgrade linux-image-aws-7.0Upgrade linux-image-gke-64k-7.0Upgrade linux-image-oem-26.04Upgrade linux-image-generic-64k-hwe-26.04Upgrade linux-image-nvidia-bosUpgrade linux-image-oem-7.0Upgrade linux-image-azureUpgrade linux-image-genericUpgrade linux-image-generic-hwe-26.04Upgrade linux-image-generic-64kUpgrade linux-image-nvidia-bos-64k-7.0Upgrade linux-image-7.0.0-1018-nvidiaUpgrade linux-image-7.0.0-2018-nvidia-bos-64kUpgrade linux-image-oracle-64k-7.0Upgrade linux-image-7.0.0-2018-nvidia-bosUpgrade linux-image-realtime-64k-hwe-26.04Upgrade linux-image-oracle-7.0Upgrade linux-image-nvidia-hwe-26.04Upgrade linux-image-nvidia-bos-7.0Upgrade linux-image-gke-hwe-26.04Upgrade linux-image-7.0.0-1011-oracleUpgrade linux-image-aws-64kUpgrade linux-image-nvidia-64k-7.0Upgrade linux-image-7.0.0-1011-gcpUpgrade linux-image-virtualUpgrade linux-image-nvidia-64kUpgrade linux-image-generic-64k-7.0Upgrade linux-image-virtual-7.0Upgrade linux-image-raspi-realtimeUpgrade linux-image-virtual-hwe-24.04Upgrade linux-image-nvidia-64k-hwe-26.04Upgrade linux-image-nvidiaUpgrade linux-image-generic-64k-hwe-24.04Upgrade linux-image-azure-7.0Upgrade linux-image-azure-lts-26.04Upgrade linux-image-7.0.0-31-realtime-64kUpgrade linux-image-oem-26.04bUpgrade linux-image-gkeUpgrade linux-image-7.0.0-1012-aws-64kUpgrade linux-image-7.0.0-1006-gke-64kUpgrade linux-image-gke-64k-hwe-26.04Upgrade linux-image-ibm-7.0Upgrade linux-image-realtime-hwe-26.04Upgrade linux-image-raspi-7.0Upgrade linux-image-7.0.0-1011-oracle-64kUpgrade linux-image-virtual-hwe-26.04Upgrade linux-image-oracleUpgrade linux-image-ibmUpgrade linux-image-7.0.0-31-genericUpgrade linux-image-7.0.0-1013-oemUpgrade linux-image-gcp-7.0Upgrade linux-image-realtime-64k-7.0Upgrade linux-image-oracle-64kUpgrade linux-image-gcpUpgrade linux-image-7.0.0-31-generic-64kUpgrade linux-image-7.0.0-1019-raspi-realtimeUpgrade linux-image-7.0.0-1013-ibmUpgrade linux-image-7.0.0-1006-gkeUpgrade linux-image-generic-hwe-24.04 | Sep 14, 2026 | Sep 7, 2026 |
Prioritise with Active Threat Intelligence
With curated Threat Intelligence, you can see which vulnerabilities truly put you at risk, prioritize what matters most, and act before attackers do.
Explore Intelligence Hub