More little stuff.
[oweals/busybox.git] / 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 #include <sys/param.h>                  /* for PATH_MAX */
34
35 static const char ln_usage[] =
36         "ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n\n"
37         "Create 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
44 static int symlinkFlag = FALSE;
45 static int removeoldFlag = FALSE;
46 static int followLinks = TRUE;
47
48 extern int ln_main(int argc, char **argv)
49 {
50         char *linkName;
51         int linkIntoDirFlag;
52
53         if (argc < 3) {
54                 usage(ln_usage);
55         }
56         argc--;
57         argv++;
58
59         /* Parse any options */
60         while (**argv == '-') {
61                 while (*++(*argv))
62                         switch (**argv) {
63                         case 's':
64                                 symlinkFlag = TRUE;
65                                 break;
66                         case 'f':
67                                 removeoldFlag = TRUE;
68                                 break;
69                         case 'n':
70                                 followLinks = FALSE;
71                                 break;
72                         default:
73                                 usage(ln_usage);
74                         }
75                 argc--;
76                 argv++;
77         }
78
79         linkName = argv[argc - 1];
80
81         if (strlen(linkName) > PATH_MAX) {
82                 fprintf(stderr, name_too_long, "ln");
83                 exit FALSE;
84         }
85
86         linkIntoDirFlag = isDirectory(linkName, TRUE, NULL);
87
88         if ((argc > 3) && !linkIntoDirFlag) {
89                 fprintf(stderr, not_a_directory, "ln", linkName);
90                 exit FALSE;
91         }
92
93         while (argc-- >= 2) {
94                 char srcName[PATH_MAX + 1];
95                 int nChars, status;
96
97                 if (strlen(*argv) > PATH_MAX) {
98                         fprintf(stderr, name_too_long, "ln");
99                         exit FALSE;
100                 }
101
102                 if (followLinks == FALSE) {
103                         strcpy(srcName, *argv);
104                 } else {
105                         /* Warning!  This can silently truncate if > PATH_MAX, but
106                            I don't think that there can be one > PATH_MAX anyway. */
107                         nChars = readlink(*argv, srcName, PATH_MAX);
108                         srcName[nChars] = '\0';
109                 }
110
111                 if (removeoldFlag == TRUE) {
112                         status = (unlink(linkName) && errno != ENOENT);
113                         if (status != 0) {
114                                 perror(linkName);
115                                 exit FALSE;
116                         }
117                 }
118
119                 if (symlinkFlag == TRUE)
120                         status = symlink(*argv, linkName);
121                 else
122                         status = link(*argv, linkName);
123                 if (status != 0) {
124                         perror(linkName);
125                         exit FALSE;
126                 }
127         }
128         exit TRUE;
129 }
130
131 /*
132 Local Variables:
133 c-file-style: "linux"
134 c-basic-offset: 4
135 tab-width: 4
136 End:
137 */