blob: 195598fee344e5e59523c82d065b975fe95944eb [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 Vlasenko6c5bf0d2010-06-06 00:53:45 +020065INSERT
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020066IF_TEST(APPLET_NOFORK([, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
67IF_TEST(APPLET_NOFORK([[, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
68IF_ACPID(APPLET(acpid, _BB_DIR_SBIN, _BB_SUID_DROP))
69IF_ADDGROUP(APPLET(addgroup, _BB_DIR_BIN, _BB_SUID_DROP))
70IF_ADDUSER(APPLET(adduser, _BB_DIR_BIN, _BB_SUID_DROP))
71IF_ADJTIMEX(APPLET(adjtimex, _BB_DIR_SBIN, _BB_SUID_DROP))
72IF_AR(APPLET(ar, _BB_DIR_USR_BIN, _BB_SUID_DROP))
73IF_ARP(APPLET(arp, _BB_DIR_SBIN, _BB_SUID_DROP))
74IF_ARPING(APPLET(arping, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020075IF_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))
77IF_BBCONFIG(APPLET(bbconfig, _BB_DIR_BIN, _BB_SUID_DROP))
Mike Frysinger05ed00f2009-11-04 18:53:16 -050078//IF_BBSH(APPLET(bbsh, _BB_DIR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020079IF_BEEP(APPLET(beep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020080IF_BLKID(APPLET(blkid, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenkoff027d62010-05-04 15:45:25 +020081IF_BOOTCHARTD(APPLET(bootchartd, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020082IF_BRCTL(APPLET(brctl, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020083IF_BZIP2(APPLET(bzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
84IF_CAL(APPLET(cal, _BB_DIR_USR_BIN, _BB_SUID_DROP))
85IF_CAT(APPLET_NOFORK(cat, cat, _BB_DIR_BIN, _BB_SUID_DROP, cat))
86IF_CATV(APPLET(catv, _BB_DIR_BIN, _BB_SUID_DROP))
87IF_CHAT(APPLET(chat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
88IF_CHATTR(APPLET(chattr, _BB_DIR_BIN, _BB_SUID_DROP))
89IF_CHCON(APPLET(chcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
90IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, _BB_DIR_BIN, _BB_SUID_DROP, chgrp))
91IF_CHMOD(APPLET_NOEXEC(chmod, chmod, _BB_DIR_BIN, _BB_SUID_DROP, chmod))
92IF_CHOWN(APPLET_NOEXEC(chown, chown, _BB_DIR_BIN, _BB_SUID_DROP, chown))
93IF_CHPASSWD(APPLET(chpasswd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
94IF_CHPST(APPLET(chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP))
95IF_CHROOT(APPLET(chroot, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
96IF_CHRT(APPLET(chrt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
97IF_CHVT(APPLET(chvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
98IF_CKSUM(APPLET(cksum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
99IF_CLEAR(APPLET(clear, _BB_DIR_USR_BIN, _BB_SUID_DROP))
100IF_CMP(APPLET(cmp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
101IF_COMM(APPLET(comm, _BB_DIR_USR_BIN, _BB_SUID_DROP))
102IF_CP(APPLET_NOEXEC(cp, cp, _BB_DIR_BIN, _BB_SUID_DROP, cp))
103IF_CPIO(APPLET(cpio, _BB_DIR_BIN, _BB_SUID_DROP))
104IF_CROND(APPLET(crond, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
105IF_CRONTAB(APPLET(crontab, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
106IF_CRYPTPW(APPLET(cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200107IF_CUT(APPLET_NOEXEC(cut, cut, _BB_DIR_USR_BIN, _BB_SUID_DROP, cut))
108IF_DATE(APPLET(date, _BB_DIR_BIN, _BB_SUID_DROP))
109IF_DC(APPLET(dc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
110IF_DD(APPLET_NOEXEC(dd, dd, _BB_DIR_BIN, _BB_SUID_DROP, dd))
111IF_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
112IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_DROP, delgroup))
113IF_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_DROP))
114IF_DEPMOD(APPLET(depmod, _BB_DIR_SBIN, _BB_SUID_DROP))
115IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
116IF_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))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100119IF_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200120IF_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_DROP))
121IF_DIRNAME(APPLET_NOFORK(dirname, dirname, _BB_DIR_USR_BIN, _BB_SUID_DROP, dirname))
122IF_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_DROP))
123IF_DNSD(APPLET(dnsd, _BB_DIR_USR_SBIN, _BB_SUID_REQUIRE))
124IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, _BB_DIR_BIN, _BB_SUID_DROP, dnsdomainname))
125IF_DOS2UNIX(APPLET(dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP))
126IF_DPKG(APPLET(dpkg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
127IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, _BB_DIR_USR_BIN, _BB_SUID_DROP, dpkg_deb))
128IF_DU(APPLET(du, _BB_DIR_USR_BIN, _BB_SUID_DROP))
129IF_DUMPKMAP(APPLET(dumpkmap, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100130IF_DUMPLEASES(APPLET(dumpleases, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200131//IF_E2FSCK(APPLET(e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
132//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP, e2label))
133IF_ECHO(APPLET_NOFORK(echo, echo, _BB_DIR_BIN, _BB_SUID_DROP, echo))
134IF_ED(APPLET(ed, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200135IF_EJECT(APPLET(eject, _BB_DIR_USR_BIN, _BB_SUID_DROP))
136IF_ENV(APPLET_NOEXEC(env, env, _BB_DIR_USR_BIN, _BB_SUID_DROP, env))
137IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envdir))
138IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envuidgid))
139IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, _BB_DIR_USR_BIN, _BB_SUID_DROP, ether_wake))
140IF_EXPAND(APPLET(expand, _BB_DIR_USR_BIN, _BB_SUID_DROP))
141IF_EXPR(APPLET(expr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
142IF_FAKEIDENTD(APPLET(fakeidentd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
143IF_FALSE(APPLET_NOFORK(false, false, _BB_DIR_BIN, _BB_SUID_DROP, false))
144IF_FBSET(APPLET(fbset, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
145IF_FBSPLASH(APPLET(fbsplash, _BB_DIR_SBIN, _BB_SUID_DROP))
146IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, _BB_DIR_BIN, _BB_SUID_DROP, fdflush))
147IF_FDFORMAT(APPLET(fdformat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
148IF_FDISK(APPLET(fdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
Grigory Batalovad7a5d42010-05-23 23:22:10 +0200149IF_FGCONSOLE(APPLET(fgconsole, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000150IF_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200151IF_FLASH_ERASEALL(APPLET(flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
152IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_lock))
153IF_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 +0100154IF_FLASHCP(APPLET(flashcp, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Timo Teras892d4b62010-03-18 22:45:35 +0100155IF_FLOCK(APPLET(flock, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200156IF_FOLD(APPLET(fold, _BB_DIR_USR_BIN, _BB_SUID_DROP))
157IF_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_DROP))
158IF_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
159IF_FSCK(APPLET(fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
160//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext2))
161//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext3))
162IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_minix))
163IF_FSYNC(APPLET_NOFORK(fsync, fsync, _BB_DIR_BIN, _BB_SUID_DROP, fsync))
164IF_FTPD(APPLET(ftpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
165IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpget))
166IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpput))
167IF_FUSER(APPLET(fuser, _BB_DIR_USR_BIN, _BB_SUID_DROP))
168IF_GETENFORCE(APPLET(getenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
169IF_GETOPT(APPLET(getopt, _BB_DIR_BIN, _BB_SUID_DROP))
170IF_GETSEBOOL(APPLET(getsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
171IF_GETTY(APPLET(getty, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200172IF_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_DROP))
173IF_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_DROP))
174IF_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_DROP))
175IF_HD(APPLET_NOEXEC(hd, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hd))
176IF_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_DROP))
177IF_HEAD(APPLET(head, _BB_DIR_USR_BIN, _BB_SUID_DROP))
178IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hexdump))
179IF_HOSTID(APPLET_NOFORK(hostid, hostid, _BB_DIR_USR_BIN, _BB_SUID_DROP, hostid))
180IF_HOSTNAME(APPLET(hostname, _BB_DIR_BIN, _BB_SUID_DROP))
181IF_HTTPD(APPLET(httpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200182IF_HWCLOCK(APPLET(hwclock, _BB_DIR_SBIN, _BB_SUID_DROP))
183IF_ID(APPLET(id, _BB_DIR_USR_BIN, _BB_SUID_DROP))
184IF_IFCONFIG(APPLET(ifconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
185IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifdown))
186IF_IFENSLAVE(APPLET(ifenslave, _BB_DIR_SBIN, _BB_SUID_DROP))
187IF_IFPLUGD(APPLET(ifplugd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
188IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifup))
189IF_INETD(APPLET(inetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
190IF_INIT(APPLET(init, _BB_DIR_SBIN, _BB_SUID_DROP))
191IF_INOTIFYD(APPLET(inotifyd, _BB_DIR_SBIN, _BB_SUID_DROP))
192IF_INSMOD(APPLET(insmod, _BB_DIR_SBIN, _BB_SUID_DROP))
193IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
194IF_INSTALL(APPLET(install, _BB_DIR_USR_BIN, _BB_SUID_DROP))
195IF_IONICE(APPLET(ionice, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000196#if ENABLE_FEATURE_IP_ADDRESS \
197 || ENABLE_FEATURE_IP_ROUTE \
198 || ENABLE_FEATURE_IP_LINK \
199 || ENABLE_FEATURE_IP_TUNNEL \
200 || ENABLE_FEATURE_IP_RULE
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200201IF_IP(APPLET(ip, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000202#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200203IF_IPADDR(APPLET(ipaddr, _BB_DIR_BIN, _BB_SUID_DROP))
204IF_IPCALC(APPLET(ipcalc, _BB_DIR_BIN, _BB_SUID_DROP))
205IF_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
206IF_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
207IF_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_DROP))
208IF_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_DROP))
209IF_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_DROP))
210IF_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_DROP))
211IF_KBD_MODE(APPLET(kbd_mode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
212IF_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_DROP))
213IF_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall))
214IF_KILLALL5(APPLET_ODDNAME(killall5, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall5))
215IF_KLOGD(APPLET(klogd, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200216IF_LAST(APPLET(last, _BB_DIR_USR_BIN, _BB_SUID_DROP))
217IF_LENGTH(APPLET_NOFORK(length, length, _BB_DIR_USR_BIN, _BB_SUID_DROP, length))
218IF_LESS(APPLET(less, _BB_DIR_USR_BIN, _BB_SUID_DROP))
219IF_SETARCH(APPLET_ODDNAME(linux32, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux32))
220IF_SETARCH(APPLET_ODDNAME(linux64, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux64))
221IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, _BB_DIR_ROOT, _BB_SUID_DROP, linuxrc))
222IF_LN(APPLET_NOEXEC(ln, ln, _BB_DIR_BIN, _BB_SUID_DROP, ln))
223IF_LOAD_POLICY(APPLET(load_policy, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
224IF_LOADFONT(APPLET(loadfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
225IF_LOADKMAP(APPLET(loadkmap, _BB_DIR_SBIN, _BB_SUID_DROP))
226IF_LOGGER(APPLET(logger, _BB_DIR_USR_BIN, _BB_SUID_DROP))
227IF_LOGIN(APPLET(login, _BB_DIR_BIN, _BB_SUID_REQUIRE))
228IF_LOGNAME(APPLET_NOFORK(logname, logname, _BB_DIR_USR_BIN, _BB_SUID_DROP, logname))
229IF_LOGREAD(APPLET(logread, _BB_DIR_SBIN, _BB_SUID_DROP))
230IF_LOSETUP(APPLET(losetup, _BB_DIR_SBIN, _BB_SUID_DROP))
231IF_LPD(APPLET(lpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
232IF_LPQ(APPLET_ODDNAME(lpq, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpq))
233IF_LPR(APPLET_ODDNAME(lpr, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpr))
234IF_LS(APPLET_NOEXEC(ls, ls, _BB_DIR_BIN, _BB_SUID_DROP, ls))
235IF_LSATTR(APPLET(lsattr, _BB_DIR_BIN, _BB_SUID_DROP))
236IF_LSMOD(APPLET(lsmod, _BB_DIR_SBIN, _BB_SUID_DROP))
237IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
Gustavo Zacariasc7efd642010-05-06 11:57:14 -0300238IF_LSPCI(APPLET(lspci, _BB_DIR_USR_BIN, _BB_SUID_DROP))
239IF_LSUSB(APPLET(lsusb, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenkoccb88a62010-05-27 02:22:54 +0200240IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzcat))
Denys Vlasenkoe04c8672010-05-30 03:33:50 +0200241IF_LZMA(APPLET_ODDNAME(lzma, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzma))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200242IF_LZOP(APPLET(lzop, _BB_DIR_BIN, _BB_SUID_DROP))
243IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzopcat))
244IF_MAKEDEVS(APPLET(makedevs, _BB_DIR_SBIN, _BB_SUID_DROP))
245IF_MAKEMIME(APPLET(makemime, _BB_DIR_BIN, _BB_SUID_DROP))
246IF_MAN(APPLET(man, _BB_DIR_SBIN, _BB_SUID_DROP))
247IF_MATCHPATHCON(APPLET(matchpathcon, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
248IF_MD5SUM(APPLET_ODDNAME(md5sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, md5sum))
249IF_MDEV(APPLET(mdev, _BB_DIR_SBIN, _BB_SUID_DROP))
250IF_MESG(APPLET(mesg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
251IF_MICROCOM(APPLET(microcom, _BB_DIR_USR_BIN, _BB_SUID_DROP))
252IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, _BB_DIR_BIN, _BB_SUID_DROP, mkdir))
253IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200254IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200255IF_MKFIFO(APPLET(mkfifo, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200256IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200257//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext3))
258IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_minix))
Vladimir Dronnikov0d8ea642009-11-02 10:41:46 +0100259IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_reiser))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200260IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
261IF_MKNOD(APPLET(mknod, _BB_DIR_BIN, _BB_SUID_DROP))
262IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkpasswd))
263IF_MKSWAP(APPLET(mkswap, _BB_DIR_SBIN, _BB_SUID_DROP))
264IF_MKTEMP(APPLET(mktemp, _BB_DIR_BIN, _BB_SUID_DROP))
265IF_MODPROBE(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
266IF_MODPROBE_SMALL(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
267IF_MORE(APPLET(more, _BB_DIR_BIN, _BB_SUID_DROP))
268IF_MOUNT(APPLET(mount, _BB_DIR_BIN, IF_DESKTOP(_BB_SUID_MAYBE) IF_NOT_DESKTOP(_BB_SUID_DROP)))
269IF_MOUNTPOINT(APPLET(mountpoint, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200270IF_MT(APPLET(mt, _BB_DIR_BIN, _BB_SUID_DROP))
271IF_MV(APPLET(mv, _BB_DIR_BIN, _BB_SUID_DROP))
272IF_NAMEIF(APPLET(nameif, _BB_DIR_SBIN, _BB_SUID_DROP))
273IF_NC(APPLET(nc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
274IF_NETSTAT(APPLET(netstat, _BB_DIR_BIN, _BB_SUID_DROP))
275IF_NICE(APPLET(nice, _BB_DIR_BIN, _BB_SUID_DROP))
276IF_NMETER(APPLET(nmeter, _BB_DIR_USR_BIN, _BB_SUID_DROP))
277IF_NOHUP(APPLET(nohup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
278IF_NSLOOKUP(APPLET(nslookup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Adam Tkacb1585062009-11-22 03:43:55 +0100279IF_NTPD(APPLET(ntpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200280IF_OD(APPLET(od, _BB_DIR_USR_BIN, _BB_SUID_DROP))
281IF_OPENVT(APPLET(openvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
282//IF_PARSE(APPLET(parse, _BB_DIR_USR_BIN, _BB_SUID_DROP))
283IF_PASSWD(APPLET(passwd, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
284IF_PATCH(APPLET(patch, _BB_DIR_USR_BIN, _BB_SUID_DROP))
285IF_PGREP(APPLET(pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
286IF_PIDOF(APPLET(pidof, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000287IF_PING(APPLET(ping, _BB_DIR_BIN, _BB_SUID_MAYBE))
Denys Vlasenkobe116492009-07-30 12:42:16 +0200288IF_PING6(APPLET(ping6, _BB_DIR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200289IF_PIPE_PROGRESS(APPLET(pipe_progress, _BB_DIR_BIN, _BB_SUID_DROP))
290IF_PIVOT_ROOT(APPLET(pivot_root, _BB_DIR_SBIN, _BB_SUID_DROP))
291IF_PKILL(APPLET_ODDNAME(pkill, pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP, pkill))
292IF_POPMAILDIR(APPLET(popmaildir, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
293IF_HALT(APPLET_ODDNAME(poweroff, halt, _BB_DIR_SBIN, _BB_SUID_DROP, poweroff))
294IF_PRINTENV(APPLET(printenv, _BB_DIR_BIN, _BB_SUID_DROP))
295IF_PRINTF(APPLET_NOFORK(printf, printf, _BB_DIR_USR_BIN, _BB_SUID_DROP, printf))
296IF_PS(APPLET(ps, _BB_DIR_BIN, _BB_SUID_DROP))
297IF_PSCAN(APPLET(pscan, _BB_DIR_USR_BIN, _BB_SUID_DROP))
298IF_PWD(APPLET_NOFORK(pwd, pwd, _BB_DIR_BIN, _BB_SUID_DROP, pwd))
299IF_RAIDAUTORUN(APPLET(raidautorun, _BB_DIR_SBIN, _BB_SUID_DROP))
300IF_RDATE(APPLET(rdate, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
301IF_RDEV(APPLET(rdev, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
302IF_READAHEAD(APPLET(readahead, _BB_DIR_USR_BIN, _BB_SUID_DROP))
303IF_READLINK(APPLET(readlink, _BB_DIR_USR_BIN, _BB_SUID_DROP))
304IF_READPROFILE(APPLET(readprofile, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
305IF_REALPATH(APPLET(realpath, _BB_DIR_USR_BIN, _BB_SUID_DROP))
306IF_HALT(APPLET_ODDNAME(reboot, halt, _BB_DIR_SBIN, _BB_SUID_DROP, reboot))
307IF_REFORMIME(APPLET(reformime, _BB_DIR_BIN, _BB_SUID_DROP))
308IF_RENICE(APPLET(renice, _BB_DIR_USR_BIN, _BB_SUID_DROP))
309IF_RESET(APPLET(reset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
310IF_RESIZE(APPLET(resize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
311IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, _BB_DIR_SBIN, _BB_SUID_DROP, restorecon))
Souf Oued43afd752010-05-02 18:45:02 +0200312IF_RFKILL(APPLET(rfkill, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200313IF_RM(APPLET_NOFORK(rm, rm, _BB_DIR_BIN, _BB_SUID_DROP, rm))
314IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, _BB_DIR_BIN, _BB_SUID_DROP, rmdir))
315IF_RMMOD(APPLET(rmmod, _BB_DIR_SBIN, _BB_SUID_DROP))
316IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
317IF_ROUTE(APPLET(route, _BB_DIR_SBIN, _BB_SUID_DROP))
318IF_RPM(APPLET(rpm, _BB_DIR_BIN, _BB_SUID_DROP))
319IF_RPM2CPIO(APPLET(rpm2cpio, _BB_DIR_USR_BIN, _BB_SUID_DROP))
320IF_RTCWAKE(APPLET(rtcwake, _BB_DIR_USR_BIN, _BB_SUID_DROP))
321IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, _BB_DIR_BIN, _BB_SUID_DROP, run_parts))
322IF_RUNCON(APPLET(runcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
323IF_RUNLEVEL(APPLET(runlevel, _BB_DIR_SBIN, _BB_SUID_DROP))
324IF_RUNSV(APPLET(runsv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
325IF_RUNSVDIR(APPLET(runsvdir, _BB_DIR_USR_BIN, _BB_SUID_DROP))
326IF_RX(APPLET(rx, _BB_DIR_USR_BIN, _BB_SUID_DROP))
327IF_SCRIPT(APPLET(script, _BB_DIR_USR_BIN, _BB_SUID_DROP))
328IF_SCRIPTREPLAY(APPLET(scriptreplay, _BB_DIR_BIN, _BB_SUID_DROP))
329IF_SED(APPLET(sed, _BB_DIR_BIN, _BB_SUID_DROP))
330IF_SELINUXENABLED(APPLET(selinuxenabled, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
331IF_SENDMAIL(APPLET(sendmail, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
332IF_SEQ(APPLET_NOFORK(seq, seq, _BB_DIR_USR_BIN, _BB_SUID_DROP, seq))
333IF_SESTATUS(APPLET(sestatus, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
334IF_SETARCH(APPLET(setarch, _BB_DIR_BIN, _BB_SUID_DROP))
335IF_SETCONSOLE(APPLET(setconsole, _BB_DIR_SBIN, _BB_SUID_DROP))
336IF_SETENFORCE(APPLET(setenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
337IF_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_DROP))
338IF_SETFONT(APPLET(setfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
339IF_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_DROP))
340IF_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
341IF_SETSEBOOL(APPLET(setsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
342IF_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_DROP))
343IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, setuidgid))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200344IF_SHA1SUM(APPLET_ODDNAME(sha1sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha1sum))
345IF_SHA256SUM(APPLET_ODDNAME(sha256sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha256sum))
346IF_SHA512SUM(APPLET_ODDNAME(sha512sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha512sum))
347IF_SHOWKEY(APPLET(showkey, _BB_DIR_USR_BIN, _BB_SUID_DROP))
348IF_SLATTACH(APPLET(slattach, _BB_DIR_SBIN, _BB_SUID_DROP))
349IF_SLEEP(APPLET_NOFORK(sleep, sleep, _BB_DIR_BIN, _BB_SUID_DROP, sleep))
350IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, softlimit))
351IF_SORT(APPLET_NOEXEC(sort, sort, _BB_DIR_USR_BIN, _BB_SUID_DROP, sort))
352IF_SPLIT(APPLET(split, _BB_DIR_USR_BIN, _BB_SUID_DROP))
353IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, _BB_DIR_SBIN, _BB_SUID_DROP, start_stop_daemon))
354IF_STAT(APPLET(stat, _BB_DIR_BIN, _BB_SUID_DROP))
355IF_STRINGS(APPLET(strings, _BB_DIR_USR_BIN, _BB_SUID_DROP))
356IF_STTY(APPLET(stty, _BB_DIR_BIN, _BB_SUID_DROP))
357IF_SU(APPLET(su, _BB_DIR_BIN, _BB_SUID_REQUIRE))
358IF_SULOGIN(APPLET(sulogin, _BB_DIR_SBIN, _BB_SUID_DROP))
359IF_SUM(APPLET(sum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
360IF_SV(APPLET(sv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
361IF_SVLOGD(APPLET(svlogd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
362IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP,swapoff))
363IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapon))
364IF_SWITCH_ROOT(APPLET(switch_root, _BB_DIR_SBIN, _BB_SUID_DROP))
365IF_SYNC(APPLET_NOFORK(sync, sync, _BB_DIR_BIN, _BB_SUID_DROP, sync))
366IF_BB_SYSCTL(APPLET(sysctl, _BB_DIR_SBIN, _BB_SUID_DROP))
367IF_SYSLOGD(APPLET(syslogd, _BB_DIR_SBIN, _BB_SUID_DROP))
368IF_TAC(APPLET_NOEXEC(tac, tac, _BB_DIR_USR_BIN, _BB_SUID_DROP, tac))
369IF_TAIL(APPLET(tail, _BB_DIR_USR_BIN, _BB_SUID_DROP))
370IF_TAR(APPLET(tar, _BB_DIR_BIN, _BB_SUID_DROP))
371IF_TASKSET(APPLET(taskset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
372/* IF_TC(APPLET(tc, _BB_DIR_SBIN, _BB_SUID_DROP)) */
373IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, tcpsvd))
374IF_TEE(APPLET(tee, _BB_DIR_USR_BIN, _BB_SUID_DROP))
375IF_TELNET(APPLET(telnet, _BB_DIR_USR_BIN, _BB_SUID_DROP))
376IF_TELNETD(APPLET(telnetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
377IF_TEST(APPLET_NOFORK(test, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
Denis Vlasenko31635552007-01-20 16:54:19 +0000378#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200379IF_TFTP(APPLET(tftp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
380IF_TFTPD(APPLET(tftpd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko31635552007-01-20 16:54:19 +0000381#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200382IF_TIME(APPLET(time, _BB_DIR_USR_BIN, _BB_SUID_DROP))
383IF_TIMEOUT(APPLET(timeout, _BB_DIR_USR_BIN, _BB_SUID_DROP))
384IF_TOP(APPLET(top, _BB_DIR_USR_BIN, _BB_SUID_DROP))
385IF_TOUCH(APPLET_NOFORK(touch, touch, _BB_DIR_BIN, _BB_SUID_DROP, touch))
386IF_TR(APPLET(tr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000387IF_TRACEROUTE(APPLET(traceroute, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100388IF_TRACEROUTE6(APPLET(traceroute6, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200389IF_TRUE(APPLET_NOFORK(true, true, _BB_DIR_BIN, _BB_SUID_DROP, true))
390IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP))
391IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
392IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko67743862010-05-09 00:13:40 +0200393IF_TUNE2FS(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100394IF_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP))
395IF_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200396IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd))
397IF_UMOUNT(APPLET(umount, _BB_DIR_BIN, _BB_SUID_DROP))
398IF_UNAME(APPLET(uname, _BB_DIR_BIN, _BB_SUID_DROP))
399IF_UNCOMPRESS(APPLET(uncompress, _BB_DIR_BIN, _BB_SUID_DROP))
400IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, _BB_DIR_USR_BIN, _BB_SUID_DROP, unexpand))
401IF_UNIQ(APPLET(uniq, _BB_DIR_USR_BIN, _BB_SUID_DROP))
402IF_UNIX2DOS(APPLET_ODDNAME(unix2dos, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, unix2dos))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200403IF_UNXZ(APPLET(unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200404IF_UNLZMA(APPLET(unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP))
405IF_LZOP(APPLET_ODDNAME(unlzop, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, unlzop))
406IF_UNZIP(APPLET(unzip, _BB_DIR_USR_BIN, _BB_SUID_DROP))
407IF_UPTIME(APPLET(uptime, _BB_DIR_USR_BIN, _BB_SUID_DROP))
408IF_USLEEP(APPLET_NOFORK(usleep, usleep, _BB_DIR_BIN, _BB_SUID_DROP, usleep))
409IF_UUDECODE(APPLET(uudecode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
410IF_UUENCODE(APPLET(uuencode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
411IF_VCONFIG(APPLET(vconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
412IF_VI(APPLET(vi, _BB_DIR_BIN, _BB_SUID_DROP))
413IF_VLOCK(APPLET(vlock, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Matthew Stoltenberg4803db52009-08-13 00:59:32 +0200414IF_VOLNAME(APPLET(volname, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +0100415IF_WALL(APPLET(wall, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200416IF_WATCH(APPLET(watch, _BB_DIR_BIN, _BB_SUID_DROP))
417IF_WATCHDOG(APPLET(watchdog, _BB_DIR_SBIN, _BB_SUID_DROP))
418IF_WC(APPLET(wc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
419IF_WGET(APPLET(wget, _BB_DIR_USR_BIN, _BB_SUID_DROP))
420IF_WHICH(APPLET(which, _BB_DIR_USR_BIN, _BB_SUID_DROP))
421IF_WHO(APPLET(who, _BB_DIR_USR_BIN, _BB_SUID_DROP))
422IF_WHOAMI(APPLET_NOFORK(whoami, whoami, _BB_DIR_USR_BIN, _BB_SUID_DROP, whoami))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200423IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xzcat))
424IF_XZ(APPLET_ODDNAME(xz, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xz))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200425IF_YES(APPLET_NOFORK(yes, yes, _BB_DIR_USR_BIN, _BB_SUID_DROP, yes))
426IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, _BB_DIR_BIN, _BB_SUID_DROP, zcat))
427IF_ZCIP(APPLET(zcip, _BB_DIR_SBIN, _BB_SUID_DROP))
Eric Andersen8c725e62000-11-30 00:27:06 +0000428
Denis Vlasenkof545be02007-10-07 17:06:26 +0000429#if !defined(PROTOTYPES) && !defined(NAME_MAIN_CNAME) && !defined(MAKE_USAGE)
Mark Whitley130005c2000-10-25 00:28:27 +0000430};
Eric Andersen8c725e62000-11-30 00:27:06 +0000431#endif
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000432
433#undef APPLET
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000434#undef APPLET_ODDNAME
Denis Vlasenkoc44ab012007-04-09 03:11:58 +0000435#undef APPLET_NOEXEC
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000436#undef APPLET_NOFORK