2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-13 21:12:06 +00:00
|
|
|
/*
|
|
|
|
* Mini ln implementation for busybox
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-10-13 21:12:06 +00:00
|
|
|
*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-13 21:12:06 +00:00
|
|
|
*/
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
2005-04-29 22:13:04 +00:00
|
|
|
/* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */
|
2003-03-19 09:13:01 +00:00
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
|
|
|
|
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
#define LN_SYMLINK 1
|
|
|
|
#define LN_FORCE 2
|
|
|
|
#define LN_NODEREFERENCE 4
|
2005-04-29 22:13:04 +00:00
|
|
|
#define LN_BACKUP 8
|
|
|
|
#define LN_SUFFIX 16
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2006-03-06 20:47:33 +00:00
|
|
|
int ln_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2003-03-19 09:13:01 +00:00
|
|
|
int status = EXIT_SUCCESS;
|
|
|
|
int flag;
|
|
|
|
char *last;
|
|
|
|
char *src_name;
|
2003-12-31 23:10:44 +00:00
|
|
|
char *src;
|
2005-04-29 22:13:04 +00:00
|
|
|
char *suffix = "~";
|
2003-12-31 23:10:44 +00:00
|
|
|
struct stat statbuf;
|
2003-03-19 09:13:01 +00:00
|
|
|
int (*link_func)(const char *, const char *);
|
2000-10-04 09:34:35 +00:00
|
|
|
|
2005-04-29 22:13:04 +00:00
|
|
|
flag = bb_getopt_ulflags(argc, argv, "sfnbS:", &suffix);
|
2003-03-19 09:13:01 +00:00
|
|
|
|
|
|
|
if (argc == optind) {
|
|
|
|
bb_show_usage();
|
2000-06-06 16:15:23 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
|
|
|
|
last = argv[argc - 1];
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc == optind + 1) {
|
|
|
|
*--argv = last;
|
2006-08-03 15:41:12 +00:00
|
|
|
last = bb_get_last_path_component(xstrdup(last));
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
do {
|
2003-12-31 23:10:44 +00:00
|
|
|
src_name = NULL;
|
2003-03-19 09:13:01 +00:00
|
|
|
src = last;
|
|
|
|
|
|
|
|
if (is_directory(src,
|
|
|
|
(flag & LN_NODEREFERENCE) ^ LN_NODEREFERENCE,
|
|
|
|
NULL)) {
|
2006-08-03 15:41:12 +00:00
|
|
|
src_name = xstrdup(*argv);
|
2003-03-19 09:13:01 +00:00
|
|
|
src = concat_path_file(src, bb_get_last_path_component(src_name));
|
|
|
|
free(src_name);
|
2003-12-31 23:10:44 +00:00
|
|
|
src_name = src;
|
|
|
|
}
|
2004-01-08 10:51:09 +00:00
|
|
|
if (!(flag & LN_SYMLINK) && stat(*argv, &statbuf)) {
|
2005-09-29 16:18:57 +00:00
|
|
|
bb_perror_msg("%s", *argv);
|
2003-12-31 23:10:44 +00:00
|
|
|
status = EXIT_FAILURE;
|
|
|
|
free(src_name);
|
|
|
|
continue;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2003-03-19 09:13:01 +00:00
|
|
|
|
2005-04-29 22:13:04 +00:00
|
|
|
if (flag & LN_BACKUP) {
|
2005-09-29 16:18:57 +00:00
|
|
|
char *backup;
|
2006-08-03 15:41:12 +00:00
|
|
|
backup = xasprintf("%s%s", src, suffix);
|
2005-04-29 22:13:04 +00:00
|
|
|
if (rename(src, backup) < 0 && errno != ENOENT) {
|
2005-09-29 16:18:57 +00:00
|
|
|
bb_perror_msg("%s", src);
|
2005-04-29 22:13:04 +00:00
|
|
|
status = EXIT_FAILURE;
|
|
|
|
free(backup);
|
|
|
|
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);
|
|
|
|
} else if (flag & LN_FORCE) {
|
2003-03-19 09:13:01 +00:00
|
|
|
unlink(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
link_func = link;
|
|
|
|
if (flag & LN_SYMLINK) {
|
|
|
|
link_func = symlink;
|
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
if (link_func(*argv, src) != 0) {
|
2005-12-12 06:49:33 +00:00
|
|
|
bb_perror_msg("%s", src);
|
2003-12-31 23:10:44 +00:00
|
|
|
status = EXIT_FAILURE;
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(src_name);
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
} while ((++argv)[1]);
|
|
|
|
|
2002-04-06 05:17:57 +00:00
|
|
|
return status;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|