aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/cpio.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-03-26 06:07:06 -0500
committerRob Landley <rob@landley.net>2014-03-26 06:07:06 -0500
commit392e12769fd41ede6b3e2685b5682275843a9b1d (patch)
tree8c2135cc792415c90b9fe38cedf1bdff57c0a23f /toys/posix/cpio.c
parenta2d558151a6308870a30a83bcd1975a80168a515 (diff)
downloadtoybox-392e12769fd41ede6b3e2685b5682275843a9b1d.tar.gz
More cpio bugfixes from Isaac Dunham.
Fix FLAG_o to actually be 1 like the comment says, don't try to strlen(name) before reading it, pad TRAILER!!! entry correctly.
Diffstat (limited to 'toys/posix/cpio.c')
-rw-r--r--toys/posix/cpio.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/toys/posix/cpio.c b/toys/posix/cpio.c
index 900e5128..4817403f 100644
--- a/toys/posix/cpio.c
+++ b/toys/posix/cpio.c
@@ -13,7 +13,7 @@
* In order: magic ino mode uid gid nlink mtime filesize devmajor devminor
* rdevmajor rdevminor namesize check
-USE_CPIO(NEWTOY(cpio, "duH:i|t|F:o|v(verbose)[!io][!ot]", TOYFLAG_BIN))
+USE_CPIO(NEWTOY(cpio, "duH:i|t|F:v(verbose)o|[!io][!ot]", TOYFLAG_BIN))
config CPIO
bool "cpio"
@@ -156,13 +156,14 @@ void cpio_main(void)
for (;;) {
struct stat st;
- unsigned nlen = strlen(name)+1, error = 0, zero = 0;
+ unsigned nlen, error = 0, zero = 0;
int len, fd = -1;
ssize_t llen;
len = getline(&name, &size, stdin);
if (len<1) break;
if (name[len-1] == '\n') name[--len] = 0;
+ nlen = len+1;
if (lstat(name, &st)
|| (S_ISREG(st.st_mode) && (fd = open(name, O_RDONLY))<0))
{
@@ -206,8 +207,8 @@ void cpio_main(void)
}
free(name);
+ memset(toybuf, 0, sizeof(toybuf));
xwrite(afd, toybuf,
- sprintf(toybuf, "070701%040X%056X%08XTRAILER!!!%c%c%c",
- 1, 0x0b, 0, 0, 0, 0));
+ sprintf(toybuf, "070701%040X%056X%08XTRAILER!!!", 1, 0x0b, 0)+4);
}
}