blob: 8f7719fa466f5bb79066f36a2ef5c629df0f1441 [file] [log] [blame]
Eric Andersenf6be9441999-10-13 21:12:06 +00001/*
2 * Mini ln implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include "internal.h"
23#include <stdio.h>
Eric Andersenf6be9441999-10-13 21:12:06 +000024#include <dirent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000025#include <errno.h>
26
Eric Andersenf6be9441999-10-13 21:12:06 +000027
28static const char ln_usage[] = "ln [-s] [-f] original-name additional-name\n"
Eric Andersencc8ed391999-10-05 16:24:54 +000029"\n"
30"\tAdd a new name that refers to the same file as \"original-name\"\n"
31"\n"
32"\t-s:\tUse a \"symbolic\" link, instead of a \"hard\" link.\n"
33"\t-f:\tRemove existing destination files.\n";
34
Eric Andersenf6be9441999-10-13 21:12:06 +000035
36static int symlinkFlag = FALSE;
37static int removeoldFlag = FALSE;
38static const char *destName;
39
40
41extern int ln_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000042{
Eric Andersenf6be9441999-10-13 21:12:06 +000043 int status;
44 char newdestName[NAME_MAX];
Eric Andersencc8ed391999-10-05 16:24:54 +000045
Eric Andersenf6be9441999-10-13 21:12:06 +000046 if (argc < 3) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000047 usage (ln_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000048 }
49 argc--;
50 argv++;
51
52 /* Parse any options */
53 while (**argv == '-') {
54 while (*++(*argv))
55 switch (**argv) {
56 case 's':
57 symlinkFlag = TRUE;
58 break;
59 case 'f':
60 removeoldFlag = TRUE;
61 break;
62 default:
Eric Andersenb0e9a701999-10-18 22:28:26 +000063 usage (ln_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000064 }
65 argc--;
66 argv++;
67 }
68
69
70 destName = argv[argc - 1];
71
72 if ((argc > 3) && !(isDirectory(destName))) {
73 fprintf(stderr, "%s: not a directory\n", destName);
74 exit (FALSE);
75 }
76
77 while (argc-- >= 2) {
78 strcpy(newdestName, destName);
79 strcat(newdestName, (*argv)+(strlen(*(++argv))));
80
81 if (removeoldFlag==TRUE ) {
82 status = ( unlink(newdestName) && errno != ENOENT );
83 if ( status != 0 ) {
84 perror(newdestName);
85 exit( FALSE);
86 }
Eric Andersencc8ed391999-10-05 16:24:54 +000087 }
Eric Andersenf6be9441999-10-13 21:12:06 +000088 if ( symlinkFlag==TRUE)
89 status = symlink(*argv, newdestName);
Eric Andersencc8ed391999-10-05 16:24:54 +000090 else
Eric Andersenf6be9441999-10-13 21:12:06 +000091 status = link(*argv, newdestName);
92 if ( status != 0 ) {
93 perror(newdestName);
94 exit( FALSE);
95 }
96 }
97 exit( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000098}