[U-Boot] [PATCH] fs: btrfs: Fix tree traversal with btrfs_next_slot()

Tom Rini trini at konsulko.com
Mon Oct 8 15:16:55 UTC 2018


On Tue, Oct 02, 2018 at 01:22:28PM +0200, Marek BehĂșn wrote:

> Tested-by: Marek BehĂșn <marek.behun at nic.cz>
> 
> Hello Tom, could you please apply the patch by Yevgeny?

Sorry, I'll just lament that patchwork no longer has the ability to list
unassigned patches anymore.  I've given this to myself in patchwork and
will pick it up shortly.  Thanks!

> 
> Marek
> 
> On Fri,  7 Sep 2018 12:59:30 +0300
> Yevgeny Popovych <yevgenyp at pointgrab.com> wrote:
> 
> > When traversing slots in a btree (via btrfs_path) with
> > btrfs_next_slot(), we didn't correctly identify that the last slot in
> > the leaf was reached and we should jump to the next leaf.
> > 
> > This could lead to any kind of runtime errors or corruptions, like:
> > * file data not being read at all, or is read partially
> > * file is read but is corrupted
> > * (any) metadata being corrupted or not read at all, etc
> > 
> > The easiest way to reproduce this is to read a large enough file that
> > its EXTENT_DATA items don't fit into a single leaf.
> > 
> > Signed-off-by: Yevgeny Popovych <yevgenyp at pointgrab.com>
> > Cc: Marek Behun <marek.behun at nic.cz>
> > ---
> >  fs/btrfs/ctree.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
> > index 4da36a9..b44a47e 100644
> > --- a/fs/btrfs/ctree.c
> > +++ b/fs/btrfs/ctree.c
> > @@ -270,7 +270,7 @@ int btrfs_next_slot(struct btrfs_path *p)
> >  {
> >  	struct btrfs_leaf *leaf = &p->nodes[0]->leaf;
> >  
> > -	if (p->slots[0] >= leaf->header.nritems)
> > +	if (p->slots[0] + 1 >= leaf->header.nritems)
> >  		return jump_leaf(p, 1);
> >  
> >  	p->slots[0]++;
> 

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20181008/0bf06144/attachment.sig>


More information about the U-Boot mailing list