blob: cf8de8eb67faaf725ecc8ab585225590b4fb8d24 [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
11name2 - applet name, converted to C (ether-wake: name2 = 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 Vlasenko6d48d3e2009-07-30 12:57:19 +020015 _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 Vlasenko6d48d3e2009-07-30 12:57:19 +020017 _BB_SUID_DROP: will drop suid prior to applet_main()
Denis Vlasenko786834b2007-04-08 17:30:10 +000018 _BB_SUID_MAYBE: neither of the above
19*/
20
Eric Andersen868c0572000-12-02 00:44:48 +000021#if defined(PROTOTYPES)
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000022# define APPLET(name,l,s) int name##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000023# define APPLET_ODDNAME(name,main,l,s,name2) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
24# define APPLET_NOEXEC(name,main,l,s,name2) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
25# define APPLET_NOFORK(name,main,l,s,name2) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko786834b2007-04-08 17:30:10 +000026
Denis Vlasenkof545be02007-10-07 17:06:26 +000027#elif defined(NAME_MAIN_CNAME)
28# define APPLET(name,l,s) name name##_main name
Denis Vlasenkof545be02007-10-07 17:06:26 +000029# define APPLET_ODDNAME(name,main,l,s,name2) name main##_main name2
30# define APPLET_NOEXEC(name,main,l,s,name2) name main##_main name2
31# define APPLET_NOFORK(name,main,l,s,name2) name main##_main name2
32
Denis Vlasenko786834b2007-04-08 17:30:10 +000033#elif defined(MAKE_USAGE) && ENABLE_FEATURE_VERBOSE_USAGE
Denys Vlasenko0e5ba082010-06-05 23:11:07 +020034# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage name##_full_usage)
35# define APPLET_ODDNAME(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage name2##_full_usage)
36# define APPLET_NOEXEC(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage name2##_full_usage)
37# define APPLET_NOFORK(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage name2##_full_usage)
Denis Vlasenko786834b2007-04-08 17:30:10 +000038
39#elif defined(MAKE_USAGE) && !ENABLE_FEATURE_VERBOSE_USAGE
Denys Vlasenko0e5ba082010-06-05 23:11:07 +020040# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage)
41# define APPLET_ODDNAME(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage)
42# define APPLET_NOEXEC(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage)
43# define APPLET_NOFORK(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage)
Denis Vlasenko786834b2007-04-08 17:30:10 +000044
Eric Andersen3574b702001-02-23 02:16:29 +000045#elif defined(MAKE_LINKS)
Denis Vlasenko786834b2007-04-08 17:30:10 +000046# define APPLET(name,l,c) LINK l name
Denis Vlasenko786834b2007-04-08 17:30:10 +000047# define APPLET_ODDNAME(name,main,l,s,name2) LINK l name
Denis Vlasenkoc44ab012007-04-09 03:11:58 +000048# define APPLET_NOEXEC(name,main,l,s,name2) LINK l name
Denis Vlasenko7e754f12007-04-09 13:04:50 +000049# define APPLET_NOFORK(name,main,l,s,name2) LINK l name
Denis Vlasenko786834b2007-04-08 17:30:10 +000050
Eric Andersen868c0572000-12-02 00:44:48 +000051#else
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000052 static struct bb_applet applets[] = { /* name, main, location, need_suid */
53# define APPLET(name,l,s) { #name, #name, l, s },
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000054# define APPLET_ODDNAME(name,main,l,s,name2) { #name, #main, l, s },
55# define APPLET_NOEXEC(name,main,l,s,name2) { #name, #main, l, s, 1 },
56# define APPLET_NOFORK(name,main,l,s,name2) { #name, #main, l, s, 1, 1 },
Eric Andersen8c725e62000-11-30 00:27:06 +000057#endif
Mark Whitley130005c2000-10-25 00:28:27 +000058
Denis Vlasenko786834b2007-04-08 17:30:10 +000059#if ENABLE_INSTALL_NO_USR
Mike Frysinger618d62f2005-04-19 23:50:22 +000060# define _BB_DIR_USR_BIN _BB_DIR_BIN
61# define _BB_DIR_USR_SBIN _BB_DIR_SBIN
Glenn L McGrathf2ba45e2003-01-19 12:55:13 +000062#endif
63
Denis Vlasenkoc44ab012007-04-09 03:11:58 +000064
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020065IF_TEST(APPLET_NOFORK([, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
66IF_TEST(APPLET_NOFORK([[, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
67IF_ACPID(APPLET(acpid, _BB_DIR_SBIN, _BB_SUID_DROP))
68IF_ADDGROUP(APPLET(addgroup, _BB_DIR_BIN, _BB_SUID_DROP))
69IF_ADDUSER(APPLET(adduser, _BB_DIR_BIN, _BB_SUID_DROP))
70IF_ADJTIMEX(APPLET(adjtimex, _BB_DIR_SBIN, _BB_SUID_DROP))
71IF_AR(APPLET(ar, _BB_DIR_USR_BIN, _BB_SUID_DROP))
72IF_ARP(APPLET(arp, _BB_DIR_SBIN, _BB_SUID_DROP))
73IF_ARPING(APPLET(arping, _BB_DIR_USR_BIN, _BB_SUID_DROP))
74IF_ASH(APPLET(ash, _BB_DIR_BIN, _BB_SUID_DROP))
75IF_AWK(APPLET_NOEXEC(awk, awk, _BB_DIR_USR_BIN, _BB_SUID_DROP, awk))
76IF_BASENAME(APPLET_NOFORK(basename, basename, _BB_DIR_USR_BIN, _BB_SUID_DROP, basename))
Denys Vlasenko40477e22010-05-20 02:09:45 +020077IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, _BB_DIR_BIN, _BB_SUID_DROP, bash))
78IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020079IF_BBCONFIG(APPLET(bbconfig, _BB_DIR_BIN, _BB_SUID_DROP))
Mike Frysinger05ed00f2009-11-04 18:53:16 -050080//IF_BBSH(APPLET(bbsh, _BB_DIR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020081IF_BEEP(APPLET(beep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020082IF_BLKID(APPLET(blkid, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenkoff027d62010-05-04 15:45:25 +020083IF_BOOTCHARTD(APPLET(bootchartd, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020084IF_BRCTL(APPLET(brctl, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
85IF_BUNZIP2(APPLET(bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
86IF_BUNZIP2(APPLET_ODDNAME(bzcat, bunzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP, bzcat))
87IF_BZIP2(APPLET(bzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
88IF_CAL(APPLET(cal, _BB_DIR_USR_BIN, _BB_SUID_DROP))
89IF_CAT(APPLET_NOFORK(cat, cat, _BB_DIR_BIN, _BB_SUID_DROP, cat))
90IF_CATV(APPLET(catv, _BB_DIR_BIN, _BB_SUID_DROP))
91IF_CHAT(APPLET(chat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
92IF_CHATTR(APPLET(chattr, _BB_DIR_BIN, _BB_SUID_DROP))
93IF_CHCON(APPLET(chcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
94IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, _BB_DIR_BIN, _BB_SUID_DROP, chgrp))
95IF_CHMOD(APPLET_NOEXEC(chmod, chmod, _BB_DIR_BIN, _BB_SUID_DROP, chmod))
96IF_CHOWN(APPLET_NOEXEC(chown, chown, _BB_DIR_BIN, _BB_SUID_DROP, chown))
97IF_CHPASSWD(APPLET(chpasswd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
98IF_CHPST(APPLET(chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP))
99IF_CHROOT(APPLET(chroot, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
100IF_CHRT(APPLET(chrt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
101IF_CHVT(APPLET(chvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
102IF_CKSUM(APPLET(cksum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
103IF_CLEAR(APPLET(clear, _BB_DIR_USR_BIN, _BB_SUID_DROP))
104IF_CMP(APPLET(cmp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
105IF_COMM(APPLET(comm, _BB_DIR_USR_BIN, _BB_SUID_DROP))
106IF_CP(APPLET_NOEXEC(cp, cp, _BB_DIR_BIN, _BB_SUID_DROP, cp))
107IF_CPIO(APPLET(cpio, _BB_DIR_BIN, _BB_SUID_DROP))
108IF_CROND(APPLET(crond, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
109IF_CRONTAB(APPLET(crontab, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
110IF_CRYPTPW(APPLET(cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP))
111IF_CTTYHACK(APPLET(cttyhack, _BB_DIR_BIN, _BB_SUID_DROP))
112IF_CUT(APPLET_NOEXEC(cut, cut, _BB_DIR_USR_BIN, _BB_SUID_DROP, cut))
113IF_DATE(APPLET(date, _BB_DIR_BIN, _BB_SUID_DROP))
114IF_DC(APPLET(dc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
115IF_DD(APPLET_NOEXEC(dd, dd, _BB_DIR_BIN, _BB_SUID_DROP, dd))
116IF_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
117IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_DROP, delgroup))
118IF_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_DROP))
119IF_DEPMOD(APPLET(depmod, _BB_DIR_SBIN, _BB_SUID_DROP))
120IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
121IF_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_DROP))
122IF_DEVMEM(APPLET(devmem, _BB_DIR_SBIN, _BB_SUID_DROP))
123IF_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100124IF_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200125IF_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_DROP))
126IF_DIRNAME(APPLET_NOFORK(dirname, dirname, _BB_DIR_USR_BIN, _BB_SUID_DROP, dirname))
127IF_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_DROP))
128IF_DNSD(APPLET(dnsd, _BB_DIR_USR_SBIN, _BB_SUID_REQUIRE))
129IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, _BB_DIR_BIN, _BB_SUID_DROP, dnsdomainname))
130IF_DOS2UNIX(APPLET(dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP))
131IF_DPKG(APPLET(dpkg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
132IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, _BB_DIR_USR_BIN, _BB_SUID_DROP, dpkg_deb))
133IF_DU(APPLET(du, _BB_DIR_USR_BIN, _BB_SUID_DROP))
134IF_DUMPKMAP(APPLET(dumpkmap, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100135IF_DUMPLEASES(APPLET(dumpleases, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200136//IF_E2FSCK(APPLET(e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
137//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP, e2label))
138IF_ECHO(APPLET_NOFORK(echo, echo, _BB_DIR_BIN, _BB_SUID_DROP, echo))
139IF_ED(APPLET(ed, _BB_DIR_BIN, _BB_SUID_DROP))
140IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, _BB_DIR_BIN, _BB_SUID_DROP, egrep))
141IF_EJECT(APPLET(eject, _BB_DIR_USR_BIN, _BB_SUID_DROP))
142IF_ENV(APPLET_NOEXEC(env, env, _BB_DIR_USR_BIN, _BB_SUID_DROP, env))
143IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envdir))
144IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envuidgid))
145IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, _BB_DIR_USR_BIN, _BB_SUID_DROP, ether_wake))
146IF_EXPAND(APPLET(expand, _BB_DIR_USR_BIN, _BB_SUID_DROP))
147IF_EXPR(APPLET(expr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
148IF_FAKEIDENTD(APPLET(fakeidentd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
149IF_FALSE(APPLET_NOFORK(false, false, _BB_DIR_BIN, _BB_SUID_DROP, false))
150IF_FBSET(APPLET(fbset, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
151IF_FBSPLASH(APPLET(fbsplash, _BB_DIR_SBIN, _BB_SUID_DROP))
152IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, _BB_DIR_BIN, _BB_SUID_DROP, fdflush))
153IF_FDFORMAT(APPLET(fdformat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
154IF_FDISK(APPLET(fdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
Grigory Batalovad7a5d42010-05-23 23:22:10 +0200155IF_FGCONSOLE(APPLET(fgconsole, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200156IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, _BB_DIR_BIN, _BB_SUID_DROP, fgrep))
157IF_FIND(APPLET_NOEXEC(find, find, _BB_DIR_USR_BIN, _BB_SUID_DROP, find))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000158IF_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200159IF_FLASH_ERASEALL(APPLET(flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
160IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_lock))
161IF_FLASH_UNLOCK(APPLET_ODDNAME(flash_unlock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_unlock))
Stefan Seyfriedd095fd42009-11-21 18:32:19 +0100162IF_FLASHCP(APPLET(flashcp, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Timo Teras892d4b62010-03-18 22:45:35 +0100163IF_FLOCK(APPLET(flock, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200164IF_FOLD(APPLET(fold, _BB_DIR_USR_BIN, _BB_SUID_DROP))
165IF_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_DROP))
166IF_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
167IF_FSCK(APPLET(fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
168//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext2))
169//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext3))
170IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_minix))
171IF_FSYNC(APPLET_NOFORK(fsync, fsync, _BB_DIR_BIN, _BB_SUID_DROP, fsync))
172IF_FTPD(APPLET(ftpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
173IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpget))
174IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpput))
175IF_FUSER(APPLET(fuser, _BB_DIR_USR_BIN, _BB_SUID_DROP))
176IF_GETENFORCE(APPLET(getenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
177IF_GETOPT(APPLET(getopt, _BB_DIR_BIN, _BB_SUID_DROP))
178IF_GETSEBOOL(APPLET(getsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
179IF_GETTY(APPLET(getty, _BB_DIR_SBIN, _BB_SUID_DROP))
180IF_GREP(APPLET(grep, _BB_DIR_BIN, _BB_SUID_DROP))
181IF_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_DROP))
182IF_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_DROP))
183IF_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_DROP))
184IF_HD(APPLET_NOEXEC(hd, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hd))
185IF_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_DROP))
186IF_HEAD(APPLET(head, _BB_DIR_USR_BIN, _BB_SUID_DROP))
187IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hexdump))
188IF_HOSTID(APPLET_NOFORK(hostid, hostid, _BB_DIR_USR_BIN, _BB_SUID_DROP, hostid))
189IF_HOSTNAME(APPLET(hostname, _BB_DIR_BIN, _BB_SUID_DROP))
190IF_HTTPD(APPLET(httpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
191IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
192IF_HWCLOCK(APPLET(hwclock, _BB_DIR_SBIN, _BB_SUID_DROP))
193IF_ID(APPLET(id, _BB_DIR_USR_BIN, _BB_SUID_DROP))
194IF_IFCONFIG(APPLET(ifconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
195IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifdown))
196IF_IFENSLAVE(APPLET(ifenslave, _BB_DIR_SBIN, _BB_SUID_DROP))
197IF_IFPLUGD(APPLET(ifplugd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
198IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifup))
199IF_INETD(APPLET(inetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
200IF_INIT(APPLET(init, _BB_DIR_SBIN, _BB_SUID_DROP))
201IF_INOTIFYD(APPLET(inotifyd, _BB_DIR_SBIN, _BB_SUID_DROP))
202IF_INSMOD(APPLET(insmod, _BB_DIR_SBIN, _BB_SUID_DROP))
203IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
204IF_INSTALL(APPLET(install, _BB_DIR_USR_BIN, _BB_SUID_DROP))
205IF_IONICE(APPLET(ionice, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000206#if ENABLE_FEATURE_IP_ADDRESS \
207 || ENABLE_FEATURE_IP_ROUTE \
208 || ENABLE_FEATURE_IP_LINK \
209 || ENABLE_FEATURE_IP_TUNNEL \
210 || ENABLE_FEATURE_IP_RULE
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200211IF_IP(APPLET(ip, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000212#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200213IF_IPADDR(APPLET(ipaddr, _BB_DIR_BIN, _BB_SUID_DROP))
214IF_IPCALC(APPLET(ipcalc, _BB_DIR_BIN, _BB_SUID_DROP))
215IF_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
216IF_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
217IF_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_DROP))
218IF_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_DROP))
219IF_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_DROP))
220IF_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_DROP))
221IF_KBD_MODE(APPLET(kbd_mode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
222IF_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_DROP))
223IF_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall))
224IF_KILLALL5(APPLET_ODDNAME(killall5, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall5))
225IF_KLOGD(APPLET(klogd, _BB_DIR_SBIN, _BB_SUID_DROP))
226IF_LASH(APPLET(lash, _BB_DIR_BIN, _BB_SUID_DROP))
227IF_LAST(APPLET(last, _BB_DIR_USR_BIN, _BB_SUID_DROP))
228IF_LENGTH(APPLET_NOFORK(length, length, _BB_DIR_USR_BIN, _BB_SUID_DROP, length))
229IF_LESS(APPLET(less, _BB_DIR_USR_BIN, _BB_SUID_DROP))
230IF_SETARCH(APPLET_ODDNAME(linux32, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux32))
231IF_SETARCH(APPLET_ODDNAME(linux64, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux64))
232IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, _BB_DIR_ROOT, _BB_SUID_DROP, linuxrc))
233IF_LN(APPLET_NOEXEC(ln, ln, _BB_DIR_BIN, _BB_SUID_DROP, ln))
234IF_LOAD_POLICY(APPLET(load_policy, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
235IF_LOADFONT(APPLET(loadfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
236IF_LOADKMAP(APPLET(loadkmap, _BB_DIR_SBIN, _BB_SUID_DROP))
237IF_LOGGER(APPLET(logger, _BB_DIR_USR_BIN, _BB_SUID_DROP))
238IF_LOGIN(APPLET(login, _BB_DIR_BIN, _BB_SUID_REQUIRE))
239IF_LOGNAME(APPLET_NOFORK(logname, logname, _BB_DIR_USR_BIN, _BB_SUID_DROP, logname))
240IF_LOGREAD(APPLET(logread, _BB_DIR_SBIN, _BB_SUID_DROP))
241IF_LOSETUP(APPLET(losetup, _BB_DIR_SBIN, _BB_SUID_DROP))
242IF_LPD(APPLET(lpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
243IF_LPQ(APPLET_ODDNAME(lpq, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpq))
244IF_LPR(APPLET_ODDNAME(lpr, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpr))
245IF_LS(APPLET_NOEXEC(ls, ls, _BB_DIR_BIN, _BB_SUID_DROP, ls))
246IF_LSATTR(APPLET(lsattr, _BB_DIR_BIN, _BB_SUID_DROP))
247IF_LSMOD(APPLET(lsmod, _BB_DIR_SBIN, _BB_SUID_DROP))
248IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
Gustavo Zacariasc7efd642010-05-06 11:57:14 -0300249IF_LSPCI(APPLET(lspci, _BB_DIR_USR_BIN, _BB_SUID_DROP))
250IF_LSUSB(APPLET(lsusb, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenkoccb88a62010-05-27 02:22:54 +0200251IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzcat))
Denys Vlasenkoe04c8672010-05-30 03:33:50 +0200252IF_LZMA(APPLET_ODDNAME(lzma, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzma))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200253IF_LZOP(APPLET(lzop, _BB_DIR_BIN, _BB_SUID_DROP))
254IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzopcat))
255IF_MAKEDEVS(APPLET(makedevs, _BB_DIR_SBIN, _BB_SUID_DROP))
256IF_MAKEMIME(APPLET(makemime, _BB_DIR_BIN, _BB_SUID_DROP))
257IF_MAN(APPLET(man, _BB_DIR_SBIN, _BB_SUID_DROP))
258IF_MATCHPATHCON(APPLET(matchpathcon, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
259IF_MD5SUM(APPLET_ODDNAME(md5sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, md5sum))
260IF_MDEV(APPLET(mdev, _BB_DIR_SBIN, _BB_SUID_DROP))
261IF_MESG(APPLET(mesg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
262IF_MICROCOM(APPLET(microcom, _BB_DIR_USR_BIN, _BB_SUID_DROP))
263IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, _BB_DIR_BIN, _BB_SUID_DROP, mkdir))
264IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200265IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200266IF_MKFIFO(APPLET(mkfifo, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200267IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200268//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext3))
269IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_minix))
Vladimir Dronnikov0d8ea642009-11-02 10:41:46 +0100270IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_reiser))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200271IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
272IF_MKNOD(APPLET(mknod, _BB_DIR_BIN, _BB_SUID_DROP))
273IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkpasswd))
274IF_MKSWAP(APPLET(mkswap, _BB_DIR_SBIN, _BB_SUID_DROP))
275IF_MKTEMP(APPLET(mktemp, _BB_DIR_BIN, _BB_SUID_DROP))
276IF_MODPROBE(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
277IF_MODPROBE_SMALL(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
278IF_MORE(APPLET(more, _BB_DIR_BIN, _BB_SUID_DROP))
279IF_MOUNT(APPLET(mount, _BB_DIR_BIN, IF_DESKTOP(_BB_SUID_MAYBE) IF_NOT_DESKTOP(_BB_SUID_DROP)))
280IF_MOUNTPOINT(APPLET(mountpoint, _BB_DIR_BIN, _BB_SUID_DROP))
281IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
282IF_MT(APPLET(mt, _BB_DIR_BIN, _BB_SUID_DROP))
283IF_MV(APPLET(mv, _BB_DIR_BIN, _BB_SUID_DROP))
284IF_NAMEIF(APPLET(nameif, _BB_DIR_SBIN, _BB_SUID_DROP))
285IF_NC(APPLET(nc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
286IF_NETSTAT(APPLET(netstat, _BB_DIR_BIN, _BB_SUID_DROP))
287IF_NICE(APPLET(nice, _BB_DIR_BIN, _BB_SUID_DROP))
288IF_NMETER(APPLET(nmeter, _BB_DIR_USR_BIN, _BB_SUID_DROP))
289IF_NOHUP(APPLET(nohup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
290IF_NSLOOKUP(APPLET(nslookup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Adam Tkacb1585062009-11-22 03:43:55 +0100291IF_NTPD(APPLET(ntpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200292IF_OD(APPLET(od, _BB_DIR_USR_BIN, _BB_SUID_DROP))
293IF_OPENVT(APPLET(openvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
294//IF_PARSE(APPLET(parse, _BB_DIR_USR_BIN, _BB_SUID_DROP))
295IF_PASSWD(APPLET(passwd, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
296IF_PATCH(APPLET(patch, _BB_DIR_USR_BIN, _BB_SUID_DROP))
297IF_PGREP(APPLET(pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
298IF_PIDOF(APPLET(pidof, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000299IF_PING(APPLET(ping, _BB_DIR_BIN, _BB_SUID_MAYBE))
Denys Vlasenkobe116492009-07-30 12:42:16 +0200300IF_PING6(APPLET(ping6, _BB_DIR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200301IF_PIPE_PROGRESS(APPLET(pipe_progress, _BB_DIR_BIN, _BB_SUID_DROP))
302IF_PIVOT_ROOT(APPLET(pivot_root, _BB_DIR_SBIN, _BB_SUID_DROP))
303IF_PKILL(APPLET_ODDNAME(pkill, pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP, pkill))
304IF_POPMAILDIR(APPLET(popmaildir, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
305IF_HALT(APPLET_ODDNAME(poweroff, halt, _BB_DIR_SBIN, _BB_SUID_DROP, poweroff))
306IF_PRINTENV(APPLET(printenv, _BB_DIR_BIN, _BB_SUID_DROP))
307IF_PRINTF(APPLET_NOFORK(printf, printf, _BB_DIR_USR_BIN, _BB_SUID_DROP, printf))
308IF_PS(APPLET(ps, _BB_DIR_BIN, _BB_SUID_DROP))
309IF_PSCAN(APPLET(pscan, _BB_DIR_USR_BIN, _BB_SUID_DROP))
310IF_PWD(APPLET_NOFORK(pwd, pwd, _BB_DIR_BIN, _BB_SUID_DROP, pwd))
311IF_RAIDAUTORUN(APPLET(raidautorun, _BB_DIR_SBIN, _BB_SUID_DROP))
312IF_RDATE(APPLET(rdate, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
313IF_RDEV(APPLET(rdev, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
314IF_READAHEAD(APPLET(readahead, _BB_DIR_USR_BIN, _BB_SUID_DROP))
315IF_READLINK(APPLET(readlink, _BB_DIR_USR_BIN, _BB_SUID_DROP))
316IF_READPROFILE(APPLET(readprofile, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
317IF_REALPATH(APPLET(realpath, _BB_DIR_USR_BIN, _BB_SUID_DROP))
318IF_HALT(APPLET_ODDNAME(reboot, halt, _BB_DIR_SBIN, _BB_SUID_DROP, reboot))
319IF_REFORMIME(APPLET(reformime, _BB_DIR_BIN, _BB_SUID_DROP))
320IF_RENICE(APPLET(renice, _BB_DIR_USR_BIN, _BB_SUID_DROP))
321IF_RESET(APPLET(reset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
322IF_RESIZE(APPLET(resize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
323IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, _BB_DIR_SBIN, _BB_SUID_DROP, restorecon))
Souf Oued43afd752010-05-02 18:45:02 +0200324IF_RFKILL(APPLET(rfkill, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200325IF_RM(APPLET_NOFORK(rm, rm, _BB_DIR_BIN, _BB_SUID_DROP, rm))
326IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, _BB_DIR_BIN, _BB_SUID_DROP, rmdir))
327IF_RMMOD(APPLET(rmmod, _BB_DIR_SBIN, _BB_SUID_DROP))
328IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
329IF_ROUTE(APPLET(route, _BB_DIR_SBIN, _BB_SUID_DROP))
330IF_RPM(APPLET(rpm, _BB_DIR_BIN, _BB_SUID_DROP))
331IF_RPM2CPIO(APPLET(rpm2cpio, _BB_DIR_USR_BIN, _BB_SUID_DROP))
332IF_RTCWAKE(APPLET(rtcwake, _BB_DIR_USR_BIN, _BB_SUID_DROP))
333IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, _BB_DIR_BIN, _BB_SUID_DROP, run_parts))
334IF_RUNCON(APPLET(runcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
335IF_RUNLEVEL(APPLET(runlevel, _BB_DIR_SBIN, _BB_SUID_DROP))
336IF_RUNSV(APPLET(runsv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
337IF_RUNSVDIR(APPLET(runsvdir, _BB_DIR_USR_BIN, _BB_SUID_DROP))
338IF_RX(APPLET(rx, _BB_DIR_USR_BIN, _BB_SUID_DROP))
339IF_SCRIPT(APPLET(script, _BB_DIR_USR_BIN, _BB_SUID_DROP))
340IF_SCRIPTREPLAY(APPLET(scriptreplay, _BB_DIR_BIN, _BB_SUID_DROP))
341IF_SED(APPLET(sed, _BB_DIR_BIN, _BB_SUID_DROP))
342IF_SELINUXENABLED(APPLET(selinuxenabled, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
343IF_SENDMAIL(APPLET(sendmail, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
344IF_SEQ(APPLET_NOFORK(seq, seq, _BB_DIR_USR_BIN, _BB_SUID_DROP, seq))
345IF_SESTATUS(APPLET(sestatus, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
346IF_SETARCH(APPLET(setarch, _BB_DIR_BIN, _BB_SUID_DROP))
347IF_SETCONSOLE(APPLET(setconsole, _BB_DIR_SBIN, _BB_SUID_DROP))
348IF_SETENFORCE(APPLET(setenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
349IF_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_DROP))
350IF_SETFONT(APPLET(setfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
351IF_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_DROP))
352IF_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
353IF_SETSEBOOL(APPLET(setsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
354IF_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_DROP))
355IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, setuidgid))
356IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, _BB_DIR_BIN, _BB_SUID_DROP, sh))
357IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200358IF_SHA1SUM(APPLET_ODDNAME(sha1sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha1sum))
359IF_SHA256SUM(APPLET_ODDNAME(sha256sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha256sum))
360IF_SHA512SUM(APPLET_ODDNAME(sha512sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha512sum))
361IF_SHOWKEY(APPLET(showkey, _BB_DIR_USR_BIN, _BB_SUID_DROP))
362IF_SLATTACH(APPLET(slattach, _BB_DIR_SBIN, _BB_SUID_DROP))
363IF_SLEEP(APPLET_NOFORK(sleep, sleep, _BB_DIR_BIN, _BB_SUID_DROP, sleep))
364IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, softlimit))
365IF_SORT(APPLET_NOEXEC(sort, sort, _BB_DIR_USR_BIN, _BB_SUID_DROP, sort))
366IF_SPLIT(APPLET(split, _BB_DIR_USR_BIN, _BB_SUID_DROP))
367IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, _BB_DIR_SBIN, _BB_SUID_DROP, start_stop_daemon))
368IF_STAT(APPLET(stat, _BB_DIR_BIN, _BB_SUID_DROP))
369IF_STRINGS(APPLET(strings, _BB_DIR_USR_BIN, _BB_SUID_DROP))
370IF_STTY(APPLET(stty, _BB_DIR_BIN, _BB_SUID_DROP))
371IF_SU(APPLET(su, _BB_DIR_BIN, _BB_SUID_REQUIRE))
372IF_SULOGIN(APPLET(sulogin, _BB_DIR_SBIN, _BB_SUID_DROP))
373IF_SUM(APPLET(sum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
374IF_SV(APPLET(sv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
375IF_SVLOGD(APPLET(svlogd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
376IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP,swapoff))
377IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapon))
378IF_SWITCH_ROOT(APPLET(switch_root, _BB_DIR_SBIN, _BB_SUID_DROP))
379IF_SYNC(APPLET_NOFORK(sync, sync, _BB_DIR_BIN, _BB_SUID_DROP, sync))
380IF_BB_SYSCTL(APPLET(sysctl, _BB_DIR_SBIN, _BB_SUID_DROP))
381IF_SYSLOGD(APPLET(syslogd, _BB_DIR_SBIN, _BB_SUID_DROP))
382IF_TAC(APPLET_NOEXEC(tac, tac, _BB_DIR_USR_BIN, _BB_SUID_DROP, tac))
383IF_TAIL(APPLET(tail, _BB_DIR_USR_BIN, _BB_SUID_DROP))
384IF_TAR(APPLET(tar, _BB_DIR_BIN, _BB_SUID_DROP))
385IF_TASKSET(APPLET(taskset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
386/* IF_TC(APPLET(tc, _BB_DIR_SBIN, _BB_SUID_DROP)) */
387IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, tcpsvd))
388IF_TEE(APPLET(tee, _BB_DIR_USR_BIN, _BB_SUID_DROP))
389IF_TELNET(APPLET(telnet, _BB_DIR_USR_BIN, _BB_SUID_DROP))
390IF_TELNETD(APPLET(telnetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
391IF_TEST(APPLET_NOFORK(test, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
Denis Vlasenko31635552007-01-20 16:54:19 +0000392#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200393IF_TFTP(APPLET(tftp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
394IF_TFTPD(APPLET(tftpd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko31635552007-01-20 16:54:19 +0000395#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200396IF_TIME(APPLET(time, _BB_DIR_USR_BIN, _BB_SUID_DROP))
397IF_TIMEOUT(APPLET(timeout, _BB_DIR_USR_BIN, _BB_SUID_DROP))
398IF_TOP(APPLET(top, _BB_DIR_USR_BIN, _BB_SUID_DROP))
399IF_TOUCH(APPLET_NOFORK(touch, touch, _BB_DIR_BIN, _BB_SUID_DROP, touch))
400IF_TR(APPLET(tr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000401IF_TRACEROUTE(APPLET(traceroute, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100402IF_TRACEROUTE6(APPLET(traceroute6, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200403IF_TRUE(APPLET_NOFORK(true, true, _BB_DIR_BIN, _BB_SUID_DROP, true))
404IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP))
405IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
406IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko67743862010-05-09 00:13:40 +0200407IF_TUNE2FS(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100408IF_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP))
409IF_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200410IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd))
411IF_UMOUNT(APPLET(umount, _BB_DIR_BIN, _BB_SUID_DROP))
412IF_UNAME(APPLET(uname, _BB_DIR_BIN, _BB_SUID_DROP))
413IF_UNCOMPRESS(APPLET(uncompress, _BB_DIR_BIN, _BB_SUID_DROP))
414IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, _BB_DIR_USR_BIN, _BB_SUID_DROP, unexpand))
415IF_UNIQ(APPLET(uniq, _BB_DIR_USR_BIN, _BB_SUID_DROP))
416IF_UNIX2DOS(APPLET_ODDNAME(unix2dos, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, unix2dos))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200417IF_UNXZ(APPLET(unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200418IF_UNLZMA(APPLET(unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP))
419IF_LZOP(APPLET_ODDNAME(unlzop, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, unlzop))
420IF_UNZIP(APPLET(unzip, _BB_DIR_USR_BIN, _BB_SUID_DROP))
421IF_UPTIME(APPLET(uptime, _BB_DIR_USR_BIN, _BB_SUID_DROP))
422IF_USLEEP(APPLET_NOFORK(usleep, usleep, _BB_DIR_BIN, _BB_SUID_DROP, usleep))
423IF_UUDECODE(APPLET(uudecode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
424IF_UUENCODE(APPLET(uuencode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
425IF_VCONFIG(APPLET(vconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
426IF_VI(APPLET(vi, _BB_DIR_BIN, _BB_SUID_DROP))
427IF_VLOCK(APPLET(vlock, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Matthew Stoltenberg4803db52009-08-13 00:59:32 +0200428IF_VOLNAME(APPLET(volname, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +0100429IF_WALL(APPLET(wall, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200430IF_WATCH(APPLET(watch, _BB_DIR_BIN, _BB_SUID_DROP))
431IF_WATCHDOG(APPLET(watchdog, _BB_DIR_SBIN, _BB_SUID_DROP))
432IF_WC(APPLET(wc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
433IF_WGET(APPLET(wget, _BB_DIR_USR_BIN, _BB_SUID_DROP))
434IF_WHICH(APPLET(which, _BB_DIR_USR_BIN, _BB_SUID_DROP))
435IF_WHO(APPLET(who, _BB_DIR_USR_BIN, _BB_SUID_DROP))
436IF_WHOAMI(APPLET_NOFORK(whoami, whoami, _BB_DIR_USR_BIN, _BB_SUID_DROP, whoami))
437IF_XARGS(APPLET_NOEXEC(xargs, xargs, _BB_DIR_USR_BIN, _BB_SUID_DROP, xargs))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200438IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xzcat))
439IF_XZ(APPLET_ODDNAME(xz, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xz))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200440IF_YES(APPLET_NOFORK(yes, yes, _BB_DIR_USR_BIN, _BB_SUID_DROP, yes))
441IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, _BB_DIR_BIN, _BB_SUID_DROP, zcat))
442IF_ZCIP(APPLET(zcip, _BB_DIR_SBIN, _BB_SUID_DROP))
Eric Andersen8c725e62000-11-30 00:27:06 +0000443
Denis Vlasenkof545be02007-10-07 17:06:26 +0000444#if !defined(PROTOTYPES) && !defined(NAME_MAIN_CNAME) && !defined(MAKE_USAGE)
Mark Whitley130005c2000-10-25 00:28:27 +0000445};
Eric Andersen8c725e62000-11-30 00:27:06 +0000446#endif
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000447
448#undef APPLET
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000449#undef APPLET_ODDNAME
Denis Vlasenkoc44ab012007-04-09 03:11:58 +0000450#undef APPLET_NOEXEC
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000451#undef APPLET_NOFORK