blob: 6a82f6bffcc61a4257eb2600ec351d44f469cb89 [file] [log] [blame]
Matt Kraai91b28552001-04-23 18:53:07 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini cp implementation for busybox
4 *
Matt Kraai91b28552001-04-23 18:53:07 +00005 * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Manuel Novoa III cad53642003-03-19 09:13:01 +000023/* BB_AUDIT SUSv3 defects - unsupported options -H, -L, and -P. */
24/* BB_AUDIT GNU defects - only extension options supported are -a and -d. */
25/* http://www.opengroup.org/onlinepubs/007904975/utilities/cp.html */
26
27/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
28 *
29 * Size reduction.
30 */
31
Matt Kraai91b28552001-04-23 18:53:07 +000032#include <sys/types.h>
33#include <sys/stat.h>
34#include <unistd.h>
35#include <fcntl.h>
36#include <utime.h>
37#include <errno.h>
38#include <dirent.h>
39#include <stdlib.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000040#include <assert.h>
Matt Kraai91b28552001-04-23 18:53:07 +000041#include "busybox.h"
Manuel Novoa III cad53642003-03-19 09:13:01 +000042#include "libcoreutils/coreutils.h"
43
Glenn L McGrath4766a2d2004-01-25 05:50:28 +000044/* WARNING!! ORDER IS IMPORTANT!! */
45static const char cp_opts[] = "pdRfiar";
Matt Kraai91b28552001-04-23 18:53:07 +000046
47extern int cp_main(int argc, char **argv)
48{
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 struct stat source_stat;
50 struct stat dest_stat;
51 const char *last;
52 const char *dest;
53 int s_flags;
54 int d_flags;
55 int flags;
Matt Kraai91b28552001-04-23 18:53:07 +000056 int status = 0;
Matt Kraai91b28552001-04-23 18:53:07 +000057
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 /* Since these are enums, #if tests will not work. So use assert()s. */
59 assert(FILEUTILS_PRESERVE_STATUS == 1);
60 assert(FILEUTILS_DEREFERENCE == 2);
61 assert(FILEUTILS_RECUR == 4);
62 assert(FILEUTILS_FORCE == 8);
63 assert(FILEUTILS_INTERACTIVE == 16);
64
65 flags = bb_getopt_ulflags(argc, argv, cp_opts);
66
67 if (flags & 32) {
68 flags |= (FILEUTILS_PRESERVE_STATUS | FILEUTILS_RECUR | FILEUTILS_DEREFERENCE);
69 }
Glenn L McGrath4766a2d2004-01-25 05:50:28 +000070 if (flags & 64) {
71 /* Make -r a synonym for -R,
72 * -r was marked as obsolete in SUSv3, but is included for compatability
73 */
74 flags |= FILEUTILS_RECUR;
75 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000076
77 flags ^= FILEUTILS_DEREFERENCE; /* The sense of this flag was reversed. */
78
79 if (optind + 2 > argc) {
80 bb_show_usage();
81 }
82
83 last = argv[argc - 1];
84 argv += optind;
Matt Kraai91b28552001-04-23 18:53:07 +000085
86 /* If there are only two arguments and... */
87 if (optind + 2 == argc) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000088 s_flags = cp_mv_stat2(*argv, &source_stat,
89 (flags & FILEUTILS_DEREFERENCE) ? stat : lstat);
90 if ((s_flags < 0) || ((d_flags = cp_mv_stat(last, &dest_stat)) < 0)) {
91 exit(EXIT_FAILURE);
Matt Kraai91b28552001-04-23 18:53:07 +000092 }
Matt Kraai91b28552001-04-23 18:53:07 +000093 /* ...if neither is a directory or... */
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 if ( !((s_flags | d_flags) & 2) ||
95 /* ...recursing, the 1st is a directory, and the 2nd doesn't exist... */
96 /* ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags) */
97 /* Simplify the above since FILEUTILS_RECUR >> 1 == 2. */
98 ((((flags & FILEUTILS_RECUR) >> 1) & s_flags) && !d_flags)
99 ) {
Matt Kraai91b28552001-04-23 18:53:07 +0000100 /* ...do a simple copy. */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 dest = last;
102 goto DO_COPY; /* Note: optind+2==argc implies argv[1]==last below. */
Matt Kraai91b28552001-04-23 18:53:07 +0000103 }
104 }
105
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106 do {
107 dest = concat_path_file(last, bb_get_last_path_component(*argv));
108 DO_COPY:
109 if (copy_file(*argv, dest, flags) < 0) {
Matt Kraai91b28552001-04-23 18:53:07 +0000110 status = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000111 }
112 if (*++argv == last) {
113 break;
114 }
115 free((void *) dest);
116 } while (1);
Matt Kraai91b28552001-04-23 18:53:07 +0000117
Manuel Novoa III cad53642003-03-19 09:13:01 +0000118 exit(status);
Matt Kraai91b28552001-04-23 18:53:07 +0000119}