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
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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 */
|
|
|
|
|
2005-04-30 03:43:04 +05:30
|
|
|
#include <stdio.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2005-04-30 03:43:04 +05:30
|
|
|
#include <errno.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
|
|
|
|
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
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
extern 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;
|
|
|
|
int flag;
|
|
|
|
char *last;
|
|
|
|
char *src_name;
|
2004-01-01 04:40:44 +05:30
|
|
|
char *src;
|
2005-04-30 03:43:04 +05:30
|
|
|
char *suffix = "~";
|
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
|
|
|
|
2005-04-30 03:43:04 +05:30
|
|
|
flag = bb_getopt_ulflags(argc, argv, "sfnbS:", &suffix);
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
if (argc == optind) {
|
|
|
|
bb_show_usage();
|
2000-06-06 21:45:23 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
last = argv[argc - 1];
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc == optind + 1) {
|
|
|
|
*--argv = last;
|
|
|
|
last = bb_get_last_path_component(bb_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,
|
|
|
|
(flag & LN_NODEREFERENCE) ^ LN_NODEREFERENCE,
|
|
|
|
NULL)) {
|
|
|
|
src_name = bb_xstrdup(*argv);
|
|
|
|
src = concat_path_file(src, bb_get_last_path_component(src_name));
|
|
|
|
free(src_name);
|
2004-01-01 04:40:44 +05:30
|
|
|
src_name = src;
|
|
|
|
}
|
2004-01-08 16:21:09 +05:30
|
|
|
if (!(flag & LN_SYMLINK) && stat(*argv, &statbuf)) {
|
2004-01-01 04:40:44 +05:30
|
|
|
bb_perror_msg(*argv);
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
free(src_name);
|
|
|
|
continue;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2005-04-30 03:43:04 +05:30
|
|
|
if (flag & LN_BACKUP) {
|
|
|
|
char *backup = NULL;
|
|
|
|
bb_xasprintf(&backup, "%s%s", src, suffix);
|
|
|
|
if (rename(src, backup) < 0 && errno != ENOENT) {
|
|
|
|
bb_perror_msg(src);
|
|
|
|
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 14:43:01 +05:30
|
|
|
unlink(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
link_func = link;
|
|
|
|
if (flag & LN_SYMLINK) {
|
|
|
|
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) {
|
|
|
|
bb_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
|
|
|
}
|