OSDN Git Service

Add help -a (to show all commands) and -h (to produce HTML output).
[android-x86/external-toybox.git] / toys.h
1 /* Toybox infrastructure.
2  *
3  * Copyright 2006 Rob Landley <rob@landley.net>
4  */
5
6 #include "generated/config.h"
7
8 #include "lib/portability.h"
9
10 #include <ctype.h>
11 #include <dirent.h>
12 #include <errno.h>
13 #include <fcntl.h>
14 #include <grp.h>
15 #include <inttypes.h>
16 #include <limits.h>
17 #include <libgen.h>
18 #include <math.h>
19 #include <pty.h>
20 #include <pwd.h>
21 #include <sched.h>
22 #include <setjmp.h>
23 #include <sched.h>
24 #include <shadow.h>
25 #include <stdarg.h>
26 #include <stddef.h>
27 #include <stdint.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <strings.h>
32 #include <sys/ioctl.h>
33 #include <sys/mman.h>
34 #include <sys/mount.h>
35 #include <sys/resource.h>
36 #include <sys/stat.h>
37 #include <sys/statfs.h>
38 #include <sys/statvfs.h>
39 #include <sys/sysinfo.h>
40 #include <sys/swap.h>
41 #include <sys/time.h>
42 #include <sys/times.h>
43 #include <sys/types.h>
44 #include <sys/utsname.h>
45 #include <sys/wait.h>
46 #include <syslog.h>
47 #include <time.h>
48 #include <unistd.h>
49 #include <utime.h>
50 #include <utmpx.h>
51
52 // Internationalization support
53
54 #include <locale.h>
55 #include <wchar.h>
56 #include <wctype.h>
57
58 // Networking stuff
59
60 #include <arpa/inet.h>
61 #include <netdb.h>
62 #include <net/if.h>
63 #include <netinet/in.h>
64 #include <netinet/tcp.h>
65 #include <poll.h>
66 #include <sys/socket.h>
67 #include <sys/un.h>
68
69 #include "lib/lib.h"
70 #include "toys/e2fs.h"
71
72 // Get list of function prototypes for all enabled command_main() functions.
73
74 #define NEWTOY(name, opts, flags) void name##_main(void);
75 #define OLDTOY(name, oldname, opts, flags)
76 #include "generated/newtoys.h"
77 #include "generated/oldtoys.h"
78 #include "generated/flags.h"
79 #include "generated/globals.h"
80
81 // These live in main.c
82
83 struct toy_list *toy_find(char *name);
84 void toy_init(struct toy_list *which, char *argv[]);
85 void toy_exec(char *argv[]);
86
87 // Flags describing command behavior.
88
89 #define TOYFLAG_USR      (1<<0)
90 #define TOYFLAG_BIN      (1<<1)
91 #define TOYFLAG_SBIN     (1<<2)
92 #define TOYMASK_LOCATION ((1<<4)-1)
93
94 // This is a shell built-in function, running in the same process context.
95 #define TOYFLAG_NOFORK   (1<<4)
96
97 // Start command with a umask of 0 (saves old umask in this.old_umask)
98 #define TOYFLAG_UMASK    (1<<5)
99
100 // This command runs as root.
101 #define TOYFLAG_STAYROOT (1<<6)
102 #define TOYFLAG_NEEDROOT (1<<7)
103 #define TOYFLAG_ROOTONLY (TOYFLAG_STAYROOT|TOYFLAG_NEEDROOT)
104
105 // Array of available commands
106
107 extern struct toy_list {
108   char *name;
109   void (*toy_main)(void);
110   char *options;
111   int flags;
112 } toy_list[];
113
114 // Global context shared by all commands.
115
116 extern struct toy_context {
117   struct toy_list *which;  // Which entry in toy_list is this one?
118   char **argv;             // Original command line arguments
119   char **optargs;          // Arguments left over from get_optflags()
120   jmp_buf *rebound;        // longjmp here instead of exit when do_rebound set
121   unsigned optflags;       // Command line option flags from get_optflags()
122   int exitval;             // Value error_exit feeds to exit()
123   int optc;                // Count of optargs
124   int exithelp;            // Should error_exit print a usage message first?
125   int old_umask;           // Old umask preserved by TOYFLAG_UMASK
126   int toycount;            // Total number of commands in this build
127 } toys;
128
129 // Two big temporary buffers: one for use by commands, one for library functions
130
131 extern char toybuf[4096], libbuf[4096];
132
133 extern char **environ;
134
135 #define GLOBALS(...)
136
137 #define ARRAY_LEN(array) (sizeof(array)/sizeof(*array))