]>
git.saurik.com Git - apple/file_cmds.git/blob - pax/ftree.c
1 /* $OpenBSD: ftree.c,v 1.28 2008/05/06 06:54:28 henning Exp $ */
2 /* $NetBSD: ftree.c,v 1.4 1995/03/21 09:07:21 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
[] = "@(#)ftree.c 8.2 (Berkeley) 4/18/94";
42 __used
static const char rcsid
[] = "$OpenBSD: ftree.c,v 1.28 2008/05/06 06:54:28 henning Exp $";
46 #include <sys/types.h>
49 #include <sys/param.h>
61 * routines to interface with the fts library function.
63 * file args supplied to pax are stored on a single linked list (of type FTREE)
64 * and given to fts to be processed one at a time. pax "selects" files from
65 * the expansion of each arg into the corresponding file tree (if the arg is a
66 * directory, otherwise the node itself is just passed to pax). The selection
67 * is modified by the -n and -u flags. The user is informed when a specific
68 * file arg does not generate any selected files. -n keeps expanding the file
69 * tree arg until one of its files is selected, then skips to the next file
70 * arg. when the user does not supply the file trees as command line args to
71 * pax, they are read from stdin
74 static FTS
*ftsp
= NULL
; /* current FTS handle */
75 static int ftsopts
; /* options to be used on fts_open */
76 static char *farray
[2]; /* array for passing each arg to fts */
77 static FTREE
*fthead
= NULL
; /* head of linked list of file args */
78 static FTREE
*fttail
= NULL
; /* tail of linked list of file args */
79 static FTREE
*ftcur
= NULL
; /* current file arg being processed */
80 static FTSENT
*ftent
= NULL
; /* current file tree entry */
81 static int ftree_skip
; /* when set skip to next file arg */
83 static int ftree_arg(void);
84 static char *getpathname(char *, int);
88 * initialize the options passed to fts_open() during this run of pax
89 * options are based on the selection of pax options by the user
90 * fts_start() also calls fts_arg() to open the first valid file arg. We
91 * also attempt to reset directory access times when -t (tflag) is set.
93 * 0 if there is at least one valid file arg to process, -1 otherwise
100 * set up the operation mode of fts, open the first file arg. We must
101 * use FTS_NOCHDIR, as the user may have to open multiple archives and
102 * if fts did a chdir off into the boondocks, we may create an archive
103 * volume in an place where the user did not expect to.
105 ftsopts
= FTS_NOCHDIR
;
108 * optional user flags that effect file traversal
109 * -H command line symlink follow only (half follow)
110 * -L follow sylinks (logical)
111 * -P do not follow sylinks (physical). This is the default.
112 * -X do not cross over mount points
113 * -t preserve access times on files read.
114 * -n select only the first member of a file tree when a match is found
115 * -d do not extract subtrees rooted at a directory arg.
118 ftsopts
|= FTS_LOGICAL
;
120 ftsopts
|= FTS_PHYSICAL
;
122 ftsopts
|= FTS_COMFOLLOW
;
126 if ((fthead
== NULL
) && ((farray
[0] = malloc(PAXPATHLEN
+2)) == NULL
)) {
127 paxwarn(1, "Unable to allocate memory for file name buffer");
133 if (tflag
&& (atdir_start() < 0))
140 * add the arg to the linked list of files to process. Each will be
141 * processed by fts one at a time
143 * 0 if added to the linked list, -1 if failed
147 ftree_add(char *str
, int chflg
)
153 * simple check for bad args
155 if ((str
== NULL
) || (*str
== '\0')) {
156 paxwarn(0, "Invalid file name argument");
161 * allocate FTREE node and add to the end of the linked list (args are
162 * processed in the same order they were passed to pax). Get rid of any
163 * trailing / the user may pass us. (watch out for / by itself).
165 if ((ft
= (FTREE
*)malloc(sizeof(FTREE
))) == NULL
) {
166 paxwarn(0, "Unable to allocate memory for filename");
170 if (((len
= strlen(str
) - 1) > 0) && (str
[len
] == '/'))
177 if (fthead
== NULL
) {
178 fttail
= fthead
= ft
;
188 * this entry has been selected by pax. bump up reference count and handle
189 * -n and -d processing.
193 ftree_sel(ARCHD
*arcn
)
196 * set reference bit for this pattern. This linked list is only used
197 * when file trees are supplied pax as args. The list is not used when
198 * the trees are read from stdin.
204 * if -n we are done with this arg, force a skip to the next arg when
205 * pax asks for the next file in next_file().
206 * if -d we tell fts only to match the directory (if the arg is a dir)
207 * and not the entire file tree rooted at that point.
212 if (!dflag
|| (arcn
->type
!= PAX_DIR
))
216 (void)fts_set(ftsp
, ftent
, FTS_SKIP
);
221 * this entry has not been selected by pax.
228 (void)fts_set(ftsp
, ftent
, FTS_SKIP
);
232 * ftree_skipped_newer()
233 * file has been skipped because a newer file exists and -u/-D given
237 ftree_skipped_newer(ARCHD
*arcn
)
239 /* skipped due to -u/-D, mark accordingly */
246 * called at end on pax execution. Prints all those file args that did not
247 * have a selected member (reference count still 0)
257 * make sure all dir access times were reset.
263 * walk down list and check reference count. Print out those members
264 * that never had a match
266 for (ft
= fthead
; ft
!= NULL
; ft
= ft
->fow
) {
267 if ((ft
->refcnt
> 0) || ft
->newercnt
> 0 || ft
->chflg
)
270 paxwarn(1,"WARNING! These file names were not selected:");
273 (void)fprintf(stderr
, "%s\n", ft
->fname
);
279 * Get the next file arg for fts to process. Can be from either the linked
280 * list or read from stdin when the user did not them as args to pax. Each
281 * arg is processed until the first successful fts_open().
283 * 0 when the next arg is ready to go, -1 if out of file args (or EOF on
292 * close off the current file tree
295 (void)fts_close(ftsp
);
300 * keep looping until we get a valid file tree to process. Stop when we
301 * reach the end of the list (or get an eof on stdin)
304 if (fthead
== NULL
) {
306 * the user didn't supply any args, get the file trees
307 * to process from stdin;
309 if (getpathname(farray
[0], PAXPATHLEN
+1) == NULL
)
313 * the user supplied the file args as arguments to pax
317 else if ((ftcur
= ftcur
->fow
) == NULL
)
320 /* First fchdir() back... */
321 if (fdochdir(cwdfd
) < 0) {
323 "Can't fchdir to starting directory");
326 if (dochdir(ftcur
->fname
) < 0) {
327 syswarn(1, errno
, "Can't chdir to %s",
333 farray
[0] = ftcur
->fname
;
337 * watch it, fts wants the file arg stored in a array of char
338 * ptrs, with the last one a null. we use a two element array
339 * and set farray[0] to point at the buffer with the file name
340 * in it. We cannot pass all the file args to fts at one shot
341 * as we need to keep a handle on which file arg generates what
342 * files (the -n and -d flags need this). If the open is
343 * successful, return a 0.
345 if ((ftsp
= fts_open(farray
, ftsopts
, NULL
)) != NULL
)
353 * supplies the next file to process in the supplied archd structure.
355 * 0 when contents of arcn have been set with the next file, -1 when done.
359 next_file(ARCHD
*arcn
)
366 * ftree_sel() might have set the ftree_skip flag if the user has the
367 * -n option and a file was selected from this file arg tree. (-n says
368 * only one member is matched for each pattern) ftree_skip being 1
369 * forces us to go to the next arg now.
373 * clear and go to next arg
381 * loop until we get a valid file to process
384 if ((ftent
= fts_read(ftsp
)) == NULL
) {
386 syswarn(1, errno
, "next_file");
388 * out of files in this tree, go to next arg, if none
397 * handle each type of fts_read() flag
399 switch (ftent
->fts_info
) {
408 case FTS_SLNONE
: /* was same as above cases except Unix
409 conformance requires this error check */
410 if (Hflag
|| Lflag
) { /* -H or -L was specified */
411 if (ftent
->fts_errno
)
413 ftent
->fts_name
, strerror(ftent
->fts_errno
));
418 * already saw this directory. If the user wants file
419 * access times reset, we use this to restore the
420 * access time for this directory since this is the
421 * last time we will see it in this file subtree
422 * remember to force the time (this is -t on a read
423 * directory, not a created directory).
425 if (!tflag
|| (get_atdir(ftent
->fts_statp
->st_dev
,
426 ftent
->fts_statp
->st_ino
, &mtime
, &atime
) < 0))
428 set_ftime(ftent
->fts_path
, mtime
, atime
, 1);
432 * fts claims a file system cycle
434 paxwarn(1,"File system cycle found at %s",ftent
->fts_path
);
437 syswarn(1, ftent
->fts_errno
,
438 "Unable to read directory %s", ftent
->fts_path
);
441 syswarn(1, ftent
->fts_errno
,
442 "File system traversal error");
446 syswarn(1, ftent
->fts_errno
,
447 "Unable to access %s", ftent
->fts_path
);
452 * ok got a file tree node to process. copy info into arcn
453 * structure (initialize as required)
458 arcn
->ln_name
[0] = '\0';
459 memcpy(&arcn
->sb
, ftent
->fts_statp
, sizeof(arcn
->sb
));
462 * file type based set up and copy into the arcn struct
464 * we try to reset the access time on all files and directories
465 * we may read when the -t flag is specified. files are reset
466 * when we close them after copying. we reset the directories
467 * when we are done with their file tree (we also clean up at
468 * end in case we cut short a file tree traversal). However
469 * there is no way to reset access times on symlinks.
471 switch (S_IFMT
& arcn
->sb
.st_mode
) {
473 arcn
->type
= PAX_DIR
;
476 add_atdir(ftent
->fts_path
, arcn
->sb
.st_dev
,
477 arcn
->sb
.st_ino
, arcn
->sb
.st_mtime
,
481 arcn
->type
= PAX_CHR
;
484 arcn
->type
= PAX_BLK
;
488 * only regular files with have data to store on the
489 * archive. all others will store a zero length skip.
490 * the skip field is used by pax for actual data it has
491 * to read (or skip over).
493 arcn
->type
= PAX_REG
;
494 arcn
->skip
= arcn
->sb
.st_size
;
497 arcn
->type
= PAX_SLK
;
499 * have to read the symlink path from the file
501 if ((cnt
= readlink(ftent
->fts_path
, arcn
->ln_name
,
503 syswarn(1, errno
, "Unable to read symlink %s",
508 * set link name length, watch out readlink does not
509 * always NUL terminate the link path
511 arcn
->ln_name
[cnt
] = '\0';
516 * under BSD storing a socket is senseless but we will
517 * let the format specific write function make the
518 * decision of what to do with it.
520 arcn
->type
= PAX_SCK
;
523 arcn
->type
= PAX_FIF
;
530 * copy file name, set file name length
532 arcn
->nlen
= strlcpy(arcn
->name
, ftent
->fts_path
, sizeof(arcn
->name
));
533 if (arcn
->nlen
>= sizeof(arcn
->name
))
534 arcn
->nlen
= sizeof(arcn
->name
) - 1; /* XXX truncate? */
535 arcn
->org_name
= ftent
->fts_path
;
541 * Reads a pathname from stdin, handling NUL- or newline-termination.
543 * NULL at end of file, otherwise the NUL-terminated buffer.
547 getpathname(char *buf
, int buflen
)
554 * Read a NUL-terminated pathname, being especially
555 * paranoid about proper termination and pathname length.
557 for (bp
= buf
, ep
= buf
+ buflen
; bp
< ep
; bp
++) {
558 if ((ch
= getchar()) == EOF
) {
560 paxwarn(1, "Ignoring unterminated "
564 if ((*bp
= ch
) == '\0')
567 /* Too long - skip this path */
571 if (fgets(buf
, buflen
, stdin
) == NULL
)
573 if ((bp
= strchr(buf
, '\n')) != NULL
|| feof(stdin
)) {
578 /* Too long - skip this path */
581 while ((ch
= getchar()) != term
&& ch
!= EOF
)
583 paxwarn(1, "Ignoring too-long pathname: %s", buf
);