]> git.baikalelectronics.ru Git - uboot.git/commit
fs/squashfs: Only use export table if available
authorDavid Oberhollenzer <goliath@infraroot.at>
Sun, 25 Dec 2022 10:05:24 +0000 (11:05 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 11 Jan 2023 20:02:24 +0000 (15:02 -0500)
commit4b889108d8258562ad548e3884ae059ea1a84939
tree277f6a49e3301bbfead42b571b1f7c3632366fcb
parent98ca023f95ee9613a2e4c2439bd85bd5b5538255
fs/squashfs: Only use export table if available

For a squashfs filesystem, the fragment table is followed by
the following tables: NFS export table, ID table, xattr table.

The export and xattr tables are both completely optional, but
the ID table is mandatory. The Linux implementation refuses to
mount the image if the ID table is missing. Tables that are no
present have their location in the super block set
to 0xFFFFFFFFFFFFFFFF.

The u-boot implementation previously assumed that it can always
rely on the export table location as an upper bound for the fragment
table, trying (and failing) to read past filesystem bounds if it
is not present.

This patch changes the driver to use the ID table instead and only
use the export table location if it lies between the two.

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
fs/squashfs/sqfs.c