xref: /freebsd/bin/cp/cp.c (revision 867e6caf)
19ddb49cbSWarner Losh /*-
24b88c807SRodney W. Grimes  * Copyright (c) 1988, 1993, 1994
34b88c807SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
44b88c807SRodney W. Grimes  *
54b88c807SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
64b88c807SRodney W. Grimes  * David Hitz of Auspex Systems Inc.
74b88c807SRodney W. Grimes  *
84b88c807SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
94b88c807SRodney W. Grimes  * modification, are permitted provided that the following conditions
104b88c807SRodney W. Grimes  * are met:
114b88c807SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
124b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
134b88c807SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
144b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
154b88c807SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
164b88c807SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
174b88c807SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
184b88c807SRodney W. Grimes  *    without specific prior written permission.
194b88c807SRodney W. Grimes  *
204b88c807SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
214b88c807SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
224b88c807SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
234b88c807SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
244b88c807SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
254b88c807SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
264b88c807SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
274b88c807SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
284b88c807SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
294b88c807SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
304b88c807SRodney W. Grimes  * SUCH DAMAGE.
314b88c807SRodney W. Grimes  */
324b88c807SRodney W. Grimes 
3309a80d48SDavid E. O'Brien #if 0
344b88c807SRodney W. Grimes #ifndef lint
35890acb95SSteve Price static char const copyright[] =
364b88c807SRodney W. Grimes "@(#) Copyright (c) 1988, 1993, 1994\n\
374b88c807SRodney W. Grimes 	The Regents of the University of California.  All rights reserved.\n";
384b88c807SRodney W. Grimes #endif /* not lint */
394b88c807SRodney W. Grimes 
404b88c807SRodney W. Grimes #ifndef lint
41c194af34SPhilippe Charnier static char sccsid[] = "@(#)cp.c	8.2 (Berkeley) 4/1/94";
424b88c807SRodney W. Grimes #endif /* not lint */
4309a80d48SDavid E. O'Brien #endif
445eb43ac2SDavid E. O'Brien #include <sys/cdefs.h>
455eb43ac2SDavid E. O'Brien __FBSDID("$FreeBSD$");
464b88c807SRodney W. Grimes 
474b88c807SRodney W. Grimes /*
484b88c807SRodney W. Grimes  * Cp copies source files to target files.
494b88c807SRodney W. Grimes  *
504b88c807SRodney W. Grimes  * The global PATH_T structure "to" always contains the path to the
514b88c807SRodney W. Grimes  * current target file.  Since fts(3) does not change directories,
52890acb95SSteve Price  * this path can be either absolute or dot-relative.
534b88c807SRodney W. Grimes  *
544b88c807SRodney W. Grimes  * The basic algorithm is to initialize "to" and use fts(3) to traverse
554b88c807SRodney W. Grimes  * the file hierarchy rooted in the argument list.  A trivial case is the
564b88c807SRodney W. Grimes  * case of 'cp file1 file2'.  The more interesting case is the case of
574b88c807SRodney W. Grimes  * 'cp file1 file2 ... fileN dir' where the hierarchy is traversed and the
584b88c807SRodney W. Grimes  * path (relative to the root of the traversal) is appended to dir (stored
594b88c807SRodney W. Grimes  * in "to") to form the final target path.
604b88c807SRodney W. Grimes  */
614b88c807SRodney W. Grimes 
6282fdc5e6SBruce Evans #include <sys/types.h>
634b88c807SRodney W. Grimes #include <sys/stat.h>
644b88c807SRodney W. Grimes 
654b88c807SRodney W. Grimes #include <err.h>
664b88c807SRodney W. Grimes #include <errno.h>
674b88c807SRodney W. Grimes #include <fts.h>
6834f9c106SWarner Losh #include <limits.h>
6982fdc5e6SBruce Evans #include <signal.h>
704506e907SMichael Haro #include <stdio.h>
7126f6b0fbSDag-Erling Smørgrav #include <stdlib.h>
724b88c807SRodney W. Grimes #include <string.h>
734b88c807SRodney W. Grimes #include <unistd.h>
744b88c807SRodney W. Grimes 
754b88c807SRodney W. Grimes #include "extern.h"
764b88c807SRodney W. Grimes 
774b88c807SRodney W. Grimes #define	STRIP_TRAILING_SLASH(p) {					\
787658fd20SBruce Evans         while ((p).p_end > (p).p_path + 1 && (p).p_end[-1] == '/')	\
794b88c807SRodney W. Grimes                 *--(p).p_end = 0;					\
804b88c807SRodney W. Grimes }
814b88c807SRodney W. Grimes 
828bd08b5fSMark Murray static char emptystring[] = "";
834b88c807SRodney W. Grimes 
848bd08b5fSMark Murray PATH_T to = { to.p_path, emptystring, "" };
858bd08b5fSMark Murray 
86786c276fSJohan Karlsson int fflag, iflag, nflag, pflag, vflag;
87786c276fSJohan Karlsson static int Rflag, rflag;
88947193d9SMatthew N. Dodd volatile sig_atomic_t info;
8900d321a2SMatthew N. Dodd 
904b88c807SRodney W. Grimes enum op { FILE_TO_FILE, FILE_TO_DIR, DIR_TO_DNE };
914b88c807SRodney W. Grimes 
927ede89e4SMark Murray static int copy(char *[], enum op, int);
930d3bcc2eSGarrett Wollman static int mastercmp(const FTSENT * const *, const FTSENT * const *);
944901f51bSBruce Evans static void siginfo(int __unused);
954b88c807SRodney W. Grimes 
964b88c807SRodney W. Grimes int
975dce647cSWarner Losh main(int argc, char *argv[])
984b88c807SRodney W. Grimes {
994b88c807SRodney W. Grimes 	struct stat to_stat, tmp_stat;
1004b88c807SRodney W. Grimes 	enum op type;
10127d3ae35SAndrey A. Chernov 	int Hflag, Lflag, Pflag, ch, fts_options, r, have_trailing_slash;
102486d0387SAndrey A. Chernov 	char *target;
1034b88c807SRodney W. Grimes 
104ee4f505eSPaul Traina 	Hflag = Lflag = Pflag = 0;
105786c276fSJohan Karlsson 	while ((ch = getopt(argc, argv, "HLPRfinprv")) != -1)
1064b88c807SRodney W. Grimes 		switch (ch) {
1074b88c807SRodney W. Grimes 		case 'H':
1084b88c807SRodney W. Grimes 			Hflag = 1;
1094b88c807SRodney W. Grimes 			Lflag = Pflag = 0;
1104b88c807SRodney W. Grimes 			break;
1114b88c807SRodney W. Grimes 		case 'L':
1124b88c807SRodney W. Grimes 			Lflag = 1;
1134b88c807SRodney W. Grimes 			Hflag = Pflag = 0;
1144b88c807SRodney W. Grimes 			break;
1154b88c807SRodney W. Grimes 		case 'P':
1164b88c807SRodney W. Grimes 			Pflag = 1;
1174b88c807SRodney W. Grimes 			Hflag = Lflag = 0;
1184b88c807SRodney W. Grimes 			break;
1194b88c807SRodney W. Grimes 		case 'R':
1204b88c807SRodney W. Grimes 			Rflag = 1;
1214b88c807SRodney W. Grimes 			break;
1224b88c807SRodney W. Grimes 		case 'f':
1236add522fSWolfram Schneider 			fflag = 1;
124786c276fSJohan Karlsson 			iflag = nflag = 0;
1254b88c807SRodney W. Grimes 			break;
1264b88c807SRodney W. Grimes 		case 'i':
1276add522fSWolfram Schneider 			iflag = 1;
128786c276fSJohan Karlsson 			fflag = nflag = 0;
129786c276fSJohan Karlsson 			break;
130786c276fSJohan Karlsson 		case 'n':
131786c276fSJohan Karlsson 			nflag = 1;
132786c276fSJohan Karlsson 			fflag = iflag = 0;
1334b88c807SRodney W. Grimes 			break;
1344b88c807SRodney W. Grimes 		case 'p':
1354b88c807SRodney W. Grimes 			pflag = 1;
1364b88c807SRodney W. Grimes 			break;
1374b88c807SRodney W. Grimes 		case 'r':
1384b88c807SRodney W. Grimes 			rflag = 1;
1394b88c807SRodney W. Grimes 			break;
1404506e907SMichael Haro 		case 'v':
1414506e907SMichael Haro 			vflag = 1;
1424506e907SMichael Haro 			break;
1434b88c807SRodney W. Grimes 		default:
1444b88c807SRodney W. Grimes 			usage();
1454b88c807SRodney W. Grimes 			break;
1464b88c807SRodney W. Grimes 		}
1474b88c807SRodney W. Grimes 	argc -= optind;
1484b88c807SRodney W. Grimes 	argv += optind;
1494b88c807SRodney W. Grimes 
1504b88c807SRodney W. Grimes 	if (argc < 2)
1514b88c807SRodney W. Grimes 		usage();
1524b88c807SRodney W. Grimes 
1534b88c807SRodney W. Grimes 	fts_options = FTS_NOCHDIR | FTS_PHYSICAL;
1544b88c807SRodney W. Grimes 	if (rflag) {
1554b88c807SRodney W. Grimes 		if (Rflag)
1564b88c807SRodney W. Grimes 			errx(1,
1574b88c807SRodney W. Grimes 		    "the -R and -r options may not be specified together.");
1584b88c807SRodney W. Grimes 		if (Hflag || Lflag || Pflag)
1594b88c807SRodney W. Grimes 			errx(1,
1604b88c807SRodney W. Grimes 	"the -H, -L, and -P options may not be specified with the -r option.");
1614b88c807SRodney W. Grimes 		fts_options &= ~FTS_PHYSICAL;
1624b88c807SRodney W. Grimes 		fts_options |= FTS_LOGICAL;
1634b88c807SRodney W. Grimes 	}
1644b88c807SRodney W. Grimes 	if (Rflag) {
1654b88c807SRodney W. Grimes 		if (Hflag)
1664b88c807SRodney W. Grimes 			fts_options |= FTS_COMFOLLOW;
1674b88c807SRodney W. Grimes 		if (Lflag) {
1684b88c807SRodney W. Grimes 			fts_options &= ~FTS_PHYSICAL;
1694b88c807SRodney W. Grimes 			fts_options |= FTS_LOGICAL;
1704b88c807SRodney W. Grimes 		}
1714b88c807SRodney W. Grimes 	} else {
1724b88c807SRodney W. Grimes 		fts_options &= ~FTS_PHYSICAL;
173f9dc2a8bSTim J. Robbins 		fts_options |= FTS_LOGICAL | FTS_COMFOLLOW;
1744b88c807SRodney W. Grimes 	}
17500d321a2SMatthew N. Dodd 	(void)signal(SIGINFO, siginfo);
1764b88c807SRodney W. Grimes 
1774b88c807SRodney W. Grimes 	/* Save the target base in "to". */
1784b88c807SRodney W. Grimes 	target = argv[--argc];
17934f9c106SWarner Losh 	if (strlcpy(to.p_path, target, sizeof(to.p_path)) >= sizeof(to.p_path))
1804b88c807SRodney W. Grimes 		errx(1, "%s: name too long", target);
1814b88c807SRodney W. Grimes 	to.p_end = to.p_path + strlen(to.p_path);
1824b88c807SRodney W. Grimes         if (to.p_path == to.p_end) {
1834b88c807SRodney W. Grimes 		*to.p_end++ = '.';
1844b88c807SRodney W. Grimes 		*to.p_end = 0;
1854b88c807SRodney W. Grimes 	}
186486d0387SAndrey A. Chernov 	have_trailing_slash = (to.p_end[-1] == '/');
187486d0387SAndrey A. Chernov 	if (have_trailing_slash)
1884b88c807SRodney W. Grimes 		STRIP_TRAILING_SLASH(to);
1894b88c807SRodney W. Grimes 	to.target_end = to.p_end;
1904b88c807SRodney W. Grimes 
1914b88c807SRodney W. Grimes 	/* Set end of argument list for fts(3). */
1924b88c807SRodney W. Grimes 	argv[argc] = NULL;
1934b88c807SRodney W. Grimes 
1944b88c807SRodney W. Grimes 	/*
1954b88c807SRodney W. Grimes 	 * Cp has two distinct cases:
1964b88c807SRodney W. Grimes 	 *
1974b88c807SRodney W. Grimes 	 * cp [-R] source target
1984b88c807SRodney W. Grimes 	 * cp [-R] source1 ... sourceN directory
1994b88c807SRodney W. Grimes 	 *
2004b88c807SRodney W. Grimes 	 * In both cases, source can be either a file or a directory.
2014b88c807SRodney W. Grimes 	 *
2024b88c807SRodney W. Grimes 	 * In (1), the target becomes a copy of the source. That is, if the
2034b88c807SRodney W. Grimes 	 * source is a file, the target will be a file, and likewise for
2044b88c807SRodney W. Grimes 	 * directories.
2054b88c807SRodney W. Grimes 	 *
2064b88c807SRodney W. Grimes 	 * In (2), the real target is not directory, but "directory/source".
2074b88c807SRodney W. Grimes 	 */
2084b88c807SRodney W. Grimes 	r = stat(to.p_path, &to_stat);
2094b88c807SRodney W. Grimes 	if (r == -1 && errno != ENOENT)
2104b88c807SRodney W. Grimes 		err(1, "%s", to.p_path);
2114b88c807SRodney W. Grimes 	if (r == -1 || !S_ISDIR(to_stat.st_mode)) {
2124b88c807SRodney W. Grimes 		/*
2134b88c807SRodney W. Grimes 		 * Case (1).  Target is not a directory.
2144b88c807SRodney W. Grimes 		 */
2154b88c807SRodney W. Grimes 		if (argc > 1) {
2164b88c807SRodney W. Grimes 			usage();
2174b88c807SRodney W. Grimes 			exit(1);
2184b88c807SRodney W. Grimes 		}
2194b88c807SRodney W. Grimes 		/*
2204b88c807SRodney W. Grimes 		 * Need to detect the case:
2214b88c807SRodney W. Grimes 		 *	cp -R dir foo
2224b88c807SRodney W. Grimes 		 * Where dir is a directory and foo does not exist, where
2234b88c807SRodney W. Grimes 		 * we want pathname concatenations turned on but not for
2244b88c807SRodney W. Grimes 		 * the initial mkdir().
2254b88c807SRodney W. Grimes 		 */
2264b88c807SRodney W. Grimes 		if (r == -1) {
2274b88c807SRodney W. Grimes 			if (rflag || (Rflag && (Lflag || Hflag)))
2284b88c807SRodney W. Grimes 				stat(*argv, &tmp_stat);
2294b88c807SRodney W. Grimes 			else
2304b88c807SRodney W. Grimes 				lstat(*argv, &tmp_stat);
2314b88c807SRodney W. Grimes 
2324b88c807SRodney W. Grimes 			if (S_ISDIR(tmp_stat.st_mode) && (Rflag || rflag))
2334b88c807SRodney W. Grimes 				type = DIR_TO_DNE;
2344b88c807SRodney W. Grimes 			else
2354b88c807SRodney W. Grimes 				type = FILE_TO_FILE;
2364b88c807SRodney W. Grimes 		} else
2374b88c807SRodney W. Grimes 			type = FILE_TO_FILE;
23827d3ae35SAndrey A. Chernov 
23927d3ae35SAndrey A. Chernov 		if (have_trailing_slash && type == FILE_TO_FILE) {
24027d3ae35SAndrey A. Chernov 			if (r == -1)
24127d3ae35SAndrey A. Chernov 				errx(1, "directory %s does not exist",
24227d3ae35SAndrey A. Chernov 				     to.p_path);
24327d3ae35SAndrey A. Chernov 			else
24427d3ae35SAndrey A. Chernov 				errx(1, "%s is not a directory", to.p_path);
24527d3ae35SAndrey A. Chernov 		}
2464b88c807SRodney W. Grimes 	} else
2474b88c807SRodney W. Grimes 		/*
2484b88c807SRodney W. Grimes 		 * Case (2).  Target is a directory.
2494b88c807SRodney W. Grimes 		 */
2504b88c807SRodney W. Grimes 		type = FILE_TO_DIR;
2514b88c807SRodney W. Grimes 
2524b88c807SRodney W. Grimes 	exit (copy(argv, type, fts_options));
2534b88c807SRodney W. Grimes }
2544b88c807SRodney W. Grimes 
255ba8acd9dSMark Murray static int
2565dce647cSWarner Losh copy(char *argv[], enum op type, int fts_options)
2574b88c807SRodney W. Grimes {
2584b88c807SRodney W. Grimes 	struct stat to_stat;
2594b88c807SRodney W. Grimes 	FTS *ftsp;
2604b88c807SRodney W. Grimes 	FTSENT *curr;
2618bd08b5fSMark Murray 	int base = 0, dne, badcp, rval;
2628bd08b5fSMark Murray 	size_t nlen;
2637658fd20SBruce Evans 	char *p, *target_mid;
26462de071bSStephen McKay 	mode_t mask, mode;
2654a5db7acSStephen McKay 
2664a5db7acSStephen McKay 	/*
2674a5db7acSStephen McKay 	 * Keep an inverted copy of the umask, for use in correcting
2684a5db7acSStephen McKay 	 * permissions on created directories when not using -p.
2694a5db7acSStephen McKay 	 */
2704a5db7acSStephen McKay 	mask = ~umask(0777);
2714a5db7acSStephen McKay 	umask(~mask);
2724b88c807SRodney W. Grimes 
2734b88c807SRodney W. Grimes 	if ((ftsp = fts_open(argv, fts_options, mastercmp)) == NULL)
2745ad9e45fSMatthew Dillon 		err(1, "fts_open");
2750efa2040SMichael Haro 	for (badcp = rval = 0; (curr = fts_read(ftsp)) != NULL; badcp = 0) {
2764b88c807SRodney W. Grimes 		switch (curr->fts_info) {
2774b88c807SRodney W. Grimes 		case FTS_NS:
278f6fa1b35SDmitrij Tejblum 		case FTS_DNR:
2794b88c807SRodney W. Grimes 		case FTS_ERR:
2804b88c807SRodney W. Grimes 			warnx("%s: %s",
2814b88c807SRodney W. Grimes 			    curr->fts_path, strerror(curr->fts_errno));
2820efa2040SMichael Haro 			badcp = rval = 1;
2834b88c807SRodney W. Grimes 			continue;
2844b88c807SRodney W. Grimes 		case FTS_DC:			/* Warn, continue. */
2854b88c807SRodney W. Grimes 			warnx("%s: directory causes a cycle", curr->fts_path);
2860efa2040SMichael Haro 			badcp = rval = 1;
2874b88c807SRodney W. Grimes 			continue;
2888bd08b5fSMark Murray 		default:
28964baebf9SAlfred Perlstein 			;
2904b88c807SRodney W. Grimes 		}
2914b88c807SRodney W. Grimes 
2924b88c807SRodney W. Grimes 		/*
2934b88c807SRodney W. Grimes 		 * If we are in case (2) or (3) above, we need to append the
2944b88c807SRodney W. Grimes                  * source name to the target name.
2954b88c807SRodney W. Grimes                  */
2964b88c807SRodney W. Grimes 		if (type != FILE_TO_FILE) {
2974b88c807SRodney W. Grimes 			/*
2984b88c807SRodney W. Grimes 			 * Need to remember the roots of traversals to create
2994b88c807SRodney W. Grimes 			 * correct pathnames.  If there's a directory being
3004b88c807SRodney W. Grimes 			 * copied to a non-existent directory, e.g.
3014b88c807SRodney W. Grimes 			 *	cp -R a/dir noexist
3024b88c807SRodney W. Grimes 			 * the resulting path name should be noexist/foo, not
3034b88c807SRodney W. Grimes 			 * noexist/dir/foo (where foo is a file in dir), which
3044b88c807SRodney W. Grimes 			 * is the case where the target exists.
3054b88c807SRodney W. Grimes 			 *
3064b88c807SRodney W. Grimes 			 * Also, check for "..".  This is for correct path
30746be34b9SKris Kennaway 			 * concatenation for paths ending in "..", e.g.
3084b88c807SRodney W. Grimes 			 *	cp -R .. /tmp
3094b88c807SRodney W. Grimes 			 * Paths ending in ".." are changed to ".".  This is
3104b88c807SRodney W. Grimes 			 * tricky, but seems the easiest way to fix the problem.
3114b88c807SRodney W. Grimes 			 *
3124b88c807SRodney W. Grimes 			 * XXX
3134b88c807SRodney W. Grimes 			 * Since the first level MUST be FTS_ROOTLEVEL, base
3144b88c807SRodney W. Grimes 			 * is always initialized.
3154b88c807SRodney W. Grimes 			 */
316426e9c1dSWarner Losh 			if (curr->fts_level == FTS_ROOTLEVEL) {
3174b88c807SRodney W. Grimes 				if (type != DIR_TO_DNE) {
3184b88c807SRodney W. Grimes 					p = strrchr(curr->fts_path, '/');
3194b88c807SRodney W. Grimes 					base = (p == NULL) ? 0 :
3204b88c807SRodney W. Grimes 					    (int)(p - curr->fts_path + 1);
3214b88c807SRodney W. Grimes 
3224b88c807SRodney W. Grimes 					if (!strcmp(&curr->fts_path[base],
3234b88c807SRodney W. Grimes 					    ".."))
3244b88c807SRodney W. Grimes 						base += 1;
3254b88c807SRodney W. Grimes 				} else
3264b88c807SRodney W. Grimes 					base = curr->fts_pathlen;
327426e9c1dSWarner Losh 			}
3284b88c807SRodney W. Grimes 
3294b88c807SRodney W. Grimes 			p = &curr->fts_path[base];
3304b88c807SRodney W. Grimes 			nlen = curr->fts_pathlen - base;
3317658fd20SBruce Evans 			target_mid = to.target_end;
3327658fd20SBruce Evans 			if (*p != '/' && target_mid[-1] != '/')
3337658fd20SBruce Evans 				*target_mid++ = '/';
3347658fd20SBruce Evans 			*target_mid = 0;
33534f9c106SWarner Losh 			if (target_mid - to.p_path + nlen >= PATH_MAX) {
3367658fd20SBruce Evans 				warnx("%s%s: name too long (not copied)",
3377658fd20SBruce Evans 				    to.p_path, p);
3380efa2040SMichael Haro 				badcp = rval = 1;
3397658fd20SBruce Evans 				continue;
3407658fd20SBruce Evans 			}
3417658fd20SBruce Evans 			(void)strncat(target_mid, p, nlen);
3427658fd20SBruce Evans 			to.p_end = target_mid + nlen;
3434b88c807SRodney W. Grimes 			*to.p_end = 0;
3444b88c807SRodney W. Grimes 			STRIP_TRAILING_SLASH(to);
3454b88c807SRodney W. Grimes 		}
3464b88c807SRodney W. Grimes 
3474a5db7acSStephen McKay 		if (curr->fts_info == FTS_DP) {
3484a5db7acSStephen McKay 			/*
34916ef4ac3SStephen McKay 			 * We are nearly finished with this directory.  If we
35016ef4ac3SStephen McKay 			 * didn't actually copy it, or otherwise don't need to
35116ef4ac3SStephen McKay 			 * change its attributes, then we are done.
35262de071bSStephen McKay 			 */
35362de071bSStephen McKay 			if (!curr->fts_number)
35462de071bSStephen McKay 				continue;
35562de071bSStephen McKay 			/*
35662de071bSStephen McKay 			 * If -p is in effect, set all the attributes.
35762de071bSStephen McKay 			 * Otherwise, set the correct permissions, limited
35816ef4ac3SStephen McKay 			 * by the umask.  Optimise by avoiding a chmod()
35916ef4ac3SStephen McKay 			 * if possible (which is usually the case if we
36016ef4ac3SStephen McKay 			 * made the directory).  Note that mkdir() does not
36116ef4ac3SStephen McKay 			 * honour setuid, setgid and sticky bits, but we
36216ef4ac3SStephen McKay 			 * normally want to preserve them on directories.
3634a5db7acSStephen McKay 			 */
364eedc99e7SStephen McKay 			if (pflag) {
365529a7167SJohn-Mark Gurney 				if (setfile(curr->fts_statp, -1))
366eedc99e7SStephen McKay 					rval = 1;
3679b4261c9SChristian S.J. Peron 				if (preserve_dir_acls(curr->fts_statp,
3689b4261c9SChristian S.J. Peron 				    curr->fts_accpath, to.p_path) != 0)
3699b4261c9SChristian S.J. Peron 					rval = 1;
370eedc99e7SStephen McKay 			} else {
37162de071bSStephen McKay 				mode = curr->fts_statp->st_mode;
37262de071bSStephen McKay 				if ((mode & (S_ISUID | S_ISGID | S_ISTXT)) ||
37362de071bSStephen McKay 				    ((mode | S_IRWXU) & mask) != (mode & mask))
37462de071bSStephen McKay 					if (chmod(to.p_path, mode & mask) != 0){
3754a5db7acSStephen McKay 						warn("chmod: %s", to.p_path);
3764a5db7acSStephen McKay 						rval = 1;
3774a5db7acSStephen McKay 					}
3784a5db7acSStephen McKay 			}
3794a5db7acSStephen McKay 			continue;
3804a5db7acSStephen McKay 		}
3814a5db7acSStephen McKay 
3824b88c807SRodney W. Grimes 		/* Not an error but need to remember it happened */
3834b88c807SRodney W. Grimes 		if (stat(to.p_path, &to_stat) == -1)
3844b88c807SRodney W. Grimes 			dne = 1;
3854b88c807SRodney W. Grimes 		else {
3864b88c807SRodney W. Grimes 			if (to_stat.st_dev == curr->fts_statp->st_dev &&
3874b88c807SRodney W. Grimes 			    to_stat.st_ino == curr->fts_statp->st_ino) {
3884b88c807SRodney W. Grimes 				warnx("%s and %s are identical (not copied).",
3894b88c807SRodney W. Grimes 				    to.p_path, curr->fts_path);
3900efa2040SMichael Haro 				badcp = rval = 1;
3914b88c807SRodney W. Grimes 				if (S_ISDIR(curr->fts_statp->st_mode))
3924b88c807SRodney W. Grimes 					(void)fts_set(ftsp, curr, FTS_SKIP);
3934b88c807SRodney W. Grimes 				continue;
3944b88c807SRodney W. Grimes 			}
395890acb95SSteve Price 			if (!S_ISDIR(curr->fts_statp->st_mode) &&
396890acb95SSteve Price 			    S_ISDIR(to_stat.st_mode)) {
3978bd08b5fSMark Murray 				warnx("cannot overwrite directory %s with "
3988bd08b5fSMark Murray 				    "non-directory %s",
399890acb95SSteve Price 				    to.p_path, curr->fts_path);
4000efa2040SMichael Haro 				badcp = rval = 1;
401890acb95SSteve Price 				continue;
402890acb95SSteve Price 			}
4034b88c807SRodney W. Grimes 			dne = 0;
4044b88c807SRodney W. Grimes 		}
4054b88c807SRodney W. Grimes 
4064b88c807SRodney W. Grimes 		switch (curr->fts_statp->st_mode & S_IFMT) {
4074b88c807SRodney W. Grimes 		case S_IFLNK:
408f9dc2a8bSTim J. Robbins 			/* Catch special case of a non-dangling symlink */
409f9dc2a8bSTim J. Robbins 			if ((fts_options & FTS_LOGICAL) ||
410f9dc2a8bSTim J. Robbins 			    ((fts_options & FTS_COMFOLLOW) &&
411f9dc2a8bSTim J. Robbins 			    curr->fts_level == 0)) {
412f9dc2a8bSTim J. Robbins 				if (copy_file(curr, dne))
413f9dc2a8bSTim J. Robbins 					badcp = rval = 1;
414f9dc2a8bSTim J. Robbins 			} else {
4154b88c807SRodney W. Grimes 				if (copy_link(curr, !dne))
4160efa2040SMichael Haro 					badcp = rval = 1;
417f9dc2a8bSTim J. Robbins 			}
4184b88c807SRodney W. Grimes 			break;
4194b88c807SRodney W. Grimes 		case S_IFDIR:
4204b88c807SRodney W. Grimes 			if (!Rflag && !rflag) {
4214b88c807SRodney W. Grimes 				warnx("%s is a directory (not copied).",
4224b88c807SRodney W. Grimes 				    curr->fts_path);
4234b88c807SRodney W. Grimes 				(void)fts_set(ftsp, curr, FTS_SKIP);
4240efa2040SMichael Haro 				badcp = rval = 1;
4254b88c807SRodney W. Grimes 				break;
4264b88c807SRodney W. Grimes 			}
4274b88c807SRodney W. Grimes 			/*
4284b88c807SRodney W. Grimes 			 * If the directory doesn't exist, create the new
4294b88c807SRodney W. Grimes 			 * one with the from file mode plus owner RWX bits,
4304b88c807SRodney W. Grimes 			 * modified by the umask.  Trade-off between being
4314b88c807SRodney W. Grimes 			 * able to write the directory (if from directory is
4324b88c807SRodney W. Grimes 			 * 555) and not causing a permissions race.  If the
4334b88c807SRodney W. Grimes 			 * umask blocks owner writes, we fail..
4344b88c807SRodney W. Grimes 			 */
4354b88c807SRodney W. Grimes 			if (dne) {
4364b88c807SRodney W. Grimes 				if (mkdir(to.p_path,
4374b88c807SRodney W. Grimes 				    curr->fts_statp->st_mode | S_IRWXU) < 0)
4384b88c807SRodney W. Grimes 					err(1, "%s", to.p_path);
4394b88c807SRodney W. Grimes 			} else if (!S_ISDIR(to_stat.st_mode)) {
4404b88c807SRodney W. Grimes 				errno = ENOTDIR;
441a829865dSDavid Greenman 				err(1, "%s", to.p_path);
4424b88c807SRodney W. Grimes 			}
4434b88c807SRodney W. Grimes 			/*
44462de071bSStephen McKay 			 * Arrange to correct directory attributes later
4454a5db7acSStephen McKay 			 * (in the post-order phase) if this is a new
44662de071bSStephen McKay 			 * directory, or if the -p flag is in effect.
4474b88c807SRodney W. Grimes 			 */
44862de071bSStephen McKay 			curr->fts_number = pflag || dne;
4494b88c807SRodney W. Grimes 			break;
4504b88c807SRodney W. Grimes 		case S_IFBLK:
4514b88c807SRodney W. Grimes 		case S_IFCHR:
4524b88c807SRodney W. Grimes 			if (Rflag) {
4534b88c807SRodney W. Grimes 				if (copy_special(curr->fts_statp, !dne))
4540efa2040SMichael Haro 					badcp = rval = 1;
455439b2b1eSBruce Evans 			} else {
4564b88c807SRodney W. Grimes 				if (copy_file(curr, dne))
4570efa2040SMichael Haro 					badcp = rval = 1;
458439b2b1eSBruce Evans 			}
4594b88c807SRodney W. Grimes 			break;
4604b88c807SRodney W. Grimes 		case S_IFIFO:
461439b2b1eSBruce Evans 			if (Rflag) {
4624b88c807SRodney W. Grimes 				if (copy_fifo(curr->fts_statp, !dne))
4630efa2040SMichael Haro 					badcp = rval = 1;
464439b2b1eSBruce Evans 			} else {
4654b88c807SRodney W. Grimes 				if (copy_file(curr, dne))
4660efa2040SMichael Haro 					badcp = rval = 1;
467439b2b1eSBruce Evans 			}
4684b88c807SRodney W. Grimes 			break;
4694b88c807SRodney W. Grimes 		default:
4704b88c807SRodney W. Grimes 			if (copy_file(curr, dne))
4710efa2040SMichael Haro 				badcp = rval = 1;
4724b88c807SRodney W. Grimes 			break;
4734b88c807SRodney W. Grimes 		}
4740efa2040SMichael Haro 		if (vflag && !badcp)
475fcb2f1b3SMichael Haro 			(void)printf("%s -> %s\n", curr->fts_path, to.p_path);
4764b88c807SRodney W. Grimes 	}
4774b88c807SRodney W. Grimes 	if (errno)
4784b88c807SRodney W. Grimes 		err(1, "fts_read");
479867e6cafSMaxim Konovalov 	fts_close(ftsp);
4804b88c807SRodney W. Grimes 	return (rval);
4814b88c807SRodney W. Grimes }
4824b88c807SRodney W. Grimes 
4834b88c807SRodney W. Grimes /*
4844b88c807SRodney W. Grimes  * mastercmp --
4854b88c807SRodney W. Grimes  *	The comparison function for the copy order.  The order is to copy
4864b88c807SRodney W. Grimes  *	non-directory files before directory files.  The reason for this
4874b88c807SRodney W. Grimes  *	is because files tend to be in the same cylinder group as their
4884b88c807SRodney W. Grimes  *	parent directory, whereas directories tend not to be.  Copying the
4894b88c807SRodney W. Grimes  *	files first reduces seeking.
4904b88c807SRodney W. Grimes  */
491ba8acd9dSMark Murray static int
4920d3bcc2eSGarrett Wollman mastercmp(const FTSENT * const *a, const FTSENT * const *b)
4934b88c807SRodney W. Grimes {
4944b88c807SRodney W. Grimes 	int a_info, b_info;
4954b88c807SRodney W. Grimes 
4964b88c807SRodney W. Grimes 	a_info = (*a)->fts_info;
4974b88c807SRodney W. Grimes 	if (a_info == FTS_ERR || a_info == FTS_NS || a_info == FTS_DNR)
4984b88c807SRodney W. Grimes 		return (0);
4994b88c807SRodney W. Grimes 	b_info = (*b)->fts_info;
5004b88c807SRodney W. Grimes 	if (b_info == FTS_ERR || b_info == FTS_NS || b_info == FTS_DNR)
5014b88c807SRodney W. Grimes 		return (0);
5024b88c807SRodney W. Grimes 	if (a_info == FTS_D)
5034b88c807SRodney W. Grimes 		return (-1);
5044b88c807SRodney W. Grimes 	if (b_info == FTS_D)
5054b88c807SRodney W. Grimes 		return (1);
5064b88c807SRodney W. Grimes 	return (0);
5074b88c807SRodney W. Grimes }
50800d321a2SMatthew N. Dodd 
50900d321a2SMatthew N. Dodd static void
5104901f51bSBruce Evans siginfo(int sig __unused)
51100d321a2SMatthew N. Dodd {
51200d321a2SMatthew N. Dodd 
51300d321a2SMatthew N. Dodd 	info = 1;
51400d321a2SMatthew N. Dodd }
515