Fixed a bunch of stuff:
[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.
6  * Written by Erik Andersen <andersen@lineo.com>, <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 #include "internal.h"
25 #define BB_DECLARE_EXTERN
26 #define bb_need_name_too_long
27 #define bb_need_not_a_directory
28 #include "messages.c"
29
30 #include <stdio.h>
31 #include <dirent.h>
32 #include <errno.h>
33
34 static const char ln_usage[] =
35         "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
36 #ifndef BB_FEATURE_TRIVIAL_HELP
37         "\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n\n"
38         "Options:\n"
39         "\t-s\tmake symbolic links instead of hard links\n"
40
41         "\t-f\tremove existing destination files\n"
42         "\t-n\tno dereference symlinks - treat like normal file\n"
43 #endif
44         ;
45
46 static int symlinkFlag = FALSE;
47 static int removeoldFlag = FALSE;
48 static int followLinks = TRUE;
49
50 extern int ln_main(int argc, char **argv)
51 {
52         char *linkName;
53         int linkIntoDirFlag;
54
55         if (argc < 3) {
56                 usage(ln_usage);
57         }
58         argc--;
59         argv++;
60
61         /* Parse any options */
62         while (--argc >= 0 && *argv && **argv) {
63                 while (**argv == '-') {
64                         while (*++(*argv))
65                                 switch (**argv) {
66                                         case 's':
67                                                 symlinkFlag = TRUE;
68                                                 break;
69                                         case 'f':
70                                                 removeoldFlag = TRUE;
71                                                 break;
72                                         case 'n':
73                                                 followLinks = FALSE;
74                                                 break;
75                                         default:
76                                                 usage(ln_usage);
77                                 }
78                 }
79                 argv++;
80         }
81
82         if (argc < 1) {
83                 fatalError("ln: missing file argument\n");
84         }
85
86         linkName = argv[argc - 1];
87
88         if (strlen(linkName) > BUFSIZ) {
89                 fprintf(stderr, name_too_long, "ln");
90                 exit FALSE;
91         }
92
93         linkIntoDirFlag = isDirectory(linkName, TRUE, NULL);
94
95         if ((argc > 3) && !linkIntoDirFlag) {
96                 fprintf(stderr, not_a_directory, "ln", linkName);
97                 exit FALSE;
98         }
99
100         while (argc-- >= 2) {
101                 char srcName[BUFSIZ + 1];
102                 int nChars, status;
103
104                 if (strlen(*argv) > BUFSIZ) {
105                         fprintf(stderr, name_too_long, "ln");
106                         exit FALSE;
107                 }
108
109                 if (followLinks == FALSE) {
110                         strcpy(srcName, *argv);
111                 } else {
112                         /* Warning!  This can silently truncate if > BUFSIZ, but
113                            I don't think that there can be one > BUFSIZ anyway. */
114                         nChars = readlink(*argv, srcName, BUFSIZ);
115                         srcName[nChars] = '\0';
116                 }
117
118                 if (removeoldFlag == TRUE) {
119                         status = (unlink(linkName) && errno != ENOENT);
120                         if (status != 0) {
121                                 perror(linkName);
122                                 exit FALSE;
123                         }
124                 }
125
126                 if (symlinkFlag == TRUE)
127                         status = symlink(*argv, linkName);
128                 else
129                         status = link(*argv, linkName);
130                 if (status != 0) {
131                         perror(linkName);
132                         exit FALSE;
133                 }
134         }
135         exit TRUE;
136 }
137
138 /*
139 Local Variables:
140 c-file-style: "linux"
141 c-basic-offset: 4
142 tab-width: 4
143 End:
144 */