Home | History | Annotate | Line # | Download | only in pax
ftree.c revision 1.27
      1  1.27       agc /*	$NetBSD: ftree.c,v 1.27 2003/08/07 09:05:20 agc Exp $	*/
      2   1.4       cgd 
      3   1.1       jtc /*-
      4   1.1       jtc  * Copyright (c) 1992, 1993
      5   1.1       jtc  *	The Regents of the University of California.  All rights reserved.
      6   1.1       jtc  *
      7   1.1       jtc  * This code is derived from software contributed to Berkeley by
      8   1.1       jtc  * Keith Muller of the University of California, San Diego.
      9   1.1       jtc  *
     10   1.1       jtc  * Redistribution and use in source and binary forms, with or without
     11   1.1       jtc  * modification, are permitted provided that the following conditions
     12   1.1       jtc  * are met:
     13   1.1       jtc  * 1. Redistributions of source code must retain the above copyright
     14   1.1       jtc  *    notice, this list of conditions and the following disclaimer.
     15   1.1       jtc  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       jtc  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       jtc  *    documentation and/or other materials provided with the distribution.
     18  1.27       agc  * 3. Neither the name of the University nor the names of its contributors
     19  1.27       agc  *    may be used to endorse or promote products derived from this software
     20  1.27       agc  *    without specific prior written permission.
     21  1.27       agc  *
     22  1.27       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  1.27       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  1.27       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.27       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  1.27       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.27       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  1.27       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  1.27       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  1.27       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.27       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  1.27       agc  * SUCH DAMAGE.
     33  1.27       agc  */
     34  1.27       agc 
     35  1.27       agc /*-
     36  1.27       agc  * Copyright (c) 1992 Keith Muller.
     37  1.27       agc  *
     38  1.27       agc  * This code is derived from software contributed to Berkeley by
     39  1.27       agc  * Keith Muller of the University of California, San Diego.
     40  1.27       agc  *
     41  1.27       agc  * Redistribution and use in source and binary forms, with or without
     42  1.27       agc  * modification, are permitted provided that the following conditions
     43  1.27       agc  * are met:
     44  1.27       agc  * 1. Redistributions of source code must retain the above copyright
     45  1.27       agc  *    notice, this list of conditions and the following disclaimer.
     46  1.27       agc  * 2. Redistributions in binary form must reproduce the above copyright
     47  1.27       agc  *    notice, this list of conditions and the following disclaimer in the
     48  1.27       agc  *    documentation and/or other materials provided with the distribution.
     49   1.1       jtc  * 3. All advertising materials mentioning features or use of this software
     50   1.1       jtc  *    must display the following acknowledgement:
     51   1.1       jtc  *	This product includes software developed by the University of
     52   1.1       jtc  *	California, Berkeley and its contributors.
     53   1.1       jtc  * 4. Neither the name of the University nor the names of its contributors
     54   1.1       jtc  *    may be used to endorse or promote products derived from this software
     55   1.1       jtc  *    without specific prior written permission.
     56   1.1       jtc  *
     57   1.1       jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     58   1.1       jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     59   1.1       jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     60   1.1       jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     61   1.1       jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     62   1.1       jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     63   1.1       jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     64   1.1       jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     65   1.1       jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     66   1.1       jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     67   1.1       jtc  * SUCH DAMAGE.
     68   1.1       jtc  */
     69   1.1       jtc 
     70  1.12     lukem /*-
     71  1.12     lukem  * Copyright (c) 2001 The NetBSD Foundation, Inc.
     72  1.12     lukem  * All rights reserved.
     73  1.12     lukem  *
     74  1.12     lukem  * This code is derived from software contributed to The NetBSD Foundation
     75  1.12     lukem  * by Luke Mewburn of Wasabi Systems.
     76  1.12     lukem  *
     77  1.12     lukem  * Redistribution and use in source and binary forms, with or without
     78  1.12     lukem  * modification, are permitted provided that the following conditions
     79  1.12     lukem  * are met:
     80  1.12     lukem  * 1. Redistributions of source code must retain the above copyright
     81  1.12     lukem  *    notice, this list of conditions and the following disclaimer.
     82  1.12     lukem  * 2. Redistributions in binary form must reproduce the above copyright
     83  1.12     lukem  *    notice, this list of conditions and the following disclaimer in the
     84  1.12     lukem  *    documentation and/or other materials provided with the distribution.
     85  1.12     lukem  * 3. All advertising materials mentioning features or use of this software
     86  1.12     lukem  *    must display the following acknowledgement:
     87  1.12     lukem  *        This product includes software developed by the NetBSD
     88  1.12     lukem  *        Foundation, Inc. and its contributors.
     89  1.12     lukem  * 4. Neither the name of The NetBSD Foundation nor the names of its
     90  1.12     lukem  *    contributors may be used to endorse or promote products derived
     91  1.12     lukem  *    from this software without specific prior written permission.
     92  1.12     lukem  *
     93  1.12     lukem  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     94  1.12     lukem  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     95  1.12     lukem  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     96  1.12     lukem  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     97  1.12     lukem  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     98  1.12     lukem  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     99  1.12     lukem  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    100  1.12     lukem  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    101  1.12     lukem  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    102  1.12     lukem  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    103  1.12     lukem  * POSSIBILITY OF SUCH DAMAGE.
    104  1.12     lukem  */
    105  1.12     lukem 
    106   1.6  christos #include <sys/cdefs.h>
    107  1.17        tv #if defined(__RCSID) && !defined(lint)
    108   1.4       cgd #if 0
    109   1.4       cgd static char sccsid[] = "@(#)ftree.c	8.2 (Berkeley) 4/18/94";
    110   1.4       cgd #else
    111  1.27       agc __RCSID("$NetBSD: ftree.c,v 1.27 2003/08/07 09:05:20 agc Exp $");
    112   1.4       cgd #endif
    113   1.1       jtc #endif /* not lint */
    114   1.1       jtc 
    115   1.1       jtc #include <sys/types.h>
    116   1.1       jtc #include <sys/time.h>
    117   1.1       jtc #include <sys/stat.h>
    118   1.1       jtc #include <sys/param.h>
    119   1.1       jtc #include <ctype.h>
    120   1.1       jtc #include <errno.h>
    121  1.17        tv #include <fts.h>
    122  1.17        tv #include <stdio.h>
    123   1.1       jtc #include <stdlib.h>
    124  1.17        tv #include <string.h>
    125  1.17        tv #include <unistd.h>
    126   1.1       jtc #include "pax.h"
    127   1.1       jtc #include "ftree.h"
    128   1.1       jtc #include "extern.h"
    129  1.22  christos #include "options.h"
    130  1.18     lukem #ifndef SMALL
    131  1.12     lukem #include "mtree.h"
    132  1.18     lukem #endif	/* SMALL */
    133  1.16        tv 
    134   1.1       jtc /*
    135   1.1       jtc  * routines to interface with the fts library function.
    136   1.1       jtc  *
    137   1.1       jtc  * file args supplied to pax are stored on a single linked list (of type FTREE)
    138   1.1       jtc  * and given to fts to be processed one at a time. pax "selects" files from
    139   1.1       jtc  * the expansion of each arg into the corresponding file tree (if the arg is a
    140   1.1       jtc  * directory, otherwise the node itself is just passed to pax). The selection
    141   1.1       jtc  * is modified by the -n and -u flags. The user is informed when a specific
    142   1.1       jtc  * file arg does not generate any selected files. -n keeps expanding the file
    143   1.1       jtc  * tree arg until one of its files is selected, then skips to the next file
    144   1.1       jtc  * arg. when the user does not supply the file trees as command line args to
    145   1.1       jtc  * pax, they are read from stdin
    146   1.1       jtc  */
    147   1.1       jtc 
    148  1.10     itohy static FTS *ftsp = NULL;		/* current FTS handle */
    149   1.1       jtc static int ftsopts;			/* options to be used on fts_open */
    150   1.1       jtc static char *farray[2];			/* array for passing each arg to fts */
    151   1.1       jtc static FTREE *fthead = NULL;		/* head of linked list of file args */
    152   1.1       jtc static FTREE *fttail = NULL;		/* tail of linked list of file args */
    153   1.1       jtc static FTREE *ftcur = NULL;		/* current file arg being processed */
    154   1.1       jtc static FTSENT *ftent = NULL;		/* current file tree entry */
    155   1.1       jtc static int ftree_skip;			/* when set skip to next file arg */
    156  1.18     lukem #ifndef SMALL
    157  1.12     lukem static NODE *ftnode = NULL;		/* mtree(8) specfile; used by -M */
    158  1.18     lukem #endif	/* SMALL */
    159   1.1       jtc 
    160  1.11     lukem static int ftree_arg(void);
    161  1.11     lukem 
    162  1.11     lukem #ifdef NET2_FTS
    163  1.11     lukem #define	FTS_ERRNO(x)	errno
    164  1.11     lukem #else
    165  1.11     lukem #define	FTS_ERRNO(x)	(x)->fts_errno
    166  1.11     lukem #endif
    167   1.1       jtc 
    168   1.1       jtc /*
    169   1.1       jtc  * ftree_start()
    170   1.1       jtc  *	initialize the options passed to fts_open() during this run of pax
    171   1.1       jtc  *	options are based on the selection of pax options by the user
    172   1.1       jtc  *	fts_start() also calls fts_arg() to open the first valid file arg. We
    173   1.1       jtc  *	also attempt to reset directory access times when -t (tflag) is set.
    174   1.1       jtc  * Return:
    175   1.1       jtc  *	0 if there is at least one valid file arg to process, -1 otherwise
    176   1.1       jtc  */
    177   1.1       jtc 
    178   1.1       jtc int
    179   1.1       jtc ftree_start(void)
    180   1.1       jtc {
    181  1.12     lukem 
    182  1.18     lukem #ifndef SMALL
    183  1.12     lukem 	/*
    184  1.12     lukem 	 * if -M is given, the list of filenames on stdin is actually
    185  1.12     lukem 	 * an mtree(8) specfile, so parse the specfile into a NODE *
    186  1.12     lukem 	 * tree at ftnode, for use by next_file()
    187  1.12     lukem 	 */
    188  1.12     lukem 	if (Mflag) {
    189  1.12     lukem 		if (fthead != NULL) {
    190  1.12     lukem 			tty_warn(1,
    191  1.12     lukem 	    "The -M flag is only supported when reading file list from stdin");
    192  1.12     lukem 			return(-1);
    193  1.12     lukem 		}
    194  1.12     lukem 		ftnode = spec(stdin);
    195  1.12     lukem 		if (ftnode != NULL &&
    196  1.12     lukem 		    (ftnode->type != F_DIR || strcmp(ftnode->name, ".") != 0)) {
    197  1.12     lukem 			tty_warn(1,
    198  1.12     lukem 			    "First node of specfile is not `.' directory");
    199  1.12     lukem 			return(-1);
    200  1.12     lukem 		}
    201  1.12     lukem 		return(0);
    202  1.12     lukem 	}
    203  1.18     lukem #endif	/* SMALL */
    204  1.12     lukem 
    205   1.1       jtc 	/*
    206   1.1       jtc 	 * set up the operation mode of fts, open the first file arg. We must
    207   1.1       jtc 	 * use FTS_NOCHDIR, as the user may have to open multiple archives and
    208   1.1       jtc 	 * if fts did a chdir off into the boondocks, we may create an archive
    209   1.1       jtc 	 * volume in an place where the user did not expect to.
    210   1.1       jtc 	 */
    211   1.1       jtc 	ftsopts = FTS_NOCHDIR;
    212   1.1       jtc 
    213   1.1       jtc 	/*
    214   1.1       jtc 	 * optional user flags that effect file traversal
    215   1.1       jtc 	 * -H command line symlink follow only (half follow)
    216   1.1       jtc 	 * -L follow sylinks (logical)
    217   1.1       jtc 	 * -P do not follow sylinks (physical). This is the default.
    218   1.1       jtc 	 * -X do not cross over mount points
    219   1.1       jtc 	 * -t preserve access times on files read.
    220   1.1       jtc 	 * -n select only the first member of a file tree when a match is found
    221   1.1       jtc 	 * -d do not extract subtrees rooted at a directory arg.
    222   1.1       jtc 	 */
    223   1.1       jtc 	if (Lflag)
    224   1.1       jtc 		ftsopts |= FTS_LOGICAL;
    225   1.1       jtc 	else
    226   1.1       jtc 		ftsopts |= FTS_PHYSICAL;
    227   1.1       jtc 	if (Hflag)
    228  1.11     lukem #ifdef NET2_FTS
    229   1.6  christos 		tty_warn(0, "The -H flag is not supported on this version");
    230  1.11     lukem #else
    231   1.1       jtc 		ftsopts |= FTS_COMFOLLOW;
    232  1.11     lukem #endif
    233   1.1       jtc 	if (Xflag)
    234   1.1       jtc 		ftsopts |= FTS_XDEV;
    235   1.1       jtc 
    236   1.1       jtc 	if ((fthead == NULL) && ((farray[0] = malloc(PAXPATHLEN+2)) == NULL)) {
    237   1.6  christos 		tty_warn(1, "Unable to allocate memory for file name buffer");
    238   1.1       jtc 		return(-1);
    239   1.1       jtc 	}
    240   1.1       jtc 
    241   1.1       jtc 	if (ftree_arg() < 0)
    242   1.1       jtc 		return(-1);
    243   1.1       jtc 	if (tflag && (atdir_start() < 0))
    244   1.1       jtc 		return(-1);
    245   1.1       jtc 	return(0);
    246   1.1       jtc }
    247   1.1       jtc 
    248   1.1       jtc /*
    249   1.1       jtc  * ftree_add()
    250   1.1       jtc  *	add the arg to the linked list of files to process. Each will be
    251   1.1       jtc  *	processed by fts one at a time
    252   1.1       jtc  * Return:
    253   1.1       jtc  *	0 if added to the linked list, -1 if failed
    254   1.1       jtc  */
    255   1.1       jtc 
    256   1.1       jtc int
    257   1.9        is ftree_add(char *str, int isdir)
    258   1.1       jtc {
    259   1.5       tls 	FTREE *ft;
    260   1.5       tls 	int len;
    261   1.1       jtc 
    262   1.1       jtc 	/*
    263   1.1       jtc 	 * simple check for bad args
    264   1.1       jtc 	 */
    265   1.1       jtc 	if ((str == NULL) || (*str == '\0')) {
    266  1.26  christos 		tty_warn(0, "Invalid file name argument");
    267   1.1       jtc 		return(-1);
    268   1.1       jtc 	}
    269   1.1       jtc 
    270   1.1       jtc 	/*
    271   1.1       jtc 	 * allocate FTREE node and add to the end of the linked list (args are
    272   1.1       jtc 	 * processed in the same order they were passed to pax). Get rid of any
    273   1.1       jtc 	 * trailing / the user may pass us. (watch out for / by itself).
    274   1.1       jtc 	 */
    275   1.1       jtc 	if ((ft = (FTREE *)malloc(sizeof(FTREE))) == NULL) {
    276   1.6  christos 		tty_warn(0, "Unable to allocate memory for filename");
    277   1.1       jtc 		return(-1);
    278   1.1       jtc 	}
    279   1.1       jtc 
    280   1.1       jtc 	if (((len = strlen(str) - 1) > 0) && (str[len] == '/'))
    281   1.1       jtc 		str[len] = '\0';
    282   1.1       jtc 	ft->fname = str;
    283   1.9        is 	ft->refcnt = -isdir;
    284   1.1       jtc 	ft->fow = NULL;
    285   1.1       jtc 	if (fthead == NULL) {
    286   1.1       jtc 		fttail = fthead = ft;
    287   1.1       jtc 		return(0);
    288   1.1       jtc 	}
    289   1.1       jtc 	fttail->fow = ft;
    290   1.1       jtc 	fttail = ft;
    291   1.1       jtc 	return(0);
    292   1.1       jtc }
    293   1.1       jtc 
    294   1.1       jtc /*
    295   1.1       jtc  * ftree_sel()
    296   1.1       jtc  *	this entry has been selected by pax. bump up reference count and handle
    297   1.1       jtc  *	-n and -d processing.
    298   1.1       jtc  */
    299   1.1       jtc 
    300   1.1       jtc void
    301   1.5       tls ftree_sel(ARCHD *arcn)
    302   1.1       jtc {
    303   1.1       jtc 	/*
    304   1.1       jtc 	 * set reference bit for this pattern. This linked list is only used
    305   1.1       jtc 	 * when file trees are supplied pax as args. The list is not used when
    306   1.1       jtc 	 * the trees are read from stdin.
    307   1.1       jtc 	 */
    308  1.10     itohy 	if (ftcur != NULL)
    309   1.1       jtc 		ftcur->refcnt = 1;
    310   1.1       jtc 
    311   1.1       jtc 	/*
    312   1.1       jtc 	 * if -n we are done with this arg, force a skip to the next arg when
    313   1.1       jtc 	 * pax asks for the next file in next_file().
    314  1.12     lukem 	 * if -M we don't use fts(3), so the rest of this function is moot.
    315   1.1       jtc 	 * if -d we tell fts only to match the directory (if the arg is a dir)
    316   1.1       jtc 	 * and not the entire file tree rooted at that point.
    317   1.1       jtc 	 */
    318   1.1       jtc 	if (nflag)
    319   1.1       jtc 		ftree_skip = 1;
    320   1.1       jtc 
    321  1.12     lukem 	if (Mflag || !dflag || (arcn->type != PAX_DIR))
    322   1.1       jtc 		return;
    323   1.1       jtc 
    324   1.1       jtc 	if (ftent != NULL)
    325   1.1       jtc 		(void)fts_set(ftsp, ftent, FTS_SKIP);
    326   1.1       jtc }
    327   1.1       jtc 
    328   1.1       jtc /*
    329   1.1       jtc  * ftree_chk()
    330   1.1       jtc  *	called at end on pax execution. Prints all those file args that did not
    331   1.1       jtc  *	have a selected member (reference count still 0)
    332   1.1       jtc  */
    333   1.1       jtc 
    334   1.1       jtc void
    335   1.1       jtc ftree_chk(void)
    336   1.1       jtc {
    337   1.5       tls 	FTREE *ft;
    338   1.5       tls 	int wban = 0;
    339   1.1       jtc 
    340   1.1       jtc 	/*
    341   1.1       jtc 	 * make sure all dir access times were reset.
    342   1.1       jtc 	 */
    343   1.1       jtc 	if (tflag)
    344   1.1       jtc 		atdir_end();
    345   1.1       jtc 
    346   1.1       jtc 	/*
    347   1.1       jtc 	 * walk down list and check reference count. Print out those members
    348   1.1       jtc 	 * that never had a match
    349   1.1       jtc 	 */
    350   1.1       jtc 	for (ft = fthead; ft != NULL; ft = ft->fow) {
    351   1.9        is 		if (ft->refcnt != 0)
    352   1.1       jtc 			continue;
    353   1.1       jtc 		if (wban == 0) {
    354   1.6  christos 			tty_warn(1,
    355   1.6  christos 			    "WARNING! These file names were not selected:");
    356   1.1       jtc 			++wban;
    357   1.1       jtc 		}
    358   1.1       jtc 		(void)fprintf(stderr, "%s\n", ft->fname);
    359   1.1       jtc 	}
    360   1.1       jtc }
    361   1.1       jtc 
    362   1.1       jtc /*
    363   1.1       jtc  * ftree_arg()
    364   1.1       jtc  *	Get the next file arg for fts to process. Can be from either the linked
    365   1.1       jtc  *	list or read from stdin when the user did not them as args to pax. Each
    366   1.1       jtc  *	arg is processed until the first successful fts_open().
    367   1.1       jtc  * Return:
    368   1.1       jtc  *	0 when the next arg is ready to go, -1 if out of file args (or EOF on
    369   1.1       jtc  *	stdin).
    370   1.1       jtc  */
    371   1.1       jtc 
    372   1.1       jtc static int
    373   1.1       jtc ftree_arg(void)
    374   1.1       jtc {
    375   1.5       tls 	char *pt;
    376   1.1       jtc 
    377   1.1       jtc 	/*
    378   1.1       jtc 	 * close off the current file tree
    379   1.1       jtc 	 */
    380   1.1       jtc 	if (ftsp != NULL) {
    381   1.1       jtc 		(void)fts_close(ftsp);
    382   1.1       jtc 		ftsp = NULL;
    383   1.1       jtc 	}
    384   1.1       jtc 
    385   1.1       jtc 	/*
    386   1.1       jtc 	 * keep looping until we get a valid file tree to process. Stop when we
    387   1.1       jtc 	 * reach the end of the list (or get an eof on stdin)
    388   1.1       jtc 	 */
    389   1.1       jtc 	for(;;) {
    390   1.1       jtc 		if (fthead == NULL) {
    391   1.1       jtc 			/*
    392   1.1       jtc 			 * the user didn't supply any args, get the file trees
    393  1.10     itohy 			 * to process from stdin;
    394   1.1       jtc 			 */
    395   1.1       jtc 			if (fgets(farray[0], PAXPATHLEN+1, stdin) == NULL)
    396   1.1       jtc 				return(-1);
    397   1.1       jtc 			if ((pt = strchr(farray[0], '\n')) != NULL)
    398   1.1       jtc 				*pt = '\0';
    399   1.1       jtc 		} else {
    400   1.1       jtc 			/*
    401   1.1       jtc 			 * the user supplied the file args as arguements to pax
    402   1.1       jtc 			 */
    403   1.1       jtc 			if (ftcur == NULL)
    404   1.1       jtc 				ftcur = fthead;
    405   1.1       jtc 			else if ((ftcur = ftcur->fow) == NULL)
    406   1.1       jtc 				return(-1);
    407   1.9        is 
    408   1.9        is 			if (ftcur->refcnt < 0) {
    409   1.9        is 				/*
    410   1.9        is 				 * chdir entry.
    411   1.9        is 				 * Change directory and retry loop.
    412   1.9        is 				 */
    413   1.9        is 				if (ar_dochdir(ftcur->fname))
    414   1.9        is 					return (-1);
    415   1.9        is 				continue;
    416   1.9        is 			}
    417   1.1       jtc 			farray[0] = ftcur->fname;
    418   1.1       jtc 		}
    419   1.1       jtc 
    420   1.1       jtc 		/*
    421   1.1       jtc 		 * watch it, fts wants the file arg stored in a array of char
    422   1.1       jtc 		 * ptrs, with the last one a null. we use a two element array
    423   1.1       jtc 		 * and set farray[0] to point at the buffer with the file name
    424  1.10     itohy 		 * in it. We cannot pass all the file args to fts at one shot
    425   1.1       jtc 		 * as we need to keep a handle on which file arg generates what
    426   1.1       jtc 		 * files (the -n and -d flags need this). If the open is
    427   1.1       jtc 		 * successful, return a 0.
    428   1.1       jtc 		 */
    429   1.1       jtc 		if ((ftsp = fts_open(farray, ftsopts, NULL)) != NULL)
    430   1.1       jtc 			break;
    431   1.1       jtc 	}
    432   1.1       jtc 	return(0);
    433   1.1       jtc }
    434   1.1       jtc 
    435   1.1       jtc /*
    436   1.1       jtc  * next_file()
    437   1.1       jtc  *	supplies the next file to process in the supplied archd structure.
    438   1.1       jtc  * Return:
    439   1.1       jtc  *	0 when contents of arcn have been set with the next file, -1 when done.
    440   1.1       jtc  */
    441   1.1       jtc 
    442   1.1       jtc int
    443   1.5       tls next_file(ARCHD *arcn)
    444   1.1       jtc {
    445  1.18     lukem #ifndef SMALL
    446  1.12     lukem 	static	char	curdir[PAXPATHLEN+2], curpath[PAXPATHLEN+2];
    447  1.12     lukem 	static	int	curdirlen;
    448  1.12     lukem 
    449  1.12     lukem 	struct stat	statbuf;
    450  1.12     lukem 	FTSENT		Mftent;
    451  1.18     lukem #endif	/* SMALL */
    452  1.12     lukem 	int		cnt;
    453  1.12     lukem 	time_t		atime, mtime;
    454  1.12     lukem 	char		*curlink;
    455  1.12     lukem #define MFTENT_DUMMY_DEV	UINT_MAX
    456  1.12     lukem 
    457  1.12     lukem 	curlink = NULL;
    458  1.18     lukem #ifndef SMALL
    459  1.12     lukem 	/*
    460  1.12     lukem 	 * if parsing an mtree(8) specfile, build up `dummy' ftsent
    461  1.12     lukem 	 * from specfile info, and jump below to complete setup of arcn.
    462  1.12     lukem 	 */
    463  1.12     lukem 	if (Mflag) {
    464  1.20     lukem 		int	skipoptional;
    465  1.19     lukem 
    466  1.19     lukem  next_ftnode:
    467  1.20     lukem 		skipoptional = 0;
    468  1.12     lukem 		if (ftnode == NULL)		/* tree is empty */
    469  1.12     lukem 			return (-1);
    470  1.12     lukem 
    471  1.12     lukem 						/* get current name */
    472  1.12     lukem 		if (snprintf(curpath, sizeof(curpath), "%s%s%s",
    473  1.12     lukem 		    curdir, curdirlen ? "/" : "", ftnode->name)
    474  1.12     lukem 		    >= sizeof(curpath)) {
    475  1.15     lukem 			tty_warn(1, "line %lu: %s: %s", (u_long)ftnode->lineno,
    476  1.14     lukem 			    curdir, strerror(ENAMETOOLONG));
    477  1.12     lukem 			return (-1);
    478  1.12     lukem 		}
    479  1.12     lukem 		ftnode->flags |= F_VISIT;	/* mark node visited */
    480  1.12     lukem 
    481  1.12     lukem 						/* construct dummy FTSENT */
    482  1.12     lukem 		Mftent.fts_path = curpath;
    483  1.12     lukem 		Mftent.fts_statp = &statbuf;
    484  1.12     lukem 		Mftent.fts_pointer = ftnode;
    485  1.12     lukem 		ftent = &Mftent;
    486  1.18     lukem 						/* look for existing file */
    487  1.12     lukem 		if (lstat(Mftent.fts_path, &statbuf) == -1) {
    488  1.19     lukem 			if (ftnode->flags & F_OPT)
    489  1.20     lukem 				skipoptional = 1;
    490  1.19     lukem 
    491  1.18     lukem 						/* missing: fake up stat info */
    492  1.12     lukem 			memset(&statbuf, 0, sizeof(statbuf));
    493  1.12     lukem 			statbuf.st_dev = MFTENT_DUMMY_DEV;
    494  1.12     lukem 			statbuf.st_ino = ftnode->lineno;
    495  1.12     lukem 			statbuf.st_size = 0;
    496  1.12     lukem #define NODETEST(t, m)							\
    497  1.12     lukem 			if (!(t)) {					\
    498  1.15     lukem 				tty_warn(1, "line %lu: %s: %s not specified", \
    499  1.15     lukem 				    (u_long)ftnode->lineno,		\
    500  1.15     lukem 				    ftent->fts_path, m);		\
    501  1.12     lukem 				return(-1);				\
    502  1.12     lukem 			}
    503  1.12     lukem 			statbuf.st_mode = nodetoino(ftnode->type);
    504  1.12     lukem 			NODETEST(ftnode->flags & F_TYPE, "type");
    505  1.12     lukem 			NODETEST(ftnode->flags & F_MODE, "mode");
    506  1.12     lukem 			if (!(ftnode->flags & F_TIME))
    507  1.12     lukem 				statbuf.st_mtime = starttime;
    508  1.13     lukem 			NODETEST(ftnode->flags & (F_GID | F_GNAME), "group");
    509  1.13     lukem 			NODETEST(ftnode->flags & (F_UID | F_UNAME), "user");
    510  1.12     lukem 			if (ftnode->type == F_BLOCK || ftnode->type == F_CHAR)
    511  1.12     lukem 				NODETEST(ftnode->flags & F_DEV,
    512  1.12     lukem 				    "device number");
    513  1.12     lukem 			if (ftnode->type == F_LINK)
    514  1.12     lukem 				NODETEST(ftnode->flags & F_SLINK, "symlink");
    515  1.12     lukem 			/* don't require F_FLAGS or F_SIZE */
    516  1.12     lukem #undef NODETEST
    517  1.18     lukem 		} else {
    518  1.18     lukem 			if (ftnode->flags & F_TYPE && nodetoino(ftnode->type)
    519  1.18     lukem 			    != (statbuf.st_mode & S_IFMT)) {
    520  1.18     lukem 				tty_warn(1,
    521  1.15     lukem 			    "line %lu: %s: type mismatch: specfile %s, tree %s",
    522  1.18     lukem 				    (u_long)ftnode->lineno, ftent->fts_path,
    523  1.18     lukem 				    inotype(nodetoino(ftnode->type)),
    524  1.18     lukem 				    inotype(statbuf.st_mode));
    525  1.18     lukem 				return(-1);
    526  1.18     lukem 			}
    527  1.20     lukem 			if (ftnode->type == F_DIR && (ftnode->flags & F_OPT))
    528  1.20     lukem 				skipoptional = 1;
    529  1.12     lukem 		}
    530  1.12     lukem 		/*
    531  1.12     lukem 		 * override settings with those from specfile
    532  1.12     lukem 		 */
    533  1.12     lukem 		if (ftnode->flags & F_MODE) {
    534  1.12     lukem 			statbuf.st_mode &= ~ALLPERMS;
    535  1.12     lukem 			statbuf.st_mode |= (ftnode->st_mode & ALLPERMS);
    536  1.12     lukem 		}
    537  1.12     lukem 		if (ftnode->flags & (F_GID | F_GNAME))
    538  1.12     lukem 			statbuf.st_gid = ftnode->st_gid;
    539  1.12     lukem 		if (ftnode->flags & (F_UID | F_UNAME))
    540  1.12     lukem 			statbuf.st_uid = ftnode->st_uid;
    541  1.16        tv #if HAVE_STRUCT_STAT_ST_FLAGS
    542  1.12     lukem 		if (ftnode->flags & F_FLAGS)
    543  1.12     lukem 			statbuf.st_flags = ftnode->st_flags;
    544  1.16        tv #endif
    545  1.12     lukem 		if (ftnode->flags & F_TIME)
    546  1.16        tv #ifdef BSD4_4
    547  1.12     lukem 			statbuf.st_mtimespec = ftnode->st_mtimespec;
    548  1.16        tv #else
    549  1.16        tv 			statbuf.st_mtime = ftnode->st_mtimespec.tv_sec;
    550  1.16        tv #endif
    551  1.12     lukem 		if (ftnode->flags & F_DEV)
    552  1.12     lukem 			statbuf.st_rdev = ftnode->st_rdev;
    553  1.12     lukem 		if (ftnode->flags & F_SLINK)
    554  1.12     lukem 			curlink = ftnode->slink;
    555  1.12     lukem 				/* ignore F_SIZE */
    556  1.12     lukem 
    557  1.12     lukem 		/*
    558  1.12     lukem 		 * find next node
    559  1.12     lukem 		 */
    560  1.12     lukem 		if (ftnode->type == F_DIR && ftnode->child != NULL) {
    561  1.12     lukem 					/* directory with unseen child */
    562  1.12     lukem 			ftnode = ftnode->child;
    563  1.22  christos 			curdirlen = strlcpy(curdir, curpath, sizeof(curdir));
    564  1.12     lukem 		} else do {
    565  1.12     lukem 			if (ftnode->next != NULL) {
    566  1.12     lukem 					/* next node at current level */
    567  1.12     lukem 				ftnode = ftnode->next;
    568  1.12     lukem 			} else {	/* move back to parent */
    569  1.12     lukem 					/* reset time only on first cd.. */
    570  1.12     lukem 				if (Mftent.fts_pointer == ftnode && tflag &&
    571  1.12     lukem 				    (get_atdir(MFTENT_DUMMY_DEV, ftnode->lineno,
    572  1.12     lukem 				    &mtime, &atime) == 0)) {
    573  1.12     lukem 					set_ftime(ftent->fts_path,
    574  1.12     lukem 					    mtime, atime, 1);
    575  1.12     lukem 				}
    576  1.21     lukem 				ftnode = ftnode->parent;
    577  1.12     lukem 				if (ftnode->parent == ftnode)
    578  1.12     lukem 					ftnode = NULL;
    579  1.21     lukem 				else {
    580  1.12     lukem 					curdirlen -= strlen(ftnode->name) + 1;
    581  1.12     lukem 					curdir[curdirlen] = '\0';
    582  1.12     lukem 				}
    583  1.12     lukem 			}
    584  1.12     lukem 		} while (ftnode != NULL && ftnode->flags & F_VISIT);
    585  1.20     lukem 		if (skipoptional)	/* skip optional entries */
    586  1.19     lukem 			goto next_ftnode;
    587  1.12     lukem 		goto got_ftent;
    588  1.12     lukem 	}
    589  1.18     lukem #endif	/* SMALL */
    590   1.1       jtc 
    591   1.1       jtc 	/*
    592   1.1       jtc 	 * ftree_sel() might have set the ftree_skip flag if the user has the
    593   1.1       jtc 	 * -n option and a file was selected from this file arg tree. (-n says
    594  1.10     itohy 	 * only one member is matched for each pattern) ftree_skip being 1
    595   1.1       jtc 	 * forces us to go to the next arg now.
    596   1.1       jtc 	 */
    597   1.1       jtc 	if (ftree_skip) {
    598   1.1       jtc 		/*
    599   1.1       jtc 		 * clear and go to next arg
    600   1.1       jtc 		 */
    601   1.1       jtc 		ftree_skip = 0;
    602   1.1       jtc 		if (ftree_arg() < 0)
    603   1.1       jtc 			return(-1);
    604   1.1       jtc 	}
    605   1.1       jtc 
    606  1.24  christos 	if (ftsp == NULL)
    607  1.24  christos 		return -1;
    608   1.1       jtc 	/*
    609   1.1       jtc 	 * loop until we get a valid file to process
    610   1.1       jtc 	 */
    611   1.1       jtc 	for(;;) {
    612   1.1       jtc 		if ((ftent = fts_read(ftsp)) == NULL) {
    613   1.1       jtc 			/*
    614   1.1       jtc 			 * out of files in this tree, go to next arg, if none
    615   1.1       jtc 			 * we are done
    616   1.1       jtc 			 */
    617   1.1       jtc 			if (ftree_arg() < 0)
    618   1.1       jtc 				return(-1);
    619   1.1       jtc 			continue;
    620   1.1       jtc 		}
    621   1.1       jtc 
    622   1.1       jtc 		/*
    623   1.1       jtc 		 * handle each type of fts_read() flag
    624   1.1       jtc 		 */
    625   1.1       jtc 		switch(ftent->fts_info) {
    626   1.1       jtc 		case FTS_D:
    627   1.1       jtc 		case FTS_DEFAULT:
    628   1.1       jtc 		case FTS_F:
    629   1.1       jtc 		case FTS_SL:
    630   1.1       jtc 		case FTS_SLNONE:
    631   1.1       jtc 			/*
    632   1.1       jtc 			 * these are all ok
    633   1.1       jtc 			 */
    634   1.1       jtc 			break;
    635   1.1       jtc 		case FTS_DP:
    636   1.1       jtc 			/*
    637   1.1       jtc 			 * already saw this directory. If the user wants file
    638   1.1       jtc 			 * access times reset, we use this to restore the
    639   1.1       jtc 			 * access time for this directory since this is the
    640   1.1       jtc 			 * last time we will see it in this file subtree
    641   1.1       jtc 			 * remember to force the time (this is -t on a read
    642   1.1       jtc 			 * directory, not a created directory).
    643   1.1       jtc 			 */
    644  1.11     lukem 			if (!tflag || (get_atdir(
    645  1.11     lukem #ifdef NET2_FTS
    646  1.11     lukem 			    ftent->fts_statb.st_dev, ftent->fts_statb.st_ino,
    647  1.11     lukem #else
    648  1.11     lukem 			    ftent->fts_statp->st_dev, ftent->fts_statp->st_ino,
    649  1.11     lukem #endif
    650  1.11     lukem 			    &mtime, &atime) < 0))
    651   1.1       jtc 				continue;
    652   1.1       jtc 			set_ftime(ftent->fts_path, mtime, atime, 1);
    653   1.1       jtc 			continue;
    654   1.1       jtc 		case FTS_DC:
    655   1.1       jtc 			/*
    656   1.1       jtc 			 * fts claims a file system cycle
    657   1.1       jtc 			 */
    658   1.6  christos 			tty_warn(1,"File system cycle found at %s",
    659   1.6  christos 			    ftent->fts_path);
    660   1.1       jtc 			continue;
    661   1.1       jtc 		case FTS_DNR:
    662  1.11     lukem 			syswarn(1, FTS_ERRNO(ftent),
    663   1.1       jtc 			    "Unable to read directory %s", ftent->fts_path);
    664   1.1       jtc 			continue;
    665   1.1       jtc 		case FTS_ERR:
    666  1.11     lukem 			syswarn(1, FTS_ERRNO(ftent),
    667   1.1       jtc 			    "File system traversal error");
    668   1.1       jtc 			continue;
    669   1.1       jtc 		case FTS_NS:
    670   1.1       jtc 		case FTS_NSOK:
    671  1.11     lukem 			syswarn(1, FTS_ERRNO(ftent),
    672   1.1       jtc 			    "Unable to access %s", ftent->fts_path);
    673   1.1       jtc 			continue;
    674   1.1       jtc 		}
    675   1.1       jtc 
    676  1.18     lukem #ifndef SMALL
    677  1.12     lukem  got_ftent:
    678  1.18     lukem #endif	/* SMALL */
    679   1.1       jtc 		/*
    680   1.1       jtc 		 * ok got a file tree node to process. copy info into arcn
    681   1.1       jtc 		 * structure (initialize as required)
    682   1.1       jtc 		 */
    683   1.1       jtc 		arcn->skip = 0;
    684   1.1       jtc 		arcn->pad = 0;
    685   1.1       jtc 		arcn->ln_nlen = 0;
    686   1.1       jtc 		arcn->ln_name[0] = '\0';
    687  1.11     lukem #ifdef NET2_FTS
    688   1.1       jtc 		arcn->sb = ftent->fts_statb;
    689  1.11     lukem #else
    690   1.1       jtc 		arcn->sb = *(ftent->fts_statp);
    691  1.11     lukem #endif
    692   1.1       jtc 
    693   1.1       jtc 		/*
    694   1.1       jtc 		 * file type based set up and copy into the arcn struct
    695   1.1       jtc 		 * SIDE NOTE:
    696   1.1       jtc 		 * we try to reset the access time on all files and directories
    697   1.1       jtc 		 * we may read when the -t flag is specified. files are reset
    698   1.1       jtc 		 * when we close them after copying. we reset the directories
    699   1.1       jtc 		 * when we are done with their file tree (we also clean up at
    700   1.1       jtc 		 * end in case we cut short a file tree traversal). However
    701   1.1       jtc 		 * there is no way to reset access times on symlinks.
    702   1.1       jtc 		 */
    703   1.1       jtc 		switch(S_IFMT & arcn->sb.st_mode) {
    704   1.1       jtc 		case S_IFDIR:
    705   1.1       jtc 			arcn->type = PAX_DIR;
    706   1.1       jtc 			if (!tflag)
    707   1.1       jtc 				break;
    708   1.1       jtc 			add_atdir(ftent->fts_path, arcn->sb.st_dev,
    709   1.1       jtc 			    arcn->sb.st_ino, arcn->sb.st_mtime,
    710   1.1       jtc 			    arcn->sb.st_atime);
    711   1.1       jtc 			break;
    712   1.1       jtc 		case S_IFCHR:
    713   1.1       jtc 			arcn->type = PAX_CHR;
    714   1.1       jtc 			break;
    715   1.1       jtc 		case S_IFBLK:
    716   1.1       jtc 			arcn->type = PAX_BLK;
    717   1.1       jtc 			break;
    718   1.1       jtc 		case S_IFREG:
    719   1.1       jtc 			/*
    720   1.1       jtc 			 * only regular files with have data to store on the
    721   1.1       jtc 			 * archive. all others will store a zero length skip.
    722   1.1       jtc 			 * the skip field is used by pax for actual data it has
    723   1.1       jtc 			 * to read (or skip over).
    724   1.1       jtc 			 */
    725   1.1       jtc 			arcn->type = PAX_REG;
    726   1.1       jtc 			arcn->skip = arcn->sb.st_size;
    727   1.1       jtc 			break;
    728   1.1       jtc 		case S_IFLNK:
    729   1.1       jtc 			arcn->type = PAX_SLK;
    730  1.12     lukem 			if (curlink != NULL) {
    731  1.22  christos 				cnt = strlcpy(arcn->ln_name, curlink,
    732  1.12     lukem 				    sizeof(arcn->ln_name));
    733   1.1       jtc 			/*
    734   1.1       jtc 			 * have to read the symlink path from the file
    735   1.1       jtc 			 */
    736  1.12     lukem 			} else if ((cnt =
    737  1.12     lukem 			    readlink(ftent->fts_path, arcn->ln_name,
    738  1.25    itojun 			    sizeof(arcn->ln_name) - 1)) < 0) {
    739   1.1       jtc 				syswarn(1, errno, "Unable to read symlink %s",
    740   1.1       jtc 				    ftent->fts_path);
    741   1.1       jtc 				continue;
    742   1.1       jtc 			}
    743   1.1       jtc 			/*
    744   1.1       jtc 			 * set link name length, watch out readlink does not
    745   1.1       jtc 			 * allways null terminate the link path
    746   1.1       jtc 			 */
    747   1.1       jtc 			arcn->ln_name[cnt] = '\0';
    748   1.1       jtc 			arcn->ln_nlen = cnt;
    749   1.1       jtc 			break;
    750   1.1       jtc 		case S_IFSOCK:
    751   1.1       jtc 			/*
    752   1.1       jtc 			 * under BSD storing a socket is senseless but we will
    753   1.1       jtc 			 * let the format specific write function make the
    754   1.1       jtc 			 * decision of what to do with it.
    755   1.1       jtc 			 */
    756   1.1       jtc 			arcn->type = PAX_SCK;
    757   1.1       jtc 			break;
    758   1.1       jtc 		case S_IFIFO:
    759   1.1       jtc 			arcn->type = PAX_FIF;
    760   1.1       jtc 			break;
    761   1.1       jtc 		}
    762   1.1       jtc 		break;
    763   1.1       jtc 	}
    764   1.1       jtc 
    765   1.1       jtc 	/*
    766   1.1       jtc 	 * copy file name, set file name length
    767   1.1       jtc 	 */
    768  1.22  christos 	arcn->nlen = strlcpy(arcn->name, ftent->fts_path, sizeof(arcn->name));
    769   1.1       jtc 	arcn->org_name = ftent->fts_path;
    770  1.24  christos 	if (strcmp(NM_CPIO, argv0) == 0) {
    771  1.24  christos 		/*
    772  1.24  christos 		 * cpio does *not* descend directories listed in the
    773  1.24  christos 		 * arguments, unlike pax/tar, so needs special handling
    774  1.24  christos 		 * here.  failure to do so results in massive amounts
    775  1.24  christos 		 * of duplicated files in the output. We kill fts after
    776  1.24  christos 		 * the first name is extracted, what a waste.
    777  1.24  christos 		 */
    778  1.24  christos 		ftcur->refcnt = 1;
    779  1.24  christos 		(void)ftree_arg();
    780  1.24  christos 	}
    781   1.1       jtc 	return(0);
    782   1.1       jtc }
    783