btrfs: remove BUG_ON(!eie) in find_parent_nodes
authorJosef Bacik <josef@toxicpanda.com>
Fri, 5 Nov 2021 20:45:35 +0000 (16:45 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 07:47:38 +0000 (08:47 +0100)
[ Upstream commit 9f05c09d6baef789726346397438cca4ec43c3ee ]

If we're looking for leafs that point to a data extent we want to record
the extent items that point at our bytenr.  At this point we have the
reference and we know for a fact that this leaf should have a reference
to our bytenr.  However if there's some sort of corruption we may not
find any references to our leaf, and thus could end up with eie == NULL.
Replace this BUG_ON() with an ASSERT() and then return -EUCLEAN for the
mortals.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/btrfs/backref.c

index 29a19bc2abe18a8f8221ab73c1c1992f16a28d22..16169b35ab6e5be9189ff2c71680d15ee1d5cf8d 100644 (file)
@@ -1437,10 +1437,18 @@ again:
                                goto out;
                        if (!ret && extent_item_pos) {
                                /*
-                                * we've recorded that parent, so we must extend
-                                * its inode list here
+                                * We've recorded that parent, so we must extend
+                                * its inode list here.
+                                *
+                                * However if there was corruption we may not
+                                * have found an eie, return an error in this
+                                * case.
                                 */
-                               BUG_ON(!eie);
+                               ASSERT(eie);
+                               if (!eie) {
+                                       ret = -EUCLEAN;
+                                       goto out;
+                               }
                                while (eie->next)
                                        eie = eie->next;
                                eie->next = ref->inode_list;