2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2000-11-30 05:57:06 +05:30
|
|
|
|
|
|
|
#undef APPLET
|
|
|
|
#undef APPLET_NOUSAGE
|
|
|
|
#undef PROTOTYPES
|
2000-10-25 05:58:27 +05:30
|
|
|
#include "applets.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-07-18 05:15:12 +05:30
|
|
|
#define bb_need_full_version
|
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#include "messages.c"
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
static int been_there_done_that = 0;
|
|
|
|
|
|
|
|
|
2000-07-28 20:44:45 +05:30
|
|
|
const char *applet_name;
|
2000-01-13 10:13:48 +05:30
|
|
|
|
2000-06-27 10:20:02 +05:30
|
|
|
#ifdef BB_FEATURE_INSTALLER
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
static char* install_dir[] = {
|
2000-06-28 06:25:31 +05:30
|
|
|
"/",
|
|
|
|
"/bin",
|
|
|
|
"/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
|
|
|
|
*/
|
|
|
|
static char *busybox_fullpath()
|
|
|
|
{
|
2000-06-28 06:25:31 +05:30
|
|
|
pid_t pid;
|
|
|
|
char path[256];
|
|
|
|
char proc[256];
|
|
|
|
int len;
|
2000-06-28 06:11:26 +05:30
|
|
|
|
|
|
|
pid = getpid();
|
|
|
|
sprintf(proc, "/proc/%d/exe", pid);
|
|
|
|
len = readlink(proc, path, 256);
|
|
|
|
if (len != -1) {
|
|
|
|
path[len] = 0;
|
|
|
|
} else {
|
2000-12-08 01:26:48 +05:30
|
|
|
error_msg("%s: %s\n", proc, strerror(errno));
|
2000-06-28 06:11:26 +05:30
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return strdup(path);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2000-06-28 06:25:31 +05:30
|
|
|
char command[256];
|
|
|
|
int i;
|
2000-09-26 02:05:54 +05:30
|
|
|
int rc;
|
2000-06-27 10:20:02 +05:30
|
|
|
|
|
|
|
if (use_symbolic_links) Link = symlink;
|
|
|
|
|
2000-06-28 06:25:31 +05:30
|
|
|
for (i = 0; applets[i].name != NULL; i++) {
|
2000-09-26 02:05:54 +05:30
|
|
|
sprintf ( command, "%s/%s",
|
|
|
|
install_dir[applets[i].location],
|
|
|
|
applets[i].name);
|
|
|
|
rc = Link(busybox, command);
|
|
|
|
|
2000-06-27 10:20:02 +05:30
|
|
|
if (rc) {
|
2000-12-08 01:26:48 +05:30
|
|
|
error_msg("%s: %s\n", command, strerror(errno));
|
2000-06-27 10:20:02 +05:30
|
|
|
}
|
2000-06-28 06:25:31 +05:30
|
|
|
}
|
2000-06-27 10:20:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* BB_FEATURE_INSTALLER */
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2000-10-26 00:30:51 +05:30
|
|
|
struct BB_applet search_applet, *applet;
|
2000-07-28 20:44:45 +05:30
|
|
|
const char *s;
|
2000-07-14 07:21:25 +05:30
|
|
|
applet_name = "busybox";
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-06-27 10:20:02 +05:30
|
|
|
#ifdef BB_FEATURE_INSTALLER
|
2000-06-27 10:26:45 +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.
|
|
|
|
*/
|
2000-06-27 10:20:02 +05:30
|
|
|
if (argc > 1 && (strcmp(argv[1], "--install") == 0)) {
|
|
|
|
int use_symbolic_links = 0;
|
2000-06-28 06:11:26 +05:30
|
|
|
int rc = 0;
|
|
|
|
char *busybox;
|
2000-06-27 10:20:02 +05:30
|
|
|
|
2000-06-27 10:26:45 +05:30
|
|
|
/* to use symlinks, or not to use symlinks... */
|
2000-06-27 10:20:02 +05:30
|
|
|
if (argc > 2) {
|
|
|
|
if ((strcmp(argv[2], "-s") == 0)) {
|
|
|
|
use_symbolic_links = 1;
|
|
|
|
}
|
|
|
|
}
|
2000-06-28 06:11:26 +05:30
|
|
|
|
|
|
|
/* link */
|
|
|
|
busybox = busybox_fullpath();
|
|
|
|
if (busybox) {
|
|
|
|
install_links(busybox, use_symbolic_links);
|
|
|
|
free(busybox);
|
|
|
|
} else {
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
return rc;
|
2000-06-27 10:20:02 +05:30
|
|
|
}
|
|
|
|
#endif /* BB_FEATURE_INSTALLER */
|
|
|
|
|
2000-07-12 01:33:24 +05:30
|
|
|
for (s = applet_name = argv[0]; *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
|
|
|
|
2000-06-30 01:50:14 +05:30
|
|
|
#ifdef BB_SH
|
|
|
|
/* Add in a special case hack -- whenever **argv == '-'
|
|
|
|
* (i.e. '-su' or '-sh') always invoke the shell */
|
2000-07-22 03:02:12 +05:30
|
|
|
if (**argv == '-' && *(*argv+1)!= '-') {
|
2000-06-30 01:50:14 +05:30
|
|
|
exit(((*(shell_main)) (argc, argv)));
|
2000-07-22 03:02:12 +05:30
|
|
|
}
|
2000-06-30 01:50:14 +05:30
|
|
|
#endif
|
|
|
|
|
2000-10-25 05:58:27 +05:30
|
|
|
/* Do a binary search to find the applet entry given the name. */
|
2000-10-26 00:30:51 +05:30
|
|
|
search_applet.name = applet_name;
|
|
|
|
applet = bsearch(&search_applet, applets, NUM_APPLETS,
|
|
|
|
sizeof(struct BB_applet), applet_name_compare);
|
2000-10-26 00:35:38 +05:30
|
|
|
if (applet != NULL) {
|
|
|
|
if (applet->usage && argv[1] && strcmp(argv[1], "--help") == 0)
|
|
|
|
usage(applet->usage);
|
2000-10-26 00:30:51 +05:30
|
|
|
exit((*(applet->main)) (argc, argv));
|
2000-10-26 00:35:38 +05:30
|
|
|
}
|
2000-10-25 05:58:27 +05:30
|
|
|
|
2000-06-19 22:55:40 +05:30
|
|
|
return(busybox_main(argc, argv));
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int busybox_main(int argc, char **argv)
|
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
int col = 0;
|
2000-12-09 00:33:12 +05:30
|
|
|
int ps_index;
|
|
|
|
char *index, *index2;
|
1999-10-05 21:54:54 +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");
|
|
|
|
exit(-1);
|
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
|
|
|
|
|
|
|
/* We do not want the word "busybox" to show up in ps, so we move
|
|
|
|
* everything in argv around to fake ps into showing what we want it to
|
|
|
|
* show. Since we are only shrinking the string, we don't need to move
|
|
|
|
* __environ or any of that tedious stuff... */
|
|
|
|
ps_index = 0;
|
|
|
|
index=*argv;
|
|
|
|
index2=argv[argc];
|
|
|
|
index2+=strlen(argv[argc]);
|
|
|
|
while(ps_index < argc) {
|
|
|
|
argv[ps_index]=index;
|
|
|
|
memmove(index, argv[ps_index+1], strlen(argv[ps_index+1])+1);
|
|
|
|
index+=(strlen(index));
|
|
|
|
*index='\0';
|
|
|
|
index++;
|
|
|
|
ps_index++;
|
|
|
|
}
|
|
|
|
while(index<=index2)
|
|
|
|
*index++='\0';
|
2000-12-09 05:49:30 +05:30
|
|
|
argv[ps_index]=NULL;
|
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:
|
|
|
|
*/
|