blob: 836ede5d11737751bbaac14b58812dca31b3752a [file] [log] [blame]
landley13bab2f2006-09-27 00:45:05 -04001/* Toybox infrastructure.
2 *
3 * Copyright 2006 Rob Landley <rob@landley.net>
landley13bab2f2006-09-27 00:45:05 -04004 */
5
landleyc5621502006-09-28 17:18:51 -04006#include "toys.h"
7
Rob Landley90afbad2015-04-17 02:46:11 -05008#ifndef TOYBOX_VERSION
Rob Landley5af26a02017-10-19 16:49:52 -05009#ifndef TOYBOX_VENDOR
10#define TOYBOX_VENDOR ""
11#endif
Rob Landley0e59dca2019-05-29 20:00:04 -050012#define TOYBOX_VERSION "0.8.1"TOYBOX_VENDOR
Rob Landley90afbad2015-04-17 02:46:11 -050013#endif
Rob Landleyad602aa2015-04-05 19:23:36 -050014
Rob Landleyf2311a42006-11-04 17:45:18 -050015// Populate toy_list[].
landleyc5621502006-09-28 17:18:51 -040016
Rob Landleya6d696b2007-01-31 13:31:19 -050017#undef NEWTOY
18#undef OLDTOY
Rob Landleyec0b4822016-06-30 20:41:07 -050019#define NEWTOY(name, opts, flags) {#name, name##_main, OPTSTR_##name, flags},
Rob Landleyf3e56f42014-12-31 21:30:59 -060020#define OLDTOY(name, oldname, flags) \
21 {#name, oldname##_main, OPTSTR_##oldname, flags},
Rob Landleya6d696b2007-01-31 13:31:19 -050022
landleyc5621502006-09-28 17:18:51 -040023struct toy_list toy_list[] = {
Rob Landley55928b12008-01-19 17:43:27 -060024#include "generated/newtoys.h"
landleyc5621502006-09-28 17:18:51 -040025};
26
Rob Landley933919c2013-04-21 12:15:59 -050027// global context for this command.
landleyc5621502006-09-28 17:18:51 -040028
29struct toy_context toys;
Rob Landleyb1aaba12008-01-20 17:25:44 -060030union global_union this;
Rob Landley8fdcfdb2013-09-03 17:56:28 -050031char toybuf[4096], libbuf[4096];
landleyc5621502006-09-28 17:18:51 -040032
landley4f344e32006-10-05 16:18:03 -040033struct toy_list *toy_find(char *name)
landley13bab2f2006-09-27 00:45:05 -040034{
Rob Landley7aa651a2012-11-13 17:14:08 -060035 int top, bottom, middle;
landley13bab2f2006-09-27 00:45:05 -040036
Rob Landley7771e942018-07-02 23:56:34 -050037 if (!CFG_TOYBOX || strchr(name, '/')) return 0;
Rob Landleydc1af182014-09-27 19:58:18 -050038
Rob Landley7aa651a2012-11-13 17:14:08 -060039 // If the name starts with "toybox" accept that as a match. Otherwise
40 // skip the first entry, which is out of order.
landley13bab2f2006-09-27 00:45:05 -040041
Rob Landley06897a82019-08-23 10:33:47 -050042 if (!strncmp(name, "toybox", 6)) return toy_list;
Rob Landley7aa651a2012-11-13 17:14:08 -060043 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040044
Rob Landley933919c2013-04-21 12:15:59 -050045 // Binary search to find this command.
landley13bab2f2006-09-27 00:45:05 -040046
Rob Landley7aa651a2012-11-13 17:14:08 -060047 top = ARRAY_LEN(toy_list)-1;
48 for (;;) {
49 int result;
Rob Landley2c226852007-11-15 18:30:30 -060050
Rob Landley7aa651a2012-11-13 17:14:08 -060051 middle = (top+bottom)/2;
Rob Landley06897a82019-08-23 10:33:47 -050052 if (middle<bottom || middle>top) return 0;
Rob Landley7aa651a2012-11-13 17:14:08 -060053 result = strcmp(name,toy_list[middle].name);
54 if (!result) return toy_list+middle;
Joyounger77f9c772017-05-24 00:36:35 +080055 if (result<0) top = --middle;
Rob Landley7aa651a2012-11-13 17:14:08 -060056 else bottom = ++middle;
57 }
landley13bab2f2006-09-27 00:45:05 -040058}
59
Rob Landleyfc2224b2007-06-01 14:31:45 -040060// Figure out whether or not anything is using the option parsing logic,
61// because the compiler can't figure out whether or not to optimize it away
Rob Landley8f8c5042012-01-14 23:28:15 -060062// on its' own. NEED_OPTIONS becomes a constant allowing if() to optimize
63// stuff out via dead code elimination.
Rob Landleyfc2224b2007-06-01 14:31:45 -040064
65#undef NEWTOY
66#undef OLDTOY
67#define NEWTOY(name, opts, flags) opts ||
Rob Landleyf3e56f42014-12-31 21:30:59 -060068#define OLDTOY(name, oldname, flags) OPTSTR_##oldname ||
Rob Landley4307a7b2007-06-07 15:20:26 -040069static const int NEED_OPTIONS =
Rob Landley55928b12008-01-19 17:43:27 -060070#include "generated/newtoys.h"
Rob Landleyfc2224b2007-06-01 14:31:45 -0400710; // Ends the opts || opts || opts...
72
Rob Landley29e75d52016-10-01 15:52:00 -050073static void unknown(char *name)
74{
75 toys.exitval = 127;
Rob Landleyb2574792016-10-17 18:32:35 -050076 toys.which = toy_list;
Rob Landley29e75d52016-10-01 15:52:00 -050077 error_exit("Unknown command %s", name);
78}
79
Rob Landley3b51a072015-09-27 09:03:41 -050080// Setup toybox global state for this command.
Rob Landleybb504f32013-07-19 02:03:02 -050081static void toy_singleinit(struct toy_list *which, char *argv[])
82{
83 toys.which = which;
84 toys.argv = argv;
85
Rob Landleyb5e405c2017-10-21 09:48:24 -050086 if (CFG_TOYBOX_I18N) setlocale(LC_CTYPE, "C.UTF-8");
Rob Landley362a6172019-04-16 17:14:11 -050087 setlinebuf(stdout);
Rob Landleyfc497612014-06-21 13:03:42 -050088
Rob Landley29e75d52016-10-01 15:52:00 -050089 // Parse --help and --version for (almost) all commands
90 if (CFG_TOYBOX_HELP_DASHDASH && !(which->flags & TOYFLAG_NOHELP) && argv[1]) {
91 if (!strcmp(argv[1], "--help")) {
92 if (CFG_TOYBOX && toys.which == toy_list && toys.argv[2])
93 if (!(toys.which = toy_find(toys.argv[2]))) unknown(toys.argv[2]);
94 show_help(stdout);
95 xexit();
96 }
97
98 if (!strcmp(argv[1], "--version")) {
99 xputs("toybox "TOYBOX_VERSION);
100 xexit();
101 }
Rob Landleybb504f32013-07-19 02:03:02 -0500102 }
103
104 if (NEED_OPTIONS && which->options) get_optflags();
105 else {
106 toys.optargs = argv+1;
Rob Landley3b51a072015-09-27 09:03:41 -0500107 for (toys.optc = 0; toys.optargs[toys.optc]; toys.optc++);
Rob Landleybb504f32013-07-19 02:03:02 -0500108 }
109 toys.old_umask = umask(0);
110 if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
Rob Landley1bc52242014-05-21 07:24:16 -0500111 toys.signalfd--;
Rob Landley90b200c2014-06-11 22:13:28 -0500112 toys.toycount = ARRAY_LEN(toy_list);
Rob Landleybb504f32013-07-19 02:03:02 -0500113}
114
Rob Landley3b51a072015-09-27 09:03:41 -0500115// Full init needed by multiplexer or reentrant calls, calls singleinit at end
landleycd9dfc32006-10-18 18:38:16 -0400116void toy_init(struct toy_list *which, char *argv[])
117{
Rob Landleyca311f12016-01-30 16:28:13 -0600118 void *oldwhich = toys.which;
119
Rob Landley7aa651a2012-11-13 17:14:08 -0600120 // Drop permissions for non-suid commands.
Rob Landleye0377fb2010-01-05 12:17:05 -0600121
Rob Landley7aa651a2012-11-13 17:14:08 -0600122 if (CFG_TOYBOX_SUID) {
Rob Landleyca311f12016-01-30 16:28:13 -0600123 if (!toys.which) toys.which = toy_list;
124
Rob Landley7aa651a2012-11-13 17:14:08 -0600125 uid_t uid = getuid(), euid = geteuid();
Rob Landleye0377fb2010-01-05 12:17:05 -0600126
Rob Landley7aa651a2012-11-13 17:14:08 -0600127 if (!(which->flags & TOYFLAG_STAYROOT)) {
Rob Landley5c87c142014-08-31 11:58:39 -0500128 if (uid != euid) {
Patrick Ohly62b53ed2016-02-09 16:43:35 +0100129 if (setuid(uid)) perror_exit("setuid %d->%d", euid, uid); // drop root
Rob Landleyca311f12016-01-30 16:28:13 -0600130 euid = uid;
131 toys.wasroot++;
Rob Landley5c87c142014-08-31 11:58:39 -0500132 }
Rob Landleybf1e70f2012-12-27 17:09:17 -0600133 } else if (CFG_TOYBOX_DEBUG && uid && which != toy_list)
134 error_msg("Not installed suid root");
Rob Landleye0377fb2010-01-05 12:17:05 -0600135
Rob Landleye5354ca2015-09-11 16:35:14 -0500136 if ((which->flags & TOYFLAG_NEEDROOT) && euid) help_exit("Not root");
Rob Landley7aa651a2012-11-13 17:14:08 -0600137 }
Rob Landleye0377fb2010-01-05 12:17:05 -0600138
Rob Landleycaf39c22012-11-16 00:35:46 -0600139 // Free old toys contents (to be reentrant), but leave rebound if any
Rob Landley3b51a072015-09-27 09:03:41 -0500140 // don't blank old optargs if our new argc lives in the old optargs.
141 if (argv<toys.optargs || argv>toys.optargs+toys.optc) free(toys.optargs);
Rob Landleycaf39c22012-11-16 00:35:46 -0600142 memset(&toys, 0, offsetof(struct toy_context, rebound));
Rob Landleyca311f12016-01-30 16:28:13 -0600143 if (oldwhich) memset(&this, 0, sizeof(this));
landleycd9dfc32006-10-18 18:38:16 -0400144
Rob Landley3b51a072015-09-27 09:03:41 -0500145 // Continue to portion of init needed by standalone commands
Rob Landleybb504f32013-07-19 02:03:02 -0500146 toy_singleinit(which, argv);
landleycd9dfc32006-10-18 18:38:16 -0400147}
148
Rob Landley7771e942018-07-02 23:56:34 -0500149// Run an internal toybox command.
150// Only returns if it can't run command internally, otherwise xexit() when done.
151void toy_exec_which(struct toy_list *which, char *argv[])
landley4f344e32006-10-05 16:18:03 -0400152{
Rob Landley3b51a072015-09-27 09:03:41 -0500153 // Return if we can't find it (which includes no multiplexer case),
Rob Landley7771e942018-07-02 23:56:34 -0500154 if (!which) return;
Rob Landleyc6705af2014-09-09 23:42:25 -0500155
Rob Landley3b51a072015-09-27 09:03:41 -0500156 // Return if stack depth getting noticeable (proxy for leaked heap, etc).
Rob Landley869da8c2016-05-07 00:21:34 -0500157
158 // Compiler writers have decided subtracting char * is undefined behavior,
159 // so convert to integers. (LP64 says sizeof(long)==sizeof(pointer).)
Rob Landley3f988702018-09-21 12:54:56 -0500160 // Signed typecast so stack growth direction is irrelevant: we're measuring
161 // the distance between two pointers on the same stack, hence the labs().
Rob Landley19f7ad42018-09-16 14:17:09 -0500162 if (!CFG_TOYBOX_NORECURSE && toys.stacktop)
Rob Landley3f988702018-09-21 12:54:56 -0500163 if (labs((long)toys.stacktop-(long)&which)>6000) return;
Rob Landley3b51a072015-09-27 09:03:41 -0500164
165 // Return if we need to re-exec to acquire root via suid bit.
Rob Landleyca311f12016-01-30 16:28:13 -0600166 if (toys.which && (which->flags&TOYFLAG_ROOTONLY) && toys.wasroot) return;
Rob Landley7c5ed1c2015-02-15 15:27:43 -0600167
Rob Landleyc6705af2014-09-09 23:42:25 -0500168 // Run command
Rob Landley7aa651a2012-11-13 17:14:08 -0600169 toy_init(which, argv);
Rob Landley5f805332013-08-21 03:03:47 -0500170 if (toys.which) toys.which->toy_main();
Rob Landley953722e2013-06-30 15:58:24 -0500171 xexit();
landley4f344e32006-10-05 16:18:03 -0400172}
173
Rob Landley7771e942018-07-02 23:56:34 -0500174// Lookup internal toybox command to run via argv[0]
175void toy_exec(char *argv[])
176{
177 toy_exec_which(toy_find(basename(*argv)), argv);
178}
179
Rob Landley8f8c5042012-01-14 23:28:15 -0600180// Multiplexer command, first argument is command to run, rest are args to that.
181// If first argument starts with - output list of command install paths.
Rob Landleyefda21c2007-11-29 18:14:37 -0600182void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400183{
Rob Landley7aa651a2012-11-13 17:14:08 -0600184 static char *toy_paths[]={"usr/","bin/","sbin/",0};
185 int i, len = 0;
landley4f344e32006-10-05 16:18:03 -0400186
Rob Landley3b51a072015-09-27 09:03:41 -0500187 // fast path: try to exec immediately.
188 // (Leave toys.which null to disable suid return logic.)
Rob Landley7771e942018-07-02 23:56:34 -0500189 // Try dereferencing one layer of symlink
190 if (toys.argv[1]) {
191 toy_exec(toys.argv+1);
Rob Landley68757a52019-08-23 10:32:38 -0500192 if (0<readlink(toys.argv[1], libbuf, sizeof(libbuf))) {
193 struct toy_list *tl= toy_find(basename(libbuf));
194
195 if (tl == toy_list) unknown(basename(toys.argv[1]));
Rob Landley764e2ee2019-10-15 18:45:47 -0500196 else toy_exec_which(tl, toys.argv+1);
Rob Landley68757a52019-08-23 10:32:38 -0500197 }
Rob Landley7771e942018-07-02 23:56:34 -0500198 }
Rob Landley3b51a072015-09-27 09:03:41 -0500199
200 // For early error reporting
Rob Landley6c624482012-11-18 18:52:19 -0600201 toys.which = toy_list;
Rob Landley3b51a072015-09-27 09:03:41 -0500202
Rob Landley29e75d52016-10-01 15:52:00 -0500203 if (toys.argv[1] && toys.argv[1][0] != '-') unknown(toys.argv[1]);
landley4f344e32006-10-05 16:18:03 -0400204
Rob Landley933919c2013-04-21 12:15:59 -0500205 // Output list of command.
Rob Landleye7acb472015-04-07 11:54:36 -0500206 for (i=1; i<ARRAY_LEN(toy_list); i++) {
Rob Landley7aa651a2012-11-13 17:14:08 -0600207 int fl = toy_list[i].flags;
208 if (fl & TOYMASK_LOCATION) {
209 if (toys.argv[1]) {
210 int j;
211 for (j=0; toy_paths[j]; j++)
212 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
213 }
Rob Landleyd3f335d2014-10-26 12:56:41 -0500214 len += printf("%s",toy_list[i].name);
215 if (++len > 65) len = 0;
216 xputc(len ? ' ' : '\n');
Rob Landley7aa651a2012-11-13 17:14:08 -0600217 }
218 }
219 xputc('\n');
landley4f344e32006-10-05 16:18:03 -0400220}
221
landley13bab2f2006-09-27 00:45:05 -0400222int main(int argc, char *argv[])
223{
Rob Landley3b51a072015-09-27 09:03:41 -0500224 if (!*argv) return 127;
225
226 // Snapshot stack location so we can detect recursion depth later.
227 // This is its own block so probe doesn't permanently consume stack.
228 else {
229 int stack;
230
231 toys.stacktop = &stack;
232 }
Rob Landley3b51a072015-09-27 09:03:41 -0500233
Elliott Hughes18cd02c2017-02-17 14:43:56 -0800234 // Up to and including Android M, bionic's dynamic linker added a handler to
235 // cause a crash dump on SIGPIPE. That was removed in Android N, but adbd
236 // was still setting the SIGPIPE disposition to SIG_IGN, and its children
237 // were inheriting that. In Android O, adbd is fixed, but manually asking
238 // for the default disposition is harmless, and it'll be a long time before
239 // no one's using anything older than O!
Rob Landleye95731e2017-02-10 16:37:42 -0600240 if (CFG_TOYBOX_ON_ANDROID) signal(SIGPIPE, SIG_DFL);
241
Rob Landley3b51a072015-09-27 09:03:41 -0500242 // If nommu can't fork, special reentry path.
243 // Use !stacktop to signal "vfork happened", both before and after xexec()
244 if (!CFG_TOYBOX_FORK) {
245 if (0x80 & **argv) {
246 **argv &= 0x7f;
247 toys.stacktop = 0;
248 }
249 }
Rob Landleye7c09542015-04-30 15:11:34 -0500250
Rob Landleyd04dc1f2013-08-30 01:53:31 -0500251 if (CFG_TOYBOX) {
Rob Landleybb504f32013-07-19 02:03:02 -0500252 // Call the multiplexer, adjusting this argv[] to be its' argv[1].
253 // (It will adjust it back before calling toy_exec().)
254 toys.argv = argv-1;
255 toybox_main();
256 } else {
257 // a single toybox command built standalone with no multiplexer
258 toy_singleinit(toy_list, argv);
259 toy_list->toy_main();
Rob Landleybb504f32013-07-19 02:03:02 -0500260 }
261
Rob Landleyaad492f2015-01-03 16:25:36 -0600262 xexit();
landley13bab2f2006-09-27 00:45:05 -0400263}