]> www.infradead.org Git - mtd-utils.git/commitdiff
mtd-utils: nandtest: handle large nand devices
authorChristian Wendt he/him <cw@brainaid.de>
Wed, 23 Aug 2023 11:09:28 +0000 (13:09 +0200)
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Wed, 23 Aug 2023 11:09:28 +0000 (13:09 +0200)
Running nandtest on devices with sizes of 4Gb or more does not work, as
the size returned in mtd_info_user is reported as 0 for 4Gb devices for
example.

The patch uses sysfs to figure out the size of the nand device (as
recommended in a comment in include/mtd/mtd-abi.h) and changes sizes
and offsets to 64 bit values.

[From: Christian Wendt <cw@brainaid.de>]
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
nand-utils/nandtest.c

index 06dec25c7f95f62825b986487f25a8aabd60888b..14dfbff0a0650262ef41ea4fa0a379c1e5cb4058 100644 (file)
@@ -8,6 +8,7 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
+#include <limits.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/types.h>
@@ -144,6 +145,26 @@ static int erase_and_write(loff_t ofs, unsigned char *data, unsigned char *rbuf,
        return 0;
 }
 
+static uint64_t get_mem_size(const char* device)
+{
+       const char* p = strrchr(device, '/');
+       char path[PATH_MAX];
+       int fd;
+
+       snprintf(path, sizeof(path), "/sys/class/mtd/%s/size", p);
+       fd = open(path, O_RDONLY);
+       if (fd >= 0) {
+               char buffer[32];
+               ssize_t n = read(fd, buffer, sizeof(buffer));
+               close(fd);
+               if (n > 0) {
+                       return strtoull(buffer, NULL, 0);
+               }
+       }
+
+       fprintf(stderr, "Can't read size from %s\n", path);
+       exit(1);
+}
 
 /*
  * Main program
@@ -156,8 +177,9 @@ int main(int argc, char **argv)
        int nr_passes = 1;
        int nr_reads = 4;
        int keep_contents = 0;
-       uint32_t offset = 0;
-       uint32_t length = -1;
+       uint64_t offset = 0;
+       uint64_t length = -1;
+       uint64_t mem_size = 0;
        int error = 0;
 
        seed = time(NULL);
@@ -212,11 +234,11 @@ int main(int argc, char **argv)
                        break;
 
                case 'o':
-                       offset = simple_strtoul(optarg, &error);
+                       offset = simple_strtoull(optarg, &error);
                        break;
 
                case 'l':
-                       length = simple_strtoul(optarg, &error);
+                       length = simple_strtoull(optarg, &error);
                        break;
 
                }
@@ -238,29 +260,31 @@ int main(int argc, char **argv)
                exit(1);
        }
 
+       mem_size = get_mem_size(argv[optind]);
+
        if (length == -1)
-               length = meminfo.size;
+               length = mem_size;
 
        if (offset % meminfo.erasesize) {
-               fprintf(stderr, "Offset %x not multiple of erase size %x\n",
+               fprintf(stderr, "Offset %llx not multiple of erase size %x\n",
                        offset, meminfo.erasesize);
                exit(1);
        }
        if (length % meminfo.erasesize) {
-               fprintf(stderr, "Length %x not multiple of erase size %x\n",
+               fprintf(stderr, "Length %llx not multiple of erase size %x\n",
                        length, meminfo.erasesize);
                exit(1);
        }
-       if (length + offset > meminfo.size) {
-               fprintf(stderr, "Length %x + offset %x exceeds device size %x\n",
-                       length, offset, meminfo.size);
+       if (length + offset > mem_size) {
+               fprintf(stderr, "Length %llx + offset %llx exceeds device size %llx\n",
+                       length, offset, mem_size);
                exit(1);
        }
 
        wbuf = malloc(meminfo.erasesize * 3);
        if (!wbuf) {
                fprintf(stderr, "Could not allocate %d bytes for buffer\n",
-                       meminfo.erasesize * 2);
+                       meminfo.erasesize * 3);
                exit(1);
        }
        rbuf = wbuf + meminfo.erasesize;