X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=restore%2Ftape.c;h=5ee9973f5fdf4bb996652060f28f3dd089af6854;hp=3dc8bbaf7feb89560c699b8bb7d95b9f4439fa45;hb=ec5c1bc937c43be6649a203619bae2d3d9b0d3c2;hpb=e6e3df1becf6e9bc6a28049f098791fa4f74ec43 diff --git a/restore/tape.c b/restore/tape.c index 3dc8bba..5ee9973 100644 --- a/restore/tape.c +++ b/restore/tape.c @@ -42,7 +42,7 @@ #ifndef lint static const char rcsid[] = - "$Id: tape.c,v 1.96 2010/03/22 15:40:55 stelian Exp $"; + "$Id: tape.c,v 1.97 2010/06/11 09:51:59 stelian Exp $"; #endif /* not lint */ #include @@ -843,9 +843,43 @@ extractfile(struct entry *ep, int doremove) return (FAIL); case IFSOCK: - Vprintf(stdout, "skipped socket %s\n", name); + { + uid_t luid = curfile.dip->di_uid; + gid_t lgid = curfile.dip->di_gid; + + Vprintf(stdout, "extract socket as dummy file %s\n", name); skipfile(); + if (Nflag) + return (GOOD); + if (! (spcl.c_flags & DR_METAONLY)) { + int fd; + if (uflag) + (void)unlink(name); + if ((fd = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0666)) < 0) { + warn("%s: cannot create dummy file", name); + return (FAIL); + } + close(fd); + } + (void) chown(name, luid, lgid); + (void) chmod(name, mode); + extractattr(name); + utimes(name, timep); + if (flags) +#ifdef __linux__ + (void) lsetflags(name, flags); +#else +#ifdef sunos + { + warn("%s: cannot call chflags", name); + /* (void) chflags(name, flags); */ + } +#else + (void) chflags(name, flags); +#endif +#endif return (GOOD); + } case IFDIR: {