blob: 60cb2b0787dad29d0b9c6d669c92ff428755fd1c [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 Landleyf2311a42006-11-04 17:45:18 -05008// Populate toy_list[].
landleyc5621502006-09-28 17:18:51 -04009
Rob Landleya6d696b2007-01-31 13:31:19 -050010#undef NEWTOY
11#undef OLDTOY
Rob Landleyec0b4822016-06-30 20:41:07 -050012#define NEWTOY(name, opts, flags) {#name, name##_main, OPTSTR_##name, flags},
Rob Landleyf3e56f42014-12-31 21:30:59 -060013#define OLDTOY(name, oldname, flags) \
14 {#name, oldname##_main, OPTSTR_##oldname, flags},
Rob Landleya6d696b2007-01-31 13:31:19 -050015
landleyc5621502006-09-28 17:18:51 -040016struct toy_list toy_list[] = {
Rob Landley55928b12008-01-19 17:43:27 -060017#include "generated/newtoys.h"
landleyc5621502006-09-28 17:18:51 -040018};
19
Rob Landley933919c2013-04-21 12:15:59 -050020// global context for this command.
landleyc5621502006-09-28 17:18:51 -040021
22struct toy_context toys;
Rob Landleyb1aaba12008-01-20 17:25:44 -060023union global_union this;
Rob Landley8fdcfdb2013-09-03 17:56:28 -050024char toybuf[4096], libbuf[4096];
landleyc5621502006-09-28 17:18:51 -040025
landley4f344e32006-10-05 16:18:03 -040026struct toy_list *toy_find(char *name)
landley13bab2f2006-09-27 00:45:05 -040027{
Rob Landley7aa651a2012-11-13 17:14:08 -060028 int top, bottom, middle;
landley13bab2f2006-09-27 00:45:05 -040029
Rob Landley7771e942018-07-02 23:56:34 -050030 if (!CFG_TOYBOX || strchr(name, '/')) return 0;
Rob Landleydc1af182014-09-27 19:58:18 -050031
Rob Landley28c97102020-02-06 11:01:32 -060032 // Multiplexer name works as prefix, else skip first entry (it's out of order)
33 if (!toys.which && strstart(&name, "toybox")) return toy_list;
Rob Landley7aa651a2012-11-13 17:14:08 -060034 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040035
Rob Landley933919c2013-04-21 12:15:59 -050036 // Binary search to find this command.
Rob Landley7aa651a2012-11-13 17:14:08 -060037 top = ARRAY_LEN(toy_list)-1;
38 for (;;) {
39 int result;
Rob Landley2c226852007-11-15 18:30:30 -060040
Rob Landley7aa651a2012-11-13 17:14:08 -060041 middle = (top+bottom)/2;
Rob Landley06897a82019-08-23 10:33:47 -050042 if (middle<bottom || middle>top) return 0;
Rob Landley7aa651a2012-11-13 17:14:08 -060043 result = strcmp(name,toy_list[middle].name);
44 if (!result) return toy_list+middle;
Joyounger77f9c772017-05-24 00:36:35 +080045 if (result<0) top = --middle;
Rob Landley7aa651a2012-11-13 17:14:08 -060046 else bottom = ++middle;
47 }
landley13bab2f2006-09-27 00:45:05 -040048}
49
Rob Landleyfc2224b2007-06-01 14:31:45 -040050// Figure out whether or not anything is using the option parsing logic,
51// because the compiler can't figure out whether or not to optimize it away
Rob Landley8f8c5042012-01-14 23:28:15 -060052// on its' own. NEED_OPTIONS becomes a constant allowing if() to optimize
53// stuff out via dead code elimination.
Rob Landleyfc2224b2007-06-01 14:31:45 -040054
55#undef NEWTOY
56#undef OLDTOY
57#define NEWTOY(name, opts, flags) opts ||
Rob Landleyf3e56f42014-12-31 21:30:59 -060058#define OLDTOY(name, oldname, flags) OPTSTR_##oldname ||
Rob Landley4307a7b2007-06-07 15:20:26 -040059static const int NEED_OPTIONS =
Rob Landley55928b12008-01-19 17:43:27 -060060#include "generated/newtoys.h"
Rob Landleyfc2224b2007-06-01 14:31:45 -0400610; // Ends the opts || opts || opts...
62
Rob Landley29e75d52016-10-01 15:52:00 -050063static void unknown(char *name)
64{
65 toys.exitval = 127;
Rob Landleyb2574792016-10-17 18:32:35 -050066 toys.which = toy_list;
Rob Landley29e75d52016-10-01 15:52:00 -050067 error_exit("Unknown command %s", name);
68}
69
Rob Landley3b51a072015-09-27 09:03:41 -050070// Setup toybox global state for this command.
Rob Landleybb504f32013-07-19 02:03:02 -050071static void toy_singleinit(struct toy_list *which, char *argv[])
72{
73 toys.which = which;
74 toys.argv = argv;
Rob Landley488f8502019-12-22 20:57:08 -060075 toys.toycount = ARRAY_LEN(toy_list);
Rob Landleyfc497612014-06-21 13:03:42 -050076
Rob Landley29e75d52016-10-01 15:52:00 -050077 // Parse --help and --version for (almost) all commands
78 if (CFG_TOYBOX_HELP_DASHDASH && !(which->flags & TOYFLAG_NOHELP) && argv[1]) {
79 if (!strcmp(argv[1], "--help")) {
80 if (CFG_TOYBOX && toys.which == toy_list && toys.argv[2])
81 if (!(toys.which = toy_find(toys.argv[2]))) unknown(toys.argv[2]);
Rob Landleya2cd46a2020-01-03 03:10:17 -060082 show_help(stdout, 1);
Rob Landley29e75d52016-10-01 15:52:00 -050083 xexit();
84 }
85
86 if (!strcmp(argv[1], "--version")) {
87 xputs("toybox "TOYBOX_VERSION);
88 xexit();
89 }
Rob Landleybb504f32013-07-19 02:03:02 -050090 }
91
92 if (NEED_OPTIONS && which->options) get_optflags();
93 else {
94 toys.optargs = argv+1;
Rob Landley3b51a072015-09-27 09:03:41 -050095 for (toys.optc = 0; toys.optargs[toys.optc]; toys.optc++);
Rob Landleybb504f32013-07-19 02:03:02 -050096 }
Rob Landley488f8502019-12-22 20:57:08 -060097
98 if (!(which->flags & TOYFLAG_NOFORK)) {
99 toys.old_umask = umask(0);
100 if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
101 if (CFG_TOYBOX_I18N) {
102 // Deliberately try C.UTF-8 before the user's locale to work around users
103 // that choose non-UTF-8 locales. macOS doesn't support C.UTF-8 though.
104 if (!setlocale(LC_CTYPE, "C.UTF-8")) setlocale(LC_CTYPE, "");
105 }
106 setlinebuf(stdout);
107 }
Rob Landleybb504f32013-07-19 02:03:02 -0500108}
109
Rob Landley3b51a072015-09-27 09:03:41 -0500110// Full init needed by multiplexer or reentrant calls, calls singleinit at end
landleycd9dfc32006-10-18 18:38:16 -0400111void toy_init(struct toy_list *which, char *argv[])
112{
Rob Landleyca311f12016-01-30 16:28:13 -0600113 void *oldwhich = toys.which;
114
Rob Landley7aa651a2012-11-13 17:14:08 -0600115 // Drop permissions for non-suid commands.
Rob Landleye0377fb2010-01-05 12:17:05 -0600116
Rob Landley7aa651a2012-11-13 17:14:08 -0600117 if (CFG_TOYBOX_SUID) {
Rob Landleyca311f12016-01-30 16:28:13 -0600118 if (!toys.which) toys.which = toy_list;
119
Rob Landley7aa651a2012-11-13 17:14:08 -0600120 uid_t uid = getuid(), euid = geteuid();
Rob Landleye0377fb2010-01-05 12:17:05 -0600121
Rob Landley7aa651a2012-11-13 17:14:08 -0600122 if (!(which->flags & TOYFLAG_STAYROOT)) {
Rob Landley5c87c142014-08-31 11:58:39 -0500123 if (uid != euid) {
Patrick Ohly62b53ed2016-02-09 16:43:35 +0100124 if (setuid(uid)) perror_exit("setuid %d->%d", euid, uid); // drop root
Rob Landleyca311f12016-01-30 16:28:13 -0600125 euid = uid;
126 toys.wasroot++;
Rob Landley5c87c142014-08-31 11:58:39 -0500127 }
Rob Landleybf1e70f2012-12-27 17:09:17 -0600128 } else if (CFG_TOYBOX_DEBUG && uid && which != toy_list)
129 error_msg("Not installed suid root");
Rob Landleye0377fb2010-01-05 12:17:05 -0600130
Rob Landleye5354ca2015-09-11 16:35:14 -0500131 if ((which->flags & TOYFLAG_NEEDROOT) && euid) help_exit("Not root");
Rob Landley7aa651a2012-11-13 17:14:08 -0600132 }
Rob Landleye0377fb2010-01-05 12:17:05 -0600133
Rob Landleycaf39c22012-11-16 00:35:46 -0600134 // Free old toys contents (to be reentrant), but leave rebound if any
Rob Landley3b51a072015-09-27 09:03:41 -0500135 // don't blank old optargs if our new argc lives in the old optargs.
136 if (argv<toys.optargs || argv>toys.optargs+toys.optc) free(toys.optargs);
Rob Landleycaf39c22012-11-16 00:35:46 -0600137 memset(&toys, 0, offsetof(struct toy_context, rebound));
Rob Landleyca311f12016-01-30 16:28:13 -0600138 if (oldwhich) memset(&this, 0, sizeof(this));
landleycd9dfc32006-10-18 18:38:16 -0400139
Rob Landley3b51a072015-09-27 09:03:41 -0500140 // Continue to portion of init needed by standalone commands
Rob Landleybb504f32013-07-19 02:03:02 -0500141 toy_singleinit(which, argv);
landleycd9dfc32006-10-18 18:38:16 -0400142}
143
Rob Landley7771e942018-07-02 23:56:34 -0500144// Run an internal toybox command.
145// Only returns if it can't run command internally, otherwise xexit() when done.
146void toy_exec_which(struct toy_list *which, char *argv[])
landley4f344e32006-10-05 16:18:03 -0400147{
Rob Landley3b51a072015-09-27 09:03:41 -0500148 // Return if we can't find it (which includes no multiplexer case),
Rob Landley7771e942018-07-02 23:56:34 -0500149 if (!which) return;
Rob Landleyc6705af2014-09-09 23:42:25 -0500150
Rob Landley3b51a072015-09-27 09:03:41 -0500151 // Return if stack depth getting noticeable (proxy for leaked heap, etc).
Rob Landley869da8c2016-05-07 00:21:34 -0500152
153 // Compiler writers have decided subtracting char * is undefined behavior,
154 // so convert to integers. (LP64 says sizeof(long)==sizeof(pointer).)
Rob Landley3f988702018-09-21 12:54:56 -0500155 // Signed typecast so stack growth direction is irrelevant: we're measuring
156 // the distance between two pointers on the same stack, hence the labs().
Rob Landley19f7ad42018-09-16 14:17:09 -0500157 if (!CFG_TOYBOX_NORECURSE && toys.stacktop)
Rob Landley3f988702018-09-21 12:54:56 -0500158 if (labs((long)toys.stacktop-(long)&which)>6000) return;
Rob Landley3b51a072015-09-27 09:03:41 -0500159
160 // Return if we need to re-exec to acquire root via suid bit.
Rob Landleyca311f12016-01-30 16:28:13 -0600161 if (toys.which && (which->flags&TOYFLAG_ROOTONLY) && toys.wasroot) return;
Rob Landley7c5ed1c2015-02-15 15:27:43 -0600162
Rob Landleyc6705af2014-09-09 23:42:25 -0500163 // Run command
Rob Landley7aa651a2012-11-13 17:14:08 -0600164 toy_init(which, argv);
Rob Landley5f805332013-08-21 03:03:47 -0500165 if (toys.which) toys.which->toy_main();
Rob Landley953722e2013-06-30 15:58:24 -0500166 xexit();
landley4f344e32006-10-05 16:18:03 -0400167}
168
Rob Landley7771e942018-07-02 23:56:34 -0500169// Lookup internal toybox command to run via argv[0]
170void toy_exec(char *argv[])
171{
172 toy_exec_which(toy_find(basename(*argv)), argv);
173}
174
Rob Landley8f8c5042012-01-14 23:28:15 -0600175// Multiplexer command, first argument is command to run, rest are args to that.
176// If first argument starts with - output list of command install paths.
Rob Landleyefda21c2007-11-29 18:14:37 -0600177void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400178{
Rob Landley28c97102020-02-06 11:01:32 -0600179 static char *toy_paths[] = {"usr/","bin/","sbin/",0};
Rob Landley7aa651a2012-11-13 17:14:08 -0600180 int i, len = 0;
landley4f344e32006-10-05 16:18:03 -0400181
Rob Landley3b51a072015-09-27 09:03:41 -0500182 // fast path: try to exec immediately.
183 // (Leave toys.which null to disable suid return logic.)
Rob Landley7771e942018-07-02 23:56:34 -0500184 // Try dereferencing one layer of symlink
185 if (toys.argv[1]) {
186 toy_exec(toys.argv+1);
Rob Landley68757a52019-08-23 10:32:38 -0500187 if (0<readlink(toys.argv[1], libbuf, sizeof(libbuf))) {
188 struct toy_list *tl= toy_find(basename(libbuf));
189
190 if (tl == toy_list) unknown(basename(toys.argv[1]));
Rob Landley764e2ee2019-10-15 18:45:47 -0500191 else toy_exec_which(tl, toys.argv+1);
Rob Landley68757a52019-08-23 10:32:38 -0500192 }
Rob Landley7771e942018-07-02 23:56:34 -0500193 }
Rob Landley3b51a072015-09-27 09:03:41 -0500194
195 // For early error reporting
Rob Landley6c624482012-11-18 18:52:19 -0600196 toys.which = toy_list;
Rob Landley3b51a072015-09-27 09:03:41 -0500197
Rob Landley29e75d52016-10-01 15:52:00 -0500198 if (toys.argv[1] && toys.argv[1][0] != '-') unknown(toys.argv[1]);
landley4f344e32006-10-05 16:18:03 -0400199
Rob Landley933919c2013-04-21 12:15:59 -0500200 // Output list of command.
Rob Landley28c97102020-02-06 11:01:32 -0600201 for (i = 1; i<ARRAY_LEN(toy_list); i++) {
Rob Landley7aa651a2012-11-13 17:14:08 -0600202 int fl = toy_list[i].flags;
203 if (fl & TOYMASK_LOCATION) {
204 if (toys.argv[1]) {
205 int j;
Rob Landley28c97102020-02-06 11:01:32 -0600206 for (j = 0; toy_paths[j]; j++)
Rob Landley7aa651a2012-11-13 17:14:08 -0600207 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
208 }
Rob Landleyd3f335d2014-10-26 12:56:41 -0500209 len += printf("%s",toy_list[i].name);
210 if (++len > 65) len = 0;
211 xputc(len ? ' ' : '\n');
Rob Landley7aa651a2012-11-13 17:14:08 -0600212 }
213 }
214 xputc('\n');
landley4f344e32006-10-05 16:18:03 -0400215}
216
landley13bab2f2006-09-27 00:45:05 -0400217int main(int argc, char *argv[])
218{
Rob Landley72744582020-02-05 19:11:54 -0600219 // don't segfault if our environment is crazy
Rob Landley3b51a072015-09-27 09:03:41 -0500220 if (!*argv) return 127;
221
222 // Snapshot stack location so we can detect recursion depth later.
Rob Landley72744582020-02-05 19:11:54 -0600223 // Nommu has special reentry path, !stacktop = "vfork/exec self happened"
224 if (!CFG_TOYBOX_FORK && (0x80 & **argv)) **argv &= 0x7f;
Rob Landley3b51a072015-09-27 09:03:41 -0500225 else {
Rob Landley72744582020-02-05 19:11:54 -0600226 int stack_start; // here so probe var won't permanently eat stack
Rob Landley3b51a072015-09-27 09:03:41 -0500227
Rob Landley72744582020-02-05 19:11:54 -0600228 toys.stacktop = &stack_start;
Rob Landley3b51a072015-09-27 09:03:41 -0500229 }
Rob Landley3b51a072015-09-27 09:03:41 -0500230
Rob Landley72744582020-02-05 19:11:54 -0600231 // Android before O had non-default SIGPIPE, 7 years = remove in Sep 2024.
Rob Landleye95731e2017-02-10 16:37:42 -0600232 if (CFG_TOYBOX_ON_ANDROID) signal(SIGPIPE, SIG_DFL);
233
Rob Landleyd04dc1f2013-08-30 01:53:31 -0500234 if (CFG_TOYBOX) {
Rob Landley72744582020-02-05 19:11:54 -0600235 // Call the multiplexer with argv[] as its arguments so it can toy_find()
Rob Landleybb504f32013-07-19 02:03:02 -0500236 toys.argv = argv-1;
237 toybox_main();
238 } else {
Rob Landley72744582020-02-05 19:11:54 -0600239 // single command built standalone with no multiplexer is first list entry
Rob Landleybb504f32013-07-19 02:03:02 -0500240 toy_singleinit(toy_list, argv);
241 toy_list->toy_main();
Rob Landleybb504f32013-07-19 02:03:02 -0500242 }
243
Rob Landleyaad492f2015-01-03 16:25:36 -0600244 xexit();
landley13bab2f2006-09-27 00:45:05 -0400245}