OSDN Git Service

Fix crash when running unknown command via symlink.
[android-x86/external-toybox.git] / main.c
1 /* vi: set ts=4 :*/
2 /* Toybox infrastructure.
3  *
4  * Copyright 2006 Rob Landley <rob@landley.net>
5  */
6
7 #include "toys.h"
8
9 // Populate toy_list[].
10
11 #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
16 struct toy_list toy_list[] = {
17 #include "generated/newtoys.h"
18 };
19
20 #define TOY_LIST_LEN (sizeof(toy_list)/sizeof(struct toy_list))
21
22 // global context for this applet.
23
24 struct toy_context toys;
25 union global_union this;
26 char toybuf[4096];
27
28 struct toy_list *toy_find(char *name)
29 {
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;
36         bottom = 1;
37
38         // Binary search to find this applet.
39
40         top = TOY_LIST_LEN-1;
41         for (;;) {
42                 int result;
43
44                 middle = (top+bottom)/2;
45                 if (middle<bottom || middle>top) return NULL;
46                 result = strcmp(name,toy_list[middle].name);
47                 if (!result) return toy_list+middle;
48                 if (result<0) top=--middle;
49                 else bottom = ++middle;
50         }
51 }
52
53 // 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 ||
61 static const int NEED_OPTIONS =
62 #include "generated/newtoys.h"
63 0;  // Ends the opts || opts || opts...
64
65 void toy_init(struct toy_list *which, char *argv[])
66 {
67         // Free old toys contents here?
68
69         toys.which = which;
70         toys.argv = argv;
71         if (NEED_OPTIONS && which->options) get_optflags();
72         else toys.optargs = argv+1;
73 }
74
75 // Run a toy.
76 void toy_exec(char *argv[])
77 {
78         struct toy_list *which;
79
80         which = toy_find(argv[0]);
81         if (!which) return;
82         toy_init(which, argv);
83         toys.which->toy_main();
84         exit(toys.exitval);
85 }
86
87 void toybox_main(void)
88 {
89         static char *toy_paths[]={"usr/","bin/","sbin/",0};
90         int i, len = 0;
91
92         if (toys.argv[1]) {
93                 if (toys.argv[1][0]!='-') {
94                         toy_exec(toys.argv+1);
95                         toys.which = toy_list;
96                         error_exit("Unknown command %s",toys.argv[1]);
97                 }
98         }
99
100         // Output list of applets.
101         for (i=1; i<TOY_LIST_LEN; i++) {
102                 int fl = toy_list[i].flags;
103                 if (fl & TOYMASK_LOCATION) {
104                         if (toys.argv[1]) {
105                                 int j;
106                                 for (j=0; toy_paths[j]; j++)
107                                         if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
108                         }
109                         len += printf("%s ",toy_list[i].name);
110                         if (len>65) {
111                                 putchar('\n');
112                                 len=0;
113                         }
114                 }
115         }
116         putchar('\n');
117 }
118
119 int main(int argc, char *argv[])
120 {
121         // Artificial scope to eat less stack for things we call
122         {
123                 char *name;
124
125                 // Figure out which applet to call.
126                 name = rindex(argv[0], '/');
127                 if (!name) name=argv[0];
128                 else name++;
129                 argv[0] = name;
130         }
131
132         toys.argv = argv-1;
133         toybox_main();
134         return 0;
135 }