www.usr.com/support/gpl/USR9108_release1.5.tar.gz
[bcm963xx.git] / userapps / opensource / busybox / coreutils / ln.c
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  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23 /* BB_AUDIT SUSv3 compliant */
24 /* BB_AUDIT GNU options missing: -b, -d, -F, -i, -S, and -v. */
25 /* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
26
27 /* Mar 16, 2003      Manuel Novoa III   (mjn3@codepoet.org)
28  *
29  * Fixed bug involving -n option.  Essentially, -n was always in effect.
30  */
31
32 #include <stdlib.h>
33 #include <unistd.h>
34 #include "busybox.h"
35
36 #define LN_SYMLINK          1
37 #define LN_FORCE            2
38 #define LN_NODEREFERENCE    4
39
40 extern int ln_main(int argc, char **argv)
41 {
42         int status = EXIT_SUCCESS;
43         int flag;
44         char *last;
45         char *src_name;
46         char *src;
47         struct stat statbuf;
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 = NULL;
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 = src;
75                 }
76                 if (!(flag & LN_SYMLINK) && stat(*argv, &statbuf)) {
77                         bb_perror_msg(*argv);
78                         status = EXIT_FAILURE;
79                         free(src_name);
80                         continue;
81                 }
82
83                 if (flag & LN_FORCE) {
84                         unlink(src);
85                 }
86
87                 link_func = link;
88                 if (flag & LN_SYMLINK) {
89                         link_func = symlink;
90                 }
91
92                 if (link_func(*argv, src) != 0) {
93                         bb_perror_msg(src);
94                         status = EXIT_FAILURE;
95                 }
96
97                 free(src_name);
98
99         } while ((++argv)[1]);
100
101         return status;
102 }