]> www.infradead.org Git - mtd-utils.git/commit
libmtd: don't ignore "region index" parameter in mtd_regioninfo()
authorBrian Norris <computersforpeace@gmail.com>
Mon, 15 Sep 2014 17:35:00 +0000 (10:35 -0700)
committerBrian Norris <computersforpeace@gmail.com>
Wed, 5 Nov 2014 03:00:42 +0000 (19:00 -0800)
commit6eb466a4f34808d29e3a704f6cabc7f70beebdc8
tree8d85a980daabba2c742e96b5bf6d7b48b0d2cfb6
parente53b1715172357cbaca2e07d58f6b8f6b0f14c64
libmtd: don't ignore "region index" parameter in mtd_regioninfo()

ioctl(MEMGETREGIONINFO) has one input parameter (regionindex) and three
output parameters (info about the erase region). There are two problems
in mtdinfo/libmtd here:

 1. mtdinfo.c doesn't initialize its region_info_user struct, instead
    passing uninitialized data to mtd_regioninfo()

 2. mtd_regioninfo() fails to utilize the 'regidx' parameter to fill out
    the regionindex parameter properly, so the garbage from mtdinfo.c is
    propagated to the ioctl()

This means that mtdinfo will continuously probe the same (possibly
out-of-range) erase region, instead of looping over the valid regions.

Let's fix this in the mtd_regioninfo() helper, and at the same time,
let's zero out the mtdinfo.c buffer, as an additional precaution to keep
from using uninitialized data.

Initial error report from Yang, when running "mtdinfo /dev/mtd0" on a
Cavium 6100 board:

root@CN61XX:~# mtdinfo /dev/mtd0
mtd0
Name:                           phys_mapped_flash
Type:                           nor
Eraseblock size:                65536 bytes, 64.0 KiB
Amount of eraseblocks:          128 (8388608 bytes, 8.0 MiB)
Minimum input/output unit size: 1 byte
Sub-page size:                  1 byte
Additional erase regions:       0
Character device major/minor:   90:0
Bad blocks are allowed:         false
Device is writable:             true
libmtd: error!: MEMGETREGIONINFO ioctl failed for erase region 0
        error 22 (Invalid argument)
Eraseblock region 0:  info is unavailable
libmtd: error!: MEMGETREGIONINFO ioctl failed for erase region 1
        error 22 (Invalid argument)
Eraseblock region 1:  info is unavailable

Reported-by: Yang Wei <Wei.Yang@windriver.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
lib/libmtd.c
ubi-utils/mtdinfo.c