Fix bug (wrong value computed) when reading file from stdin, implement
[oweals/busybox.git] / coreutils / ln.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini ln implementation for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
7  *
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
24 /* 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
33 #include <stdlib.h>
34 #include <unistd.h>
35 #include "busybox.h"
36
37 #define LN_SYMLINK          1
38 #define LN_FORCE            2
39 #define LN_NODEREFERENCE    4
40
41 extern int ln_main(int argc, char **argv)
42 {
43         int status = EXIT_SUCCESS;
44         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;
75                 }
76
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
95         return status;
96 }
97
98
99
100
101
102
103
104
105
106