source: MondoRescue/branches/2.2.9/mindi-busybox/coreutils/ln.c@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 2.4 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Mini ln implementation for busybox
4 *
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
10/* BB_AUDIT SUSv3 compliant */
11/* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */
12/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
13
[1765]14#include "libbb.h"
[821]15
[1765]16/* This is a NOEXEC applet. Be very careful! */
17
18
[821]19#define LN_SYMLINK 1
20#define LN_FORCE 2
21#define LN_NODEREFERENCE 4
22#define LN_BACKUP 8
23#define LN_SUFFIX 16
24
[2725]25int ln_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
[821]26int ln_main(int argc, char **argv)
27{
28 int status = EXIT_SUCCESS;
[2725]29 int opts;
[821]30 char *last;
31 char *src_name;
32 char *src;
[1765]33 char *suffix = (char*)"~";
[821]34 struct stat statbuf;
35 int (*link_func)(const char *, const char *);
36
[2725]37 opt_complementary = "-1"; /* min one arg */
38 opts = getopt32(argv, "sfnbS:", &suffix);
[821]39
40 last = argv[argc - 1];
41 argv += optind;
42
43 if (argc == optind + 1) {
44 *--argv = last;
[2725]45 last = bb_get_last_path_component_strip(xstrdup(last));
[821]46 }
47
48 do {
49 src_name = NULL;
50 src = last;
51
52 if (is_directory(src,
[2725]53 (opts & LN_NODEREFERENCE) ^ LN_NODEREFERENCE,
[1765]54 NULL)
55 ) {
56 src_name = xstrdup(*argv);
[2725]57 src = concat_path_file(src, bb_get_last_path_component_strip(src_name));
[821]58 free(src_name);
59 src_name = src;
60 }
[2725]61 if (!(opts & LN_SYMLINK) && stat(*argv, &statbuf)) {
[1765]62 // coreutils: "ln dangling_symlink new_hardlink" works
63 if (lstat(*argv, &statbuf) || !S_ISLNK(statbuf.st_mode)) {
[2725]64 bb_simple_perror_msg(*argv);
[1765]65 status = EXIT_FAILURE;
66 free(src_name);
67 continue;
68 }
[821]69 }
70
[2725]71 if (opts & LN_BACKUP) {
[1765]72 char *backup;
73 backup = xasprintf("%s%s", src, suffix);
74 if (rename(src, backup) < 0 && errno != ENOENT) {
[2725]75 bb_simple_perror_msg(src);
[1765]76 status = EXIT_FAILURE;
[821]77 free(backup);
[1765]78 continue;
79 }
80 free(backup);
81 /*
82 * When the source and dest are both hard links to the same
83 * inode, a rename may succeed even though nothing happened.
84 * Therefore, always unlink().
85 */
86 unlink(src);
[2725]87 } else if (opts & LN_FORCE) {
[821]88 unlink(src);
89 }
90
91 link_func = link;
[2725]92 if (opts & LN_SYMLINK) {
[821]93 link_func = symlink;
94 }
95
96 if (link_func(*argv, src) != 0) {
[2725]97 bb_simple_perror_msg(src);
[821]98 status = EXIT_FAILURE;
99 }
100
101 free(src_name);
102
103 } while ((++argv)[1]);
104
105 return status;
106}
Note: See TracBrowser for help on using the repository browser.