udf: Fix crash on IO error during truncate
authorJan Kara <[email protected]>
Mon, 11 Mar 2019 14:04:18 +0000 (15:04 +0100)
committerJan Kara <[email protected]>
Mon, 18 Mar 2019 15:29:52 +0000 (16:29 +0100)
When truncate(2) hits IO error when reading indirect extent block the
code just bugs with:

kernel BUG at linux-4.15.0/fs/udf/truncate.c:249!
...

Fix the problem by bailing out cleanly in case of IO error.

CC: [email protected]
Reported-by: jean-luc malet <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
fs/udf/truncate.c

index b647f0bd150c46ba6b202989052b1849bb60c4c5..94220ba8562858e7fa30dfef8734da506b24dfa0 100644 (file)
@@ -260,6 +260,9 @@ void udf_truncate_extents(struct inode *inode)
                        epos.block = eloc;
                        epos.bh = udf_tread(sb,
                                        udf_get_lb_pblock(sb, &eloc, 0));
+                       /* Error reading indirect block? */
+                       if (!epos.bh)
+                               return;
                        if (elen)
                                indirect_ext_len =
                                        (elen + sb->s_blocksize - 1) >>