blob: b264ec60669f2c88befa29a7b7a476fec45abbe4 [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 Landleyf2311a42006-11-04 17:45:18 -050017#include "toys/toylist.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 Landley055cfcb2007-01-14 20:20:06 -050025char toybuf[4096];
landleyc5621502006-09-28 17:18:51 -040026
landley4f344e32006-10-05 16:18:03 -040027struct toy_list *toy_find(char *name)
landley13bab2f2006-09-27 00:45:05 -040028{
29 int top, bottom, middle;
30
31 // If the name starts with "toybox", accept that as a match. Otherwise
32 // skip the first entry, which is out of order.
33
34 if (!strncmp(name,"toybox",6)) return toy_list;
landley4f344e32006-10-05 16:18:03 -040035 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040036
37 // Binary search to find this applet.
38
landley4f344e32006-10-05 16:18:03 -040039 top = TOY_LIST_LEN-1;
40 for (;;) {
landley13bab2f2006-09-27 00:45:05 -040041 int result;
42
landley4f344e32006-10-05 16:18:03 -040043 middle = (top+bottom)/2;
44 if (middle<bottom || middle>top) return NULL;
landley13bab2f2006-09-27 00:45:05 -040045 result = strcmp(name,toy_list[middle].name);
landley4f344e32006-10-05 16:18:03 -040046 if (!result) return toy_list+middle;
47 if (result<0) top=--middle;
48 else bottom = ++middle;
landley13bab2f2006-09-27 00:45:05 -040049 }
50}
51
landleycd9dfc32006-10-18 18:38:16 -040052void toy_init(struct toy_list *which, char *argv[])
53{
54 // Free old toys contents here?
55
56 toys.which = which;
57 toys.argv = argv;
landleycd9dfc32006-10-18 18:38:16 -040058 toys.exitval = 1;
Rob Landley8324b892006-11-19 02:49:22 -050059 if (which->options) get_optflags();
landleycd9dfc32006-10-18 18:38:16 -040060}
61
landley4f344e32006-10-05 16:18:03 -040062// Run a toy.
63void toy_exec(char *argv[])
64{
65 struct toy_list *which;
66
67 which = toy_find(argv[0]);
68 if (!which) return;
69
landleycd9dfc32006-10-18 18:38:16 -040070 toy_init(which, argv);
landley4f344e32006-10-05 16:18:03 -040071
72 exit(toys.which->toy_main());
73}
74
75int toybox_main(void)
76{
77 static char *toy_paths[]={"usr/","bin/","sbin/",0};
78 int i, len = 0;
79
80 if (toys.argv[1]) {
81 if (toys.argv[1][0]!='-') {
82 toy_exec(toys.argv+1);
83 error_exit("No behavior for %s\n",toys.argv[1]);
84 }
85 }
86
87 // Output list of applets.
88 for (i=1; i<TOY_LIST_LEN; i++) {
89 int fl = toy_list[i].flags;
90 if (fl & TOYMASK_LOCATION) {
91 if (toys.argv[1]) {
92 int j;
93 for (j=0; toy_paths[j]; j++)
94 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
95 }
96 len += printf("%s ",toy_list[i].name);
97 if (len>65) {
98 putchar('\n');
99 len=0;
100 }
101 }
102 }
103 putchar('\n');
104 return 0;
105}
106
landley13bab2f2006-09-27 00:45:05 -0400107int main(int argc, char *argv[])
108{
Rob Landley5aab9662007-01-18 22:00:46 -0500109 // Artificial scope to eat less stack for things we call
110 {
111 char *name;
landley13bab2f2006-09-27 00:45:05 -0400112
Rob Landley5aab9662007-01-18 22:00:46 -0500113 // Figure out which applet to call.
114 name = rindex(argv[0], '/');
115 if (!name) name=argv[0];
116 else name++;
117 argv[0] = name;
118 }
landley13bab2f2006-09-27 00:45:05 -0400119
landley4f344e32006-10-05 16:18:03 -0400120 toys.argv = argv-1;
121 return toybox_main();
landley13bab2f2006-09-27 00:45:05 -0400122}