blob: 2edece104c338bfdf94827e3ad8d0200d6925615 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenf6be9441999-10-13 21:12:06 +00002/*
3 * Mini ln implementation for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenf6be9441999-10-13 21:12:06 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Manuel Novoa III cad53642003-03-19 09:13:01 +000024/* BB_AUDIT SUSv3 compliant */
25/* BB_AUDIT GNU options missing: -b, -d, -F, -i, -S, and -v. */
26/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
27
28/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
29 *
30 * Fixed bug involving -n option. Essentially, -n was always in effect.
31 */
32
Eric Andersened3ef502001-01-27 08:24:39 +000033#include <stdlib.h>
Eric Andersened3ef502001-01-27 08:24:39 +000034#include <unistd.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000035#include "busybox.h"
Eric Andersencbe31da2001-02-20 06:14:08 +000036
Manuel Novoa III cad53642003-03-19 09:13:01 +000037#define LN_SYMLINK 1
38#define LN_FORCE 2
39#define LN_NODEREFERENCE 4
Eric Andersenf6be9441999-10-13 21:12:06 +000040
41extern int ln_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000042{
Eric Andersen13241df2000-10-04 16:02:53 +000043 int status = EXIT_SUCCESS;
Manuel Novoa III cad53642003-03-19 09:13:01 +000044 int flag;
45 char *last;
46 char *src_name;
47 const char *src;
48 int (*link_func)(const char *, const char *);
49
50 flag = bb_getopt_ulflags(argc, argv, "sfn");
51
52 if (argc == optind) {
53 bb_show_usage();
54 }
55
56 last = argv[argc - 1];
57 argv += optind;
58
59 if (argc == optind + 1) {
60 *--argv = last;
61 last = bb_get_last_path_component(bb_xstrdup(last));
62 }
63
64 do {
65 src_name = 0;
66 src = last;
67
68 if (is_directory(src,
69 (flag & LN_NODEREFERENCE) ^ LN_NODEREFERENCE,
70 NULL)) {
71 src_name = bb_xstrdup(*argv);
72 src = concat_path_file(src, bb_get_last_path_component(src_name));
73 free(src_name);
74 src_name = (char *)src;
Eric Andersen815e9042000-06-06 16:15:23 +000075 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000076
77 if (flag & LN_FORCE) {
78 unlink(src);
79 }
80
81 link_func = link;
82 if (flag & LN_SYMLINK) {
83 link_func = symlink;
84 }
85
86 if (link_func(*argv, src) != 0) {
87 bb_perror_msg(src);
88 status = EXIT_FAILURE;;
89 }
90
91 free(src_name);
92
93 } while ((++argv)[1]);
94
Eric Andersenfcffa2c2002-04-06 05:17:57 +000095 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +000096}
Erik Andersen029011b2000-03-04 21:19:32 +000097
Manuel Novoa III cad53642003-03-19 09:13:01 +000098
99
100
101
102
103
104
105
106