1 /* cp.c -- file copying (main routines)
2 Copyright (C) 1989-1991, 1995-2010 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering. */
21 #include <sys/types.h>
23 #include <selinux/selinux.h>
27 #include "backupfile.h"
31 #include "filenamecat.h"
32 #include "ignore-value.h"
34 #include "stat-time.h"
39 # define lchown(name, uid, gid) chown (name, uid, gid)
42 #define ASSIGN_BASENAME_STRDUPA(Dest, File_name) \
46 ASSIGN_STRDUPA (tmp_abns_, (File_name)); \
47 Dest = last_component (tmp_abns_); \
48 strip_trailing_slashes (Dest); \
52 /* The official name of this program (e.g., no `g' prefix). */
53 #define PROGRAM_NAME "cp"
56 proper_name_utf8 ("Torbjorn Granlund", "Torbj\303\266rn Granlund"), \
57 proper_name ("David MacKenzie"), \
58 proper_name ("Jim Meyering")
60 /* Used by do_copy, make_dir_parents_private, and re_protect
61 to keep a list of leading directories whose protections
62 need to be fixed after copying. */
68 struct dir_attr
*next
;
71 /* For long options that have no equivalent short option, use a
72 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
75 ATTRIBUTES_ONLY_OPTION
= CHAR_MAX
+ 1,
77 NO_PRESERVE_ATTRIBUTES_OPTION
,
79 PRESERVE_ATTRIBUTES_OPTION
,
82 STRIP_TRAILING_SLASHES_OPTION
,
83 UNLINK_DEST_BEFORE_OPENING
86 /* True if the kernel is SELinux enabled. */
87 static bool selinux_enabled
;
89 /* If true, the command "cp x/e_file e_dir" uses "e_dir/x/e_file"
90 as its destination instead of the usual "e_dir/e_file." */
91 static bool parents_option
= false;
93 /* Remove any trailing slashes from each SOURCE argument. */
94 static bool remove_trailing_slashes
;
96 static char const *const sparse_type_string
[] =
98 "never", "auto", "always", NULL
100 static enum Sparse_type
const sparse_type
[] =
102 SPARSE_NEVER
, SPARSE_AUTO
, SPARSE_ALWAYS
104 ARGMATCH_VERIFY (sparse_type_string
, sparse_type
);
106 static char const *const reflink_type_string
[] =
108 "auto", "always", NULL
110 static enum Reflink_type
const reflink_type
[] =
112 REFLINK_AUTO
, REFLINK_ALWAYS
114 ARGMATCH_VERIFY (reflink_type_string
, reflink_type
);
116 static struct option
const long_opts
[] =
118 {"archive", no_argument
, NULL
, 'a'},
119 {"attributes-only", no_argument
, NULL
, ATTRIBUTES_ONLY_OPTION
},
120 {"backup", optional_argument
, NULL
, 'b'},
121 {"copy-contents", no_argument
, NULL
, COPY_CONTENTS_OPTION
},
122 {"dereference", no_argument
, NULL
, 'L'},
123 {"force", no_argument
, NULL
, 'f'},
124 {"interactive", no_argument
, NULL
, 'i'},
125 {"link", no_argument
, NULL
, 'l'},
126 {"no-clobber", no_argument
, NULL
, 'n'},
127 {"no-dereference", no_argument
, NULL
, 'P'},
128 {"no-preserve", required_argument
, NULL
, NO_PRESERVE_ATTRIBUTES_OPTION
},
129 {"no-target-directory", no_argument
, NULL
, 'T'},
130 {"one-file-system", no_argument
, NULL
, 'x'},
131 {"parents", no_argument
, NULL
, PARENTS_OPTION
},
132 {"path", no_argument
, NULL
, PARENTS_OPTION
}, /* Deprecated. */
133 {"preserve", optional_argument
, NULL
, PRESERVE_ATTRIBUTES_OPTION
},
134 {"recursive", no_argument
, NULL
, 'R'},
135 {"remove-destination", no_argument
, NULL
, UNLINK_DEST_BEFORE_OPENING
},
136 {"sparse", required_argument
, NULL
, SPARSE_OPTION
},
137 {"reflink", optional_argument
, NULL
, REFLINK_OPTION
},
138 {"strip-trailing-slashes", no_argument
, NULL
, STRIP_TRAILING_SLASHES_OPTION
},
139 {"suffix", required_argument
, NULL
, 'S'},
140 {"symbolic-link", no_argument
, NULL
, 's'},
141 {"target-directory", required_argument
, NULL
, 't'},
142 {"update", no_argument
, NULL
, 'u'},
143 {"verbose", no_argument
, NULL
, 'v'},
144 {GETOPT_HELP_OPTION_DECL
},
145 {GETOPT_VERSION_OPTION_DECL
},
152 if (status
!= EXIT_SUCCESS
)
153 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
158 Usage: %s [OPTION]... [-T] SOURCE DEST\n\
159 or: %s [OPTION]... SOURCE... DIRECTORY\n\
160 or: %s [OPTION]... -t DIRECTORY SOURCE...\n\
162 program_name
, program_name
, program_name
);
164 Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n\
168 Mandatory arguments to long options are mandatory for short options too.\n\
171 -a, --archive same as -dR --preserve=all\n\
172 --attributes-only don't copy the file data, just the attributes\n\
173 --backup[=CONTROL] make a backup of each existing destination file\n\
174 -b like --backup but does not accept an argument\n\
175 --copy-contents copy contents of special files when recursive\n\
176 -d same as --no-dereference --preserve=links\n\
179 -f, --force if an existing destination file cannot be\n\
180 opened, remove it and try again (redundant if\n\
181 the -n option is used)\n\
182 -i, --interactive prompt before overwrite (overrides a previous -n\n\
184 -H follow command-line symbolic links in SOURCE\n\
187 -l, --link link files instead of copying\n\
188 -L, --dereference always follow symbolic links in SOURCE\n\
191 -n, --no-clobber do not overwrite an existing file (overrides\n\
192 a previous -i option)\n\
193 -P, --no-dereference never follow symbolic links in SOURCE\n\
196 -p same as --preserve=mode,ownership,timestamps\n\
197 --preserve[=ATTR_LIST] preserve the specified attributes (default:\n\
198 mode,ownership,timestamps), if possible\n\
199 additional attributes: context, links, xattr,\n\
203 --no-preserve=ATTR_LIST don't preserve the specified attributes\n\
204 --parents use full source file name under DIRECTORY\n\
207 -R, -r, --recursive copy directories recursively\n\
208 --reflink[=WHEN] control clone/CoW copies. See below\n\
209 --remove-destination remove each existing destination file before\n\
210 attempting to open it (contrast with --force)\n\
213 --sparse=WHEN control creation of sparse files. See below\n\
214 --strip-trailing-slashes remove any trailing slashes from each SOURCE\n\
218 -s, --symbolic-link make symbolic links instead of copying\n\
219 -S, --suffix=SUFFIX override the usual backup suffix\n\
220 -t, --target-directory=DIRECTORY copy all SOURCE arguments into DIRECTORY\n\
221 -T, --no-target-directory treat DEST as a normal file\n\
224 -u, --update copy only when the SOURCE file is newer\n\
225 than the destination file or when the\n\
226 destination file is missing\n\
227 -v, --verbose explain what is being done\n\
228 -x, --one-file-system stay on this file system\n\
230 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
231 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
234 By default, sparse SOURCE files are detected by a crude heuristic and the\n\
235 corresponding DEST file is made sparse as well. That is the behavior\n\
236 selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n\
237 file whenever the SOURCE file contains a long enough sequence of zero bytes.\n\
238 Use --sparse=never to inhibit creation of sparse files.\n\
240 When --reflink[=always] is specified, perform a lightweight copy, where the\n\
241 data blocks are copied only when modified. If this is not possible the copy\n\
242 fails, or if --reflink=auto is specified, fall back to a standard copy.\n\
246 The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
247 The version control method may be selected via the --backup option or through\n\
248 the VERSION_CONTROL environment variable. Here are the values:\n\
252 none, off never make backups (even if --backup is given)\n\
253 numbered, t make numbered backups\n\
254 existing, nil numbered if numbered backups exist, simple otherwise\n\
255 simple, never always make simple backups\n\
259 As a special case, cp makes a backup of SOURCE when the force and backup\n\
260 options are given and SOURCE and DEST are the same name for an existing,\n\
263 emit_ancillary_info ();
268 /* Ensure that the parent directories of CONST_DST_NAME have the
269 correct protections, for the --parents option. This is done
270 after all copying has been completed, to allow permissions
271 that don't include user write/execute.
273 SRC_OFFSET is the index in CONST_DST_NAME of the beginning of the
274 source directory name.
276 ATTR_LIST is a null-terminated linked list of structures that
277 indicates the end of the filename of each intermediate directory
278 in CONST_DST_NAME that may need to have its attributes changed.
279 The command `cp --parents --preserve a/b/c d/e_dir' changes the
280 attributes of the directories d/e_dir/a and d/e_dir/a/b to match
281 the corresponding source directories regardless of whether they
282 existed before the `cp' command was given.
284 Return true if the parent of CONST_DST_NAME and any intermediate
285 directories specified by ATTR_LIST have the proper permissions
289 re_protect (char const *const_dst_name
, size_t src_offset
,
290 struct dir_attr
*attr_list
, const struct cp_options
*x
)
293 char *dst_name
; /* A copy of CONST_DST_NAME we can change. */
294 char *src_name
; /* The source name in `dst_name'. */
296 ASSIGN_STRDUPA (dst_name
, const_dst_name
);
297 src_name
= dst_name
+ src_offset
;
299 for (p
= attr_list
; p
; p
= p
->next
)
301 dst_name
[p
->slash_offset
] = '\0';
303 /* Adjust the times (and if possible, ownership) for the copy.
304 chown turns off set[ug]id bits for non-root,
305 so do the chmod last. */
307 if (x
->preserve_timestamps
)
309 struct timespec timespec
[2];
311 timespec
[0] = get_stat_atime (&p
->st
);
312 timespec
[1] = get_stat_mtime (&p
->st
);
314 if (utimens (dst_name
, timespec
))
316 error (0, errno
, _("failed to preserve times for %s"),
322 if (x
->preserve_ownership
)
324 if (lchown (dst_name
, p
->st
.st_uid
, p
->st
.st_gid
) != 0)
326 if (! chown_failure_ok (x
))
328 error (0, errno
, _("failed to preserve ownership for %s"),
332 /* Failing to preserve ownership is OK. Still, try to preserve
333 the group, but ignore the possible error. */
334 ignore_value (lchown (dst_name
, -1, p
->st
.st_gid
));
338 if (x
->preserve_mode
)
340 if (copy_acl (src_name
, -1, dst_name
, -1, p
->st
.st_mode
) != 0)
343 else if (p
->restore_mode
)
345 if (lchmod (dst_name
, p
->st
.st_mode
) != 0)
347 error (0, errno
, _("failed to preserve permissions for %s"),
353 dst_name
[p
->slash_offset
] = '/';
358 /* Ensure that the parent directory of CONST_DIR exists, for
359 the --parents option.
361 SRC_OFFSET is the index in CONST_DIR (which is a destination
362 directory) of the beginning of the source directory name.
363 Create any leading directories that don't already exist.
364 If VERBOSE_FMT_STRING is nonzero, use it as a printf format
365 string for printing a message after successfully making a directory.
366 The format should take two string arguments: the names of the
367 source and destination directories.
368 Creates a linked list of attributes of intermediate directories,
369 *ATTR_LIST, for re_protect to use after calling copy.
370 Sets *NEW_DST if this function creates parent of CONST_DIR.
372 Return true if parent of CONST_DIR exists as a directory with the proper
373 permissions when done. */
375 /* FIXME: Synch this function with the one in ../lib/mkdir-p.c. */
378 make_dir_parents_private (char const *const_dir
, size_t src_offset
,
379 char const *verbose_fmt_string
,
380 struct dir_attr
**attr_list
, bool *new_dst
,
381 const struct cp_options
*x
)
384 char *dir
; /* A copy of CONST_DIR we can change. */
385 char *src
; /* Source name in DIR. */
386 char *dst_dir
; /* Leading directory of DIR. */
387 size_t dirlen
; /* Length of DIR. */
389 ASSIGN_STRDUPA (dir
, const_dir
);
391 src
= dir
+ src_offset
;
393 dirlen
= dir_len (dir
);
394 dst_dir
= alloca (dirlen
+ 1);
395 memcpy (dst_dir
, dir
, dirlen
);
396 dst_dir
[dirlen
] = '\0';
400 if (stat (dst_dir
, &stats
) != 0)
402 /* A parent of CONST_DIR does not exist.
403 Make all missing intermediate directories. */
407 while (*slash
== '/')
409 while ((slash
= strchr (slash
, '/')))
411 struct dir_attr
*new IF_LINT ( = NULL
);
415 missing_dir
= (stat (dir
, &stats
) != 0);
417 if (missing_dir
|| x
->preserve_ownership
|| x
->preserve_mode
418 || x
->preserve_timestamps
)
420 /* Add this directory to the list of directories whose
421 modes might need fixing later. */
423 int src_errno
= (stat (src
, &src_st
) != 0
425 : S_ISDIR (src_st
.st_mode
)
430 error (0, src_errno
, _("failed to get attributes of %s"),
435 new = xmalloc (sizeof *new);
437 new->slash_offset
= slash
- dir
;
438 new->restore_mode
= false;
439 new->next
= *attr_list
;
446 mode_t omitted_permissions
;
449 /* This component does not exist. We must set
450 *new_dst and new->st.st_mode inside this loop because,
451 for example, in the command `cp --parents ../a/../b/c e_dir',
452 make_dir_parents_private creates only e_dir/../a if
453 ./b already exists. */
455 src_mode
= new->st
.st_mode
;
457 /* If the ownership or special mode bits might change,
458 omit some permissions at first, so unauthorized users
459 cannot nip in before the file is ready. */
460 omitted_permissions
= (src_mode
461 & (x
->preserve_ownership
467 /* POSIX says mkdir's behavior is implementation-defined when
468 (src_mode & ~S_IRWXUGO) != 0. However, common practice is
469 to ask mkdir to copy all the CHMOD_MODE_BITS, letting mkdir
470 decide what to do with S_ISUID | S_ISGID | S_ISVTX. */
471 mkdir_mode
= src_mode
& CHMOD_MODE_BITS
& ~omitted_permissions
;
472 if (mkdir (dir
, mkdir_mode
) != 0)
474 error (0, errno
, _("cannot make directory %s"),
480 if (verbose_fmt_string
!= NULL
)
481 printf (verbose_fmt_string
, src
, dir
);
484 /* We need search and write permissions to the new directory
485 for writing the directory's contents. Check if these
486 permissions are there. */
488 if (lstat (dir
, &stats
))
490 error (0, errno
, _("failed to get attributes of %s"),
496 if (! x
->preserve_mode
)
498 if (omitted_permissions
& ~stats
.st_mode
)
499 omitted_permissions
&= ~ cached_umask ();
500 if (omitted_permissions
& ~stats
.st_mode
501 || (stats
.st_mode
& S_IRWXU
) != S_IRWXU
)
503 new->st
.st_mode
= stats
.st_mode
| omitted_permissions
;
504 new->restore_mode
= true;
508 if ((stats
.st_mode
& S_IRWXU
) != S_IRWXU
)
510 /* Make the new directory searchable and writable.
511 The original permissions will be restored later. */
513 if (lchmod (dir
, stats
.st_mode
| S_IRWXU
) != 0)
515 error (0, errno
, _("setting permissions for %s"),
521 else if (!S_ISDIR (stats
.st_mode
))
523 error (0, 0, _("%s exists but is not a directory"),
531 /* Avoid unnecessary calls to `stat' when given
532 file names containing multiple adjacent slashes. */
533 while (*slash
== '/')
538 /* We get here if the parent of DIR already exists. */
540 else if (!S_ISDIR (stats
.st_mode
))
542 error (0, 0, _("%s exists but is not a directory"), quote (dst_dir
));
552 /* FILE is the last operand of this command.
553 Return true if FILE is a directory.
554 But report an error and exit if there is a problem accessing FILE,
555 or if FILE does not exist but would have to refer to an existing
556 directory if it referred to anything at all.
558 If the file exists, store the file's status into *ST.
559 Otherwise, set *NEW_DST. */
562 target_directory_operand (char const *file
, struct stat
*st
, bool *new_dst
)
564 int err
= (stat (file
, st
) == 0 ? 0 : errno
);
565 bool is_a_dir
= !err
&& S_ISDIR (st
->st_mode
);
569 error (EXIT_FAILURE
, err
, _("accessing %s"), quote (file
));
575 /* Scan the arguments, and copy each by calling copy.
576 Return true if successful. */
579 do_copy (int n_files
, char **file
, const char *target_directory
,
580 bool no_target_directory
, struct cp_options
*x
)
583 bool new_dst
= false;
586 if (n_files
<= !target_directory
)
589 error (0, 0, _("missing file operand"));
591 error (0, 0, _("missing destination file operand after %s"),
593 usage (EXIT_FAILURE
);
596 if (no_target_directory
)
598 if (target_directory
)
599 error (EXIT_FAILURE
, 0,
600 _("cannot combine --target-directory (-t) "
601 "and --no-target-directory (-T)"));
604 error (0, 0, _("extra operand %s"), quote (file
[2]));
605 usage (EXIT_FAILURE
);
608 else if (!target_directory
)
611 && target_directory_operand (file
[n_files
- 1], &sb
, &new_dst
))
612 target_directory
= file
[--n_files
];
613 else if (2 < n_files
)
614 error (EXIT_FAILURE
, 0, _("target %s is not a directory"),
615 quote (file
[n_files
- 1]));
618 if (target_directory
)
620 /* cp file1...filen edir
621 Copy the files `file1' through `filen'
622 to the existing directory `edir'. */
625 /* Initialize these hash tables only if we'll need them.
626 The problems they're used to detect can arise only if
627 there are two or more files to copy. */
634 for (i
= 0; i
< n_files
; i
++)
637 bool parent_exists
= true; /* True if dir_name (dst_name) exists. */
638 struct dir_attr
*attr_list
;
639 char *arg_in_concat
= NULL
;
642 /* Trailing slashes are meaningful (i.e., maybe worth preserving)
643 only in the source file names. */
644 if (remove_trailing_slashes
)
645 strip_trailing_slashes (arg
);
649 char *arg_no_trailing_slash
;
651 /* Use `arg' without trailing slashes in constructing destination
652 file names. Otherwise, we can end up trying to create a
653 directory via `mkdir ("dst/foo/"...', which is not portable.
654 It fails, due to the trailing slash, on at least
655 NetBSD 1.[34] systems. */
656 ASSIGN_STRDUPA (arg_no_trailing_slash
, arg
);
657 strip_trailing_slashes (arg_no_trailing_slash
);
659 /* Append all of `arg' (minus any trailing slash) to `dest'. */
660 dst_name
= file_name_concat (target_directory
,
661 arg_no_trailing_slash
,
664 /* For --parents, we have to make sure that the directory
665 dir_name (dst_name) exists. We may have to create a few
666 leading directories. */
668 (make_dir_parents_private
669 (dst_name
, arg_in_concat
- dst_name
,
670 (x
->verbose
? "%s -> %s\n" : NULL
),
671 &attr_list
, &new_dst
, x
));
676 /* Append the last component of `arg' to `target_directory'. */
678 ASSIGN_BASENAME_STRDUPA (arg_base
, arg
);
679 /* For `cp -R source/.. dest', don't copy into `dest/..'. */
680 dst_name
= (STREQ (arg_base
, "..")
681 ? xstrdup (target_directory
)
682 : file_name_concat (target_directory
, arg_base
,
688 /* make_dir_parents_private failed, so don't even
695 ok
&= copy (arg
, dst_name
, new_dst
, x
, ©_into_self
, NULL
);
698 ok
&= re_protect (dst_name
, arg_in_concat
- dst_name
,
706 struct dir_attr
*p
= attr_list
;
707 attr_list
= attr_list
->next
;
715 else /* !target_directory */
717 char const *new_dest
;
718 char const *source
= file
[0];
719 char const *dest
= file
[1];
725 _("with --parents, the destination must be a directory"));
726 usage (EXIT_FAILURE
);
729 /* When the force and backup options have been specified and
730 the source and destination are the same name for an existing
731 regular file, convert the user's command, e.g.,
732 `cp --force --backup foo foo' to `cp --force foo fooSUFFIX'
733 where SUFFIX is determined by any version control options used. */
735 if (x
->unlink_dest_after_failed_open
736 && x
->backup_type
!= no_backups
737 && STREQ (source
, dest
)
738 && !new_dst
&& S_ISREG (sb
.st_mode
))
740 static struct cp_options x_tmp
;
742 new_dest
= find_backup_file_name (dest
, x
->backup_type
);
743 /* Set x->backup_type to `no_backups' so that the normal backup
744 mechanism is not used when performing the actual copy.
745 backup_type must be set to `no_backups' only *after* the above
746 call to find_backup_file_name -- that function uses
747 backup_type to determine the suffix it applies. */
749 x_tmp
.backup_type
= no_backups
;
757 ok
= copy (source
, new_dest
, 0, x
, &unused
, NULL
);
764 cp_option_init (struct cp_options
*x
)
766 cp_options_default (x
);
767 x
->copy_as_regular
= true;
768 x
->dereference
= DEREF_UNDEFINED
;
769 x
->unlink_dest_before_opening
= false;
770 x
->unlink_dest_after_failed_open
= false;
771 x
->hard_link
= false;
772 x
->interactive
= I_UNSPECIFIED
;
773 x
->move_mode
= false;
774 x
->one_file_system
= false;
775 x
->reflink_mode
= REFLINK_NEVER
;
777 x
->preserve_ownership
= false;
778 x
->preserve_links
= false;
779 x
->preserve_mode
= false;
780 x
->preserve_timestamps
= false;
781 x
->preserve_security_context
= false;
782 x
->require_preserve_context
= false;
783 x
->preserve_xattr
= false;
784 x
->reduce_diagnostics
= false;
785 x
->require_preserve_xattr
= false;
787 x
->data_copy_required
= true;
788 x
->require_preserve
= false;
789 x
->recursive
= false;
790 x
->sparse_mode
= SPARSE_AUTO
;
791 x
->symbolic_link
= false;
796 x
->stdin_tty
= false;
801 /* By default, refuse to open a dangling destination symlink, because
802 in general one cannot do that safely, give the current semantics of
803 open's O_EXCL flag, (which POSIX doesn't even allow cp to use, btw).
804 But POSIX requires it. */
805 x
->open_dangling_dest_symlink
= getenv ("POSIXLY_CORRECT") != NULL
;
811 /* Given a string, ARG, containing a comma-separated list of arguments
812 to the --preserve option, set the appropriate fields of X to ON_OFF. */
814 decode_preserve_arg (char const *arg
, struct cp_options
*x
, bool on_off
)
826 static enum File_attribute
const preserve_vals
[] =
828 PRESERVE_MODE
, PRESERVE_TIMESTAMPS
,
829 PRESERVE_OWNERSHIP
, PRESERVE_LINK
, PRESERVE_CONTEXT
, PRESERVE_XATTR
,
832 /* Valid arguments to the `--preserve' option. */
833 static char const* const preserve_args
[] =
835 "mode", "timestamps",
836 "ownership", "links", "context", "xattr", "all", NULL
838 ARGMATCH_VERIFY (preserve_args
, preserve_vals
);
840 char *arg_writable
= xstrdup (arg
);
841 char *s
= arg_writable
;
844 /* find next comma */
845 char *comma
= strchr (s
, ',');
846 enum File_attribute val
;
848 /* If we found a comma, put a NUL in its place and advance. */
853 val
= XARGMATCH ("--preserve", s
, preserve_args
, preserve_vals
);
857 x
->preserve_mode
= on_off
;
860 case PRESERVE_TIMESTAMPS
:
861 x
->preserve_timestamps
= on_off
;
864 case PRESERVE_OWNERSHIP
:
865 x
->preserve_ownership
= on_off
;
869 x
->preserve_links
= on_off
;
872 case PRESERVE_CONTEXT
:
873 x
->preserve_security_context
= on_off
;
874 x
->require_preserve_context
= on_off
;
878 x
->preserve_xattr
= on_off
;
879 x
->require_preserve_xattr
= on_off
;
883 x
->preserve_mode
= on_off
;
884 x
->preserve_timestamps
= on_off
;
885 x
->preserve_ownership
= on_off
;
886 x
->preserve_links
= on_off
;
888 x
->preserve_security_context
= on_off
;
889 x
->preserve_xattr
= on_off
;
903 main (int argc
, char **argv
)
907 bool make_backups
= false;
908 char *backup_suffix_string
;
909 char *version_control_string
= NULL
;
911 bool copy_contents
= false;
912 char *target_directory
= NULL
;
913 bool no_target_directory
= false;
915 initialize_main (&argc
, &argv
);
916 set_program_name (argv
[0]);
917 setlocale (LC_ALL
, "");
918 bindtextdomain (PACKAGE
, LOCALEDIR
);
919 textdomain (PACKAGE
);
921 atexit (close_stdin
);
923 selinux_enabled
= (0 < is_selinux_enabled ());
926 /* FIXME: consider not calling getenv for SIMPLE_BACKUP_SUFFIX unless
927 we'll actually use backup_suffix_string. */
928 backup_suffix_string
= getenv ("SIMPLE_BACKUP_SUFFIX");
930 while ((c
= getopt_long (argc
, argv
, "abdfHilLnprst:uvxPRS:T",
937 x
.sparse_mode
= XARGMATCH ("--sparse", optarg
,
938 sparse_type_string
, sparse_type
);
943 x
.reflink_mode
= REFLINK_ALWAYS
;
945 x
.reflink_mode
= XARGMATCH ("--reflink", optarg
,
946 reflink_type_string
, reflink_type
);
949 case 'a': /* Like -dR --preserve=all with reduced failure diagnostics. */
950 x
.dereference
= DEREF_NEVER
;
951 x
.preserve_links
= true;
952 x
.preserve_ownership
= true;
953 x
.preserve_mode
= true;
954 x
.preserve_timestamps
= true;
955 x
.require_preserve
= true;
957 x
.preserve_security_context
= true;
958 x
.preserve_xattr
= true;
959 x
.reduce_diagnostics
= true;
966 version_control_string
= optarg
;
969 case ATTRIBUTES_ONLY_OPTION
:
970 x
.data_copy_required
= false;
973 case COPY_CONTENTS_OPTION
:
974 copy_contents
= true;
978 x
.preserve_links
= true;
979 x
.dereference
= DEREF_NEVER
;
983 x
.unlink_dest_after_failed_open
= true;
987 x
.dereference
= DEREF_COMMAND_LINE_ARGUMENTS
;
991 x
.interactive
= I_ASK_USER
;
999 x
.dereference
= DEREF_ALWAYS
;
1003 x
.interactive
= I_ALWAYS_NO
;
1007 x
.dereference
= DEREF_NEVER
;
1010 case NO_PRESERVE_ATTRIBUTES_OPTION
:
1011 decode_preserve_arg (optarg
, &x
, false);
1014 case PRESERVE_ATTRIBUTES_OPTION
:
1017 /* Fall through to the case for `p' below. */
1021 decode_preserve_arg (optarg
, &x
, true);
1022 x
.require_preserve
= true;
1027 x
.preserve_ownership
= true;
1028 x
.preserve_mode
= true;
1029 x
.preserve_timestamps
= true;
1030 x
.require_preserve
= true;
1033 case PARENTS_OPTION
:
1034 parents_option
= true;
1042 case UNLINK_DEST_BEFORE_OPENING
:
1043 x
.unlink_dest_before_opening
= true;
1046 case STRIP_TRAILING_SLASHES_OPTION
:
1047 remove_trailing_slashes
= true;
1051 x
.symbolic_link
= true;
1055 if (target_directory
)
1056 error (EXIT_FAILURE
, 0,
1057 _("multiple target directories specified"));
1061 if (stat (optarg
, &st
) != 0)
1062 error (EXIT_FAILURE
, errno
, _("accessing %s"), quote (optarg
));
1063 if (! S_ISDIR (st
.st_mode
))
1064 error (EXIT_FAILURE
, 0, _("target %s is not a directory"),
1067 target_directory
= optarg
;
1071 no_target_directory
= true;
1083 x
.one_file_system
= true;
1087 make_backups
= true;
1088 backup_suffix_string
= optarg
;
1091 case_GETOPT_HELP_CHAR
;
1093 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1096 usage (EXIT_FAILURE
);
1100 if (x
.hard_link
&& x
.symbolic_link
)
1102 error (0, 0, _("cannot make both hard and symbolic links"));
1103 usage (EXIT_FAILURE
);
1106 if (make_backups
&& x
.interactive
== I_ALWAYS_NO
)
1109 _("options --backup and --no-clobber are mutually exclusive"));
1110 usage (EXIT_FAILURE
);
1113 if (x
.reflink_mode
== REFLINK_ALWAYS
&& x
.sparse_mode
!= SPARSE_AUTO
)
1115 error (0, 0, _("--reflink can be used only with --sparse=auto"));
1116 usage (EXIT_FAILURE
);
1119 if (backup_suffix_string
)
1120 simple_backup_suffix
= xstrdup (backup_suffix_string
);
1122 x
.backup_type
= (make_backups
1123 ? xget_version (_("backup type"),
1124 version_control_string
)
1127 if (x
.dereference
== DEREF_UNDEFINED
)
1130 /* This is compatible with FreeBSD. */
1131 x
.dereference
= DEREF_NEVER
;
1133 x
.dereference
= DEREF_ALWAYS
;
1137 x
.copy_as_regular
= copy_contents
;
1139 /* If --force (-f) was specified and we're in link-creation mode,
1140 first remove any existing destination file. */
1141 if (x
.unlink_dest_after_failed_open
&& (x
.hard_link
|| x
.symbolic_link
))
1142 x
.unlink_dest_before_opening
= true;
1144 if (x
.preserve_security_context
)
1146 if (!selinux_enabled
)
1147 error (EXIT_FAILURE
, 0,
1148 _("cannot preserve security context "
1149 "without an SELinux-enabled kernel"));
1153 if (x
.require_preserve_xattr
)
1154 error (EXIT_FAILURE
, 0, _("cannot preserve extended attributes, cp is "
1155 "built without xattr support"));
1158 /* Allocate space for remembering copied and created files. */
1162 ok
= do_copy (argc
- optind
, argv
+ optind
,
1163 target_directory
, no_target_directory
, &x
);
1167 exit (ok
? EXIT_SUCCESS
: EXIT_FAILURE
);