blob: 4b4b3765d8470c3a1b3f4758e3cb523c4bd1e50d [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
32 // If the name starts with "toybox", accept that as a match. Otherwise
33 // 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
55// on its' own.
56
57#undef NEWTOY
58#undef OLDTOY
59#define NEWTOY(name, opts, flags) opts ||
60#define OLDTOY(name, oldname, opts, flags) opts ||
Rob Landley4307a7b2007-06-07 15:20:26 -040061static const int NEED_OPTIONS =
Rob Landley55928b12008-01-19 17:43:27 -060062#include "generated/newtoys.h"
Rob Landleyfc2224b2007-06-01 14:31:45 -0400630; // Ends the opts || opts || opts...
64
landleycd9dfc32006-10-18 18:38:16 -040065void toy_init(struct toy_list *which, char *argv[])
66{
Rob Landleye0377fb2010-01-05 12:17:05 -060067 // Drop permissions for non-suid commands.
68
69 if (CFG_TOYBOX_SUID) {
70 uid_t uid = getuid(), euid = geteuid();
71
72 if (!(which->flags & TOYFLAG_STAYROOT)) {
73 if (uid != euid) xsetuid(euid=uid);
74 } else if (CFG_TOYBOX_DEBUG && uid)
75 error_exit("Not installed suid root");
76
77 if ((which->flags & TOYFLAG_NEEDROOT) && euid)
78 error_exit("Not root");
Rob Landleye0377fb2010-01-05 12:17:05 -060079 }
80
Rob Landleydb037ef2010-01-06 05:29:17 -060081 // Free old toys contents (to be reentrant)
82
83 if (toys.optargs != toys.argv+1) free(toys.optargs);
84 bzero(&toys, sizeof(struct toy_context));
landleycd9dfc32006-10-18 18:38:16 -040085
86 toys.which = which;
87 toys.argv = argv;
Rob Landleyfc2224b2007-06-01 14:31:45 -040088 if (NEED_OPTIONS && which->options) get_optflags();
Rob Landleyb841cd22007-06-01 13:41:24 -040089 else toys.optargs = argv+1;
Rob Landley0f8c4c52008-02-12 19:05:44 -060090 if (which->flags & TOYFLAG_UMASK) toys.old_umask = umask(0);
landleycd9dfc32006-10-18 18:38:16 -040091}
92
landley4f344e32006-10-05 16:18:03 -040093// Run a toy.
94void toy_exec(char *argv[])
95{
96 struct toy_list *which;
Rob Landleyb841cd22007-06-01 13:41:24 -040097
landley4f344e32006-10-05 16:18:03 -040098 which = toy_find(argv[0]);
99 if (!which) return;
landleycd9dfc32006-10-18 18:38:16 -0400100 toy_init(which, argv);
Rob Landleyefda21c2007-11-29 18:14:37 -0600101 toys.which->toy_main();
102 exit(toys.exitval);
landley4f344e32006-10-05 16:18:03 -0400103}
104
Rob Landleyefda21c2007-11-29 18:14:37 -0600105void toybox_main(void)
landley4f344e32006-10-05 16:18:03 -0400106{
107 static char *toy_paths[]={"usr/","bin/","sbin/",0};
108 int i, len = 0;
109
110 if (toys.argv[1]) {
111 if (toys.argv[1][0]!='-') {
112 toy_exec(toys.argv+1);
Rob Landley841223d2008-01-22 15:33:50 -0600113 toys.which = toy_list;
Rob Landley860f2632007-11-27 01:41:32 -0600114 error_exit("Unknown command %s",toys.argv[1]);
landley4f344e32006-10-05 16:18:03 -0400115 }
116 }
117
118 // Output list of applets.
119 for (i=1; i<TOY_LIST_LEN; i++) {
120 int fl = toy_list[i].flags;
121 if (fl & TOYMASK_LOCATION) {
122 if (toys.argv[1]) {
123 int j;
124 for (j=0; toy_paths[j]; j++)
125 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
126 }
127 len += printf("%s ",toy_list[i].name);
128 if (len>65) {
129 putchar('\n');
130 len=0;
131 }
132 }
133 }
134 putchar('\n');
landley4f344e32006-10-05 16:18:03 -0400135}
136
landley13bab2f2006-09-27 00:45:05 -0400137int main(int argc, char *argv[])
138{
Rob Landley5aab9662007-01-18 22:00:46 -0500139 // Artificial scope to eat less stack for things we call
140 {
141 char *name;
landley13bab2f2006-09-27 00:45:05 -0400142
Rob Landley5aab9662007-01-18 22:00:46 -0500143 // Figure out which applet to call.
144 name = rindex(argv[0], '/');
145 if (!name) name=argv[0];
146 else name++;
147 argv[0] = name;
148 }
landley13bab2f2006-09-27 00:45:05 -0400149
landley4f344e32006-10-05 16:18:03 -0400150 toys.argv = argv-1;
Rob Landleyefda21c2007-11-29 18:14:37 -0600151 toybox_main();
152 return 0;
landley13bab2f2006-09-27 00:45:05 -0400153}