blob: 0b0987ad78a95e524319f35b803cdd7e43830ee0 [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
19// global context for this applet.
20
21struct toy_context toys;
Rob Landleyb1aaba12008-01-20 17:25:44 -060022union global_union this;
Rob Landley055cfcb2007-01-14 20:20:06 -050023char toybuf[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 Landley7aa651a2012-11-13 17:14:08 -060035 // Binary search to find this applet.
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 Landley8f8c5042012-01-14 23:28:15 -060063// Setup toybox global state for this command.
64
landleycd9dfc32006-10-18 18:38:16 -040065void toy_init(struct toy_list *which, char *argv[])
66{
Rob Landley7aa651a2012-11-13 17:14:08 -060067 // Drop permissions for non-suid commands.
Rob Landleye0377fb2010-01-05 12:17:05 -060068
Rob Landley7aa651a2012-11-13 17:14:08 -060069 if (CFG_TOYBOX_SUID) {
70 uid_t uid = getuid(), euid = geteuid();
Rob Landleye0377fb2010-01-05 12:17:05 -060071
Rob Landley7aa651a2012-11-13 17:14:08 -060072 if (!(which->flags & TOYFLAG_STAYROOT)) {
73 if (uid != euid) xsetuid(euid=uid);
74 } else if (CFG_TOYBOX_DEBUG && uid) error_exit("Not installed suid root");
Rob Landleye0377fb2010-01-05 12:17:05 -060075
Rob Landley7aa651a2012-11-13 17:14:08 -060076 if ((which->flags & TOYFLAG_NEEDROOT) && euid) error_exit("Not root");
77 }
Rob Landleye0377fb2010-01-05 12:17:05 -060078
Rob Landleycaf39c22012-11-16 00:35:46 -060079 // Free old toys contents (to be reentrant), but leave rebound if any
Rob Landleydb037ef2010-01-06 05:29:17 -060080
Rob Landley7aa651a2012-11-13 17:14:08 -060081 if (toys.optargs != toys.argv+1) free(toys.optargs);
Rob Landleycaf39c22012-11-16 00:35:46 -060082 memset(&toys, 0, offsetof(struct toy_context, rebound));
landleycd9dfc32006-10-18 18:38:16 -040083
Rob Landley7aa651a2012-11-13 17:14:08 -060084 toys.which = which;
85 toys.argv = argv;
86 if (NEED_OPTIONS && which->options) get_optflags();
Rob Landley4521f412012-11-16 00:46:39 -060087 else {
88 toys.optargs = argv+1;
89 for (toys.optc=0; toys.optargs[toys.optc]; toys.optc++);
90 }
Rob Landley7aa651a2012-11-13 17:14:08 -060091 toys.old_umask = umask(0);
92 if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
landleycd9dfc32006-10-18 18:38:16 -040093}
94
Rob Landley8f8c5042012-01-14 23:28:15 -060095// Like exec() but runs an internal toybox command instead of another file.
96// Only returns if it can't find the command, otherwise exit() when done.
landley4f344e32006-10-05 16:18:03 -040097void toy_exec(char *argv[])
98{
Rob Landley7aa651a2012-11-13 17:14:08 -060099 struct toy_list *which;
Rob Landleyb841cd22007-06-01 13:41:24 -0400100
Rob Landley7aa651a2012-11-13 17:14:08 -0600101 which = toy_find(argv[0]);
102 if (!which) return;
103 toy_init(which, argv);
104 toys.which->toy_main();
105 exit(toys.exitval);
landley4f344e32006-10-05 16:18:03 -0400106}
107
Rob Landley8f8c5042012-01-14 23:28:15 -0600108// Multiplexer command, first argument is command to run, rest are args to that.
109// If first argument starts with - output list of command install paths.
110
Rob Landleyefda21c2007-11-29 18:14:37 -0600111void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400112{
Rob Landley7aa651a2012-11-13 17:14:08 -0600113 static char *toy_paths[]={"usr/","bin/","sbin/",0};
114 int i, len = 0;
landley4f344e32006-10-05 16:18:03 -0400115
Rob Landley7aa651a2012-11-13 17:14:08 -0600116 if (toys.argv[1]) {
117 if (toys.argv[1][0]!='-') {
118 toy_exec(toys.argv+1);
119 toys.which = toy_list;
120 error_exit("Unknown command %s",toys.argv[1]);
121 }
122 }
landley4f344e32006-10-05 16:18:03 -0400123
Rob Landley7aa651a2012-11-13 17:14:08 -0600124 // Output list of applets.
125 for (i=1; i<ARRAY_LEN(toy_list); i++) {
126 int fl = toy_list[i].flags;
127 if (fl & TOYMASK_LOCATION) {
128 if (toys.argv[1]) {
129 int j;
130 for (j=0; toy_paths[j]; j++)
131 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
132 }
133 len += printf("%s ",toy_list[i].name);
134 if (len>65) {
135 xputc('\n');
136 len=0;
137 }
138 }
139 }
140 xputc('\n');
landley4f344e32006-10-05 16:18:03 -0400141}
142
landley13bab2f2006-09-27 00:45:05 -0400143int main(int argc, char *argv[])
144{
Rob Landley7aa651a2012-11-13 17:14:08 -0600145 // Artificial scope to eat less stack for things we call
146 {
147 char *name;
landley13bab2f2006-09-27 00:45:05 -0400148
Rob Landley7aa651a2012-11-13 17:14:08 -0600149 // Trim path off of command name
150 name = strrchr(argv[0], '/');
151 if (!name) name=argv[0];
152 else name++;
153 argv[0] = name;
154 }
landley13bab2f2006-09-27 00:45:05 -0400155
Rob Landley7aa651a2012-11-13 17:14:08 -0600156 // Call the multiplexer, adjusting this argv[] to be its' argv[1].
157 // (It will adjust it back before calling toy_exec().)
158 toys.argv = argv-1;
159 toybox_main();
160 return 0;
landley13bab2f2006-09-27 00:45:05 -0400161}