]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
pnfs/blocklayout: off by one in bl_map_stripe()
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 4 Jul 2018 09:59:58 +0000 (12:59 +0300)
committerJuerg Haefliger <juergh@canonical.com>
Wed, 24 Jul 2019 01:45:55 +0000 (19:45 -0600)
BugLink: https://bugs.launchpad.net/bugs/1835972
commit 0914bb965e38a055e9245637aed117efbe976e91 upstream.

"dev->nr_children" is the number of children which were parsed
successfully in bl_parse_stripe().  It could be all of them and then, in
that case, it is equal to v->stripe.volumes_count.  Either way, the >
should be >= so that we don't go beyond the end of what we're supposed
to.

Fixes: 5c83746a0cf2 ("pnfs/blocklayout: in-kernel GETDEVICEINFO XDR parsing")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Cc: stable@vger.kernel.org # 3.17+
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
fs/nfs/blocklayout/dev.c

index 95f74bd2c067fcd2556f09e3abbbb57cbd41f0f2..70c4165d2d742d3812fb7ebe850e359af2e60a25 100644 (file)
@@ -204,7 +204,7 @@ static bool bl_map_stripe(struct pnfs_block_dev *dev, u64 offset,
        chunk = div_u64(offset, dev->chunk_size);
        div_u64_rem(chunk, dev->nr_children, &chunk_idx);
 
-       if (chunk_idx > dev->nr_children) {
+       if (chunk_idx >= dev->nr_children) {
                dprintk("%s: invalid chunk idx %d (%lld/%lld)\n",
                        __func__, chunk_idx, offset, dev->chunk_size);
                /* error, should not happen */