OSDN Git Service

Reindent to two spaces per level. Remove vi: directives that haven't worked right...
[android-x86/external-toybox.git] / main.c
1 /* Toybox infrastructure.
2  *
3  * Copyright 2006 Rob Landley <rob@landley.net>
4  */
5
6 #include "toys.h"
7
8 // Populate toy_list[].
9
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
15 struct toy_list toy_list[] = {
16 #include "generated/newtoys.h"
17 };
18
19 // global context for this applet.
20
21 struct toy_context toys;
22 union global_union this;
23 char toybuf[4096];
24
25 struct toy_list *toy_find(char *name)
26 {
27   int top, bottom, middle;
28
29   // If the name starts with "toybox" accept that as a match.  Otherwise
30   // skip the first entry, which is out of order.
31
32   if (!strncmp(name,"toybox",6)) return toy_list;
33   bottom = 1;
34
35   // Binary search to find this applet.
36
37   top = ARRAY_LEN(toy_list)-1;
38   for (;;) {
39     int result;
40
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   }
48 }
49
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
52 // on its' own.  NEED_OPTIONS becomes a constant allowing if() to optimize
53 // stuff out via dead code elimination.
54
55 #undef NEWTOY
56 #undef OLDTOY
57 #define NEWTOY(name, opts, flags) opts ||
58 #define OLDTOY(name, oldname, opts, flags) opts ||
59 static const int NEED_OPTIONS =
60 #include "generated/newtoys.h"
61 0;  // Ends the opts || opts || opts...
62
63 // Setup toybox global state for this command.
64
65 void toy_init(struct toy_list *which, char *argv[])
66 {
67   // 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) error_exit("Not installed suid root");
75
76     if ((which->flags & TOYFLAG_NEEDROOT) && euid) error_exit("Not root");
77   }
78
79   // Free old toys contents (to be reentrant)
80
81   if (toys.optargs != toys.argv+1) free(toys.optargs);
82   memset(&toys, 0, sizeof(struct toy_context));
83
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);
90 }
91
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.
94 void toy_exec(char *argv[])
95 {
96   struct toy_list *which;
97
98   which = toy_find(argv[0]);
99   if (!which) return;
100   toy_init(which, argv);
101   toys.which->toy_main();
102   exit(toys.exitval);
103 }
104
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
108 void toybox_main(void)
109 {
110   static char *toy_paths[]={"usr/","bin/","sbin/",0};
111   int i, len = 0;
112
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   }
120
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');
138 }
139
140 int main(int argc, char *argv[])
141 {
142   // Artificial scope to eat less stack for things we call
143   {
144     char *name;
145
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   }
152
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;
158 }