summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2026-01-28 20:41:04 +0100
committerTom Rini <[email protected]>2026-02-06 09:29:50 -0600
commitf2c704c0e8aac1b846fd55b7178151b2c879e185 (patch)
tree721f2356bec88c665e8706c4cde95cd499c47182 /cmd
parent02ffe4a0c9d2885899648a5ffe22090e6c7ff9a5 (diff)
cmd: unzip: Use map_sysmem() with buffers in the gzwrite command
The current implementation casts an address to a pointer. Make it more sandbox-friendly by using map_sysmem(). Convert 'addr' variable to unsigned long, as that is the return type of hextoul() and address parameter type of map_sysmem(). Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/unzip.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/cmd/unzip.c b/cmd/unzip.c
index da958f12803..ba83995040b 100644
--- a/cmd/unzip.c
+++ b/cmd/unzip.c
@@ -50,11 +50,12 @@ static int do_gzwrite(struct cmd_tbl *cmdtp, int flag,
{
struct blk_desc *bdev;
int ret;
- unsigned char *addr;
+ unsigned long addr;
unsigned long length;
unsigned long writebuf = 1<<20;
off_t startoffs = 0;
size_t szexpected = 0;
+ void *addrp;
if (argc < 5)
return CMD_RET_USAGE;
@@ -62,7 +63,7 @@ static int do_gzwrite(struct cmd_tbl *cmdtp, int flag,
if (ret < 0)
return CMD_RET_FAILURE;
- addr = (unsigned char *)hextoul(argv[3], NULL);
+ addr = hextoul(argv[3], NULL);
length = hextoul(argv[4], NULL);
if (5 < argc) {
@@ -75,7 +76,11 @@ static int do_gzwrite(struct cmd_tbl *cmdtp, int flag,
}
}
- ret = gzwrite(addr, length, bdev, writebuf, startoffs, szexpected);
+ addrp = map_sysmem(addr, length);
+
+ ret = gzwrite(addrp, length, bdev, writebuf, startoffs, szexpected);
+
+ unmap_sysmem(addrp);
return ret ? CMD_RET_FAILURE : CMD_RET_SUCCESS;
}