hush/busybox.c

411 lines
9.3 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-05 16:24:54 +00:00
#include "internal.h"
#include <stdio.h>
#include <string.h>
#include <errno.h>
static int been_there_done_that = 0;
/* It has been alledged that doing such things can
* help reduce binary size when staticly linking,
* of course with glibc, this is unlikely as long
* as we use things like printf -- perhaps a printf
* replacement may be in order
*/
2000-01-13 04:43:48 +00:00
#if 0
void exit(int status) __attribute__ ((noreturn));
void exit(int status)
{
_exit(status);
};
void abort(void) __attribute__ ((__noreturn__));
void abort(void)
{
_exit(0);
};
int atexit(void (*__func) (void))
{
_exit(0);
};
2000-01-13 04:43:48 +00:00
void *__libc_stack_end;
#endif
1999-10-05 16:24:54 +00:00
static const struct Applet applets[] = {
2000-02-18 21:34:17 +00:00
#ifdef BB_BASENAME //usr/bin/basename
2000-03-16 08:09:09 +00:00
{"basename", basename_main, _BB_DIR_USR_BIN},
2000-02-18 21:34:17 +00:00
#endif
#ifdef BB_BUSYBOX //bin
2000-03-16 08:09:09 +00:00
{"busybox", busybox_main, _BB_DIR_BIN},
#endif
#ifdef BB_BLOCK_DEVICE //sbin
2000-03-16 08:09:09 +00:00
{"block_device", block_device_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_CAT //bin
2000-03-16 08:09:09 +00:00
{"cat", cat_main, _BB_DIR_BIN},
#endif
#ifdef BB_CHMOD_CHOWN_CHGRP //bin
{"chmod", chmod_chown_chgrp_main, _BB_DIR_BIN},
#endif
#ifdef BB_CHMOD_CHOWN_CHGRP //bin
{"chown", chmod_chown_chgrp_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_CHMOD_CHOWN_CHGRP //bin
2000-03-16 08:09:09 +00:00
{"chgrp", chmod_chown_chgrp_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_CHROOT //sbin
2000-03-16 08:09:09 +00:00
{"chroot", chroot_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_CLEAR //usr/bin
2000-03-16 08:09:09 +00:00
{"clear", clear_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_CHVT //usr/bin
2000-03-16 08:09:09 +00:00
{"chvt", chvt_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_CP_MV //bin
2000-03-16 08:09:09 +00:00
{"cp", cp_mv_main, _BB_DIR_BIN},
#endif
#ifdef BB_CP_MV //bin
{"mv", cp_mv_main, _BB_DIR_BIN},
1999-12-08 23:19:36 +00:00
#endif
#ifdef BB_DATE //bin
2000-03-16 08:09:09 +00:00
{"date", date_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_DD //bin
2000-03-16 08:09:09 +00:00
{"dd", dd_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_DF //bin
2000-03-16 08:09:09 +00:00
{"df", df_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
2000-03-05 08:07:00 +00:00
#ifdef BB_DIRNAME //usr/bin
2000-03-16 08:09:09 +00:00
{"dirname", dirname_main, _BB_DIR_USR_BIN},
2000-03-05 08:07:00 +00:00
#endif
#ifdef BB_DMESG //bin
2000-03-16 08:09:09 +00:00
{"dmesg", dmesg_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_DU //bin
2000-03-16 08:09:09 +00:00
{"du", du_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_DUTMP //usr/sbin
2000-03-16 08:09:09 +00:00
{"dutmp", dutmp_main, _BB_DIR_USR_SBIN},
#endif
#ifdef BB_ECHO //bin
{"echo", echo_main, _BB_DIR_BIN},
1999-12-09 18:29:29 +00:00
#endif
#ifdef BB_FBSET //usr/sbin
2000-03-16 08:09:09 +00:00
{"fbset", fbset_main, _BB_DIR_USR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_FDFLUSH //bin
2000-03-16 08:09:09 +00:00
{"fdflush", fdflush_main, _BB_DIR_BIN},
#endif
#ifdef BB_FIND //usr/bin
2000-03-16 08:09:09 +00:00
{"find", find_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_FREE //usr/bin
2000-03-16 08:09:09 +00:00
{"free", free_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_FREERAMDISK //sbin
2000-03-16 08:09:09 +00:00
{"freeramdisk", freeramdisk_main, _BB_DIR_SBIN},
#endif
#ifdef BB_DEALLOCVT //usr/bin
2000-03-16 08:09:09 +00:00
{"deallocvt", deallocvt_main, _BB_DIR_USR_BIN},
1999-10-25 23:32:44 +00:00
#endif
#ifdef BB_FSCK_MINIX //sbin
2000-03-16 08:09:09 +00:00
{"fsck.minix", fsck_minix_main, _BB_DIR_SBIN},
1999-10-25 23:32:44 +00:00
#endif
#ifdef BB_MKFS_MINIX //sbin
2000-03-16 08:09:09 +00:00
{"mkfs.minix", mkfs_minix_main, _BB_DIR_SBIN},
1999-10-19 20:23:03 +00:00
#endif
#ifdef BB_GREP //bin
2000-03-16 08:09:09 +00:00
{"grep", grep_main, _BB_DIR_BIN},
1999-10-19 20:23:03 +00:00
#endif
#ifdef BB_HALT //sbin
2000-03-16 08:09:09 +00:00
{"halt", halt_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_HEAD //bin
2000-03-16 08:09:09 +00:00
{"head", head_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_HOSTID //usr/bin
2000-03-16 08:09:09 +00:00
{"hostid", hostid_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_HOSTNAME //bin
2000-03-16 08:09:09 +00:00
{"hostname", hostname_main, _BB_DIR_BIN},
#endif
#ifdef BB_INIT //sbin
2000-03-16 08:09:09 +00:00
{"init", init_main, _BB_DIR_SBIN},
1999-12-07 23:14:59 +00:00
#endif
#ifdef BB_INSMOD //sbin
2000-03-16 08:09:09 +00:00
{"insmod", insmod_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_FEATURE_LINUXRC //
2000-03-16 08:09:09 +00:00
{"linuxrc", init_main, _BB_DIR_ROOT},
#endif
#ifdef BB_KILL //bin
2000-03-16 08:09:09 +00:00
{"kill", kill_main, _BB_DIR_BIN},
1999-11-19 05:31:45 +00:00
#endif
#ifdef BB_KILLALL //usr/bin
2000-03-16 08:09:09 +00:00
{"killall", kill_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_LENGTH //usr/bin
2000-03-16 08:09:09 +00:00
{"length", length_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_LN //bin
2000-03-16 08:09:09 +00:00
{"ln", ln_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_LOADACM //usr/bin
2000-03-16 08:09:09 +00:00
{"loadacm", loadacm_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_LOADFONT //usr/bin
2000-03-16 08:09:09 +00:00
{"loadfont", loadfont_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_LOADKMAP //sbin
2000-03-16 08:09:09 +00:00
{"loadkmap", loadkmap_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_LS //bin
2000-03-16 08:09:09 +00:00
{"ls", ls_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_LSMOD //sbin
2000-03-16 08:09:09 +00:00
{"lsmod", lsmod_main, _BB_DIR_SBIN},
1999-12-15 22:14:12 +00:00
#endif
#ifdef BB_MAKEDEVS //sbin
2000-03-16 08:09:09 +00:00
{"makedevs", makedevs_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MATH //usr/bin
2000-03-16 08:09:09 +00:00
{"math", math_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MKDIR //bin
2000-03-16 08:09:09 +00:00
{"mkdir", mkdir_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MKFIFO //usr/bin
2000-03-16 08:09:09 +00:00
{"mkfifo", mkfifo_main, _BB_DIR_USR_BIN},
1999-12-11 08:41:28 +00:00
#endif
#ifdef BB_MKNOD //bin
2000-03-16 08:09:09 +00:00
{"mknod", mknod_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MKSWAP //sbin
2000-03-16 08:09:09 +00:00
{"mkswap", mkswap_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MNC //usr/bin
2000-03-16 08:09:09 +00:00
{"mnc", mnc_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MORE //bin
2000-03-16 08:09:09 +00:00
{"more", more_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MOUNT //bin
2000-03-16 08:09:09 +00:00
{"mount", mount_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_MT //bin
2000-03-16 08:09:09 +00:00
{"mt", mt_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_NSLOOKUP //usr/bin
2000-03-16 08:09:09 +00:00
{"nslookup", nslookup_main, _BB_DIR_USR_BIN},
2000-01-29 12:59:01 +00:00
#endif
#ifdef BB_PING //bin
2000-03-16 08:09:09 +00:00
{"ping", ping_main, _BB_DIR_BIN},
1999-12-07 23:14:59 +00:00
#endif
#ifdef BB_POWEROFF //sbin
2000-03-16 08:09:09 +00:00
{"poweroff", poweroff_main, _BB_DIR_SBIN},
#endif
#ifdef BB_PRINTF //usr/bin
2000-03-16 08:09:09 +00:00
{"printf", printf_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_PS //bin
2000-03-16 08:09:09 +00:00
{"ps", ps_main, _BB_DIR_BIN},
1999-10-20 08:05:35 +00:00
#endif
#ifdef BB_PWD //bin
2000-03-16 08:09:09 +00:00
{"pwd", pwd_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_REBOOT //sbin
2000-03-16 08:09:09 +00:00
{"reboot", reboot_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_RM //bin
2000-03-16 08:09:09 +00:00
{"rm", rm_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_RMDIR //bin
2000-03-16 08:09:09 +00:00
{"rmdir", rmdir_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_RMMOD //sbin
2000-03-16 08:09:09 +00:00
{"rmmod", rmmod_main, _BB_DIR_SBIN},
1999-12-16 23:04:20 +00:00
#endif
#ifdef BB_SED //bin
2000-03-16 08:09:09 +00:00
{"sed", sed_main, _BB_DIR_BIN},
#endif
#ifdef BB_SH //bin
2000-03-16 08:09:09 +00:00
{"sh", shell_main, _BB_DIR_BIN},
#endif
#ifdef BB_SFDISK //sbin
2000-03-16 08:09:09 +00:00
{"fdisk", sfdisk_main, _BB_DIR_SBIN},
#ifdef BB_SFDISK //sbin
#endif
{"sfdisk", sfdisk_main, _BB_DIR_SBIN},
1999-10-29 00:07:31 +00:00
#endif
#ifdef BB_SLEEP //bin
2000-03-16 08:09:09 +00:00
{"sleep", sleep_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_SORT //bin
2000-03-16 08:09:09 +00:00
{"sort", sort_main, _BB_DIR_BIN},
1999-12-22 17:57:31 +00:00
#endif
#ifdef BB_SYNC //bin
2000-03-16 08:09:09 +00:00
{"sync", sync_main, _BB_DIR_BIN},
1999-11-25 07:30:46 +00:00
#endif
#ifdef BB_SYSLOGD //sbin
2000-03-16 08:09:09 +00:00
{"syslogd", syslogd_main, _BB_DIR_SBIN},
1999-11-25 07:30:46 +00:00
#endif
#ifdef BB_LOGGER //usr/bin
2000-03-16 08:09:09 +00:00
{"logger", logger_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_LOGNAME //usr/bin
2000-03-16 08:09:09 +00:00
{"logname", logname_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_SWAPONOFF //sbin
{"swapon", swap_on_off_main, _BB_DIR_SBIN},
#endif
#ifdef BB_SWAPONOFF //sbin
2000-03-16 08:09:09 +00:00
{"swapoff", swap_on_off_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_TAIL //usr/bin
2000-03-16 08:09:09 +00:00
{"tail", tail_main, _BB_DIR_USR_BIN},
1999-12-08 23:19:36 +00:00
#endif
#ifdef BB_TAR //bin
2000-03-16 08:09:09 +00:00
{"tar", tar_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_TELNET //usr/bin
2000-03-16 08:09:09 +00:00
{"telnet", telnet_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_TEST //usr/bin
{"[", test_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_TEST //usr/bin
{"test", test_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_TEE //bin
2000-03-16 08:09:09 +00:00
{"tee", tee_main, _BB_DIR_BIN},
1999-12-10 05:27:16 +00:00
#endif
#ifdef BB_TOUCH //usr/bin
2000-03-16 08:09:09 +00:00
{"touch", touch_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
2000-03-05 08:07:00 +00:00
#ifdef BB_TR //usr/bin
2000-03-16 08:09:09 +00:00
{"tr", tr_main, _BB_DIR_USR_BIN},
2000-03-05 08:07:00 +00:00
#endif
#ifdef BB_TRUE_FALSE //bin
2000-03-16 08:09:09 +00:00
{"true", true_main, _BB_DIR_BIN},
#endif
#ifdef BB_TRUE_FALSE //bin
{"false", false_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_TTY //usr/bin
2000-03-16 08:09:09 +00:00
{"tty", tty_main, _BB_DIR_USR_BIN},
2000-01-13 04:43:48 +00:00
#endif
#ifdef BB_UMOUNT //bin
2000-03-16 08:09:09 +00:00
{"umount", umount_main, _BB_DIR_BIN},
#endif
#ifdef BB_UNAME //bin
2000-03-16 08:09:09 +00:00
{"uname", uname_main, _BB_DIR_BIN},
1999-10-25 23:32:44 +00:00
#endif
#ifdef BB_UPTIME //usr/bin
2000-03-16 08:09:09 +00:00
{"uptime", uptime_main, _BB_DIR_USR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_UNIQ //bin
2000-03-16 08:09:09 +00:00
{"uniq", uniq_main, _BB_DIR_BIN},
#endif
#ifdef BB_UPDATE //sbin
2000-03-16 08:09:09 +00:00
{"update", update_main, _BB_DIR_SBIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_WC //usr/bin
2000-03-16 08:09:09 +00:00
{"wc", wc_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_WHOAMI //usr/bin
2000-03-16 08:09:09 +00:00
{"whoami", whoami_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_YES //usr/bin
2000-03-16 08:09:09 +00:00
{"yes", yes_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_GUNZIP //bin
{"zcat", gunzip_main, _BB_DIR_BIN},
#endif
#ifdef BB_GUNZIP //bin
2000-03-16 08:09:09 +00:00
{"gunzip", gunzip_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
#ifdef BB_GZIP //bin
2000-03-16 08:09:09 +00:00
{"gzip", gzip_main, _BB_DIR_BIN},
1999-10-05 16:24:54 +00:00
#endif
{0}
1999-10-05 16:24:54 +00:00
};
2000-01-13 04:43:48 +00:00
1999-10-05 16:24:54 +00:00
int main(int argc, char **argv)
{
2000-03-16 08:09:09 +00:00
char *s;
char *name;
const struct Applet *a = applets;
1999-10-05 16:24:54 +00:00
2000-03-16 08:09:09 +00:00
for (s = name = argv[0]; *s != '\0';) {
if (*s++ == '/')
name = s;
}
1999-10-05 16:24:54 +00:00
*argv = name;
while (a->name != 0) {
if (strcmp(name, a->name) == 0) {
int status;
1999-10-05 16:24:54 +00:00
status = ((*(a->main)) (argc, argv));
if (status < 0) {
fprintf(stderr, "%s: %s\n", a->name, strerror(errno));
}
fprintf(stderr, "\n");
exit(status);
}
a++;
1999-10-05 16:24:54 +00:00
}
exit(busybox_main(argc, argv));
1999-10-05 16:24:54 +00:00
}
int busybox_main(int argc, char **argv)
{
int col = 0;
1999-10-05 16:24:54 +00:00
argc--;
argv++;
1999-10-05 16:24:54 +00:00
if (been_there_done_that == 1 || argc < 1) {
const struct Applet *a = applets;
fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n",
BB_VER, BB_BT);
fprintf(stderr, "Usage: busybox [function] [arguments]...\n");
fprintf(stderr, " or: [function] [arguments]...\n\n");
fprintf(stderr,
"\tMost people will create a link to busybox for each\n"
"\tfunction name, and busybox will act like whatever you invoke it as.\n");
fprintf(stderr, "\nCurrently defined functions:\n");
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);
} else {
/* If we've already been here once, exit now */
been_there_done_that = 1;
return (main(argc, argv));
1999-10-05 16:24:54 +00:00
}
}
/*
Local Variables:
c-file-style: "linux"
c-basic-offset: 4
tab-width: 4
End:
*/