]> asedeno.scripts.mit.edu Git - linux.git/commit
partitions/aix: fix usage of uninitialized lv_info and lvname structures
authorMauricio Faria de Oliveira <mfo@canonical.com>
Thu, 26 Jul 2018 01:46:28 +0000 (22:46 -0300)
committerJens Axboe <axboe@kernel.dk>
Fri, 27 Jul 2018 15:17:39 +0000 (09:17 -0600)
commit14cb2c8a6c5dae57ee3e2da10fa3db2b9087e39e
tree995d47f8d07db74f47d3ced70712a69044b49928
parent75cbb3f1d840429e6aa67b351332f38b29e6292c
partitions/aix: fix usage of uninitialized lv_info and lvname structures

The if-block that sets a successful return value in aix_partition()
uses 'lvip[].pps_per_lv' and 'n[].name' potentially uninitialized.

For example, if 'numlvs' is zero or alloc_lvn() fails, neither is
initialized, but are used anyway if alloc_pvd() succeeds after it.

So, make the alloc_pvd() call conditional on their initialization.

This has been hit when attaching an apparently corrupted/stressed
AIX LUN, misleading the kernel to pr_warn() invalid data and hang.

    [...] partition (null) (11 pp's found) is not contiguous
    [...] partition (null) (2 pp's found) is not contiguous
    [...] partition (null) (3 pp's found) is not contiguous
    [...] partition (null) (64 pp's found) is not contiguous

Fixes: 6ceea22bbbc8 ("partitions: add aix lvm partition support files")
Signed-off-by: Mauricio Faria de Oliveira <mfo@canonical.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/partitions/aix.c