2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-14 02:42:06 +05:30
|
|
|
/*
|
|
|
|
* Mini ln implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-10-14 02:42:06 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
1999-10-14 02:42:06 +05:30
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
2005-04-30 03:43:04 +05:30
|
|
|
/* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */
|
2003-03-19 14:43:01 +05:30
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define ln_trivial_usage
|
|
|
|
//usage: "[OPTIONS] TARGET... LINK|DIR"
|
|
|
|
//usage:#define ln_full_usage "\n\n"
|
|
|
|
//usage: "Create a link LINK or DIR/TARGET to the specified TARGET(s)\n"
|
|
|
|
//usage: "\n -s Make symlinks instead of hardlinks"
|
|
|
|
//usage: "\n -f Remove existing destinations"
|
|
|
|
//usage: "\n -n Don't dereference symlinks - treat like normal file"
|
|
|
|
//usage: "\n -b Make a backup of the target (if exists) before link operation"
|
|
|
|
//usage: "\n -S suf Use suffix instead of ~ when making backup files"
|
2012-05-06 16:48:35 +05:30
|
|
|
//usage: "\n -T 2nd arg must be a DIR"
|
|
|
|
//usage: "\n -v Verbose"
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:
|
|
|
|
//usage:#define ln_example_usage
|
|
|
|
//usage: "$ ln -s BusyBox /tmp/ls\n"
|
|
|
|
//usage: "$ ls -l /tmp/ls\n"
|
|
|
|
//usage: "lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*\n"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2001-02-20 11:44:08 +05:30
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2012-05-06 16:48:35 +05:30
|
|
|
#define LN_SYMLINK (1 << 0)
|
|
|
|
#define LN_FORCE (1 << 1)
|
|
|
|
#define LN_NODEREFERENCE (1 << 2)
|
|
|
|
#define LN_BACKUP (1 << 3)
|
|
|
|
#define LN_SUFFIX (1 << 4)
|
|
|
|
#define LN_VERBOSE (1 << 5)
|
|
|
|
#define LN_LINKFILE (1 << 6)
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int ln_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int ln_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
int status = EXIT_SUCCESS;
|
2009-11-28 19:48:53 +05:30
|
|
|
int opts;
|
2003-03-19 14:43:01 +05:30
|
|
|
char *last;
|
|
|
|
char *src_name;
|
2004-01-01 04:40:44 +05:30
|
|
|
char *src;
|
2007-01-30 04:21:00 +05:30
|
|
|
char *suffix = (char*)"~";
|
2004-01-01 04:40:44 +05:30
|
|
|
struct stat statbuf;
|
2003-03-19 14:43:01 +05:30
|
|
|
int (*link_func)(const char *, const char *);
|
2000-10-04 15:04:35 +05:30
|
|
|
|
2009-11-28 19:48:53 +05:30
|
|
|
opt_complementary = "-1"; /* min one arg */
|
2012-05-06 16:48:35 +05:30
|
|
|
opts = getopt32(argv, "sfnbS:vT", &suffix);
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
last = argv[argc - 1];
|
|
|
|
argv += optind;
|
2012-05-06 16:48:35 +05:30
|
|
|
argc -= optind;
|
|
|
|
|
|
|
|
if ((opts & LN_LINKFILE) && argc > 2) {
|
|
|
|
bb_error_msg_and_die("-T accepts 2 args max");
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2011-03-21 17:06:35 +05:30
|
|
|
if (!argv[1]) {
|
|
|
|
/* "ln PATH/TO/FILE" -> "ln PATH/TO/FILE FILE" */
|
2003-03-19 14:43:01 +05:30
|
|
|
*--argv = last;
|
2011-03-21 17:06:35 +05:30
|
|
|
/* xstrdup is needed: "ln -s PATH/TO/FILE/" is equivalent to
|
|
|
|
* "ln -s PATH/TO/FILE/ FILE", not "ln -s PATH/TO/FILE FILE"
|
|
|
|
*/
|
2007-09-24 23:57:04 +05:30
|
|
|
last = bb_get_last_path_component_strip(xstrdup(last));
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
do {
|
2004-01-01 04:40:44 +05:30
|
|
|
src_name = NULL;
|
2003-03-19 14:43:01 +05:30
|
|
|
src = last;
|
|
|
|
|
|
|
|
if (is_directory(src,
|
2011-12-18 07:57:46 +05:30
|
|
|
(opts & LN_NODEREFERENCE) ^ LN_NODEREFERENCE
|
|
|
|
)
|
2007-08-16 16:05:17 +05:30
|
|
|
) {
|
2012-05-06 16:48:35 +05:30
|
|
|
if (opts & LN_LINKFILE) {
|
|
|
|
bb_error_msg_and_die("'%s' is a directory", src);
|
|
|
|
}
|
2006-08-03 21:11:12 +05:30
|
|
|
src_name = xstrdup(*argv);
|
2007-09-24 23:57:04 +05:30
|
|
|
src = concat_path_file(src, bb_get_last_path_component_strip(src_name));
|
2003-03-19 14:43:01 +05:30
|
|
|
free(src_name);
|
2004-01-01 04:40:44 +05:30
|
|
|
src_name = src;
|
|
|
|
}
|
2009-11-28 19:48:53 +05:30
|
|
|
if (!(opts & LN_SYMLINK) && stat(*argv, &statbuf)) {
|
2006-10-22 05:10:20 +05:30
|
|
|
// coreutils: "ln dangling_symlink new_hardlink" works
|
|
|
|
if (lstat(*argv, &statbuf) || !S_ISLNK(statbuf.st_mode)) {
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(*argv);
|
2006-10-22 05:10:20 +05:30
|
|
|
status = EXIT_FAILURE;
|
|
|
|
free(src_name);
|
|
|
|
continue;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2009-11-28 19:48:53 +05:30
|
|
|
if (opts & LN_BACKUP) {
|
2006-10-22 05:10:20 +05:30
|
|
|
char *backup;
|
|
|
|
backup = xasprintf("%s%s", src, suffix);
|
|
|
|
if (rename(src, backup) < 0 && errno != ENOENT) {
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(src);
|
2006-10-22 05:10:20 +05:30
|
|
|
status = EXIT_FAILURE;
|
2005-04-30 03:43:04 +05:30
|
|
|
free(backup);
|
2006-10-22 05:10:20 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(backup);
|
|
|
|
/*
|
|
|
|
* When the source and dest are both hard links to the same
|
|
|
|
* inode, a rename may succeed even though nothing happened.
|
|
|
|
* Therefore, always unlink().
|
|
|
|
*/
|
|
|
|
unlink(src);
|
2009-11-28 19:48:53 +05:30
|
|
|
} else if (opts & LN_FORCE) {
|
2003-03-19 14:43:01 +05:30
|
|
|
unlink(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
link_func = link;
|
2009-11-28 19:48:53 +05:30
|
|
|
if (opts & LN_SYMLINK) {
|
2003-03-19 14:43:01 +05:30
|
|
|
link_func = symlink;
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2012-05-06 16:48:35 +05:30
|
|
|
if (opts & LN_VERBOSE) {
|
|
|
|
printf("'%s' -> '%s'\n", src, *argv);
|
|
|
|
}
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if (link_func(*argv, src) != 0) {
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(src);
|
2004-01-01 04:40:44 +05:30
|
|
|
status = EXIT_FAILURE;
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
free(src_name);
|
|
|
|
} while ((++argv)[1]);
|
|
|
|
|
2002-04-06 10:47:57 +05:30
|
|
|
return status;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|