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); |
| 74 | } else if (CFG_TOYBOX_DEBUG && uid) error_exit("Not installed suid root"); |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 75 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 76 | if ((which->flags & TOYFLAG_NEEDROOT) && euid) error_exit("Not root"); |
| 77 | } |
Rob Landley | e0377fb | 2010-01-05 12:17:05 -0600 | [diff] [blame] | 78 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 79 | // Free old toys contents (to be reentrant) |
Rob Landley | db037ef | 2010-01-06 05:29:17 -0600 | [diff] [blame] | 80 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 81 | if (toys.optargs != toys.argv+1) free(toys.optargs); |
| 82 | memset(&toys, 0, sizeof(struct toy_context)); |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 83 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 84 | toys.which = which; |
| 85 | toys.argv = argv; |
| 86 | if (NEED_OPTIONS && which->options) get_optflags(); |
| 87 | else toys.optargs = argv+1; |
| 88 | toys.old_umask = umask(0); |
| 89 | if (!(which->flags & TOYFLAG_UMASK)) umask(toys.old_umask); |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 90 | } |
| 91 | |
Rob Landley | 8f8c504 | 2012-01-14 23:28:15 -0600 | [diff] [blame] | 92 | // Like exec() but runs an internal toybox command instead of another file. |
| 93 | // Only returns if it can't find the command, otherwise exit() when done. |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 94 | void toy_exec(char *argv[]) |
| 95 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 96 | struct toy_list *which; |
Rob Landley | b841cd2 | 2007-06-01 13:41:24 -0400 | [diff] [blame] | 97 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 98 | which = toy_find(argv[0]); |
| 99 | if (!which) return; |
| 100 | toy_init(which, argv); |
| 101 | toys.which->toy_main(); |
| 102 | exit(toys.exitval); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 103 | } |
| 104 | |
Rob Landley | 8f8c504 | 2012-01-14 23:28:15 -0600 | [diff] [blame] | 105 | // Multiplexer command, first argument is command to run, rest are args to that. |
| 106 | // If first argument starts with - output list of command install paths. |
| 107 | |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame] | 108 | void toybox_main(void) |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 109 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 110 | static char *toy_paths[]={"usr/","bin/","sbin/",0}; |
| 111 | int i, len = 0; |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 112 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 113 | if (toys.argv[1]) { |
| 114 | if (toys.argv[1][0]!='-') { |
| 115 | toy_exec(toys.argv+1); |
| 116 | toys.which = toy_list; |
| 117 | error_exit("Unknown command %s",toys.argv[1]); |
| 118 | } |
| 119 | } |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 120 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 121 | // Output list of applets. |
| 122 | for (i=1; i<ARRAY_LEN(toy_list); i++) { |
| 123 | int fl = toy_list[i].flags; |
| 124 | if (fl & TOYMASK_LOCATION) { |
| 125 | if (toys.argv[1]) { |
| 126 | int j; |
| 127 | for (j=0; toy_paths[j]; j++) |
| 128 | if (fl & (1<<j)) len += printf("%s", toy_paths[j]); |
| 129 | } |
| 130 | len += printf("%s ",toy_list[i].name); |
| 131 | if (len>65) { |
| 132 | xputc('\n'); |
| 133 | len=0; |
| 134 | } |
| 135 | } |
| 136 | } |
| 137 | xputc('\n'); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 138 | } |
| 139 | |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 140 | int main(int argc, char *argv[]) |
| 141 | { |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 142 | // Artificial scope to eat less stack for things we call |
| 143 | { |
| 144 | char *name; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 145 | |
Rob Landley | 7aa651a | 2012-11-13 17:14:08 -0600 | [diff] [blame^] | 146 | // Trim path off of command name |
| 147 | name = strrchr(argv[0], '/'); |
| 148 | if (!name) name=argv[0]; |
| 149 | else name++; |
| 150 | argv[0] = name; |
| 151 | } |
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 | // Call the multiplexer, adjusting this argv[] to be its' argv[1]. |
| 154 | // (It will adjust it back before calling toy_exec().) |
| 155 | toys.argv = argv-1; |
| 156 | toybox_main(); |
| 157 | return 0; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 158 | } |