blob: 5bd4460258684f4e17074c3c246b8bf8e6c9a711 [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
12#define NEWTOY(name, opts, flags) {#name, name##_main, opts, flags},
13#define OLDTOY(name, oldname, opts, flags) {#name, oldname##_main, opts, flags},
14
landleyc5621502006-09-28 17:18:51 -040015struct toy_list toy_list[] = {
Rob Landley55928b12008-01-19 17:43:27 -060016#include "generated/newtoys.h"
landleyc5621502006-09-28 17:18:51 -040017};
18
Rob Landley933919c2013-04-21 12:15:59 -050019// global context for this command.
landleyc5621502006-09-28 17:18:51 -040020
21struct toy_context toys;
Rob Landleyb1aaba12008-01-20 17:25:44 -060022union global_union this;
Rob Landley8fdcfdb2013-09-03 17:56:28 -050023char toybuf[4096], libbuf[4096];
landleyc5621502006-09-28 17:18:51 -040024
landley4f344e32006-10-05 16:18:03 -040025struct toy_list *toy_find(char *name)
landley13bab2f2006-09-27 00:45:05 -040026{
Rob Landley7aa651a2012-11-13 17:14:08 -060027 int top, bottom, middle;
landley13bab2f2006-09-27 00:45:05 -040028
Rob Landley7aa651a2012-11-13 17:14:08 -060029 // If the name starts with "toybox" accept that as a match. Otherwise
30 // skip the first entry, which is out of order.
landley13bab2f2006-09-27 00:45:05 -040031
Rob Landley7aa651a2012-11-13 17:14:08 -060032 if (!strncmp(name,"toybox",6)) return toy_list;
33 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040034
Rob Landley933919c2013-04-21 12:15:59 -050035 // Binary search to find this command.
landley13bab2f2006-09-27 00:45:05 -040036
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;
42 if (middle<bottom || middle>top) return NULL;
43 result = strcmp(name,toy_list[middle].name);
44 if (!result) return toy_list+middle;
45 if (result<0) top=--middle;
46 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 ||
58#define OLDTOY(name, oldname, opts, flags) opts ||
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 Landleybb504f32013-07-19 02:03:02 -050063// Subset of init needed by singlemain
64static void toy_singleinit(struct toy_list *which, char *argv[])
65{
66 toys.which = which;
67 toys.argv = argv;
68
Rob Landleyfc497612014-06-21 13:03:42 -050069 if (CFG_TOYBOX_I18N && (which->flags & TOYFLAG_LOCALE)) setlocale(LC_ALL, "");
70
Rob Landleybb504f32013-07-19 02:03:02 -050071 if (CFG_TOYBOX_HELP_DASHDASH && argv[1] && !strcmp(argv[1], "--help")) {
Rob Landley5f805332013-08-21 03:03:47 -050072 if (toys.which == toy_list && toys.argv[2])
73 if (!(toys.which = toy_find(toys.argv[2]))) return;
Rob Landleybb504f32013-07-19 02:03:02 -050074 show_help();
75 xexit();
76 }
77
78 if (NEED_OPTIONS && which->options) get_optflags();
79 else {
80 toys.optargs = argv+1;
81 for (toys.optc=0; toys.optargs[toys.optc]; toys.optc++);
82 }
83 toys.old_umask = umask(0);
84 if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
Rob Landley1bc52242014-05-21 07:24:16 -050085 toys.signalfd--;
Rob Landley90b200c2014-06-11 22:13:28 -050086 toys.toycount = ARRAY_LEN(toy_list);
Rob Landleybb504f32013-07-19 02:03:02 -050087}
88
Rob Landley8f8c5042012-01-14 23:28:15 -060089// Setup toybox global state for this command.
90
landleycd9dfc32006-10-18 18:38:16 -040091void toy_init(struct toy_list *which, char *argv[])
92{
Rob Landley7aa651a2012-11-13 17:14:08 -060093 // Drop permissions for non-suid commands.
Rob Landleye0377fb2010-01-05 12:17:05 -060094
Rob Landley7aa651a2012-11-13 17:14:08 -060095 if (CFG_TOYBOX_SUID) {
96 uid_t uid = getuid(), euid = geteuid();
Rob Landleye0377fb2010-01-05 12:17:05 -060097
Rob Landley7aa651a2012-11-13 17:14:08 -060098 if (!(which->flags & TOYFLAG_STAYROOT)) {
Rob Landley5c87c142014-08-31 11:58:39 -050099 if (uid != euid) {
100 if (!setuid(uid)) perror_exit("setuid %d->%d", euid, uid); // drop root
101 else euid = uid;
102 }
Rob Landleybf1e70f2012-12-27 17:09:17 -0600103 } else if (CFG_TOYBOX_DEBUG && uid && which != toy_list)
104 error_msg("Not installed suid root");
Rob Landleye0377fb2010-01-05 12:17:05 -0600105
Rob Landley3bc5d3d2014-05-24 13:50:19 -0500106 if ((which->flags & TOYFLAG_NEEDROOT) && euid) {
107 toys.exithelp++;
108 error_exit("Not root");
109 }
Rob Landley7aa651a2012-11-13 17:14:08 -0600110 }
Rob Landleye0377fb2010-01-05 12:17:05 -0600111
Rob Landleycaf39c22012-11-16 00:35:46 -0600112 // Free old toys contents (to be reentrant), but leave rebound if any
Rob Landleydb037ef2010-01-06 05:29:17 -0600113
Rob Landley7aa651a2012-11-13 17:14:08 -0600114 if (toys.optargs != toys.argv+1) free(toys.optargs);
Rob Landleycaf39c22012-11-16 00:35:46 -0600115 memset(&toys, 0, offsetof(struct toy_context, rebound));
landleycd9dfc32006-10-18 18:38:16 -0400116
Rob Landleybb504f32013-07-19 02:03:02 -0500117 // Subset of init needed by singlemain.
118 toy_singleinit(which, argv);
landleycd9dfc32006-10-18 18:38:16 -0400119}
120
Rob Landley8f8c5042012-01-14 23:28:15 -0600121// Like exec() but runs an internal toybox command instead of another file.
122// Only returns if it can't find the command, otherwise exit() when done.
landley4f344e32006-10-05 16:18:03 -0400123void toy_exec(char *argv[])
124{
Rob Landley7aa651a2012-11-13 17:14:08 -0600125 struct toy_list *which;
Rob Landleyb841cd22007-06-01 13:41:24 -0400126
Rob Landley09ee2642013-05-08 23:19:45 -0500127 if (!(which = toy_find(argv[0]))) return;
Rob Landley7aa651a2012-11-13 17:14:08 -0600128 toy_init(which, argv);
Rob Landley5f805332013-08-21 03:03:47 -0500129 if (toys.which) toys.which->toy_main();
Rob Landleya48e5792012-12-23 01:25:27 -0600130 if (fflush(NULL) || ferror(stdout)) perror_exit("write");
Rob Landley953722e2013-06-30 15:58:24 -0500131 xexit();
landley4f344e32006-10-05 16:18:03 -0400132}
133
Rob Landley8f8c5042012-01-14 23:28:15 -0600134// Multiplexer command, first argument is command to run, rest are args to that.
135// If first argument starts with - output list of command install paths.
136
Rob Landleyefda21c2007-11-29 18:14:37 -0600137void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400138{
Rob Landley7aa651a2012-11-13 17:14:08 -0600139 static char *toy_paths[]={"usr/","bin/","sbin/",0};
140 int i, len = 0;
landley4f344e32006-10-05 16:18:03 -0400141
Rob Landley6c624482012-11-18 18:52:19 -0600142 toys.which = toy_list;
Rob Landley7aa651a2012-11-13 17:14:08 -0600143 if (toys.argv[1]) {
Rob Landley52ab00b2014-04-01 18:18:46 -0500144 toys.optc = 0;
Rob Landley5f805332013-08-21 03:03:47 -0500145 toy_exec(toys.argv+1);
146 if (toys.argv[1][0] == '-') goto list;
Rob Landley09ee2642013-05-08 23:19:45 -0500147
148 error_exit("Unknown command %s",toys.argv[1]);
Rob Landley7aa651a2012-11-13 17:14:08 -0600149 }
landley4f344e32006-10-05 16:18:03 -0400150
Rob Landley09ee2642013-05-08 23:19:45 -0500151list:
Rob Landley933919c2013-04-21 12:15:59 -0500152 // Output list of command.
Rob Landley7aa651a2012-11-13 17:14:08 -0600153 for (i=1; i<ARRAY_LEN(toy_list); i++) {
154 int fl = toy_list[i].flags;
155 if (fl & TOYMASK_LOCATION) {
156 if (toys.argv[1]) {
157 int j;
158 for (j=0; toy_paths[j]; j++)
159 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
160 }
161 len += printf("%s ",toy_list[i].name);
162 if (len>65) {
163 xputc('\n');
164 len=0;
165 }
166 }
167 }
168 xputc('\n');
landley4f344e32006-10-05 16:18:03 -0400169}
170
landley13bab2f2006-09-27 00:45:05 -0400171int main(int argc, char *argv[])
172{
Rob Landleyd04dc1f2013-08-30 01:53:31 -0500173 if (CFG_TOYBOX) {
Rob Landleybb504f32013-07-19 02:03:02 -0500174 // Trim path off of command name
175 *argv = basename(*argv);
landley13bab2f2006-09-27 00:45:05 -0400176
Rob Landleybb504f32013-07-19 02:03:02 -0500177 // Call the multiplexer, adjusting this argv[] to be its' argv[1].
178 // (It will adjust it back before calling toy_exec().)
179 toys.argv = argv-1;
180 toybox_main();
181 } else {
182 // a single toybox command built standalone with no multiplexer
183 toy_singleinit(toy_list, argv);
184 toy_list->toy_main();
185 if (fflush(NULL) || ferror(stdout)) perror_exit("write");
186 }
187
188 return toys.exitval;
landley13bab2f2006-09-27 00:45:05 -0400189}