2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-14 02:42:06 +05:30
|
|
|
/*
|
|
|
|
* Mini ln implementation for busybox
|
|
|
|
*
|
2000-04-13 06:48:56 +05:30
|
|
|
* Copyright (C) 1999,2000 by Lineo, inc.
|
1999-10-21 03:38:37 +05:30
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
1999-10-14 02:42:06 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
#include "internal.h"
|
2000-02-07 10:59:42 +05:30
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#define bb_need_name_too_long
|
|
|
|
#define bb_need_not_a_directory
|
|
|
|
#include "messages.c"
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdio.h>
|
1999-10-14 02:42:06 +05:30
|
|
|
#include <dirent.h>
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <errno.h>
|
|
|
|
|
2000-02-07 10:59:42 +05:30
|
|
|
static const char ln_usage[] =
|
2000-05-13 01:11:47 +05:30
|
|
|
"ln [OPTION] TARGET... LINK_NAME|DIRECTORY\n"
|
|
|
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
2000-06-22 04:23:24 +05:30
|
|
|
"\nCreate a link named LINK_NAME or DIRECTORY to the specified TARGET\n"
|
|
|
|
"\nYou may use '--' to indicate that all following arguments are non-options.\n\n"
|
2000-02-09 01:28:47 +05:30
|
|
|
"Options:\n"
|
|
|
|
"\t-s\tmake symbolic links instead of hard links\n"
|
|
|
|
|
|
|
|
"\t-f\tremove existing destination files\n"
|
2000-05-13 01:11:47 +05:30
|
|
|
"\t-n\tno dereference symlinks - treat like normal file\n"
|
|
|
|
#endif
|
|
|
|
;
|
1999-10-14 02:42:06 +05:30
|
|
|
|
|
|
|
static int symlinkFlag = FALSE;
|
|
|
|
static int removeoldFlag = FALSE;
|
2000-02-07 10:59:42 +05:30
|
|
|
static int followLinks = TRUE;
|
1999-10-14 02:42:06 +05:30
|
|
|
|
|
|
|
extern int ln_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
char *linkName;
|
|
|
|
int linkIntoDirFlag;
|
2000-06-15 23:34:40 +05:30
|
|
|
int stopIt = FALSE;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
1999-10-14 02:42:06 +05:30
|
|
|
argc--;
|
|
|
|
argv++;
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
/* Parse any options */
|
2000-06-15 23:34:40 +05:30
|
|
|
while (argc > 0 && stopIt == FALSE) {
|
|
|
|
if (**argv == '-') {
|
2000-06-06 21:45:23 +05:30
|
|
|
while (*++(*argv))
|
|
|
|
switch (**argv) {
|
|
|
|
case 's':
|
|
|
|
symlinkFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
removeoldFlag = TRUE;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
followLinks = FALSE;
|
|
|
|
break;
|
2000-06-15 23:34:40 +05:30
|
|
|
case '-':
|
|
|
|
stopIt = TRUE;
|
|
|
|
break;
|
2000-06-06 21:45:23 +05:30
|
|
|
default:
|
|
|
|
usage(ln_usage);
|
|
|
|
}
|
2000-06-15 23:34:40 +05:30
|
|
|
argc--;
|
|
|
|
argv++;
|
2000-06-06 21:45:23 +05:30
|
|
|
}
|
2000-06-15 23:34:40 +05:30
|
|
|
else
|
|
|
|
break;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-10-14 02:42:06 +05:30
|
|
|
|
2000-06-15 23:34:40 +05:30
|
|
|
if (argc < 2) {
|
|
|
|
usage(ln_usage);
|
2000-06-06 21:45:23 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
linkName = argv[argc - 1];
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2000-04-28 05:48:56 +05:30
|
|
|
if (strlen(linkName) > BUFSIZ) {
|
2000-02-09 01:28:47 +05:30
|
|
|
fprintf(stderr, name_too_long, "ln");
|
|
|
|
exit FALSE;
|
2000-02-07 10:59:42 +05:30
|
|
|
}
|
|
|
|
|
2000-02-12 03:25:04 +05:30
|
|
|
linkIntoDirFlag = isDirectory(linkName, TRUE, NULL);
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2000-06-18 05:32:24 +05:30
|
|
|
if ((argc >= 3) && linkIntoDirFlag == FALSE) {
|
2000-02-09 01:28:47 +05:30
|
|
|
fprintf(stderr, not_a_directory, "ln", linkName);
|
2000-02-07 10:59:42 +05:30
|
|
|
exit FALSE;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-02-07 10:59:42 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while (argc-- >= 2) {
|
2000-04-28 05:48:56 +05:30
|
|
|
char srcName[BUFSIZ + 1];
|
2000-02-09 01:28:47 +05:30
|
|
|
int nChars, status;
|
|
|
|
|
2000-04-28 05:48:56 +05:30
|
|
|
if (strlen(*argv) > BUFSIZ) {
|
2000-02-09 01:28:47 +05:30
|
|
|
fprintf(stderr, name_too_long, "ln");
|
|
|
|
exit FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (followLinks == FALSE) {
|
|
|
|
strcpy(srcName, *argv);
|
|
|
|
} else {
|
2000-04-28 05:48:56 +05:30
|
|
|
/* Warning! This can silently truncate if > BUFSIZ, but
|
|
|
|
I don't think that there can be one > BUFSIZ anyway. */
|
|
|
|
nChars = readlink(*argv, srcName, BUFSIZ);
|
2000-02-09 01:28:47 +05:30
|
|
|
srcName[nChars] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (removeoldFlag == TRUE) {
|
|
|
|
status = (unlink(linkName) && errno != ENOENT);
|
|
|
|
if (status != 0) {
|
|
|
|
perror(linkName);
|
|
|
|
exit FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (symlinkFlag == TRUE)
|
|
|
|
status = symlink(*argv, linkName);
|
|
|
|
else
|
|
|
|
status = link(*argv, linkName);
|
|
|
|
if (status != 0) {
|
|
|
|
perror(linkName);
|
|
|
|
exit FALSE;
|
|
|
|
}
|
1999-10-14 02:42:06 +05:30
|
|
|
}
|
2000-06-19 22:55:40 +05:30
|
|
|
return( TRUE);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-03-05 02:49:32 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|