Merge from vendor branch OPENSSH:
[dragonfly.git] / bin / cp / cp.c
1 /*
2  * Copyright (c) 1988, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * David Hitz of Auspex Systems Inc.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * @(#) Copyright (c) 1988, 1993, 1994 The Regents of the University of California.  All rights reserved.
37  * @(#)cp.c     8.2 (Berkeley) 4/1/94
38  * $FreeBSD: src/bin/cp/cp.c,v 1.24.2.7 2002/09/24 12:41:04 mckay Exp $
39  * $DragonFly: src/bin/cp/cp.c,v 1.7 2004/07/22 13:19:26 asmodai Exp $
40  */
41
42 /*
43  * Cp copies source files to target files.
44  *
45  * The global PATH_T structure "to" always contains the path to the
46  * current target file.  Since fts(3) does not change directories,
47  * this path can be either absolute or dot-relative.
48  *
49  * The basic algorithm is to initialize "to" and use fts(3) to traverse
50  * the file hierarchy rooted in the argument list.  A trivial case is the
51  * case of 'cp file1 file2'.  The more interesting case is the case of
52  * 'cp file1 file2 ... fileN dir' where the hierarchy is traversed and the
53  * path (relative to the root of the traversal) is appended to dir (stored
54  * in "to") to form the final target path.
55  */
56
57 #include <sys/param.h>
58 #include <sys/stat.h>
59
60 #include <err.h>
61 #include <errno.h>
62 #include <fts.h>
63 #include <limits.h>
64 #include <stdio.h>
65 #include <stdlib.h>
66 #include <string.h>
67 #include <unistd.h>
68
69 #include "extern.h"
70
71 #define STRIP_TRAILING_SLASH(p) {                                       \
72         while ((p).p_end > (p).p_path + 1 && (p).p_end[-1] == '/')      \
73                 *--(p).p_end = 0;                                       \
74 }
75
76 PATH_T to = { to.p_path, to.p_path, "" };
77
78 int fflag, iflag, nflag, pflag, vflag;
79 static int Rflag, rflag;
80
81 enum op { FILE_TO_FILE, FILE_TO_DIR, DIR_TO_DNE };
82
83 static int copy (char *[], enum op, int);
84 static int mastercmp (const FTSENT **, const FTSENT **);
85
86 int
87 main(int argc, char *argv[])
88 {
89         struct stat to_stat, tmp_stat;
90         enum op type;
91         int Hflag, Lflag, Pflag, ch, fts_options, r;
92         char *target;
93
94         Hflag = Lflag = Pflag = 0;
95         while ((ch = getopt(argc, argv, "HLPRfinprv")) != -1)
96                 switch (ch) {
97                 case 'H':
98                         Hflag = 1;
99                         Lflag = Pflag = 0;
100                         break;
101                 case 'L':
102                         Lflag = 1;
103                         Hflag = Pflag = 0;
104                         break;
105                 case 'P':
106                         Pflag = 1;
107                         Hflag = Lflag = 0;
108                         break;
109                 case 'R':
110                         Rflag = 1;
111                         break;
112                 case 'f':
113                         fflag = 1;
114                         iflag = nflag = 0;
115                         break;
116                 case 'i':
117                         iflag = 1;
118                         fflag = nflag = 0;
119                         break;
120                 case 'n':
121                         nflag = 1;
122                         fflag = iflag = 0;
123                         break;
124                 case 'p':
125                         pflag = 1;
126                         break;
127                 case 'r':
128                         rflag = 1;
129                         break;
130                 case 'v':
131                         vflag = 1;
132                         break;
133                 default:
134                         usage();
135                         break;
136                 }
137         argc -= optind;
138         argv += optind;
139
140         if (argc < 2)
141                 usage();
142
143         fts_options = FTS_NOCHDIR | FTS_PHYSICAL;
144         if (rflag) {
145                 if (Rflag)
146                         errx(1,
147                     "the -R and -r options may not be specified together.");
148                 if (Hflag || Lflag || Pflag)
149                         errx(1,
150         "the -H, -L, and -P options may not be specified with the -r option.");
151                 fts_options &= ~FTS_PHYSICAL;
152                 fts_options |= FTS_LOGICAL;
153         }
154         if (Rflag) {
155                 if (Hflag)
156                         fts_options |= FTS_COMFOLLOW;
157                 if (Lflag) {
158                         fts_options &= ~FTS_PHYSICAL;
159                         fts_options |= FTS_LOGICAL;
160                 }
161         } else {
162                 fts_options &= ~FTS_PHYSICAL;
163                 fts_options |= FTS_LOGICAL;
164         }
165
166         /* Save the target base in "to". */
167         target = argv[--argc];
168         if (strlcpy(to.p_path, target, sizeof(to.p_path)) >= sizeof(to.p_path))
169                 errx(1, "%s: name too long", target);
170         to.p_end = to.p_path + strlen(to.p_path);
171         if (to.p_path == to.p_end) {
172                 *to.p_end++ = '.';
173                 *to.p_end = 0;
174         }
175         STRIP_TRAILING_SLASH(to);
176         to.target_end = to.p_end;
177
178         /* Set end of argument list for fts(3). */
179         argv[argc] = NULL;
180
181         /*
182          * Cp has two distinct cases:
183          *
184          * cp [-R] source target
185          * cp [-R] source1 ... sourceN directory
186          *
187          * In both cases, source can be either a file or a directory.
188          *
189          * In (1), the target becomes a copy of the source. That is, if the
190          * source is a file, the target will be a file, and likewise for
191          * directories.
192          *
193          * In (2), the real target is not directory, but "directory/source".
194          */
195         r = stat(to.p_path, &to_stat);
196         if (r == -1 && errno != ENOENT)
197                 err(1, "%s", to.p_path);
198         if (r == -1 || !S_ISDIR(to_stat.st_mode)) {
199                 /*
200                  * Case (1).  Target is not a directory.
201                  */
202                 if (argc > 1) {
203                         usage();
204                         exit(1);
205                 }
206                 /*
207                  * Need to detect the case:
208                  *      cp -R dir foo
209                  * Where dir is a directory and foo does not exist, where
210                  * we want pathname concatenations turned on but not for
211                  * the initial mkdir().
212                  */
213                 if (r == -1) {
214                         if (rflag || (Rflag && (Lflag || Hflag)))
215                                 stat(*argv, &tmp_stat);
216                         else
217                                 lstat(*argv, &tmp_stat);
218
219                         if (S_ISDIR(tmp_stat.st_mode) && (Rflag || rflag))
220                                 type = DIR_TO_DNE;
221                         else
222                                 type = FILE_TO_FILE;
223                 } else
224                         type = FILE_TO_FILE;
225         } else
226                 /*
227                  * Case (2).  Target is a directory.
228                  */
229                 type = FILE_TO_DIR;
230
231         exit (copy(argv, type, fts_options));
232 }
233
234 static int
235 copy(argv, type, fts_options)
236         char *argv[];
237         enum op type;
238         int fts_options;
239 {
240         struct stat to_stat;
241         FTS *ftsp;
242         FTSENT *curr;
243         int base = 0, dne, badcp, nlen, rval;
244         char *p, *target_mid;
245         mode_t mask, mode;
246
247         /*
248          * Keep an inverted copy of the umask, for use in correcting
249          * permissions on created directories when not using -p.
250          */
251         mask = ~umask(0777);
252         umask(~mask);
253
254         if ((ftsp = fts_open(argv, fts_options, mastercmp)) == NULL)
255                 err(1, NULL);
256         for (badcp = rval = 0; (curr = fts_read(ftsp)) != NULL; badcp = 0) {
257                 switch (curr->fts_info) {
258                 case FTS_NS:
259                 case FTS_DNR:
260                 case FTS_ERR:
261                         warnx("%s: %s",
262                             curr->fts_path, strerror(curr->fts_errno));
263                         badcp = rval = 1;
264                         continue;
265                 case FTS_DC:                    /* Warn, continue. */
266                         warnx("%s: directory causes a cycle", curr->fts_path);
267                         badcp = rval = 1;
268                         continue;
269                 }
270
271                 /*
272                  * If we are in case (2) or (3) above, we need to append the
273                  * source name to the target name.
274                  */
275                 if (type != FILE_TO_FILE) {
276                         /*
277                          * Need to remember the roots of traversals to create
278                          * correct pathnames.  If there's a directory being
279                          * copied to a non-existent directory, e.g.
280                          *      cp -R a/dir noexist
281                          * the resulting path name should be noexist/foo, not
282                          * noexist/dir/foo (where foo is a file in dir), which
283                          * is the case where the target exists.
284                          *
285                          * Also, check for "..".  This is for correct path
286                          * concatenation for paths ending in "..", e.g.
287                          *      cp -R .. /tmp
288                          * Paths ending in ".." are changed to ".".  This is
289                          * tricky, but seems the easiest way to fix the problem.
290                          *
291                          * XXX
292                          * Since the first level MUST be FTS_ROOTLEVEL, base
293                          * is always initialized.
294                          */
295                         if (curr->fts_level == FTS_ROOTLEVEL) {
296                                 if (type != DIR_TO_DNE) {
297                                         p = strrchr(curr->fts_path, '/');
298                                         base = (p == NULL) ? 0 :
299                                             (int)(p - curr->fts_path + 1);
300
301                                         if (!strcmp(&curr->fts_path[base],
302                                             ".."))
303                                                 base += 1;
304                                 } else
305                                         base = curr->fts_pathlen;
306                         }
307
308                         p = &curr->fts_path[base];
309                         nlen = curr->fts_pathlen - base;
310                         target_mid = to.target_end;
311                         if (*p != '/' && target_mid[-1] != '/')
312                                 *target_mid++ = '/';
313                         *target_mid = 0;
314                         if (target_mid - to.p_path + nlen >= PATH_MAX) {
315                                 warnx("%s%s: name too long (not copied)",
316                                     to.p_path, p);
317                                 badcp = rval = 1;
318                                 continue;
319                         }
320                         (void)strncat(target_mid, p, nlen);
321                         to.p_end = target_mid + nlen;
322                         *to.p_end = 0;
323                         STRIP_TRAILING_SLASH(to);
324                 }
325
326                 if (curr->fts_info == FTS_DP) {
327                         /*
328                          * We are nearly finished with this directory.  If we
329                          * didn't actually copy it, or otherwise don't need to
330                          * change its attributes, then we are done.
331                          */
332                         if (!curr->fts_number)
333                                 continue;
334                         /*
335                          * If -p is in effect, set all the attributes.
336                          * Otherwise, set the correct permissions, limited
337                          * by the umask.  Optimise by avoiding a chmod()
338                          * if possible (which is usually the case if we
339                          * made the directory).  Note that mkdir() does not
340                          * honour setuid, setgid and sticky bits, but we
341                          * normally want to preserve them on directories.
342                          */
343                         if (pflag) {
344                                 if (setfile(curr->fts_statp, 0))
345                                     rval = 1;
346                         } else {
347                                 mode = curr->fts_statp->st_mode;
348                                 if ((mode & (S_ISUID | S_ISGID | S_ISTXT)) ||
349                                     ((mode | S_IRWXU) & mask) != (mode & mask))
350                                         if (chmod(to.p_path, mode & mask) != 0){
351                                                 warn("chmod: %s", to.p_path);
352                                                 rval = 1;
353                                         }
354                         }
355                         continue;
356                 }
357
358                 /* Not an error but need to remember it happened */
359                 if (stat(to.p_path, &to_stat) == -1)
360                         dne = 1;
361                 else {
362                         if (to_stat.st_dev == curr->fts_statp->st_dev &&
363                             to_stat.st_ino == curr->fts_statp->st_ino) {
364                                 warnx("%s and %s are identical (not copied).",
365                                     to.p_path, curr->fts_path);
366                                 badcp = rval = 1;
367                                 if (S_ISDIR(curr->fts_statp->st_mode))
368                                         (void)fts_set(ftsp, curr, FTS_SKIP);
369                                 continue;
370                         }
371                         if (!S_ISDIR(curr->fts_statp->st_mode) &&
372                             S_ISDIR(to_stat.st_mode)) {
373                 warnx("cannot overwrite directory %s with non-directory %s",
374                                     to.p_path, curr->fts_path);
375                                 badcp = rval = 1;
376                                 continue;
377                         }
378                         dne = 0;
379                 }
380
381                 switch (curr->fts_statp->st_mode & S_IFMT) {
382                 case S_IFLNK:
383                         if (copy_link(curr, !dne))
384                                 badcp = rval = 1;
385                         break;
386                 case S_IFDIR:
387                         if (!Rflag && !rflag) {
388                                 warnx("%s is a directory (not copied).",
389                                     curr->fts_path);
390                                 (void)fts_set(ftsp, curr, FTS_SKIP);
391                                 badcp = rval = 1;
392                                 break;
393                         }
394                         /*
395                          * If the directory doesn't exist, create the new
396                          * one with the from file mode plus owner RWX bits,
397                          * modified by the umask.  Trade-off between being
398                          * able to write the directory (if from directory is
399                          * 555) and not causing a permissions race.  If the
400                          * umask blocks owner writes, we fail..
401                          */
402                         if (dne) {
403                                 if (mkdir(to.p_path,
404                                     curr->fts_statp->st_mode | S_IRWXU) < 0)
405                                         err(1, "%s", to.p_path);
406                         } else if (!S_ISDIR(to_stat.st_mode)) {
407                                 errno = ENOTDIR;
408                                 err(1, "%s", to.p_path);
409                         }
410                         /*
411                          * Arrange to correct directory attributes later
412                          * (in the post-order phase) if this is a new
413                          * directory, or if the -p flag is in effect.
414                          */
415                         curr->fts_number = pflag || dne;
416                         break;
417                 case S_IFBLK:
418                 case S_IFCHR:
419                         if (Rflag) {
420                                 if (copy_special(curr->fts_statp, !dne))
421                                         badcp = rval = 1;
422                         } else {
423                                 if (copy_file(curr, dne))
424                                         badcp = rval = 1;
425                         }
426                         break;
427                 case S_IFIFO:
428                         if (Rflag) {
429                                 if (copy_fifo(curr->fts_statp, !dne))
430                                         badcp = rval = 1;
431                         } else {
432                                 if (copy_file(curr, dne))
433                                         badcp = rval = 1;
434                         }
435                         break;
436                 default:
437                         if (copy_file(curr, dne))
438                                 badcp = rval = 1;
439                         break;
440                 }
441                 if (vflag && !badcp)
442                         (void)printf("%s -> %s\n", curr->fts_path, to.p_path);
443         }
444         if (errno)
445                 err(1, "fts_read");
446         return (rval);
447 }
448
449 /*
450  * mastercmp --
451  *      The comparison function for the copy order.  The order is to copy
452  *      non-directory files before directory files.  The reason for this
453  *      is because files tend to be in the same cylinder group as their
454  *      parent directory, whereas directories tend not to be.  Copying the
455  *      files first reduces seeking.
456  */
457 static int
458 mastercmp(const FTSENT **a, const FTSENT **b)
459 {
460         int a_info, b_info;
461
462         a_info = (*a)->fts_info;
463         if (a_info == FTS_ERR || a_info == FTS_NS || a_info == FTS_DNR)
464                 return (0);
465         b_info = (*b)->fts_info;
466         if (b_info == FTS_ERR || b_info == FTS_NS || b_info == FTS_DNR)
467                 return (0);
468         if (a_info == FTS_D)
469                 return (-1);
470         if (b_info == FTS_D)
471                 return (1);
472         return (0);
473 }