selinux support by Yuichi Nakamura <ynakam@hitachisoft.jp> (HitachiSoft)
[platform/upstream/busybox.git] / coreutils / cp.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini cp implementation for busybox
4  *
5  * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
6  * SELinux support by Yuichi Nakamura <ynakam@hitachisoft.jp>
7  *
8  * Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
9  */
10
11 /* http://www.opengroup.org/onlinepubs/007904975/utilities/cp.html */
12
13 /* Mar 16, 2003      Manuel Novoa III   (mjn3@codepoet.org)
14  *
15  * Size reduction.
16  */
17
18 #include "busybox.h"
19 #include "libcoreutils/coreutils.h"
20
21 int cp_main(int argc, char **argv);
22 int cp_main(int argc, char **argv)
23 {
24         struct stat source_stat;
25         struct stat dest_stat;
26         const char *last;
27         const char *dest;
28         int s_flags;
29         int d_flags;
30         int flags;
31         int status = 0;
32         enum {
33                 OPT_a = 1 << (sizeof(FILEUTILS_CP_OPTSTR)-1),
34                 OPT_r = 1 << (sizeof(FILEUTILS_CP_OPTSTR)),
35                 OPT_P = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+1),
36                 OPT_H = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+2),
37                 OPT_L = 1 << (sizeof(FILEUTILS_CP_OPTSTR)+3),
38         };
39
40         // Soft- and hardlinking don't mix
41         // -P and -d are the same (-P is POSIX, -d is GNU)
42         // -r and -R are the same
43         // -a = -pdR
44         opt_complementary = "?:l--s:s--l:Pd:rR:apdR";
45         flags = getopt32(argc, argv, FILEUTILS_CP_OPTSTR "arPHL");
46         /* Default behavior of cp is to dereference, so we don't have to do
47          * anything special when we are given -L.
48          * The behavior of -H is *almost* like -L, but not quite, so let's
49          * just ignore it too for fun.
50         if (flags & OPT_L) ...
51         if (flags & OPT_H) ... // deref command-line params only
52         */
53
54 #if ENABLE_SELINUX 
55         if (flags & FILEUTILS_PRESERVE_SECURITY_CONTEXT) {
56                 selinux_or_die();
57         }
58 #endif
59
60         flags ^= FILEUTILS_DEREFERENCE;         /* The sense of this flag was reversed. */
61
62         if (optind + 2 > argc) {
63                 bb_show_usage();
64         }
65
66         last = argv[argc - 1];
67         argv += optind;
68
69         /* If there are only two arguments and...  */
70         if (optind + 2 == argc) {
71                 s_flags = cp_mv_stat2(*argv, &source_stat,
72                                       (flags & FILEUTILS_DEREFERENCE) ? stat : lstat);
73                 if (s_flags < 0)
74                         return EXIT_FAILURE;
75                 d_flags = cp_mv_stat(last, &dest_stat);
76                 if (d_flags < 0)
77                         return EXIT_FAILURE;
78
79                 /* ...if neither is a directory or...  */
80                 if ( !((s_flags | d_flags) & 2) ||
81                         /* ...recursing, the 1st is a directory, and the 2nd doesn't exist... */
82                         ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags)
83                 ) {
84                         /* ...do a simple copy.  */
85                         dest = xstrdup(last);
86                         goto DO_COPY; /* Note: optind+2==argc implies argv[1]==last below. */
87                 }
88         }
89
90         do {
91                 dest = concat_path_file(last, bb_get_last_path_component(*argv));
92  DO_COPY:
93                 if (copy_file(*argv, dest, flags) < 0) {
94                         status = 1;
95                 }
96                 free((void*)dest);
97         } while (*++argv != last);
98
99         return status;
100 }