blob: b80c4f4e842e063c5d1783b67281368f800763d4 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mark Whitley130005c2000-10-25 00:28:27 +00002/*
3 * applets.h - a listing of all busybox applets.
4 *
5 * If you write a new applet, you need to add an entry to this list to make
6 * busybox aware of it.
Mark Whitley130005c2000-10-25 00:28:27 +00007 */
8
Denis Vlasenko786834b2007-04-08 17:30:10 +00009/*
10name - applet name as it is typed on command line
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020011help - applet name, converted to C (ether-wake: help = ether_wake)
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +000012main - corresponding <applet>_main to call (bzcat: main = bunzip2)
13l - location to install link to: [/usr]/[s]bin
Denis Vlasenko786834b2007-04-08 17:30:10 +000014s - suid type:
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010015 BB_SUID_REQUIRE: will complain if busybox isn't suid
Denis Vlasenko786834b2007-04-08 17:30:10 +000016 and is run by non-root (applet_main() will not be called at all)
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010017 BB_SUID_DROP: will drop suid prior to applet_main()
18 BB_SUID_MAYBE: neither of the above
19 (every instance of BB_SUID_REQUIRE and BB_SUID_MAYBE
Denys Vlasenko6100b512011-01-03 13:57:49 +010020 needs to be justified in comment)
Denys Vlasenko3b5acaa2011-01-18 13:52:48 +010021 NB: please update FEATURE_SUID help text whenever you add/remove
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010022 BB_SUID_REQUIRE or BB_SUID_MAYBE applet.
Denis Vlasenko786834b2007-04-08 17:30:10 +000023*/
24
Eric Andersen868c0572000-12-02 00:44:48 +000025#if defined(PROTOTYPES)
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000026# define APPLET(name,l,s) int name##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020027# define APPLET_ODDNAME(name,main,l,s,help) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
28# define APPLET_NOEXEC(name,main,l,s,help) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29# define APPLET_NOFORK(name,main,l,s,help) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko786834b2007-04-08 17:30:10 +000030
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020031#elif defined(NAME_MAIN)
32# define APPLET(name,l,s) name name##_main
33# define APPLET_ODDNAME(name,main,l,s,help) name main##_main
34# define APPLET_NOEXEC(name,main,l,s,help) name main##_main
35# define APPLET_NOFORK(name,main,l,s,help) name main##_main
Denis Vlasenkof545be02007-10-07 17:06:26 +000036
Denis Vlasenko786834b2007-04-08 17:30:10 +000037#elif defined(MAKE_USAGE) && ENABLE_FEATURE_VERBOSE_USAGE
Denys Vlasenko0e5ba082010-06-05 23:11:07 +020038# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage name##_full_usage)
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020039# define APPLET_ODDNAME(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
40# define APPLET_NOEXEC(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
41# define APPLET_NOFORK(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage help##_full_usage)
Denis Vlasenko786834b2007-04-08 17:30:10 +000042
43#elif defined(MAKE_USAGE) && !ENABLE_FEATURE_VERBOSE_USAGE
Denys Vlasenko0e5ba082010-06-05 23:11:07 +020044# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage)
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020045# define APPLET_ODDNAME(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
46# define APPLET_NOEXEC(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
47# define APPLET_NOFORK(name,main,l,s,help) MAKE_USAGE(#name, help##_trivial_usage)
Denis Vlasenko786834b2007-04-08 17:30:10 +000048
Eric Andersen3574b702001-02-23 02:16:29 +000049#elif defined(MAKE_LINKS)
Denis Vlasenko786834b2007-04-08 17:30:10 +000050# define APPLET(name,l,c) LINK l name
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020051# define APPLET_ODDNAME(name,main,l,s,help) LINK l name
52# define APPLET_NOEXEC(name,main,l,s,help) LINK l name
53# define APPLET_NOFORK(name,main,l,s,help) LINK l name
Denis Vlasenko786834b2007-04-08 17:30:10 +000054
Bernhard Reutner-Fischer90786332013-06-10 17:08:22 +020055#elif defined(MAKE_SUID)
56# define APPLET(name,l,s) SUID s l name
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020057# define APPLET_ODDNAME(name,main,l,s,help) SUID s l name
58# define APPLET_NOEXEC(name,main,l,s,help) SUID s l name
59# define APPLET_NOFORK(name,main,l,s,help) SUID s l name
Bernhard Reutner-Fischer90786332013-06-10 17:08:22 +020060
Eric Andersen868c0572000-12-02 00:44:48 +000061#else
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000062 static struct bb_applet applets[] = { /* name, main, location, need_suid */
63# define APPLET(name,l,s) { #name, #name, l, s },
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +020064# define APPLET_ODDNAME(name,main,l,s,help) { #name, #main, l, s },
65# define APPLET_NOEXEC(name,main,l,s,help) { #name, #main, l, s, 1 },
66# define APPLET_NOFORK(name,main,l,s,help) { #name, #main, l, s, 1, 1 },
Eric Andersen8c725e62000-11-30 00:27:06 +000067#endif
Mark Whitley130005c2000-10-25 00:28:27 +000068
Joachim Nilssondc160032010-12-05 23:05:38 +010069#if ENABLE_INSTALL_NO_USR
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010070# define BB_DIR_USR_BIN BB_DIR_BIN
71# define BB_DIR_USR_SBIN BB_DIR_SBIN
Joachim Nilssondc160032010-12-05 23:05:38 +010072#endif
73
Denis Vlasenkoc44ab012007-04-09 03:11:58 +000074
Denys Vlasenko6c5bf0d2010-06-06 00:53:45 +020075INSERT
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010076IF_TEST(APPLET_NOFORK([, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
77IF_TEST(APPLET_NOFORK([[, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
78IF_ACPID(APPLET(acpid, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +020079IF_ADDGROUP(APPLET(addgroup, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenko2bc495e2012-06-20 20:35:58 +020080IF_ADDUSER(APPLET(adduser, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010081IF_ADJTIMEX(APPLET(adjtimex, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010082IF_ARP(APPLET(arp, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +020083IF_ARPING(APPLET(arping, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010084IF_BASENAME(APPLET_NOFORK(basename, basename, BB_DIR_USR_BIN, BB_SUID_DROP, basename))
85IF_BBCONFIG(APPLET(bbconfig, BB_DIR_BIN, BB_SUID_DROP))
86IF_BEEP(APPLET(beep, BB_DIR_USR_BIN, BB_SUID_DROP))
87IF_BLKID(APPLET(blkid, BB_DIR_SBIN, BB_SUID_DROP))
88IF_BRCTL(APPLET(brctl, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010089IF_CAL(APPLET(cal, BB_DIR_USR_BIN, BB_SUID_DROP))
90IF_CAT(APPLET_NOFORK(cat, cat, BB_DIR_BIN, BB_SUID_DROP, cat))
91IF_CATV(APPLET(catv, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +020092IF_CHAT(APPLET(chat, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010093IF_CHATTR(APPLET(chattr, BB_DIR_BIN, BB_SUID_DROP))
94IF_CHCON(APPLET(chcon, BB_DIR_USR_BIN, BB_SUID_DROP))
95IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, BB_DIR_BIN, BB_SUID_DROP, chgrp))
96IF_CHMOD(APPLET_NOEXEC(chmod, chmod, BB_DIR_BIN, BB_SUID_DROP, chmod))
97IF_CHOWN(APPLET_NOEXEC(chown, chown, BB_DIR_BIN, BB_SUID_DROP, chown))
98IF_CHPASSWD(APPLET(chpasswd, BB_DIR_USR_SBIN, BB_SUID_DROP))
99IF_CHPST(APPLET(chpst, BB_DIR_USR_BIN, BB_SUID_DROP))
100IF_CHROOT(APPLET(chroot, BB_DIR_USR_SBIN, BB_SUID_DROP))
101IF_CHRT(APPLET(chrt, BB_DIR_USR_BIN, BB_SUID_DROP))
102IF_CHVT(APPLET(chvt, BB_DIR_USR_BIN, BB_SUID_DROP))
103IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum))
104IF_CLEAR(APPLET(clear, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100105IF_COMM(APPLET(comm, BB_DIR_USR_BIN, BB_SUID_DROP))
106IF_CP(APPLET_NOEXEC(cp, cp, BB_DIR_BIN, BB_SUID_DROP, cp))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100107/* Needs to be run by root or be suid root - needs to change /var/spool/cron* files: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100108IF_CRONTAB(APPLET(crontab, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
109IF_CRYPTPW(APPLET(cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP))
110IF_CUT(APPLET_NOEXEC(cut, cut, BB_DIR_USR_BIN, BB_SUID_DROP, cut))
111IF_DC(APPLET(dc, BB_DIR_USR_BIN, BB_SUID_DROP))
112IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd))
113IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200114IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, BB_DIR_USR_SBIN, BB_SUID_DROP, delgroup))
115IF_DELUSER(APPLET(deluser, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100116IF_DEVFSD(APPLET(devfsd, BB_DIR_SBIN, BB_SUID_DROP))
117IF_DEVMEM(APPLET(devmem, BB_DIR_SBIN, BB_SUID_DROP))
118IF_DF(APPLET(df, BB_DIR_BIN, BB_SUID_DROP))
119IF_DHCPRELAY(APPLET(dhcprelay, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100120IF_DIRNAME(APPLET_NOFORK(dirname, dirname, BB_DIR_USR_BIN, BB_SUID_DROP, dirname))
121IF_DMESG(APPLET(dmesg, BB_DIR_BIN, BB_SUID_DROP))
122IF_DNSD(APPLET(dnsd, BB_DIR_USR_SBIN, BB_SUID_DROP))
123IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, BB_DIR_BIN, BB_SUID_DROP, dnsdomainname))
124IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, dos2unix))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100125IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP))
126IF_DUMPKMAP(APPLET(dumpkmap, BB_DIR_BIN, BB_SUID_DROP))
127IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
128//IF_E2FSCK(APPLET(e2fsck, BB_DIR_SBIN, BB_SUID_DROP))
129//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, BB_DIR_SBIN, BB_SUID_DROP, e2label))
130IF_ECHO(APPLET_NOFORK(echo, echo, BB_DIR_BIN, BB_SUID_DROP, echo))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100131IF_EJECT(APPLET(eject, BB_DIR_USR_BIN, BB_SUID_DROP))
132IF_ENV(APPLET_NOEXEC(env, env, BB_DIR_USR_BIN, BB_SUID_DROP, env))
133IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, envdir))
134IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, envuidgid))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200135IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, BB_DIR_USR_SBIN, BB_SUID_DROP, ether_wake))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100136IF_EXPAND(APPLET(expand, BB_DIR_USR_BIN, BB_SUID_DROP))
137IF_EXPR(APPLET(expr, BB_DIR_USR_BIN, BB_SUID_DROP))
138IF_FAKEIDENTD(APPLET(fakeidentd, BB_DIR_USR_SBIN, BB_SUID_DROP))
139IF_FALSE(APPLET_NOFORK(false, false, BB_DIR_BIN, BB_SUID_DROP, false))
140IF_FBSET(APPLET(fbset, BB_DIR_USR_SBIN, BB_SUID_DROP))
141IF_FBSPLASH(APPLET(fbsplash, BB_DIR_SBIN, BB_SUID_DROP))
142IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, BB_DIR_BIN, BB_SUID_DROP, fdflush))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200143IF_FDFORMAT(APPLET(fdformat, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100144IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP))
145IF_FGCONSOLE(APPLET(fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100146/* Benefits from suid root: better access to /dev/BLOCKDEVs: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100147IF_FINDFS(APPLET(findfs, BB_DIR_SBIN, BB_SUID_MAYBE))
148IF_FLASH_ERASEALL(APPLET(flash_eraseall, BB_DIR_USR_SBIN, BB_SUID_DROP))
149IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, BB_DIR_USR_SBIN, BB_SUID_DROP, flash_lock))
150IF_FLASH_UNLOCK(APPLET_ODDNAME(flash_unlock, flash_lock_unlock, BB_DIR_USR_SBIN, BB_SUID_DROP, flash_unlock))
151IF_FLASHCP(APPLET(flashcp, BB_DIR_USR_SBIN, BB_SUID_DROP))
152IF_FLOCK(APPLET(flock, BB_DIR_USR_BIN, BB_SUID_DROP))
153IF_FOLD(APPLET_NOEXEC(fold, fold, BB_DIR_USR_BIN, BB_SUID_DROP, fold))
154IF_FREE(APPLET(free, BB_DIR_USR_BIN, BB_SUID_DROP))
155IF_FREERAMDISK(APPLET(freeramdisk, BB_DIR_SBIN, BB_SUID_DROP))
156IF_FSCK(APPLET(fsck, BB_DIR_SBIN, BB_SUID_DROP))
157//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext2))
158//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext3))
159IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, BB_DIR_SBIN, BB_SUID_DROP, fsck_minix))
160IF_FSYNC(APPLET_NOFORK(fsync, fsync, BB_DIR_BIN, BB_SUID_DROP, fsync))
161IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
162IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpget))
163IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpput))
164IF_FUSER(APPLET(fuser, BB_DIR_USR_BIN, BB_SUID_DROP))
165IF_GETENFORCE(APPLET(getenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
166IF_GETOPT(APPLET(getopt, BB_DIR_BIN, BB_SUID_DROP))
167IF_GETSEBOOL(APPLET(getsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
168IF_GETTY(APPLET(getty, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100169IF_HD(APPLET_NOEXEC(hd, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hd))
170IF_HDPARM(APPLET(hdparm, BB_DIR_SBIN, BB_SUID_DROP))
171IF_HEAD(APPLET_NOEXEC(head, head, BB_DIR_USR_BIN, BB_SUID_DROP, head))
172IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hexdump))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100173IF_HOSTNAME(APPLET(hostname, BB_DIR_BIN, BB_SUID_DROP))
174IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
175IF_HWCLOCK(APPLET(hwclock, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100176IF_IFCONFIG(APPLET(ifconfig, BB_DIR_SBIN, BB_SUID_DROP))
177IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifdown))
178IF_IFENSLAVE(APPLET(ifenslave, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200179IF_IFPLUGD(APPLET(ifplugd, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100180IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifup))
181IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
182IF_INOTIFYD(APPLET(inotifyd, BB_DIR_SBIN, BB_SUID_DROP))
183IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP))
184IF_IONICE(APPLET(ionice, BB_DIR_BIN, BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000185#if ENABLE_FEATURE_IP_ADDRESS \
186 || ENABLE_FEATURE_IP_ROUTE \
187 || ENABLE_FEATURE_IP_LINK \
188 || ENABLE_FEATURE_IP_TUNNEL \
189 || ENABLE_FEATURE_IP_RULE
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200190IF_IP(APPLET(ip, BB_DIR_SBIN, BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000191#endif
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200192IF_IPADDR(APPLET(ipaddr, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100193IF_IPCALC(APPLET(ipcalc, BB_DIR_BIN, BB_SUID_DROP))
194IF_IPCRM(APPLET(ipcrm, BB_DIR_USR_BIN, BB_SUID_DROP))
195IF_IPCS(APPLET(ipcs, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200196IF_IPLINK(APPLET(iplink, BB_DIR_SBIN, BB_SUID_DROP))
197IF_IPROUTE(APPLET(iproute, BB_DIR_SBIN, BB_SUID_DROP))
198IF_IPRULE(APPLET(iprule, BB_DIR_SBIN, BB_SUID_DROP))
199IF_IPTUNNEL(APPLET(iptunnel, BB_DIR_SBIN, BB_SUID_DROP))
200IF_KBD_MODE(APPLET(kbd_mode, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100201IF_KILL(APPLET(kill, BB_DIR_BIN, BB_SUID_DROP))
202IF_KILLALL(APPLET_ODDNAME(killall, kill, BB_DIR_USR_BIN, BB_SUID_DROP, killall))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200203IF_KILLALL5(APPLET_ODDNAME(killall5, kill, BB_DIR_USR_SBIN, BB_SUID_DROP, killall5))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100204IF_KLOGD(APPLET(klogd, BB_DIR_SBIN, BB_SUID_DROP))
205IF_LAST(APPLET(last, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkoea023ea2011-01-26 01:21:20 +0100206//IF_LENGTH(APPLET_NOFORK(length, length, BB_DIR_USR_BIN, BB_SUID_DROP, length))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100207IF_LESS(APPLET(less, BB_DIR_USR_BIN, BB_SUID_DROP))
208IF_SETARCH(APPLET_ODDNAME(linux32, setarch, BB_DIR_BIN, BB_SUID_DROP, linux32))
209IF_SETARCH(APPLET_ODDNAME(linux64, setarch, BB_DIR_BIN, BB_SUID_DROP, linux64))
210IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln))
211IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
212IF_LOADFONT(APPLET(loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
213IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP))
214IF_LOGGER(APPLET(logger, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100215/* Needs to be run by root or be suid root - needs to change uid and gid: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100216IF_LOGIN(APPLET(login, BB_DIR_BIN, BB_SUID_REQUIRE))
217IF_LOGNAME(APPLET_NOFORK(logname, logname, BB_DIR_USR_BIN, BB_SUID_DROP, logname))
218IF_LOGREAD(APPLET(logread, BB_DIR_SBIN, BB_SUID_DROP))
219IF_LOSETUP(APPLET(losetup, BB_DIR_SBIN, BB_SUID_DROP))
220IF_LPD(APPLET(lpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
221IF_LPQ(APPLET_ODDNAME(lpq, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpq))
222IF_LPR(APPLET_ODDNAME(lpr, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpr))
223IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls))
224IF_LSATTR(APPLET(lsattr, BB_DIR_BIN, BB_SUID_DROP))
225IF_LSPCI(APPLET(lspci, BB_DIR_USR_BIN, BB_SUID_DROP))
226IF_LSUSB(APPLET(lsusb, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100227IF_MAKEDEVS(APPLET(makedevs, BB_DIR_SBIN, BB_SUID_DROP))
228IF_MAKEMIME(APPLET(makemime, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko80a38ca2013-03-27 14:30:18 +0100229IF_MAN(APPLET(man, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100230IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
231IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100232IF_MICROCOM(APPLET(microcom, BB_DIR_USR_BIN, BB_SUID_DROP))
233IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, BB_DIR_BIN, BB_SUID_DROP, mkdir))
234IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat))
235IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
236IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, BB_DIR_USR_BIN, BB_SUID_DROP, mkfifo))
237IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
238//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext3))
239IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, BB_DIR_SBIN, BB_SUID_DROP, mkfs_minix))
240IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, BB_DIR_SBIN, BB_SUID_DROP, mkfs_reiser))
241IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat))
242IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod))
243IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, mkpasswd))
244IF_MKSWAP(APPLET(mkswap, BB_DIR_SBIN, BB_SUID_DROP))
245IF_MKTEMP(APPLET(mktemp, BB_DIR_BIN, BB_SUID_DROP))
246IF_MORE(APPLET(more, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100247/* On full-blown systems, requires suid for user mounts.
248 * But it's not unthinkable to have it available in non-suid flavor on some systems,
249 * for viewing mount table.
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100250 * Therefore we use BB_SUID_MAYBE instead of BB_SUID_REQUIRE: */
251IF_MOUNT(APPLET(mount, BB_DIR_BIN, IF_DESKTOP(BB_SUID_MAYBE) IF_NOT_DESKTOP(BB_SUID_DROP)))
252IF_MOUNTPOINT(APPLET(mountpoint, BB_DIR_BIN, BB_SUID_DROP))
253IF_MT(APPLET(mt, BB_DIR_BIN, BB_SUID_DROP))
254IF_MV(APPLET(mv, BB_DIR_BIN, BB_SUID_DROP))
255IF_NAMEIF(APPLET(nameif, BB_DIR_SBIN, BB_SUID_DROP))
256IF_NC(APPLET(nc, BB_DIR_USR_BIN, BB_SUID_DROP))
257IF_NETSTAT(APPLET(netstat, BB_DIR_BIN, BB_SUID_DROP))
258IF_NICE(APPLET(nice, BB_DIR_BIN, BB_SUID_DROP))
259IF_NOHUP(APPLET(nohup, BB_DIR_USR_BIN, BB_SUID_DROP))
260IF_NSLOOKUP(APPLET(nslookup, BB_DIR_USR_BIN, BB_SUID_DROP))
261IF_NTPD(APPLET(ntpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
262IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP))
263IF_OPENVT(APPLET(openvt, BB_DIR_USR_BIN, BB_SUID_DROP))
264//IF_PARSE(APPLET(parse, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100265/* Needs to be run by root or be suid root - needs to change /etc/{passwd,shadow}: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100266IF_PASSWD(APPLET(passwd, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
267IF_PGREP(APPLET(pgrep, BB_DIR_USR_BIN, BB_SUID_DROP))
268IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP))
269IF_PIPE_PROGRESS(APPLET(pipe_progress, BB_DIR_BIN, BB_SUID_DROP))
270IF_PIVOT_ROOT(APPLET(pivot_root, BB_DIR_SBIN, BB_SUID_DROP))
271IF_PKILL(APPLET_ODDNAME(pkill, pgrep, BB_DIR_USR_BIN, BB_SUID_DROP, pkill))
272IF_POPMAILDIR(APPLET(popmaildir, BB_DIR_USR_SBIN, BB_SUID_DROP))
273IF_PRINTENV(APPLET_NOFORK(printenv, printenv, BB_DIR_BIN, BB_SUID_DROP, printenv))
274IF_PRINTF(APPLET_NOFORK(printf, printf, BB_DIR_USR_BIN, BB_SUID_DROP, printf))
275IF_PS(APPLET(ps, BB_DIR_BIN, BB_SUID_DROP))
276IF_PSCAN(APPLET(pscan, BB_DIR_USR_BIN, BB_SUID_DROP))
277IF_PWD(APPLET_NOFORK(pwd, pwd, BB_DIR_BIN, BB_SUID_DROP, pwd))
278IF_RAIDAUTORUN(APPLET(raidautorun, BB_DIR_SBIN, BB_SUID_DROP))
279IF_RDATE(APPLET(rdate, BB_DIR_USR_SBIN, BB_SUID_DROP))
280IF_RDEV(APPLET(rdev, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200281IF_READAHEAD(APPLET(readahead, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100282IF_READLINK(APPLET(readlink, BB_DIR_USR_BIN, BB_SUID_DROP))
283IF_READPROFILE(APPLET(readprofile, BB_DIR_USR_SBIN, BB_SUID_DROP))
284IF_REALPATH(APPLET(realpath, BB_DIR_USR_BIN, BB_SUID_DROP))
285IF_REFORMIME(APPLET(reformime, BB_DIR_BIN, BB_SUID_DROP))
286IF_RENICE(APPLET(renice, BB_DIR_USR_BIN, BB_SUID_DROP))
287IF_RESET(APPLET(reset, BB_DIR_USR_BIN, BB_SUID_DROP))
288IF_RESIZE(APPLET(resize, BB_DIR_USR_BIN, BB_SUID_DROP))
289IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, BB_DIR_SBIN, BB_SUID_DROP, restorecon))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100290IF_RM(APPLET_NOFORK(rm, rm, BB_DIR_BIN, BB_SUID_DROP, rm))
291IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, BB_DIR_BIN, BB_SUID_DROP, rmdir))
292IF_ROUTE(APPLET(route, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200293IF_RTCWAKE(APPLET(rtcwake, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100294IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, BB_DIR_BIN, BB_SUID_DROP, run_parts))
295IF_RUNCON(APPLET(runcon, BB_DIR_USR_BIN, BB_SUID_DROP))
296IF_RUNLEVEL(APPLET(runlevel, BB_DIR_SBIN, BB_SUID_DROP))
297IF_RUNSV(APPLET(runsv, BB_DIR_USR_BIN, BB_SUID_DROP))
298IF_RUNSVDIR(APPLET(runsvdir, BB_DIR_USR_BIN, BB_SUID_DROP))
299IF_RX(APPLET(rx, BB_DIR_USR_BIN, BB_SUID_DROP))
300IF_SCRIPT(APPLET(script, BB_DIR_USR_BIN, BB_SUID_DROP))
301IF_SCRIPTREPLAY(APPLET(scriptreplay, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100302IF_SELINUXENABLED(APPLET(selinuxenabled, BB_DIR_USR_SBIN, BB_SUID_DROP))
303IF_SENDMAIL(APPLET(sendmail, BB_DIR_USR_SBIN, BB_SUID_DROP))
304IF_SEQ(APPLET_NOFORK(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq))
305IF_SESTATUS(APPLET(sestatus, BB_DIR_USR_SBIN, BB_SUID_DROP))
306IF_SETARCH(APPLET(setarch, BB_DIR_BIN, BB_SUID_DROP))
307IF_SETCONSOLE(APPLET(setconsole, BB_DIR_SBIN, BB_SUID_DROP))
308IF_SETENFORCE(APPLET(setenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
309IF_SETFILES(APPLET(setfiles, BB_DIR_SBIN, BB_SUID_DROP))
310IF_SETFONT(APPLET(setfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
311IF_SETKEYCODES(APPLET(setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP))
312IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
313IF_SETSEBOOL(APPLET(setsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
314IF_SETSID(APPLET(setsid, BB_DIR_USR_BIN, BB_SUID_DROP))
315IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, setuidgid))
316IF_SHA1SUM(APPLET_NOEXEC(sha1sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha1sum))
Lauri Kasanenb8173b62013-01-14 05:20:50 +0100317IF_SHA3SUM(APPLET_NOEXEC(sha3sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha3sum))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100318IF_SHA256SUM(APPLET_NOEXEC(sha256sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha256sum))
319IF_SHA512SUM(APPLET_NOEXEC(sha512sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha512sum))
320IF_SHOWKEY(APPLET(showkey, BB_DIR_USR_BIN, BB_SUID_DROP))
321IF_SLATTACH(APPLET(slattach, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100322/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100323IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP))
324IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, softlimit))
325IF_SORT(APPLET_NOEXEC(sort, sort, BB_DIR_USR_BIN, BB_SUID_DROP, sort))
326IF_SPLIT(APPLET(split, BB_DIR_USR_BIN, BB_SUID_DROP))
327IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, BB_DIR_SBIN, BB_SUID_DROP, start_stop_daemon))
328IF_STAT(APPLET(stat, BB_DIR_BIN, BB_SUID_DROP))
329IF_STRINGS(APPLET(strings, BB_DIR_USR_BIN, BB_SUID_DROP))
330IF_STTY(APPLET(stty, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100331/* Needs to be run by root or be suid root - needs to change uid and gid: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100332IF_SU(APPLET(su, BB_DIR_BIN, BB_SUID_REQUIRE))
333IF_SULOGIN(APPLET(sulogin, BB_DIR_SBIN, BB_SUID_DROP))
334IF_SUM(APPLET(sum, BB_DIR_USR_BIN, BB_SUID_DROP))
335IF_SV(APPLET(sv, BB_DIR_USR_BIN, BB_SUID_DROP))
336IF_SVLOGD(APPLET(svlogd, BB_DIR_USR_SBIN, BB_SUID_DROP))
337IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapoff))
338IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapon))
339IF_SWITCH_ROOT(APPLET(switch_root, BB_DIR_SBIN, BB_SUID_DROP))
340IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
341IF_BB_SYSCTL(APPLET(sysctl, BB_DIR_SBIN, BB_SUID_DROP))
342IF_SYSLOGD(APPLET(syslogd, BB_DIR_SBIN, BB_SUID_DROP))
343IF_TAC(APPLET_NOEXEC(tac, tac, BB_DIR_USR_BIN, BB_SUID_DROP, tac))
344IF_TAIL(APPLET(tail, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100345/* IF_TC(APPLET(tc, BB_DIR_SBIN, BB_SUID_DROP)) */
346IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, tcpsvd))
347IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP))
348IF_TELNET(APPLET(telnet, BB_DIR_USR_BIN, BB_SUID_DROP))
349IF_TELNETD(APPLET(telnetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
350IF_TEST(APPLET_NOFORK(test, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
Denis Vlasenko31635552007-01-20 16:54:19 +0000351#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100352IF_TFTP(APPLET(tftp, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkodac8e792012-06-20 20:24:57 +0200353IF_TFTPD(APPLET(tftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denis Vlasenko31635552007-01-20 16:54:19 +0000354#endif
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100355IF_TIME(APPLET(time, BB_DIR_USR_BIN, BB_SUID_DROP))
356IF_TIMEOUT(APPLET(timeout, BB_DIR_USR_BIN, BB_SUID_DROP))
357IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP))
358IF_TR(APPLET(tr, BB_DIR_USR_BIN, BB_SUID_DROP))
359/* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
360IF_TRACEROUTE(APPLET(traceroute, BB_DIR_USR_BIN, BB_SUID_MAYBE))
361IF_TRACEROUTE6(APPLET(traceroute6, BB_DIR_USR_BIN, BB_SUID_MAYBE))
362IF_TRUE(APPLET_NOFORK(true, true, BB_DIR_BIN, BB_SUID_DROP, true))
363IF_TTY(APPLET(tty, BB_DIR_USR_BIN, BB_SUID_DROP))
364IF_TTYSIZE(APPLET(ttysize, BB_DIR_USR_BIN, BB_SUID_DROP))
365IF_TUNCTL(APPLET(tunctl, BB_DIR_SBIN, BB_SUID_DROP))
366IF_TUNE2FS(APPLET(tune2fs, BB_DIR_SBIN, BB_SUID_DROP))
367IF_UDHCPC(APPLET(udhcpc, BB_DIR_SBIN, BB_SUID_DROP))
368IF_UDHCPD(APPLET(udhcpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
369IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, udpsvd))
370IF_UMOUNT(APPLET(umount, BB_DIR_BIN, BB_SUID_DROP))
371IF_UNAME(APPLET(uname, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100372IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, BB_DIR_USR_BIN, BB_SUID_DROP, unexpand))
373IF_UNIQ(APPLET(uniq, BB_DIR_USR_BIN, BB_SUID_DROP))
374IF_UNIX2DOS(APPLET_NOEXEC(unix2dos, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, unix2dos))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100375IF_UPTIME(APPLET(uptime, BB_DIR_USR_BIN, BB_SUID_DROP))
376IF_USLEEP(APPLET_NOFORK(usleep, usleep, BB_DIR_BIN, BB_SUID_DROP, usleep))
377IF_UUDECODE(APPLET(uudecode, BB_DIR_USR_BIN, BB_SUID_DROP))
378IF_UUENCODE(APPLET(uuencode, BB_DIR_USR_BIN, BB_SUID_DROP))
379IF_VCONFIG(APPLET(vconfig, BB_DIR_SBIN, BB_SUID_DROP))
Denys Vlasenko6100b512011-01-03 13:57:49 +0100380/* Needs to be run by root or be suid root - needs to change uid and gid: */
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100381IF_VLOCK(APPLET(vlock, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
382IF_VOLNAME(APPLET(volname, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100383IF_WATCH(APPLET(watch, BB_DIR_BIN, BB_SUID_DROP))
384IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP))
385IF_WC(APPLET(wc, BB_DIR_USR_BIN, BB_SUID_DROP))
386IF_WGET(APPLET(wget, BB_DIR_USR_BIN, BB_SUID_DROP))
387IF_WHICH(APPLET(which, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100388IF_WHOAMI(APPLET_NOFORK(whoami, whoami, BB_DIR_USR_BIN, BB_SUID_DROP, whoami))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100389IF_YES(APPLET_NOFORK(yes, yes, BB_DIR_USR_BIN, BB_SUID_DROP, yes))
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +0100390IF_ZCIP(APPLET(zcip, BB_DIR_SBIN, BB_SUID_DROP))
Eric Andersen8c725e62000-11-30 00:27:06 +0000391
Denys Vlasenko5fd3ddf2014-04-19 15:04:39 +0200392#if !defined(PROTOTYPES) && !defined(NAME_MAIN) && !defined(MAKE_USAGE) \
Bernhard Reutner-Fischer90786332013-06-10 17:08:22 +0200393 && !defined(MAKE_LINKS) && !defined(MAKE_SUID)
Mark Whitley130005c2000-10-25 00:28:27 +0000394};
Eric Andersen8c725e62000-11-30 00:27:06 +0000395#endif
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000396
397#undef APPLET
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000398#undef APPLET_ODDNAME
Denis Vlasenkoc44ab012007-04-09 03:11:58 +0000399#undef APPLET_NOEXEC
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000400#undef APPLET_NOFORK