blob: 1b1f0fccbfb10ff9785e21a207e52fa4e0b5d8c4 [file] [log] [blame]
landley13bab2f2006-09-27 00:45:05 -04001/* vi: set ts=4 :*/
2/* Toybox infrastructure.
3 *
4 * Copyright 2006 Rob Landley <rob@landley.net>
landley13bab2f2006-09-27 00:45:05 -04005 */
6
landleyc5621502006-09-28 17:18:51 -04007#include "toys.h"
8
Rob Landleyf2311a42006-11-04 17:45:18 -05009// Populate toy_list[].
landleyc5621502006-09-28 17:18:51 -040010
Rob Landleya6d696b2007-01-31 13:31:19 -050011#undef NEWTOY
12#undef OLDTOY
13#define NEWTOY(name, opts, flags) {#name, name##_main, opts, flags},
14#define OLDTOY(name, oldname, opts, flags) {#name, oldname##_main, opts, flags},
15
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
landley4f344e32006-10-05 16:18:03 -040020#define TOY_LIST_LEN (sizeof(toy_list)/sizeof(struct toy_list))
21
landleyc5621502006-09-28 17:18:51 -040022// global context for this applet.
23
24struct toy_context toys;
Rob Landleyb1aaba12008-01-20 17:25:44 -060025union global_union this;
Rob Landley055cfcb2007-01-14 20:20:06 -050026char toybuf[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{
30 int top, bottom, middle;
31
Rob Landley8f8c5042012-01-14 23:28:15 -060032 // If the name starts with "toybox" accept that as a match. Otherwise
landley13bab2f2006-09-27 00:45:05 -040033 // skip the first entry, which is out of order.
34
35 if (!strncmp(name,"toybox",6)) return toy_list;
landley4f344e32006-10-05 16:18:03 -040036 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040037
38 // Binary search to find this applet.
39
landley4f344e32006-10-05 16:18:03 -040040 top = TOY_LIST_LEN-1;
41 for (;;) {
landley13bab2f2006-09-27 00:45:05 -040042 int result;
Rob Landley2c226852007-11-15 18:30:30 -060043
landley4f344e32006-10-05 16:18:03 -040044 middle = (top+bottom)/2;
45 if (middle<bottom || middle>top) return NULL;
landley13bab2f2006-09-27 00:45:05 -040046 result = strcmp(name,toy_list[middle].name);
landley4f344e32006-10-05 16:18:03 -040047 if (!result) return toy_list+middle;
48 if (result<0) top=--middle;
49 else bottom = ++middle;
landley13bab2f2006-09-27 00:45:05 -040050 }
51}
52
Rob Landleyfc2224b2007-06-01 14:31:45 -040053// Figure out whether or not anything is using the option parsing logic,
54// because the compiler can't figure out whether or not to optimize it away
Rob Landley8f8c5042012-01-14 23:28:15 -060055// on its' own. NEED_OPTIONS becomes a constant allowing if() to optimize
56// stuff out via dead code elimination.
Rob Landleyfc2224b2007-06-01 14:31:45 -040057
58#undef NEWTOY
59#undef OLDTOY
60#define NEWTOY(name, opts, flags) opts ||
61#define OLDTOY(name, oldname, opts, flags) opts ||
Rob Landley4307a7b2007-06-07 15:20:26 -040062static const int NEED_OPTIONS =
Rob Landley55928b12008-01-19 17:43:27 -060063#include "generated/newtoys.h"
Rob Landleyfc2224b2007-06-01 14:31:45 -0400640; // Ends the opts || opts || opts...
65
Rob Landley8f8c5042012-01-14 23:28:15 -060066// Setup toybox global state for this command.
67
landleycd9dfc32006-10-18 18:38:16 -040068void toy_init(struct toy_list *which, char *argv[])
69{
Rob Landleye0377fb2010-01-05 12:17:05 -060070 // Drop permissions for non-suid commands.
71
72 if (CFG_TOYBOX_SUID) {
73 uid_t uid = getuid(), euid = geteuid();
74
75 if (!(which->flags & TOYFLAG_STAYROOT)) {
76 if (uid != euid) xsetuid(euid=uid);
77 } else if (CFG_TOYBOX_DEBUG && uid)
78 error_exit("Not installed suid root");
79
80 if ((which->flags & TOYFLAG_NEEDROOT) && euid)
81 error_exit("Not root");
Rob Landleye0377fb2010-01-05 12:17:05 -060082 }
83
Rob Landleydb037ef2010-01-06 05:29:17 -060084 // Free old toys contents (to be reentrant)
85
86 if (toys.optargs != toys.argv+1) free(toys.optargs);
Rob Landley2b54b1a2012-02-18 22:44:11 -060087 memset(&toys, 0, sizeof(struct toy_context));
landleycd9dfc32006-10-18 18:38:16 -040088
89 toys.which = which;
90 toys.argv = argv;
Rob Landleyfc2224b2007-06-01 14:31:45 -040091 if (NEED_OPTIONS && which->options) get_optflags();
Rob Landleyb841cd22007-06-01 13:41:24 -040092 else toys.optargs = argv+1;
Rob Landley0f8c4c52008-02-12 19:05:44 -060093 if (which->flags & TOYFLAG_UMASK) toys.old_umask = umask(0);
landleycd9dfc32006-10-18 18:38:16 -040094}
95
Rob Landley8f8c5042012-01-14 23:28:15 -060096// Like exec() but runs an internal toybox command instead of another file.
97// Only returns if it can't find the command, otherwise exit() when done.
landley4f344e32006-10-05 16:18:03 -040098void toy_exec(char *argv[])
99{
100 struct toy_list *which;
Rob Landleyb841cd22007-06-01 13:41:24 -0400101
landley4f344e32006-10-05 16:18:03 -0400102 which = toy_find(argv[0]);
103 if (!which) return;
landleycd9dfc32006-10-18 18:38:16 -0400104 toy_init(which, argv);
Rob Landleyefda21c2007-11-29 18:14:37 -0600105 toys.which->toy_main();
106 exit(toys.exitval);
landley4f344e32006-10-05 16:18:03 -0400107}
108
Rob Landley8f8c5042012-01-14 23:28:15 -0600109// Multiplexer command, first argument is command to run, rest are args to that.
110// If first argument starts with - output list of command install paths.
111
Rob Landleyefda21c2007-11-29 18:14:37 -0600112void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400113{
114 static char *toy_paths[]={"usr/","bin/","sbin/",0};
115 int i, len = 0;
116
117 if (toys.argv[1]) {
118 if (toys.argv[1][0]!='-') {
119 toy_exec(toys.argv+1);
Rob Landley841223d2008-01-22 15:33:50 -0600120 toys.which = toy_list;
Rob Landley860f2632007-11-27 01:41:32 -0600121 error_exit("Unknown command %s",toys.argv[1]);
landley4f344e32006-10-05 16:18:03 -0400122 }
123 }
124
125 // Output list of applets.
126 for (i=1; i<TOY_LIST_LEN; i++) {
127 int fl = toy_list[i].flags;
128 if (fl & TOYMASK_LOCATION) {
129 if (toys.argv[1]) {
130 int j;
131 for (j=0; toy_paths[j]; j++)
132 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
133 }
134 len += printf("%s ",toy_list[i].name);
135 if (len>65) {
136 putchar('\n');
137 len=0;
138 }
139 }
140 }
141 putchar('\n');
landley4f344e32006-10-05 16:18:03 -0400142}
143
landley13bab2f2006-09-27 00:45:05 -0400144int main(int argc, char *argv[])
145{
Rob Landley5aab9662007-01-18 22:00:46 -0500146 // Artificial scope to eat less stack for things we call
147 {
148 char *name;
landley13bab2f2006-09-27 00:45:05 -0400149
Rob Landley8f8c5042012-01-14 23:28:15 -0600150 // Trim path off of command name
Rob Landley7f28e682012-02-08 19:29:14 -0600151 name = strrchr(argv[0], '/');
Rob Landley5aab9662007-01-18 22:00:46 -0500152 if (!name) name=argv[0];
153 else name++;
154 argv[0] = name;
155 }
landley13bab2f2006-09-27 00:45:05 -0400156
Rob Landley8f8c5042012-01-14 23:28:15 -0600157 // Call the multiplexer, adjusting this argv[] to be its' argv[1].
158 // (It will adjust it back before calling toy_exec().)
landley4f344e32006-10-05 16:18:03 -0400159 toys.argv = argv-1;
Rob Landleyefda21c2007-11-29 18:14:37 -0600160 toybox_main();
161 return 0;
landley13bab2f2006-09-27 00:45:05 -0400162}