1 /* cp.c -- file copying (main routines)
2 Copyright (C) 89, 90, 91, 1995-2005 Free Software Foundation.
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 2, or (at your option)
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, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering. */
22 #include <sys/types.h>
28 #include "backupfile.h"
33 #include "filenamecat.h"
36 #include "stat-time.h"
39 #define ASSIGN_BASENAME_STRDUPA(Dest, File_name) \
43 ASSIGN_STRDUPA (tmp_abns_, (File_name)); \
44 strip_trailing_slashes (tmp_abns_); \
45 Dest = base_name (tmp_abns_); \
49 /* The official name of this program (e.g., no `g' prefix). */
50 #define PROGRAM_NAME "cp"
52 #define AUTHORS "Torbjorn Granlund", "David MacKenzie", "Jim Meyering"
54 /* Used by do_copy, make_dir_parents_private, and re_protect
55 to keep a list of leading directories whose protections
56 need to be fixed after copying. */
61 struct dir_attr
*next
;
64 /* For long options that have no equivalent short option, use a
65 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
68 COPY_CONTENTS_OPTION
= CHAR_MAX
+ 1,
69 NO_PRESERVE_ATTRIBUTES_OPTION
,
71 PRESERVE_ATTRIBUTES_OPTION
,
74 STRIP_TRAILING_SLASHES_OPTION
,
75 UNLINK_DEST_BEFORE_OPENING
78 /* Initial number of entries in each hash table entry's table of inodes. */
79 #define INITIAL_HASH_MODULE 100
81 /* Initial number of entries in the inode hash table. */
82 #define INITIAL_ENTRY_TAB_SIZE 70
84 /* The invocation name of this program. */
87 /* If true, the command "cp x/e_file e_dir" uses "e_dir/x/e_file"
88 as its destination instead of the usual "e_dir/e_file." */
89 static bool parents_option
= false;
91 /* Remove any trailing slashes from each SOURCE argument. */
92 static bool remove_trailing_slashes
;
94 static char const *const sparse_type_string
[] =
96 "never", "auto", "always", NULL
98 static enum Sparse_type
const sparse_type
[] =
100 SPARSE_NEVER
, SPARSE_AUTO
, SPARSE_ALWAYS
102 ARGMATCH_VERIFY (sparse_type_string
, sparse_type
);
104 /* Valid arguments to the `--reply' option. */
105 static char const* const reply_args
[] =
107 "yes", "no", "query", NULL
109 /* The values that correspond to the above strings. */
110 static int const reply_vals
[] =
112 I_ALWAYS_YES
, I_ALWAYS_NO
, I_ASK_USER
114 ARGMATCH_VERIFY (reply_args
, reply_vals
);
116 static struct option
const long_opts
[] =
118 {"archive", no_argument
, NULL
, 'a'},
119 {"backup", optional_argument
, NULL
, 'b'},
120 {"copy-contents", no_argument
, NULL
, COPY_CONTENTS_OPTION
},
121 {"dereference", no_argument
, NULL
, 'L'},
122 {"force", no_argument
, NULL
, 'f'},
123 {"interactive", no_argument
, NULL
, 'i'},
124 {"link", no_argument
, NULL
, 'l'},
125 {"no-dereference", no_argument
, NULL
, 'P'},
126 {"no-preserve", required_argument
, NULL
, NO_PRESERVE_ATTRIBUTES_OPTION
},
127 {"no-target-directory", no_argument
, NULL
, 'T'},
128 {"one-file-system", no_argument
, NULL
, 'x'},
129 {"parents", no_argument
, NULL
, PARENTS_OPTION
},
130 {"path", no_argument
, NULL
, PARENTS_OPTION
}, /* Deprecated. */
131 {"preserve", optional_argument
, NULL
, PRESERVE_ATTRIBUTES_OPTION
},
132 {"recursive", no_argument
, NULL
, 'R'},
133 {"remove-destination", no_argument
, NULL
, UNLINK_DEST_BEFORE_OPENING
},
134 {"reply", required_argument
, NULL
, REPLY_OPTION
}, /* Deprecated 2005-07-03,
136 {"sparse", required_argument
, NULL
, SPARSE_OPTION
},
137 {"strip-trailing-slashes", no_argument
, NULL
, STRIP_TRAILING_SLASHES_OPTION
},
138 {"suffix", required_argument
, NULL
, 'S'},
139 {"symbolic-link", no_argument
, NULL
, 's'},
140 {"target-directory", required_argument
, NULL
, 't'},
141 {"update", no_argument
, NULL
, 'u'},
142 {"verbose", no_argument
, NULL
, 'v'},
143 {GETOPT_HELP_OPTION_DECL
},
144 {GETOPT_VERSION_OPTION_DECL
},
151 if (status
!= EXIT_SUCCESS
)
152 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
157 Usage: %s [OPTION]... [-T] SOURCE DEST\n\
158 or: %s [OPTION]... SOURCE... DIRECTORY\n\
159 or: %s [OPTION]... -t DIRECTORY SOURCE...\n\
161 program_name
, program_name
, program_name
);
163 Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n\
167 Mandatory arguments to long options are mandatory for short options too.\n\
170 -a, --archive same as -dpR\n\
171 --backup[=CONTROL] make a backup of each existing destination file\n\
172 -b like --backup but does not accept an argument\n\
173 --copy-contents copy contents of special files when recursive\n\
174 -d same as --no-dereference --preserve=link\n\
177 -f, --force if an existing destination file cannot be\n\
178 opened, remove it and try again\n\
179 -i, --interactive prompt before overwrite\n\
180 -H follow command-line symbolic links\n\
183 -l, --link link files instead of copying\n\
184 -L, --dereference always follow symbolic links\n\
187 -P, --no-dereference never follow symbolic links\n\
190 -p same as --preserve=mode,ownership,timestamps\n\
191 --preserve[=ATTR_LIST] preserve the specified attributes (default:\n\
192 mode,ownership,timestamps), if possible\n\
193 additional attributes: links, all\n\
196 --no-preserve=ATTR_LIST don't preserve the specified attributes\n\
197 --parents use full source file name under DIRECTORY\n\
200 -R, -r, --recursive copy directories recursively\n\
201 --remove-destination remove each existing destination file before\n\
202 attempting to open it (contrast with --force)\n\
205 --sparse=WHEN control creation of sparse files\n\
206 --strip-trailing-slashes remove any trailing slashes from each SOURCE\n\
210 -s, --symbolic-link make symbolic links instead of copying\n\
211 -S, --suffix=SUFFIX override the usual backup suffix\n\
212 -t, --target-directory=DIRECTORY copy all SOURCE arguments into DIRECTORY\n\
213 -T, --no-target-directory treat DEST as a normal file\n\
216 -u, --update copy only when the SOURCE file is newer\n\
217 than the destination file or when the\n\
218 destination file is missing\n\
219 -v, --verbose explain what is being done\n\
220 -x, --one-file-system stay on this file system\n\
222 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
223 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
226 By default, sparse SOURCE files are detected by a crude heuristic and the\n\
227 corresponding DEST file is made sparse as well. That is the behavior\n\
228 selected by --sparse=auto. Specify --sparse=always to create a sparse DEST\n\
229 file whenever the SOURCE file contains a long enough sequence of zero bytes.\n\
230 Use --sparse=never to inhibit creation of sparse files.\n\
234 The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
235 The version control method may be selected via the --backup option or through\n\
236 the VERSION_CONTROL environment variable. Here are the values:\n\
240 none, off never make backups (even if --backup is given)\n\
241 numbered, t make numbered backups\n\
242 existing, nil numbered if numbered backups exist, simple otherwise\n\
243 simple, never always make simple backups\n\
247 As a special case, cp makes a backup of SOURCE when the force and backup\n\
248 options are given and SOURCE and DEST are the same name for an existing,\n\
251 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
256 /* Ensure that the parent directories of CONST_DST_NAME have the
257 correct protections, for the --parents option. This is done
258 after all copying has been completed, to allow permissions
259 that don't include user write/execute.
261 SRC_OFFSET is the index in CONST_DST_NAME of the beginning of the
262 source directory name.
264 ATTR_LIST is a null-terminated linked list of structures that
265 indicates the end of the filename of each intermediate directory
266 in CONST_DST_NAME that may need to have its attributes changed.
267 The command `cp --parents --preserve a/b/c d/e_dir' changes the
268 attributes of the directories d/e_dir/a and d/e_dir/a/b to match
269 the corresponding source directories regardless of whether they
270 existed before the `cp' command was given.
272 Return true if the parent of CONST_DST_NAME and any intermediate
273 directories specified by ATTR_LIST have the proper permissions
277 re_protect (char const *const_dst_name
, size_t src_offset
,
278 struct dir_attr
*attr_list
, const struct cp_options
*x
)
281 char *dst_name
; /* A copy of CONST_DST_NAME we can change. */
282 char *src_name
; /* The source name in `dst_name'. */
284 ASSIGN_STRDUPA (dst_name
, const_dst_name
);
285 src_name
= dst_name
+ src_offset
;
287 for (p
= attr_list
; p
; p
= p
->next
)
291 dst_name
[p
->slash_offset
] = '\0';
293 if (XSTAT (x
, src_name
, &src_sb
))
295 error (0, errno
, _("failed to get attributes of %s"),
300 /* Adjust the times (and if possible, ownership) for the copy.
301 chown turns off set[ug]id bits for non-root,
302 so do the chmod last. */
304 if (x
->preserve_timestamps
)
306 struct timespec timespec
[2];
308 timespec
[0] = get_stat_atime (&src_sb
);
309 timespec
[1] = get_stat_mtime (&src_sb
);
311 if (utimens (dst_name
, timespec
))
313 error (0, errno
, _("failed to preserve times for %s"),
319 if (x
->preserve_ownership
)
321 if (chown (dst_name
, src_sb
.st_uid
, src_sb
.st_gid
) != 0
322 && ! chown_failure_ok (x
))
324 error (0, errno
, _("failed to preserve ownership for %s"),
330 if (x
->preserve_mode
| p
->is_new_dir
)
332 if (chmod (dst_name
, src_sb
.st_mode
& x
->umask_kill
))
334 error (0, errno
, _("failed to preserve permissions for %s"),
340 dst_name
[p
->slash_offset
] = '/';
345 /* Ensure that the parent directory of CONST_DIR exists, for
346 the --parents option.
348 SRC_OFFSET is the index in CONST_DIR (which is a destination
349 directory) of the beginning of the source directory name.
350 Create any leading directories that don't already exist,
351 giving them permissions MODE.
352 If VERBOSE_FMT_STRING is nonzero, use it as a printf format
353 string for printing a message after successfully making a directory.
354 The format should take two string arguments: the names of the
355 source and destination directories.
356 Creates a linked list of attributes of intermediate directories,
357 *ATTR_LIST, for re_protect to use after calling copy.
358 Sets *NEW_DST if this function creates parent of CONST_DIR.
360 Return true if parent of CONST_DIR exists as a directory with the proper
361 permissions when done. */
363 /* FIXME: Synch this function with the one in ../lib/mkdir-p.c. */
366 make_dir_parents_private (char const *const_dir
, size_t src_offset
,
367 mode_t mode
, char const *verbose_fmt_string
,
368 struct dir_attr
**attr_list
, bool *new_dst
,
372 char *dir
; /* A copy of CONST_DIR we can change. */
373 char *src
; /* Source name in DIR. */
374 char *dst_dir
; /* Leading directory of DIR. */
375 size_t dirlen
; /* Length of DIR. */
377 ASSIGN_STRDUPA (dir
, const_dir
);
379 src
= dir
+ src_offset
;
381 dirlen
= dir_len (dir
);
382 dst_dir
= alloca (dirlen
+ 1);
383 memcpy (dst_dir
, dir
, dirlen
);
384 dst_dir
[dirlen
] = '\0';
388 if ((*xstat
) (dst_dir
, &stats
))
390 /* A parent of CONST_DIR does not exist.
391 Make all missing intermediate directories. */
395 while (*slash
== '/')
397 while ((slash
= strchr (slash
, '/')))
399 /* Add this directory to the list of directories whose modes need
401 struct dir_attr
*new = xmalloc (sizeof *new);
402 new->slash_offset
= slash
- dir
;
403 new->next
= *attr_list
;
407 if ((*xstat
) (dir
, &stats
))
409 /* This component does not exist. We must set
410 *new_dst and new->is_new_dir inside this loop because,
411 for example, in the command `cp --parents ../a/../b/c e_dir',
412 make_dir_parents_private creates only e_dir/../a if
413 ./b already exists. */
415 new->is_new_dir
= true;
416 if (mkdir (dir
, mode
))
418 error (0, errno
, _("cannot make directory %s"),
424 if (verbose_fmt_string
!= NULL
)
425 printf (verbose_fmt_string
, src
, dir
);
428 else if (!S_ISDIR (stats
.st_mode
))
430 error (0, 0, _("%s exists but is not a directory"),
436 new->is_new_dir
= false;
441 /* Avoid unnecessary calls to `stat' when given
442 file names containing multiple adjacent slashes. */
443 while (*slash
== '/')
448 /* We get here if the parent of DIR already exists. */
450 else if (!S_ISDIR (stats
.st_mode
))
452 error (0, 0, _("%s exists but is not a directory"), quote (dst_dir
));
462 /* FILE is the last operand of this command.
463 Return true if FILE is a directory.
464 But report an error and exit if there is a problem accessing FILE,
465 or if FILE does not exist but would have to refer to an existing
466 directory if it referred to anything at all.
468 If the file exists, store the file's status into *ST.
469 Otherwise, set *NEW_DST. */
472 target_directory_operand (char const *file
, struct stat
*st
, bool *new_dst
)
474 char const *b
= base_name (file
);
475 size_t blen
= strlen (b
);
476 bool looks_like_a_dir
= (blen
== 0 || ISSLASH (b
[blen
- 1]));
477 int err
= (stat (file
, st
) == 0 ? 0 : errno
);
478 bool is_a_dir
= !err
&& S_ISDIR (st
->st_mode
);
482 error (EXIT_FAILURE
, err
, _("accessing %s"), quote (file
));
485 if (is_a_dir
< looks_like_a_dir
)
486 error (EXIT_FAILURE
, err
, _("target %s is not a directory"), quote (file
));
490 /* Scan the arguments, and copy each by calling copy.
491 Return true if successful. */
494 do_copy (int n_files
, char **file
, const char *target_directory
,
495 bool no_target_directory
, struct cp_options
*x
)
498 bool new_dst
= false;
501 if (n_files
<= !target_directory
)
504 error (0, 0, _("missing file operand"));
506 error (0, 0, _("missing destination file operand after %s"),
508 usage (EXIT_FAILURE
);
511 if (no_target_directory
)
513 if (target_directory
)
514 error (EXIT_FAILURE
, 0,
515 _("Cannot combine --target-directory (-t) "
516 "and --no-target-directory (-T)"));
519 error (0, 0, _("extra operand %s"), quote (file
[2]));
520 usage (EXIT_FAILURE
);
523 else if (!target_directory
)
526 && target_directory_operand (file
[n_files
- 1], &sb
, &new_dst
))
527 target_directory
= file
[--n_files
];
528 else if (2 < n_files
)
529 error (EXIT_FAILURE
, 0, _("target %s is not a directory"),
530 quote (file
[n_files
- 1]));
533 if (target_directory
)
535 /* cp file1...filen edir
536 Copy the files `file1' through `filen'
537 to the existing directory `edir'. */
539 int (*xstat
)() = (x
->dereference
== DEREF_COMMAND_LINE_ARGUMENTS
540 || x
->dereference
== DEREF_ALWAYS
544 /* Initialize these hash tables only if we'll need them.
545 The problems they're used to detect can arise only if
546 there are two or more files to copy. */
553 for (i
= 0; i
< n_files
; i
++)
556 bool parent_exists
= true; /* True if dir_name (dst_name) exists. */
557 struct dir_attr
*attr_list
;
558 char *arg_in_concat
= NULL
;
561 /* Trailing slashes are meaningful (i.e., maybe worth preserving)
562 only in the source file names. */
563 if (remove_trailing_slashes
)
564 strip_trailing_slashes (arg
);
568 char *arg_no_trailing_slash
;
570 /* Use `arg' without trailing slashes in constructing destination
571 file names. Otherwise, we can end up trying to create a
572 directory via `mkdir ("dst/foo/"...', which is not portable.
573 It fails, due to the trailing slash, on at least
574 NetBSD 1.[34] systems. */
575 ASSIGN_STRDUPA (arg_no_trailing_slash
, arg
);
576 strip_trailing_slashes (arg_no_trailing_slash
);
578 /* Append all of `arg' (minus any trailing slash) to `dest'. */
579 dst_name
= file_name_concat (target_directory
,
580 arg_no_trailing_slash
,
583 /* For --parents, we have to make sure that the directory
584 dir_name (dst_name) exists. We may have to create a few
585 leading directories. */
587 (make_dir_parents_private
588 (dst_name
, arg_in_concat
- dst_name
, S_IRWXU
,
589 (x
->verbose
? "%s -> %s\n" : NULL
),
590 &attr_list
, &new_dst
, xstat
));
595 /* Append the last component of `arg' to `target_directory'. */
597 ASSIGN_BASENAME_STRDUPA (arg_base
, arg
);
598 /* For `cp -R source/.. dest', don't copy into `dest/..'. */
599 dst_name
= (STREQ (arg_base
, "..")
600 ? xstrdup (target_directory
)
601 : file_name_concat (target_directory
, arg_base
,
607 /* make_dir_parents_private failed, so don't even
614 ok
&= copy (arg
, dst_name
, new_dst
, x
, ©_into_self
, NULL
);
617 ok
&= re_protect (dst_name
, arg_in_concat
- dst_name
,
624 else /* !target_directory */
626 char const *new_dest
;
627 char const *source
= file
[0];
628 char const *dest
= file
[1];
634 _("with --parents, the destination must be a directory"));
635 usage (EXIT_FAILURE
);
638 /* When the force and backup options have been specified and
639 the source and destination are the same name for an existing
640 regular file, convert the user's command, e.g.,
641 `cp --force --backup foo foo' to `cp --force foo fooSUFFIX'
642 where SUFFIX is determined by any version control options used. */
644 if (x
->unlink_dest_after_failed_open
645 && x
->backup_type
!= no_backups
646 && STREQ (source
, dest
)
647 && !new_dst
&& S_ISREG (sb
.st_mode
))
649 static struct cp_options x_tmp
;
651 new_dest
= find_backup_file_name (dest
, x
->backup_type
);
652 /* Set x->backup_type to `no_backups' so that the normal backup
653 mechanism is not used when performing the actual copy.
654 backup_type must be set to `no_backups' only *after* the above
655 call to find_backup_file_name -- that function uses
656 backup_type to determine the suffix it applies. */
658 x_tmp
.backup_type
= no_backups
;
666 ok
= copy (source
, new_dest
, 0, x
, &unused
, NULL
);
673 cp_option_init (struct cp_options
*x
)
675 x
->copy_as_regular
= true;
676 x
->dereference
= DEREF_UNDEFINED
;
677 x
->unlink_dest_before_opening
= false;
678 x
->unlink_dest_after_failed_open
= false;
679 x
->hard_link
= false;
680 x
->interactive
= I_UNSPECIFIED
;
681 x
->chown_privileges
= chown_privileges ();
682 x
->move_mode
= false;
683 x
->one_file_system
= false;
685 x
->preserve_ownership
= false;
686 x
->preserve_links
= false;
687 x
->preserve_mode
= false;
688 x
->preserve_timestamps
= false;
690 x
->require_preserve
= false;
691 x
->recursive
= false;
692 x
->sparse_mode
= SPARSE_AUTO
;
693 x
->symbolic_link
= false;
698 x
->stdin_tty
= false;
700 /* Find out the current file creation mask, to knock the right bits
701 when using chmod. The creation mask is set to be liberal, so
702 that created directories can be written, even if it would not
703 have been allowed with the mask this process was started with. */
704 x
->umask_kill
= ~ umask (0);
712 /* Given a string, ARG, containing a comma-separated list of arguments
713 to the --preserve option, set the appropriate fields of X to ON_OFF. */
715 decode_preserve_arg (char const *arg
, struct cp_options
*x
, bool on_off
)
725 static enum File_attribute
const preserve_vals
[] =
727 PRESERVE_MODE
, PRESERVE_TIMESTAMPS
,
728 PRESERVE_OWNERSHIP
, PRESERVE_LINK
, PRESERVE_ALL
730 /* Valid arguments to the `--preserve' option. */
731 static char const* const preserve_args
[] =
733 "mode", "timestamps",
734 "ownership", "links", "all", NULL
736 ARGMATCH_VERIFY (preserve_args
, preserve_vals
);
738 char *arg_writable
= xstrdup (arg
);
739 char *s
= arg_writable
;
742 /* find next comma */
743 char *comma
= strchr (s
, ',');
744 enum File_attribute val
;
746 /* If we found a comma, put a NUL in its place and advance. */
751 val
= XARGMATCH ("--preserve", s
, preserve_args
, preserve_vals
);
755 x
->preserve_mode
= on_off
;
758 case PRESERVE_TIMESTAMPS
:
759 x
->preserve_timestamps
= on_off
;
762 case PRESERVE_OWNERSHIP
:
763 x
->preserve_ownership
= on_off
;
767 x
->preserve_links
= on_off
;
771 x
->preserve_mode
= on_off
;
772 x
->preserve_timestamps
= on_off
;
773 x
->preserve_ownership
= on_off
;
774 x
->preserve_links
= on_off
;
788 main (int argc
, char **argv
)
792 bool make_backups
= false;
793 char *backup_suffix_string
;
794 char *version_control_string
= NULL
;
796 bool copy_contents
= false;
797 char *target_directory
= NULL
;
798 bool no_target_directory
= false;
800 initialize_main (&argc
, &argv
);
801 program_name
= argv
[0];
802 setlocale (LC_ALL
, "");
803 bindtextdomain (PACKAGE
, LOCALEDIR
);
804 textdomain (PACKAGE
);
806 atexit (close_stdout
);
810 /* FIXME: consider not calling getenv for SIMPLE_BACKUP_SUFFIX unless
811 we'll actually use backup_suffix_string. */
812 backup_suffix_string
= getenv ("SIMPLE_BACKUP_SUFFIX");
814 while ((c
= getopt_long (argc
, argv
, "abdfHilLprst:uvxPRS:T",
821 x
.sparse_mode
= XARGMATCH ("--sparse", optarg
,
822 sparse_type_string
, sparse_type
);
825 case 'a': /* Like -dpPR. */
826 x
.dereference
= DEREF_NEVER
;
827 x
.preserve_links
= true;
828 x
.preserve_ownership
= true;
829 x
.preserve_mode
= true;
830 x
.preserve_timestamps
= true;
831 x
.require_preserve
= true;
838 version_control_string
= optarg
;
841 case COPY_CONTENTS_OPTION
:
842 copy_contents
= true;
846 x
.preserve_links
= true;
847 x
.dereference
= DEREF_NEVER
;
851 x
.unlink_dest_after_failed_open
= true;
855 x
.dereference
= DEREF_COMMAND_LINE_ARGUMENTS
;
859 x
.interactive
= I_ASK_USER
;
867 x
.dereference
= DEREF_ALWAYS
;
871 x
.dereference
= DEREF_NEVER
;
874 case NO_PRESERVE_ATTRIBUTES_OPTION
:
875 decode_preserve_arg (optarg
, &x
, false);
878 case PRESERVE_ATTRIBUTES_OPTION
:
881 /* Fall through to the case for `p' below. */
885 decode_preserve_arg (optarg
, &x
, true);
886 x
.require_preserve
= true;
891 x
.preserve_ownership
= true;
892 x
.preserve_mode
= true;
893 x
.preserve_timestamps
= true;
894 x
.require_preserve
= true;
898 parents_option
= true;
906 case REPLY_OPTION
: /* Deprecated */
907 x
.interactive
= XARGMATCH ("--reply", optarg
,
908 reply_args
, reply_vals
);
910 _("the --reply option is deprecated; use -i or -f instead"));
913 case UNLINK_DEST_BEFORE_OPENING
:
914 x
.unlink_dest_before_opening
= true;
917 case STRIP_TRAILING_SLASHES_OPTION
:
918 remove_trailing_slashes
= true;
923 x
.symbolic_link
= true;
925 error (EXIT_FAILURE
, 0,
926 _("symbolic links are not supported on this system"));
931 if (target_directory
)
932 error (EXIT_FAILURE
, 0,
933 _("multiple target directories specified"));
937 if (stat (optarg
, &st
) != 0)
938 error (EXIT_FAILURE
, errno
, _("accessing %s"), quote (optarg
));
939 if (! S_ISDIR (st
.st_mode
))
940 error (EXIT_FAILURE
, 0, _("target %s is not a directory"),
943 target_directory
= optarg
;
947 no_target_directory
= true;
959 x
.one_file_system
= true;
964 backup_suffix_string
= optarg
;
967 case_GETOPT_HELP_CHAR
;
969 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
972 usage (EXIT_FAILURE
);
976 if (x
.hard_link
& x
.symbolic_link
)
978 error (0, 0, _("cannot make both hard and symbolic links"));
979 usage (EXIT_FAILURE
);
982 if (backup_suffix_string
)
983 simple_backup_suffix
= xstrdup (backup_suffix_string
);
985 x
.backup_type
= (make_backups
986 ? xget_version (_("backup type"),
987 version_control_string
)
991 x
.umask_kill
= ~ (mode_t
) 0;
993 if (x
.dereference
== DEREF_UNDEFINED
)
996 /* This is compatible with FreeBSD. */
997 x
.dereference
= DEREF_NEVER
;
999 x
.dereference
= DEREF_ALWAYS
;
1002 /* The key difference between -d (--no-dereference) and not is the version
1003 of `stat' to call. */
1006 x
.copy_as_regular
= copy_contents
;
1008 /* If --force (-f) was specified and we're in link-creation mode,
1009 first remove any existing destination file. */
1010 if (x
.unlink_dest_after_failed_open
& (x
.hard_link
| x
.symbolic_link
))
1011 x
.unlink_dest_before_opening
= true;
1013 /* Allocate space for remembering copied and created files. */
1017 ok
= do_copy (argc
- optind
, argv
+ optind
,
1018 target_directory
, no_target_directory
, &x
);
1022 exit (ok
? EXIT_SUCCESS
: EXIT_FAILURE
);