1 /* install - copy files and set attributes
2 Copyright (C) 1989-2015 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 David MacKenzie <djm@gnu.ai.mit.edu> */
22 #include <sys/types.h>
26 #include <selinux/selinux.h>
30 #include "backupfile.h"
34 #include "filenamecat.h"
35 #include "full-read.h"
36 #include "mkancesdirs.h"
38 #include "modechange.h"
39 #include "prog-fprintf.h"
43 #include "stat-time.h"
47 /* The official name of this program (e.g., no 'g' prefix). */
48 #define PROGRAM_NAME "install"
50 #define AUTHORS proper_name ("David MacKenzie")
52 static int selinux_enabled
= 0;
53 static bool use_default_selinux_context
= true;
56 # define endgrent() ((void) 0)
60 # define endpwent() ((void) 0)
64 # define lchown(name, uid, gid) chown (name, uid, gid)
67 #if ! HAVE_MATCHPATHCON_INIT_PREFIX
68 # define matchpathcon_init_prefix(a, p) /* empty */
71 /* The user name that will own the files, or NULL to make the owner
72 the current user ID. */
73 static char *owner_name
;
75 /* The user ID corresponding to 'owner_name'. */
76 static uid_t owner_id
;
78 /* The group name that will own the files, or NULL to make the group
79 the current group ID. */
80 static char *group_name
;
82 /* The group ID corresponding to 'group_name'. */
83 static gid_t group_id
;
85 #define DEFAULT_MODE (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)
87 /* The file mode bits to which non-directory files will be set. The umask has
89 static mode_t mode
= DEFAULT_MODE
;
91 /* Similar, but for directories. */
92 static mode_t dir_mode
= DEFAULT_MODE
;
94 /* The file mode bits that the user cares about. This should be a
95 superset of DIR_MODE and a subset of CHMOD_MODE_BITS. This matters
96 for directories, since otherwise directories may keep their S_ISUID
98 static mode_t dir_mode_bits
= CHMOD_MODE_BITS
;
100 /* Compare files before installing (-C) */
101 static bool copy_only_if_needed
;
103 /* If true, strip executable files after copying them. */
104 static bool strip_files
;
106 /* If true, install a directory instead of a regular file. */
109 /* Program used to strip binaries, "strip" is default */
110 static char const *strip_program
= "strip";
112 /* For long options that have no equivalent short option, use a
113 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
116 PRESERVE_CONTEXT_OPTION
= CHAR_MAX
+ 1,
120 static struct option
const long_options
[] =
122 {"backup", optional_argument
, NULL
, 'b'},
123 {"compare", no_argument
, NULL
, 'C'},
124 {GETOPT_SELINUX_CONTEXT_OPTION_DECL
},
125 {"directory", no_argument
, NULL
, 'd'},
126 {"group", required_argument
, NULL
, 'g'},
127 {"mode", required_argument
, NULL
, 'm'},
128 {"no-target-directory", no_argument
, NULL
, 'T'},
129 {"owner", required_argument
, NULL
, 'o'},
130 {"preserve-timestamps", no_argument
, NULL
, 'p'},
131 {"preserve-context", no_argument
, NULL
, PRESERVE_CONTEXT_OPTION
},
132 {"strip", no_argument
, NULL
, 's'},
133 {"strip-program", required_argument
, NULL
, STRIP_PROGRAM_OPTION
},
134 {"suffix", required_argument
, NULL
, 'S'},
135 {"target-directory", required_argument
, NULL
, 't'},
136 {"verbose", no_argument
, NULL
, 'v'},
137 {GETOPT_HELP_OPTION_DECL
},
138 {GETOPT_VERSION_OPTION_DECL
},
142 /* Compare content of opened files using file descriptors A_FD and B_FD. Return
143 true if files are equal. */
145 have_same_content (int a_fd
, int b_fd
)
147 enum { CMP_BLOCK_SIZE
= 4096 };
148 static char a_buff
[CMP_BLOCK_SIZE
];
149 static char b_buff
[CMP_BLOCK_SIZE
];
152 while (0 < (size
= full_read (a_fd
, a_buff
, sizeof a_buff
))) {
153 if (size
!= full_read (b_fd
, b_buff
, sizeof b_buff
))
156 if (memcmp (a_buff
, b_buff
, size
) != 0)
163 /* Return true for mode with non-permission bits. */
165 extra_mode (mode_t input
)
167 mode_t mask
= S_IRWXUGO
| S_IFMT
;
168 return !! (input
& ~ mask
);
171 /* Return true if copy of file SRC_NAME to file DEST_NAME is necessary. */
173 need_copy (const char *src_name
, const char *dest_name
,
174 const struct cp_options
*x
)
176 struct stat src_sb
, dest_sb
;
180 if (extra_mode (mode
))
183 /* compare files using stat */
184 if (lstat (src_name
, &src_sb
) != 0)
187 if (lstat (dest_name
, &dest_sb
) != 0)
190 if (!S_ISREG (src_sb
.st_mode
) || !S_ISREG (dest_sb
.st_mode
)
191 || extra_mode (src_sb
.st_mode
) || extra_mode (dest_sb
.st_mode
))
194 if (src_sb
.st_size
!= dest_sb
.st_size
195 || (dest_sb
.st_mode
& CHMOD_MODE_BITS
) != mode
)
198 if (owner_id
== (uid_t
) -1)
201 uid_t ruid
= getuid ();
202 if ((ruid
== (uid_t
) -1 && errno
) || dest_sb
.st_uid
!= ruid
)
205 else if (dest_sb
.st_uid
!= owner_id
)
208 if (group_id
== (uid_t
) -1)
211 gid_t rgid
= getgid ();
212 if ((rgid
== (uid_t
) -1 && errno
) || dest_sb
.st_gid
!= rgid
)
215 else if (dest_sb
.st_gid
!= group_id
)
218 /* compare SELinux context if preserving */
219 if (selinux_enabled
&& x
->preserve_security_context
)
221 char *file_scontext
= NULL
;
222 char *to_scontext
= NULL
;
225 if (getfilecon (src_name
, &file_scontext
) == -1)
228 if (getfilecon (dest_name
, &to_scontext
) == -1)
230 freecon (file_scontext
);
234 scontext_match
= STREQ (file_scontext
, to_scontext
);
236 freecon (file_scontext
);
237 freecon (to_scontext
);
242 /* compare files content */
243 src_fd
= open (src_name
, O_RDONLY
| O_BINARY
);
247 dest_fd
= open (dest_name
, O_RDONLY
| O_BINARY
);
254 content_match
= have_same_content (src_fd
, dest_fd
);
258 return !content_match
;
262 cp_option_init (struct cp_options
*x
)
264 cp_options_default (x
);
265 x
->copy_as_regular
= true;
266 x
->reflink_mode
= REFLINK_NEVER
;
267 x
->dereference
= DEREF_ALWAYS
;
268 x
->unlink_dest_before_opening
= true;
269 x
->unlink_dest_after_failed_open
= false;
270 x
->hard_link
= false;
271 x
->interactive
= I_UNSPECIFIED
;
272 x
->move_mode
= false;
273 x
->one_file_system
= false;
274 x
->preserve_ownership
= false;
275 x
->preserve_links
= false;
276 x
->preserve_mode
= false;
277 x
->preserve_timestamps
= false;
278 x
->explicit_no_preserve_mode
= false;
279 x
->reduce_diagnostics
=false;
280 x
->data_copy_required
= true;
281 x
->require_preserve
= false;
282 x
->require_preserve_xattr
= false;
283 x
->recursive
= false;
284 x
->sparse_mode
= SPARSE_AUTO
;
285 x
->symbolic_link
= false;
286 x
->backup_type
= no_backups
;
288 /* Create destination files initially writable so we can run strip on them.
289 Although GNU strip works fine on read-only files, some others
292 x
->mode
= S_IRUSR
| S_IWUSR
;
293 x
->stdin_tty
= false;
295 x
->open_dangling_dest_symlink
= false;
297 x
->require_preserve_context
= false; /* Not used by install currently. */
298 x
->preserve_security_context
= false; /* Whether to copy context from src. */
299 x
->set_security_context
= false; /* Whether to set sys default context. */
300 x
->preserve_xattr
= false;
306 #ifdef ENABLE_MATCHPATHCON
307 /* Modify file context to match the specified policy.
308 If an error occurs the file will remain with the default directory
309 context. Note this sets the context to that returned by matchpathcon,
310 and thus discards MLS levels and user identity of the FILE. */
312 setdefaultfilecon (char const *file
)
315 char *scontext
= NULL
;
316 static bool first_call
= true;
318 if (selinux_enabled
!= 1)
320 /* Indicate no context found. */
323 if (lstat (file
, &st
) != 0)
326 if (first_call
&& IS_ABSOLUTE_FILE_NAME (file
))
328 /* Calling matchpathcon_init_prefix (NULL, "/first_component/")
329 is an optimization to minimize the expense of the following
330 matchpathcon call. Do it only once, just before the first
331 matchpathcon call. We *could* call matchpathcon_fini after
332 the final matchpathcon call, but that's not necessary, since
333 by then we're about to exit, and besides, the buffers it
334 would free are still reachable. */
336 char const *p
= file
+ 1;
340 /* Record final leading slash, for when FILE starts with two or more. */
350 while (*p
&& !ISSLASH (*p
));
352 prefix
= malloc (p
- p0
+ 2);
355 stpcpy (stpncpy (prefix
, p0
, p
- p0
), "/");
356 matchpathcon_init_prefix (NULL
, prefix
);
363 /* If there's an error determining the context, or it has none,
364 return to allow default context. Note the "<<none>>" check
365 is only needed for libselinux < 1.20 (2005-01-04). */
366 if ((matchpathcon (file
, st
.st_mode
, &scontext
) != 0)
367 || STREQ (scontext
, "<<none>>"))
369 if (scontext
!= NULL
)
374 if (lsetfilecon (file
, scontext
) < 0 && errno
!= ENOTSUP
)
376 _("warning: %s: failed to change context to %s"),
377 quotearg_colon (file
), scontext
);
384 setdefaultfilecon (char const *file
)
390 /* FILE is the last operand of this command. Return true if FILE is a
391 directory. But report an error there is a problem accessing FILE,
392 or if FILE does not exist but would have to refer to an existing
393 directory if it referred to anything at all. */
396 target_directory_operand (char const *file
)
398 char const *b
= last_component (file
);
399 size_t blen
= strlen (b
);
400 bool looks_like_a_dir
= (blen
== 0 || ISSLASH (b
[blen
- 1]));
402 int err
= (stat (file
, &st
) == 0 ? 0 : errno
);
403 bool is_a_dir
= !err
&& S_ISDIR (st
.st_mode
);
404 if (err
&& err
!= ENOENT
)
405 error (EXIT_FAILURE
, err
, _("failed to access %s"), quote (file
));
406 if (is_a_dir
< looks_like_a_dir
)
407 error (EXIT_FAILURE
, err
, _("target %s is not a directory"), quote (file
));
411 /* Report that directory DIR was made, if OPTIONS requests this. */
413 announce_mkdir (char const *dir
, void *options
)
415 struct cp_options
const *x
= options
;
417 prog_fprintf (stdout
, _("creating directory %s"), quote (dir
));
420 /* Make ancestor directory DIR, whose last file name component is
421 COMPONENT, with options OPTIONS. Assume the working directory is
422 COMPONENT's parent. */
424 make_ancestor (char const *dir
, char const *component
, void *options
)
426 int r
= mkdir (component
, DEFAULT_MODE
);
428 announce_mkdir (dir
, options
);
432 /* Process a command-line file name, for the -d option. */
434 process_dir (char *dir
, struct savewd
*wd
, void *options
)
436 return (make_dir_parents (dir
, wd
,
437 make_ancestor
, options
,
438 dir_mode
, announce_mkdir
,
439 dir_mode_bits
, owner_id
, group_id
, false)
444 /* Copy file FROM onto file TO, creating TO if necessary.
445 Return true if successful. */
448 copy_file (const char *from
, const char *to
, const struct cp_options
*x
)
452 if (copy_only_if_needed
&& !need_copy (from
, to
, x
))
455 /* Allow installing from non-regular files like /dev/null.
456 Charles Karney reported that some Sun version of install allows that
457 and that sendmail's installation process relies on the behavior.
458 However, since !x->recursive, the call to "copy" will fail if FROM
461 return copy (from
, to
, false, x
, ©_into_self
, NULL
);
464 /* Set the attributes of file or directory NAME.
465 Return true if successful. */
468 change_attributes (char const *name
)
471 /* chown must precede chmod because on some systems,
472 chown clears the set[ug]id bits for non-superusers,
473 resulting in incorrect permissions.
474 On System V, users can give away files with chown and then not
475 be able to chmod them. So don't give files away.
477 We don't normally ignore errors from chown because the idea of
478 the install command is that the file is supposed to end up with
479 precisely the attributes that the user specified (or defaulted).
480 If the file doesn't end up with the group they asked for, they'll
483 if (! (owner_id
== (uid_t
) -1 && group_id
== (gid_t
) -1)
484 && lchown (name
, owner_id
, group_id
) != 0)
485 error (0, errno
, _("cannot change ownership of %s"), quote (name
));
486 else if (chmod (name
, mode
) != 0)
487 error (0, errno
, _("cannot change permissions of %s"), quote (name
));
491 if (use_default_selinux_context
)
492 setdefaultfilecon (name
);
497 /* Set the timestamps of file DEST to match those of SRC_SB.
498 Return true if successful. */
501 change_timestamps (struct stat
const *src_sb
, char const *dest
)
503 struct timespec timespec
[2];
504 timespec
[0] = get_stat_atime (src_sb
);
505 timespec
[1] = get_stat_mtime (src_sb
);
507 if (utimens (dest
, timespec
))
509 error (0, errno
, _("cannot set time stamps for %s"), quote (dest
));
515 /* Strip the symbol table from the file NAME.
516 We could dig the magic number out of the file first to
517 determine whether to strip it, but the header files and
518 magic numbers vary so much from system to system that making
519 it portable would be very difficult. Not worth the effort. */
522 strip (char const *name
)
531 error (0, errno
, _("fork system call failed"));
534 execlp (strip_program
, strip_program
, name
, NULL
);
535 error (EXIT_FAILURE
, errno
, _("cannot run %s"), strip_program
);
537 default: /* Parent. */
538 if (waitpid (pid
, &status
, 0) < 0)
539 error (0, errno
, _("waiting for strip"));
540 else if (! WIFEXITED (status
) || WEXITSTATUS (status
))
541 error (0, 0, _("strip process terminated abnormally"));
543 ok
= true; /* strip succeeded */
549 /* Initialize the user and group ownership of the files to install. */
559 pw
= getpwnam (owner_name
);
562 unsigned long int tmp
;
563 if (xstrtoul (owner_name
, NULL
, 0, &tmp
, NULL
) != LONGINT_OK
565 error (EXIT_FAILURE
, 0, _("invalid user %s"), quote (owner_name
));
569 owner_id
= pw
->pw_uid
;
573 owner_id
= (uid_t
) -1;
577 gr
= getgrnam (group_name
);
580 unsigned long int tmp
;
581 if (xstrtoul (group_name
, NULL
, 0, &tmp
, NULL
) != LONGINT_OK
583 error (EXIT_FAILURE
, 0, _("invalid group %s"), quote (group_name
));
587 group_id
= gr
->gr_gid
;
591 group_id
= (gid_t
) -1;
597 if (status
!= EXIT_SUCCESS
)
602 Usage: %s [OPTION]... [-T] SOURCE DEST\n\
603 or: %s [OPTION]... SOURCE... DIRECTORY\n\
604 or: %s [OPTION]... -t DIRECTORY SOURCE...\n\
605 or: %s [OPTION]... -d DIRECTORY...\n\
607 program_name
, program_name
, program_name
, program_name
);
610 This install program copies files (often just compiled) into destination\n\
611 locations you choose. If you want to download and install a ready-to-use\n\
612 package on a GNU/Linux system, you should instead be using a package manager\n\
613 like yum(1) or apt-get(1).\n\
615 In the first three forms, copy SOURCE to DEST or multiple SOURCE(s) to\n\
616 the existing DIRECTORY, while setting permission modes and owner/group.\n\
617 In the 4th form, create all components of the given DIRECTORY(ies).\n\
620 emit_mandatory_arg_note ();
623 --backup[=CONTROL] make a backup of each existing destination file\n\
624 -b like --backup but does not accept an argument\n\
626 -C, --compare compare each pair of source and destination files, and\n\
627 in some cases, do not modify the destination at all\n\
628 -d, --directory treat all arguments as directory names; create all\n\
629 components of the specified directories\n\
632 -D create all leading components of DEST except the last,\n\
633 then copy SOURCE to DEST\n\
634 -g, --group=GROUP set group ownership, instead of process' current group\n\
635 -m, --mode=MODE set permission mode (as in chmod), instead of rwxr-xr-x\n\
636 -o, --owner=OWNER set ownership (super-user only)\n\
639 -p, --preserve-timestamps apply access/modification times of SOURCE files\n\
640 to corresponding destination files\n\
641 -s, --strip strip symbol tables\n\
642 --strip-program=PROGRAM program used to strip binaries\n\
643 -S, --suffix=SUFFIX override the usual backup suffix\n\
644 -t, --target-directory=DIRECTORY copy all SOURCE arguments into DIRECTORY\n\
645 -T, --no-target-directory treat DEST as a normal file\n\
646 -v, --verbose print the name of each directory as it is created\n\
649 --preserve-context preserve SELinux security context\n\
650 -Z set SELinux security context of destination\n\
651 file to default type\n\
652 --context[=CTX] like -Z, or if CTX is specified then set the\n\
653 SELinux or SMACK security context to CTX\n\
656 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
657 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
660 The backup suffix is '~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
661 The version control method may be selected via the --backup option or through\n\
662 the VERSION_CONTROL environment variable. Here are the values:\n\
666 none, off never make backups (even if --backup is given)\n\
667 numbered, t make numbered backups\n\
668 existing, nil numbered if numbered backups exist, simple otherwise\n\
669 simple, never always make simple backups\n\
671 emit_ancillary_info (PROGRAM_NAME
);
676 /* Copy file FROM onto file TO and give TO the appropriate
678 Return true if successful. */
681 install_file_in_file (const char *from
, const char *to
,
682 const struct cp_options
*x
)
685 if (x
->preserve_timestamps
&& stat (from
, &from_sb
) != 0)
687 error (0, errno
, _("cannot stat %s"), quote (from
));
690 if (! copy_file (from
, to
, x
))
695 if (unlink (to
) != 0) /* Cleanup. */
696 error (EXIT_FAILURE
, errno
, _("cannot unlink %s"), to
);
699 if (x
->preserve_timestamps
&& (strip_files
|| ! S_ISREG (from_sb
.st_mode
))
700 && ! change_timestamps (&from_sb
, to
))
702 return change_attributes (to
);
705 /* Copy file FROM onto file TO, creating any missing parent directories of TO.
706 Return true if successful. */
709 mkancesdirs_safe_wd (char const *from
, char *to
, struct cp_options
*x
)
711 bool save_working_directory
=
712 ! (IS_ABSOLUTE_FILE_NAME (from
) && IS_ABSOLUTE_FILE_NAME (to
));
713 int status
= EXIT_SUCCESS
;
717 if (! save_working_directory
)
720 if (mkancesdirs (to
, &wd
, make_ancestor
, x
) == -1)
722 error (0, errno
, _("cannot create directory %s"), to
);
723 status
= EXIT_FAILURE
;
726 if (save_working_directory
)
728 int restore_result
= savewd_restore (&wd
, status
);
729 int restore_errno
= errno
;
731 if (EXIT_SUCCESS
< restore_result
)
733 if (restore_result
< 0 && status
== EXIT_SUCCESS
)
735 error (0, restore_errno
, _("cannot create directory %s"), to
);
739 return status
== EXIT_SUCCESS
;
742 /* Copy file FROM onto file TO, creating any missing parent directories of TO.
743 Return true if successful. */
746 install_file_in_file_parents (char const *from
, char *to
,
747 const struct cp_options
*x
)
749 return (mkancesdirs_safe_wd (from
, to
, (struct cp_options
*)x
)
750 && install_file_in_file (from
, to
, x
));
753 /* Copy file FROM into directory TO_DIR, keeping its same name,
754 and give the copy the appropriate attributes.
755 Return true if successful. */
758 install_file_in_dir (const char *from
, const char *to_dir
,
759 const struct cp_options
*x
, bool mkdir_and_install
)
761 const char *from_base
= last_component (from
);
762 char *to
= file_name_concat (to_dir
, from_base
, NULL
);
765 if (mkdir_and_install
)
766 ret
= mkancesdirs_safe_wd (from
, to
, (struct cp_options
*)x
);
768 ret
= ret
&& install_file_in_file (from
, to
, x
);
774 main (int argc
, char **argv
)
777 int exit_status
= EXIT_SUCCESS
;
778 const char *specified_mode
= NULL
;
779 bool make_backups
= false;
780 char *backup_suffix_string
;
781 char *version_control_string
= NULL
;
782 bool mkdir_and_install
= false;
784 char const *target_directory
= NULL
;
785 bool no_target_directory
= false;
788 bool strip_program_specified
= false;
789 char const *scontext
= NULL
;
790 /* set iff kernel has extra selinux system calls */
791 selinux_enabled
= (0 < is_selinux_enabled ());
793 initialize_main (&argc
, &argv
);
794 set_program_name (argv
[0]);
795 setlocale (LC_ALL
, "");
796 bindtextdomain (PACKAGE
, LOCALEDIR
);
797 textdomain (PACKAGE
);
799 atexit (close_stdin
);
809 /* FIXME: consider not calling getenv for SIMPLE_BACKUP_SUFFIX unless
810 we'll actually use backup_suffix_string. */
811 backup_suffix_string
= getenv ("SIMPLE_BACKUP_SUFFIX");
813 while ((optc
= getopt_long (argc
, argv
, "bcCsDdg:m:o:pt:TvS:Z", long_options
,
821 version_control_string
= optarg
;
826 copy_only_if_needed
= true;
831 /* System V fork+wait does not work if SIGCHLD is ignored. */
832 signal (SIGCHLD
, SIG_DFL
);
835 case STRIP_PROGRAM_OPTION
:
836 strip_program
= xstrdup (optarg
);
837 strip_program_specified
= true;
843 mkdir_and_install
= true;
852 specified_mode
= optarg
;
858 x
.preserve_timestamps
= true;
862 backup_suffix_string
= optarg
;
865 if (target_directory
)
866 error (EXIT_FAILURE
, 0,
867 _("multiple target directories specified"));
868 target_directory
= optarg
;
871 no_target_directory
= true;
874 case PRESERVE_CONTEXT_OPTION
:
875 if (! selinux_enabled
)
877 error (0, 0, _("WARNING: ignoring --preserve-context; "
878 "this kernel is not SELinux-enabled"));
881 x
.preserve_security_context
= true;
882 use_default_selinux_context
= false;
887 /* Disable use of the install(1) specific setdefaultfilecon().
888 Note setdefaultfilecon() is different from the newer and more
889 generic restorecon() in that the former sets the context of
890 the dest files to that returned by matchpathcon directly,
891 thus discarding MLS level and user identity of the file.
892 TODO: consider removing setdefaultfilecon() in future. */
893 use_default_selinux_context
= false;
898 x
.set_security_context
= true;
903 _("warning: ignoring --context; "
904 "it requires an SELinux-enabled kernel"));
907 case_GETOPT_HELP_CHAR
;
908 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
910 usage (EXIT_FAILURE
);
914 /* Check for invalid combinations of arguments. */
915 if (dir_arg
&& strip_files
)
916 error (EXIT_FAILURE
, 0,
917 _("the strip option may not be used when installing a directory"));
918 if (dir_arg
&& target_directory
)
919 error (EXIT_FAILURE
, 0,
920 _("target directory not allowed when installing a directory"));
922 if (target_directory
)
925 bool stat_success
= stat (target_directory
, &st
) == 0 ? true : false;
926 if (! mkdir_and_install
&& ! stat_success
)
927 error (EXIT_FAILURE
, errno
, _("failed to access %s"),
928 quote (target_directory
));
929 if (stat_success
&& ! S_ISDIR (st
.st_mode
))
930 error (EXIT_FAILURE
, 0, _("target %s is not a directory"),
931 quote (target_directory
));
934 if (backup_suffix_string
)
935 simple_backup_suffix
= xstrdup (backup_suffix_string
);
937 x
.backup_type
= (make_backups
938 ? xget_version (_("backup type"),
939 version_control_string
)
942 if (x
.preserve_security_context
&& (x
.set_security_context
|| scontext
))
943 error (EXIT_FAILURE
, 0,
944 _("cannot set target context and preserve it"));
946 if (scontext
&& setfscreatecon (se_const (scontext
)) < 0)
947 error (EXIT_FAILURE
, errno
,
948 _("failed to set default file creation context to %s"),
951 n_files
= argc
- optind
;
952 file
= argv
+ optind
;
954 if (n_files
<= ! (dir_arg
|| target_directory
))
957 error (0, 0, _("missing file operand"));
959 error (0, 0, _("missing destination file operand after %s"),
961 usage (EXIT_FAILURE
);
964 if (no_target_directory
)
966 if (target_directory
)
967 error (EXIT_FAILURE
, 0,
968 _("cannot combine --target-directory (-t) "
969 "and --no-target-directory (-T)"));
972 error (0, 0, _("extra operand %s"), quote (file
[2]));
973 usage (EXIT_FAILURE
);
976 else if (! (dir_arg
|| target_directory
))
978 if (2 <= n_files
&& target_directory_operand (file
[n_files
- 1]))
979 target_directory
= file
[--n_files
];
980 else if (2 < n_files
)
981 error (EXIT_FAILURE
, 0, _("target %s is not a directory"),
982 quote (file
[n_files
- 1]));
987 struct mode_change
*change
= mode_compile (specified_mode
);
989 error (EXIT_FAILURE
, 0, _("invalid mode %s"), quote (specified_mode
));
990 mode
= mode_adjust (0, false, 0, change
, NULL
);
991 dir_mode
= mode_adjust (0, true, 0, change
, &dir_mode_bits
);
995 if (strip_program_specified
&& !strip_files
)
996 error (0, 0, _("WARNING: ignoring --strip-program option as -s option was "
999 if (copy_only_if_needed
&& x
.preserve_timestamps
)
1001 error (0, 0, _("options --compare (-C) and --preserve-timestamps are "
1002 "mutually exclusive"));
1003 usage (EXIT_FAILURE
);
1006 if (copy_only_if_needed
&& strip_files
)
1008 error (0, 0, _("options --compare (-C) and --strip are mutually "
1010 usage (EXIT_FAILURE
);
1013 if (copy_only_if_needed
&& extra_mode (mode
))
1014 error (0, 0, _("the --compare (-C) option is ignored when you"
1015 " specify a mode with non-permission bits"));
1020 exit_status
= savewd_process_files (n_files
, file
, process_dir
, &x
);
1023 /* FIXME: it's a little gross that this initialization is
1024 required by copy.c::copy. */
1027 if (!target_directory
)
1029 if (! (mkdir_and_install
1030 ? install_file_in_file_parents (file
[0], file
[1], &x
)
1031 : install_file_in_file (file
[0], file
[1], &x
)))
1032 exit_status
= EXIT_FAILURE
;
1037 dest_info_init (&x
);
1038 for (i
= 0; i
< n_files
; i
++)
1039 if (! install_file_in_dir (file
[i
], target_directory
, &x
,
1041 exit_status
= EXIT_FAILURE
;