mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 20:54:03 +02:00
nilfs2: prevent out-of-bounds read in super root block parsing
super-root inode metadata size is trusted before nilfs_read_inode_common().
Reject super-root inode sizes whose computed on-disk footprint exceeds the
filesystem block size. This prevents malformed filesystem images from
making nilfs_read_inode_common() read past the end of the super-root block.
[ryusuke: clarify the commit title]
Fixes: 8a9d2191e9 ("nilfs2: operations for the_nilfs core object")
Signed-off-by: David Lee <david.lee@trailofbits.com>
Assisted-by: Codex:gpt-5.5
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Viacheslav Dubeyko <slava@dubeyko.com>
This commit is contained in:
parent
ce5a5ad1a8
commit
7cb2f76a6a
|
|
@ -461,6 +461,12 @@ static int nilfs_store_disk_layout(struct the_nilfs *nilfs,
|
|||
nilfs->ns_inode_size);
|
||||
return -EINVAL;
|
||||
}
|
||||
if (NILFS_SR_BYTES(nilfs->ns_inode_size) > nilfs->ns_blocksize) {
|
||||
nilfs_err(nilfs->ns_sb,
|
||||
"too large inode size for super root: %d bytes",
|
||||
nilfs->ns_inode_size);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino);
|
||||
if (nilfs->ns_first_ino < NILFS_USER_INO) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user