Skip to content

Commit f65c4bb

Browse files
plougherakpm00
authored andcommitted
Squashfs: fix handling and sanity checking of xattr_ids count
A Sysbot [1] corrupted filesystem exposes two flaws in the handling and sanity checking of the xattr_ids count in the filesystem. Both of these flaws cause computation overflow due to incorrect typing. In the corrupted filesystem the xattr_ids value is 4294967071, which stored in a signed variable becomes the negative number -225. Flaw 1 (64-bit systems only): The signed integer xattr_ids variable causes sign extension. This causes variable overflow in the SQUASHFS_XATTR_*(A) macros. The variable is first multiplied by sizeof(struct squashfs_xattr_id) where the type of the sizeof operator is "unsigned long". On a 64-bit system this is 64-bits in size, and causes the negative number to be sign extended and widened to 64-bits and then become unsigned. This produces the very large number 18446744073709548016 or 2^64 - 3600. This number when rounded up by SQUASHFS_METADATA_SIZE - 1 (8191 bytes) and divided by SQUASHFS_METADATA_SIZE overflows and produces a length of 0 (stored in len). Flaw 2 (32-bit systems only): On a 32-bit system the integer variable is not widened by the unsigned long type of the sizeof operator (32-bits), and the signedness of the variable has no effect due it always being treated as unsigned. The above corrupted xattr_ids value of 4294967071, when multiplied overflows and produces the number 4294963696 or 2^32 - 3400. This number when rounded up by SQUASHFS_METADATA_SIZE - 1 (8191 bytes) and divided by SQUASHFS_METADATA_SIZE overflows again and produces a length of 0. The effect of the 0 length computation: In conjunction with the corrupted xattr_ids field, the filesystem also has a corrupted xattr_table_start value, where it matches the end of filesystem value of 850. This causes the following sanity check code to fail because the incorrectly computed len of 0 matches the incorrect size of the table reported by the superblock (0 bytes). len = SQUASHFS_XATTR_BLOCK_BYTES(*xattr_ids); indexes = SQUASHFS_XATTR_BLOCKS(*xattr_ids); /* * The computed size of the index table (len bytes) should exactly * match the table start and end points */ start = table_start + sizeof(*id_table); end = msblk->bytes_used; if (len != (end - start)) return ERR_PTR(-EINVAL); Changing the xattr_ids variable to be "usigned int" fixes the flaw on a 64-bit system. This relies on the fact the computation is widened by the unsigned long type of the sizeof operator. Casting the variable to u64 in the above macro fixes this flaw on a 32-bit system. It also means 64-bit systems do not implicitly rely on the type of the sizeof operator to widen the computation. [1] https://lore.kernel.org/lkml/[email protected]/ Link: https://lkml.kernel.org/r/[email protected] Fixes: 506220d ("squashfs: add more sanity checks in xattr id lookup") Signed-off-by: Phillip Lougher <[email protected]> Reported-by: <[email protected]> Cc: Alexey Khoroshilov <[email protected]> Cc: Fedor Pchelkin <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent c1c551b commit f65c4bb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

fs/squashfs/squashfs_fs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ static inline int squashfs_block_size(__le32 raw)
183183
#define SQUASHFS_ID_BLOCK_BYTES(A) (SQUASHFS_ID_BLOCKS(A) *\
184184
sizeof(u64))
185185
/* xattr id lookup table defines */
186-
#define SQUASHFS_XATTR_BYTES(A) ((A) * sizeof(struct squashfs_xattr_id))
186+
#define SQUASHFS_XATTR_BYTES(A) (((u64) (A)) * sizeof(struct squashfs_xattr_id))
187187

188188
#define SQUASHFS_XATTR_BLOCK(A) (SQUASHFS_XATTR_BYTES(A) / \
189189
SQUASHFS_METADATA_SIZE)

fs/squashfs/squashfs_fs_sb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ struct squashfs_sb_info {
6363
long long bytes_used;
6464
unsigned int inodes;
6565
unsigned int fragments;
66-
int xattr_ids;
66+
unsigned int xattr_ids;
6767
unsigned int ids;
6868
bool panic_on_errors;
6969
const struct squashfs_decompressor_thread_ops *thread_ops;

fs/squashfs/xattr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
#ifdef CONFIG_SQUASHFS_XATTR
1212
extern __le64 *squashfs_read_xattr_id_table(struct super_block *, u64,
13-
u64 *, int *);
13+
u64 *, unsigned int *);
1414
extern int squashfs_xattr_lookup(struct super_block *, unsigned int, int *,
1515
unsigned int *, unsigned long long *);
1616
#else
1717
static inline __le64 *squashfs_read_xattr_id_table(struct super_block *sb,
18-
u64 start, u64 *xattr_table_start, int *xattr_ids)
18+
u64 start, u64 *xattr_table_start, unsigned int *xattr_ids)
1919
{
2020
struct squashfs_xattr_id_table *id_table;
2121

fs/squashfs/xattr_id.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ int squashfs_xattr_lookup(struct super_block *sb, unsigned int index,
5656
* Read uncompressed xattr id lookup table indexes from disk into memory
5757
*/
5858
__le64 *squashfs_read_xattr_id_table(struct super_block *sb, u64 table_start,
59-
u64 *xattr_table_start, int *xattr_ids)
59+
u64 *xattr_table_start, unsigned int *xattr_ids)
6060
{
6161
struct squashfs_sb_info *msblk = sb->s_fs_info;
6262
unsigned int len, indexes;

0 commit comments

Comments
 (0)