source: MondoRescue/branches/3.2/mindi-busybox/include/applets.src.h@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
  • Property svn:eol-style set to native
File size: 24.4 KB
Line 
1/* vi: set sw=4 ts=4: */
2/*
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.
7 */
8
9/*
10name - applet name as it is typed on command line
11name2 - applet name, converted to C (ether-wake: name2 = ether_wake)
12main - corresponding <applet>_main to call (bzcat: main = bunzip2)
13l - location to install link to: [/usr]/[s]bin
14s - suid type:
15 BB_SUID_REQUIRE: will complain if busybox isn't suid
16 and is run by non-root (applet_main() will not be called at all)
17 BB_SUID_DROP: will drop suid prior to applet_main()
18 BB_SUID_MAYBE: neither of the above
19 (every instance of BB_SUID_REQUIRE and BB_SUID_MAYBE
20 needs to be justified in comment)
21 NB: please update FEATURE_SUID help text whenever you add/remove
22 BB_SUID_REQUIRE or BB_SUID_MAYBE applet.
23*/
24
25#if defined(PROTOTYPES)
26# define APPLET(name,l,s) int name##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
27# define APPLET_ODDNAME(name,main,l,s,name2) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
28# define APPLET_NOEXEC(name,main,l,s,name2) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29# define APPLET_NOFORK(name,main,l,s,name2) int main##_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
30
31#elif defined(NAME_MAIN_CNAME)
32# define APPLET(name,l,s) name name##_main name
33# define APPLET_ODDNAME(name,main,l,s,name2) name main##_main name2
34# define APPLET_NOEXEC(name,main,l,s,name2) name main##_main name2
35# define APPLET_NOFORK(name,main,l,s,name2) name main##_main name2
36
37#elif defined(MAKE_USAGE) && ENABLE_FEATURE_VERBOSE_USAGE
38# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage name##_full_usage)
39# define APPLET_ODDNAME(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage name2##_full_usage)
40# define APPLET_NOEXEC(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage name2##_full_usage)
41# define APPLET_NOFORK(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage name2##_full_usage)
42
43#elif defined(MAKE_USAGE) && !ENABLE_FEATURE_VERBOSE_USAGE
44# define APPLET(name,l,s) MAKE_USAGE(#name, name##_trivial_usage)
45# define APPLET_ODDNAME(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage)
46# define APPLET_NOEXEC(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage)
47# define APPLET_NOFORK(name,main,l,s,name2) MAKE_USAGE(#name, name2##_trivial_usage)
48
49#elif defined(MAKE_LINKS)
50# define APPLET(name,l,c) LINK l name
51# define APPLET_ODDNAME(name,main,l,s,name2) LINK l name
52# define APPLET_NOEXEC(name,main,l,s,name2) LINK l name
53# define APPLET_NOFORK(name,main,l,s,name2) LINK l name
54
55#else
56 static struct bb_applet applets[] = { /* name, main, location, need_suid */
57# define APPLET(name,l,s) { #name, #name, l, s },
58# define APPLET_ODDNAME(name,main,l,s,name2) { #name, #main, l, s },
59# define APPLET_NOEXEC(name,main,l,s,name2) { #name, #main, l, s, 1 },
60# define APPLET_NOFORK(name,main,l,s,name2) { #name, #main, l, s, 1, 1 },
61#endif
62
63#if ENABLE_INSTALL_NO_USR
64# define BB_DIR_USR_BIN BB_DIR_BIN
65# define BB_DIR_USR_SBIN BB_DIR_SBIN
66#endif
67
68
69INSERT
70IF_TEST(APPLET_NOFORK([, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
71IF_TEST(APPLET_NOFORK([[, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
72IF_ACPID(APPLET(acpid, BB_DIR_SBIN, BB_SUID_DROP))
73IF_ADDGROUP(APPLET(addgroup, BB_DIR_USR_SBIN, BB_SUID_DROP))
74IF_ADDUSER(APPLET(adduser, BB_DIR_USR_SBIN, BB_SUID_DROP))
75IF_ADJTIMEX(APPLET(adjtimex, BB_DIR_SBIN, BB_SUID_DROP))
76IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP))
77IF_ARP(APPLET(arp, BB_DIR_SBIN, BB_SUID_DROP))
78IF_ARPING(APPLET(arping, BB_DIR_USR_SBIN, BB_SUID_DROP))
79IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk))
80IF_BASENAME(APPLET_NOFORK(basename, basename, BB_DIR_USR_BIN, BB_SUID_DROP, basename))
81IF_BBCONFIG(APPLET(bbconfig, BB_DIR_BIN, BB_SUID_DROP))
82IF_BEEP(APPLET(beep, BB_DIR_USR_BIN, BB_SUID_DROP))
83IF_BLKID(APPLET(blkid, BB_DIR_SBIN, BB_SUID_DROP))
84IF_BRCTL(APPLET(brctl, BB_DIR_USR_SBIN, BB_SUID_DROP))
85IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP))
86IF_CAL(APPLET(cal, BB_DIR_USR_BIN, BB_SUID_DROP))
87IF_CAT(APPLET_NOFORK(cat, cat, BB_DIR_BIN, BB_SUID_DROP, cat))
88IF_CATV(APPLET(catv, BB_DIR_BIN, BB_SUID_DROP))
89IF_CHAT(APPLET(chat, BB_DIR_USR_SBIN, BB_SUID_DROP))
90IF_CHATTR(APPLET(chattr, BB_DIR_BIN, BB_SUID_DROP))
91IF_CHCON(APPLET(chcon, BB_DIR_USR_BIN, BB_SUID_DROP))
92IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, BB_DIR_BIN, BB_SUID_DROP, chgrp))
93IF_CHMOD(APPLET_NOEXEC(chmod, chmod, BB_DIR_BIN, BB_SUID_DROP, chmod))
94IF_CHOWN(APPLET_NOEXEC(chown, chown, BB_DIR_BIN, BB_SUID_DROP, chown))
95IF_CHPASSWD(APPLET(chpasswd, BB_DIR_USR_SBIN, BB_SUID_DROP))
96IF_CHPST(APPLET(chpst, BB_DIR_USR_BIN, BB_SUID_DROP))
97IF_CHROOT(APPLET(chroot, BB_DIR_USR_SBIN, BB_SUID_DROP))
98IF_CHRT(APPLET(chrt, BB_DIR_USR_BIN, BB_SUID_DROP))
99IF_CHVT(APPLET(chvt, BB_DIR_USR_BIN, BB_SUID_DROP))
100IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum))
101IF_CLEAR(APPLET(clear, BB_DIR_USR_BIN, BB_SUID_DROP))
102IF_CMP(APPLET(cmp, BB_DIR_USR_BIN, BB_SUID_DROP))
103IF_COMM(APPLET(comm, BB_DIR_USR_BIN, BB_SUID_DROP))
104IF_CP(APPLET_NOEXEC(cp, cp, BB_DIR_BIN, BB_SUID_DROP, cp))
105IF_CPIO(APPLET(cpio, BB_DIR_BIN, BB_SUID_DROP))
106IF_CROND(APPLET(crond, BB_DIR_USR_SBIN, BB_SUID_DROP))
107/* Needs to be run by root or be suid root - needs to change /var/spool/cron* files: */
108IF_CRONTAB(APPLET(crontab, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
109IF_CRYPTPW(APPLET(cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP))
110IF_CUT(APPLET_NOEXEC(cut, cut, BB_DIR_USR_BIN, BB_SUID_DROP, cut))
111IF_DC(APPLET(dc, BB_DIR_USR_BIN, BB_SUID_DROP))
112IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd))
113IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP))
114IF_DELGROUP(APPLET_ODDNAME(delgroup, deluser, BB_DIR_USR_SBIN, BB_SUID_DROP, delgroup))
115IF_DELUSER(APPLET(deluser, BB_DIR_USR_SBIN, BB_SUID_DROP))
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))
119IF_DHCPRELAY(APPLET(dhcprelay, BB_DIR_USR_SBIN, BB_SUID_DROP))
120IF_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_DROP))
124IF_HOSTNAME(APPLET_ODDNAME(dnsdomainname, hostname, BB_DIR_BIN, BB_SUID_DROP, dnsdomainname))
125IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, dos2unix))
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))
130IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
131//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))
135IF_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_SBIN, 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_SBIN, BB_SUID_DROP))
148IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP))
149IF_FGCONSOLE(APPLET(fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP))
150/* Benefits from suid root: better access to /dev/BLOCKDEVs: */
151IF_FINDFS(APPLET(findfs, BB_DIR_SBIN, BB_SUID_MAYBE))
152IF_FLASH_ERASEALL(APPLET(flash_eraseall, BB_DIR_USR_SBIN, BB_SUID_DROP))
153IF_FLASH_LOCK(APPLET_ODDNAME(flash_lock, flash_lock_unlock, BB_DIR_USR_SBIN, BB_SUID_DROP, flash_lock))
154IF_FLASH_UNLOCK(APPLET_ODDNAME(flash_unlock, flash_lock_unlock, BB_DIR_USR_SBIN, BB_SUID_DROP, flash_unlock))
155IF_FLASHCP(APPLET(flashcp, BB_DIR_USR_SBIN, BB_SUID_DROP))
156IF_FLOCK(APPLET(flock, BB_DIR_USR_BIN, BB_SUID_DROP))
157IF_FOLD(APPLET_NOEXEC(fold, fold, BB_DIR_USR_BIN, BB_SUID_DROP, fold))
158IF_FREE(APPLET(free, BB_DIR_USR_BIN, BB_SUID_DROP))
159IF_FREERAMDISK(APPLET(freeramdisk, BB_DIR_SBIN, BB_SUID_DROP))
160IF_FSCK(APPLET(fsck, BB_DIR_SBIN, BB_SUID_DROP))
161//IF_E2FSCK(APPLET_ODDNAME(fsck.ext2, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext2))
162//IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext3))
163IF_FSCK_MINIX(APPLET_ODDNAME(fsck.minix, fsck_minix, BB_DIR_SBIN, BB_SUID_DROP, fsck_minix))
164IF_FSYNC(APPLET_NOFORK(fsync, fsync, BB_DIR_BIN, BB_SUID_DROP, fsync))
165IF_FTPD(APPLET(ftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
166IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpget))
167IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpput))
168IF_FUSER(APPLET(fuser, BB_DIR_USR_BIN, BB_SUID_DROP))
169IF_GETENFORCE(APPLET(getenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
170IF_GETOPT(APPLET(getopt, BB_DIR_BIN, BB_SUID_DROP))
171IF_GETSEBOOL(APPLET(getsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
172IF_GETTY(APPLET(getty, BB_DIR_SBIN, BB_SUID_DROP))
173IF_GUNZIP(APPLET(gunzip, BB_DIR_BIN, BB_SUID_DROP))
174IF_GZIP(APPLET(gzip, BB_DIR_BIN, 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_NOEXEC(head, head, BB_DIR_USR_BIN, BB_SUID_DROP, head))
178IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hexdump))
179IF_HOSTNAME(APPLET(hostname, BB_DIR_BIN, BB_SUID_DROP))
180IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
181IF_HWCLOCK(APPLET(hwclock, BB_DIR_SBIN, BB_SUID_DROP))
182IF_IFCONFIG(APPLET(ifconfig, BB_DIR_SBIN, BB_SUID_DROP))
183IF_IFUPDOWN(APPLET_ODDNAME(ifdown, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifdown))
184IF_IFENSLAVE(APPLET(ifenslave, BB_DIR_SBIN, BB_SUID_DROP))
185IF_IFPLUGD(APPLET(ifplugd, BB_DIR_USR_SBIN, BB_SUID_DROP))
186IF_IFUPDOWN(APPLET_ODDNAME(ifup, ifupdown, BB_DIR_SBIN, BB_SUID_DROP, ifup))
187IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
188IF_INOTIFYD(APPLET(inotifyd, BB_DIR_SBIN, BB_SUID_DROP))
189IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP))
190IF_IONICE(APPLET(ionice, BB_DIR_BIN, BB_SUID_DROP))
191#if ENABLE_FEATURE_IP_ADDRESS \
192 || ENABLE_FEATURE_IP_ROUTE \
193 || ENABLE_FEATURE_IP_LINK \
194 || ENABLE_FEATURE_IP_TUNNEL \
195 || ENABLE_FEATURE_IP_RULE
196IF_IP(APPLET(ip, BB_DIR_SBIN, BB_SUID_DROP))
197#endif
198IF_IPADDR(APPLET(ipaddr, BB_DIR_SBIN, BB_SUID_DROP))
199IF_IPCALC(APPLET(ipcalc, BB_DIR_BIN, BB_SUID_DROP))
200IF_IPCRM(APPLET(ipcrm, BB_DIR_USR_BIN, BB_SUID_DROP))
201IF_IPCS(APPLET(ipcs, BB_DIR_USR_BIN, BB_SUID_DROP))
202IF_IPLINK(APPLET(iplink, BB_DIR_SBIN, BB_SUID_DROP))
203IF_IPROUTE(APPLET(iproute, BB_DIR_SBIN, BB_SUID_DROP))
204IF_IPRULE(APPLET(iprule, BB_DIR_SBIN, BB_SUID_DROP))
205IF_IPTUNNEL(APPLET(iptunnel, BB_DIR_SBIN, BB_SUID_DROP))
206IF_KBD_MODE(APPLET(kbd_mode, BB_DIR_BIN, BB_SUID_DROP))
207IF_KILL(APPLET(kill, BB_DIR_BIN, BB_SUID_DROP))
208IF_KILLALL(APPLET_ODDNAME(killall, kill, BB_DIR_USR_BIN, BB_SUID_DROP, killall))
209IF_KILLALL5(APPLET_ODDNAME(killall5, kill, BB_DIR_USR_SBIN, BB_SUID_DROP, killall5))
210IF_KLOGD(APPLET(klogd, BB_DIR_SBIN, BB_SUID_DROP))
211IF_LAST(APPLET(last, BB_DIR_USR_BIN, BB_SUID_DROP))
212//IF_LENGTH(APPLET_NOFORK(length, length, BB_DIR_USR_BIN, BB_SUID_DROP, length))
213IF_LESS(APPLET(less, BB_DIR_USR_BIN, BB_SUID_DROP))
214IF_SETARCH(APPLET_ODDNAME(linux32, setarch, BB_DIR_BIN, BB_SUID_DROP, linux32))
215IF_SETARCH(APPLET_ODDNAME(linux64, setarch, BB_DIR_BIN, BB_SUID_DROP, linux64))
216IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln))
217IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
218IF_LOADFONT(APPLET(loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
219IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP))
220IF_LOGGER(APPLET(logger, BB_DIR_USR_BIN, BB_SUID_DROP))
221/* Needs to be run by root or be suid root - needs to change uid and gid: */
222IF_LOGIN(APPLET(login, BB_DIR_BIN, BB_SUID_REQUIRE))
223IF_LOGNAME(APPLET_NOFORK(logname, logname, BB_DIR_USR_BIN, BB_SUID_DROP, logname))
224IF_LOGREAD(APPLET(logread, BB_DIR_SBIN, BB_SUID_DROP))
225IF_LOSETUP(APPLET(losetup, BB_DIR_SBIN, BB_SUID_DROP))
226IF_LPD(APPLET(lpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
227IF_LPQ(APPLET_ODDNAME(lpq, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpq))
228IF_LPR(APPLET_ODDNAME(lpr, lpqr, BB_DIR_USR_BIN, BB_SUID_DROP, lpr))
229IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls))
230IF_LSATTR(APPLET(lsattr, BB_DIR_BIN, BB_SUID_DROP))
231IF_LSPCI(APPLET(lspci, BB_DIR_USR_BIN, BB_SUID_DROP))
232IF_LSUSB(APPLET(lsusb, BB_DIR_USR_BIN, BB_SUID_DROP))
233IF_UNLZMA(APPLET_ODDNAME(lzcat, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzcat))
234IF_LZMA(APPLET_ODDNAME(lzma, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzma))
235IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP))
236IF_LZOP(APPLET_ODDNAME(lzopcat, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, lzopcat))
237IF_MAKEDEVS(APPLET(makedevs, BB_DIR_SBIN, BB_SUID_DROP))
238IF_MAKEMIME(APPLET(makemime, BB_DIR_BIN, BB_SUID_DROP))
239IF_MAN(APPLET(man, BB_DIR_SBIN, BB_SUID_DROP))
240IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
241IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum))
242IF_MICROCOM(APPLET(microcom, BB_DIR_USR_BIN, BB_SUID_DROP))
243IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, BB_DIR_BIN, BB_SUID_DROP, mkdir))
244IF_MKFS_VFAT(APPLET_ODDNAME(mkdosfs, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat))
245IF_MKFS_EXT2(APPLET_ODDNAME(mke2fs, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
246IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, BB_DIR_USR_BIN, BB_SUID_DROP, mkfifo))
247IF_MKFS_EXT2(APPLET_ODDNAME(mkfs.ext2, mkfs_ext2, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext2))
248//IF_MKE2FS(APPLET_ODDNAME(mkfs.ext3, mke2fs, BB_DIR_SBIN, BB_SUID_DROP, mkfs_ext3))
249IF_MKFS_MINIX(APPLET_ODDNAME(mkfs.minix, mkfs_minix, BB_DIR_SBIN, BB_SUID_DROP, mkfs_minix))
250IF_MKFS_REISER(APPLET_ODDNAME(mkfs.reiser, mkfs_reiser, BB_DIR_SBIN, BB_SUID_DROP, mkfs_reiser))
251IF_MKFS_VFAT(APPLET_ODDNAME(mkfs.vfat, mkfs_vfat, BB_DIR_SBIN, BB_SUID_DROP, mkfs_vfat))
252IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod))
253IF_CRYPTPW(APPLET_ODDNAME(mkpasswd, cryptpw, BB_DIR_USR_BIN, BB_SUID_DROP, mkpasswd))
254IF_MKSWAP(APPLET(mkswap, BB_DIR_SBIN, BB_SUID_DROP))
255IF_MKTEMP(APPLET(mktemp, BB_DIR_BIN, BB_SUID_DROP))
256IF_MORE(APPLET(more, BB_DIR_BIN, BB_SUID_DROP))
257/* On full-blown systems, requires suid for user mounts.
258 * But it's not unthinkable to have it available in non-suid flavor on some systems,
259 * for viewing mount table.
260 * Therefore we use BB_SUID_MAYBE instead of BB_SUID_REQUIRE: */
261IF_MOUNT(APPLET(mount, BB_DIR_BIN, IF_DESKTOP(BB_SUID_MAYBE) IF_NOT_DESKTOP(BB_SUID_DROP)))
262IF_MOUNTPOINT(APPLET(mountpoint, BB_DIR_BIN, BB_SUID_DROP))
263IF_MT(APPLET(mt, BB_DIR_BIN, BB_SUID_DROP))
264IF_MV(APPLET(mv, BB_DIR_BIN, BB_SUID_DROP))
265IF_NAMEIF(APPLET(nameif, BB_DIR_SBIN, BB_SUID_DROP))
266IF_NC(APPLET(nc, BB_DIR_USR_BIN, BB_SUID_DROP))
267IF_NETSTAT(APPLET(netstat, BB_DIR_BIN, BB_SUID_DROP))
268IF_NICE(APPLET(nice, BB_DIR_BIN, BB_SUID_DROP))
269IF_NOHUP(APPLET(nohup, BB_DIR_USR_BIN, BB_SUID_DROP))
270IF_NSLOOKUP(APPLET(nslookup, BB_DIR_USR_BIN, BB_SUID_DROP))
271IF_NTPD(APPLET(ntpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
272IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP))
273IF_OPENVT(APPLET(openvt, BB_DIR_USR_BIN, BB_SUID_DROP))
274//IF_PARSE(APPLET(parse, BB_DIR_USR_BIN, BB_SUID_DROP))
275/* Needs to be run by root or be suid root - needs to change /etc/{passwd,shadow}: */
276IF_PASSWD(APPLET(passwd, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
277IF_PGREP(APPLET(pgrep, BB_DIR_USR_BIN, BB_SUID_DROP))
278IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP))
279IF_PIPE_PROGRESS(APPLET(pipe_progress, BB_DIR_BIN, BB_SUID_DROP))
280IF_PIVOT_ROOT(APPLET(pivot_root, BB_DIR_SBIN, BB_SUID_DROP))
281IF_PKILL(APPLET_ODDNAME(pkill, pgrep, BB_DIR_USR_BIN, BB_SUID_DROP, pkill))
282IF_POPMAILDIR(APPLET(popmaildir, BB_DIR_USR_SBIN, BB_SUID_DROP))
283IF_PRINTENV(APPLET_NOFORK(printenv, printenv, BB_DIR_BIN, BB_SUID_DROP, printenv))
284IF_PRINTF(APPLET_NOFORK(printf, printf, BB_DIR_USR_BIN, BB_SUID_DROP, printf))
285IF_PS(APPLET(ps, BB_DIR_BIN, BB_SUID_DROP))
286IF_PSCAN(APPLET(pscan, BB_DIR_USR_BIN, BB_SUID_DROP))
287IF_PWD(APPLET_NOFORK(pwd, pwd, BB_DIR_BIN, BB_SUID_DROP, pwd))
288IF_RAIDAUTORUN(APPLET(raidautorun, BB_DIR_SBIN, BB_SUID_DROP))
289IF_RDATE(APPLET(rdate, BB_DIR_USR_SBIN, BB_SUID_DROP))
290IF_RDEV(APPLET(rdev, BB_DIR_USR_SBIN, BB_SUID_DROP))
291IF_READAHEAD(APPLET(readahead, BB_DIR_USR_SBIN, BB_SUID_DROP))
292IF_READLINK(APPLET(readlink, BB_DIR_USR_BIN, BB_SUID_DROP))
293IF_READPROFILE(APPLET(readprofile, BB_DIR_USR_SBIN, BB_SUID_DROP))
294IF_REALPATH(APPLET(realpath, BB_DIR_USR_BIN, BB_SUID_DROP))
295IF_REFORMIME(APPLET(reformime, BB_DIR_BIN, BB_SUID_DROP))
296IF_RENICE(APPLET(renice, BB_DIR_USR_BIN, BB_SUID_DROP))
297IF_RESET(APPLET(reset, BB_DIR_USR_BIN, BB_SUID_DROP))
298IF_RESIZE(APPLET(resize, BB_DIR_USR_BIN, BB_SUID_DROP))
299IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, BB_DIR_SBIN, BB_SUID_DROP, restorecon))
300IF_RFKILL(APPLET(rfkill, BB_DIR_USR_SBIN, BB_SUID_DROP))
301IF_RM(APPLET_NOFORK(rm, rm, BB_DIR_BIN, BB_SUID_DROP, rm))
302IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, BB_DIR_BIN, BB_SUID_DROP, rmdir))
303IF_ROUTE(APPLET(route, BB_DIR_SBIN, BB_SUID_DROP))
304IF_RPM(APPLET(rpm, BB_DIR_BIN, BB_SUID_DROP))
305IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP))
306IF_RTCWAKE(APPLET(rtcwake, BB_DIR_USR_SBIN, BB_SUID_DROP))
307IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, BB_DIR_BIN, BB_SUID_DROP, run_parts))
308IF_RUNCON(APPLET(runcon, BB_DIR_USR_BIN, BB_SUID_DROP))
309IF_RUNLEVEL(APPLET(runlevel, BB_DIR_SBIN, BB_SUID_DROP))
310IF_RUNSV(APPLET(runsv, BB_DIR_USR_BIN, BB_SUID_DROP))
311IF_RUNSVDIR(APPLET(runsvdir, BB_DIR_USR_BIN, BB_SUID_DROP))
312IF_RX(APPLET(rx, BB_DIR_USR_BIN, BB_SUID_DROP))
313IF_SCRIPT(APPLET(script, BB_DIR_USR_BIN, BB_SUID_DROP))
314IF_SCRIPTREPLAY(APPLET(scriptreplay, BB_DIR_BIN, BB_SUID_DROP))
315IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP))
316IF_SELINUXENABLED(APPLET(selinuxenabled, BB_DIR_USR_SBIN, BB_SUID_DROP))
317IF_SENDMAIL(APPLET(sendmail, BB_DIR_USR_SBIN, BB_SUID_DROP))
318IF_SEQ(APPLET_NOFORK(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq))
319IF_SESTATUS(APPLET(sestatus, BB_DIR_USR_SBIN, BB_SUID_DROP))
320IF_SETARCH(APPLET(setarch, BB_DIR_BIN, BB_SUID_DROP))
321IF_SETCONSOLE(APPLET(setconsole, BB_DIR_SBIN, BB_SUID_DROP))
322IF_SETENFORCE(APPLET(setenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
323IF_SETFILES(APPLET(setfiles, BB_DIR_SBIN, BB_SUID_DROP))
324IF_SETFONT(APPLET(setfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
325IF_SETKEYCODES(APPLET(setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP))
326IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
327IF_SETSEBOOL(APPLET(setsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
328IF_SETSID(APPLET(setsid, BB_DIR_USR_BIN, BB_SUID_DROP))
329IF_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, setuidgid))
330IF_SHA1SUM(APPLET_NOEXEC(sha1sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha1sum))
331IF_SHA3SUM(APPLET_NOEXEC(sha3sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha3sum))
332IF_SHA256SUM(APPLET_NOEXEC(sha256sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha256sum))
333IF_SHA512SUM(APPLET_NOEXEC(sha512sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha512sum))
334IF_SHOWKEY(APPLET(showkey, BB_DIR_USR_BIN, BB_SUID_DROP))
335IF_SLATTACH(APPLET(slattach, BB_DIR_SBIN, BB_SUID_DROP))
336/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells: */
337IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP))
338IF_SOFTLIMIT(APPLET_ODDNAME(softlimit, chpst, BB_DIR_USR_BIN, BB_SUID_DROP, softlimit))
339IF_SORT(APPLET_NOEXEC(sort, sort, BB_DIR_USR_BIN, BB_SUID_DROP, sort))
340IF_SPLIT(APPLET(split, BB_DIR_USR_BIN, BB_SUID_DROP))
341IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, BB_DIR_SBIN, BB_SUID_DROP, start_stop_daemon))
342IF_STAT(APPLET(stat, BB_DIR_BIN, BB_SUID_DROP))
343IF_STRINGS(APPLET(strings, BB_DIR_USR_BIN, BB_SUID_DROP))
344IF_STTY(APPLET(stty, BB_DIR_BIN, BB_SUID_DROP))
345/* Needs to be run by root or be suid root - needs to change uid and gid: */
346IF_SU(APPLET(su, BB_DIR_BIN, BB_SUID_REQUIRE))
347IF_SULOGIN(APPLET(sulogin, BB_DIR_SBIN, BB_SUID_DROP))
348IF_SUM(APPLET(sum, BB_DIR_USR_BIN, BB_SUID_DROP))
349IF_SV(APPLET(sv, BB_DIR_USR_BIN, BB_SUID_DROP))
350IF_SVLOGD(APPLET(svlogd, BB_DIR_USR_SBIN, BB_SUID_DROP))
351IF_SWAPONOFF(APPLET_ODDNAME(swapoff, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapoff))
352IF_SWAPONOFF(APPLET_ODDNAME(swapon, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapon))
353IF_SWITCH_ROOT(APPLET(switch_root, BB_DIR_SBIN, BB_SUID_DROP))
354IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync))
355IF_BB_SYSCTL(APPLET(sysctl, BB_DIR_SBIN, BB_SUID_DROP))
356IF_SYSLOGD(APPLET(syslogd, BB_DIR_SBIN, BB_SUID_DROP))
357IF_TAC(APPLET_NOEXEC(tac, tac, BB_DIR_USR_BIN, BB_SUID_DROP, tac))
358IF_TAIL(APPLET(tail, BB_DIR_USR_BIN, BB_SUID_DROP))
359IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP))
360IF_TASKSET(APPLET(taskset, BB_DIR_USR_BIN, BB_SUID_DROP))
361/* IF_TC(APPLET(tc, BB_DIR_SBIN, BB_SUID_DROP)) */
362IF_TCPSVD(APPLET_ODDNAME(tcpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, tcpsvd))
363IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP))
364IF_TELNET(APPLET(telnet, BB_DIR_USR_BIN, BB_SUID_DROP))
365IF_TELNETD(APPLET(telnetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
366IF_TEST(APPLET_NOFORK(test, test, BB_DIR_USR_BIN, BB_SUID_DROP, test))
367#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
368IF_TFTP(APPLET(tftp, BB_DIR_USR_BIN, BB_SUID_DROP))
369IF_TFTPD(APPLET(tftpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
370#endif
371IF_TIME(APPLET(time, BB_DIR_USR_BIN, BB_SUID_DROP))
372IF_TIMEOUT(APPLET(timeout, BB_DIR_USR_BIN, BB_SUID_DROP))
373IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP))
374IF_TR(APPLET(tr, BB_DIR_USR_BIN, BB_SUID_DROP))
375/* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
376IF_TRACEROUTE(APPLET(traceroute, BB_DIR_USR_BIN, BB_SUID_MAYBE))
377IF_TRACEROUTE6(APPLET(traceroute6, BB_DIR_USR_BIN, BB_SUID_MAYBE))
378IF_TRUE(APPLET_NOFORK(true, true, BB_DIR_BIN, BB_SUID_DROP, true))
379IF_TTY(APPLET(tty, BB_DIR_USR_BIN, BB_SUID_DROP))
380IF_TTYSIZE(APPLET(ttysize, BB_DIR_USR_BIN, BB_SUID_DROP))
381IF_TUNCTL(APPLET(tunctl, BB_DIR_SBIN, BB_SUID_DROP))
382IF_TUNE2FS(APPLET(tune2fs, BB_DIR_SBIN, BB_SUID_DROP))
383IF_UDHCPC(APPLET(udhcpc, BB_DIR_SBIN, BB_SUID_DROP))
384IF_UDHCPD(APPLET(udhcpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
385IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, BB_DIR_USR_BIN, BB_SUID_DROP, udpsvd))
386IF_UMOUNT(APPLET(umount, BB_DIR_BIN, BB_SUID_DROP))
387IF_UNAME(APPLET(uname, BB_DIR_BIN, BB_SUID_DROP))
388IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP))
389IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, BB_DIR_USR_BIN, BB_SUID_DROP, unexpand))
390IF_UNIQ(APPLET(uniq, BB_DIR_USR_BIN, BB_SUID_DROP))
391IF_UNIX2DOS(APPLET_NOEXEC(unix2dos, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, unix2dos))
392IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP))
393IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP))
394IF_LZOP(APPLET_ODDNAME(unlzop, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, unlzop))
395IF_UNZIP(APPLET(unzip, BB_DIR_USR_BIN, BB_SUID_DROP))
396IF_UPTIME(APPLET(uptime, BB_DIR_USR_BIN, BB_SUID_DROP))
397IF_USLEEP(APPLET_NOFORK(usleep, usleep, BB_DIR_BIN, BB_SUID_DROP, usleep))
398IF_UUDECODE(APPLET(uudecode, BB_DIR_USR_BIN, BB_SUID_DROP))
399IF_UUENCODE(APPLET(uuencode, BB_DIR_USR_BIN, BB_SUID_DROP))
400IF_VCONFIG(APPLET(vconfig, BB_DIR_SBIN, BB_SUID_DROP))
401/* Needs to be run by root or be suid root - needs to change uid and gid: */
402IF_VLOCK(APPLET(vlock, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
403IF_VOLNAME(APPLET(volname, BB_DIR_USR_BIN, BB_SUID_DROP))
404/* Needs to be run by root or be suid root - needs to write to /dev/TTY: */
405IF_WALL(APPLET(wall, BB_DIR_USR_BIN, BB_SUID_REQUIRE))
406IF_WATCH(APPLET(watch, BB_DIR_BIN, BB_SUID_DROP))
407IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP))
408IF_WC(APPLET(wc, BB_DIR_USR_BIN, BB_SUID_DROP))
409IF_WGET(APPLET(wget, BB_DIR_USR_BIN, BB_SUID_DROP))
410IF_WHICH(APPLET(which, BB_DIR_USR_BIN, BB_SUID_DROP))
411IF_WHOAMI(APPLET_NOFORK(whoami, whoami, BB_DIR_USR_BIN, BB_SUID_DROP, whoami))
412IF_UNXZ(APPLET_ODDNAME(xzcat, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xzcat))
413IF_XZ(APPLET_ODDNAME(xz, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xz))
414IF_YES(APPLET_NOFORK(yes, yes, BB_DIR_USR_BIN, BB_SUID_DROP, yes))
415IF_GUNZIP(APPLET_ODDNAME(zcat, gunzip, BB_DIR_BIN, BB_SUID_DROP, zcat))
416IF_ZCIP(APPLET(zcip, BB_DIR_SBIN, BB_SUID_DROP))
417
418#if !defined(PROTOTYPES) && !defined(NAME_MAIN_CNAME) && !defined(MAKE_USAGE)
419};
420#endif
421
422#undef APPLET
423#undef APPLET_ODDNAME
424#undef APPLET_NOEXEC
425#undef APPLET_NOFORK
Note: See TracBrowser for help on using the repository browser.