2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2001-01-27 14:02:57 +05:30
|
|
|
#include <unistd.h>
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <errno.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_LOCALE_SUPPORT
|
2001-04-10 04:18:12 +05:30
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
|
|
|
|
2001-04-03 22:35:01 +05:30
|
|
|
int been_there_done_that = 0; /* Also used in applets.c */
|
2000-07-28 20:44:45 +05:30
|
|
|
const char *applet_name;
|
2000-01-13 10:13:48 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_INSTALLER
|
2000-06-27 10:20:02 +05:30
|
|
|
/*
|
|
|
|
* directory table
|
2000-09-26 03:15:58 +05:30
|
|
|
* this should be consistent w/ the enum, busybox.h::Location,
|
2000-06-28 06:25:31 +05:30
|
|
|
* or else...
|
2000-06-27 10:20:02 +05:30
|
|
|
*/
|
2002-04-06 10:47:57 +05:30
|
|
|
static const char usr_bin [] ="/usr/bin";
|
|
|
|
static const char usr_sbin[] ="/usr/sbin";
|
|
|
|
|
|
|
|
static const char* const install_dir[] = {
|
|
|
|
&usr_bin [8], /* "", equivalent to "/" for concat_path_file() */
|
|
|
|
&usr_bin [4], /* "/bin" */
|
|
|
|
&usr_sbin[4], /* "/sbin" */
|
|
|
|
usr_bin,
|
|
|
|
usr_sbin
|
2000-06-27 10:20:02 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/* abstract link() */
|
|
|
|
typedef int (*__link_f)(const char *, const char *);
|
|
|
|
|
2000-06-28 06:11:26 +05:30
|
|
|
/*
|
|
|
|
* Where in the filesystem is this busybox?
|
|
|
|
* [return]
|
|
|
|
* malloc'd string w/ full pathname of busybox's location
|
|
|
|
* NULL on failure
|
|
|
|
*/
|
2002-04-06 10:47:57 +05:30
|
|
|
static inline char *busybox_fullpath(void)
|
2000-06-28 06:11:26 +05:30
|
|
|
{
|
2001-05-07 23:18:28 +05:30
|
|
|
return xreadlink("/proc/self/exe");
|
2000-06-28 06:11:26 +05:30
|
|
|
}
|
|
|
|
|
2000-06-27 10:20:02 +05:30
|
|
|
/* create (sym)links for each applet */
|
2000-09-26 02:05:54 +05:30
|
|
|
static void install_links(const char *busybox, int use_symbolic_links)
|
2000-06-27 10:20:02 +05:30
|
|
|
{
|
2000-06-28 06:25:31 +05:30
|
|
|
__link_f Link = link;
|
2000-06-27 10:20:02 +05:30
|
|
|
|
2001-04-10 04:18:12 +05:30
|
|
|
char *fpc;
|
2000-06-28 06:25:31 +05:30
|
|
|
int i;
|
2000-09-26 02:05:54 +05:30
|
|
|
int rc;
|
2000-06-27 10:20:02 +05:30
|
|
|
|
2001-01-27 14:02:57 +05:30
|
|
|
if (use_symbolic_links)
|
|
|
|
Link = symlink;
|
2000-06-27 10:20:02 +05:30
|
|
|
|
2000-06-28 06:25:31 +05:30
|
|
|
for (i = 0; applets[i].name != NULL; i++) {
|
2001-04-10 04:18:12 +05:30
|
|
|
fpc = concat_path_file(
|
|
|
|
install_dir[applets[i].location], applets[i].name);
|
|
|
|
rc = Link(busybox, fpc);
|
|
|
|
if (rc!=0 && errno!=EEXIST) {
|
|
|
|
perror_msg("%s", fpc);
|
2000-06-27 10:20:02 +05:30
|
|
|
}
|
2001-04-10 04:18:12 +05:30
|
|
|
free(fpc);
|
2000-06-28 06:25:31 +05:30
|
|
|
}
|
2000-06-27 10:20:02 +05:30
|
|
|
}
|
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#endif /* CONFIG_FEATURE_INSTALLER */
|
2000-06-27 10:20:02 +05:30
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2001-02-02 00:51:20 +05:30
|
|
|
const char *s;
|
2000-06-27 10:20:02 +05:30
|
|
|
|
2001-08-27 20:32:32 +05:30
|
|
|
applet_name = argv[0];
|
|
|
|
|
|
|
|
if (applet_name[0] == '-')
|
|
|
|
applet_name++;
|
|
|
|
|
|
|
|
for (s = applet_name; *s != '\0';) {
|
2000-02-09 01:28:47 +05:30
|
|
|
if (*s++ == '/')
|
2000-07-12 01:33:24 +05:30
|
|
|
applet_name = s;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_LOCALE_SUPPORT
|
|
|
|
#ifdef CONFIG_INIT
|
2001-04-10 04:18:12 +05:30
|
|
|
if(getpid()!=1) /* Do not set locale for `init' */
|
2001-05-13 06:03:16 +05:30
|
|
|
#endif
|
|
|
|
{
|
2001-04-10 04:18:12 +05:30
|
|
|
setlocale(LC_ALL, "");
|
2001-05-13 06:03:16 +05:30
|
|
|
}
|
2001-04-10 04:18:12 +05:30
|
|
|
#endif
|
|
|
|
|
2001-02-15 02:53:06 +05:30
|
|
|
run_applet_by_name(applet_name, argc, argv);
|
2001-02-01 00:30:21 +05:30
|
|
|
error_msg_and_die("applet not found");
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int busybox_main(int argc, char **argv)
|
|
|
|
{
|
2000-12-15 06:05:22 +05:30
|
|
|
int col = 0, len, i;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_INSTALLER
|
2001-01-25 05:04:48 +05:30
|
|
|
/*
|
|
|
|
* This style of argument parsing doesn't scale well
|
|
|
|
* in the event that busybox starts wanting more --options.
|
|
|
|
* If someone has a cleaner approach, by all means implement it.
|
|
|
|
*/
|
|
|
|
if (argc > 1 && (strcmp(argv[1], "--install") == 0)) {
|
|
|
|
int use_symbolic_links = 0;
|
|
|
|
int rc = 0;
|
|
|
|
char *busybox;
|
|
|
|
|
|
|
|
/* to use symlinks, or not to use symlinks... */
|
|
|
|
if (argc > 2) {
|
|
|
|
if ((strcmp(argv[2], "-s") == 0)) {
|
|
|
|
use_symbolic_links = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* link */
|
|
|
|
busybox = busybox_fullpath();
|
|
|
|
if (busybox) {
|
|
|
|
install_links(busybox, use_symbolic_links);
|
|
|
|
free(busybox);
|
|
|
|
} else {
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
2001-10-24 10:30:29 +05:30
|
|
|
#endif /* CONFIG_FEATURE_INSTALLER */
|
2001-01-25 05:04:48 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
argc--;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-12-09 00:33:12 +05:30
|
|
|
/* If we've already been here once, exit now */
|
2000-02-09 01:28:47 +05:30
|
|
|
if (been_there_done_that == 1 || argc < 1) {
|
2000-05-13 12:03:19 +05:30
|
|
|
const struct BB_applet *a = applets;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2000-07-18 05:15:12 +05:30
|
|
|
fprintf(stderr, "%s\n\n"
|
2000-05-19 11:05:19 +05:30
|
|
|
"Usage: busybox [function] [arguments]...\n"
|
|
|
|
" or: [function] [arguments]...\n\n"
|
2000-04-13 09:06:01 +05:30
|
|
|
"\tBusyBox is a multi-call binary that combines many common Unix\n"
|
|
|
|
"\tutilities into a single executable. Most people will create a\n"
|
|
|
|
"\tlink to busybox for each function they wish to use, and BusyBox\n"
|
2000-05-19 11:05:19 +05:30
|
|
|
"\twill act like whatever it was invoked as.\n"
|
2000-07-18 05:15:12 +05:30
|
|
|
"\nCurrently defined functions:\n", full_version);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
while (a->name != 0) {
|
|
|
|
col +=
|
|
|
|
fprintf(stderr, "%s%s", ((col == 0) ? "\t" : ", "),
|
|
|
|
(a++)->name);
|
|
|
|
if (col > 60 && a->name != 0) {
|
|
|
|
fprintf(stderr, ",\n");
|
|
|
|
col = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n\n");
|
2001-03-02 23:17:17 +05:30
|
|
|
exit(0);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-12-09 00:33:12 +05:30
|
|
|
|
|
|
|
/* Flag that we've been here already */
|
2000-06-19 22:55:40 +05:30
|
|
|
been_there_done_that = 1;
|
2000-12-09 00:33:12 +05:30
|
|
|
|
2000-12-15 06:05:22 +05:30
|
|
|
/* Move the command line down a notch */
|
|
|
|
len = argv[argc] + strlen(argv[argc]) - argv[1];
|
|
|
|
memmove(argv[0], argv[1], len);
|
|
|
|
memset(argv[0] + len, 0, argv[1] - argv[0]);
|
|
|
|
|
|
|
|
/* Fix up the argv pointers */
|
|
|
|
len = argv[1] - argv[0];
|
2001-01-27 14:02:57 +05:30
|
|
|
memmove(argv, argv + 1, sizeof(char *) * (argc + 1));
|
2000-12-15 06:05:22 +05:30
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
argv[i] -= len;
|
2000-12-09 00:33:12 +05:30
|
|
|
|
2000-06-19 22:55:40 +05:30
|
|
|
return (main(argc, argv));
|
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:
|
|
|
|
*/
|