blob: 5058feb3a4fe612fbe5bd5e0c89a2fbb4e010141 [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
Joachim Nilssondc160032010-12-05 23:05:38 +010059#if ENABLE_INSTALL_NO_USR
60# define _BB_DIR_USR_BIN _BB_DIR_BIN
61# define _BB_DIR_USR_SBIN _BB_DIR_SBIN
62#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))
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020078IF_BEEP(APPLET(beep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020079IF_BLKID(APPLET(blkid, _BB_DIR_SBIN, _BB_SUID_DROP))
80IF_BRCTL(APPLET(brctl, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020081IF_BZIP2(APPLET(bzip2, _BB_DIR_USR_BIN, _BB_SUID_DROP))
82IF_CAL(APPLET(cal, _BB_DIR_USR_BIN, _BB_SUID_DROP))
83IF_CAT(APPLET_NOFORK(cat, cat, _BB_DIR_BIN, _BB_SUID_DROP, cat))
84IF_CATV(APPLET(catv, _BB_DIR_BIN, _BB_SUID_DROP))
85IF_CHAT(APPLET(chat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
86IF_CHATTR(APPLET(chattr, _BB_DIR_BIN, _BB_SUID_DROP))
87IF_CHCON(APPLET(chcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
88IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, _BB_DIR_BIN, _BB_SUID_DROP, chgrp))
89IF_CHMOD(APPLET_NOEXEC(chmod, chmod, _BB_DIR_BIN, _BB_SUID_DROP, chmod))
90IF_CHOWN(APPLET_NOEXEC(chown, chown, _BB_DIR_BIN, _BB_SUID_DROP, chown))
91IF_CHPASSWD(APPLET(chpasswd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
92IF_CHPST(APPLET(chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP))
93IF_CHROOT(APPLET(chroot, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
94IF_CHRT(APPLET(chrt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
95IF_CHVT(APPLET(chvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -070096IF_CKSUM(APPLET_NOEXEC(cksum, cksum, _BB_DIR_USR_BIN, _BB_SUID_DROP, cksum))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +020097IF_CLEAR(APPLET(clear, _BB_DIR_USR_BIN, _BB_SUID_DROP))
98IF_CMP(APPLET(cmp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
99IF_COMM(APPLET(comm, _BB_DIR_USR_BIN, _BB_SUID_DROP))
100IF_CP(APPLET_NOEXEC(cp, cp, _BB_DIR_BIN, _BB_SUID_DROP, cp))
101IF_CPIO(APPLET(cpio, _BB_DIR_BIN, _BB_SUID_DROP))
102IF_CROND(APPLET(crond, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
103IF_CRONTAB(APPLET(crontab, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
104IF_CRYPTPW(APPLET(cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200105IF_CUT(APPLET_NOEXEC(cut, cut, _BB_DIR_USR_BIN, _BB_SUID_DROP, cut))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200106IF_DC(APPLET(dc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
107IF_DD(APPLET_NOEXEC(dd, dd, _BB_DIR_BIN, _BB_SUID_DROP, dd))
108IF_DEALLOCVT(APPLET(deallocvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
109IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_DROP, delgroup))
110IF_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200111IF_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_DROP))
112IF_DEVMEM(APPLET(devmem, _BB_DIR_SBIN, _BB_SUID_DROP))
113IF_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100114IF_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200115IF_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_DROP))
116IF_DIRNAME(APPLET_NOFORK(dirname, dirname, _BB_DIR_USR_BIN, _BB_SUID_DROP, dirname))
117IF_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_DROP))
118IF_DNSD(APPLET(dnsd, _BB_DIR_USR_SBIN, _BB_SUID_REQUIRE))
119IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, _BB_DIR_BIN, _BB_SUID_DROP, dnsdomainname))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700120IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, dos2unix))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200121IF_DPKG(APPLET(dpkg, _BB_DIR_USR_BIN, _BB_SUID_DROP))
122IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, _BB_DIR_USR_BIN, _BB_SUID_DROP, dpkg_deb))
123IF_DU(APPLET(du, _BB_DIR_USR_BIN, _BB_SUID_DROP))
124IF_DUMPKMAP(APPLET(dumpkmap, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100125IF_DUMPLEASES(APPLET(dumpleases, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200126//IF_E2FSCK(APPLET(e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
127//IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP, e2label))
128IF_ECHO(APPLET_NOFORK(echo, echo, _BB_DIR_BIN, _BB_SUID_DROP, echo))
129IF_ED(APPLET(ed, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200130IF_EJECT(APPLET(eject, _BB_DIR_USR_BIN, _BB_SUID_DROP))
131IF_ENV(APPLET_NOEXEC(env, env, _BB_DIR_USR_BIN, _BB_SUID_DROP, env))
132IF_ENVDIR(APPLET_ODDNAME(envdir, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envdir))
133IF_ENVUIDGID(APPLET_ODDNAME(envuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, envuidgid))
134IF_ETHER_WAKE(APPLET_ODDNAME(ether-wake, ether_wake, _BB_DIR_USR_BIN, _BB_SUID_DROP, ether_wake))
135IF_EXPAND(APPLET(expand, _BB_DIR_USR_BIN, _BB_SUID_DROP))
136IF_EXPR(APPLET(expr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
137IF_FAKEIDENTD(APPLET(fakeidentd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
138IF_FALSE(APPLET_NOFORK(false, false, _BB_DIR_BIN, _BB_SUID_DROP, false))
139IF_FBSET(APPLET(fbset, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
140IF_FBSPLASH(APPLET(fbsplash, _BB_DIR_SBIN, _BB_SUID_DROP))
141IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, _BB_DIR_BIN, _BB_SUID_DROP, fdflush))
142IF_FDFORMAT(APPLET(fdformat, _BB_DIR_USR_BIN, _BB_SUID_DROP))
143IF_FDISK(APPLET(fdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
Grigory Batalovad7a5d42010-05-23 23:22:10 +0200144IF_FGCONSOLE(APPLET(fgconsole, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000145IF_FINDFS(APPLET(findfs, _BB_DIR_SBIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200146IF_FLASH_ERASEALL(APPLET(flash_eraseall, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
147IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, _BB_DIR_USR_SBIN, _BB_SUID_DROP, flash_lock))
148IF_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 +0100149IF_FLASHCP(APPLET(flashcp, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Timo Teras892d4b62010-03-18 22:45:35 +0100150IF_FLOCK(APPLET(flock, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700151IF_FOLD(APPLET_NOEXEC(fold, fold, _BB_DIR_USR_BIN, _BB_SUID_DROP, fold))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200152IF_FREE(APPLET(free, _BB_DIR_USR_BIN, _BB_SUID_DROP))
153IF_FREERAMDISK(APPLET(freeramdisk, _BB_DIR_SBIN, _BB_SUID_DROP))
154IF_FSCK(APPLET(fsck, _BB_DIR_SBIN, _BB_SUID_DROP))
155//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext2))
156//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_ext3))
157IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, _BB_DIR_SBIN, _BB_SUID_DROP, fsck_minix))
158IF_FSYNC(APPLET_NOFORK(fsync, fsync, _BB_DIR_BIN, _BB_SUID_DROP, fsync))
159IF_FTPD(APPLET(ftpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
160IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpget))
161IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, _BB_DIR_USR_BIN, _BB_SUID_DROP, ftpput))
162IF_FUSER(APPLET(fuser, _BB_DIR_USR_BIN, _BB_SUID_DROP))
163IF_GETENFORCE(APPLET(getenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
164IF_GETOPT(APPLET(getopt, _BB_DIR_BIN, _BB_SUID_DROP))
165IF_GETSEBOOL(APPLET(getsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
166IF_GETTY(APPLET(getty, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200167IF_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_DROP))
168IF_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200169IF_HD(APPLET_NOEXEC(hd, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hd))
170IF_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700171IF_HEAD(APPLET_NOEXEC(head, head, _BB_DIR_USR_BIN, _BB_SUID_DROP, head))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200172IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_DROP, hexdump))
173IF_HOSTID(APPLET_NOFORK(hostid, hostid, _BB_DIR_USR_BIN, _BB_SUID_DROP, hostid))
174IF_HOSTNAME(APPLET(hostname, _BB_DIR_BIN, _BB_SUID_DROP))
175IF_HTTPD(APPLET(httpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200176IF_HWCLOCK(APPLET(hwclock, _BB_DIR_SBIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700177IF_ID(APPLET_NOEXEC(id, id, _BB_DIR_USR_BIN, _BB_SUID_DROP, id))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200178IF_IFCONFIG(APPLET(ifconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
179IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifdown))
180IF_IFENSLAVE(APPLET(ifenslave, _BB_DIR_SBIN, _BB_SUID_DROP))
181IF_IFPLUGD(APPLET(ifplugd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
182IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, _BB_DIR_SBIN, _BB_SUID_DROP, ifup))
183IF_INETD(APPLET(inetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200184IF_INOTIFYD(APPLET(inotifyd, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200185IF_INSTALL(APPLET(install, _BB_DIR_USR_BIN, _BB_SUID_DROP))
186IF_IONICE(APPLET(ionice, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000187#if ENABLE_FEATURE_IP_ADDRESS \
188 || ENABLE_FEATURE_IP_ROUTE \
189 || ENABLE_FEATURE_IP_LINK \
190 || ENABLE_FEATURE_IP_TUNNEL \
191 || ENABLE_FEATURE_IP_RULE
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200192IF_IP(APPLET(ip, _BB_DIR_BIN, _BB_SUID_DROP))
Denis Vlasenkod46e6d12007-05-17 12:58:30 +0000193#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200194IF_IPADDR(APPLET(ipaddr, _BB_DIR_BIN, _BB_SUID_DROP))
195IF_IPCALC(APPLET(ipcalc, _BB_DIR_BIN, _BB_SUID_DROP))
196IF_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
197IF_IPCS(APPLET(ipcs, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
198IF_IPLINK(APPLET(iplink, _BB_DIR_BIN, _BB_SUID_DROP))
199IF_IPROUTE(APPLET(iproute, _BB_DIR_BIN, _BB_SUID_DROP))
200IF_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_DROP))
201IF_IPTUNNEL(APPLET(iptunnel, _BB_DIR_BIN, _BB_SUID_DROP))
202IF_KBD_MODE(APPLET(kbd_mode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
203IF_KILL(APPLET(kill, _BB_DIR_BIN, _BB_SUID_DROP))
204IF_KILLALL(APPLET_ODDNAME(killall, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall))
205IF_KILLALL5(APPLET_ODDNAME(killall5, kill, _BB_DIR_USR_BIN, _BB_SUID_DROP, killall5))
206IF_KLOGD(APPLET(klogd, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200207IF_LAST(APPLET(last, _BB_DIR_USR_BIN, _BB_SUID_DROP))
208IF_LENGTH(APPLET_NOFORK(length, length, _BB_DIR_USR_BIN, _BB_SUID_DROP, length))
209IF_LESS(APPLET(less, _BB_DIR_USR_BIN, _BB_SUID_DROP))
210IF_SETARCH(APPLET_ODDNAME(linux32, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux32))
211IF_SETARCH(APPLET_ODDNAME(linux64, setarch, _BB_DIR_BIN, _BB_SUID_DROP, linux64))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200212IF_LN(APPLET_NOEXEC(ln, ln, _BB_DIR_BIN, _BB_SUID_DROP, ln))
213IF_LOAD_POLICY(APPLET(load_policy, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
214IF_LOADFONT(APPLET(loadfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
215IF_LOADKMAP(APPLET(loadkmap, _BB_DIR_SBIN, _BB_SUID_DROP))
216IF_LOGGER(APPLET(logger, _BB_DIR_USR_BIN, _BB_SUID_DROP))
217IF_LOGIN(APPLET(login, _BB_DIR_BIN, _BB_SUID_REQUIRE))
218IF_LOGNAME(APPLET_NOFORK(logname, logname, _BB_DIR_USR_BIN, _BB_SUID_DROP, logname))
219IF_LOGREAD(APPLET(logread, _BB_DIR_SBIN, _BB_SUID_DROP))
220IF_LOSETUP(APPLET(losetup, _BB_DIR_SBIN, _BB_SUID_DROP))
221IF_LPD(APPLET(lpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
222IF_LPQ(APPLET_ODDNAME(lpq, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpq))
223IF_LPR(APPLET_ODDNAME(lpr, lpqr, _BB_DIR_USR_BIN, _BB_SUID_DROP, lpr))
224IF_LS(APPLET_NOEXEC(ls, ls, _BB_DIR_BIN, _BB_SUID_DROP, ls))
225IF_LSATTR(APPLET(lsattr, _BB_DIR_BIN, _BB_SUID_DROP))
Gustavo Zacariasc7efd642010-05-06 11:57:14 -0300226IF_LSPCI(APPLET(lspci, _BB_DIR_USR_BIN, _BB_SUID_DROP))
227IF_LSUSB(APPLET(lsusb, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenkoccb88a62010-05-27 02:22:54 +0200228IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzcat))
Denys Vlasenkoe04c8672010-05-30 03:33:50 +0200229IF_LZMA(APPLET_ODDNAME(lzma, unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzma))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200230IF_LZOP(APPLET(lzop, _BB_DIR_BIN, _BB_SUID_DROP))
231IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, lzopcat))
232IF_MAKEDEVS(APPLET(makedevs, _BB_DIR_SBIN, _BB_SUID_DROP))
233IF_MAKEMIME(APPLET(makemime, _BB_DIR_BIN, _BB_SUID_DROP))
234IF_MAN(APPLET(man, _BB_DIR_SBIN, _BB_SUID_DROP))
235IF_MATCHPATHCON(APPLET(matchpathcon, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700236IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, md5sum))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200237IF_MDEV(APPLET(mdev, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200238IF_MICROCOM(APPLET(microcom, _BB_DIR_USR_BIN, _BB_SUID_DROP))
239IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, _BB_DIR_BIN, _BB_SUID_DROP, mkdir))
240IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200241IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700242IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkfifo))
Vladimir Dronnikov823b4e62009-10-17 21:38:19 +0200243IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext2))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200244//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_ext3))
245IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_minix))
Vladimir Dronnikov0d8ea642009-11-02 10:41:46 +0100246IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_reiser))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200247IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, _BB_DIR_SBIN, _BB_SUID_DROP, mkfs_vfat))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700248IF_MKNOD(APPLET_NOEXEC(mknod, mknod, _BB_DIR_BIN, _BB_SUID_DROP, mknod))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200249IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, _BB_DIR_USR_BIN, _BB_SUID_DROP, mkpasswd))
250IF_MKSWAP(APPLET(mkswap, _BB_DIR_SBIN, _BB_SUID_DROP))
251IF_MKTEMP(APPLET(mktemp, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200252IF_MORE(APPLET(more, _BB_DIR_BIN, _BB_SUID_DROP))
253IF_MOUNT(APPLET(mount, _BB_DIR_BIN, IF_DESKTOP(_BB_SUID_MAYBE) IF_NOT_DESKTOP(_BB_SUID_DROP)))
254IF_MOUNTPOINT(APPLET(mountpoint, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200255IF_MT(APPLET(mt, _BB_DIR_BIN, _BB_SUID_DROP))
256IF_MV(APPLET(mv, _BB_DIR_BIN, _BB_SUID_DROP))
257IF_NAMEIF(APPLET(nameif, _BB_DIR_SBIN, _BB_SUID_DROP))
258IF_NC(APPLET(nc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
259IF_NETSTAT(APPLET(netstat, _BB_DIR_BIN, _BB_SUID_DROP))
260IF_NICE(APPLET(nice, _BB_DIR_BIN, _BB_SUID_DROP))
261IF_NMETER(APPLET(nmeter, _BB_DIR_USR_BIN, _BB_SUID_DROP))
262IF_NOHUP(APPLET(nohup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
263IF_NSLOOKUP(APPLET(nslookup, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Adam Tkacb1585062009-11-22 03:43:55 +0100264IF_NTPD(APPLET(ntpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200265IF_OD(APPLET(od, _BB_DIR_USR_BIN, _BB_SUID_DROP))
266IF_OPENVT(APPLET(openvt, _BB_DIR_USR_BIN, _BB_SUID_DROP))
267//IF_PARSE(APPLET(parse, _BB_DIR_USR_BIN, _BB_SUID_DROP))
268IF_PASSWD(APPLET(passwd, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200269IF_PGREP(APPLET(pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP))
270IF_PIDOF(APPLET(pidof, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200271IF_PIPE_PROGRESS(APPLET(pipe_progress, _BB_DIR_BIN, _BB_SUID_DROP))
272IF_PIVOT_ROOT(APPLET(pivot_root, _BB_DIR_SBIN, _BB_SUID_DROP))
273IF_PKILL(APPLET_ODDNAME(pkill, pgrep, _BB_DIR_USR_BIN, _BB_SUID_DROP, pkill))
274IF_POPMAILDIR(APPLET(popmaildir, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700275IF_PRINTENV(APPLET_NOFORK(printenv, printenv, _BB_DIR_BIN, _BB_SUID_DROP, printenv))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200276IF_PRINTF(APPLET_NOFORK(printf, printf, _BB_DIR_USR_BIN, _BB_SUID_DROP, printf))
277IF_PS(APPLET(ps, _BB_DIR_BIN, _BB_SUID_DROP))
278IF_PSCAN(APPLET(pscan, _BB_DIR_USR_BIN, _BB_SUID_DROP))
279IF_PWD(APPLET_NOFORK(pwd, pwd, _BB_DIR_BIN, _BB_SUID_DROP, pwd))
280IF_RAIDAUTORUN(APPLET(raidautorun, _BB_DIR_SBIN, _BB_SUID_DROP))
281IF_RDATE(APPLET(rdate, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
282IF_RDEV(APPLET(rdev, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
283IF_READAHEAD(APPLET(readahead, _BB_DIR_USR_BIN, _BB_SUID_DROP))
284IF_READLINK(APPLET(readlink, _BB_DIR_USR_BIN, _BB_SUID_DROP))
285IF_READPROFILE(APPLET(readprofile, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
286IF_REALPATH(APPLET(realpath, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200287IF_REFORMIME(APPLET(reformime, _BB_DIR_BIN, _BB_SUID_DROP))
288IF_RENICE(APPLET(renice, _BB_DIR_USR_BIN, _BB_SUID_DROP))
289IF_RESET(APPLET(reset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
290IF_RESIZE(APPLET(resize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
291IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, _BB_DIR_SBIN, _BB_SUID_DROP, restorecon))
Souf Oued43afd752010-05-02 18:45:02 +0200292IF_RFKILL(APPLET(rfkill, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200293IF_RM(APPLET_NOFORK(rm, rm, _BB_DIR_BIN, _BB_SUID_DROP, rm))
294IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, _BB_DIR_BIN, _BB_SUID_DROP, rmdir))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200295IF_ROUTE(APPLET(route, _BB_DIR_SBIN, _BB_SUID_DROP))
296IF_RPM(APPLET(rpm, _BB_DIR_BIN, _BB_SUID_DROP))
297IF_RPM2CPIO(APPLET(rpm2cpio, _BB_DIR_USR_BIN, _BB_SUID_DROP))
298IF_RTCWAKE(APPLET(rtcwake, _BB_DIR_USR_BIN, _BB_SUID_DROP))
299IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, _BB_DIR_BIN, _BB_SUID_DROP, run_parts))
300IF_RUNCON(APPLET(runcon, _BB_DIR_USR_BIN, _BB_SUID_DROP))
301IF_RUNLEVEL(APPLET(runlevel, _BB_DIR_SBIN, _BB_SUID_DROP))
302IF_RUNSV(APPLET(runsv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
303IF_RUNSVDIR(APPLET(runsvdir, _BB_DIR_USR_BIN, _BB_SUID_DROP))
304IF_RX(APPLET(rx, _BB_DIR_USR_BIN, _BB_SUID_DROP))
305IF_SCRIPT(APPLET(script, _BB_DIR_USR_BIN, _BB_SUID_DROP))
306IF_SCRIPTREPLAY(APPLET(scriptreplay, _BB_DIR_BIN, _BB_SUID_DROP))
307IF_SED(APPLET(sed, _BB_DIR_BIN, _BB_SUID_DROP))
308IF_SELINUXENABLED(APPLET(selinuxenabled, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
309IF_SENDMAIL(APPLET(sendmail, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
310IF_SEQ(APPLET_NOFORK(seq, seq, _BB_DIR_USR_BIN, _BB_SUID_DROP, seq))
311IF_SESTATUS(APPLET(sestatus, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
312IF_SETARCH(APPLET(setarch, _BB_DIR_BIN, _BB_SUID_DROP))
313IF_SETCONSOLE(APPLET(setconsole, _BB_DIR_SBIN, _BB_SUID_DROP))
314IF_SETENFORCE(APPLET(setenforce, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
315IF_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_DROP))
316IF_SETFONT(APPLET(setfont, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
317IF_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_DROP))
318IF_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
319IF_SETSEBOOL(APPLET(setsebool, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
320IF_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_DROP))
321IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, setuidgid))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700322IF_SHA1SUM(APPLET_NOEXEC(sha1sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha1sum))
323IF_SHA256SUM(APPLET_NOEXEC(sha256sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha256sum))
324IF_SHA512SUM(APPLET_NOEXEC(sha512sum, md5_sha1_sum, _BB_DIR_USR_BIN, _BB_SUID_DROP, sha512sum))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200325IF_SHOWKEY(APPLET(showkey, _BB_DIR_USR_BIN, _BB_SUID_DROP))
326IF_SLATTACH(APPLET(slattach, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko197a6b32010-09-14 12:57:05 +0200327/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells */
328IF_SLEEP(APPLET(sleep, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200329IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, _BB_DIR_USR_BIN, _BB_SUID_DROP, softlimit))
330IF_SORT(APPLET_NOEXEC(sort, sort, _BB_DIR_USR_BIN, _BB_SUID_DROP, sort))
331IF_SPLIT(APPLET(split, _BB_DIR_USR_BIN, _BB_SUID_DROP))
332IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, _BB_DIR_SBIN, _BB_SUID_DROP, start_stop_daemon))
333IF_STAT(APPLET(stat, _BB_DIR_BIN, _BB_SUID_DROP))
334IF_STRINGS(APPLET(strings, _BB_DIR_USR_BIN, _BB_SUID_DROP))
335IF_STTY(APPLET(stty, _BB_DIR_BIN, _BB_SUID_DROP))
336IF_SU(APPLET(su, _BB_DIR_BIN, _BB_SUID_REQUIRE))
337IF_SULOGIN(APPLET(sulogin, _BB_DIR_SBIN, _BB_SUID_DROP))
338IF_SUM(APPLET(sum, _BB_DIR_USR_BIN, _BB_SUID_DROP))
339IF_SV(APPLET(sv, _BB_DIR_USR_BIN, _BB_SUID_DROP))
340IF_SVLOGD(APPLET(svlogd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko197a6b32010-09-14 12:57:05 +0200341IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapoff))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200342IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, _BB_DIR_SBIN, _BB_SUID_DROP, swapon))
343IF_SWITCH_ROOT(APPLET(switch_root, _BB_DIR_SBIN, _BB_SUID_DROP))
344IF_SYNC(APPLET_NOFORK(sync, sync, _BB_DIR_BIN, _BB_SUID_DROP, sync))
345IF_BB_SYSCTL(APPLET(sysctl, _BB_DIR_SBIN, _BB_SUID_DROP))
346IF_SYSLOGD(APPLET(syslogd, _BB_DIR_SBIN, _BB_SUID_DROP))
347IF_TAC(APPLET_NOEXEC(tac, tac, _BB_DIR_USR_BIN, _BB_SUID_DROP, tac))
348IF_TAIL(APPLET(tail, _BB_DIR_USR_BIN, _BB_SUID_DROP))
349IF_TAR(APPLET(tar, _BB_DIR_BIN, _BB_SUID_DROP))
350IF_TASKSET(APPLET(taskset, _BB_DIR_USR_BIN, _BB_SUID_DROP))
351/* IF_TC(APPLET(tc, _BB_DIR_SBIN, _BB_SUID_DROP)) */
352IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, tcpsvd))
353IF_TEE(APPLET(tee, _BB_DIR_USR_BIN, _BB_SUID_DROP))
354IF_TELNET(APPLET(telnet, _BB_DIR_USR_BIN, _BB_SUID_DROP))
355IF_TELNETD(APPLET(telnetd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
356IF_TEST(APPLET_NOFORK(test, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
Denis Vlasenko31635552007-01-20 16:54:19 +0000357#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200358IF_TFTP(APPLET(tftp, _BB_DIR_USR_BIN, _BB_SUID_DROP))
359IF_TFTPD(APPLET(tftpd, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko31635552007-01-20 16:54:19 +0000360#endif
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200361IF_TIME(APPLET(time, _BB_DIR_USR_BIN, _BB_SUID_DROP))
362IF_TIMEOUT(APPLET(timeout, _BB_DIR_USR_BIN, _BB_SUID_DROP))
363IF_TOP(APPLET(top, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200364IF_TR(APPLET(tr, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000365IF_TRACEROUTE(APPLET(traceroute, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Leonid Lisovskiy4c065312009-11-23 06:20:09 +0100366IF_TRACEROUTE6(APPLET(traceroute6, _BB_DIR_USR_BIN, _BB_SUID_MAYBE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200367IF_TRUE(APPLET_NOFORK(true, true, _BB_DIR_BIN, _BB_SUID_DROP, true))
368IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP))
369IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP))
370IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko67743862010-05-09 00:13:40 +0200371IF_TUNE2FS(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP))
Denys Vlasenko4662de02009-12-11 02:21:10 +0100372IF_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP))
373IF_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200374IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd))
375IF_UMOUNT(APPLET(umount, _BB_DIR_BIN, _BB_SUID_DROP))
376IF_UNAME(APPLET(uname, _BB_DIR_BIN, _BB_SUID_DROP))
377IF_UNCOMPRESS(APPLET(uncompress, _BB_DIR_BIN, _BB_SUID_DROP))
378IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, _BB_DIR_USR_BIN, _BB_SUID_DROP, unexpand))
379IF_UNIQ(APPLET(uniq, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Dan Fandrich2d1a78b2010-09-30 14:31:12 -0700380IF_UNIX2DOS(APPLET_NOEXEC(unix2dos, dos2unix, _BB_DIR_USR_BIN, _BB_SUID_DROP, unix2dos))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200381IF_UNXZ(APPLET(unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200382IF_UNLZMA(APPLET(unlzma, _BB_DIR_USR_BIN, _BB_SUID_DROP))
383IF_LZOP(APPLET_ODDNAME(unlzop, lzop, _BB_DIR_USR_BIN, _BB_SUID_DROP, unlzop))
384IF_UNZIP(APPLET(unzip, _BB_DIR_USR_BIN, _BB_SUID_DROP))
385IF_UPTIME(APPLET(uptime, _BB_DIR_USR_BIN, _BB_SUID_DROP))
386IF_USLEEP(APPLET_NOFORK(usleep, usleep, _BB_DIR_BIN, _BB_SUID_DROP, usleep))
387IF_UUDECODE(APPLET(uudecode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
388IF_UUENCODE(APPLET(uuencode, _BB_DIR_USR_BIN, _BB_SUID_DROP))
389IF_VCONFIG(APPLET(vconfig, _BB_DIR_SBIN, _BB_SUID_DROP))
390IF_VI(APPLET(vi, _BB_DIR_BIN, _BB_SUID_DROP))
391IF_VLOCK(APPLET(vlock, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Matthew Stoltenberg4803db52009-08-13 00:59:32 +0200392IF_VOLNAME(APPLET(volname, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Bernhard Reutner-Fischere039e682009-10-26 23:29:03 +0100393IF_WALL(APPLET(wall, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200394IF_WATCH(APPLET(watch, _BB_DIR_BIN, _BB_SUID_DROP))
395IF_WATCHDOG(APPLET(watchdog, _BB_DIR_SBIN, _BB_SUID_DROP))
396IF_WC(APPLET(wc, _BB_DIR_USR_BIN, _BB_SUID_DROP))
397IF_WGET(APPLET(wget, _BB_DIR_USR_BIN, _BB_SUID_DROP))
398IF_WHICH(APPLET(which, _BB_DIR_USR_BIN, _BB_SUID_DROP))
399IF_WHO(APPLET(who, _BB_DIR_USR_BIN, _BB_SUID_DROP))
400IF_WHOAMI(APPLET_NOFORK(whoami, whoami, _BB_DIR_USR_BIN, _BB_SUID_DROP, whoami))
Denys Vlasenko602ce692010-05-30 03:35:18 +0200401IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xzcat))
402IF_XZ(APPLET_ODDNAME(xz, unxz, _BB_DIR_USR_BIN, _BB_SUID_DROP, xz))
Denys Vlasenko6d48d3e2009-07-30 12:57:19 +0200403IF_YES(APPLET_NOFORK(yes, yes, _BB_DIR_USR_BIN, _BB_SUID_DROP, yes))
404IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, _BB_DIR_BIN, _BB_SUID_DROP, zcat))
405IF_ZCIP(APPLET(zcip, _BB_DIR_SBIN, _BB_SUID_DROP))
Eric Andersen8c725e62000-11-30 00:27:06 +0000406
Denis Vlasenkof545be02007-10-07 17:06:26 +0000407#if !defined(PROTOTYPES) && !defined(NAME_MAIN_CNAME) && !defined(MAKE_USAGE)
Mark Whitley130005c2000-10-25 00:28:27 +0000408};
Eric Andersen8c725e62000-11-30 00:27:06 +0000409#endif
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000410
411#undef APPLET
Denis Vlasenko32b633a2007-04-09 03:05:48 +0000412#undef APPLET_ODDNAME
Denis Vlasenkoc44ab012007-04-09 03:11:58 +0000413#undef APPLET_NOEXEC
Denis Vlasenko1b4b2cb2007-04-09 21:30:53 +0000414#undef APPLET_NOFORK