landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 1 | /* Toybox infrastructure. |
| 2 | * |
| 3 | * Copyright 2006 Rob Landley <rob@landley.net> |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 6 | #include "toys.h" |
| 7 | |
Rob Landley | f2311a4 | 2006-11-04 17:45:18 -0500 | [diff] [blame] | 8 | // Populate toy_list[]. |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 9 | |
Rob Landley | a6d696b | 2007-01-31 13:31:19 -0500 | [diff] [blame] | 10 | #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 | |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 15 | struct toy_list toy_list[] = { |
Rob Landley | 55928b1 | 2008-01-19 17:43:27 -0600 | [diff] [blame] | 16 | #include "generated/newtoys.h" |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 17 | }; |
| 18 | |
| 19 | // global context for this applet. |
| 20 | |
| 21 | struct toy_context toys; |
Rob Landley | b1aaba1 | 2008-01-20 17:25:44 -0600 | [diff] [blame] | 22 | union global_union this; |
Rob Landley | 055cfcb | 2007-01-14 20:20:06 -0500 | [diff] [blame] | 23 | char toybuf[4096]; |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 24 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 25 | struct toy_list *toy_find(char *name) |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 26 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 27 | int top, bottom, middle; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 28 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 29 | // If the name starts with "toybox" accept that as a match. Otherwise |
| 30 | // skip the first entry, which is out of order. |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 31 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 32 | if (!strncmp(name,"toybox",6)) return toy_list; |
| 33 | bottom = 1; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 34 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 35 | // Binary search to find this applet. |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 36 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 37 | top = ARRAY_LEN(toy_list)-1; |
| 38 | for (;;) { |
| 39 | int result; |
Rob Landley | 2c22685 | 2007-11-15 18:30:30 -0600 | [diff] [blame] | 40 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 41 | 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 | } |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 48 | } |
| 49 | |
Rob Landley | fc2224b | 2007-06-01 14:31:45 -0400 | [diff] [blame] | 50 | // 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 Landley | 8f8c504 | 2012-01-14 23:28:15 -0600 | [diff] [blame] | 52 | // on its' own. NEED_OPTIONS becomes a constant allowing if() to optimize |
| 53 | // stuff out via dead code elimination. |
Rob Landley | fc2224b | 2007-06-01 14:31:45 -0400 | [diff] [blame] | 54 | |
| 55 | #undef NEWTOY |
| 56 | #undef OLDTOY |
| 57 | #define NEWTOY(name, opts, flags) opts || |
| 58 | #define OLDTOY(name, oldname, opts, flags) opts || |
Rob Landley | 4307a7b | 2007-06-07 15:20:26 -0400 | [diff] [blame] | 59 | static const int NEED_OPTIONS = |
Rob Landley | 55928b1 | 2008-01-19 17:43:27 -0600 | [diff] [blame] | 60 | #include "generated/newtoys.h" |
Rob Landley | fc2224b | 2007-06-01 14:31:45 -0400 | [diff] [blame] | 61 | 0; // Ends the opts || opts || opts... |
| 62 | |
Rob Landley | 8f8c504 | 2012-01-14 23:28:15 -0600 | [diff] [blame] | 63 | // Setup toybox global state for this command. |
| 64 | |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 65 | void toy_init(struct toy_list *which, char *argv[]) |
| 66 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 67 | // Drop permissions for non-suid commands. |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 68 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 69 | if (CFG_TOYBOX_SUID) { |
| 70 | uid_t uid = getuid(), euid = geteuid(); |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 71 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 72 | if (!(which->flags & TOYFLAG_STAYROOT)) { |
| 73 | if (uid != euid) xsetuid(euid=uid); |
Rob Landley | bf1e70f | 2012-12-27 17:09:17 -0600 | [diff] [blame] | 74 | } else if (CFG_TOYBOX_DEBUG && uid && which != toy_list) |
| 75 | error_msg("Not installed suid root"); |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 76 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 77 | if ((which->flags & TOYFLAG_NEEDROOT) && euid) error_exit("Not root"); |
| 78 | } |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 79 | |
Rob Landley | caf39c2 | 2012-11-16 00:35:46 -0600 | [diff] [blame] | 80 | // Free old toys contents (to be reentrant), but leave rebound if any |
Rob Landley | db037ef | 2010-01-06 05:29:17 -0600 | [diff] [blame] | 81 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 82 | if (toys.optargs != toys.argv+1) free(toys.optargs); |
Rob Landley | caf39c2 | 2012-11-16 00:35:46 -0600 | [diff] [blame] | 83 | memset(&toys, 0, offsetof(struct toy_context, rebound)); |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 84 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 85 | toys.which = which; |
| 86 | toys.argv = argv; |
| 87 | if (NEED_OPTIONS && which->options) get_optflags(); |
Rob Landley | 4521f41 | 2012-11-16 00:46:39 -0600 | [diff] [blame] | 88 | else { |
| 89 | toys.optargs = argv+1; |
| 90 | for (toys.optc=0; toys.optargs[toys.optc]; toys.optc++); |
| 91 | } |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 92 | toys.old_umask = umask(0); |
| 93 | if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask); |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 94 | } |
| 95 | |
Rob Landley | 8f8c504 | 2012-01-14 23:28:15 -0600 | [diff] [blame] | 96 | // 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. |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 98 | void toy_exec(char *argv[]) |
| 99 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 100 | struct toy_list *which; |
Rob Landley | b841cd2 | 2007-06-01 13:41:24 -0400 | [diff] [blame] | 101 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 102 | which = toy_find(argv[0]); |
| 103 | if (!which) return; |
| 104 | toy_init(which, argv); |
| 105 | toys.which->toy_main(); |
Rob Landley | a48e579 | 2012-12-23 01:25:27 -0600 | [diff] [blame] | 106 | if (fflush(NULL) || ferror(stdout)) perror_exit("write"); |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 107 | exit(toys.exitval); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 108 | } |
| 109 | |
Rob Landley | 8f8c504 | 2012-01-14 23:28:15 -0600 | [diff] [blame] | 110 | // Multiplexer command, first argument is command to run, rest are args to that. |
| 111 | // If first argument starts with - output list of command install paths. |
| 112 | |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame] | 113 | void toybox_main(void) |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 114 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 115 | static char *toy_paths[]={"usr/","bin/","sbin/",0}; |
| 116 | int i, len = 0; |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 117 | |
Rob Landley | 6c62448 | 2012-11-18 18:52:19 -0600 | [diff] [blame] | 118 | toys.which = toy_list; |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 119 | if (toys.argv[1]) { |
| 120 | if (toys.argv[1][0]!='-') { |
| 121 | toy_exec(toys.argv+1); |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 122 | error_exit("Unknown command %s",toys.argv[1]); |
| 123 | } |
| 124 | } |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 125 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 126 | // Output list of applets. |
| 127 | for (i=1; i<ARRAY_LEN(toy_list); i++) { |
| 128 | int fl = toy_list[i].flags; |
| 129 | if (fl & TOYMASK_LOCATION) { |
| 130 | if (toys.argv[1]) { |
| 131 | int j; |
| 132 | for (j=0; toy_paths[j]; j++) |
| 133 | if (fl & (1<<j)) len += printf("%s", toy_paths[j]); |
| 134 | } |
| 135 | len += printf("%s ",toy_list[i].name); |
| 136 | if (len>65) { |
| 137 | xputc('\n'); |
| 138 | len=0; |
| 139 | } |
| 140 | } |
| 141 | } |
| 142 | xputc('\n'); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 143 | } |
| 144 | |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 145 | int main(int argc, char *argv[]) |
| 146 | { |
Rob Landley | 6cf0a11 | 2012-11-26 14:14:29 -0600 | [diff] [blame] | 147 | if (CFG_TOYBOX_I18N) setlocale(LC_ALL, ""); |
| 148 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 149 | // Artificial scope to eat less stack for things we call |
| 150 | { |
| 151 | char *name; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 152 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 153 | // Trim path off of command name |
| 154 | name = strrchr(argv[0], '/'); |
| 155 | if (!name) name=argv[0]; |
| 156 | else name++; |
| 157 | argv[0] = name; |
| 158 | } |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 159 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame] | 160 | // Call the multiplexer, adjusting this argv[] to be its' argv[1]. |
| 161 | // (It will adjust it back before calling toy_exec().) |
| 162 | toys.argv = argv-1; |
| 163 | toybox_main(); |
| 164 | return 0; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 165 | } |