blob: 4f1ef26617b169128ebe825ec7527ecb24a61f9d [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 Andersenbdfd0d72001-10-24 05:00:29 +00008#ifdef CONFIG_LOCALE_SUPPORT
Eric Andersene5dfced2001-04-09 22:48:12 +00009#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
Eric Andersenbdfd0d72001-10-24 05:00:29 +000015#ifdef CONFIG_FEATURE_INSTALLER
John Beppu8f425db2000-06-27 04:50:02 +000016/*
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 */
Eric Andersenfcffa2c2002-04-06 05:17:57 +000021static const char usr_bin [] ="/usr/bin";
22static const char usr_sbin[] ="/usr/sbin";
23
24static const char* const install_dir[] = {
25 &usr_bin [8], /* "", equivalent to "/" for concat_path_file() */
26 &usr_bin [4], /* "/bin" */
27 &usr_sbin[4], /* "/sbin" */
28 usr_bin,
29 usr_sbin
John Beppu8f425db2000-06-27 04:50:02 +000030};
31
32/* abstract link() */
33typedef int (*__link_f)(const char *, const char *);
34
John Beppu7cdc76d2000-06-28 00:41:26 +000035/*
36 * Where in the filesystem is this busybox?
37 * [return]
38 * malloc'd string w/ full pathname of busybox's location
39 * NULL on failure
40 */
Eric Andersenfcffa2c2002-04-06 05:17:57 +000041static inline char *busybox_fullpath(void)
John Beppu7cdc76d2000-06-28 00:41:26 +000042{
Eric Andersen28355a32001-05-07 17:48:28 +000043 return xreadlink("/proc/self/exe");
John Beppu7cdc76d2000-06-28 00:41:26 +000044}
45
John Beppu8f425db2000-06-27 04:50:02 +000046/* create (sym)links for each applet */
Eric Andersenc5949f62000-09-25 20:35:54 +000047static void install_links(const char *busybox, int use_symbolic_links)
John Beppu8f425db2000-06-27 04:50:02 +000048{
John Beppueb028332000-06-28 00:55:31 +000049 __link_f Link = link;
John Beppu8f425db2000-06-27 04:50:02 +000050
Eric Andersene5dfced2001-04-09 22:48:12 +000051 char *fpc;
John Beppueb028332000-06-28 00:55:31 +000052 int i;
Eric Andersenc5949f62000-09-25 20:35:54 +000053 int rc;
John Beppu8f425db2000-06-27 04:50:02 +000054
Eric Andersen90ca2842001-01-27 08:32:57 +000055 if (use_symbolic_links)
56 Link = symlink;
John Beppu8f425db2000-06-27 04:50:02 +000057
John Beppueb028332000-06-28 00:55:31 +000058 for (i = 0; applets[i].name != NULL; i++) {
Eric Andersene5dfced2001-04-09 22:48:12 +000059 fpc = concat_path_file(
60 install_dir[applets[i].location], applets[i].name);
61 rc = Link(busybox, fpc);
62 if (rc!=0 && errno!=EEXIST) {
63 perror_msg("%s", fpc);
John Beppu8f425db2000-06-27 04:50:02 +000064 }
Eric Andersene5dfced2001-04-09 22:48:12 +000065 free(fpc);
John Beppueb028332000-06-28 00:55:31 +000066 }
John Beppu8f425db2000-06-27 04:50:02 +000067}
68
Eric Andersenbdfd0d72001-10-24 05:00:29 +000069#endif /* CONFIG_FEATURE_INSTALLER */
John Beppu8f425db2000-06-27 04:50:02 +000070
Eric Andersencc8ed391999-10-05 16:24:54 +000071int main(int argc, char **argv)
72{
Matt Kraaif2cc2762001-02-01 19:21:20 +000073 const char *s;
Eric Andersenf5d5e772001-01-24 23:34:48 +000074
Matt Kraai449377a2001-08-27 15:02:32 +000075 applet_name = argv[0];
76
77 if (applet_name[0] == '-')
78 applet_name++;
79
80 for (s = applet_name; *s != '\0';) {
Eric Andersenf5d5e772001-01-24 23:34:48 +000081 if (*s++ == '/')
82 applet_name = s;
83 }
84
Eric Andersenbdfd0d72001-10-24 05:00:29 +000085#ifdef CONFIG_LOCALE_SUPPORT
86#ifdef CONFIG_INIT
Eric Andersene5dfced2001-04-09 22:48:12 +000087 if(getpid()!=1) /* Do not set locale for `init' */
Eric Andersen4819c3d2001-05-13 00:33:16 +000088#endif
89 {
Eric Andersene5dfced2001-04-09 22:48:12 +000090 setlocale(LC_ALL, "");
Eric Andersen4819c3d2001-05-13 00:33:16 +000091 }
Eric Andersene5dfced2001-04-09 22:48:12 +000092#endif
93
Eric Andersen67991cf2001-02-14 21:23:06 +000094 run_applet_by_name(applet_name, argc, argv);
Matt Kraaidd19c692001-01-31 19:00:21 +000095 error_msg_and_die("applet not found");
Eric Andersenf5d5e772001-01-24 23:34:48 +000096}
97
98
99int busybox_main(int argc, char **argv)
100{
101 int col = 0, len, i;
Eric Andersencc8ed391999-10-05 16:24:54 +0000102
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000103#ifdef CONFIG_FEATURE_INSTALLER
John Beppu27b59242000-06-27 04:56:45 +0000104 /*
105 * This style of argument parsing doesn't scale well
106 * in the event that busybox starts wanting more --options.
107 * If someone has a cleaner approach, by all means implement it.
108 */
John Beppu8f425db2000-06-27 04:50:02 +0000109 if (argc > 1 && (strcmp(argv[1], "--install") == 0)) {
110 int use_symbolic_links = 0;
John Beppu7cdc76d2000-06-28 00:41:26 +0000111 int rc = 0;
112 char *busybox;
John Beppu8f425db2000-06-27 04:50:02 +0000113
John Beppu27b59242000-06-27 04:56:45 +0000114 /* to use symlinks, or not to use symlinks... */
John Beppu8f425db2000-06-27 04:50:02 +0000115 if (argc > 2) {
116 if ((strcmp(argv[2], "-s") == 0)) {
117 use_symbolic_links = 1;
118 }
119 }
John Beppu7cdc76d2000-06-28 00:41:26 +0000120
121 /* link */
122 busybox = busybox_fullpath();
123 if (busybox) {
124 install_links(busybox, use_symbolic_links);
125 free(busybox);
126 } else {
127 rc = 1;
128 }
129 return rc;
John Beppu8f425db2000-06-27 04:50:02 +0000130 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000131#endif /* CONFIG_FEATURE_INSTALLER */
John Beppu8f425db2000-06-27 04:50:02 +0000132
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 argc--;
Eric Andersencc8ed391999-10-05 16:24:54 +0000134
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000135 /* If we've already been here once, exit now */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 if (been_there_done_that == 1 || argc < 1) {
Erik Andersenbcd61772000-05-13 06:33:19 +0000137 const struct BB_applet *a = applets;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000139 fprintf(stderr, "%s\n\n"
Erik Andersen330fd2b2000-05-19 05:35:19 +0000140 "Usage: busybox [function] [arguments]...\n"
141 " or: [function] [arguments]...\n\n"
John Beppub4f86062000-04-13 03:36:01 +0000142 "\tBusyBox is a multi-call binary that combines many common Unix\n"
143 "\tutilities into a single executable. Most people will create a\n"
144 "\tlink to busybox for each function they wish to use, and BusyBox\n"
Erik Andersen330fd2b2000-05-19 05:35:19 +0000145 "\twill act like whatever it was invoked as.\n"
Pavel Roskin9c5fcc32000-07-17 23:45:12 +0000146 "\nCurrently defined functions:\n", full_version);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147
148 while (a->name != 0) {
149 col +=
150 fprintf(stderr, "%s%s", ((col == 0) ? "\t" : ", "),
151 (a++)->name);
152 if (col > 60 && a->name != 0) {
153 fprintf(stderr, ",\n");
154 col = 0;
155 }
156 }
157 fprintf(stderr, "\n\n");
Mark Whitley01677182001-03-02 17:47:17 +0000158 exit(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000159 }
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000160
161 /* Flag that we've been here already */
Eric Andersenb6106152000-06-19 17:25:40 +0000162 been_there_done_that = 1;
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000163
Matt Kraai8abc78a2000-12-15 00:35:22 +0000164 /* Move the command line down a notch */
165 len = argv[argc] + strlen(argv[argc]) - argv[1];
166 memmove(argv[0], argv[1], len);
167 memset(argv[0] + len, 0, argv[1] - argv[0]);
168
169 /* Fix up the argv pointers */
170 len = argv[1] - argv[0];
Eric Andersen90ca2842001-01-27 08:32:57 +0000171 memmove(argv, argv + 1, sizeof(char *) * (argc + 1));
Matt Kraai8abc78a2000-12-15 00:35:22 +0000172 for (i = 0; i < argc; i++)
173 argv[i] -= len;
Eric Andersen5e09b6e2000-12-08 19:03:12 +0000174
Eric Andersenb6106152000-06-19 17:25:40 +0000175 return (main(argc, argv));
Eric Andersencc8ed391999-10-05 16:24:54 +0000176}
Erik Andersen029011b2000-03-04 21:19:32 +0000177
178/*
179Local Variables:
180c-file-style: "linux"
181c-basic-offset: 4
182tab-width: 4
183End:
184*/