2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2001-01-27 08:32:57 +00:00
|
|
|
#include <unistd.h>
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <errno.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdlib.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_LOCALE_SUPPORT
|
2001-04-09 22:48:12 +00:00
|
|
|
#include <locale.h>
|
|
|
|
#endif
|
|
|
|
|
2001-04-03 17:05:01 +00:00
|
|
|
int been_there_done_that = 0; /* Also used in applets.c */
|
2000-07-28 15:14:45 +00:00
|
|
|
const char *applet_name;
|
2000-01-13 04:43:48 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_FEATURE_INSTALLER
|
2000-06-27 04:50:02 +00:00
|
|
|
/*
|
|
|
|
* directory table
|
2000-09-25 21:45:58 +00:00
|
|
|
* this should be consistent w/ the enum, busybox.h::Location,
|
2000-06-28 00:55:31 +00:00
|
|
|
* or else...
|
2000-06-27 04:50:02 +00:00
|
|
|
*/
|
|
|
|
static char* install_dir[] = {
|
2000-06-28 00:55:31 +00:00
|
|
|
"/",
|
|
|
|
"/bin",
|
|
|
|
"/sbin",
|
|
|
|
"/usr/bin",
|
|
|
|
"/usr/sbin",
|
2000-06-27 04:50:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* abstract link() */
|
|
|
|
typedef int (*__link_f)(const char *, const char *);
|
|
|
|
|
2000-06-28 00:41:26 +00:00
|
|
|
/*
|
|
|
|
* Where in the filesystem is this busybox?
|
|
|
|
* [return]
|
|
|
|
* malloc'd string w/ full pathname of busybox's location
|
|
|
|
* NULL on failure
|
|
|
|
*/
|
2001-12-18 14:06:03 +00:00
|
|
|
static char *busybox_fullpath(void)
|
2000-06-28 00:41:26 +00:00
|
|
|
{
|
2001-05-07 17:48:28 +00:00
|
|
|
return xreadlink("/proc/self/exe");
|
2000-06-28 00:41:26 +00:00
|
|
|
}
|
|
|
|
|
2000-06-27 04:50:02 +00:00
|
|
|
/* create (sym)links for each applet */
|
2000-09-25 20:35:54 +00:00
|
|
|
static void install_links(const char *busybox, int use_symbolic_links)
|
2000-06-27 04:50:02 +00:00
|
|
|
{
|
2000-06-28 00:55:31 +00:00
|
|
|
__link_f Link = link;
|
2000-06-27 04:50:02 +00:00
|
|
|
|
2001-04-09 22:48:12 +00:00
|
|
|
char *fpc;
|
2000-06-28 00:55:31 +00:00
|
|
|
int i;
|
2000-09-25 20:35:54 +00:00
|
|
|
int rc;
|
2000-06-27 04:50:02 +00:00
|
|
|
|
2001-01-27 08:32:57 +00:00
|
|
|
if (use_symbolic_links)
|
|
|
|
Link = symlink;
|
2000-06-27 04:50:02 +00:00
|
|
|
|
2000-06-28 00:55:31 +00:00
|
|
|
for (i = 0; applets[i].name != NULL; i++) {
|
2001-04-09 22:48:12 +00:00
|
|
|
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 04:50:02 +00:00
|
|
|
}
|
2001-04-09 22:48:12 +00:00
|
|
|
free(fpc);
|
2000-06-28 00:55:31 +00:00
|
|
|
}
|
2000-06-27 04:50:02 +00:00
|
|
|
}
|
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
#endif /* CONFIG_FEATURE_INSTALLER */
|
2000-06-27 04:50:02 +00:00
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2001-02-01 19:21:20 +00:00
|
|
|
const char *s;
|
2000-06-27 04:50:02 +00:00
|
|
|
|
2001-08-27 15:02:32 +00:00
|
|
|
applet_name = argv[0];
|
|
|
|
|
|
|
|
if (applet_name[0] == '-')
|
|
|
|
applet_name++;
|
|
|
|
|
|
|
|
for (s = applet_name; *s != '\0';) {
|
2000-02-08 19:58:47 +00:00
|
|
|
if (*s++ == '/')
|
2000-07-11 20:03:24 +00:00
|
|
|
applet_name = s;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_LOCALE_SUPPORT
|
|
|
|
#ifdef CONFIG_INIT
|
2001-04-09 22:48:12 +00:00
|
|
|
if(getpid()!=1) /* Do not set locale for `init' */
|
2001-05-13 00:33:16 +00:00
|
|
|
#endif
|
|
|
|
{
|
2001-04-09 22:48:12 +00:00
|
|
|
setlocale(LC_ALL, "");
|
2001-05-13 00:33:16 +00:00
|
|
|
}
|
2001-04-09 22:48:12 +00:00
|
|
|
#endif
|
|
|
|
|
2001-02-14 21:23:06 +00:00
|
|
|
run_applet_by_name(applet_name, argc, argv);
|
2001-01-31 19:00:21 +00:00
|
|
|
error_msg_and_die("applet not found");
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int busybox_main(int argc, char **argv)
|
|
|
|
{
|
2000-12-15 00:35:22 +00:00
|
|
|
int col = 0, len, i;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
#ifdef CONFIG_FEATURE_INSTALLER
|
2001-01-24 23:34:48 +00:00
|
|
|
/*
|
|
|
|
* 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 05:00:29 +00:00
|
|
|
#endif /* CONFIG_FEATURE_INSTALLER */
|
2001-01-24 23:34:48 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
argc--;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-12-08 19:03:12 +00:00
|
|
|
/* If we've already been here once, exit now */
|
2000-02-08 19:58:47 +00:00
|
|
|
if (been_there_done_that == 1 || argc < 1) {
|
2000-05-13 06:33:19 +00:00
|
|
|
const struct BB_applet *a = applets;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2000-07-17 23:45:12 +00:00
|
|
|
fprintf(stderr, "%s\n\n"
|
2000-05-19 05:35:19 +00:00
|
|
|
"Usage: busybox [function] [arguments]...\n"
|
|
|
|
" or: [function] [arguments]...\n\n"
|
2000-04-13 03:36:01 +00:00
|
|
|
"\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 05:35:19 +00:00
|
|
|
"\twill act like whatever it was invoked as.\n"
|
2000-07-17 23:45:12 +00:00
|
|
|
"\nCurrently defined functions:\n", full_version);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
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 17:47:17 +00:00
|
|
|
exit(0);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2000-12-08 19:03:12 +00:00
|
|
|
|
|
|
|
/* Flag that we've been here already */
|
2000-06-19 17:25:40 +00:00
|
|
|
been_there_done_that = 1;
|
2000-12-08 19:03:12 +00:00
|
|
|
|
2000-12-15 00:35:22 +00:00
|
|
|
/* 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 08:32:57 +00:00
|
|
|
memmove(argv, argv + 1, sizeof(char *) * (argc + 1));
|
2000-12-15 00:35:22 +00:00
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
argv[i] -= len;
|
2000-12-08 19:03:12 +00:00
|
|
|
|
2000-06-19 17:25:40 +00:00
|
|
|
return (main(argc, argv));
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2000-03-04 21:19:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|