apply new hurd patch to my tree
[debian/pax] / file_subs.c
1 /*      $OpenBSD: file_subs.c,v 1.30 2005/11/09 19:59:06 otto Exp $     */
2 /*      $NetBSD: file_subs.c,v 1.4 1995/03/21 09:07:18 cgd Exp $        */
3
4 /*-
5  * Copyright (c) 1992 Keith Muller.
6  * Copyright (c) 1992, 1993
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * This code is derived from software contributed to Berkeley by
10  * Keith Muller of the University of California, San Diego.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36
37 #ifndef lint
38 #if 0
39 static const char sccsid[] = "@(#)file_subs.c   8.1 (Berkeley) 5/31/93";
40 #else
41 static const char rcsid[] = "$OpenBSD: file_subs.c,v 1.30 2005/11/09 19:59:06 otto Exp $";
42 #endif
43 #endif /* not lint */
44
45 #include <sys/param.h>
46 #include <sys/time.h>
47 #include <sys/stat.h>
48 #include <sys/uio.h>
49 #include <err.h>
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <unistd.h>
56 #include "pax.h"
57 #include "options.h"
58 #include "extern.h"
59
60 static int
61 mk_link(char *, struct stat *, char *, int);
62
63 /*
64  * routines that deal with file operations such as: creating, removing;
65  * and setting access modes, uid/gid and times of files
66  */
67
68 #define FILEBITS                (S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
69 #define SETBITS                 (S_ISUID | S_ISGID)
70 #define ABITS                   (FILEBITS | SETBITS)
71
72 /*
73  * file_creat()
74  *      Create and open a file.
75  * Return:
76  *      file descriptor or -1 for failure
77  */
78
79 int
80 file_creat(ARCHD *arcn)
81 {
82         int fd = -1;
83         mode_t file_mode;
84         int oerrno;
85
86         /*
87          * Assume file doesn't exist, so just try to create it, most times this
88          * works. We have to take special handling when the file does exist. To
89          * detect this, we use O_EXCL. For example when trying to create a
90          * file and a character device or fifo exists with the same name, we
91          * can accidently open the device by mistake (or block waiting to open).
92          * If we find that the open has failed, then spend the effort to
93          * figure out why. This strategy was found to have better average
94          * performance in common use than checking the file (and the path)
95          * first with lstat.
96          */
97         file_mode = arcn->sb.st_mode & FILEBITS;
98         if ((fd = open(arcn->name, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL,
99             file_mode)) >= 0)
100                 return(fd);
101
102         /*
103          * the file seems to exist. First we try to get rid of it (found to be
104          * the second most common failure when traced). If this fails, only
105          * then we go to the expense to check and create the path to the file
106          */
107         if (unlnk_exist(arcn->name, arcn->type) != 0)
108                 return(-1);
109
110         for (;;) {
111                 /*
112                  * try to open it again, if this fails, check all the nodes in
113                  * the path and give it a final try. if chk_path() finds that
114                  * it cannot fix anything, we will skip the last attempt
115                  */
116                 if ((fd = open(arcn->name, O_WRONLY | O_CREAT | O_TRUNC,
117                     file_mode)) >= 0)
118                         break;
119                 oerrno = errno;
120                 if (nodirs || chk_path(arcn->name,arcn->sb.st_uid,arcn->sb.st_gid) < 0) {
121                         syswarn(1, oerrno, "Unable to create %s", arcn->name);
122                         return(-1);
123                 }
124         }
125         return(fd);
126 }
127
128 /*
129  * file_close()
130  *      Close file descriptor to a file just created by pax. Sets modes,
131  *      ownership and times as required.
132  * Return:
133  *      0 for success, -1 for failure
134  */
135
136 void
137 file_close(ARCHD *arcn, int fd)
138 {
139         int res = 0;
140
141         if (fd < 0)
142                 return;
143
144         /*
145          * set owner/groups first as this may strip off mode bits we want
146          * then set file permission modes. Then set file access and
147          * modification times.
148          */
149         if (pids)
150                 res = fset_ids(arcn->name, fd, arcn->sb.st_uid,
151                     arcn->sb.st_gid);
152
153         /*
154          * IMPORTANT SECURITY NOTE:
155          * if not preserving mode or we cannot set uid/gid, then PROHIBIT
156          * set uid/gid bits
157          */
158         if (!pmode || res)
159                 arcn->sb.st_mode &= ~(SETBITS);
160         if (pmode)
161                 fset_pmode(arcn->name, fd, arcn->sb.st_mode);
162         if (patime || pmtime)
163                 fset_ftime(arcn->name, fd, arcn->sb.st_mtime,
164                     arcn->sb.st_atime, 0);
165         if (close(fd) < 0)
166                 syswarn(0, errno, "Unable to close file descriptor on %s",
167                     arcn->name);
168 }
169
170 /*
171  * lnk_creat()
172  *      Create a hard link to arcn->ln_name from arcn->name. arcn->ln_name
173  *      must exist;
174  * Return:
175  *      0 if ok, -1 otherwise
176  */
177
178 int
179 lnk_creat(ARCHD *arcn)
180 {
181         struct stat sb;
182
183         /*
184          * we may be running as root, so we have to be sure that link target
185          * is not a directory, so we lstat and check
186          */
187         if (lstat(arcn->ln_name, &sb) < 0) {
188                 syswarn(1,errno,"Unable to link to %s from %s", arcn->ln_name,
189                     arcn->name);
190                 return(-1);
191         }
192
193         if (S_ISDIR(sb.st_mode)) {
194                 paxwarn(1, "A hard link to the directory %s is not allowed",
195                     arcn->ln_name);
196                 return(-1);
197         }
198
199         return(mk_link(arcn->ln_name, &sb, arcn->name, 0));
200 }
201
202 /*
203  * cross_lnk()
204  *      Create a hard link to arcn->org_name from arcn->name. Only used in copy
205  *      with the -l flag. No warning or error if this does not succeed (we will
206  *      then just create the file)
207  * Return:
208  *      1 if copy() should try to create this file node
209  *      0 if cross_lnk() ok, -1 for fatal flaw (like linking to self).
210  */
211
212 int
213 cross_lnk(ARCHD *arcn)
214 {
215         /*
216          * try to make a link to original file (-l flag in copy mode). make
217          * sure we do not try to link to directories in case we are running as
218          * root (and it might succeed).
219          */
220         if (arcn->type == PAX_DIR)
221                 return(1);
222         return(mk_link(arcn->org_name, &(arcn->sb), arcn->name, 1));
223 }
224
225 /*
226  * chk_same()
227  *      In copy mode if we are not trying to make hard links between the src
228  *      and destinations, make sure we are not going to overwrite ourselves by
229  *      accident. This slows things down a little, but we have to protect all
230  *      those people who make typing errors.
231  * Return:
232  *      1 the target does not exist, go ahead and copy
233  *      0 skip it file exists (-k) or may be the same as source file
234  */
235
236 int
237 chk_same(ARCHD *arcn)
238 {
239         struct stat sb;
240
241         /*
242          * if file does not exist, return. if file exists and -k, skip it
243          * quietly
244          */
245         if (lstat(arcn->name, &sb) < 0)
246                 return(1);
247         if (kflag)
248                 return(0);
249
250         /*
251          * better make sure the user does not have src == dest by mistake
252          */
253         if ((arcn->sb.st_dev == sb.st_dev) && (arcn->sb.st_ino == sb.st_ino)) {
254                 paxwarn(1, "Unable to copy %s, file would overwrite itself",
255                     arcn->name);
256                 return(0);
257         }
258         return(1);
259 }
260
261 /*
262  * mk_link()
263  *      try to make a hard link between two files. if ign set, we do not
264  *      complain.
265  * Return:
266  *      0 if successful (or we are done with this file but no error, such as
267  *      finding the from file exists and the user has set -k).
268  *      1 when ign was set to indicates we could not make the link but we
269  *      should try to copy/extract the file as that might work (and is an
270  *      allowed option). -1 an error occurred.
271  */
272
273 static int
274 mk_link(char *to, struct stat *to_sb, char *from, int ign)
275 {
276         struct stat sb;
277         int oerrno;
278
279         /*
280          * if from file exists, it has to be unlinked to make the link. If the
281          * file exists and -k is set, skip it quietly
282          */
283         if (lstat(from, &sb) == 0) {
284                 if (kflag)
285                         return(0);
286
287                 /*
288                  * make sure it is not the same file, protect the user
289                  */
290                 if ((to_sb->st_dev==sb.st_dev)&&(to_sb->st_ino == sb.st_ino)) {
291                         paxwarn(1, "Unable to link file %s to itself", to);
292                         return(-1);
293                 }
294
295                 /*
296                  * try to get rid of the file, based on the type
297                  */
298                 if (S_ISDIR(sb.st_mode)) {
299                         if (rmdir(from) < 0) {
300                                 syswarn(1, errno, "Unable to remove %s", from);
301                                 return(-1);
302                         }
303                 } else if (unlink(from) < 0) {
304                         if (!ign) {
305                                 syswarn(1, errno, "Unable to remove %s", from);
306                                 return(-1);
307                         }
308                         return(1);
309                 }
310         }
311
312         /*
313          * from file is gone (or did not exist), try to make the hard link.
314          * if it fails, check the path and try it again (if chk_path() says to
315          * try again)
316          */
317         for (;;) {
318                 if (link(to, from) == 0)
319                         break;
320                 oerrno = errno;
321                 if (!nodirs && chk_path(from, to_sb->st_uid, to_sb->st_gid) == 0)
322                         continue;
323                 if (!ign) {
324                         syswarn(1, oerrno, "Could not link to %s from %s", to,
325                             from);
326                         return(-1);
327                 }
328                 return(1);
329         }
330
331         /*
332          * all right the link was made
333          */
334         return(0);
335 }
336
337 /*
338  * node_creat()
339  *      create an entry in the file system (other than a file or hard link).
340  *      If successful, sets uid/gid modes and times as required.
341  * Return:
342  *      0 if ok, -1 otherwise
343  */
344
345 int
346 node_creat(ARCHD *arcn)
347 {
348         int res;
349         int ign = 0;
350         int oerrno;
351         int pass = 0;
352         mode_t file_mode;
353         struct stat sb;
354         char *target = NULL;
355         char *nm = arcn->name;
356         int len;
357
358         /*
359          * create node based on type, if that fails try to unlink the node and
360          * try again. finally check the path and try again. As noted in the
361          * file and link creation routines, this method seems to exhibit the
362          * best performance in general use workloads.
363          */
364         file_mode = arcn->sb.st_mode & FILEBITS;
365
366         for (;;) {
367                 switch (arcn->type) {
368                 case PAX_DIR:
369                         /*
370                          * If -h (or -L) was given in tar-mode, follow the
371                          * potential symlink chain before trying to create the
372                          * directory.
373                          */
374                         if (strcmp(NM_TAR, argv0) == 0 && Lflag) {
375                                 while (lstat(nm, &sb) == 0 &&
376                                     S_ISLNK(sb.st_mode)) {
377                                         target = malloc(sb.st_size + 1);
378                                         if (target == NULL) {
379                                                 oerrno = ENOMEM;
380                                                 syswarn(1, oerrno,
381                                                     "Insufficient memory");
382                                                 return(-1);
383                                         }
384                                         len = readlink(nm, target,
385                                             sb.st_size + 1);
386                                         if (len == -1) {
387                                                 syswarn(0, errno,
388                                                    "cannot follow symlink %s in chain for %s",
389                                                     nm, arcn->name);
390                                                 res = -1;
391                                                 goto badlink;
392                                         }
393                                         if (len > sb.st_size) {
394                                                 syswarn(0, errno,
395                                                    "symlink %s increased in size between lstat() and readlink() for %s",
396                                                     nm, arcn->name);
397
398                                                 res = -1;
399                                                 goto badlink;
400                                         }
401                                         target[len] = '\0';
402                                         nm = target;
403                                 }
404                         }
405                         res = mkdir(nm, file_mode);
406
407 badlink:
408                         if (ign)
409                                 res = 0;
410                         break;
411                 case PAX_CHR:
412                         file_mode |= S_IFCHR;
413                         res = mknod(nm, file_mode, arcn->sb.st_rdev);
414                         break;
415                 case PAX_BLK:
416                         file_mode |= S_IFBLK;
417                         res = mknod(nm, file_mode, arcn->sb.st_rdev);
418                         break;
419                 case PAX_FIF:
420                         res = mkfifo(nm, file_mode);
421                         break;
422                 case PAX_SCK:
423                         /*
424                          * Skip sockets, operation has no meaning under BSD
425                          */
426                         paxwarn(0,
427                             "%s skipped. Sockets cannot be copied or extracted",
428                             nm);
429                         free(target);
430                         return(-1);
431                 case PAX_SLK:
432                         res = symlink(arcn->ln_name, nm);
433                         break;
434                 case PAX_CTG:
435                 case PAX_HLK:
436                 case PAX_HRG:
437                 case PAX_REG:
438                 default:
439                         /*
440                          * we should never get here
441                          */
442                         paxwarn(0, "%s has an unknown file type, skipping",
443                                 nm);
444                         free(target);
445                         return(-1);
446                 }
447
448                 /*
449                  * if we were able to create the node break out of the loop,
450                  * otherwise try to unlink the node and try again. if that
451                  * fails check the full path and try a final time.
452                  */
453                 if (res == 0)
454                         break;
455
456                 /*
457                  * we failed to make the node
458                  */
459                 oerrno = errno;
460                 if ((ign = unlnk_exist(nm, arcn->type)) < 0) {
461                         free(target);
462                         return(-1);
463                 }
464
465                 if (++pass <= 1)
466                         continue;
467
468                 if (nodirs || chk_path(nm,arcn->sb.st_uid,arcn->sb.st_gid) < 0) {
469                         syswarn(1, oerrno, "Could not create: %s", nm);
470                         free(target);
471                         return(-1);
472                 }
473         }
474
475         /*
476          * we were able to create the node. set uid/gid, modes and times
477          */
478         if (pids)
479                 res = ((arcn->type == PAX_SLK) ?
480                     set_lids(nm, arcn->sb.st_uid, arcn->sb.st_gid) :
481                     set_ids(nm, arcn->sb.st_uid, arcn->sb.st_gid));
482         else
483                 res = 0;
484
485         /*
486          * symlinks are done now.
487          */
488         if (arcn->type == PAX_SLK) {
489                 free(target);
490                 return(0);
491         }
492
493         /*
494          * IMPORTANT SECURITY NOTE:
495          * if not preserving mode or we cannot set uid/gid, then PROHIBIT any
496          * set uid/gid bits
497          */
498         if (!pmode || res)
499                 arcn->sb.st_mode &= ~(SETBITS);
500         if (pmode)
501                 set_pmode(nm, arcn->sb.st_mode);
502
503         if (arcn->type == PAX_DIR && strcmp(NM_CPIO, argv0) != 0) {
504                 /*
505                  * Dirs must be processed again at end of extract to set times
506                  * and modes to agree with those stored in the archive. However
507                  * to allow extract to continue, we may have to also set owner
508                  * rights. This allows nodes in the archive that are children
509                  * of this directory to be extracted without failure. Both time
510                  * and modes will be fixed after the entire archive is read and
511                  * before pax exits.
512                  */
513                 if (access(nm, R_OK | W_OK | X_OK) < 0) {
514                         if (lstat(nm, &sb) < 0) {
515                                 syswarn(0, errno,"Could not access %s (stat)",
516                                     arcn->name);
517                                 set_pmode(nm,file_mode | S_IRWXU);
518                         } else {
519                                 /*
520                                  * We have to add rights to the dir, so we make
521                                  * sure to restore the mode. The mode must be
522                                  * restored AS CREATED and not as stored if
523                                  * pmode is not set.
524                                  */
525                                 set_pmode(nm,
526                                     ((sb.st_mode & FILEBITS) | S_IRWXU));
527                                 if (!pmode)
528                                         arcn->sb.st_mode = sb.st_mode;
529                         }
530
531                         /*
532                          * we have to force the mode to what was set here,
533                          * since we changed it from the default as created.
534                          */
535                         add_dir(nm, &(arcn->sb), 1);
536                 } else if (pmode || patime || pmtime)
537                         add_dir(nm, &(arcn->sb), 0);
538         }
539
540         if (patime || pmtime)
541                 set_ftime(nm, arcn->sb.st_mtime, arcn->sb.st_atime, 0);
542         free(target);
543         return(0);
544 }
545
546 /*
547  * unlnk_exist()
548  *      Remove node from file system with the specified name. We pass the type
549  *      of the node that is going to replace it. When we try to create a
550  *      directory and find that it already exists, we allow processing to
551  *      continue as proper modes etc will always be set for it later on.
552  * Return:
553  *      0 is ok to proceed, no file with the specified name exists
554  *      -1 we were unable to remove the node, or we should not remove it (-k)
555  *      1 we found a directory and we were going to create a directory.
556  */
557
558 int
559 unlnk_exist(char *name, int type)
560 {
561         struct stat sb;
562
563         /*
564          * the file does not exist, or -k we are done
565          */
566         if (lstat(name, &sb) < 0)
567                 return(0);
568         if (kflag)
569                 return(-1);
570
571         if (S_ISDIR(sb.st_mode)) {
572                 /*
573                  * try to remove a directory, if it fails and we were going to
574                  * create a directory anyway, tell the caller (return a 1)
575                  */
576                 if (rmdir(name) < 0) {
577                         if (type == PAX_DIR)
578                                 return(1);
579                         syswarn(1,errno,"Unable to remove directory %s", name);
580                         return(-1);
581                 }
582                 return(0);
583         }
584
585         /*
586          * try to get rid of all non-directory type nodes
587          */
588         if (unlink(name) < 0) {
589                 syswarn(1, errno, "Could not unlink %s", name);
590                 return(-1);
591         }
592         return(0);
593 }
594
595 /*
596  * chk_path()
597  *      We were trying to create some kind of node in the file system and it
598  *      failed. chk_path() makes sure the path up to the node exists and is
599  *      writeable. When we have to create a directory that is missing along the
600  *      path somewhere, the directory we create will be set to the same
601  *      uid/gid as the file has (when uid and gid are being preserved).
602  *      NOTE: this routine is a real performance loss. It is only used as a
603  *      last resort when trying to create entries in the file system.
604  * Return:
605  *      -1 when it could find nothing it is allowed to fix.
606  *      0 otherwise
607  */
608
609 int
610 chk_path(char *name, uid_t st_uid, gid_t st_gid)
611 {
612         char *spt = name;
613         struct stat sb;
614         int retval = -1;
615
616         /*
617          * watch out for paths with nodes stored directly in / (e.g. /bozo)
618          */
619         if (*spt == '/')
620                 ++spt;
621
622         for (;;) {
623                 /*
624                  * work forward from the first / and check each part of the path
625                  */
626                 spt = strchr(spt, '/');
627                 if (spt == NULL)
628                         break;
629                 *spt = '\0';
630
631                 /*
632                  * if it exists we assume it is a directory, it is not within
633                  * the spec (at least it seems to read that way) to alter the
634                  * file system for nodes NOT EXPLICITLY stored on the archive.
635                  * If that assumption is changed, you would test the node here
636                  * and figure out how to get rid of it (probably like some
637                  * recursive unlink()) or fix up the directory permissions if
638                  * required (do an access()).
639                  */
640                 if (lstat(name, &sb) == 0) {
641                         *(spt++) = '/';
642                         continue;
643                 }
644
645                 /*
646                  * the path fails at this point, see if we can create the
647                  * needed directory and continue on
648                  */
649                 if (mkdir(name, S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
650                         *spt = '/';
651                         retval = -1;
652                         break;
653                 }
654
655                 /*
656                  * we were able to create the directory. We will tell the
657                  * caller that we found something to fix, and it is ok to try
658                  * and create the node again.
659                  */
660                 retval = 0;
661                 if (pids)
662                         (void)set_ids(name, st_uid, st_gid);
663
664                 /*
665                  * make sure the user doesn't have some strange umask that
666                  * causes this newly created directory to be unusable. We fix
667                  * the modes and restore them back to the creation default at
668                  * the end of pax
669                  */
670                 if ((access(name, R_OK | W_OK | X_OK) < 0) &&
671                     (lstat(name, &sb) == 0)) {
672                         set_pmode(name, ((sb.st_mode & FILEBITS) | S_IRWXU));
673                         add_dir(name, &sb, 1);
674                 }
675                 *(spt++) = '/';
676                 continue;
677         }
678         return(retval);
679 }
680
681 /*
682  * set_ftime()
683  *      Set the access time and modification time for a named file. If frc
684  *      is non-zero we force these times to be set even if the user did not
685  *      request access and/or modification time preservation (this is also
686  *      used by -t to reset access times).
687  *      When ign is zero, only those times the user has asked for are set, the
688  *      other ones are left alone. We do not assume the un-documented feature
689  *      of many utimes() implementations that consider a 0 time value as a do
690  *      not set request.
691  */
692
693 void
694 set_ftime(char *fnm, time_t mtime, time_t atime, int frc)
695 {
696         static struct timeval tv[2] = {{0L, 0L}, {0L, 0L}};
697         struct stat sb;
698
699         tv[0].tv_sec = (long)atime;
700         tv[1].tv_sec = (long)mtime;
701         if (!frc && (!patime || !pmtime)) {
702                 /*
703                  * if we are not forcing, only set those times the user wants
704                  * set. We get the current values of the times if we need them.
705                  */
706                 if (lstat(fnm, &sb) == 0) {
707                         if (!patime)
708                                 tv[0].tv_sec = (long)sb.st_atime;
709                         if (!pmtime)
710                                 tv[1].tv_sec = (long)sb.st_mtime;
711                 } else
712                         syswarn(0,errno,"Unable to obtain file stats %s", fnm);
713         }
714
715         /*
716          * set the times
717          */
718         if (utimes(fnm, tv) < 0)
719                 syswarn(1, errno, "Access/modification time set failed on: %s",
720                     fnm);
721         return;
722 }
723
724 void
725 fset_ftime(char *fnm, int fd, time_t mtime, time_t atime, int frc)
726 {
727         static struct timeval tv[2] = {{0L, 0L}, {0L, 0L}};
728         struct stat sb;
729
730         tv[0].tv_sec = (long)atime;
731         tv[1].tv_sec = (long)mtime;
732         if (!frc && (!patime || !pmtime)) {
733                 /*
734                  * if we are not forcing, only set those times the user wants
735                  * set. We get the current values of the times if we need them.
736                  */
737                 if (fstat(fd, &sb) == 0) {
738                         if (!patime)
739                                 tv[0].tv_sec = (long)sb.st_atime;
740                         if (!pmtime)
741                                 tv[1].tv_sec = (long)sb.st_mtime;
742                 } else
743                         syswarn(0,errno,"Unable to obtain file stats %s", fnm);
744         }
745         /*
746          * set the times
747          */
748         if (futimes(fd, tv) < 0)
749                 syswarn(1, errno, "Access/modification time set failed on: %s",
750                     fnm);
751         return;
752 }
753
754 /*
755  * set_ids()
756  *      set the uid and gid of a file system node
757  * Return:
758  *      0 when set, -1 on failure
759  */
760
761 int
762 set_ids(char *fnm, uid_t uid, gid_t gid)
763 {
764         if (chown(fnm, uid, gid) < 0) {
765                 /*
766                  * ignore EPERM unless in verbose mode or being run by root.
767                  * if running as pax, POSIX requires a warning.
768                  */
769                 if (strcmp(NM_PAX, argv0) == 0 || errno != EPERM || vflag ||
770                     geteuid() == 0)
771                         syswarn(1, errno, "Unable to set file uid/gid of %s",
772                             fnm);
773                 return(-1);
774         }
775         return(0);
776 }
777
778 int
779 fset_ids(char *fnm, int fd, uid_t uid, gid_t gid)
780 {
781         if (fchown(fd, uid, gid) < 0) {
782                 /*
783                  * ignore EPERM unless in verbose mode or being run by root.
784                  * if running as pax, POSIX requires a warning.
785                  */
786                 if (strcmp(NM_PAX, argv0) == 0 || errno != EPERM || vflag ||
787                     geteuid() == 0)
788                         syswarn(1, errno, "Unable to set file uid/gid of %s",
789                             fnm);
790                 return(-1);
791         }
792         return(0);
793 }
794
795 /*
796  * set_lids()
797  *      set the uid and gid of a file system node
798  * Return:
799  *      0 when set, -1 on failure
800  */
801
802 int
803 set_lids(char *fnm, uid_t uid, gid_t gid)
804 {
805         if (lchown(fnm, uid, gid) < 0) {
806                 /*
807                  * ignore EPERM unless in verbose mode or being run by root.
808                  * if running as pax, POSIX requires a warning.
809                  */
810                 if (strcmp(NM_PAX, argv0) == 0 || errno != EPERM || vflag ||
811                     geteuid() == 0)
812                         syswarn(1, errno, "Unable to set file uid/gid of %s",
813                             fnm);
814                 return(-1);
815         }
816         return(0);
817 }
818
819 /*
820  * set_pmode()
821  *      Set file access mode
822  */
823
824 void
825 set_pmode(char *fnm, mode_t mode)
826 {
827         mode &= ABITS;
828         if (chmod(fnm, mode) < 0)
829                 syswarn(1, errno, "Could not set permissions on %s", fnm);
830         return;
831 }
832
833 void
834 fset_pmode(char *fnm, int fd, mode_t mode)
835 {
836         mode &= ABITS;
837         if (fchmod(fd, mode) < 0)
838                 syswarn(1, errno, "Could not set permissions on %s", fnm);
839         return;
840 }
841
842 /*
843  * file_write()
844  *      Write/copy a file (during copy or archive extract). This routine knows
845  *      how to copy files with lseek holes in it. (Which are read as file
846  *      blocks containing all 0's but do not have any file blocks associated
847  *      with the data). Typical examples of these are files created by dbm
848  *      variants (.pag files). While the file size of these files are huge, the
849  *      actual storage is quite small (the files are sparse). The problem is
850  *      the holes read as all zeros so are probably stored on the archive that
851  *      way (there is no way to determine if the file block is really a hole,
852  *      we only know that a file block of all zero's can be a hole).
853  *      At this writing, no major archive format knows how to archive files
854  *      with holes. However, on extraction (or during copy, -rw) we have to
855  *      deal with these files. Without detecting the holes, the files can
856  *      consume a lot of file space if just written to disk. This replacement
857  *      for write when passed the basic allocation size of a file system block,
858  *      uses lseek whenever it detects the input data is all 0 within that
859  *      file block. In more detail, the strategy is as follows:
860  *      While the input is all zero keep doing an lseek. Keep track of when we
861  *      pass over file block boundaries. Only write when we hit a non zero
862  *      input. once we have written a file block, we continue to write it to
863  *      the end (we stop looking at the input). When we reach the start of the
864  *      next file block, start checking for zero blocks again. Working on file
865  *      block boundaries significantly reduces the overhead when copying files
866  *      that are NOT very sparse. This overhead (when compared to a write) is
867  *      almost below the measurement resolution on many systems. Without it,
868  *      files with holes cannot be safely copied. It does has a side effect as
869  *      it can put holes into files that did not have them before, but that is
870  *      not a problem since the file contents are unchanged (in fact it saves
871  *      file space). (Except on paging files for diskless clients. But since we
872  *      cannot determine one of those file from here, we ignore them). If this
873  *      ever ends up on a system where CTG files are supported and the holes
874  *      are not desired, just do a conditional test in those routines that
875  *      call file_write() and have it call write() instead. BEFORE CLOSING THE
876  *      FILE, make sure to call file_flush() when the last write finishes with
877  *      an empty block. A lot of file systems will not create an lseek hole at
878  *      the end. In this case we drop a single 0 at the end to force the
879  *      trailing 0's in the file.
880  *      ---Parameters---
881  *      rem: how many bytes left in this file system block
882  *      isempt: have we written to the file block yet (is it empty)
883  *      sz: basic file block allocation size
884  *      cnt: number of bytes on this write
885  *      str: buffer to write
886  * Return:
887  *      number of bytes written, -1 on write (or lseek) error.
888  */
889
890 int
891 file_write(int fd, char *str, int cnt, int *rem, int *isempt, int sz,
892         char *name)
893 {
894         char *pt;
895         char *end;
896         int wcnt;
897         char *st = str;
898         char **strp;
899
900         /*
901          * while we have data to process
902          */
903         while (cnt) {
904                 if (!*rem) {
905                         /*
906                          * We are now at the start of file system block again
907                          * (or what we think one is...). start looking for
908                          * empty blocks again
909                          */
910                         *isempt = 1;
911                         *rem = sz;
912                 }
913
914                 /*
915                  * only examine up to the end of the current file block or
916                  * remaining characters to write, whatever is smaller
917                  */
918                 wcnt = MIN(cnt, *rem);
919                 cnt -= wcnt;
920                 *rem -= wcnt;
921                 if (*isempt) {
922                         /*
923                          * have not written to this block yet, so we keep
924                          * looking for zero's
925                          */
926                         pt = st;
927                         end = st + wcnt;
928
929                         /*
930                          * look for a zero filled buffer
931                          */
932                         while ((pt < end) && (*pt == '\0'))
933                                 ++pt;
934
935                         if (pt == end) {
936                                 /*
937                                  * skip, buf is empty so far
938                                  */
939                                 if (fd > -1 &&
940                                     lseek(fd, (off_t)wcnt, SEEK_CUR) < 0) {
941                                         syswarn(1,errno,"File seek on %s",
942                                             name);
943                                         return(-1);
944                                 }
945                                 st = pt;
946                                 continue;
947                         }
948                         /*
949                          * drat, the buf is not zero filled
950                          */
951                         *isempt = 0;
952                 }
953
954                 /*
955                  * have non-zero data in this file system block, have to write
956                  */
957                 switch (fd) {
958                 case -1:
959                         strp = &gnu_name_string;
960                         break;
961                 case -2:
962                         strp = &gnu_link_string;
963                         break;
964                 default:
965                         strp = NULL;
966                         break;
967                 }
968                 if (strp) {
969                         if (*strp)
970                                 err(1, "WARNING! Major Internal Error! GNU hack Failing!");
971                         *strp = malloc(wcnt + 1);
972                         if (*strp == NULL) {
973                                 paxwarn(1, "Out of memory");
974                                 return(-1);
975                         }
976                         memcpy(*strp, st, wcnt);
977                         (*strp)[wcnt] = '\0';
978                         break;
979                 } else if (write(fd, st, wcnt) != wcnt) {
980                         syswarn(1, errno, "Failed write to file %s", name);
981                         return(-1);
982                 }
983                 st += wcnt;
984         }
985         return(st - str);
986 }
987
988 /*
989  * file_flush()
990  *      when the last file block in a file is zero, many file systems will not
991  *      let us create a hole at the end. To get the last block with zeros, we
992  *      write the last BYTE with a zero (back up one byte and write a zero).
993  */
994
995 void
996 file_flush(int fd, char *fname, int isempt)
997 {
998         static char blnk[] = "\0";
999
1000         /*
1001          * silly test, but make sure we are only called when the last block is
1002          * filled with all zeros.
1003          */
1004         if (!isempt)
1005                 return;
1006
1007         /*
1008          * move back one byte and write a zero
1009          */
1010         if (lseek(fd, (off_t)-1, SEEK_CUR) < 0) {
1011                 syswarn(1, errno, "Failed seek on file %s", fname);
1012                 return;
1013         }
1014
1015         if (write(fd, blnk, 1) < 0)
1016                 syswarn(1, errno, "Failed write to file %s", fname);
1017         return;
1018 }
1019
1020 /*
1021  * rdfile_close()
1022  *      close a file we have beed reading (to copy or archive). If we have to
1023  *      reset access time (tflag) do so (the times are stored in arcn).
1024  */
1025
1026 void
1027 rdfile_close(ARCHD *arcn, int *fd)
1028 {
1029         /*
1030          * make sure the file is open
1031          */
1032         if (*fd < 0)
1033                 return;
1034
1035         (void)close(*fd);
1036         *fd = -1;
1037         if (!tflag)
1038                 return;
1039
1040         /*
1041          * user wants last access time reset
1042          */
1043         set_ftime(arcn->org_name, arcn->sb.st_mtime, arcn->sb.st_atime, 1);
1044         return;
1045 }
1046
1047 /*
1048  * set_crc()
1049  *      read a file to calculate its crc. This is a real drag. Archive formats
1050  *      that have this, end up reading the file twice (we have to write the
1051  *      header WITH the crc before writing the file contents. Oh well...
1052  * Return:
1053  *      0 if was able to calculate the crc, -1 otherwise
1054  */
1055
1056 int
1057 set_crc(ARCHD *arcn, int fd)
1058 {
1059         int i;
1060         int res;
1061         off_t cpcnt = 0L;
1062         u_long size;
1063         u_int32_t crc = 0;
1064         char tbuf[FILEBLK];
1065         struct stat sb;
1066
1067         if (fd < 0) {
1068                 /*
1069                  * hmm, no fd, should never happen. well no crc then.
1070                  */
1071                 arcn->crc = 0L;
1072                 return(0);
1073         }
1074
1075         if ((size = (u_long)arcn->sb.st_blksize) > (u_long)sizeof(tbuf))
1076                 size = (u_long)sizeof(tbuf);
1077
1078         /*
1079          * read all the bytes we think that there are in the file. If the user
1080          * is trying to archive an active file, forget this file.
1081          */
1082         for (;;) {
1083                 if ((res = read(fd, tbuf, size)) <= 0)
1084                         break;
1085                 cpcnt += res;
1086                 for (i = 0; i < res; ++i)
1087                         crc += (tbuf[i] & 0xff);
1088         }
1089
1090         /*
1091          * safety check. we want to avoid archiving files that are active as
1092          * they can create inconsistent archive copies.
1093          */
1094         if (cpcnt != arcn->sb.st_size)
1095                 paxwarn(1, "File changed size %s", arcn->org_name);
1096         else if (fstat(fd, &sb) < 0)
1097                 syswarn(1, errno, "Failed stat on %s", arcn->org_name);
1098         else if (arcn->sb.st_mtime != sb.st_mtime)
1099                 paxwarn(1, "File %s was modified during read", arcn->org_name);
1100         else if (lseek(fd, (off_t)0L, SEEK_SET) < 0)
1101                 syswarn(1, errno, "File rewind failed on: %s", arcn->org_name);
1102         else {
1103                 arcn->crc = crc;
1104                 return(0);
1105         }
1106         return(-1);
1107 }