]> git.hungrycats.org Git - linux/commitdiff
btrfs: avoid overflowing f_bfree
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Wed, 30 Mar 2016 22:18:14 +0000 (23:18 +0100)
committerZygo Blaxell <zblaxell@serenity.furryterror.org>
Sat, 4 Jun 2016 03:23:26 +0000 (23:23 -0400)
Since mixed block groups accounting isn't byte-accurate and f_bree is an
unsigned integer, it could overflow. Avoid this.

Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Suggested-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
(cherry picked from commit 41b34accb265e3a20211a7a8ef3625678f1c6ec7)
(cherry picked from commit b5f777b8b150ee699034c1e636e82f5eb6021dcc)

fs/btrfs/super.c

index 55af876dfa24ac1a12603466d5396bf03a617c02..cd07d10586320cdd71e142f9182e846ed318e278 100644 (file)
@@ -2063,7 +2063,11 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
 
        /* Account global block reserve as used, it's in logical size already */
        spin_lock(&block_rsv->lock);
-       buf->f_bfree -= block_rsv->size >> bits;
+       /* Mixed block groups accounting is not byte-accurate, avoid overflow */
+       if (buf->f_bfree >= block_rsv->size >> bits)
+               buf->f_bfree -= block_rsv->size >> bits;
+       else
+               buf->f_bfree = 0;
        spin_unlock(&block_rsv->lock);
 
        buf->f_bavail = div_u64(total_free_data, factor);