mirror of https://github.com/mirror/busybox.git
107 lines
5.0 KiB
C
107 lines
5.0 KiB
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* applets.h - a listing of all busybox applets.
|
|
*
|
|
* If you write a new applet, you need to add an entry to this list to make
|
|
* busybox aware of it.
|
|
*/
|
|
|
|
/*
|
|
name - applet name as it is typed on command line
|
|
help - applet name, converted to C (ether-wake: help = ether_wake)
|
|
main - corresponding <applet>_main to call (bzcat: main = bunzip2)
|
|
l - location to install link to: [/usr]/[s]bin
|
|
s - suid type:
|
|
BB_SUID_REQUIRE: will complain if busybox isn't suid
|
|
and is run by non-root (applet_main() will not be called at all)
|
|
BB_SUID_DROP: will drop suid prior to applet_main()
|
|
BB_SUID_MAYBE: neither of the above
|
|
(every instance of BB_SUID_REQUIRE and BB_SUID_MAYBE
|
|
needs to be justified in comment)
|
|
NB: please update FEATURE_SUID help text whenever you add/remove
|
|
BB_SUID_REQUIRE or BB_SUID_MAYBE applet.
|
|
*/
|
|
|
|
#if defined(PROTOTYPES)
|
|
# define APPLET(name,l,s) int name##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
# define APPLET_ODDNAME(name,main,l,s,help) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
# define APPLET_NOEXEC(name,main,l,s,help) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
# define APPLET_NOFORK(name,main,l,s,help) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
|
|
#elif defined(NAME_MAIN)
|
|
# define APPLET(name,l,s) name name##_main
|
|
# define APPLET_ODDNAME(name,main,l,s,help) name main##_main
|
|
# define APPLET_NOEXEC(name,main,l,s,help) name main##_main
|
|
# define APPLET_NOFORK(name,main,l,s,help) name main##_main
|
|
|
|
#elif defined(MAKE_USAGE) && ENABLE_FEATURE_VERBOSE_USAGE
|
|
# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage name##_full_usage)
|
|
# define APPLET_ODDNAME(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
|
|
# define APPLET_NOEXEC(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
|
|
# define APPLET_NOFORK(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
|
|
|
|
#elif defined(MAKE_USAGE) && !ENABLE_FEATURE_VERBOSE_USAGE
|
|
# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage)
|
|
# define APPLET_ODDNAME(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
|
|
# define APPLET_NOEXEC(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
|
|
# define APPLET_NOFORK(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
|
|
|
|
#elif defined(MAKE_LINKS)
|
|
# define APPLET(name,l,c) LINK l name
|
|
# define APPLET_ODDNAME(name,main,l,s,help) LINK l name
|
|
# define APPLET_NOEXEC(name,main,l,s,help) LINK l name
|
|
# define APPLET_NOFORK(name,main,l,s,help) LINK l name
|
|
|
|
#elif defined(MAKE_SUID)
|
|
# define APPLET(name,l,s) SUID s l name
|
|
# define APPLET_ODDNAME(name,main,l,s,help) SUID s l name
|
|
# define APPLET_NOEXEC(name,main,l,s,help) SUID s l name
|
|
# define APPLET_NOFORK(name,main,l,s,help) SUID s l name
|
|
|
|
#else
|
|
static struct bb_applet applets[] = { /* name, main, location, need_suid */
|
|
# define APPLET(name,l,s) { #name, #name, l, s },
|
|
# define APPLET_ODDNAME(name,main,l,s,help) { #name, #main, l, s },
|
|
# define APPLET_NOEXEC(name,main,l,s,help) { #name, #main, l, s, 1 },
|
|
# define APPLET_NOFORK(name,main,l,s,help) { #name, #main, l, s, 1, 1 },
|
|
#endif
|
|
|
|
#if ENABLE_INSTALL_NO_USR
|
|
# define BB_DIR_USR_BIN BB_DIR_BIN
|
|
# define BB_DIR_USR_SBIN BB_DIR_SBIN
|
|
#endif
|
|
|
|
|
|
INSERT
|
|
IF_CHCON(APPLET(chcon, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
IF_DHCPRELAY(APPLET(dhcprelay, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
//IF_E2FSCK(APPLET(e2fsck, BB_DIR_SBIN, BB_SUID_DROP))
|
|
//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, BB_DIR_SBIN, BB_SUID_DROP, e2label))
|
|
//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext2))
|
|
//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext3))
|
|
IF_GETENFORCE(APPLET(getenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_GETSEBOOL(APPLET(getsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
//IF_PARSE(APPLET(parse, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, BB_DIR_SBIN, BB_SUID_DROP, restorecon))
|
|
IF_RUNCON(APPLET(runcon, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
IF_SELINUXENABLED(APPLET(selinuxenabled, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_SESTATUS(APPLET(sestatus, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_SETENFORCE(APPLET(setenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_SETFILES(APPLET(setfiles, BB_DIR_SBIN, BB_SUID_DROP))
|
|
IF_SETSEBOOL(APPLET(setsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
IF_UDHCPC(APPLET(udhcpc, BB_DIR_SBIN, BB_SUID_DROP))
|
|
IF_UDHCPD(APPLET(udhcpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
|
|
|
|
#if !defined(PROTOTYPES) && !defined(NAME_MAIN) && !defined(MAKE_USAGE) \
|
|
&& !defined(MAKE_LINKS) && !defined(MAKE_SUID)
|
|
};
|
|
#endif
|
|
|
|
#undef APPLET
|
|
#undef APPLET_ODDNAME
|
|
#undef APPLET_NOEXEC
|
|
#undef APPLET_NOFORK
|