Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 2 | #include "busybox.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 3 | #include <stdio.h> |
| 4 | #include <string.h> |
| 5 | #include <errno.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame^] | 6 | #include <stdlib.h> |
Eric Andersen | 8c725e6 | 2000-11-30 00:27:06 +0000 | [diff] [blame] | 7 | |
| 8 | #undef APPLET |
| 9 | #undef APPLET_NOUSAGE |
| 10 | #undef PROTOTYPES |
Mark Whitley | 130005c | 2000-10-25 00:28:27 +0000 | [diff] [blame] | 11 | #include "applets.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 12 | |
Pavel Roskin | 9c5fcc3 | 2000-07-17 23:45:12 +0000 | [diff] [blame] | 13 | #define bb_need_full_version |
| 14 | #define BB_DECLARE_EXTERN |
| 15 | #include "messages.c" |
| 16 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 17 | static int been_there_done_that = 0; |
| 18 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 19 | |
Eric Andersen | 501c88b | 2000-07-28 15:14:45 +0000 | [diff] [blame] | 20 | const char *applet_name; |
Erik Andersen | 05df239 | 2000-01-13 04:43:48 +0000 | [diff] [blame] | 21 | |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 22 | #ifdef BB_FEATURE_INSTALLER |
| 23 | /* |
| 24 | * directory table |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 25 | * this should be consistent w/ the enum, busybox.h::Location, |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 26 | * or else... |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 27 | */ |
| 28 | static char* install_dir[] = { |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 29 | "/", |
| 30 | "/bin", |
| 31 | "/sbin", |
| 32 | "/usr/bin", |
| 33 | "/usr/sbin", |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | /* abstract link() */ |
| 37 | typedef int (*__link_f)(const char *, const char *); |
| 38 | |
John Beppu | 7cdc76d | 2000-06-28 00:41:26 +0000 | [diff] [blame] | 39 | /* |
| 40 | * Where in the filesystem is this busybox? |
| 41 | * [return] |
| 42 | * malloc'd string w/ full pathname of busybox's location |
| 43 | * NULL on failure |
| 44 | */ |
| 45 | static char *busybox_fullpath() |
| 46 | { |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 47 | pid_t pid; |
| 48 | char path[256]; |
| 49 | char proc[256]; |
| 50 | int len; |
John Beppu | 7cdc76d | 2000-06-28 00:41:26 +0000 | [diff] [blame] | 51 | |
| 52 | pid = getpid(); |
| 53 | sprintf(proc, "/proc/%d/exe", pid); |
| 54 | len = readlink(proc, path, 256); |
| 55 | if (len != -1) { |
| 56 | path[len] = 0; |
| 57 | } else { |
Matt Kraai | 1fa1ade | 2000-12-18 03:57:16 +0000 | [diff] [blame] | 58 | perror_msg("%s", proc); |
John Beppu | 7cdc76d | 2000-06-28 00:41:26 +0000 | [diff] [blame] | 59 | return NULL; |
| 60 | } |
| 61 | return strdup(path); |
| 62 | } |
| 63 | |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 64 | /* create (sym)links for each applet */ |
Eric Andersen | c5949f6 | 2000-09-25 20:35:54 +0000 | [diff] [blame] | 65 | static void install_links(const char *busybox, int use_symbolic_links) |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 66 | { |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 67 | __link_f Link = link; |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 68 | |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 69 | char command[256]; |
| 70 | int i; |
Eric Andersen | c5949f6 | 2000-09-25 20:35:54 +0000 | [diff] [blame] | 71 | int rc; |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 72 | |
| 73 | if (use_symbolic_links) Link = symlink; |
| 74 | |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 75 | for (i = 0; applets[i].name != NULL; i++) { |
Eric Andersen | c5949f6 | 2000-09-25 20:35:54 +0000 | [diff] [blame] | 76 | sprintf ( command, "%s/%s", |
| 77 | install_dir[applets[i].location], |
| 78 | applets[i].name); |
| 79 | rc = Link(busybox, command); |
| 80 | |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 81 | if (rc) { |
Matt Kraai | 1fa1ade | 2000-12-18 03:57:16 +0000 | [diff] [blame] | 82 | perror_msg("%s", command); |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 83 | } |
John Beppu | eb02833 | 2000-06-28 00:55:31 +0000 | [diff] [blame] | 84 | } |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 85 | } |
| 86 | |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 87 | #endif /* BB_FEATURE_INSTALLER */ |
| 88 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 89 | int main(int argc, char **argv) |
| 90 | { |
Matt Kraai | a0428ee | 2000-10-25 19:00:51 +0000 | [diff] [blame] | 91 | struct BB_applet search_applet, *applet; |
Eric Andersen | 501c88b | 2000-07-28 15:14:45 +0000 | [diff] [blame] | 92 | const char *s; |
Eric Andersen | f5d5e77 | 2001-01-24 23:34:48 +0000 | [diff] [blame] | 93 | |
| 94 | for (s = applet_name = argv[0]; *s != '\0';) { |
| 95 | if (*s++ == '/') |
| 96 | applet_name = s; |
| 97 | } |
| 98 | |
| 99 | #ifdef BB_SH |
| 100 | /* Add in a special case hack -- whenever **argv == '-' |
| 101 | * (i.e. '-su' or '-sh') always invoke the shell */ |
| 102 | if (**argv == '-' && *(*argv+1)!= '-') { |
| 103 | exit(((*(shell_main)) (argc, argv))); |
| 104 | } |
| 105 | #endif |
| 106 | |
| 107 | /* Do a binary search to find the applet entry given the name. */ |
| 108 | search_applet.name = applet_name; |
| 109 | applet = bsearch(&search_applet, applets, NUM_APPLETS, |
| 110 | sizeof(struct BB_applet), applet_name_compare); |
| 111 | if (applet != NULL) { |
| 112 | if (applet->usage && argv[1] && strcmp(argv[1], "--help") == 0) |
| 113 | usage(applet->usage); |
| 114 | exit((*(applet->main)) (argc, argv)); |
| 115 | } |
| 116 | |
| 117 | error_msg_and_die("applet not found\n"); |
| 118 | } |
| 119 | |
| 120 | |
| 121 | int busybox_main(int argc, char **argv) |
| 122 | { |
| 123 | int col = 0, len, i; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 124 | |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 125 | #ifdef BB_FEATURE_INSTALLER |
John Beppu | 27b5924 | 2000-06-27 04:56:45 +0000 | [diff] [blame] | 126 | /* |
| 127 | * This style of argument parsing doesn't scale well |
| 128 | * in the event that busybox starts wanting more --options. |
| 129 | * If someone has a cleaner approach, by all means implement it. |
| 130 | */ |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 131 | if (argc > 1 && (strcmp(argv[1], "--install") == 0)) { |
| 132 | int use_symbolic_links = 0; |
John Beppu | 7cdc76d | 2000-06-28 00:41:26 +0000 | [diff] [blame] | 133 | int rc = 0; |
| 134 | char *busybox; |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 135 | |
John Beppu | 27b5924 | 2000-06-27 04:56:45 +0000 | [diff] [blame] | 136 | /* to use symlinks, or not to use symlinks... */ |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 137 | if (argc > 2) { |
| 138 | if ((strcmp(argv[2], "-s") == 0)) { |
| 139 | use_symbolic_links = 1; |
| 140 | } |
| 141 | } |
John Beppu | 7cdc76d | 2000-06-28 00:41:26 +0000 | [diff] [blame] | 142 | |
| 143 | /* link */ |
| 144 | busybox = busybox_fullpath(); |
| 145 | if (busybox) { |
| 146 | install_links(busybox, use_symbolic_links); |
| 147 | free(busybox); |
| 148 | } else { |
| 149 | rc = 1; |
| 150 | } |
| 151 | return rc; |
John Beppu | 8f425db | 2000-06-27 04:50:02 +0000 | [diff] [blame] | 152 | } |
| 153 | #endif /* BB_FEATURE_INSTALLER */ |
| 154 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 155 | argc--; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 156 | |
Eric Andersen | 5e09b6e | 2000-12-08 19:03:12 +0000 | [diff] [blame] | 157 | /* If we've already been here once, exit now */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 158 | if (been_there_done_that == 1 || argc < 1) { |
Erik Andersen | bcd6177 | 2000-05-13 06:33:19 +0000 | [diff] [blame] | 159 | const struct BB_applet *a = applets; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 160 | |
Pavel Roskin | 9c5fcc3 | 2000-07-17 23:45:12 +0000 | [diff] [blame] | 161 | fprintf(stderr, "%s\n\n" |
Erik Andersen | 330fd2b | 2000-05-19 05:35:19 +0000 | [diff] [blame] | 162 | "Usage: busybox [function] [arguments]...\n" |
| 163 | " or: [function] [arguments]...\n\n" |
John Beppu | b4f8606 | 2000-04-13 03:36:01 +0000 | [diff] [blame] | 164 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
| 165 | "\tutilities into a single executable. Most people will create a\n" |
| 166 | "\tlink to busybox for each function they wish to use, and BusyBox\n" |
Erik Andersen | 330fd2b | 2000-05-19 05:35:19 +0000 | [diff] [blame] | 167 | "\twill act like whatever it was invoked as.\n" |
Pavel Roskin | 9c5fcc3 | 2000-07-17 23:45:12 +0000 | [diff] [blame] | 168 | "\nCurrently defined functions:\n", full_version); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 169 | |
| 170 | while (a->name != 0) { |
| 171 | col += |
| 172 | fprintf(stderr, "%s%s", ((col == 0) ? "\t" : ", "), |
| 173 | (a++)->name); |
| 174 | if (col > 60 && a->name != 0) { |
| 175 | fprintf(stderr, ",\n"); |
| 176 | col = 0; |
| 177 | } |
| 178 | } |
| 179 | fprintf(stderr, "\n\n"); |
| 180 | exit(-1); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 181 | } |
Eric Andersen | 5e09b6e | 2000-12-08 19:03:12 +0000 | [diff] [blame] | 182 | |
| 183 | /* Flag that we've been here already */ |
Eric Andersen | b610615 | 2000-06-19 17:25:40 +0000 | [diff] [blame] | 184 | been_there_done_that = 1; |
Eric Andersen | 5e09b6e | 2000-12-08 19:03:12 +0000 | [diff] [blame] | 185 | |
Matt Kraai | 8abc78a | 2000-12-15 00:35:22 +0000 | [diff] [blame] | 186 | /* Move the command line down a notch */ |
| 187 | len = argv[argc] + strlen(argv[argc]) - argv[1]; |
| 188 | memmove(argv[0], argv[1], len); |
| 189 | memset(argv[0] + len, 0, argv[1] - argv[0]); |
| 190 | |
| 191 | /* Fix up the argv pointers */ |
| 192 | len = argv[1] - argv[0]; |
| 193 | memmove(argv, argv+1, sizeof(char *) * (argc + 1)); |
| 194 | for (i = 0; i < argc; i++) |
| 195 | argv[i] -= len; |
Eric Andersen | 5e09b6e | 2000-12-08 19:03:12 +0000 | [diff] [blame] | 196 | |
Eric Andersen | b610615 | 2000-06-19 17:25:40 +0000 | [diff] [blame] | 197 | return (main(argc, argv)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 198 | } |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 199 | |
| 200 | /* |
| 201 | Local Variables: |
| 202 | c-file-style: "linux" |
| 203 | c-basic-offset: 4 |
| 204 | tab-width: 4 |
| 205 | End: |
| 206 | */ |