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