From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>,
syzbot+895c23f6917da440ed0d@syzkaller.appspotmail.com,
Tigran Aivazian <aivazian.tigran@gmail.com>,
Christian Brauner <brauner@kernel.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH AUTOSEL 6.17-5.4] bfs: Reconstruct file type when loading from disk
Date: Mon, 24 Nov 2025 03:06:35 -0500 [thread overview]
Message-ID: <20251124080644.3871678-21-sashal@kernel.org> (raw)
In-Reply-To: <20251124080644.3871678-1-sashal@kernel.org>
From: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
[ Upstream commit 34ab4c75588c07cca12884f2bf6b0347c7a13872 ]
syzbot is reporting that S_IFMT bits of inode->i_mode can become bogus when
the S_IFMT bits of the 32bits "mode" field loaded from disk are corrupted
or when the 32bits "attributes" field loaded from disk are corrupted.
A documentation says that BFS uses only lower 9 bits of the "mode" field.
But I can't find an explicit explanation that the unused upper 23 bits
(especially, the S_IFMT bits) are initialized with 0.
Therefore, ignore the S_IFMT bits of the "mode" field loaded from disk.
Also, verify that the value of the "attributes" field loaded from disk is
either BFS_VREG or BFS_VDIR (because BFS supports only regular files and
the root directory).
Reported-by: syzbot+895c23f6917da440ed0d@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=895c23f6917da440ed0d
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Link: https://patch.msgid.link/fabce673-d5b9-4038-8287-0fd65d80203b@I-love.SAKURA.ne.jp
Reviewed-by: Tigran Aivazian <aivazian.tigran@gmail.com>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
1. **COMMIT MESSAGE ANALYSIS**
- **Problem:** A syzbot report identified a bug where `inode->i_mode`
could contain bogus `S_IFMT` (file type) bits. This occurs because
the kernel was trusting the upper bits of the 32-bit on-disk `mode`
field. If these bits contained garbage (which is possible as BFS
historically only utilized the lower 9 bits), they would conflict
with the actual file type determined by the `i_vtype` attribute.
- **Fix:** The patch ignores the `S_IFMT` bits from the on-disk
`mode` by narrowing the mask from `0xFFFF` to `0x0FFF`. It then
reconstructs the correct file type solely from `di->i_vtype` and
adds validation to ensure `i_vtype` is a known type (`BFS_VREG` or
`BFS_VDIR`).
- **Stable Signals:** Fixes a reported bug (syzbot), handles
corrupted input (security hardening), small surgical fix.
- **Missing Signals:** No `Cc: stable` or `Fixes` tag, but the commit
addresses a vulnerability found by fuzzing, which typically
qualifies for stable backporting.
2. **DEEP CODE RESEARCH**
- **File:** `fs/bfs/inode.c`, function `bfs_iget`.
- **Root Cause:**
The original code used a mask of `0x0000FFFF`:
```c
inode->i_mode = 0x0000FFFF & le32_to_cpu(di->i_mode);
if (le32_to_cpu(di->i_vtype) == BFS_VDIR)
inode->i_mode |= S_IFDIR;
```
The `S_IFMT` mask in Linux corresponds to the bits `0xF000` (octal
`0170000`). By preserving these bits from the disk and then ORing
in the type (`S_IFDIR`), the code could result in a mixed, invalid
file type if the disk data was not clean (e.g., `S_IFLNK |
S_IFDIR`).
- **The Fix:**
The new code uses a mask of `0x00000FFF`:
```c
inode->i_mode = 0x00000FFF & le32_to_cpu(di->i_mode);
```
This strictly clears the file type bits before setting them based
on the authoritative `i_vtype`. It also adds necessary error
handling:
```c
} else {
brelse(bh);
printf("Unknown vtype=%u...\n", ...);
goto error;
}
```
This ensures that if the authoritative type is unknown, the
operation fails safely rather than proceeding with an invalid
inode.
3. **STABLE KERNEL RULES ALIGNMENT**
- **Obviously correct:** Yes. It applies standard input sanitization
to untrusted disk data.
- **Fixes real bug:** Yes. Prevents type confusion and potential
crashes when mounting corrupted or malicious filesystem images
(syzbot report).
- **Important:** Yes. While BFS is a legacy filesystem, handling
corrupted images gracefully is a standard security requirement for
the kernel.
- **Small and contained:** Yes. The change is isolated to ~20 lines
in a single function in `fs/bfs/inode.c`.
- **No new features:** Yes. This is purely a robustness fix.
4. **RISK VS BENEFIT**
- **Benefit:** Prevents undefined behavior, crashes, or security
issues arising from type confusion in the VFS layer.
- **Risk:** Negligible. Valid BFS images will have correct `i_vtype`
values and will work exactly as before. The change only affects how
the kernel interprets potentially garbage data in unused bits.
- **Dependencies:** None. The fix is self-contained and uses existing
constants (`BFS_VDIR`, `BFS_VREG`).
5. **CONCLUSION**
This commit is a classic input validation fix for a filesystem driver.
It resolves a bug found by automated fuzzing (syzbot) where untrusted
disk data was allowed to corrupt in-memory kernel structures
(`inode->i_mode`). Even though BFS is a niche filesystem, preventing
data corruption and crashes upon mount is a requirement for stable
kernels. The fix is small, low-risk, and obviously correct.
**YES**
fs/bfs/inode.c | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/fs/bfs/inode.c b/fs/bfs/inode.c
index 1d41ce477df58..984b365df0460 100644
--- a/fs/bfs/inode.c
+++ b/fs/bfs/inode.c
@@ -61,7 +61,19 @@ struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK;
di = (struct bfs_inode *)bh->b_data + off;
- inode->i_mode = 0x0000FFFF & le32_to_cpu(di->i_mode);
+ /*
+ * https://martin.hinner.info/fs/bfs/bfs-structure.html explains that
+ * BFS in SCO UnixWare environment used only lower 9 bits of di->i_mode
+ * value. This means that, although bfs_write_inode() saves whole
+ * inode->i_mode bits (which include S_IFMT bits and S_IS{UID,GID,VTX}
+ * bits), middle 7 bits of di->i_mode value can be garbage when these
+ * bits were not saved by bfs_write_inode().
+ * Since we can't tell whether middle 7 bits are garbage, use only
+ * lower 12 bits (i.e. tolerate S_IS{UID,GID,VTX} bits possibly being
+ * garbage) and reconstruct S_IFMT bits for Linux environment from
+ * di->i_vtype value.
+ */
+ inode->i_mode = 0x00000FFF & le32_to_cpu(di->i_mode);
if (le32_to_cpu(di->i_vtype) == BFS_VDIR) {
inode->i_mode |= S_IFDIR;
inode->i_op = &bfs_dir_inops;
@@ -71,6 +83,11 @@ struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
inode->i_op = &bfs_file_inops;
inode->i_fop = &bfs_file_operations;
inode->i_mapping->a_ops = &bfs_aops;
+ } else {
+ brelse(bh);
+ printf("Unknown vtype=%u %s:%08lx\n",
+ le32_to_cpu(di->i_vtype), inode->i_sb->s_id, ino);
+ goto error;
}
BFS_I(inode)->i_sblock = le32_to_cpu(di->i_sblock);
--
2.51.0
prev parent reply other threads:[~2025-11-24 8:07 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-24 8:06 [PATCH AUTOSEL 6.17-5.10] platform/x86: huawei-wmi: add keys for HONOR models Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] sched_ext: Fix possible deadlock in the deferred_irq_workfn() Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-5.15] HID: elecom: Add support for ELECOM M-XT3URBK (018F) Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] platform/x86: intel-uncore-freq: Add additional client processors Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-6.6] platform/x86/amd/pmc: Add spurious_8042 to Xbox Ally Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-5.10] pinctrl: qcom: msm: Fix deadlock in pinmux configuration Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] platform/x86: hp-wmi: Add Omen 16-wf1xxx fan support Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-5.10] samples: work around glibc redefining some of our defines wrong Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-6.6] HID: hid-input: Extend Elan ignore battery quirk to USB Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] HID: lenovo: fixup Lenovo Yoga Slim 7x Keyboard rdesc Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] platform/x86/amd/pmc: Add support for Van Gogh SoC Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] sched_ext: Use IRQ_WORK_INIT_HARD() to initialize rq->scx.kick_cpus_irq_work Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] platform/x86/intel/hid: Add Nova Lake support Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] platform/x86: hp-wmi: mark Victus 16-r0 and 16-s0 for victus_s fan and thermal profile support Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-5.4] platform/x86: acer-wmi: Ignore backlight event Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17] platform/x86: hp-wmi: Add Omen MAX 16-ah0xx fan support and thermal profile Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-6.6] platform/x86/amd: pmc: Add Lenovo Legion Go 2 to pmc quirk list Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-6.6] nvme: fix admin request_queue lifetime Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-6.1] LoongArch: Mask all interrupts during kexec/kdump Sasha Levin
2025-11-24 8:06 ` [PATCH AUTOSEL 6.17-6.1] HID: apple: Add SONiX AK870 PRO to non_apple_keyboards quirk list Sasha Levin
2025-11-24 8:06 ` Sasha Levin [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251124080644.3871678-21-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=aivazian.tigran@gmail.com \
--cc=brauner@kernel.org \
--cc=patches@lists.linux.dev \
--cc=penguin-kernel@I-love.SAKURA.ne.jp \
--cc=stable@vger.kernel.org \
--cc=syzbot+895c23f6917da440ed0d@syzkaller.appspotmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox