From: Mauricio Faria de Oliveira Date: Thu, 26 Jul 2018 01:46:29 +0000 (-0300) Subject: partitions/aix: append null character to print data from disk X-Git-Tag: v3.16.62~248 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c87826868f5b09cc724fbc8396e1f19db756ebcd;p=thirdparty%2Fkernel%2Fstable.git partitions/aix: append null character to print data from disk commit d43fdae7bac2def8c4314b5a49822cb7f08a45f1 upstream. Even if properly initialized, the lvname array (i.e., strings) is read from disk, and might contain corrupt data (e.g., lack the null terminating character for strings). So, make sure the partition name string used in pr_warn() has the null terminating character. Fixes: 6ceea22bbbc8 ("partitions: add aix lvm partition support files") Suggested-by: Daniel J. Axtens Signed-off-by: Mauricio Faria de Oliveira Signed-off-by: Jens Axboe Signed-off-by: Ben Hutchings --- diff --git a/block/partitions/aix.c b/block/partitions/aix.c index 01f7401caf63a..e36f9e35fc0fd 100644 --- a/block/partitions/aix.c +++ b/block/partitions/aix.c @@ -282,10 +282,14 @@ int aix_partition(struct parsed_partitions *state) next_lp_ix += 1; } for (i = 0; i < state->limit; i += 1) - if (lvip[i].pps_found && !lvip[i].lv_is_contiguous) + if (lvip[i].pps_found && !lvip[i].lv_is_contiguous) { + char tmp[sizeof(n[i].name) + 1]; // null char + + snprintf(tmp, sizeof(tmp), "%s", n[i].name); pr_warn("partition %s (%u pp's found) is " "not contiguous\n", - n[i].name, lvip[i].pps_found); + tmp, lvip[i].pps_found); + } kfree(pvd); } kfree(n);