blob: 41b6069edb79bc0b4d4251296fc90044dd5eb5dc [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002#include <stdio.h>
3#include <string.h>
Eric Andersen90ca2842001-01-27 08:32:57 +00004#include <unistd.h>
Eric Andersencc8ed391999-10-05 16:24:54 +00005#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +00006#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +00007#include "busybox.h"
Eric Andersene5dfced2001-04-09 22:48:12 +00008#ifdef BB_LOCALE_SUPPORT
9#include <locale.h>
10#endif
11
Eric Andersen0f0c0b42001-04-03 17:05:01 +000012int been_there_done_that = 0; /* Also used in applets.c */
Eric Andersen501c88b2000-07-28 15:14:45 +000013const char *applet_name;
Erik Andersen05df2392000-01-13 04:43:48 +000014
John Beppu8f425db2000-06-27 04:50:02 +000015#ifdef BB_FEATURE_INSTALLER
16/*
17 * directory table
Eric Andersen3570a342000-09-25 21:45:58 +000018 * this should be consistent w/ the enum, busybox.h::Location,
John Beppueb028332000-06-28 00:55:31 +000019 * or else...
John Beppu8f425db2000-06-27 04:50:02 +000020 */
21static char* install_dir[] = {
John Beppueb028332000-06-28 00:55:31 +000022 "/",
23 "/bin",
24 "/sbin",
25 "/usr/bin",
26 "/usr/sbin",
John Beppu8f425db2000-06-27 04:50:02 +000027};
28
29/* abstract link() */
30typedef int (*__link_f)(const char *, const char *);
31
John Beppu7cdc76d2000-06-28 00:41:26 +000032/*
33 * Where in the filesystem is this busybox?
34 * [return]
35 * malloc'd string w/ full pathname of busybox's location
36 * NULL on failure
37 */
38static char *busybox_fullpath()
39{
Eric Andersen28355a32001-05-07 17:48:28 +000040 return xreadlink("/proc/self/exe");
John Beppu7cdc76d2000-06-28 00:41:26 +000041}
42
John Beppu8f425db2000-06-27 04:50:02 +000043/* create (sym)links for each applet */
Eric Andersenc5949f62000-09-25 20:35:54 +000044static void install_links(const char *busybox, int use_symbolic_links)
John Beppu8f425db2000-06-27 04:50:02 +000045{
John Beppueb028332000-06-28 00:55:31 +000046 __link_f Link = link;
John Beppu8f425db2000-06-27 04:50:02 +000047
Eric Andersene5dfced2001-04-09 22:48:12 +000048 char *fpc;
John Beppueb028332000-06-28 00:55:31 +000049 int i;
Eric Andersenc5949f62000-09-25 20:35:54 +000050 int rc;
John Beppu8f425db2000-06-27 04:50:02 +000051
Eric Andersen90ca2842001-01-27 08:32:57 +000052 if (use_symbolic_links)
53 Link = symlink;
John Beppu8f425db2000-06-27 04:50:02 +000054
John Beppueb028332000-06-28 00:55:31 +000055 for (i = 0; applets[i].name != NULL; i++) {
Eric Andersene5dfced2001-04-09 22:48:12 +000056 fpc = concat_path_file(
57 install_dir[applets[i].location], applets[i].name);
58 rc = Link(busybox, fpc);
59 if (rc!=0 && errno!=EEXIST) {
60 perror_msg("%s", fpc);
John Beppu8f425db2000-06-27 04:50:02 +000061 }
Eric Andersene5dfced2001-04-09 22:48:12 +000062 free(fpc);
John Beppueb028332000-06-28 00:55:31 +000063 }
John Beppu8f425db2000-06-27 04:50:02 +000064}
65
John Beppu8f425db2000-06-27 04:50:02 +000066#endif /* BB_FEATURE_INSTALLER */
67
Eric Andersencc8ed391999-10-05 16:24:54 +000068int main(int argc, char **argv)
69{
Matt Kraaif2cc2762001-02-01 19:21:20 +000070 const char *s;
Eric Andersenf5d5e772001-01-24 23:34:48 +000071
72 for (s = applet_name = argv[0]; *s != '\0';) {
73 if (*s++ == '/')
74 applet_name = s;
75 }
76
77#ifdef BB_SH
78 /* Add in a special case hack -- whenever **argv == '-'
79 * (i.e. '-su' or '-sh') always invoke the shell */
80 if (**argv == '-' && *(*argv+1)!= '-') {
Eric Andersenba372622001-03-20 17:39:53 +000081 applet_name = "sh";
Eric Andersenf5d5e772001-01-24 23:34:48 +000082 }
83#endif
84
Eric Andersene5dfced2001-04-09 22:48:12 +000085#ifdef BB_LOCALE_SUPPORT
86 if(getpid()!=1) /* Do not set locale for `init' */
87 setlocale(LC_ALL, "");
88#endif
89
Eric Andersen67991cf2001-02-14 21:23:06 +000090 run_applet_by_name(applet_name, argc, argv);
Matt Kraaidd19c692001-01-31 19:00:21 +000091 error_msg_and_die("applet not found");
Eric Andersenf5d5e772001-01-24 23:34:48 +000092}
93
94
95int busybox_main(int argc, char **argv)
96{
97 int col = 0, len, i;
Eric Andersencc8ed391999-10-05 16:24:54 +000098
John Beppu8f425db2000-06-27 04:50:02 +000099#ifdef BB_FEATURE_INSTALLER
John Beppu27b59242000-06-27 04:56:45 +0000100 /*
101 * This style of argument parsing doesn't scale well
102 * in the event that busybox starts wanting more --options.
103 * If someone has a cleaner approach, by all means implement it.
104 */
John Beppu8f425db2000-06-27 04:50:02 +0000105 if (argc > 1 && (strcmp(argv[1], "--install") == 0)) {
106 int use_symbolic_links = 0;
John Beppu7cdc76d2000-06-28 00:41:26 +0000107 int rc = 0;
108 char *busybox;
John Beppu8f425db2000-06-27 04:50:02 +0000109
John Beppu27b59242000-06-27 04:56:45 +0000110 /* to use symlinks, or not to use symlinks... */
John Beppu8f425db2000-06-27 04:50:02 +0000111 if (argc > 2) {
112 if ((strcmp(argv[2], "-s") == 0)) {
113 use_symbolic_links = 1;
114 }
115 }
John Beppu7cdc76d2000-06-28 00:41:26 +0000116
117 /* link */
118 busybox = busybox_fullpath();
119 if (busybox) {
120 install_links(busybox, use_symbolic_links);
121 free(busybox);
122 } else {
123 rc = 1;
124 }
125 return rc;
John Beppu8f425db2000-06-27 04:50:02 +0000126 }
127#endif /* BB_FEATURE_INSTALLER */
128
Erik Andersene49d5ec2000-02-08 19:58:47 +0000129 argc--;
Eric Andersencc8ed391999-10-05 16:24:54 +0000130
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000131 /* If we've already been here once, exit now */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132 if (been_there_done_that == 1 || argc < 1) {
Erik Andersenbcd61772000-05-13 06:33:19 +0000133 const struct BB_applet *a = applets;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000135 fprintf(stderr, "%s\n\n"
Erik Andersen330fd2b2000-05-19 05:35:19 +0000136 "Usage: busybox [function] [arguments]...\n"
137 " or: [function] [arguments]...\n\n"
John Beppub4f86062000-04-13 03:36:01 +0000138 "\tBusyBox is a multi-call binary that combines many common Unix\n"
139 "\tutilities into a single executable. Most people will create a\n"
140 "\tlink to busybox for each function they wish to use, and BusyBox\n"
Erik Andersen330fd2b2000-05-19 05:35:19 +0000141 "\twill act like whatever it was invoked as.\n"
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000142 "\nCurrently defined functions:\n", full_version);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143
144 while (a->name != 0) {
145 col +=
146 fprintf(stderr, "%s%s", ((col == 0) ? "\t" : ", "),
147 (a++)->name);
148 if (col > 60 && a->name != 0) {
149 fprintf(stderr, ",\n");
150 col = 0;
151 }
152 }
153 fprintf(stderr, "\n\n");
Mark Whitley01677182001-03-02 17:47:17 +0000154 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000155 }
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000156
157 /* Flag that we've been here already */
Eric Andersenb6106152000-06-19 17:25:40 +0000158 been_there_done_that = 1;
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000159
Matt Kraai8abc78a2000-12-15 00:35:22 +0000160 /* Move the command line down a notch */
161 len = argv[argc] + strlen(argv[argc]) - argv[1];
162 memmove(argv[0], argv[1], len);
163 memset(argv[0] + len, 0, argv[1] - argv[0]);
164
165 /* Fix up the argv pointers */
166 len = argv[1] - argv[0];
Eric Andersen90ca2842001-01-27 08:32:57 +0000167 memmove(argv, argv + 1, sizeof(char *) * (argc + 1));
Matt Kraai8abc78a2000-12-15 00:35:22 +0000168 for (i = 0; i < argc; i++)
169 argv[i] -= len;
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000170
Eric Andersenb6106152000-06-19 17:25:40 +0000171 return (main(argc, argv));
Eric Andersencc8ed391999-10-05 16:24:54 +0000172}
Erik Andersen029011b2000-03-04 21:19:32 +0000173
174/*
175Local Variables:
176c-file-style: "linux"
177c-basic-offset: 4
178tab-width: 4
179End:
180*/