• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Toybox infrastructure.
2  *
3  * Copyright 2006 Rob Landley <rob@landley.net>
4  */
5 
6 #include "toys.h"
7 
8 #ifndef TOYBOX_VERSION
9 #ifndef TOYBOX_VENDOR
10 #define TOYBOX_VENDOR ""
11 #endif
12 #define TOYBOX_VERSION "0.8.2"TOYBOX_VENDOR
13 #endif
14 
15 // Populate toy_list[].
16 
17 #undef NEWTOY
18 #undef OLDTOY
19 #define NEWTOY(name, opts, flags) {#name, name##_main, OPTSTR_##name, flags},
20 #define OLDTOY(name, oldname, flags) \
21   {#name, oldname##_main, OPTSTR_##oldname, flags},
22 
23 struct toy_list toy_list[] = {
24 #include "generated/newtoys.h"
25 };
26 
27 // global context for this command.
28 
29 struct toy_context toys;
30 union global_union this;
31 char toybuf[4096], libbuf[4096];
32 
toy_find(char * name)33 struct toy_list *toy_find(char *name)
34 {
35   int top, bottom, middle;
36 
37   if (!CFG_TOYBOX || strchr(name, '/')) return 0;
38 
39   // If the name starts with "toybox" accept that as a match.  Otherwise
40   // skip the first entry, which is out of order.
41 
42   if (!strncmp(name, "toybox", 6)) return toy_list;
43   bottom = 1;
44 
45   // Binary search to find this command.
46 
47   top = ARRAY_LEN(toy_list)-1;
48   for (;;) {
49     int result;
50 
51     middle = (top+bottom)/2;
52     if (middle<bottom || middle>top) return 0;
53     result = strcmp(name,toy_list[middle].name);
54     if (!result) return toy_list+middle;
55     if (result<0) top = --middle;
56     else bottom = ++middle;
57   }
58 }
59 
60 // 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
62 // on its' own.  NEED_OPTIONS becomes a constant allowing if() to optimize
63 // stuff out via dead code elimination.
64 
65 #undef NEWTOY
66 #undef OLDTOY
67 #define NEWTOY(name, opts, flags) opts ||
68 #define OLDTOY(name, oldname, flags) OPTSTR_##oldname ||
69 static const int NEED_OPTIONS =
70 #include "generated/newtoys.h"
71 0;  // Ends the opts || opts || opts...
72 
unknown(char * name)73 static void unknown(char *name)
74 {
75   toys.exitval = 127;
76   toys.which = toy_list;
77   error_exit("Unknown command %s", name);
78 }
79 
80 // Setup toybox global state for this command.
toy_singleinit(struct toy_list * which,char * argv[])81 static void toy_singleinit(struct toy_list *which, char *argv[])
82 {
83   toys.which = which;
84   toys.argv = argv;
85 
86   if (CFG_TOYBOX_I18N) setlocale(LC_CTYPE, "C.UTF-8");
87   setlinebuf(stdout);
88 
89   // 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     }
102   }
103 
104   if (NEED_OPTIONS && which->options) get_optflags();
105   else {
106     toys.optargs = argv+1;
107     for (toys.optc = 0; toys.optargs[toys.optc]; toys.optc++);
108   }
109   toys.old_umask = umask(0);
110   if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask);
111   toys.signalfd--;
112   toys.toycount = ARRAY_LEN(toy_list);
113 }
114 
115 // Full init needed by multiplexer or reentrant calls, calls singleinit at end
toy_init(struct toy_list * which,char * argv[])116 void toy_init(struct toy_list *which, char *argv[])
117 {
118   void *oldwhich = toys.which;
119 
120   // Drop permissions for non-suid commands.
121 
122   if (CFG_TOYBOX_SUID) {
123     if (!toys.which) toys.which = toy_list;
124 
125     uid_t uid = getuid(), euid = geteuid();
126 
127     if (!(which->flags & TOYFLAG_STAYROOT)) {
128       if (uid != euid) {
129         if (setuid(uid)) perror_exit("setuid %d->%d", euid, uid); // drop root
130         euid = uid;
131         toys.wasroot++;
132       }
133     } else if (CFG_TOYBOX_DEBUG && uid && which != toy_list)
134       error_msg("Not installed suid root");
135 
136     if ((which->flags & TOYFLAG_NEEDROOT) && euid != KERNEL_PROCESS_GROUP) help_exit("Not root");
137   }
138 
139   // Free old toys contents (to be reentrant), but leave rebound if any
140   // 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);
142   memset(&toys, 0, offsetof(struct toy_context, rebound));
143   if (oldwhich) memset(&this, 0, sizeof(this));
144 
145   // Continue to portion of init needed by standalone commands
146   toy_singleinit(which, argv);
147 }
148 
149 // Run an internal toybox command.
150 // Only returns if it can't run command internally, otherwise xexit() when done.
toy_exec_which(struct toy_list * which,char * argv[])151 void toy_exec_which(struct toy_list *which, char *argv[])
152 {
153   // Return if we can't find it (which includes no multiplexer case),
154   if (!which) return;
155 
156   // Return if stack depth getting noticeable (proxy for leaked heap, etc).
157 
158   // Compiler writers have decided subtracting char * is undefined behavior,
159   // so convert to integers. (LP64 says sizeof(long)==sizeof(pointer).)
160   // Signed typecast so stack growth direction is irrelevant: we're measuring
161   // the distance between two pointers on the same stack, hence the labs().
162   if (!CFG_TOYBOX_NORECURSE && toys.stacktop)
163     if (labs((long)toys.stacktop-(long)&which)>6000) return;
164 
165   // Return if we need to re-exec to acquire root via suid bit.
166   if (toys.which && (which->flags&TOYFLAG_ROOTONLY) && toys.wasroot) return;
167 
168   // Run command
169   toy_init(which, argv);
170   if (toys.which) toys.which->toy_main();
171   xexit();
172 }
173 
174 // Lookup internal toybox command to run via argv[0]
toy_exec(char * argv[])175 void toy_exec(char *argv[])
176 {
177   toy_exec_which(toy_find(basename(*argv)), argv);
178 }
179 
180 // 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.
toybox_main(void)182 void toybox_main(void)
183 {
184   static char *toy_paths[]={"usr/","bin/","sbin/",0};
185   int i, len = 0;
186 
187   // fast path: try to exec immediately.
188   // (Leave toys.which null to disable suid return logic.)
189   // Try dereferencing one layer of symlink
190   if (toys.argv[1]) {
191     toy_exec(toys.argv+1);
192     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]));
196       else toy_exec_which(tl, toys.argv+1);
197     }
198   }
199 
200   // For early error reporting
201   toys.which = toy_list;
202 
203   if (toys.argv[1] && toys.argv[1][0] != '-') unknown(toys.argv[1]);
204 
205   // Output list of command.
206   for (i=1; i<ARRAY_LEN(toy_list); i++) {
207     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       }
214       len += printf("%s",toy_list[i].name);
215       if (++len > 65) len = 0;
216       xputc(len ? ' ' : '\n');
217     }
218   }
219   xputc('\n');
220 }
221 
main(int argc,char * argv[])222 int main(int argc, char *argv[])
223 {
224   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   }
233 
234   // 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!
240   if (CFG_TOYBOX_ON_ANDROID) signal(SIGPIPE, SIG_DFL);
241 
242   // 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   }
250 
251   if (CFG_TOYBOX) {
252     // 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();
260   }
261 
262   xexit();
263 }
264