tar: Handle archives with the prefix field

Also, handle names and prefixes that fill the entire field (and have no
NUL byte) by using a precision specifier.
This commit is contained in:
Michael Forney 2014-11-01 20:36:40 +00:00 committed by sin
parent 0e8a8c9426
commit e1f87da43e
1 changed files with 6 additions and 2 deletions

8
tar.c
View File

@ -27,6 +27,7 @@ struct Header {
char gname[32];
char major[8];
char minor[8];
char prefix[155];
};
enum {
@ -298,11 +299,14 @@ c(const char * path)
static void
xt(int (*fn)(char*, int, char[Blksiz]))
{
char b[Blksiz], fname[101];
char b[Blksiz], fname[257], *s;
Header *h = (void*)b;
while(fread(b, Blksiz, 1, tarfile) && h->name[0] != '\0') {
snprintf(fname, sizeof fname, "%s", h->name);
s = fname;
if (h->prefix[0] != '\0')
s += sprintf(s, "%.*s/", (int)sizeof h->prefix, h->prefix);
sprintf(s, "%.*s", (int)sizeof h->name, h->name);
fn(fname, strtol(h->size, 0, 8), b);
}
}