1 /* $OpenBSD: ar_subs.c,v 1.32 2008/05/06 06:54:28 henning Exp $ */
2 /* $NetBSD: ar_subs.c,v 1.5 1995/03/21 09:07:06 cgd Exp $ */
5 * Copyright (c) 1992 Keith Muller.
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
9 * This code is derived from software contributed to Berkeley by
10 * Keith Muller of the University of California, San Diego.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
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.
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
37 #include <sys/cdefs.h>
40 static const char sccsid
[] = "@(#)ar_subs.c 8.2 (Berkeley) 4/18/94";
42 __used
static const char rcsid
[] = "$OpenBSD: ar_subs.c,v 1.32 2008/05/06 06:54:28 henning Exp $";
46 #include <sys/types.h>
49 #include <sys/param.h>
58 #include <sys/param.h>
61 #include <sys/queue.h>
67 static int path_check(ARCHD
*, int);
68 static void wr_archive(ARCHD
*, int is_app
);
69 static int get_arc(void);
70 static int next_head(ARCHD
*);
71 extern sigset_t s_mask
;
74 * Routines which control the overall operation modes of pax as specified by
75 * the user: list, append, read ...
78 static char hdbuf
[BLKMULT
]; /* space for archive header on read */
79 u_long flcnt
; /* number of files processed */
81 static char cwdpath
[MAXPATHLEN
]; /* current working directory path */
82 static size_t cwdpathlen
; /* current working directory path len */
87 if (getcwd(cwdpath
, sizeof(cwdpath
)) == NULL
) {
88 syswarn(1, errno
, "Cannot get working directory");
91 cwdpathlen
= strlen(cwdpath
);
98 if (fchdir(fcwd
) == -1) {
99 syswarn(1, errno
, "Cannot chdir to `.'");
106 dochdir(const char *name
)
108 if (chdir(name
) == -1)
109 syswarn(1, errno
, "Cannot chdir to `%s'", name
);
114 path_check(ARCHD
*arcn
, int level
)
116 char buf
[MAXPATHLEN
];
119 if ((p
= strrchr(arcn
->name
, '/')) == NULL
)
123 if (realpath(arcn
->name
, buf
) == NULL
) {
125 error
= path_check(arcn
, level
+ 1);
130 syswarn(1, 0, "Cannot resolve `%s'", arcn
->name
);
133 if (cwdpathlen
== 1) { /* We're in the root */
137 if ((strncmp(buf
, cwdpath
, cwdpathlen
) != 0) || (buf
[cwdpathlen
] != '\0' && buf
[cwdpathlen
] != '/')) {
139 syswarn(1, 0, "Attempt to write file `%s' that resolves into "
140 "`%s/%s' outside current working directory `%s' ignored",
141 arcn
->name
, buf
, p
+ 1, cwdpath
);
150 * list the contents of an archive which match user supplied pattern(s)
151 * (no pattern matches all).
164 * figure out archive type; pass any format specific options to the
165 * archive option processing routine; call the format init routine. We
166 * also save current time for ls_list() so we do not make a system
167 * call for each file we need to print. If verbose (vflag) start up
168 * the name and group caches.
170 if ((get_arc() < 0) || ((*frmt
->options
)() < 0) ||
171 ((*frmt
->st_rd
)() < 0))
174 if (vflag
&& ((uidtb_start() < 0) || (gidtb_start() < 0)))
180 * step through the archive until the format says it is done
182 while (next_head(arcn
) == 0) {
183 if (arcn
->type
== PAX_GLL
|| arcn
->type
== PAX_GLF
) {
185 * we need to read, to get the real filename
188 if (!(*frmt
->rd_data
)(arcn
, arcn
->type
== PAX_GLF
190 (void)rd_skip(cnt
+ arcn
->pad
);
195 * check for pattern, and user specified options match.
196 * When all patterns are matched we are done.
198 if ((res
= pat_match(arcn
)) < 0)
201 if ((res
== 0) && (sel_chk(arcn
) == 0)) {
203 * pattern resulted in a selected file
205 if (pat_sel(arcn
) < 0)
209 * modify the name as requested by the user if name
210 * survives modification, do a listing of the file
212 if ((res
= mod_name(arcn
)) < 0)
215 ls_list(arcn
, now
, stdout
);
219 * skip to next archive format header using values calculated
220 * by the format header read routine
222 if (rd_skip(arcn
->skip
+ arcn
->pad
) == 1)
227 * all done, let format have a chance to cleanup, and make sure that
228 * the patterns supplied by the user were all matched
230 (void)(*frmt
->end_rd
)();
231 (void)sigprocmask(SIG_BLOCK
, &s_mask
, NULL
);
238 * extract the member(s) of an archive as specified by user supplied
239 * pattern(s) (no patterns extracts all members)
254 int copyfile_disable
= (getenv(COPYFILE_DISABLE_VAR
) != NULL
);
255 LIST_HEAD(copyfile_list_t
, copyfile_list_entry_t
) copyfile_list
;
256 struct copyfile_list_entry_t
{
259 LIST_ENTRY(copyfile_list_entry_t
) link
;
262 LIST_INIT(©file_list
);
267 * figure out archive type; pass any format specific options to the
268 * archive option processing routine; call the format init routine;
269 * start up the directory modification time and access mode database
271 if ((get_arc() < 0) || ((*frmt
->options
)() < 0) ||
272 ((*frmt
->st_rd
)() < 0) || (dir_start() < 0))
276 * When we are doing interactive rename, we store the mapping of names
277 * so we can fix up hard links files later in the archive.
279 if (iflag
&& (name_start() < 0))
285 * step through each entry on the archive until the format read routine
288 while (next_head(arcn
) == 0) {
289 if (arcn
->type
== PAX_GLL
|| arcn
->type
== PAX_GLF
) {
291 * we need to read, to get the real filename
293 if (!(*frmt
->rd_data
)(arcn
, arcn
->type
== PAX_GLF
295 (void)rd_skip(cnt
+ arcn
->pad
);
300 * check for pattern, and user specified options match. When
301 * all the patterns are matched we are done
303 if ((res
= pat_match(arcn
)) < 0)
306 if ((res
> 0) || (sel_chk(arcn
) != 0)) {
308 * file is not selected. skip past any file data and
309 * padding and go back for the next archive member
311 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
316 * with -u or -D only extract when the archive member is newer
317 * than the file with the same name in the file system (no
318 * test of being the same type is required).
319 * NOTE: this test is done BEFORE name modifications as
320 * specified by pax. this operation can be confusing to the
321 * user who might expect the test to be done on an existing
322 * file AFTER the name mod. In honesty the pax spec is probably
323 * flawed in this respect.
325 if ((uflag
|| Dflag
) && ((lstat(arcn
->name
, &sb
) == 0))) {
326 if (uflag
&& Dflag
) {
327 if ((arcn
->sb
.st_mtime
<= sb
.st_mtime
) &&
328 (arcn
->sb
.st_ctime
<= sb
.st_ctime
)) {
329 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
333 if (arcn
->sb
.st_ctime
<= sb
.st_ctime
) {
334 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
337 } else if (arcn
->sb
.st_mtime
<= sb
.st_mtime
) {
338 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
344 * this archive member is now been selected. modify the name.
346 if ((pat_sel(arcn
) < 0) || ((res
= mod_name(arcn
)) < 0))
350 * a bad name mod, skip and purge name from link table
353 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
358 * Non standard -Y and -Z flag. When the existing file is
359 * same age or newer skip
361 if ((Yflag
|| Zflag
) && ((lstat(arcn
->name
, &sb
) == 0))) {
362 if (Yflag
&& Zflag
) {
363 if ((arcn
->sb
.st_mtime
<= sb
.st_mtime
) &&
364 (arcn
->sb
.st_ctime
<= sb
.st_ctime
)) {
365 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
369 if (arcn
->sb
.st_ctime
<= sb
.st_ctime
) {
370 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
373 } else if (arcn
->sb
.st_mtime
<= sb
.st_mtime
) {
374 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
381 ls_list(arcn
, now
, listf
);
383 (void)safe_print(arcn
->name
, listf
);
389 * if required, chdir around.
391 if ((arcn
->pat
!= NULL
) && (arcn
->pat
->chdname
!= NULL
))
392 dochdir(arcn
->pat
->chdname
);
394 if (secure
&& path_check(arcn
, 0) != 0) {
395 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
400 * all ok, extract this member based on type
402 if ((arcn
->type
!= PAX_REG
) && (arcn
->type
!= PAX_CTG
)) {
404 * process archive members that are not regular files.
405 * throw out padding and any data that might follow the
406 * header (as determined by the format).
408 if ((arcn
->type
== PAX_HLK
) || (arcn
->type
== PAX_HRG
))
409 res
= lnk_creat(arcn
);
411 res
= node_creat(arcn
);
413 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
417 if (vflag
&& vfpart
) {
418 (void)putc('\n', listf
);
424 * we have a file with data here. If we can not create it, skip
425 * over the data and purge the name from hard link table
427 if ((fd
= file_creat(arcn
)) < 0) {
428 (void)rd_skip(arcn
->skip
+ arcn
->pad
);
433 * extract the file from the archive and skip over padding and
434 * any unprocessed data
436 res
= (*frmt
->rd_data
)(arcn
, fd
, &cnt
);
437 file_close(arcn
, fd
);
438 if (vflag
&& vfpart
) {
439 (void)putc('\n', listf
);
443 (void)rd_skip(cnt
+ arcn
->pad
);
446 if (!strncmp(basename(arcn
->name
), "._", 2)) {
447 cle
= alloca(sizeof(struct copyfile_list_entry_t
));
448 cle
->src
= strdup(arcn
->name
);
450 if (asprintf(&cle
->dst
, "%s/%s",
451 dirname(arcn
->name
), basename(arcn
->name
) + 2) != -1) {
452 LIST_INSERT_HEAD(©file_list
, cle
, link
);
459 * if required, chdir around.
461 if ((arcn
->pat
!= NULL
) && (arcn
->pat
->chdname
!= NULL
))
465 LIST_FOREACH(cle
, ©file_list
, link
)
467 if(copyfile_disable
|| copyfile(cle
->src
, cle
->dst
, NULL
,
468 COPYFILE_UNPACK
| COPYFILE_XATTR
| COPYFILE_ACL
)) {
469 if (!copyfile_disable
) {
470 syswarn(1, errno
, "Unable to set metadata on %s", cle
->dst
);
481 * all done, restore directory modes and times as required; make sure
482 * all patterns supplied by the user were matched; block off signals
483 * to avoid chance for multiple entry into the cleanup code.
485 (void)(*frmt
->end_rd
)();
486 (void)sigprocmask(SIG_BLOCK
, &s_mask
, NULL
);
494 * Write an archive. used in both creating a new archive and appends on
495 * previously written archive.
499 wr_archive(ARCHD
*arcn
, int is_app
)
511 char *md_fname
= NULL
;
513 char arcn_copy_name
[PAXPATHLEN
+1];
517 * if this format supports hard link storage, start up the database
520 if (((hlk
= frmt
->hlk
) == 1) && (lnk_start() < 0))
523 if (hlk
&& want_linkdata
) hlk
=0; /* Treat hard links as individual files */
526 * start up the file traversal code and format specific write
528 if ((ftree_start() < 0) || ((*frmt
->st_wr
)() < 0))
533 * When we are doing interactive rename, we store the mapping of names
534 * so we can fix up hard links files later in the archive.
536 if (iflag
&& (name_start() < 0))
540 * if this is not append, and there are no files, we do not write a
548 * while there are files to archive, process them one at at time
550 while (next_file(arcn
) == 0) {
552 * check if this file meets user specified options match.
554 if (sel_chk(arcn
) != 0) {
561 * only archive if this file is newer than a file with
562 * the same name that is already stored on the archive
564 if ((res
= chk_ftime(arcn
)) < 0)
572 * synthesize ._ files for each node we encounter
574 if (getenv(COPYFILE_DISABLE_VAR
) == NULL
575 && copyfile(arcn
->name
, NULL
, NULL
,
576 COPYFILE_CHECK
| COPYFILE_XATTR
| COPYFILE_ACL
)
577 && arcn
->nlen
+ 2 < sizeof(arcn
->name
)) {
578 char *tmpdir
= P_tmpdir
, *TMPDIR
;
581 if (!issetugid() && (TMPDIR
= getenv("TMPDIR"))) {
584 asprintf(&md_fname
, "%s%s", tmpdir
, "/pax-md-XXXXXX");
586 syswarn(1, errno
, "Unable to create temporary file name");
589 memcpy(&arcn_copy
, arcn
, sizeof(ARCHD
));
590 strncpy(arcn_copy_name
, arcn
->name
, PAXPATHLEN
+1);
595 arcn
->ln_name
[0] = '\0';
596 arcn
->type
= PAX_REG
;
597 fd_dst
= mkstemp(md_fname
);
599 fd_src
= open(arcn
->name
, O_RDONLY
, 0);
601 syswarn(1, errno
, "Unable to open %s for reading", arcn
->name
);
608 if(fcopyfile(fd_src
, fd_dst
, NULL
,
609 COPYFILE_PACK
| COPYFILE_XATTR
| COPYFILE_ACL
) < 0) {
611 "Unable to preserve metadata on %s", arcn
->name
);
620 fstat(fd_dst
, &arcn
->sb
);
623 syswarn(1, errno
, "Unable to create temporary file %s", md_fname
);
627 arcn
->skip
= arcn
->sb
.st_size
;
629 if (!strncmp(dirname(arcn
->name
), ".", 2)) {
630 snprintf(arcn
->name
, sizeof(arcn
->name
),
631 "._%s", basename(arcn
->name
));
633 snprintf(arcn
->name
, sizeof(arcn
->name
),
635 dirname(arcn
->name
), basename(arcn
->name
));
637 arcn
->nlen
= strlen(arcn
->name
);
638 arcn
->org_name
= arcn
->name
;
640 } else if (metadata
) {
643 memcpy(arcn
, &arcn_copy
, sizeof(ARCHD
));
644 strncpy(arcn
->name
, arcn_copy_name
, PAXPATHLEN
+1);
646 #endif /* __APPLE__ */
651 * this file is considered selected now. see if this is a hard
652 * link to a file already stored
655 if (hlk
&& (chk_lnk(arcn
) < 0)) {
664 if ((arcn
->type
== PAX_REG
) || (arcn
->type
== PAX_HRG
) ||
665 (arcn
->type
== PAX_CTG
)) {
667 * we will have to read this file. by opening it now we
668 * can avoid writing a header to the archive for a file
669 * we were later unable to read (we also purge it from
674 fd
= open(md_fname
, O_RDONLY
, 0);
679 fd
= open(arcn
->org_name
, O_RDONLY
, 0);
681 #else /* !__APPLE__ */
682 if ((fd
= open(arcn
->org_name
, O_RDONLY
, 0)) < 0) {
683 #endif /* __APPLE__ */
684 syswarn(1,errno
, "Unable to open %s to read",
692 * Now modify the name as requested by the user
694 if ((res
= mod_name(arcn
)) < 0) {
696 * name modification says to skip this file, close the
697 * file and purge link table entry
699 rdfile_close(arcn
, &fd
);
704 if ((res
> 0) || (docrc
&& (set_crc(arcn
, fd
) < 0))) {
706 * unable to obtain the crc we need, close the file,
707 * purge link table entry
709 rdfile_close(arcn
, &fd
);
716 ls_list(arcn
, now
, listf
);
718 (void)safe_print(arcn
->name
, listf
);
725 * looks safe to store the file, have the format specific
726 * routine write routine store the file header on the archive
728 if ((res
= (*wrf
)(arcn
)) < 0) {
729 rdfile_close(arcn
, &fd
);
735 * format write says no file data needs to be stored
736 * so we are done messing with this file
738 if (vflag
&& vfpart
) {
739 (void)putc('\n', listf
);
742 rdfile_close(arcn
, &fd
);
747 * Add file data to the archive, quit on write error. if we
748 * cannot write the entire file contents to the archive we
749 * must pad the archive to replace the missing file data
750 * (otherwise during an extract the file header for the file
751 * which FOLLOWS this one will not be where we expect it to
754 res
= (*frmt
->wr_data
)(arcn
, fd
, &cnt
);
755 rdfile_close(arcn
, &fd
);
756 if (vflag
&& vfpart
) {
757 (void)putc('\n', listf
);
764 * pad as required, cnt is number of bytes not written
766 if (((cnt
> 0) && (wr_skip(cnt
) < 0)) ||
767 ((arcn
->pad
> 0) && (wr_skip(arcn
->pad
) < 0)))
772 #endif /* __APPLE__ */
776 * tell format to write trailer; pad to block boundary; reset directory
777 * mode/access times, and check if all patterns supplied by the user
778 * were matched. block off signals to avoid chance for multiple entry
779 * into the cleanup code
785 (void)sigprocmask(SIG_BLOCK
, &s_mask
, NULL
);
794 * Add file to previously written archive. Archive format specified by the
795 * user must agree with archive. The archive is read first to collect
796 * modification times (if -u) and locate the archive trailer. The archive
797 * is positioned in front of the record with the trailer and wr_archive()
798 * is called to add the new members.
799 * PAX IMPLEMENTATION DETAIL NOTE:
800 * -u is implemented by adding the new members to the end of the archive.
801 * Care is taken so that these do not end up as links to the older
802 * version of the same file already stored in the archive. It is expected
803 * when extraction occurs these newer versions will over-write the older
804 * ones stored "earlier" in the archive (this may be a bad assumption as
805 * it depends on the implementation of the program doing the extraction).
806 * It is really difficult to splice in members without either re-writing
807 * the entire archive (from the point were the old version was), or having
808 * assistance of the format specification in terms of a special update
809 * header that invalidates a previous archive record. The POSIX spec left
810 * the method used to implement -u unspecified. This pax is able to
811 * over write existing files that it creates.
828 * Do not allow an append operation if the actual archive is of a
829 * different format than the user specified format.
833 if ((orgfrmt
!= NULL
) && (orgfrmt
!= frmt
)) {
834 paxwarn(1, "Cannot mix current archive format %s with %s",
835 frmt
->name
, orgfrmt
->name
);
840 * pass the format any options and start up format
842 if (((*frmt
->options
)() < 0) || ((*frmt
->st_rd
)() < 0))
846 * if we only are adding members that are newer, we need to save the
847 * mod times for all files we see.
849 if (uflag
&& (ftime_start() < 0))
853 * some archive formats encode hard links by recording the device and
854 * file serial number (inode) but copy the file anyway (multiple times)
855 * to the archive. When we append, we run the risk that newly added
856 * files may have the same device and inode numbers as those recorded
857 * on the archive but during a previous run. If this happens, when the
858 * archive is extracted we get INCORRECT hard links. We avoid this by
859 * remapping the device numbers so that newly added files will never
860 * use the same device number as one found on the archive. remapping
861 * allows new members to safely have links among themselves. remapping
862 * also avoids problems with file inode (serial number) truncations
863 * when the inode number is larger than storage space in the archive
864 * header. See the remap routines for more details.
866 if ((udev
= frmt
->udev
) && (dev_start() < 0))
870 * reading the archive may take a long time. If verbose tell the user
874 "%s: Reading archive to position at the end...", argv0
);
879 * step through the archive until the format says it is done
881 while (next_head(arcn
) == 0) {
883 * check if this file meets user specified options.
885 if (sel_chk(arcn
) != 0) {
886 if (rd_skip(arcn
->skip
+ arcn
->pad
) == 1)
893 * see if this is the newest version of this file has
894 * already been seen, if so skip.
896 if ((res
= chk_ftime(arcn
)) < 0)
899 if (rd_skip(arcn
->skip
+ arcn
->pad
) == 1)
906 * Store this device number. Device numbers seen during the
907 * read phase of append will cause newly appended files with a
908 * device number seen in the old part of the archive to be
909 * remapped to an unused device number.
911 if ((udev
&& (add_dev(arcn
) < 0)) ||
912 (rd_skip(arcn
->skip
+ arcn
->pad
) == 1))
917 * done, finish up read and get the number of bytes to back up so we
918 * can add new members. The format might have used the hard link table,
921 tlen
= (*frmt
->end_rd
)();
925 * try to position for write, if this fails quit. if any error occurs,
926 * we will refuse to write
928 if (appnd_start(tlen
) < 0)
932 * tell the user we are done reading.
934 if (vflag
&& vfpart
) {
935 (void)fputs("done.\n", listf
);
940 * go to the writing phase to add the new members
947 * write a new archive
956 * if we only are adding members that are newer, we need to save the
957 * mod times for all files; set up for writing; pass the format any
958 * options write the archive
960 if ((uflag
&& (ftime_start() < 0)) || (wr_start() < 0))
962 if ((*frmt
->options
)() < 0)
965 wr_archive(&archd
, 0);
970 * copy files from one part of the file system to another. this does not
971 * use any archive storage. The EFFECT OF THE COPY IS THE SAME as if an
972 * archive was written and then extracted in the destination directory
973 * (except the files are forced to be under the destination directory).
988 char dirbuf
[PAXPATHLEN
+1];
991 if (frmt
&& strcmp(frmt
->name
, NM_PAX
)==0) {
992 /* Copy using pax format: must check if any -o options */
993 if ((*frmt
->options
)() < 0)
995 if (pax_invalid_action
==0)
996 pax_invalid_action
= PAX_INVALID_ACTION_BYPASS
;
999 * set up the destination dir path and make sure it is a directory. We
1000 * make sure we have a trailing / on the destination
1002 dlen
= strlcpy(dirbuf
, dirptr
, sizeof(dirbuf
));
1003 if (dlen
>= sizeof(dirbuf
) ||
1004 (dlen
== sizeof(dirbuf
) - 1 && dirbuf
[dlen
- 1] != '/')) {
1005 paxwarn(1, "directory name is too long %s", dirptr
);
1008 dest_pt
= dirbuf
+ dlen
;
1009 if (*(dest_pt
-1) != '/') {
1014 drem
= PAXPATHLEN
- dlen
;
1016 if (stat(dirptr
, &sb
) < 0) {
1017 syswarn(1, errno
, "Cannot access destination directory %s",
1021 if (!S_ISDIR(sb
.st_mode
)) {
1022 paxwarn(1, "Destination is not a directory %s", dirptr
);
1027 * start up the hard link table; file traversal routines and the
1028 * modification time and access mode database
1030 if ((lnk_start() < 0) || (ftree_start() < 0) || (dir_start() < 0))
1034 * When we are doing interactive rename, we store the mapping of names
1035 * so we can fix up hard links files later in the archive.
1037 if (iflag
&& (name_start() < 0))
1041 * set up to cp file trees
1046 * while there are files to archive, process them
1048 while (next_file(arcn
) == 0) {
1052 * Fill in arcn from any pax options
1054 adjust_copy_for_pax_options(arcn
);
1057 * check if this file meets user specified options
1059 if (sel_chk(arcn
) != 0) {
1065 * if there is already a file in the destination directory with
1066 * the same name and it is newer, skip the one stored on the
1068 * NOTE: this test is done BEFORE name modifications as
1069 * specified by pax. this can be confusing to the user who
1070 * might expect the test to be done on an existing file AFTER
1071 * the name mod. In honesty the pax spec is probably flawed in
1074 if (uflag
|| Dflag
) {
1076 * create the destination name
1078 if (strlcpy(dest_pt
, arcn
->name
+ (*arcn
->name
== '/'),
1080 paxwarn(1, "Destination pathname too long %s",
1086 * if existing file is same age or newer skip
1088 res
= lstat(dirbuf
, &sb
);
1092 if (uflag
&& Dflag
) {
1093 if ((arcn
->sb
.st_mtime
<=sb
.st_mtime
) &&
1094 (arcn
->sb
.st_ctime
<=sb
.st_ctime
))
1097 if (arcn
->sb
.st_ctime
<= sb
.st_ctime
)
1099 } else if (arcn
->sb
.st_mtime
<= sb
.st_mtime
)
1105 * this file is considered selected. See if this is a hard link
1106 * to a previous file; modify the name as requested by the
1107 * user; set the final destination.
1110 if ((chk_lnk(arcn
) < 0) || ((res
= mod_name(arcn
)) < 0))
1112 if ((res
> 0) || (set_dest(arcn
, dirbuf
, dlen
) < 0)) {
1114 * skip file, purge from link table
1121 * Non standard -Y and -Z flag. When the existing file is
1122 * same age or newer skip
1124 if ((Yflag
|| Zflag
) && ((lstat(arcn
->name
, &sb
) == 0))) {
1125 if (Yflag
&& Zflag
) {
1126 if ((arcn
->sb
.st_mtime
<= sb
.st_mtime
) &&
1127 (arcn
->sb
.st_ctime
<= sb
.st_ctime
))
1130 if (arcn
->sb
.st_ctime
<= sb
.st_ctime
)
1132 } else if (arcn
->sb
.st_mtime
<= sb
.st_mtime
)
1137 (void)safe_print(arcn
->name
, listf
);
1143 * try to create a hard link to the src file if requested
1144 * but make sure we are not trying to overwrite ourselves.
1147 res
= cross_lnk(arcn
);
1149 res
= chk_same(arcn
);
1151 if (vflag
&& vfpart
) {
1152 (void)putc('\n', listf
);
1159 * have to create a new file
1161 if ((arcn
->type
!= PAX_REG
) && (arcn
->type
!= PAX_CTG
)) {
1163 * create a link or special file
1165 if ((arcn
->type
== PAX_HLK
) || (arcn
->type
== PAX_HRG
))
1166 res
= lnk_creat(arcn
);
1168 res
= node_creat(arcn
);
1173 arcn
->type
== PAX_DIR
&&
1174 copyfile(arcn
->org_name
, arcn
->name
, NULL
, COPYFILE_ACL
| COPYFILE_XATTR
) < 0)
1175 paxwarn(1, "Directory %s had metadata that could not be copied: %s", arcn
->org_name
, strerror(errno
));
1176 #endif /* __APPLE__ */
1177 if (vflag
&& vfpart
) {
1178 (void)putc('\n', listf
);
1185 * have to copy a regular file to the destination directory.
1186 * first open source file and then create the destination file
1188 if ((fdsrc
= open(arcn
->org_name
, O_RDONLY
, 0)) < 0) {
1189 syswarn(1, errno
, "Unable to open %s to read",
1194 if ((fddest
= file_creat(arcn
)) < 0) {
1195 rdfile_close(arcn
, &fdsrc
);
1201 * copy source file data to the destination file
1203 cp_file(arcn
, fdsrc
, fddest
);
1205 /* do this before file close so that mtimes are correct regardless */
1206 if (getenv(COPYFILE_DISABLE_VAR
) == NULL
) {
1207 if (fcopyfile(fdsrc
, fddest
, NULL
, COPYFILE_ACL
| COPYFILE_XATTR
) < 0)
1208 paxwarn(1, "File %s had metadata that could not be copied: %s", arcn
->org_name
,
1212 file_close(arcn
, fddest
);
1213 rdfile_close(arcn
, &fdsrc
);
1215 if (vflag
&& vfpart
) {
1216 (void)putc('\n', listf
);
1222 * restore directory modes and times as required; make sure all
1223 * patterns were selected block off signals to avoid chance for
1224 * multiple entry into the cleanup code.
1226 (void)sigprocmask(SIG_BLOCK
, &s_mask
, NULL
);
1234 * try to find a valid header in the archive. Uses format specific
1235 * routines to extract the header and id the trailer. Trailers may be
1236 * located within a valid header or in an invalid header (the location
1237 * is format specific. The inhead field from the option table tells us
1238 * where to look for the trailer).
1239 * We keep reading (and resyncing) until we get enough contiguous data
1240 * to check for a header. If we cannot find one, we shift by a byte
1241 * add a new byte from the archive to the end of the buffer and try again.
1242 * If we get a read error, we throw out what we have (as we must have
1243 * contiguous data) and start over again.
1244 * ASSUMED: headers fit within a BLKMULT header.
1246 * 0 if we got a header, -1 if we are unable to ever find another one
1247 * (we reached the end of input, or we reached the limit on retries. see
1248 * the specs for rd_wrbuf() for more details)
1252 next_head(ARCHD
*arcn
)
1259 int in_resync
= 0; /* set when we are in resync mode */
1260 int cnt
= 0; /* counter for trailer function */
1261 int first
= 1; /* on 1st read, EOF isn't premature. */
1264 * set up initial conditions, we want a whole frmt->hsz block as we
1267 res
= hsz
= frmt
->hsz
;
1272 * keep looping until we get a contiguous FULL buffer
1273 * (frmt->hsz is the proper size)
1276 if ((ret
= rd_wrbuf(hdend
, res
)) == res
)
1280 * If we read 0 bytes (EOF) from an archive when we
1281 * expect to find a header, we have stepped upon
1282 * an archive without the customary block of zeroes
1283 * end marker. It's just stupid to error out on
1284 * them, so exit gracefully.
1286 if (first
&& ret
== 0)
1291 * some kind of archive read problem, try to resync the
1292 * storage device, better give the user the bad news.
1294 if ((ret
== 0) || (rd_sync() < 0)) {
1295 paxwarn(1,"Premature end of file on archive read");
1301 "Archive I/O error, cannot continue");
1304 paxwarn(1,"Archive I/O error. Trying to recover.");
1309 * oh well, throw it all out and start over
1316 * ok we have a contiguous buffer of the right size. Call the
1317 * format read routine. If this was not a valid header and this
1318 * format stores trailers outside of the header, call the
1319 * format specific trailer routine to check for a trailer. We
1320 * have to watch out that we do not mis-identify file data or
1321 * block padding as a header or trailer. Format specific
1322 * trailer functions must NOT check for the trailer while we
1323 * are running in resync mode. Some trailer functions may tell
1324 * us that this block cannot contain a valid header either, so
1325 * we then throw out the entire block and start over.
1327 if ((*frmt
->rd
)(arcn
, hdbuf
) == 0)
1330 if (!frmt
->inhead
) {
1332 * this format has trailers outside of valid headers
1334 if ((ret
= (*frmt
->trail
)(arcn
,hdbuf
,in_resync
,&cnt
)) == 0){
1336 * valid trailer found, drain input as required
1344 * we are in resync and we were told to throw
1345 * the whole block out because none of the
1346 * bytes in this block can be used to form a
1356 * Brute force section.
1357 * not a valid header. We may be able to find a header yet. So
1358 * we shift over by one byte, and set up to read one byte at a
1359 * time from the archive and place it at the end of the buffer.
1360 * We will keep moving byte at a time until we find a header or
1361 * get a read error and have to start over.
1365 paxwarn(1,"Unable to append, archive header flaw");
1368 paxwarn(1,"Invalid header, starting valid header search.");
1371 memmove(hdbuf
, hdbuf
+1, shftsz
);
1373 hdend
= hdbuf
+ shftsz
;
1377 * ok got a valid header, check for trailer if format encodes it in the
1378 * the header. NOTE: the parameters are different than trailer routines
1379 * which encode trailers outside of the header!
1381 if (frmt
->inhead
&& ((*frmt
->trail
)(arcn
,NULL
,0,NULL
) == 0)) {
1383 * valid trailer found, drain input as required
1395 * Figure out what format an archive is. Handles archive with flaws by
1396 * brute force searches for a legal header in any supported format. The
1397 * format id routines have to be careful to NOT mis-identify a format.
1398 * ASSUMED: headers fit within a BLKMULT header.
1400 * 0 if archive found -1 otherwise
1409 int minhd
= BLKMULT
;
1414 * find the smallest header size in all archive formats and then set up
1415 * to read the archive.
1417 for (i
= 0; ford
[i
] >= 0; ++i
) {
1418 if (fsub
[ford
[i
]].hsz
< minhd
)
1419 minhd
= fsub
[ford
[i
]].hsz
;
1429 * fill the buffer with at least the smallest header
1431 i
= rd_wrbuf(hdend
, res
);
1438 * if we cannot recover from a read error quit
1440 if ((i
== 0) || (rd_sync() < 0))
1444 * when we get an error none of the data we already
1445 * have can be used to create a legal header (we just
1446 * got an error in the middle), so we throw it all out
1447 * and refill the buffer with fresh data.
1455 paxwarn(1,"Cannot identify format. Searching...");
1461 * we have at least the size of the smallest header in any
1462 * archive format. Look to see if we have a match. The array
1463 * ford[] is used to specify the header id order to reduce the
1464 * chance of incorrectly id'ing a valid header (some formats
1465 * may be subsets of each other and the order would then be
1468 for (i
= 0; ford
[i
] >= 0; ++i
) {
1469 if ((*fsub
[ford
[i
]].id
)(hdbuf
, hdsz
) < 0)
1471 frmt
= &(fsub
[ford
[i
]]);
1473 * yuck, to avoid slow special case code in the extract
1474 * routines, just push this header back as if it was
1475 * not seen. We have left extra space at start of the
1476 * buffer for this purpose. This is a bit ugly, but
1477 * adding all the special case code is far worse.
1484 * We have a flawed archive, no match. we start searching, but
1485 * we never allow additions to flawed archives
1490 paxwarn(1, "Cannot identify format. Searching...");
1495 * brute force search for a header that we can id.
1496 * we shift through byte at a time. this is slow, but we cannot
1497 * determine the nature of the flaw in the archive in a
1501 memmove(hdbuf
, hdbuf
+1, hdsz
);
1502 res
= BLKMULT
- hdsz
;
1503 hdend
= hdbuf
+ hdsz
;
1513 * we cannot find a header, bow, apologize and quit
1515 paxwarn(1, "Sorry, unable to determine archive format.");