diff options
author | Vegard Nossum <vegard.nossum@oracle.com> | 2015-12-11 15:54:16 +0100 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2016-03-12 14:25:43 +0100 |
commit | 7fb40bde70d2130605c489b36fcc65b17200b542 (patch) | |
tree | 56d1534315b18edb35138f0c722ac5844e54f4da | |
parent | 140d24629ba0a885ca050d81a3407a5d8c982538 (diff) | |
download | lwn-7fb40bde70d2130605c489b36fcc65b17200b542.tar.gz lwn-7fb40bde70d2130605c489b36fcc65b17200b542.zip |
udf: limit the maximum number of indirect extents in a row
commit b0918d9f476a8434b055e362b83fa4fd1d462c3f upstream.
udf_next_aext() just follows extent pointers while extents are marked as
indirect. This can loop forever for corrupted filesystem. Limit number
the of indirect extents we are willing to follow in a row.
[JK: Updated changelog, limit, style]
Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com>
Cc: Jan Kara <jack@suse.com>
Cc: Quentin Casasnovas <quentin.casasnovas@oracle.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
[wt: udf_error() instead of udf_err() in 2.6.32]
Signed-off-by: Willy Tarreau <w@1wt.eu>
-rw-r--r-- | fs/udf/inode.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fs/udf/inode.c b/fs/udf/inode.c index b8d7a0e3aece..a22f56843f6e 100644 --- a/fs/udf/inode.c +++ b/fs/udf/inode.c @@ -1869,14 +1869,29 @@ int8_t udf_write_aext(struct inode *inode, struct extent_position *epos, return (elen >> 30); } +/* + * Only 1 indirect extent in a row really makes sense but allow upto 16 in case + * someone does some weird stuff. + */ +#define UDF_MAX_INDIR_EXTS 16 + int8_t udf_next_aext(struct inode *inode, struct extent_position *epos, struct kernel_lb_addr *eloc, uint32_t *elen, int inc) { int8_t etype; + unsigned int indirections = 0; while ((etype = udf_current_aext(inode, epos, eloc, elen, inc)) == (EXT_NEXT_EXTENT_ALLOCDECS >> 30)) { int block; + + if (++indirections > UDF_MAX_INDIR_EXTS) { + udf_error(inode->i_sb, __func__, + "too many indirect extents in inode %lu\n", + inode->i_ino); + return -1; + } + epos->block = *eloc; epos->offset = sizeof(struct allocExtDesc); brelse(epos->bh); |