2000-02-09 03:58:47 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-14 05:12:06 +08:00
|
|
|
/*
|
|
|
|
* Mini ln implementation for busybox
|
|
|
|
*
|
2004-03-15 16:29:22 +08:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-10-14 05:12:06 +08:00
|
|
|
*
|
2010-08-17 02:14:46 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
1999-10-14 05:12:06 +08:00
|
|
|
*/
|
2016-11-23 21:46:56 +08:00
|
|
|
//config:config LN
|
|
|
|
//config: bool "ln"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: ln is used to create hard or soft links between files.
|
|
|
|
|
|
|
|
//applet:IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_LN) += ln.o
|
1999-10-14 05:12:06 +08:00
|
|
|
|
2003-03-19 17:13:01 +08:00
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
2005-04-30 06:13:04 +08:00
|
|
|
/* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */
|
2003-03-19 17:13:01 +08:00
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
|
|
|
|
|
2011-03-31 20:43:25 +08:00
|
|
|
//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 19:18:35 +08:00
|
|
|
//usage: "\n -T 2nd arg must be a DIR"
|
|
|
|
//usage: "\n -v Verbose"
|
2011-03-31 20:43:25 +08:00
|
|
|
//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 03:00:18 +08:00
|
|
|
#include "libbb.h"
|
2001-02-20 14:14:08 +08:00
|
|
|
|
2007-04-10 23:43:37 +08:00
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2012-05-06 19:18:35 +08:00
|
|
|
#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-06 00:24:54 +08:00
|
|
|
|
2007-10-11 18:05:36 +08:00
|
|
|
int ln_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 04:47:33 +08:00
|
|
|
int ln_main(int argc, char **argv)
|
1999-10-06 00:24:54 +08:00
|
|
|
{
|
2003-03-19 17:13:01 +08:00
|
|
|
int status = EXIT_SUCCESS;
|
2009-11-28 22:18:53 +08:00
|
|
|
int opts;
|
2003-03-19 17:13:01 +08:00
|
|
|
char *last;
|
|
|
|
char *src_name;
|
2004-01-01 07:10:44 +08:00
|
|
|
char *src;
|
2007-01-30 06:51:00 +08:00
|
|
|
char *suffix = (char*)"~";
|
2004-01-01 07:10:44 +08:00
|
|
|
struct stat statbuf;
|
2003-03-19 17:13:01 +08:00
|
|
|
int (*link_func)(const char *, const char *);
|
2000-10-04 17:34:35 +08:00
|
|
|
|
2009-11-28 22:18:53 +08:00
|
|
|
opt_complementary = "-1"; /* min one arg */
|
2012-05-06 19:18:35 +08:00
|
|
|
opts = getopt32(argv, "sfnbS:vT", &suffix);
|
2003-03-19 17:13:01 +08:00
|
|
|
|
|
|
|
last = argv[argc - 1];
|
|
|
|
argv += optind;
|
2012-05-06 19:18:35 +08:00
|
|
|
argc -= optind;
|
|
|
|
|
|
|
|
if ((opts & LN_LINKFILE) && argc > 2) {
|
|
|
|
bb_error_msg_and_die("-T accepts 2 args max");
|
|
|
|
}
|
2003-03-19 17:13:01 +08:00
|
|
|
|
2011-03-21 19:36:35 +08:00
|
|
|
if (!argv[1]) {
|
|
|
|
/* "ln PATH/TO/FILE" -> "ln PATH/TO/FILE FILE" */
|
2003-03-19 17:13:01 +08:00
|
|
|
*--argv = last;
|
2011-03-21 19:36:35 +08:00
|
|
|
/* 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-25 02:27:04 +08:00
|
|
|
last = bb_get_last_path_component_strip(xstrdup(last));
|
1999-10-06 00:24:54 +08:00
|
|
|
}
|
2000-02-07 13:29:42 +08:00
|
|
|
|
2003-03-19 17:13:01 +08:00
|
|
|
do {
|
2004-01-01 07:10:44 +08:00
|
|
|
src_name = NULL;
|
2003-03-19 17:13:01 +08:00
|
|
|
src = last;
|
|
|
|
|
|
|
|
if (is_directory(src,
|
2011-12-18 10:27:46 +08:00
|
|
|
(opts & LN_NODEREFERENCE) ^ LN_NODEREFERENCE
|
|
|
|
)
|
2007-08-16 18:35:17 +08:00
|
|
|
) {
|
2012-05-06 19:18:35 +08:00
|
|
|
if (opts & LN_LINKFILE) {
|
|
|
|
bb_error_msg_and_die("'%s' is a directory", src);
|
|
|
|
}
|
2006-08-03 23:41:12 +08:00
|
|
|
src_name = xstrdup(*argv);
|
2007-09-25 02:27:04 +08:00
|
|
|
src = concat_path_file(src, bb_get_last_path_component_strip(src_name));
|
2003-03-19 17:13:01 +08:00
|
|
|
free(src_name);
|
2004-01-01 07:10:44 +08:00
|
|
|
src_name = src;
|
|
|
|
}
|
2009-11-28 22:18:53 +08:00
|
|
|
if (!(opts & LN_SYMLINK) && stat(*argv, &statbuf)) {
|
2006-10-22 07:40:20 +08:00
|
|
|
// coreutils: "ln dangling_symlink new_hardlink" works
|
|
|
|
if (lstat(*argv, &statbuf) || !S_ISLNK(statbuf.st_mode)) {
|
2007-10-01 19:58:38 +08:00
|
|
|
bb_simple_perror_msg(*argv);
|
2006-10-22 07:40:20 +08:00
|
|
|
status = EXIT_FAILURE;
|
|
|
|
free(src_name);
|
|
|
|
continue;
|
|
|
|
}
|
2000-02-09 03:58:47 +08:00
|
|
|
}
|
2003-03-19 17:13:01 +08:00
|
|
|
|
2009-11-28 22:18:53 +08:00
|
|
|
if (opts & LN_BACKUP) {
|
2006-10-22 07:40:20 +08:00
|
|
|
char *backup;
|
|
|
|
backup = xasprintf("%s%s", src, suffix);
|
|
|
|
if (rename(src, backup) < 0 && errno != ENOENT) {
|
2007-10-01 19:58:38 +08:00
|
|
|
bb_simple_perror_msg(src);
|
2006-10-22 07:40:20 +08:00
|
|
|
status = EXIT_FAILURE;
|
2005-04-30 06:13:04 +08:00
|
|
|
free(backup);
|
2006-10-22 07:40:20 +08:00
|
|
|
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 22:18:53 +08:00
|
|
|
} else if (opts & LN_FORCE) {
|
2003-03-19 17:13:01 +08:00
|
|
|
unlink(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
link_func = link;
|
2009-11-28 22:18:53 +08:00
|
|
|
if (opts & LN_SYMLINK) {
|
2003-03-19 17:13:01 +08:00
|
|
|
link_func = symlink;
|
|
|
|
}
|
2004-03-15 16:29:22 +08:00
|
|
|
|
2012-05-06 19:18:35 +08:00
|
|
|
if (opts & LN_VERBOSE) {
|
|
|
|
printf("'%s' -> '%s'\n", src, *argv);
|
|
|
|
}
|
|
|
|
|
2003-03-19 17:13:01 +08:00
|
|
|
if (link_func(*argv, src) != 0) {
|
2007-10-01 19:58:38 +08:00
|
|
|
bb_simple_perror_msg(src);
|
2004-01-01 07:10:44 +08:00
|
|
|
status = EXIT_FAILURE;
|
2003-03-19 17:13:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
free(src_name);
|
|
|
|
} while ((++argv)[1]);
|
|
|
|
|
2002-04-06 13:17:57 +08:00
|
|
|
return status;
|
1999-10-06 00:24:54 +08:00
|
|
|
}
|