OSDN Git Service

Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP
[android-x86/external-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
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 (**argv == '-') {
63                 while (*++(*argv))
64                         switch (**argv) {
65                         case 's':
66                                 symlinkFlag = TRUE;
67                                 break;
68                         case 'f':
69                                 removeoldFlag = TRUE;
70                                 break;
71                         case 'n':
72                                 followLinks = FALSE;
73                                 break;
74                         default:
75                                 usage(ln_usage);
76                         }
77                 argc--;
78                 argv++;
79         }
80
81         linkName = argv[argc - 1];
82
83         if (strlen(linkName) > BUFSIZ) {
84                 fprintf(stderr, name_too_long, "ln");
85                 exit FALSE;
86         }
87
88         linkIntoDirFlag = isDirectory(linkName, TRUE, NULL);
89
90         if ((argc > 3) && !linkIntoDirFlag) {
91                 fprintf(stderr, not_a_directory, "ln", linkName);
92                 exit FALSE;
93         }
94
95         while (argc-- >= 2) {
96                 char srcName[BUFSIZ + 1];
97                 int nChars, status;
98
99                 if (strlen(*argv) > BUFSIZ) {
100                         fprintf(stderr, name_too_long, "ln");
101                         exit FALSE;
102                 }
103
104                 if (followLinks == FALSE) {
105                         strcpy(srcName, *argv);
106                 } else {
107                         /* Warning!  This can silently truncate if > BUFSIZ, but
108                            I don't think that there can be one > BUFSIZ anyway. */
109                         nChars = readlink(*argv, srcName, BUFSIZ);
110                         srcName[nChars] = '\0';
111                 }
112
113                 if (removeoldFlag == TRUE) {
114                         status = (unlink(linkName) && errno != ENOENT);
115                         if (status != 0) {
116                                 perror(linkName);
117                                 exit FALSE;
118                         }
119                 }
120
121                 if (symlinkFlag == TRUE)
122                         status = symlink(*argv, linkName);
123                 else
124                         status = link(*argv, linkName);
125                 if (status != 0) {
126                         perror(linkName);
127                         exit FALSE;
128                 }
129         }
130         exit TRUE;
131 }
132
133 /*
134 Local Variables:
135 c-file-style: "linux"
136 c-basic-offset: 4
137 tab-width: 4
138 End:
139 */