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"
|
2005-09-05 09:43:33 +05:30
|
|
|
#if ENABLE_LOCALE_SUPPORT
|
2001-04-10 04:18:12 +05:30
|
|
|
#include <locale.h>
|
2005-09-05 09:43:33 +05:30
|
|
|
#else
|
|
|
|
#define setlocale(x,y)
|
2001-04-10 04:18:12 +05:30
|
|
|
#endif
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
const char *bb_applet_name;
|
2000-01-13 10:13:48 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_INSTALLER
|
2004-03-15 13:59:22 +05:30
|
|
|
/*
|
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 *);
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
if (use_symbolic_links)
|
2001-01-27 14:02:57 +05:30
|
|
|
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) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_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
|
|
|
}
|
|
|
|
|
2005-09-05 09:43:33 +05:30
|
|
|
#else
|
|
|
|
#define install_links(x,y)
|
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
|
|
|
|
2005-09-04 16:40:37 +05:30
|
|
|
bb_applet_name=argv[0];
|
|
|
|
if (*bb_applet_name == '-') bb_applet_name++;
|
|
|
|
for (s = bb_applet_name; *s ;)
|
|
|
|
if (*(s++) == '/') bb_applet_name = s;
|
2001-08-27 20:32:32 +05:30
|
|
|
|
2005-09-04 16:40:37 +05:30
|
|
|
/* Set locale for everybody except `init' */
|
|
|
|
if(ENABLE_LOCALE_SUPPORT && (!ENABLE_INIT || getpid()==1))
|
2001-04-10 04:18:12 +05:30
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
run_applet_by_name(bb_applet_name, argc, argv);
|
|
|
|
bb_error_msg_and_die("applet not found");
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int busybox_main(int argc, char **argv)
|
|
|
|
{
|
2004-03-15 13:59:22 +05:30
|
|
|
/*
|
|
|
|
* This style of argument parsing doesn't scale well
|
2001-01-25 05:04:48 +05:30
|
|
|
* in the event that busybox starts wanting more --options.
|
|
|
|
* If someone has a cleaner approach, by all means implement it.
|
|
|
|
*/
|
2005-09-04 16:40:37 +05:30
|
|
|
if (ENABLE_FEATURE_INSTALLER && argc > 1 && !strcmp(argv[1], "--install")) {
|
2001-01-25 05:04:48 +05:30
|
|
|
int use_symbolic_links = 0;
|
|
|
|
int rc = 0;
|
|
|
|
char *busybox;
|
|
|
|
|
|
|
|
/* to use symlinks, or not to use symlinks... */
|
|
|
|
if (argc > 2) {
|
2004-03-15 13:59:22 +05:30
|
|
|
if ((strcmp(argv[2], "-s") == 0)) {
|
|
|
|
use_symbolic_links = 1;
|
2001-01-25 05:04:48 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* link */
|
2005-09-04 16:40:37 +05:30
|
|
|
busybox = xreadlink("/proc/self/exe");
|
2001-01-25 05:04:48 +05:30
|
|
|
if (busybox) {
|
|
|
|
install_links(busybox, use_symbolic_links);
|
|
|
|
free(busybox);
|
|
|
|
} else {
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2005-09-04 16:40:37 +05:30
|
|
|
/* Deal with --help. (Also print help when called with no arguments) */
|
|
|
|
|
|
|
|
if (argc==1 || !strcmp(argv[1],"--help") ) {
|
2005-09-05 16:55:27 +05:30
|
|
|
if (argc>2) {
|
|
|
|
run_applet_by_name(bb_applet_name=argv[2], 2, argv);
|
|
|
|
} else {
|
2005-09-04 16:40:37 +05:30
|
|
|
const struct BB_applet *a;
|
|
|
|
int col, output_width;
|
|
|
|
|
|
|
|
if (ENABLE_FEATURE_AUTOWIDTH) {
|
|
|
|
/* Obtain the terminal width. */
|
|
|
|
get_terminal_width_height(0, &output_width, NULL);
|
|
|
|
/* leading tab and room to wrap */
|
|
|
|
output_width -= 20;
|
|
|
|
} else output_width = 60;
|
|
|
|
|
|
|
|
printf("%s\n\n"
|
|
|
|
"Usage: busybox [function] [arguments]...\n"
|
|
|
|
" or: [function] [arguments]...\n\n"
|
|
|
|
"\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"
|
|
|
|
"\twill act like whatever it was invoked as!\n"
|
|
|
|
"\nCurrently defined functions:\n", bb_msg_full_version);
|
|
|
|
|
|
|
|
col=0;
|
|
|
|
for(a = applets; a->name;) {
|
|
|
|
col += printf("%s%s", (col ? ", " : "\t"), (a++)->name);
|
|
|
|
if (col > output_width && a->name) {
|
|
|
|
printf(",\n");
|
|
|
|
col = 0;
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2005-09-04 16:40:37 +05:30
|
|
|
printf("\n\n");
|
|
|
|
exit(0);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2005-09-04 16:40:37 +05:30
|
|
|
} else run_applet_by_name(bb_applet_name=argv[1], argc-1, argv+1);
|
|
|
|
|
|
|
|
bb_error_msg_and_die("applet not found");
|
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:
|
|
|
|
*/
|