CVE-2019-13104: ext4: check for underflow in ext4fs_read_file
[oweals/u-boot.git] / fs / ext4 / ext4fs.c
index 85dc122f30033d36d1c5d0dd0b4a61486ca49bda..e2b740cac4057f8115ca7749c7b99f08c91b2cf7 100644 (file)
@@ -66,13 +66,15 @@ int ext4fs_read_file(struct ext2fs_node *node, loff_t pos,
 
        ext_cache_init(&cache);
 
-       if (blocksize <= 0)
-               return -1;
-
        /* Adjust len so it we can't read past the end of the file. */
        if (len + pos > filesize)
                len = (filesize - pos);
 
+       if (blocksize <= 0 || len <= 0) {
+               ext_cache_fini(&cache);
+               return -1;
+       }
+
        blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize);
 
        for (i = lldiv(pos, blocksize); i < blockcnt; i++) {