2004-07-02 20:26:53 +04:00
|
|
|
/* $NetBSD: ftree.c,v 1.32 2004/07/02 16:26:53 christos Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1994-06-13 20:13:35 +04:00
|
|
|
/*-
|
2003-10-13 11:41:22 +04:00
|
|
|
* Copyright (c) 1992 Keith Muller.
|
1994-06-13 20:13:35 +04:00
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Keith Muller of the University of California, San Diego.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:05:01 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Luke Mewburn of Wasabi Systems.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#endif
|
|
|
|
|
1997-07-21 00:32:15 +04:00
|
|
|
#include <sys/cdefs.h>
|
2003-10-27 03:12:41 +03:00
|
|
|
#if !defined(lint)
|
1995-03-21 12:01:59 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)ftree.c 8.2 (Berkeley) 4/18/94";
|
|
|
|
#else
|
2004-07-02 20:26:53 +04:00
|
|
|
__RCSID("$NetBSD: ftree.c,v 1.32 2004/07/02 16:26:53 christos Exp $");
|
1995-03-21 12:01:59 +03:00
|
|
|
#endif
|
1994-06-13 20:13:35 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
2002-02-01 01:43:33 +03:00
|
|
|
#include <fts.h>
|
|
|
|
#include <stdio.h>
|
1994-06-13 20:13:35 +04:00
|
|
|
#include <stdlib.h>
|
2002-02-01 01:43:33 +03:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1994-06-13 20:13:35 +04:00
|
|
|
#include "pax.h"
|
|
|
|
#include "ftree.h"
|
|
|
|
#include "extern.h"
|
2002-10-12 19:39:29 +04:00
|
|
|
#include "options.h"
|
2002-02-02 15:34:39 +03:00
|
|
|
#ifndef SMALL
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
#include "mtree.h"
|
2002-02-02 15:34:39 +03:00
|
|
|
#endif /* SMALL */
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* routines to interface with the fts library function.
|
|
|
|
*
|
|
|
|
* file args supplied to pax are stored on a single linked list (of type FTREE)
|
|
|
|
* and given to fts to be processed one at a time. pax "selects" files from
|
|
|
|
* the expansion of each arg into the corresponding file tree (if the arg is a
|
|
|
|
* directory, otherwise the node itself is just passed to pax). The selection
|
|
|
|
* is modified by the -n and -u flags. The user is informed when a specific
|
|
|
|
* file arg does not generate any selected files. -n keeps expanding the file
|
|
|
|
* tree arg until one of its files is selected, then skips to the next file
|
|
|
|
* arg. when the user does not supply the file trees as command line args to
|
|
|
|
* pax, they are read from stdin
|
|
|
|
*/
|
|
|
|
|
2000-02-17 06:12:22 +03:00
|
|
|
static FTS *ftsp = NULL; /* current FTS handle */
|
1994-06-13 20:13:35 +04:00
|
|
|
static int ftsopts; /* options to be used on fts_open */
|
|
|
|
static char *farray[2]; /* array for passing each arg to fts */
|
|
|
|
static FTREE *fthead = NULL; /* head of linked list of file args */
|
|
|
|
static FTREE *fttail = NULL; /* tail of linked list of file args */
|
|
|
|
static FTREE *ftcur = NULL; /* current file arg being processed */
|
|
|
|
static FTSENT *ftent = NULL; /* current file tree entry */
|
|
|
|
static int ftree_skip; /* when set skip to next file arg */
|
2002-02-02 15:34:39 +03:00
|
|
|
#ifndef SMALL
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
static NODE *ftnode = NULL; /* mtree(8) specfile; used by -M */
|
2002-02-02 15:34:39 +03:00
|
|
|
#endif /* SMALL */
|
1994-06-13 20:13:35 +04:00
|
|
|
|
2001-10-25 09:33:32 +04:00
|
|
|
static int ftree_arg(void);
|
|
|
|
|
|
|
|
#ifdef NET2_FTS
|
|
|
|
#define FTS_ERRNO(x) errno
|
|
|
|
#else
|
|
|
|
#define FTS_ERRNO(x) (x)->fts_errno
|
|
|
|
#endif
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ftree_start()
|
|
|
|
* initialize the options passed to fts_open() during this run of pax
|
|
|
|
* options are based on the selection of pax options by the user
|
|
|
|
* fts_start() also calls fts_arg() to open the first valid file arg. We
|
|
|
|
* also attempt to reset directory access times when -t (tflag) is set.
|
|
|
|
* Return:
|
|
|
|
* 0 if there is at least one valid file arg to process, -1 otherwise
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2004-06-19 06:27:00 +04:00
|
|
|
ftree_start()
|
1994-06-13 20:13:35 +04:00
|
|
|
{
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
|
2002-02-02 15:34:39 +03:00
|
|
|
#ifndef SMALL
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
/*
|
|
|
|
* if -M is given, the list of filenames on stdin is actually
|
|
|
|
* an mtree(8) specfile, so parse the specfile into a NODE *
|
|
|
|
* tree at ftnode, for use by next_file()
|
|
|
|
*/
|
|
|
|
if (Mflag) {
|
|
|
|
if (fthead != NULL) {
|
|
|
|
tty_warn(1,
|
|
|
|
"The -M flag is only supported when reading file list from stdin");
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
ftnode = spec(stdin);
|
|
|
|
if (ftnode != NULL &&
|
|
|
|
(ftnode->type != F_DIR || strcmp(ftnode->name, ".") != 0)) {
|
|
|
|
tty_warn(1,
|
|
|
|
"First node of specfile is not `.' directory");
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
2002-02-02 15:34:39 +03:00
|
|
|
#endif /* SMALL */
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
|
1994-06-13 20:13:35 +04:00
|
|
|
/*
|
|
|
|
* set up the operation mode of fts, open the first file arg. We must
|
|
|
|
* use FTS_NOCHDIR, as the user may have to open multiple archives and
|
|
|
|
* if fts did a chdir off into the boondocks, we may create an archive
|
|
|
|
* volume in an place where the user did not expect to.
|
|
|
|
*/
|
|
|
|
ftsopts = FTS_NOCHDIR;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* optional user flags that effect file traversal
|
|
|
|
* -H command line symlink follow only (half follow)
|
|
|
|
* -L follow sylinks (logical)
|
|
|
|
* -P do not follow sylinks (physical). This is the default.
|
|
|
|
* -X do not cross over mount points
|
|
|
|
* -t preserve access times on files read.
|
|
|
|
* -n select only the first member of a file tree when a match is found
|
|
|
|
* -d do not extract subtrees rooted at a directory arg.
|
|
|
|
*/
|
|
|
|
if (Lflag)
|
|
|
|
ftsopts |= FTS_LOGICAL;
|
|
|
|
else
|
|
|
|
ftsopts |= FTS_PHYSICAL;
|
|
|
|
if (Hflag)
|
2001-10-25 09:33:32 +04:00
|
|
|
#ifdef NET2_FTS
|
1997-07-21 00:32:15 +04:00
|
|
|
tty_warn(0, "The -H flag is not supported on this version");
|
2001-10-25 09:33:32 +04:00
|
|
|
#else
|
1994-06-13 20:13:35 +04:00
|
|
|
ftsopts |= FTS_COMFOLLOW;
|
2001-10-25 09:33:32 +04:00
|
|
|
#endif
|
1994-06-13 20:13:35 +04:00
|
|
|
if (Xflag)
|
|
|
|
ftsopts |= FTS_XDEV;
|
|
|
|
|
|
|
|
if ((fthead == NULL) && ((farray[0] = malloc(PAXPATHLEN+2)) == NULL)) {
|
1997-07-21 00:32:15 +04:00
|
|
|
tty_warn(1, "Unable to allocate memory for file name buffer");
|
1994-06-13 20:13:35 +04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ftree_arg() < 0)
|
|
|
|
return(-1);
|
|
|
|
if (tflag && (atdir_start() < 0))
|
|
|
|
return(-1);
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ftree_add()
|
|
|
|
* add the arg to the linked list of files to process. Each will be
|
|
|
|
* processed by fts one at a time
|
|
|
|
* Return:
|
|
|
|
* 0 if added to the linked list, -1 if failed
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
1999-10-23 00:59:08 +04:00
|
|
|
ftree_add(char *str, int isdir)
|
1994-06-13 20:13:35 +04:00
|
|
|
{
|
1997-01-11 05:04:27 +03:00
|
|
|
FTREE *ft;
|
|
|
|
int len;
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* simple check for bad args
|
|
|
|
*/
|
|
|
|
if ((str == NULL) || (*str == '\0')) {
|
2003-06-23 17:14:43 +04:00
|
|
|
tty_warn(0, "Invalid file name argument");
|
1994-06-13 20:13:35 +04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate FTREE node and add to the end of the linked list (args are
|
|
|
|
* processed in the same order they were passed to pax). Get rid of any
|
|
|
|
* trailing / the user may pass us. (watch out for / by itself).
|
|
|
|
*/
|
|
|
|
if ((ft = (FTREE *)malloc(sizeof(FTREE))) == NULL) {
|
1997-07-21 00:32:15 +04:00
|
|
|
tty_warn(0, "Unable to allocate memory for filename");
|
1994-06-13 20:13:35 +04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((len = strlen(str) - 1) > 0) && (str[len] == '/'))
|
|
|
|
str[len] = '\0';
|
|
|
|
ft->fname = str;
|
1999-10-23 00:59:08 +04:00
|
|
|
ft->refcnt = -isdir;
|
1994-06-13 20:13:35 +04:00
|
|
|
ft->fow = NULL;
|
|
|
|
if (fthead == NULL) {
|
|
|
|
fttail = fthead = ft;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
fttail->fow = ft;
|
|
|
|
fttail = ft;
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ftree_sel()
|
|
|
|
* this entry has been selected by pax. bump up reference count and handle
|
|
|
|
* -n and -d processing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
1997-01-11 05:04:27 +03:00
|
|
|
ftree_sel(ARCHD *arcn)
|
1994-06-13 20:13:35 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* set reference bit for this pattern. This linked list is only used
|
|
|
|
* when file trees are supplied pax as args. The list is not used when
|
|
|
|
* the trees are read from stdin.
|
|
|
|
*/
|
2000-02-17 06:12:22 +03:00
|
|
|
if (ftcur != NULL)
|
1994-06-13 20:13:35 +04:00
|
|
|
ftcur->refcnt = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if -n we are done with this arg, force a skip to the next arg when
|
|
|
|
* pax asks for the next file in next_file().
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
* if -M we don't use fts(3), so the rest of this function is moot.
|
1994-06-13 20:13:35 +04:00
|
|
|
* if -d we tell fts only to match the directory (if the arg is a dir)
|
|
|
|
* and not the entire file tree rooted at that point.
|
|
|
|
*/
|
|
|
|
if (nflag)
|
|
|
|
ftree_skip = 1;
|
|
|
|
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (Mflag || !dflag || (arcn->type != PAX_DIR))
|
1994-06-13 20:13:35 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (ftent != NULL)
|
|
|
|
(void)fts_set(ftsp, ftent, FTS_SKIP);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ftree_chk()
|
|
|
|
* called at end on pax execution. Prints all those file args that did not
|
|
|
|
* have a selected member (reference count still 0)
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
ftree_chk(void)
|
|
|
|
{
|
1997-01-11 05:04:27 +03:00
|
|
|
FTREE *ft;
|
|
|
|
int wban = 0;
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* make sure all dir access times were reset.
|
|
|
|
*/
|
|
|
|
if (tflag)
|
|
|
|
atdir_end();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* walk down list and check reference count. Print out those members
|
|
|
|
* that never had a match
|
|
|
|
*/
|
|
|
|
for (ft = fthead; ft != NULL; ft = ft->fow) {
|
1999-10-23 00:59:08 +04:00
|
|
|
if (ft->refcnt != 0)
|
1994-06-13 20:13:35 +04:00
|
|
|
continue;
|
|
|
|
if (wban == 0) {
|
1997-07-21 00:32:15 +04:00
|
|
|
tty_warn(1,
|
|
|
|
"WARNING! These file names were not selected:");
|
1994-06-13 20:13:35 +04:00
|
|
|
++wban;
|
|
|
|
}
|
|
|
|
(void)fprintf(stderr, "%s\n", ft->fname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ftree_arg()
|
|
|
|
* Get the next file arg for fts to process. Can be from either the linked
|
|
|
|
* list or read from stdin when the user did not them as args to pax. Each
|
|
|
|
* arg is processed until the first successful fts_open().
|
|
|
|
* Return:
|
|
|
|
* 0 when the next arg is ready to go, -1 if out of file args (or EOF on
|
|
|
|
* stdin).
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
ftree_arg(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* close off the current file tree
|
|
|
|
*/
|
|
|
|
if (ftsp != NULL) {
|
|
|
|
(void)fts_close(ftsp);
|
|
|
|
ftsp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* keep looping until we get a valid file tree to process. Stop when we
|
|
|
|
* reach the end of the list (or get an eof on stdin)
|
|
|
|
*/
|
|
|
|
for(;;) {
|
|
|
|
if (fthead == NULL) {
|
2004-06-19 06:27:00 +04:00
|
|
|
int i, c = EOF;
|
1994-06-13 20:13:35 +04:00
|
|
|
/*
|
|
|
|
* the user didn't supply any args, get the file trees
|
2000-02-17 06:12:22 +03:00
|
|
|
* to process from stdin;
|
1994-06-13 20:13:35 +04:00
|
|
|
*/
|
2004-06-19 06:27:00 +04:00
|
|
|
for (i = 0; i < PAXPATHLEN + 2; i++) {
|
|
|
|
c = getchar();
|
|
|
|
if (c == EOF)
|
|
|
|
break;
|
|
|
|
else if (c == sep) {
|
|
|
|
if (i != 0)
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
farray[0][i] = c;
|
|
|
|
}
|
|
|
|
if (i == 0)
|
|
|
|
return -1;
|
|
|
|
farray[0][i] = '\0';
|
1994-06-13 20:13:35 +04:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* the user supplied the file args as arguements to pax
|
|
|
|
*/
|
|
|
|
if (ftcur == NULL)
|
|
|
|
ftcur = fthead;
|
|
|
|
else if ((ftcur = ftcur->fow) == NULL)
|
|
|
|
return(-1);
|
1999-10-23 00:59:08 +04:00
|
|
|
|
|
|
|
if (ftcur->refcnt < 0) {
|
|
|
|
/*
|
|
|
|
* chdir entry.
|
|
|
|
* Change directory and retry loop.
|
|
|
|
*/
|
|
|
|
if (ar_dochdir(ftcur->fname))
|
|
|
|
return (-1);
|
|
|
|
continue;
|
|
|
|
}
|
1994-06-13 20:13:35 +04:00
|
|
|
farray[0] = ftcur->fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* watch it, fts wants the file arg stored in a array of char
|
|
|
|
* ptrs, with the last one a null. we use a two element array
|
|
|
|
* and set farray[0] to point at the buffer with the file name
|
2000-02-17 06:12:22 +03:00
|
|
|
* in it. We cannot pass all the file args to fts at one shot
|
1994-06-13 20:13:35 +04:00
|
|
|
* as we need to keep a handle on which file arg generates what
|
|
|
|
* files (the -n and -d flags need this). If the open is
|
|
|
|
* successful, return a 0.
|
|
|
|
*/
|
|
|
|
if ((ftsp = fts_open(farray, ftsopts, NULL)) != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* next_file()
|
|
|
|
* supplies the next file to process in the supplied archd structure.
|
|
|
|
* Return:
|
|
|
|
* 0 when contents of arcn have been set with the next file, -1 when done.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
1997-01-11 05:04:27 +03:00
|
|
|
next_file(ARCHD *arcn)
|
1994-06-13 20:13:35 +04:00
|
|
|
{
|
2002-02-02 15:34:39 +03:00
|
|
|
#ifndef SMALL
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
static char curdir[PAXPATHLEN+2], curpath[PAXPATHLEN+2];
|
|
|
|
static int curdirlen;
|
|
|
|
|
|
|
|
struct stat statbuf;
|
|
|
|
FTSENT Mftent;
|
2002-02-02 15:34:39 +03:00
|
|
|
#endif /* SMALL */
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
int cnt;
|
|
|
|
time_t atime, mtime;
|
|
|
|
char *curlink;
|
|
|
|
#define MFTENT_DUMMY_DEV UINT_MAX
|
|
|
|
|
|
|
|
curlink = NULL;
|
2002-02-02 15:34:39 +03:00
|
|
|
#ifndef SMALL
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
/*
|
|
|
|
* if parsing an mtree(8) specfile, build up `dummy' ftsent
|
|
|
|
* from specfile info, and jump below to complete setup of arcn.
|
|
|
|
*/
|
|
|
|
if (Mflag) {
|
2002-04-21 03:36:48 +04:00
|
|
|
int skipoptional;
|
2002-04-12 08:44:08 +04:00
|
|
|
|
|
|
|
next_ftnode:
|
2002-04-21 03:36:48 +04:00
|
|
|
skipoptional = 0;
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (ftnode == NULL) /* tree is empty */
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/* get current name */
|
|
|
|
if (snprintf(curpath, sizeof(curpath), "%s%s%s",
|
|
|
|
curdir, curdirlen ? "/" : "", ftnode->name)
|
|
|
|
>= sizeof(curpath)) {
|
2001-10-26 20:03:24 +04:00
|
|
|
tty_warn(1, "line %lu: %s: %s", (u_long)ftnode->lineno,
|
2001-10-26 19:58:43 +04:00
|
|
|
curdir, strerror(ENAMETOOLONG));
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
ftnode->flags |= F_VISIT; /* mark node visited */
|
|
|
|
|
|
|
|
/* construct dummy FTSENT */
|
|
|
|
Mftent.fts_path = curpath;
|
|
|
|
Mftent.fts_statp = &statbuf;
|
|
|
|
Mftent.fts_pointer = ftnode;
|
|
|
|
ftent = &Mftent;
|
2002-02-02 15:34:39 +03:00
|
|
|
/* look for existing file */
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (lstat(Mftent.fts_path, &statbuf) == -1) {
|
2002-04-12 08:44:08 +04:00
|
|
|
if (ftnode->flags & F_OPT)
|
2002-04-21 03:36:48 +04:00
|
|
|
skipoptional = 1;
|
2002-04-12 08:44:08 +04:00
|
|
|
|
2002-02-02 15:34:39 +03:00
|
|
|
/* missing: fake up stat info */
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
memset(&statbuf, 0, sizeof(statbuf));
|
|
|
|
statbuf.st_dev = MFTENT_DUMMY_DEV;
|
|
|
|
statbuf.st_ino = ftnode->lineno;
|
|
|
|
statbuf.st_size = 0;
|
|
|
|
#define NODETEST(t, m) \
|
|
|
|
if (!(t)) { \
|
2001-10-26 20:03:24 +04:00
|
|
|
tty_warn(1, "line %lu: %s: %s not specified", \
|
|
|
|
(u_long)ftnode->lineno, \
|
|
|
|
ftent->fts_path, m); \
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
return(-1); \
|
|
|
|
}
|
|
|
|
statbuf.st_mode = nodetoino(ftnode->type);
|
|
|
|
NODETEST(ftnode->flags & F_TYPE, "type");
|
|
|
|
NODETEST(ftnode->flags & F_MODE, "mode");
|
|
|
|
if (!(ftnode->flags & F_TIME))
|
|
|
|
statbuf.st_mtime = starttime;
|
2001-10-25 17:54:54 +04:00
|
|
|
NODETEST(ftnode->flags & (F_GID | F_GNAME), "group");
|
|
|
|
NODETEST(ftnode->flags & (F_UID | F_UNAME), "user");
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (ftnode->type == F_BLOCK || ftnode->type == F_CHAR)
|
|
|
|
NODETEST(ftnode->flags & F_DEV,
|
|
|
|
"device number");
|
|
|
|
if (ftnode->type == F_LINK)
|
|
|
|
NODETEST(ftnode->flags & F_SLINK, "symlink");
|
|
|
|
/* don't require F_FLAGS or F_SIZE */
|
|
|
|
#undef NODETEST
|
2002-02-02 15:34:39 +03:00
|
|
|
} else {
|
|
|
|
if (ftnode->flags & F_TYPE && nodetoino(ftnode->type)
|
|
|
|
!= (statbuf.st_mode & S_IFMT)) {
|
|
|
|
tty_warn(1,
|
2001-10-26 20:03:24 +04:00
|
|
|
"line %lu: %s: type mismatch: specfile %s, tree %s",
|
2002-02-02 15:34:39 +03:00
|
|
|
(u_long)ftnode->lineno, ftent->fts_path,
|
|
|
|
inotype(nodetoino(ftnode->type)),
|
|
|
|
inotype(statbuf.st_mode));
|
|
|
|
return(-1);
|
|
|
|
}
|
2002-04-21 03:36:48 +04:00
|
|
|
if (ftnode->type == F_DIR && (ftnode->flags & F_OPT))
|
|
|
|
skipoptional = 1;
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* override settings with those from specfile
|
|
|
|
*/
|
|
|
|
if (ftnode->flags & F_MODE) {
|
|
|
|
statbuf.st_mode &= ~ALLPERMS;
|
|
|
|
statbuf.st_mode |= (ftnode->st_mode & ALLPERMS);
|
|
|
|
}
|
|
|
|
if (ftnode->flags & (F_GID | F_GNAME))
|
|
|
|
statbuf.st_gid = ftnode->st_gid;
|
|
|
|
if (ftnode->flags & (F_UID | F_UNAME))
|
|
|
|
statbuf.st_uid = ftnode->st_uid;
|
2002-01-29 13:20:28 +03:00
|
|
|
#if HAVE_STRUCT_STAT_ST_FLAGS
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (ftnode->flags & F_FLAGS)
|
|
|
|
statbuf.st_flags = ftnode->st_flags;
|
2002-01-29 13:20:28 +03:00
|
|
|
#endif
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (ftnode->flags & F_TIME)
|
2004-06-21 02:20:14 +04:00
|
|
|
#if BSD4_4 && !HAVE_NBTOOL_CONFIG_H
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
statbuf.st_mtimespec = ftnode->st_mtimespec;
|
2002-01-29 13:20:28 +03:00
|
|
|
#else
|
|
|
|
statbuf.st_mtime = ftnode->st_mtimespec.tv_sec;
|
|
|
|
#endif
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (ftnode->flags & F_DEV)
|
|
|
|
statbuf.st_rdev = ftnode->st_rdev;
|
|
|
|
if (ftnode->flags & F_SLINK)
|
|
|
|
curlink = ftnode->slink;
|
|
|
|
/* ignore F_SIZE */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find next node
|
|
|
|
*/
|
|
|
|
if (ftnode->type == F_DIR && ftnode->child != NULL) {
|
|
|
|
/* directory with unseen child */
|
|
|
|
ftnode = ftnode->child;
|
2002-10-12 19:39:29 +04:00
|
|
|
curdirlen = strlcpy(curdir, curpath, sizeof(curdir));
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
} else do {
|
|
|
|
if (ftnode->next != NULL) {
|
|
|
|
/* next node at current level */
|
|
|
|
ftnode = ftnode->next;
|
|
|
|
} else { /* move back to parent */
|
|
|
|
/* reset time only on first cd.. */
|
|
|
|
if (Mftent.fts_pointer == ftnode && tflag &&
|
|
|
|
(get_atdir(MFTENT_DUMMY_DEV, ftnode->lineno,
|
|
|
|
&mtime, &atime) == 0)) {
|
|
|
|
set_ftime(ftent->fts_path,
|
|
|
|
mtime, atime, 1);
|
|
|
|
}
|
2002-06-28 15:29:45 +04:00
|
|
|
ftnode = ftnode->parent;
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (ftnode->parent == ftnode)
|
|
|
|
ftnode = NULL;
|
2002-06-28 15:29:45 +04:00
|
|
|
else {
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
curdirlen -= strlen(ftnode->name) + 1;
|
|
|
|
curdir[curdirlen] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (ftnode != NULL && ftnode->flags & F_VISIT);
|
2002-04-21 03:36:48 +04:00
|
|
|
if (skipoptional) /* skip optional entries */
|
2002-04-12 08:44:08 +04:00
|
|
|
goto next_ftnode;
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
goto got_ftent;
|
|
|
|
}
|
2002-02-02 15:34:39 +03:00
|
|
|
#endif /* SMALL */
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ftree_sel() might have set the ftree_skip flag if the user has the
|
|
|
|
* -n option and a file was selected from this file arg tree. (-n says
|
2000-02-17 06:12:22 +03:00
|
|
|
* only one member is matched for each pattern) ftree_skip being 1
|
1994-06-13 20:13:35 +04:00
|
|
|
* forces us to go to the next arg now.
|
|
|
|
*/
|
|
|
|
if (ftree_skip) {
|
|
|
|
/*
|
|
|
|
* clear and go to next arg
|
|
|
|
*/
|
|
|
|
ftree_skip = 0;
|
|
|
|
if (ftree_arg() < 0)
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2003-04-22 02:10:10 +04:00
|
|
|
if (ftsp == NULL)
|
|
|
|
return -1;
|
1994-06-13 20:13:35 +04:00
|
|
|
/*
|
|
|
|
* loop until we get a valid file to process
|
|
|
|
*/
|
|
|
|
for(;;) {
|
|
|
|
if ((ftent = fts_read(ftsp)) == NULL) {
|
|
|
|
/*
|
|
|
|
* out of files in this tree, go to next arg, if none
|
|
|
|
* we are done
|
|
|
|
*/
|
|
|
|
if (ftree_arg() < 0)
|
|
|
|
return(-1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* handle each type of fts_read() flag
|
|
|
|
*/
|
|
|
|
switch(ftent->fts_info) {
|
|
|
|
case FTS_D:
|
|
|
|
case FTS_DEFAULT:
|
|
|
|
case FTS_F:
|
|
|
|
case FTS_SL:
|
|
|
|
case FTS_SLNONE:
|
|
|
|
/*
|
|
|
|
* these are all ok
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
case FTS_DP:
|
|
|
|
/*
|
|
|
|
* already saw this directory. If the user wants file
|
|
|
|
* access times reset, we use this to restore the
|
|
|
|
* access time for this directory since this is the
|
|
|
|
* last time we will see it in this file subtree
|
|
|
|
* remember to force the time (this is -t on a read
|
|
|
|
* directory, not a created directory).
|
|
|
|
*/
|
2001-10-25 09:33:32 +04:00
|
|
|
if (!tflag || (get_atdir(
|
|
|
|
#ifdef NET2_FTS
|
|
|
|
ftent->fts_statb.st_dev, ftent->fts_statb.st_ino,
|
|
|
|
#else
|
|
|
|
ftent->fts_statp->st_dev, ftent->fts_statp->st_ino,
|
|
|
|
#endif
|
|
|
|
&mtime, &atime) < 0))
|
1994-06-13 20:13:35 +04:00
|
|
|
continue;
|
|
|
|
set_ftime(ftent->fts_path, mtime, atime, 1);
|
|
|
|
continue;
|
|
|
|
case FTS_DC:
|
|
|
|
/*
|
|
|
|
* fts claims a file system cycle
|
|
|
|
*/
|
1997-07-21 00:32:15 +04:00
|
|
|
tty_warn(1,"File system cycle found at %s",
|
|
|
|
ftent->fts_path);
|
1994-06-13 20:13:35 +04:00
|
|
|
continue;
|
|
|
|
case FTS_DNR:
|
2001-10-25 09:33:32 +04:00
|
|
|
syswarn(1, FTS_ERRNO(ftent),
|
1994-06-13 20:13:35 +04:00
|
|
|
"Unable to read directory %s", ftent->fts_path);
|
|
|
|
continue;
|
|
|
|
case FTS_ERR:
|
2001-10-25 09:33:32 +04:00
|
|
|
syswarn(1, FTS_ERRNO(ftent),
|
1994-06-13 20:13:35 +04:00
|
|
|
"File system traversal error");
|
|
|
|
continue;
|
|
|
|
case FTS_NS:
|
|
|
|
case FTS_NSOK:
|
2001-10-25 09:33:32 +04:00
|
|
|
syswarn(1, FTS_ERRNO(ftent),
|
1994-06-13 20:13:35 +04:00
|
|
|
"Unable to access %s", ftent->fts_path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-02-02 15:34:39 +03:00
|
|
|
#ifndef SMALL
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
got_ftent:
|
2002-02-02 15:34:39 +03:00
|
|
|
#endif /* SMALL */
|
1994-06-13 20:13:35 +04:00
|
|
|
/*
|
|
|
|
* ok got a file tree node to process. copy info into arcn
|
|
|
|
* structure (initialize as required)
|
|
|
|
*/
|
|
|
|
arcn->skip = 0;
|
|
|
|
arcn->pad = 0;
|
|
|
|
arcn->ln_nlen = 0;
|
|
|
|
arcn->ln_name[0] = '\0';
|
2001-10-25 09:33:32 +04:00
|
|
|
#ifdef NET2_FTS
|
1994-06-13 20:13:35 +04:00
|
|
|
arcn->sb = ftent->fts_statb;
|
2001-10-25 09:33:32 +04:00
|
|
|
#else
|
1994-06-13 20:13:35 +04:00
|
|
|
arcn->sb = *(ftent->fts_statp);
|
2001-10-25 09:33:32 +04:00
|
|
|
#endif
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* file type based set up and copy into the arcn struct
|
|
|
|
* SIDE NOTE:
|
|
|
|
* we try to reset the access time on all files and directories
|
|
|
|
* we may read when the -t flag is specified. files are reset
|
|
|
|
* when we close them after copying. we reset the directories
|
|
|
|
* when we are done with their file tree (we also clean up at
|
|
|
|
* end in case we cut short a file tree traversal). However
|
|
|
|
* there is no way to reset access times on symlinks.
|
|
|
|
*/
|
|
|
|
switch(S_IFMT & arcn->sb.st_mode) {
|
|
|
|
case S_IFDIR:
|
|
|
|
arcn->type = PAX_DIR;
|
|
|
|
if (!tflag)
|
|
|
|
break;
|
|
|
|
add_atdir(ftent->fts_path, arcn->sb.st_dev,
|
|
|
|
arcn->sb.st_ino, arcn->sb.st_mtime,
|
|
|
|
arcn->sb.st_atime);
|
|
|
|
break;
|
|
|
|
case S_IFCHR:
|
|
|
|
arcn->type = PAX_CHR;
|
|
|
|
break;
|
|
|
|
case S_IFBLK:
|
|
|
|
arcn->type = PAX_BLK;
|
|
|
|
break;
|
|
|
|
case S_IFREG:
|
|
|
|
/*
|
|
|
|
* only regular files with have data to store on the
|
|
|
|
* archive. all others will store a zero length skip.
|
|
|
|
* the skip field is used by pax for actual data it has
|
|
|
|
* to read (or skip over).
|
|
|
|
*/
|
|
|
|
arcn->type = PAX_REG;
|
|
|
|
arcn->skip = arcn->sb.st_size;
|
|
|
|
break;
|
|
|
|
case S_IFLNK:
|
|
|
|
arcn->type = PAX_SLK;
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
if (curlink != NULL) {
|
2002-10-12 19:39:29 +04:00
|
|
|
cnt = strlcpy(arcn->ln_name, curlink,
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
sizeof(arcn->ln_name));
|
1994-06-13 20:13:35 +04:00
|
|
|
/*
|
|
|
|
* have to read the symlink path from the file
|
|
|
|
*/
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
} else if ((cnt =
|
|
|
|
readlink(ftent->fts_path, arcn->ln_name,
|
2003-05-09 04:56:56 +04:00
|
|
|
sizeof(arcn->ln_name) - 1)) < 0) {
|
1994-06-13 20:13:35 +04:00
|
|
|
syswarn(1, errno, "Unable to read symlink %s",
|
|
|
|
ftent->fts_path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* set link name length, watch out readlink does not
|
|
|
|
* allways null terminate the link path
|
|
|
|
*/
|
|
|
|
arcn->ln_name[cnt] = '\0';
|
|
|
|
arcn->ln_nlen = cnt;
|
|
|
|
break;
|
2004-06-21 02:20:14 +04:00
|
|
|
#ifdef S_IFSOCK
|
1994-06-13 20:13:35 +04:00
|
|
|
case S_IFSOCK:
|
|
|
|
/*
|
|
|
|
* under BSD storing a socket is senseless but we will
|
|
|
|
* let the format specific write function make the
|
|
|
|
* decision of what to do with it.
|
|
|
|
*/
|
|
|
|
arcn->type = PAX_SCK;
|
|
|
|
break;
|
2004-06-21 02:20:14 +04:00
|
|
|
#endif
|
1994-06-13 20:13:35 +04:00
|
|
|
case S_IFIFO:
|
|
|
|
arcn->type = PAX_FIF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* copy file name, set file name length
|
|
|
|
*/
|
2002-10-12 19:39:29 +04:00
|
|
|
arcn->nlen = strlcpy(arcn->name, ftent->fts_path, sizeof(arcn->name));
|
1994-06-13 20:13:35 +04:00
|
|
|
arcn->org_name = ftent->fts_path;
|
2003-04-22 02:10:10 +04:00
|
|
|
if (strcmp(NM_CPIO, argv0) == 0) {
|
|
|
|
/*
|
|
|
|
* cpio does *not* descend directories listed in the
|
|
|
|
* arguments, unlike pax/tar, so needs special handling
|
|
|
|
* here. failure to do so results in massive amounts
|
|
|
|
* of duplicated files in the output. We kill fts after
|
|
|
|
* the first name is extracted, what a waste.
|
|
|
|
*/
|
|
|
|
ftcur->refcnt = 1;
|
|
|
|
(void)ftree_arg();
|
|
|
|
}
|
1994-06-13 20:13:35 +04:00
|
|
|
return(0);
|
|
|
|
}
|