1 /* `ln' program to create links between files.
2 Copyright (C) 86, 89, 90, 91, 1995-2003 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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Mike Parker and David MacKenzie. */
22 #include <sys/types.h>
27 #include "backupfile.h"
32 /* The official name of this program (e.g., no `g' prefix). */
33 #define PROGRAM_NAME "ln"
35 #define AUTHORS "Mike Parker", "David MacKenzie"
37 #ifndef ENABLE_HARD_LINK_TO_SYMLINK_WARNING
38 # define ENABLE_HARD_LINK_TO_SYMLINK_WARNING 0
41 /* For long options that have no equivalent short option, use a
42 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
45 TARGET_DIRECTORY_OPTION
= CHAR_MAX
+ 1
48 int link (); /* Some systems don't declare this anywhere. */
54 /* In being careful not even to try to make hard links to directories,
55 we have to know whether link(2) follows symlinks. If it does, then
56 we have to *stat* the `source' to see if the resulting link would be
57 to a directory. Otherwise, we have to use *lstat* so that we allow
58 users to make hard links to symlinks-that-point-to-directories. */
60 #if LINK_FOLLOWS_SYMLINKS
61 # define STAT_LIKE_LINK(File, Stat_buf) \
64 # define STAT_LIKE_LINK(File, Stat_buf) \
65 lstat (File, Stat_buf)
68 /* Construct a string NEW_DEST by concatenating DEST, a slash, and
69 basename(SOURCE) in alloca'd memory. Don't modify DEST or SOURCE. */
71 #define PATH_BASENAME_CONCAT(new_dest, dest, source) \
74 const char *source_base; \
76 size_t buf_len = strlen (source) + 1; \
78 tmp_source = alloca (buf_len); \
79 memcpy (tmp_source, (source), buf_len); \
80 strip_trailing_slashes (tmp_source); \
81 source_base = base_name (tmp_source); \
83 (new_dest) = alloca (strlen ((dest)) + 1 \
84 + strlen (source_base) + 1); \
85 stpcpy (stpcpy (stpcpy ((new_dest), (dest)), "/"), source_base);\
92 /* The name by which the program was run, for error messages. */
96 enum backup_type backup_type
;
98 /* A pointer to the function used to make links. This will point to either
99 `link' or `symlink'. */
100 static int (*linkfunc
) ();
102 /* If nonzero, make symbolic links; otherwise, make hard links. */
103 static int symbolic_link
;
105 /* If nonzero, ask the user before removing existing files. */
106 static int interactive
;
108 /* If nonzero, remove existing files unconditionally. */
109 static int remove_existing_files
;
111 /* If nonzero, list each file as it is moved. */
114 /* If nonzero, allow the superuser to *attempt* to make hard links
115 to directories. However, it appears that this option is not useful
116 in practice, since even the superuser is prohibited from hard-linking
117 directories on most (all?) existing systems. */
118 static int hard_dir_link
;
120 /* If nonzero, and the specified destination is a symbolic link to a
121 directory, treat it just as if it were a directory. Otherwise, the
122 command `ln --force --no-dereference file symlink-to-dir' deletes
123 symlink-to-dir before creating the new link. */
124 static int dereference_dest_dir_symlinks
= 1;
126 static struct option
const long_options
[] =
128 {"backup", optional_argument
, NULL
, 'b'},
129 {"directory", no_argument
, NULL
, 'F'},
130 {"no-dereference", no_argument
, NULL
, 'n'},
131 {"force", no_argument
, NULL
, 'f'},
132 {"interactive", no_argument
, NULL
, 'i'},
133 {"suffix", required_argument
, NULL
, 'S'},
134 {"target-directory", required_argument
, NULL
, TARGET_DIRECTORY_OPTION
},
135 {"symbolic", no_argument
, NULL
, 's'},
136 {"verbose", no_argument
, NULL
, 'v'},
137 {"version-control", required_argument
, NULL
, 'V'}, /* Deprecated. FIXME. */
138 {GETOPT_HELP_OPTION_DECL
},
139 {GETOPT_VERSION_OPTION_DECL
},
143 /* Make a link DEST to the (usually) existing file SOURCE.
144 Symbolic links to nonexistent files are allowed.
145 If DEST is a directory, put the link to SOURCE in that directory.
146 Return 1 if there is an error, otherwise 0. */
149 do_link (const char *source
, const char *dest
)
151 struct stat source_stats
;
152 struct stat dest_stats
;
153 char *dest_backup
= NULL
;
155 int backup_succeeded
= 0;
157 /* Use stat here instead of lstat.
158 On SVR4, link does not follow symlinks, so this check disallows
159 making hard links to symlinks that point to directories. Big deal.
160 On other systems, link follows symlinks, so this check is right. */
163 if (STAT_LIKE_LINK (source
, &source_stats
) != 0)
165 error (0, errno
, _("accessing %s"), quote (source
));
169 if (ENABLE_HARD_LINK_TO_SYMLINK_WARNING
170 && S_ISLNK (source_stats
.st_mode
))
172 error (0, 0, _("%s: warning: making a hard link to a symbolic link\
177 if (!hard_dir_link
&& S_ISDIR (source_stats
.st_mode
))
179 error (0, 0, _("%s: hard link not allowed for directory"),
185 lstat_status
= lstat (dest
, &dest_stats
);
186 if (lstat_status
!= 0 && errno
!= ENOENT
)
188 error (0, errno
, _("accessing %s"), quote (dest
));
192 /* If the destination is a directory or (it is a symlink to a directory
193 and the user has not specified --no-dereference), then form the
194 actual destination name by appending base_name (source) to the
195 specified destination directory. */
196 if ((lstat_status
== 0
197 && S_ISDIR (dest_stats
.st_mode
))
199 || (dereference_dest_dir_symlinks
200 && (lstat_status
== 0
201 && S_ISLNK (dest_stats
.st_mode
)
206 /* Target is a directory; build the full filename. */
208 PATH_BASENAME_CONCAT (new_dest
, dest
, source
);
211 /* Get stats for new DEST. */
212 lstat_status
= lstat (dest
, &dest_stats
);
213 if (lstat_status
!= 0 && errno
!= ENOENT
)
215 error (0, errno
, _("accessing %s"), quote (dest
));
220 /* If --force (-f) has been specified without --backup, then before
221 making a link ln must remove the destination file if it exists.
222 (with --backup, it just renames any existing destination file)
223 But if the source and destination are the same, don't remove
224 anything and fail right here. */
225 if (remove_existing_files
227 /* Allow `ln -sf --backup k k' to succeed in creating the
228 self-referential symlink, but don't allow the hard-linking
229 equivalent: `ln -f k k' (with or without --backup) to get
230 beyond this point, because the error message you'd get is
232 && (backup_type
== none
|| !symbolic_link
)
233 && (!symbolic_link
|| stat (source
, &source_stats
) == 0)
234 && SAME_INODE (source_stats
, dest_stats
)
235 /* The following detects whether removing DEST will also remove
236 SOURCE. If the file has only one link then both are surely
237 the same link. Otherwise check whether they point to the same
238 name in the same directory. */
239 && (source_stats
.st_nlink
== 1 || same_name (source
, dest
)))
241 error (0, 0, _("%s and %s are the same file"),
242 quote_n (0, source
), quote_n (1, dest
));
246 if (lstat_status
== 0 || lstat (dest
, &dest_stats
) == 0)
248 if (S_ISDIR (dest_stats
.st_mode
))
250 error (0, 0, _("%s: cannot overwrite directory"), quote (dest
));
255 fprintf (stderr
, _("%s: replace %s? "), program_name
, quote (dest
));
259 else if (!remove_existing_files
&& backup_type
== none
)
261 error (0, 0, _("%s: File exists"), quote (dest
));
265 if (backup_type
!= none
)
268 char *tmp_backup
= find_backup_file_name (dest
, backup_type
);
269 if (tmp_backup
== NULL
)
271 buf_len
= strlen (tmp_backup
) + 1;
272 dest_backup
= alloca (buf_len
);
273 memcpy (dest_backup
, tmp_backup
, buf_len
);
275 if (rename (dest
, dest_backup
))
279 error (0, errno
, _("cannot backup %s"), quote (dest
));
287 backup_succeeded
= 1;
291 /* Try to unlink DEST even if we may have renamed it. In some unusual
292 cases (when DEST and DEST_BACKUP are hard-links that refer to the
293 same file), rename succeeds and DEST remains. If we didn't remove
294 DEST in that case, the subsequent LINKFUNC call would fail. */
295 if (unlink (dest
) && errno
!= ENOENT
)
297 error (0, errno
, _("cannot remove %s"), quote (dest
));
301 else if (errno
!= ENOENT
)
303 error (0, errno
, _("accessing %s"), quote (dest
));
309 printf ((symbolic_link
310 ? _("create symbolic link %s to %s")
311 : _("create hard link %s to %s")),
312 quote_n (0, dest
), quote_n (1, source
));
313 if (backup_succeeded
)
314 printf (_(" (backup: %s)"), quote (dest_backup
));
318 if ((*linkfunc
) (source
, dest
) == 0)
325 ? _("creating symbolic link %s to %s")
326 : _("creating hard link %s to %s")),
327 quote_n (0, dest
), quote_n (1, source
));
331 if (rename (dest_backup
, dest
))
332 error (0, errno
, _("cannot un-backup %s"), quote (dest
));
341 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
346 Usage: %s [OPTION]... TARGET [LINK_NAME]\n\
347 or: %s [OPTION]... TARGET... DIRECTORY\n\
348 or: %s [OPTION]... --target-directory=DIRECTORY TARGET...\n\
350 program_name
, program_name
, program_name
);
352 Create a link to the specified TARGET with optional LINK_NAME.\n\
353 If LINK_NAME is omitted, a link with the same basename as the TARGET is\n\
354 created in the current directory. When using the second form with more\n\
355 than one TARGET, the last argument must be a directory; create links\n\
356 in DIRECTORY to each TARGET. Create hard links by default, symbolic\n\
357 links with --symbolic. When creating hard links, each TARGET must exist.\n\
361 Mandatory arguments to long options are mandatory for short options too.\n\
364 --backup[=CONTROL] make a backup of each existing destination file\n\
365 -b like --backup but does not accept an argument\n\
366 -d, -F, --directory allow the superuser to attempt to hard link\n\
367 directories (note: will probably fail due to\n\
368 system restrictions, even for the superuser)\n\
369 -f, --force remove existing destination files\n\
372 -n, --no-dereference treat destination that is a symlink to a\n\
373 directory as if it were a normal file\n\
374 -i, --interactive prompt whether to remove destinations\n\
375 -s, --symbolic make symbolic links instead of hard links\n\
378 -S, --suffix=SUFFIX override the usual backup suffix\n\
379 --target-directory=DIRECTORY specify the DIRECTORY in which to create\n\
381 -v, --verbose print name of each file before linking\n\
383 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
384 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
387 The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.\n\
388 The version control method may be selected via the --backup option or through\n\
389 the VERSION_CONTROL environment variable. Here are the values:\n\
393 none, off never make backups (even if --backup is given)\n\
394 numbered, t make numbered backups\n\
395 existing, nil numbered if numbered backups exist, simple otherwise\n\
396 simple, never always make simple backups\n\
398 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
404 main (int argc
, char **argv
)
408 int make_backups
= 0;
409 char *backup_suffix_string
;
410 char *version_control_string
= NULL
;
411 char *target_directory
= NULL
;
412 int target_directory_specified
;
413 unsigned int n_files
;
417 initialize_main (&argc
, &argv
);
418 program_name
= argv
[0];
419 setlocale (LC_ALL
, "");
420 bindtextdomain (PACKAGE
, LOCALEDIR
);
421 textdomain (PACKAGE
);
423 atexit (close_stdout
);
425 /* FIXME: consider not calling getenv for SIMPLE_BACKUP_SUFFIX unless
426 we'll actually use backup_suffix_string. */
427 backup_suffix_string
= getenv ("SIMPLE_BACKUP_SUFFIX");
429 symbolic_link
= remove_existing_files
= interactive
= verbose
433 while ((c
= getopt_long (argc
, argv
, "bdfinsvFS:V:", long_options
, NULL
))
438 case 0: /* Long-named option. */
441 case 'V': /* FIXME: this is deprecated. Remove it in 2001. */
443 _("warning: --version-control (-V) is obsolete; support for\
444 it\nwill be removed in some future release. Use --backup=%s instead."
451 version_control_string
= optarg
;
458 remove_existing_files
= 1;
462 remove_existing_files
= 0;
466 dereference_dest_dir_symlinks
= 0;
472 error (EXIT_FAILURE
, 0,
473 _("symbolic links are not supported on this system"));
476 case TARGET_DIRECTORY_OPTION
:
477 target_directory
= optarg
;
484 backup_suffix_string
= optarg
;
486 case_GETOPT_HELP_CHAR
;
487 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
489 usage (EXIT_FAILURE
);
496 error (0, 0, _("missing file argument"));
497 usage (EXIT_FAILURE
);
500 n_files
= argc
- optind
;
501 file
= argv
+ optind
;
503 target_directory_specified
= (target_directory
!= NULL
);
504 if (!target_directory
)
505 target_directory
= file
[n_files
- 1];
507 /* If target directory is not specified, and there's only one
508 file argument, then pretend `.' was given as the second argument. */
509 if (!target_directory_specified
&& n_files
== 1)
511 static char *dummy
[2];
520 dest_is_dir
= isdir (target_directory
);
528 if (target_directory_specified
&& !dest_is_dir
)
530 error (0, 0, _("%s: specified target directory is not a directory"),
531 quote (target_directory
));
532 usage (EXIT_FAILURE
);
535 if (backup_suffix_string
)
536 simple_backup_suffix
= xstrdup (backup_suffix_string
);
538 backup_type
= (make_backups
539 ? xget_version (_("backup type"), version_control_string
)
542 if (target_directory_specified
|| n_files
> 2)
545 unsigned int last_file_idx
= (target_directory_specified
549 if (!target_directory_specified
&& !dest_is_dir
)
550 error (EXIT_FAILURE
, 0,
551 _("when making multiple links, last argument must be a directory"));
552 for (i
= 0; i
<= last_file_idx
; ++i
)
553 errors
+= do_link (file
[i
], target_directory
);
557 struct stat source_stats
;
565 /* When the destination is specified with a trailing slash and the
566 source exists but is not a directory, convert the user's command
567 `ln source dest/' to `ln source dest/basename(source)'. */
569 if (dest
[strlen (dest
) - 1] == '/'
570 && lstat (source
, &source_stats
) == 0
571 && !S_ISDIR (source_stats
.st_mode
))
573 PATH_BASENAME_CONCAT (new_dest
, dest
, source
);
580 errors
= do_link (source
, new_dest
);