blob: 9162b66c7e5b2b5080149ba4879deb3601a39137 [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))
75IF_ASH(APPLET(ash, _BB_DIR_BIN, _BB_SUID_DROP))
76IF_AWK(APPLET_NOEXEC(awk, awk, _BB_DIR_USR_BIN, _BB_SUID_DROP, awk))
77IF_BASENAME(APPLET_NOFORK(basename, basename, _BB_DIR_USR_BIN, _BB_SUID_DROP, basename))
Denys Vlasenko40477e22010-05-20 02:09:45 +020078IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, _BB_DIR_BIN, _BB_SUID_DROP, bash))
79IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020080IF_BBCONFIG(APPLET(bbconfig, _BB_DIR_BIN, _BB_SUID_DROP))
Mike Frysinger05ed00f2009-11-04 18:53:16 -050081//IF_BBSH(APPLET(bbsh, _BB_DIR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020082IF_BEEP(APPLET(beep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020083IF_BLKID(APPLET(blkid, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenkoff027d62010-05-04 15:45:25 +020084IF_BOOTCHARTD(APPLET(bootchartd, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020085IF_BRCTL(APPLET(brctl, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020086IF_BZIP2(APPLET(bzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
87IF_CAL(APPLET(cal, _BB_DIR_USR_BIN, _BB_SUID_DROP))
88IF_CAT(APPLET_NOFORK(cat, cat, _BB_DIR_BIN, _BB_SUID_DROP, cat))
89IF_CATV(APPLET(catv, _BB_DIR_BIN, _BB_SUID_DROP))
90IF_CHAT(APPLET(chat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
91IF_CHATTR(APPLET(chattr, _BB_DIR_BIN, _BB_SUID_DROP))
92IF_CHCON(APPLET(chcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
93IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, _BB_DIR_BIN, _BB_SUID_DROP, chgrp))
94IF_CHMOD(APPLET_NOEXEC(chmod, chmod, _BB_DIR_BIN, _BB_SUID_DROP, chmod))
95IF_CHOWN(APPLET_NOEXEC(chown, chown, _BB_DIR_BIN, _BB_SUID_DROP, chown))
96IF_CHPASSWD(APPLET(chpasswd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
97IF_CHPST(APPLET(chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP))
98IF_CHROOT(APPLET(chroot, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
99IF_CHRT(APPLET(chrt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
100IF_CHVT(APPLET(chvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
101IF_CKSUM(APPLET(cksum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
102IF_CLEAR(APPLET(clear, _BB_DIR_USR_BIN, _BB_SUID_DROP))
103IF_CMP(APPLET(cmp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
104IF_COMM(APPLET(comm, _BB_DIR_USR_BIN, _BB_SUID_DROP))
105IF_CP(APPLET_NOEXEC(cp, cp, _BB_DIR_BIN, _BB_SUID_DROP, cp))
106IF_CPIO(APPLET(cpio, _BB_DIR_BIN, _BB_SUID_DROP))
107IF_CROND(APPLET(crond, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
108IF_CRONTAB(APPLET(crontab, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
109IF_CRYPTPW(APPLET(cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP))
110IF_CTTYHACK(APPLET(cttyhack, _BB_DIR_BIN, _BB_SUID_DROP))
111IF_CUT(APPLET_NOEXEC(cut, cut, _BB_DIR_USR_BIN, _BB_SUID_DROP, cut))
112IF_DATE(APPLET(date, _BB_DIR_BIN, _BB_SUID_DROP))
113IF_DC(APPLET(dc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
114IF_DD(APPLET_NOEXEC(dd, dd, _BB_DIR_BIN, _BB_SUID_DROP, dd))
115IF_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
116IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_DROP, delgroup))
117IF_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_DROP))
118IF_DEPMOD(APPLET(depmod, _BB_DIR_SBIN, _BB_SUID_DROP))
119IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
120IF_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_DROP))
121IF_DEVMEM(APPLET(devmem, _BB_DIR_SBIN, _BB_SUID_DROP))
122IF_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100123IF_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200124IF_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_DROP))
125IF_DIRNAME(APPLET_NOFORK(dirname, dirname, _BB_DIR_USR_BIN, _BB_SUID_DROP, dirname))
126IF_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_DROP))
127IF_DNSD(APPLET(dnsd, _BB_DIR_USR_SBIN, _BB_SUID_REQUIRE))
128IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, _BB_DIR_BIN, _BB_SUID_DROP, dnsdomainname))
129IF_DOS2UNIX(APPLET(dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP))
130IF_DPKG(APPLET(dpkg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
131IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, _BB_DIR_USR_BIN, _BB_SUID_DROP, dpkg_deb))
132IF_DU(APPLET(du, _BB_DIR_USR_BIN, _BB_SUID_DROP))
133IF_DUMPKMAP(APPLET(dumpkmap, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100134IF_DUMPLEASES(APPLET(dumpleases, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200135//IF_E2FSCK(APPLET(e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
136//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP, e2label))
137IF_ECHO(APPLET_NOFORK(echo, echo, _BB_DIR_BIN, _BB_SUID_DROP, echo))
138IF_ED(APPLET(ed, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200139IF_EJECT(APPLET(eject, _BB_DIR_USR_BIN, _BB_SUID_DROP))
140IF_ENV(APPLET_NOEXEC(env, env, _BB_DIR_USR_BIN, _BB_SUID_DROP, env))
141IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envdir))
142IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envuidgid))
143IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, _BB_DIR_USR_BIN, _BB_SUID_DROP, ether_wake))
144IF_EXPAND(APPLET(expand, _BB_DIR_USR_BIN, _BB_SUID_DROP))
145IF_EXPR(APPLET(expr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
146IF_FAKEIDENTD(APPLET(fakeidentd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
147IF_FALSE(APPLET_NOFORK(false, false, _BB_DIR_BIN, _BB_SUID_DROP, false))
148IF_FBSET(APPLET(fbset, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
149IF_FBSPLASH(APPLET(fbsplash, _BB_DIR_SBIN, _BB_SUID_DROP))
150IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, _BB_DIR_BIN, _BB_SUID_DROP, fdflush))
151IF_FDFORMAT(APPLET(fdformat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
152IF_FDISK(APPLET(fdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
Grigory Batalovad7a5d42010-05-23 23:22:10 +0200153IF_FGCONSOLE(APPLET(fgconsole, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000154IF_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200155IF_FLASH_ERASEALL(APPLET(flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
156IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_lock))
157IF_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 +0100158IF_FLASHCP(APPLET(flashcp, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Timo Teras892d4b62010-03-18 22:45:35 +0100159IF_FLOCK(APPLET(flock, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200160IF_FOLD(APPLET(fold, _BB_DIR_USR_BIN, _BB_SUID_DROP))
161IF_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_DROP))
162IF_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
163IF_FSCK(APPLET(fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
164//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext2))
165//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext3))
166IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_minix))
167IF_FSYNC(APPLET_NOFORK(fsync, fsync, _BB_DIR_BIN, _BB_SUID_DROP, fsync))
168IF_FTPD(APPLET(ftpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
169IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpget))
170IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpput))
171IF_FUSER(APPLET(fuser, _BB_DIR_USR_BIN, _BB_SUID_DROP))
172IF_GETENFORCE(APPLET(getenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
173IF_GETOPT(APPLET(getopt, _BB_DIR_BIN, _BB_SUID_DROP))
174IF_GETSEBOOL(APPLET(getsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
175IF_GETTY(APPLET(getty, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200176IF_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_DROP))
177IF_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_DROP))
178IF_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_DROP))
179IF_HD(APPLET_NOEXEC(hd, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hd))
180IF_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_DROP))
181IF_HEAD(APPLET(head, _BB_DIR_USR_BIN, _BB_SUID_DROP))
182IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hexdump))
183IF_HOSTID(APPLET_NOFORK(hostid, hostid, _BB_DIR_USR_BIN, _BB_SUID_DROP, hostid))
184IF_HOSTNAME(APPLET(hostname, _BB_DIR_BIN, _BB_SUID_DROP))
185IF_HTTPD(APPLET(httpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
186IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
187IF_HWCLOCK(APPLET(hwclock, _BB_DIR_SBIN, _BB_SUID_DROP))
188IF_ID(APPLET(id, _BB_DIR_USR_BIN, _BB_SUID_DROP))
189IF_IFCONFIG(APPLET(ifconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
190IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifdown))
191IF_IFENSLAVE(APPLET(ifenslave, _BB_DIR_SBIN, _BB_SUID_DROP))
192IF_IFPLUGD(APPLET(ifplugd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
193IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifup))
194IF_INETD(APPLET(inetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
195IF_INIT(APPLET(init, _BB_DIR_SBIN, _BB_SUID_DROP))
196IF_INOTIFYD(APPLET(inotifyd, _BB_DIR_SBIN, _BB_SUID_DROP))
197IF_INSMOD(APPLET(insmod, _BB_DIR_SBIN, _BB_SUID_DROP))
198IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
199IF_INSTALL(APPLET(install, _BB_DIR_USR_BIN, _BB_SUID_DROP))
200IF_IONICE(APPLET(ionice, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000201#if ENABLE_FEATURE_IP_ADDRESS \
202 || ENABLE_FEATURE_IP_ROUTE \
203 || ENABLE_FEATURE_IP_LINK \
204 || ENABLE_FEATURE_IP_TUNNEL \
205 || ENABLE_FEATURE_IP_RULE
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200206IF_IP(APPLET(ip, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000207#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200208IF_IPADDR(APPLET(ipaddr, _BB_DIR_BIN, _BB_SUID_DROP))
209IF_IPCALC(APPLET(ipcalc, _BB_DIR_BIN, _BB_SUID_DROP))
210IF_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
211IF_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
212IF_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_DROP))
213IF_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_DROP))
214IF_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_DROP))
215IF_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_DROP))
216IF_KBD_MODE(APPLET(kbd_mode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
217IF_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_DROP))
218IF_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall))
219IF_KILLALL5(APPLET_ODDNAME(killall5, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall5))
220IF_KLOGD(APPLET(klogd, _BB_DIR_SBIN, _BB_SUID_DROP))
221IF_LASH(APPLET(lash, _BB_DIR_BIN, _BB_SUID_DROP))
222IF_LAST(APPLET(last, _BB_DIR_USR_BIN, _BB_SUID_DROP))
223IF_LENGTH(APPLET_NOFORK(length, length, _BB_DIR_USR_BIN, _BB_SUID_DROP, length))
224IF_LESS(APPLET(less, _BB_DIR_USR_BIN, _BB_SUID_DROP))
225IF_SETARCH(APPLET_ODDNAME(linux32, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux32))
226IF_SETARCH(APPLET_ODDNAME(linux64, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux64))
227IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, _BB_DIR_ROOT, _BB_SUID_DROP, linuxrc))
228IF_LN(APPLET_NOEXEC(ln, ln, _BB_DIR_BIN, _BB_SUID_DROP, ln))
229IF_LOAD_POLICY(APPLET(load_policy, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
230IF_LOADFONT(APPLET(loadfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
231IF_LOADKMAP(APPLET(loadkmap, _BB_DIR_SBIN, _BB_SUID_DROP))
232IF_LOGGER(APPLET(logger, _BB_DIR_USR_BIN, _BB_SUID_DROP))
233IF_LOGIN(APPLET(login, _BB_DIR_BIN, _BB_SUID_REQUIRE))
234IF_LOGNAME(APPLET_NOFORK(logname, logname, _BB_DIR_USR_BIN, _BB_SUID_DROP, logname))
235IF_LOGREAD(APPLET(logread, _BB_DIR_SBIN, _BB_SUID_DROP))
236IF_LOSETUP(APPLET(losetup, _BB_DIR_SBIN, _BB_SUID_DROP))
237IF_LPD(APPLET(lpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
238IF_LPQ(APPLET_ODDNAME(lpq, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpq))
239IF_LPR(APPLET_ODDNAME(lpr, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpr))
240IF_LS(APPLET_NOEXEC(ls, ls, _BB_DIR_BIN, _BB_SUID_DROP, ls))
241IF_LSATTR(APPLET(lsattr, _BB_DIR_BIN, _BB_SUID_DROP))
242IF_LSMOD(APPLET(lsmod, _BB_DIR_SBIN, _BB_SUID_DROP))
243IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
Gustavo Zacariasc7efd642010-05-06 11:57:14 -0300244IF_LSPCI(APPLET(lspci, _BB_DIR_USR_BIN, _BB_SUID_DROP))
245IF_LSUSB(APPLET(lsusb, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenkoccb88a62010-05-27 02:22:54 +0200246IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzcat))
Denys Vlasenkoe04c8672010-05-30 03:33:50 +0200247IF_LZMA(APPLET_ODDNAME(lzma, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzma))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200248IF_LZOP(APPLET(lzop, _BB_DIR_BIN, _BB_SUID_DROP))
249IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzopcat))
250IF_MAKEDEVS(APPLET(makedevs, _BB_DIR_SBIN, _BB_SUID_DROP))
251IF_MAKEMIME(APPLET(makemime, _BB_DIR_BIN, _BB_SUID_DROP))
252IF_MAN(APPLET(man, _BB_DIR_SBIN, _BB_SUID_DROP))
253IF_MATCHPATHCON(APPLET(matchpathcon, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
254IF_MD5SUM(APPLET_ODDNAME(md5sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, md5sum))
255IF_MDEV(APPLET(mdev, _BB_DIR_SBIN, _BB_SUID_DROP))
256IF_MESG(APPLET(mesg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
257IF_MICROCOM(APPLET(microcom, _BB_DIR_USR_BIN, _BB_SUID_DROP))
258IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, _BB_DIR_BIN, _BB_SUID_DROP, mkdir))
259IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200260IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200261IF_MKFIFO(APPLET(mkfifo, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200262IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200263//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext3))
264IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_minix))
Vladimir Dronnikov0d8ea642009-11-02 10:41:46 +0100265IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_reiser))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200266IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
267IF_MKNOD(APPLET(mknod, _BB_DIR_BIN, _BB_SUID_DROP))
268IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkpasswd))
269IF_MKSWAP(APPLET(mkswap, _BB_DIR_SBIN, _BB_SUID_DROP))
270IF_MKTEMP(APPLET(mktemp, _BB_DIR_BIN, _BB_SUID_DROP))
271IF_MODPROBE(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
272IF_MODPROBE_SMALL(APPLET(modprobe, _BB_DIR_SBIN, _BB_SUID_DROP))
273IF_MORE(APPLET(more, _BB_DIR_BIN, _BB_SUID_DROP))
274IF_MOUNT(APPLET(mount, _BB_DIR_BIN, IF_DESKTOP(_BB_SUID_MAYBE) IF_NOT_DESKTOP(_BB_SUID_DROP)))
275IF_MOUNTPOINT(APPLET(mountpoint, _BB_DIR_BIN, _BB_SUID_DROP))
276IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
277IF_MT(APPLET(mt, _BB_DIR_BIN, _BB_SUID_DROP))
278IF_MV(APPLET(mv, _BB_DIR_BIN, _BB_SUID_DROP))
279IF_NAMEIF(APPLET(nameif, _BB_DIR_SBIN, _BB_SUID_DROP))
280IF_NC(APPLET(nc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
281IF_NETSTAT(APPLET(netstat, _BB_DIR_BIN, _BB_SUID_DROP))
282IF_NICE(APPLET(nice, _BB_DIR_BIN, _BB_SUID_DROP))
283IF_NMETER(APPLET(nmeter, _BB_DIR_USR_BIN, _BB_SUID_DROP))
284IF_NOHUP(APPLET(nohup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
285IF_NSLOOKUP(APPLET(nslookup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Adam Tkacb1585062009-11-22 03:43:55 +0100286IF_NTPD(APPLET(ntpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200287IF_OD(APPLET(od, _BB_DIR_USR_BIN, _BB_SUID_DROP))
288IF_OPENVT(APPLET(openvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
289//IF_PARSE(APPLET(parse, _BB_DIR_USR_BIN, _BB_SUID_DROP))
290IF_PASSWD(APPLET(passwd, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
291IF_PATCH(APPLET(patch, _BB_DIR_USR_BIN, _BB_SUID_DROP))
292IF_PGREP(APPLET(pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
293IF_PIDOF(APPLET(pidof, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000294IF_PING(APPLET(ping, _BB_DIR_BIN, _BB_SUID_MAYBE))
Denys Vlasenkobe116492009-07-30 12:42:16 +0200295IF_PING6(APPLET(ping6, _BB_DIR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200296IF_PIPE_PROGRESS(APPLET(pipe_progress, _BB_DIR_BIN, _BB_SUID_DROP))
297IF_PIVOT_ROOT(APPLET(pivot_root, _BB_DIR_SBIN, _BB_SUID_DROP))
298IF_PKILL(APPLET_ODDNAME(pkill, pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP, pkill))
299IF_POPMAILDIR(APPLET(popmaildir, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
300IF_HALT(APPLET_ODDNAME(poweroff, halt, _BB_DIR_SBIN, _BB_SUID_DROP, poweroff))
301IF_PRINTENV(APPLET(printenv, _BB_DIR_BIN, _BB_SUID_DROP))
302IF_PRINTF(APPLET_NOFORK(printf, printf, _BB_DIR_USR_BIN, _BB_SUID_DROP, printf))
303IF_PS(APPLET(ps, _BB_DIR_BIN, _BB_SUID_DROP))
304IF_PSCAN(APPLET(pscan, _BB_DIR_USR_BIN, _BB_SUID_DROP))
305IF_PWD(APPLET_NOFORK(pwd, pwd, _BB_DIR_BIN, _BB_SUID_DROP, pwd))
306IF_RAIDAUTORUN(APPLET(raidautorun, _BB_DIR_SBIN, _BB_SUID_DROP))
307IF_RDATE(APPLET(rdate, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
308IF_RDEV(APPLET(rdev, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
309IF_READAHEAD(APPLET(readahead, _BB_DIR_USR_BIN, _BB_SUID_DROP))
310IF_READLINK(APPLET(readlink, _BB_DIR_USR_BIN, _BB_SUID_DROP))
311IF_READPROFILE(APPLET(readprofile, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
312IF_REALPATH(APPLET(realpath, _BB_DIR_USR_BIN, _BB_SUID_DROP))
313IF_HALT(APPLET_ODDNAME(reboot, halt, _BB_DIR_SBIN, _BB_SUID_DROP, reboot))
314IF_REFORMIME(APPLET(reformime, _BB_DIR_BIN, _BB_SUID_DROP))
315IF_RENICE(APPLET(renice, _BB_DIR_USR_BIN, _BB_SUID_DROP))
316IF_RESET(APPLET(reset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
317IF_RESIZE(APPLET(resize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
318IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, _BB_DIR_SBIN, _BB_SUID_DROP, restorecon))
Souf Oued43afd752010-05-02 18:45:02 +0200319IF_RFKILL(APPLET(rfkill, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200320IF_RM(APPLET_NOFORK(rm, rm, _BB_DIR_BIN, _BB_SUID_DROP, rm))
321IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, _BB_DIR_BIN, _BB_SUID_DROP, rmdir))
322IF_RMMOD(APPLET(rmmod, _BB_DIR_SBIN, _BB_SUID_DROP))
323IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, _BB_DIR_SBIN, _BB_SUID_DROP, modprobe))
324IF_ROUTE(APPLET(route, _BB_DIR_SBIN, _BB_SUID_DROP))
325IF_RPM(APPLET(rpm, _BB_DIR_BIN, _BB_SUID_DROP))
326IF_RPM2CPIO(APPLET(rpm2cpio, _BB_DIR_USR_BIN, _BB_SUID_DROP))
327IF_RTCWAKE(APPLET(rtcwake, _BB_DIR_USR_BIN, _BB_SUID_DROP))
328IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, _BB_DIR_BIN, _BB_SUID_DROP, run_parts))
329IF_RUNCON(APPLET(runcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
330IF_RUNLEVEL(APPLET(runlevel, _BB_DIR_SBIN, _BB_SUID_DROP))
331IF_RUNSV(APPLET(runsv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
332IF_RUNSVDIR(APPLET(runsvdir, _BB_DIR_USR_BIN, _BB_SUID_DROP))
333IF_RX(APPLET(rx, _BB_DIR_USR_BIN, _BB_SUID_DROP))
334IF_SCRIPT(APPLET(script, _BB_DIR_USR_BIN, _BB_SUID_DROP))
335IF_SCRIPTREPLAY(APPLET(scriptreplay, _BB_DIR_BIN, _BB_SUID_DROP))
336IF_SED(APPLET(sed, _BB_DIR_BIN, _BB_SUID_DROP))
337IF_SELINUXENABLED(APPLET(selinuxenabled, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
338IF_SENDMAIL(APPLET(sendmail, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
339IF_SEQ(APPLET_NOFORK(seq, seq, _BB_DIR_USR_BIN, _BB_SUID_DROP, seq))
340IF_SESTATUS(APPLET(sestatus, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
341IF_SETARCH(APPLET(setarch, _BB_DIR_BIN, _BB_SUID_DROP))
342IF_SETCONSOLE(APPLET(setconsole, _BB_DIR_SBIN, _BB_SUID_DROP))
343IF_SETENFORCE(APPLET(setenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
344IF_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_DROP))
345IF_SETFONT(APPLET(setfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
346IF_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_DROP))
347IF_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
348IF_SETSEBOOL(APPLET(setsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
349IF_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_DROP))
350IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, setuidgid))
351IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, _BB_DIR_BIN, _BB_SUID_DROP, sh))
352IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200353IF_SHA1SUM(APPLET_ODDNAME(sha1sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha1sum))
354IF_SHA256SUM(APPLET_ODDNAME(sha256sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha256sum))
355IF_SHA512SUM(APPLET_ODDNAME(sha512sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha512sum))
356IF_SHOWKEY(APPLET(showkey, _BB_DIR_USR_BIN, _BB_SUID_DROP))
357IF_SLATTACH(APPLET(slattach, _BB_DIR_SBIN, _BB_SUID_DROP))
358IF_SLEEP(APPLET_NOFORK(sleep, sleep, _BB_DIR_BIN, _BB_SUID_DROP, sleep))
359IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, softlimit))
360IF_SORT(APPLET_NOEXEC(sort, sort, _BB_DIR_USR_BIN, _BB_SUID_DROP, sort))
361IF_SPLIT(APPLET(split, _BB_DIR_USR_BIN, _BB_SUID_DROP))
362IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, _BB_DIR_SBIN, _BB_SUID_DROP, start_stop_daemon))
363IF_STAT(APPLET(stat, _BB_DIR_BIN, _BB_SUID_DROP))
364IF_STRINGS(APPLET(strings, _BB_DIR_USR_BIN, _BB_SUID_DROP))
365IF_STTY(APPLET(stty, _BB_DIR_BIN, _BB_SUID_DROP))
366IF_SU(APPLET(su, _BB_DIR_BIN, _BB_SUID_REQUIRE))
367IF_SULOGIN(APPLET(sulogin, _BB_DIR_SBIN, _BB_SUID_DROP))
368IF_SUM(APPLET(sum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
369IF_SV(APPLET(sv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
370IF_SVLOGD(APPLET(svlogd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
371IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP,swapoff))
372IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapon))
373IF_SWITCH_ROOT(APPLET(switch_root, _BB_DIR_SBIN, _BB_SUID_DROP))
374IF_SYNC(APPLET_NOFORK(sync, sync, _BB_DIR_BIN, _BB_SUID_DROP, sync))
375IF_BB_SYSCTL(APPLET(sysctl, _BB_DIR_SBIN, _BB_SUID_DROP))
376IF_SYSLOGD(APPLET(syslogd, _BB_DIR_SBIN, _BB_SUID_DROP))
377IF_TAC(APPLET_NOEXEC(tac, tac, _BB_DIR_USR_BIN, _BB_SUID_DROP, tac))
378IF_TAIL(APPLET(tail, _BB_DIR_USR_BIN, _BB_SUID_DROP))
379IF_TAR(APPLET(tar, _BB_DIR_BIN, _BB_SUID_DROP))
380IF_TASKSET(APPLET(taskset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
381/* IF_TC(APPLET(tc, _BB_DIR_SBIN, _BB_SUID_DROP)) */
382IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, tcpsvd))
383IF_TEE(APPLET(tee, _BB_DIR_USR_BIN, _BB_SUID_DROP))
384IF_TELNET(APPLET(telnet, _BB_DIR_USR_BIN, _BB_SUID_DROP))
385IF_TELNETD(APPLET(telnetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
386IF_TEST(APPLET_NOFORK(test, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
Denis Vlasenko31635552007-01-20 16:54:19 +0000387#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200388IF_TFTP(APPLET(tftp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
389IF_TFTPD(APPLET(tftpd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko31635552007-01-20 16:54:19 +0000390#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200391IF_TIME(APPLET(time, _BB_DIR_USR_BIN, _BB_SUID_DROP))
392IF_TIMEOUT(APPLET(timeout, _BB_DIR_USR_BIN, _BB_SUID_DROP))
393IF_TOP(APPLET(top, _BB_DIR_USR_BIN, _BB_SUID_DROP))
394IF_TOUCH(APPLET_NOFORK(touch, touch, _BB_DIR_BIN, _BB_SUID_DROP, touch))
395IF_TR(APPLET(tr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000396IF_TRACEROUTE(APPLET(traceroute, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100397IF_TRACEROUTE6(APPLET(traceroute6, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200398IF_TRUE(APPLET_NOFORK(true, true, _BB_DIR_BIN, _BB_SUID_DROP, true))
399IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP))
400IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
401IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko67743862010-05-09 00:13:40 +0200402IF_TUNE2FS(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100403IF_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP))
404IF_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200405IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd))
406IF_UMOUNT(APPLET(umount, _BB_DIR_BIN, _BB_SUID_DROP))
407IF_UNAME(APPLET(uname, _BB_DIR_BIN, _BB_SUID_DROP))
408IF_UNCOMPRESS(APPLET(uncompress, _BB_DIR_BIN, _BB_SUID_DROP))
409IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, _BB_DIR_USR_BIN, _BB_SUID_DROP, unexpand))
410IF_UNIQ(APPLET(uniq, _BB_DIR_USR_BIN, _BB_SUID_DROP))
411IF_UNIX2DOS(APPLET_ODDNAME(unix2dos, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, unix2dos))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200412IF_UNXZ(APPLET(unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200413IF_UNLZMA(APPLET(unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP))
414IF_LZOP(APPLET_ODDNAME(unlzop, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, unlzop))
415IF_UNZIP(APPLET(unzip, _BB_DIR_USR_BIN, _BB_SUID_DROP))
416IF_UPTIME(APPLET(uptime, _BB_DIR_USR_BIN, _BB_SUID_DROP))
417IF_USLEEP(APPLET_NOFORK(usleep, usleep, _BB_DIR_BIN, _BB_SUID_DROP, usleep))
418IF_UUDECODE(APPLET(uudecode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
419IF_UUENCODE(APPLET(uuencode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
420IF_VCONFIG(APPLET(vconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
421IF_VI(APPLET(vi, _BB_DIR_BIN, _BB_SUID_DROP))
422IF_VLOCK(APPLET(vlock, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Matthew Stoltenberg4803db52009-08-13 00:59:32 +0200423IF_VOLNAME(APPLET(volname, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +0100424IF_WALL(APPLET(wall, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200425IF_WATCH(APPLET(watch, _BB_DIR_BIN, _BB_SUID_DROP))
426IF_WATCHDOG(APPLET(watchdog, _BB_DIR_SBIN, _BB_SUID_DROP))
427IF_WC(APPLET(wc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
428IF_WGET(APPLET(wget, _BB_DIR_USR_BIN, _BB_SUID_DROP))
429IF_WHICH(APPLET(which, _BB_DIR_USR_BIN, _BB_SUID_DROP))
430IF_WHO(APPLET(who, _BB_DIR_USR_BIN, _BB_SUID_DROP))
431IF_WHOAMI(APPLET_NOFORK(whoami, whoami, _BB_DIR_USR_BIN, _BB_SUID_DROP, whoami))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200432IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xzcat))
433IF_XZ(APPLET_ODDNAME(xz, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xz))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200434IF_YES(APPLET_NOFORK(yes, yes, _BB_DIR_USR_BIN, _BB_SUID_DROP, yes))
435IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, _BB_DIR_BIN, _BB_SUID_DROP, zcat))
436IF_ZCIP(APPLET(zcip, _BB_DIR_SBIN, _BB_SUID_DROP))
Eric Andersen8c725e62000-11-30 00:27:06 +0000437
Denis Vlasenkof545be02007-10-07 17:06:26 +0000438#if !defined(PROTOTYPES) && !defined(NAME_MAIN_CNAME) && !defined(MAKE_USAGE)
Mark Whitley130005c2000-10-25 00:28:27 +0000439};
Eric Andersen8c725e62000-11-30 00:27:06 +0000440#endif
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000441
442#undef APPLET
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000443#undef APPLET_ODDNAME
Denis Vlasenkoc44ab012007-04-09 03:11:58 +0000444#undef APPLET_NOEXEC
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000445#undef APPLET_NOFORK