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
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
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 */
|
|
|
|
|
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! */
|
|
|
|
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
#define LN_SYMLINK 1
|
|
|
|
#define LN_FORCE 2
|
|
|
|
#define LN_NODEREFERENCE 4
|
2005-04-30 03:43:04 +05:30
|
|
|
#define LN_BACKUP 8
|
|
|
|
#define LN_SUFFIX 16
|
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 */
|
|
|
|
opts = getopt32(argv, "sfnbS:", &suffix);
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
last = argv[argc - 1];
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc == optind + 1) {
|
|
|
|
*--argv = last;
|
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,
|
2009-11-28 19:48:53 +05:30
|
|
|
(opts & LN_NODEREFERENCE) ^ LN_NODEREFERENCE,
|
2007-08-16 16:05:17 +05:30
|
|
|
NULL)
|
|
|
|
) {
|
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
|
|
|
|
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);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
} while ((++argv)[1]);
|
|
|
|
|
2002-04-06 10:47:57 +05:30
|
|
|
return status;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|