blob: dbc39beca526dd879b0a3724a519904379017ba4 [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 Landleyad602aa2015-04-05 19:23:36 -05008#define TOYBOX_VERSION "0.5.2"
9
Rob Landleyf2311a42006-11-04 17:45:18 -050010// Populate toy_list[].
landleyc5621502006-09-28 17:18:51 -040011
Rob Landleya6d696b2007-01-31 13:31:19 -050012#undef NEWTOY
13#undef OLDTOY
14#define NEWTOY(name, opts, flags) {#name, name##_main, opts, flags},
Rob Landleyf3e56f42014-12-31 21:30:59 -060015#define OLDTOY(name, oldname, flags) \
16 {#name, oldname##_main, OPTSTR_##oldname, flags},
Rob Landleya6d696b2007-01-31 13:31:19 -050017
landleyc5621502006-09-28 17:18:51 -040018struct toy_list toy_list[] = {
Rob Landley55928b12008-01-19 17:43:27 -060019#include "generated/newtoys.h"
landleyc5621502006-09-28 17:18:51 -040020};
21
Rob Landley933919c2013-04-21 12:15:59 -050022// global context for this command.
landleyc5621502006-09-28 17:18:51 -040023
24struct toy_context toys;
Rob Landleyb1aaba12008-01-20 17:25:44 -060025union global_union this;
Rob Landley8fdcfdb2013-09-03 17:56:28 -050026char toybuf[4096], libbuf[4096];
landleyc5621502006-09-28 17:18:51 -040027
landley4f344e32006-10-05 16:18:03 -040028struct toy_list *toy_find(char *name)
landley13bab2f2006-09-27 00:45:05 -040029{
Rob Landley7aa651a2012-11-13 17:14:08 -060030 int top, bottom, middle;
landley13bab2f2006-09-27 00:45:05 -040031
Rob Landleydc1af182014-09-27 19:58:18 -050032 if (!CFG_TOYBOX) return 0;
33
Rob Landley7aa651a2012-11-13 17:14:08 -060034 // If the name starts with "toybox" accept that as a match. Otherwise
35 // skip the first entry, which is out of order.
landley13bab2f2006-09-27 00:45:05 -040036
Rob Landley7aa651a2012-11-13 17:14:08 -060037 if (!strncmp(name,"toybox",6)) return toy_list;
38 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040039
Rob Landley933919c2013-04-21 12:15:59 -050040 // Binary search to find this command.
landley13bab2f2006-09-27 00:45:05 -040041
Rob Landley7aa651a2012-11-13 17:14:08 -060042 top = ARRAY_LEN(toy_list)-1;
43 for (;;) {
44 int result;
Rob Landley2c226852007-11-15 18:30:30 -060045
Rob Landley7aa651a2012-11-13 17:14:08 -060046 middle = (top+bottom)/2;
47 if (middle<bottom || middle>top) return NULL;
48 result = strcmp(name,toy_list[middle].name);
49 if (!result) return toy_list+middle;
50 if (result<0) top=--middle;
51 else bottom = ++middle;
52 }
landley13bab2f2006-09-27 00:45:05 -040053}
54
Rob Landleyfc2224b2007-06-01 14:31:45 -040055// Figure out whether or not anything is using the option parsing logic,
56// because the compiler can't figure out whether or not to optimize it away
Rob Landley8f8c5042012-01-14 23:28:15 -060057// on its' own. NEED_OPTIONS becomes a constant allowing if() to optimize
58// stuff out via dead code elimination.
Rob Landleyfc2224b2007-06-01 14:31:45 -040059
60#undef NEWTOY
61#undef OLDTOY
62#define NEWTOY(name, opts, flags) opts ||
Rob Landleyf3e56f42014-12-31 21:30:59 -060063#define OLDTOY(name, oldname, flags) OPTSTR_##oldname ||
Rob Landley4307a7b2007-06-07 15:20:26 -040064static const int NEED_OPTIONS =
Rob Landley55928b12008-01-19 17:43:27 -060065#include "generated/newtoys.h"
Rob Landleyfc2224b2007-06-01 14:31:45 -0400660; // Ends the opts || opts || opts...
67
Rob Landleybb504f32013-07-19 02:03:02 -050068// Subset of init needed by singlemain
69static void toy_singleinit(struct toy_list *which, char *argv[])
70{
71 toys.which = which;
72 toys.argv = argv;
73
Rob Landley9b14cb62014-09-20 17:51:23 -050074 if (CFG_TOYBOX_I18N) setlocale(LC_ALL, "C"+!!(which->flags & TOYFLAG_LOCALE));
Rob Landleyfc497612014-06-21 13:03:42 -050075
Rob Landleybb504f32013-07-19 02:03:02 -050076 if (CFG_TOYBOX_HELP_DASHDASH && argv[1] && !strcmp(argv[1], "--help")) {
Rob Landleydc1af182014-09-27 19:58:18 -050077 if (CFG_TOYBOX && toys.which == toy_list && toys.argv[2])
Rob Landley5f805332013-08-21 03:03:47 -050078 if (!(toys.which = toy_find(toys.argv[2]))) return;
Rob Landleybb504f32013-07-19 02:03:02 -050079 show_help();
80 xexit();
81 }
82
83 if (NEED_OPTIONS && which->options) get_optflags();
84 else {
85 toys.optargs = argv+1;
86 for (toys.optc=0; toys.optargs[toys.optc]; toys.optc++);
87 }
88 toys.old_umask = umask(0);
89 if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
Rob Landley1bc52242014-05-21 07:24:16 -050090 toys.signalfd--;
Rob Landley90b200c2014-06-11 22:13:28 -050091 toys.toycount = ARRAY_LEN(toy_list);
Rob Landleybb504f32013-07-19 02:03:02 -050092}
93
Rob Landley8f8c5042012-01-14 23:28:15 -060094// Setup toybox global state for this command.
95
landleycd9dfc32006-10-18 18:38:16 -040096void toy_init(struct toy_list *which, char *argv[])
97{
Rob Landley7aa651a2012-11-13 17:14:08 -060098 // Drop permissions for non-suid commands.
Rob Landleye0377fb2010-01-05 12:17:05 -060099
Rob Landley7aa651a2012-11-13 17:14:08 -0600100 if (CFG_TOYBOX_SUID) {
101 uid_t uid = getuid(), euid = geteuid();
Rob Landleye0377fb2010-01-05 12:17:05 -0600102
Rob Landley7aa651a2012-11-13 17:14:08 -0600103 if (!(which->flags & TOYFLAG_STAYROOT)) {
Rob Landley5c87c142014-08-31 11:58:39 -0500104 if (uid != euid) {
105 if (!setuid(uid)) perror_exit("setuid %d->%d", euid, uid); // drop root
106 else euid = uid;
107 }
Rob Landleybf1e70f2012-12-27 17:09:17 -0600108 } else if (CFG_TOYBOX_DEBUG && uid && which != toy_list)
109 error_msg("Not installed suid root");
Rob Landleye0377fb2010-01-05 12:17:05 -0600110
Rob Landley3bc5d3d2014-05-24 13:50:19 -0500111 if ((which->flags & TOYFLAG_NEEDROOT) && euid) {
112 toys.exithelp++;
113 error_exit("Not root");
114 }
Rob Landley7aa651a2012-11-13 17:14:08 -0600115 }
Rob Landleye0377fb2010-01-05 12:17:05 -0600116
Rob Landleycaf39c22012-11-16 00:35:46 -0600117 // Free old toys contents (to be reentrant), but leave rebound if any
Rob Landleydb037ef2010-01-06 05:29:17 -0600118
Rob Landley7aa651a2012-11-13 17:14:08 -0600119 if (toys.optargs != toys.argv+1) free(toys.optargs);
Rob Landleycaf39c22012-11-16 00:35:46 -0600120 memset(&toys, 0, offsetof(struct toy_context, rebound));
Rob Landley1e2399b2015-03-06 15:12:52 -0600121 if (toys.recursion > 1) memset(&this, 0, sizeof(this));
landleycd9dfc32006-10-18 18:38:16 -0400122
Rob Landleybb504f32013-07-19 02:03:02 -0500123 // Subset of init needed by singlemain.
124 toy_singleinit(which, argv);
landleycd9dfc32006-10-18 18:38:16 -0400125}
126
Rob Landley8f8c5042012-01-14 23:28:15 -0600127// Like exec() but runs an internal toybox command instead of another file.
Rob Landleyc6705af2014-09-09 23:42:25 -0500128// Only returns if it can't run command internally, otherwise exit() when done.
landley4f344e32006-10-05 16:18:03 -0400129void toy_exec(char *argv[])
130{
Rob Landley7aa651a2012-11-13 17:14:08 -0600131 struct toy_list *which;
Rob Landleyb841cd22007-06-01 13:41:24 -0400132
Rob Landleyc6705af2014-09-09 23:42:25 -0500133 // Return if we can't find it, or need to re-exec to acquire root,
134 // or if stack depth is getting silly.
Rob Landley09ee2642013-05-08 23:19:45 -0500135 if (!(which = toy_find(argv[0]))) return;
Rob Landleyc6705af2014-09-09 23:42:25 -0500136 if (toys.recursion && (which->flags & TOYFLAG_ROOTONLY) && getuid()) return;
137 if (toys.recursion++ > 5) return;
138
Rob Landley7c5ed1c2015-02-15 15:27:43 -0600139 // don't blank old optargs if our new argc lives in the old optargs.
140 if (argv>=toys.optargs && argv<=toys.optargs+toys.optc) toys.optargs = 0;
141
Rob Landleyc6705af2014-09-09 23:42:25 -0500142 // Run command
Rob Landley7aa651a2012-11-13 17:14:08 -0600143 toy_init(which, argv);
Rob Landley5f805332013-08-21 03:03:47 -0500144 if (toys.which) toys.which->toy_main();
Rob Landley953722e2013-06-30 15:58:24 -0500145 xexit();
landley4f344e32006-10-05 16:18:03 -0400146}
147
Rob Landley8f8c5042012-01-14 23:28:15 -0600148// Multiplexer command, first argument is command to run, rest are args to that.
149// If first argument starts with - output list of command install paths.
150
Rob Landleyefda21c2007-11-29 18:14:37 -0600151void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400152{
Rob Landley7aa651a2012-11-13 17:14:08 -0600153 static char *toy_paths[]={"usr/","bin/","sbin/",0};
154 int i, len = 0;
landley4f344e32006-10-05 16:18:03 -0400155
Rob Landley6c624482012-11-18 18:52:19 -0600156 toys.which = toy_list;
Rob Landley7aa651a2012-11-13 17:14:08 -0600157 if (toys.argv[1]) {
Rob Landleydc11ed82014-11-29 21:11:34 -0600158 toys.optc = toys.recursion = 0;
Rob Landley5f805332013-08-21 03:03:47 -0500159 toy_exec(toys.argv+1);
Rob Landleyad602aa2015-04-05 19:23:36 -0500160 if (toys.argv[1][0] != '-') error_exit("Unknown command %s", toys.argv[1]);
Rob Landley7aa651a2012-11-13 17:14:08 -0600161 }
landley4f344e32006-10-05 16:18:03 -0400162
Rob Landleyad602aa2015-04-05 19:23:36 -0500163 if (!strcmp("--version", toys.argv[1])) printf(TOYBOX_VERSION);
Rob Landley933919c2013-04-21 12:15:59 -0500164 // Output list of command.
Rob Landleyad602aa2015-04-05 19:23:36 -0500165 else for (i=1; i<ARRAY_LEN(toy_list); i++) {
Rob Landley7aa651a2012-11-13 17:14:08 -0600166 int fl = toy_list[i].flags;
167 if (fl & TOYMASK_LOCATION) {
168 if (toys.argv[1]) {
169 int j;
170 for (j=0; toy_paths[j]; j++)
171 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
172 }
Rob Landleyd3f335d2014-10-26 12:56:41 -0500173 len += printf("%s",toy_list[i].name);
174 if (++len > 65) len = 0;
175 xputc(len ? ' ' : '\n');
Rob Landley7aa651a2012-11-13 17:14:08 -0600176 }
177 }
178 xputc('\n');
landley4f344e32006-10-05 16:18:03 -0400179}
180
landley13bab2f2006-09-27 00:45:05 -0400181int main(int argc, char *argv[])
182{
Rob Landleyd04dc1f2013-08-30 01:53:31 -0500183 if (CFG_TOYBOX) {
Rob Landleybb504f32013-07-19 02:03:02 -0500184 // Trim path off of command name
185 *argv = basename(*argv);
landley13bab2f2006-09-27 00:45:05 -0400186
Rob Landleybb504f32013-07-19 02:03:02 -0500187 // Call the multiplexer, adjusting this argv[] to be its' argv[1].
188 // (It will adjust it back before calling toy_exec().)
189 toys.argv = argv-1;
190 toybox_main();
191 } else {
192 // a single toybox command built standalone with no multiplexer
193 toy_singleinit(toy_list, argv);
194 toy_list->toy_main();
Rob Landleybb504f32013-07-19 02:03:02 -0500195 }
196
Rob Landleyaad492f2015-01-03 16:25:36 -0600197 xexit();
landley13bab2f2006-09-27 00:45:05 -0400198}