2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-10-25 05:58:27 +05:30
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2007-04-08 23:00:10 +05:30
|
|
|
/*
|
|
|
|
name - applet name as it is typed on command line
|
2014-04-19 18:34:39 +05:30
|
|
|
help - applet name, converted to C (ether-wake: help = ether_wake)
|
2007-04-10 03:00:53 +05:30
|
|
|
main - corresponding <applet>_main to call (bzcat: main = bunzip2)
|
|
|
|
l - location to install link to: [/usr]/[s]bin
|
2007-04-08 23:00:10 +05:30
|
|
|
s - suid type:
|
2011-01-18 18:28:01 +05:30
|
|
|
BB_SUID_REQUIRE: will complain if busybox isn't suid
|
2007-04-08 23:00:10 +05:30
|
|
|
and is run by non-root (applet_main() will not be called at all)
|
2011-01-18 18:28:01 +05:30
|
|
|
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
|
2011-01-03 18:27:49 +05:30
|
|
|
needs to be justified in comment)
|
2011-01-18 18:22:48 +05:30
|
|
|
NB: please update FEATURE_SUID help text whenever you add/remove
|
2011-01-18 18:28:01 +05:30
|
|
|
BB_SUID_REQUIRE or BB_SUID_MAYBE applet.
|
2007-04-08 23:00:10 +05:30
|
|
|
*/
|
|
|
|
|
2000-12-02 06:14:48 +05:30
|
|
|
#if defined(PROTOTYPES)
|
2007-10-11 15:35:36 +05:30
|
|
|
# define APPLET(name,l,s) int name##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2014-04-19 18:34:39 +05:30
|
|
|
# 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;
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help)
|
2007-04-08 23:00:10 +05:30
|
|
|
|
2014-04-19 18:34:39 +05:30
|
|
|
#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
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) name scripted_main
|
2007-10-07 22:36:26 +05:30
|
|
|
|
2007-04-08 23:00:10 +05:30
|
|
|
#elif defined(MAKE_USAGE) && ENABLE_FEATURE_VERBOSE_USAGE
|
2010-06-06 02:41:07 +05:30
|
|
|
# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage name##_full_usage)
|
2014-04-19 18:34:39 +05:30
|
|
|
# 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)
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
|
2007-04-08 23:00:10 +05:30
|
|
|
|
|
|
|
#elif defined(MAKE_USAGE) && !ENABLE_FEATURE_VERBOSE_USAGE
|
2010-06-06 02:41:07 +05:30
|
|
|
# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage)
|
2014-04-19 18:34:39 +05:30
|
|
|
# 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)
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
|
2007-04-08 23:00:10 +05:30
|
|
|
|
2001-02-23 07:46:29 +05:30
|
|
|
#elif defined(MAKE_LINKS)
|
2007-04-08 23:00:10 +05:30
|
|
|
# define APPLET(name,l,c) LINK l name
|
2014-04-19 18:34:39 +05:30
|
|
|
# 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
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) LINK l name
|
2007-04-08 23:00:10 +05:30
|
|
|
|
2013-06-10 20:38:22 +05:30
|
|
|
#elif defined(MAKE_SUID)
|
|
|
|
# define APPLET(name,l,s) SUID s l name
|
2014-04-19 18:34:39 +05:30
|
|
|
# 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
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) SUID s l name
|
|
|
|
|
|
|
|
#elif defined(MAKE_SCRIPTS)
|
|
|
|
# define APPLET(name,l,s)
|
|
|
|
# define APPLET_ODDNAME(name,main,l,s,help)
|
|
|
|
# define APPLET_NOEXEC(name,main,l,s,help)
|
|
|
|
# define APPLET_NOFORK(name,main,l,s,help)
|
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) SCRIPT name
|
2013-06-10 20:38:22 +05:30
|
|
|
|
2000-12-02 06:14:48 +05:30
|
|
|
#else
|
2007-11-28 12:19:03 +05:30
|
|
|
static struct bb_applet applets[] = { /* name, main, location, need_suid */
|
|
|
|
# define APPLET(name,l,s) { #name, #name, l, s },
|
2014-04-19 18:34:39 +05:30
|
|
|
# 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 },
|
2018-11-17 23:18:14 +05:30
|
|
|
# define APPLET_SCRIPTED(name,main,l,s,help) { #name, #main, l, s },
|
2000-11-30 05:57:06 +05:30
|
|
|
#endif
|
2000-10-25 05:58:27 +05:30
|
|
|
|
2010-12-06 03:35:38 +05:30
|
|
|
#if ENABLE_INSTALL_NO_USR
|
2011-01-18 18:28:01 +05:30
|
|
|
# define BB_DIR_USR_BIN BB_DIR_BIN
|
|
|
|
# define BB_DIR_USR_SBIN BB_DIR_SBIN
|
2010-12-06 03:35:38 +05:30
|
|
|
#endif
|
|
|
|
|
2007-04-09 08:41:58 +05:30
|
|
|
|
2010-06-06 04:23:45 +05:30
|
|
|
INSERT
|
2016-11-23 23:24:59 +05:30
|
|
|
|
2000-11-30 05:57:06 +05:30
|
|
|
|
2014-04-19 18:34:39 +05:30
|
|
|
#if !defined(PROTOTYPES) && !defined(NAME_MAIN) && !defined(MAKE_USAGE) \
|
2013-06-10 20:38:22 +05:30
|
|
|
&& !defined(MAKE_LINKS) && !defined(MAKE_SUID)
|
2000-10-25 05:58:27 +05:30
|
|
|
};
|
2000-11-30 05:57:06 +05:30
|
|
|
#endif
|
2007-04-09 08:35:48 +05:30
|
|
|
|
|
|
|
#undef APPLET
|
|
|
|
#undef APPLET_ODDNAME
|
2007-04-09 08:41:58 +05:30
|
|
|
#undef APPLET_NOEXEC
|
2007-04-10 03:00:53 +05:30
|
|
|
#undef APPLET_NOFORK
|
2018-11-17 23:18:14 +05:30
|
|
|
#undef APPLET_SCRIPTED
|