2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-25 21:45:58 +00:00
|
|
|
#include "busybox.h"
|
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>
|
2000-11-30 00:27:06 +00:00
|
|
|
|
|
|
|
#undef APPLET
|
|
|
|
#undef APPLET_NOUSAGE
|
|
|
|
#undef PROTOTYPES
|
2000-10-25 00:28:27 +00:00
|
|
|
#include "applets.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-07-17 23:45:12 +00:00
|
|
|
#define bb_need_full_version
|
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#include "messages.c"
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
static int been_there_done_that = 0;
|
2000-07-28 15:14:45 +00:00
|
|
|
const char *applet_name;
|
2000-01-13 04:43:48 +00:00
|
|
|
|
2000-06-27 04:50:02 +00:00
|
|
|
#ifdef BB_FEATURE_INSTALLER
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
static char *busybox_fullpath()
|
|
|
|
{
|
2000-06-28 00:55:31 +00:00
|
|
|
pid_t pid;
|
|
|
|
char path[256];
|
|
|
|
char proc[256];
|
|
|
|
int len;
|
2000-06-28 00:41:26 +00:00
|
|
|
|
|
|
|
pid = getpid();
|
|
|
|
sprintf(proc, "/proc/%d/exe", pid);
|
|
|
|
len = readlink(proc, path, 256);
|
|
|
|
if (len != -1) {
|
|
|
|
path[len] = 0;
|
|
|
|
} else {
|
2000-12-18 03:57:16 +00:00
|
|
|
perror_msg("%s", proc);
|
2000-06-28 00:41:26 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return strdup(path);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2000-06-28 00:55:31 +00:00
|
|
|
char command[256];
|
|
|
|
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++) {
|
2000-09-25 20:35:54 +00:00
|
|
|
sprintf ( command, "%s/%s",
|
2001-01-27 08:32:57 +00:00
|
|
|
install_dir[applets[i].location], applets[i].name);
|
2000-09-25 20:35:54 +00:00
|
|
|
rc = Link(busybox, command);
|
|
|
|
|
2000-06-27 04:50:02 +00:00
|
|
|
if (rc) {
|
2000-12-18 03:57:16 +00:00
|
|
|
perror_msg("%s", command);
|
2000-06-27 04:50:02 +00:00
|
|
|
}
|
2000-06-28 00:55:31 +00:00
|
|
|
}
|
2000-06-27 04:50:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* BB_FEATURE_INSTALLER */
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2001-02-01 19:21:20 +00:00
|
|
|
struct BB_applet *applet;
|
|
|
|
const char *s;
|
2000-06-27 04:50:02 +00:00
|
|
|
|
2000-07-11 20:03:24 +00:00
|
|
|
for (s = applet_name = argv[0]; *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
|
|
|
|
2000-06-29 20:20:14 +00:00
|
|
|
#ifdef BB_SH
|
|
|
|
/* Add in a special case hack -- whenever **argv == '-'
|
|
|
|
* (i.e. '-su' or '-sh') always invoke the shell */
|
2000-07-21 21:32:12 +00:00
|
|
|
if (**argv == '-' && *(*argv+1)!= '-') {
|
2000-06-29 20:20:14 +00:00
|
|
|
exit(((*(shell_main)) (argc, argv)));
|
2000-07-21 21:32:12 +00:00
|
|
|
}
|
2000-06-29 20:20:14 +00:00
|
|
|
#endif
|
|
|
|
|
2000-10-25 00:28:27 +00:00
|
|
|
/* Do a binary search to find the applet entry given the name. */
|
2001-02-01 19:21:20 +00:00
|
|
|
if ((applet = find_applet_by_name(applet_name)) != NULL) {
|
2000-10-25 19:05:38 +00:00
|
|
|
if (applet->usage && argv[1] && strcmp(argv[1], "--help") == 0)
|
2001-02-01 19:21:20 +00:00
|
|
|
usage(applet->usage);
|
2000-10-25 19:00:51 +00:00
|
|
|
exit((*(applet->main)) (argc, argv));
|
2000-10-25 19:05:38 +00:00
|
|
|
}
|
2000-10-25 00:28:27 +00:00
|
|
|
|
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-01-24 23:34:48 +00:00
|
|
|
#ifdef BB_FEATURE_INSTALLER
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
#endif /* BB_FEATURE_INSTALLER */
|
|
|
|
|
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");
|
|
|
|
exit(-1);
|
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:
|
|
|
|
*/
|