diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2018-09-13 12:33:44 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2018-09-13 12:33:44 +0000 |
commit | f78a434a1dc617d1632f9358149ad724e1286fa9 (patch) | |
tree | 575388efcaaede5ebf81164619c4bfd431c53223 /bin/pax/tar.c | |
parent | e6651a05fa56b3b097037cb6bca10bf9d3baed9b (diff) |
Use the new libc uid_from_user() and gid_from_group() instead of
the pax-specific functions in cache.c. OK guenther@
Diffstat (limited to 'bin/pax/tar.c')
-rw-r--r-- | bin/pax/tar.c | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/bin/pax/tar.c b/bin/pax/tar.c index 5cd0702b7c2..a49a5e885fb 100644 --- a/bin/pax/tar.c +++ b/bin/pax/tar.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tar.c,v 1.66 2017/09/16 07:42:34 otto Exp $ */ +/* $OpenBSD: tar.c,v 1.67 2018/09/13 12:33:43 millert Exp $ */ /* $NetBSD: tar.c,v 1.5 1995/03/21 09:07:49 cgd Exp $ */ /*- @@ -666,21 +666,6 @@ tar_wr(ARCHD *arcn) */ /* - * ustar_strd() - * initialization for ustar read - * Return: - * 0 if ok, -1 otherwise - */ - -int -ustar_strd(void) -{ - if ((usrtb_start() < 0) || (grptb_start() < 0)) - return(-1); - return(0); -} - -/* * ustar_id() * determine if a block given to us is a valid ustar header. We have to * be on the lookout for those pesky blocks of all zero's @@ -813,10 +798,10 @@ reset: * the posix spec wants). */ hd->gname[sizeof(hd->gname) - 1] = '\0'; - if (Nflag || gid_name(hd->gname, &(arcn->sb.st_gid)) < 0) + if (Nflag || gid_from_group(hd->gname, &(arcn->sb.st_gid)) < 0) arcn->sb.st_gid = (gid_t)asc_ul(hd->gid, sizeof(hd->gid), OCT); hd->uname[sizeof(hd->uname) - 1] = '\0'; - if (Nflag || uid_name(hd->uname, &(arcn->sb.st_uid)) < 0) + if (Nflag || uid_from_user(hd->uname, &(arcn->sb.st_uid)) < 0) arcn->sb.st_uid = (uid_t)asc_ul(hd->uid, sizeof(hd->uid), OCT); /* @@ -921,8 +906,8 @@ int ustar_wr(ARCHD *arcn) { HD_USTAR *hd; - char *pt, *name; - char hdblk[sizeof(HD_USTAR)]; + const char *name; + char *pt, hdblk[sizeof(HD_USTAR)]; /* * check for those file system types ustar cannot store @@ -1051,7 +1036,7 @@ ustar_wr(ARCHD *arcn) */ if (ul_oct(arcn->sb.st_uid, hd->uid, sizeof(hd->uid), 3)) { if (uid_nobody == 0) { - if (uid_name("nobody", &uid_nobody) == -1) + if (uid_from_user("nobody", &uid_nobody) == -1) goto out; } if (uid_warn != arcn->sb.st_uid) { @@ -1065,7 +1050,7 @@ ustar_wr(ARCHD *arcn) } if (ul_oct(arcn->sb.st_gid, hd->gid, sizeof(hd->gid), 3)) { if (gid_nobody == 0) { - if (gid_name("nobody", &gid_nobody) == -1) + if (gid_from_group("nobody", &gid_nobody) == -1) goto out; } if (gid_warn != arcn->sb.st_gid) { |