Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 3 | * Utility routines. |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 4 | * |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 5 | * Copyright (C) tons of folks. Tracking down who wrote what |
| 6 | * isn't something I'm going to worry about... If you wrote something |
| 7 | * here, please feel free to acknowledge your work. |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 8 | * |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 9 | * Based in part on code from sash, Copyright (c) 1999 by David I. Bell |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 10 | * Permission has been granted to redistribute this code under GPL. |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 11 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 12 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 13 | */ |
| 14 | |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 15 | /* We are trying to not use printf, this benefits the case when selected |
| 16 | * applets are really simple. Example: |
| 17 | * |
| 18 | * $ ./busybox |
| 19 | * ... |
| 20 | * Currently defined functions: |
| 21 | * basename, false, true |
| 22 | * |
| 23 | * $ size busybox |
| 24 | * text data bss dec hex filename |
| 25 | * 4473 52 72 4597 11f5 busybox |
| 26 | * |
| 27 | * FEATURE_INSTALLER or FEATURE_SUID will still link printf routines in. :( |
| 28 | */ |
Denys Vlasenko | c1947f1 | 2009-10-23 01:30:26 +0200 | [diff] [blame] | 29 | #include "busybox.h" |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 30 | |
Denys Vlasenko | 8da415e | 2010-12-05 01:30:14 +0100 | [diff] [blame] | 31 | #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 32 | || defined(__APPLE__) \ |
Denys Vlasenko | 8da415e | 2010-12-05 01:30:14 +0100 | [diff] [blame] | 33 | ) |
| 34 | # include <malloc.h> /* for mallopt */ |
| 35 | #endif |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 36 | |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 37 | |
| 38 | /* Declare <applet>_main() */ |
| 39 | #define PROTOTYPES |
| 40 | #include "applets.h" |
| 41 | #undef PROTOTYPES |
| 42 | |
Denis Vlasenko | 32b2a9f | 2008-02-22 22:43:22 +0000 | [diff] [blame] | 43 | /* Include generated applet names, pointers to <applet>_main, etc */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 44 | #include "applet_tables.h" |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 45 | /* ...and if applet_tables generator says we have only one applet... */ |
| 46 | #ifdef SINGLE_APPLET_MAIN |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 47 | # undef ENABLE_FEATURE_INDIVIDUAL |
| 48 | # define ENABLE_FEATURE_INDIVIDUAL 1 |
| 49 | # undef IF_FEATURE_INDIVIDUAL |
| 50 | # define IF_FEATURE_INDIVIDUAL(...) __VA_ARGS__ |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 51 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 52 | |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 53 | #include "usage_compressed.h" |
| 54 | |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 55 | |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 56 | #if ENABLE_SHOW_USAGE && !ENABLE_FEATURE_COMPRESS_USAGE |
| 57 | static const char usage_messages[] ALIGN1 = UNPACKED_USAGE; |
| 58 | #else |
| 59 | # define usage_messages 0 |
Denys Vlasenko | 1fcbff2 | 2010-06-26 02:40:08 +0200 | [diff] [blame] | 60 | #endif |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 61 | |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 62 | #if ENABLE_FEATURE_COMPRESS_USAGE |
| 63 | |
Denys Vlasenko | 5c296de | 2010-07-03 14:28:35 +0200 | [diff] [blame] | 64 | static const char packed_usage[] ALIGN1 = { PACKED_USAGE }; |
Denys Vlasenko | d184a72 | 2011-09-22 12:45:14 +0200 | [diff] [blame] | 65 | # include "bb_archive.h" |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 66 | static const char *unpack_usage_messages(void) |
| 67 | { |
| 68 | char *outbuf = NULL; |
| 69 | bunzip_data *bd; |
| 70 | int i; |
| 71 | |
| 72 | i = start_bunzip(&bd, |
| 73 | /* src_fd: */ -1, |
Denys Vlasenko | caddfc8 | 2010-10-28 23:08:53 +0200 | [diff] [blame] | 74 | /* inbuf: */ packed_usage, |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 75 | /* len: */ sizeof(packed_usage)); |
| 76 | /* read_bunzip can longjmp to start_bunzip, and ultimately |
| 77 | * end up here with i != 0 on read data errors! Not trivial */ |
| 78 | if (!i) { |
| 79 | /* Cannot use xmalloc: will leak bd in NOFORK case! */ |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 80 | outbuf = malloc_or_warn(sizeof(UNPACKED_USAGE)); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 81 | if (outbuf) |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 82 | read_bunzip(bd, outbuf, sizeof(UNPACKED_USAGE)); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 83 | } |
| 84 | dealloc_bunzip(bd); |
| 85 | return outbuf; |
| 86 | } |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 87 | # define dealloc_usage_messages(s) free(s) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 88 | |
| 89 | #else |
| 90 | |
Denys Vlasenko | 0e5ba08 | 2010-06-05 23:11:07 +0200 | [diff] [blame] | 91 | # define unpack_usage_messages() usage_messages |
| 92 | # define dealloc_usage_messages(s) ((void)(s)) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 93 | |
| 94 | #endif /* FEATURE_COMPRESS_USAGE */ |
| 95 | |
| 96 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 97 | void FAST_FUNC bb_show_usage(void) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 98 | { |
| 99 | if (ENABLE_SHOW_USAGE) { |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 100 | #ifdef SINGLE_APPLET_STR |
| 101 | /* Imagine that this applet is "true". Dont suck in printf! */ |
Lauri Kasanen | 2b662c5 | 2010-11-13 23:16:05 +0100 | [diff] [blame] | 102 | const char *usage_string = unpack_usage_messages(); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 103 | |
Lauri Kasanen | 2b662c5 | 2010-11-13 23:16:05 +0100 | [diff] [blame] | 104 | if (*usage_string == '\b') { |
Denis Vlasenko | 4240408 | 2008-11-24 13:42:24 +0000 | [diff] [blame] | 105 | full_write2_str("No help available.\n\n"); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 106 | } else { |
Denis Vlasenko | 4240408 | 2008-11-24 13:42:24 +0000 | [diff] [blame] | 107 | full_write2_str("Usage: "SINGLE_APPLET_STR" "); |
Lauri Kasanen | 2b662c5 | 2010-11-13 23:16:05 +0100 | [diff] [blame] | 108 | full_write2_str(usage_string); |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 109 | full_write2_str("\n\n"); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 110 | } |
Denys Vlasenko | 630dde1 | 2009-08-30 19:57:49 +0200 | [diff] [blame] | 111 | if (ENABLE_FEATURE_CLEAN_UP) |
| 112 | dealloc_usage_messages((char*)usage_string); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 113 | #else |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 114 | const char *p; |
| 115 | const char *usage_string = p = unpack_usage_messages(); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 116 | int ap = find_applet_by_name(applet_name); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 117 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 118 | if (ap < 0) /* never happens, paranoia */ |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 119 | xfunc_die(); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 120 | while (ap) { |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 121 | while (*p++) continue; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 122 | ap--; |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 123 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 124 | full_write2_str(bb_banner); |
Denys Vlasenko | 630dde1 | 2009-08-30 19:57:49 +0200 | [diff] [blame] | 125 | full_write2_str(" multi-call binary.\n"); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 126 | if (*p == '\b') |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 127 | full_write2_str("\nNo help available.\n\n"); |
| 128 | else { |
| 129 | full_write2_str("\nUsage: "); |
| 130 | full_write2_str(applet_name); |
| 131 | full_write2_str(" "); |
| 132 | full_write2_str(p); |
Denys Vlasenko | 7f4a49a | 2015-05-25 14:30:52 +0200 | [diff] [blame] | 133 | full_write2_str("\n"); |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 134 | } |
Denys Vlasenko | 630dde1 | 2009-08-30 19:57:49 +0200 | [diff] [blame] | 135 | if (ENABLE_FEATURE_CLEAN_UP) |
| 136 | dealloc_usage_messages((char*)usage_string); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 137 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 138 | } |
| 139 | xfunc_die(); |
| 140 | } |
| 141 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 142 | int FAST_FUNC find_applet_by_name(const char *name) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 143 | { |
Denys Vlasenko | a93e4fd | 2016-04-02 22:54:23 +0200 | [diff] [blame] | 144 | unsigned i, j, max; |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 145 | const char *p; |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 146 | |
Denys Vlasenko | a93e4fd | 2016-04-02 22:54:23 +0200 | [diff] [blame] | 147 | /* The commented-out word-at-a-time code is ~40% faster, but +160 bytes. |
| 148 | * "Faster" here saves ~0.5 microsecond of real time - not worth it. |
| 149 | */ |
| 150 | #if 0 /*BB_UNALIGNED_MEMACCESS_OK && BB_LITTLE_ENDIAN*/ |
| 151 | uint32_t n32; |
| 152 | |
| 153 | /* Handle all names < 2 chars long early */ |
| 154 | if (name[0] == '\0') |
| 155 | return -1; /* "" is not a valid applet name */ |
| 156 | if (name[1] == '\0') { |
| 157 | if (!ENABLE_TEST) |
| 158 | return -1; /* 1-char name is not valid */ |
| 159 | if (name[0] != ']') |
| 160 | return -1; /* 1-char name which isn't "[" is not valid */ |
| 161 | /* applet "[" is always applet #0: */ |
| 162 | return 0; |
| 163 | } |
| 164 | #endif |
| 165 | |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 166 | p = applet_names; |
| 167 | i = 0; |
| 168 | #if KNOWN_APPNAME_OFFSETS <= 0 |
| 169 | max = NUM_APPLETS; |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 170 | #else |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 171 | max = NUM_APPLETS * KNOWN_APPNAME_OFFSETS; |
| 172 | for (j = ARRAY_SIZE(applet_nameofs)-1; j >= 0; j--) { |
| 173 | const char *pp = applet_names + applet_nameofs[j]; |
| 174 | if (strcmp(name, pp) >= 0) { |
| 175 | //bb_error_msg("name:'%s' >= pp:'%s'", name, pp); |
| 176 | p = pp; |
| 177 | i = max - NUM_APPLETS; |
| 178 | break; |
| 179 | } |
| 180 | max -= NUM_APPLETS; |
| 181 | } |
| 182 | max /= (unsigned)KNOWN_APPNAME_OFFSETS; |
| 183 | i /= (unsigned)KNOWN_APPNAME_OFFSETS; |
| 184 | //bb_error_msg("name:'%s' starting from:'%s' i:%u max:%u", name, p, i, max); |
| 185 | #endif |
| 186 | |
Denys Vlasenko | 1cf68e3 | 2016-04-02 22:57:17 +0200 | [diff] [blame] | 187 | /* Open-coded linear search without strcmp/strlen calls for speed */ |
Denys Vlasenko | a93e4fd | 2016-04-02 22:54:23 +0200 | [diff] [blame] | 188 | |
| 189 | #if 0 /*BB_UNALIGNED_MEMACCESS_OK && BB_LITTLE_ENDIAN*/ |
| 190 | /* skip "[\0" name, it's surely not it */ |
| 191 | if (ENABLE_TEST && LONE_CHAR(p, '[')) |
| 192 | i++, p += 2; |
| 193 | /* All remaining applet names in p[] are at least 2 chars long */ |
| 194 | /* name[] is also at least 2 chars long */ |
| 195 | |
| 196 | n32 = (name[0] << 0) | (name[1] << 8) | (name[2] << 16); |
| 197 | while (i < max) { |
| 198 | uint32_t p32; |
| 199 | char ch; |
| 200 | |
| 201 | /* Quickly check match of the first 3 bytes */ |
| 202 | move_from_unaligned32(p32, p); |
| 203 | p += 3; |
| 204 | if ((p32 & 0x00ffffff) != n32) { |
| 205 | /* Most likely case: 3 first bytes do not match */ |
| 206 | i++; |
| 207 | if ((p32 & 0x00ff0000) == '\0') |
| 208 | continue; // p[2] was NUL |
| 209 | p++; |
| 210 | if ((p32 & 0xff000000) == '\0') |
| 211 | continue; // p[3] was NUL |
| 212 | /* p[0..3] aren't matching and none is NUL, check the rest */ |
| 213 | while (*p++ != '\0') |
| 214 | continue; |
| 215 | continue; |
| 216 | } |
| 217 | |
| 218 | /* Unlikely branch: first 3 bytes ([0..2]) match */ |
| 219 | if ((p32 & 0x00ff0000) == '\0') { |
| 220 | /* name is 2-byte long, it is full match */ |
| 221 | //bb_error_msg("found:'%s' i:%u", name, i); |
| 222 | return i; |
| 223 | } |
| 224 | /* Check remaining bytes [3..NUL] */ |
| 225 | ch = (p32 >> 24); |
| 226 | j = 3; |
| 227 | while (ch == name[j]) { |
| 228 | if (ch == '\0') { |
| 229 | //bb_error_msg("found:'%s' i:%u", name, i); |
| 230 | return i; |
| 231 | } |
| 232 | ch = *++p; |
| 233 | j++; |
| 234 | } |
| 235 | /* Not a match. Skip it, including NUL */ |
| 236 | while (ch != '\0') |
| 237 | ch = *++p; |
| 238 | p++; |
| 239 | i++; |
| 240 | } |
| 241 | return -1; |
| 242 | #else |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 243 | while (i < max) { |
| 244 | char ch; |
| 245 | j = 0; |
| 246 | /* Do we see "name\0" in applet_names[p] position? */ |
| 247 | while ((ch = *p) == name[j]) { |
| 248 | if (ch == '\0') { |
| 249 | //bb_error_msg("found:'%s' i:%u", name, i); |
| 250 | return i; /* yes */ |
| 251 | } |
| 252 | p++; |
| 253 | j++; |
| 254 | } |
| 255 | /* No. |
| 256 | * p => 1st non-matching char in applet_names[], |
| 257 | * skip to and including NUL. |
| 258 | */ |
| 259 | while (ch != '\0') |
| 260 | ch = *++p; |
| 261 | p++; |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 262 | i++; |
| 263 | } |
| 264 | return -1; |
Denys Vlasenko | a93e4fd | 2016-04-02 22:54:23 +0200 | [diff] [blame] | 265 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 269 | void lbb_prepare(const char *applet |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 270 | IF_FEATURE_INDIVIDUAL(, char **argv)) |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 271 | MAIN_EXTERNALLY_VISIBLE; |
| 272 | void lbb_prepare(const char *applet |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 273 | IF_FEATURE_INDIVIDUAL(, char **argv)) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 274 | { |
| 275 | #ifdef __GLIBC__ |
| 276 | (*(int **)&bb_errno) = __errno_location(); |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 277 | barrier(); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 278 | #endif |
Denis Vlasenko | 15cb4a4 | 2007-10-11 10:06:26 +0000 | [diff] [blame] | 279 | applet_name = applet; |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 280 | |
Denys Vlasenko | 45b4ecc | 2014-08-11 20:33:18 +0200 | [diff] [blame] | 281 | if (ENABLE_LOCALE_SUPPORT) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 282 | setlocale(LC_ALL, ""); |
| 283 | |
Denis Vlasenko | 82d38da | 2007-10-10 14:38:47 +0000 | [diff] [blame] | 284 | #if ENABLE_FEATURE_INDIVIDUAL |
| 285 | /* Redundant for busybox (run_applet_and_exit covers that case) |
| 286 | * but needed for "individual applet" mode */ |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 287 | if (argv[1] |
| 288 | && !argv[2] |
| 289 | && strcmp(argv[1], "--help") == 0 |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 290 | && !is_prefixed_with(applet, "busybox") |
Denys Vlasenko | 9297dbc | 2010-07-05 21:37:12 +0200 | [diff] [blame] | 291 | ) { |
Denis Vlasenko | bd28f6b | 2008-07-19 08:15:13 +0000 | [diff] [blame] | 292 | /* Special case. POSIX says "test --help" |
| 293 | * should be no different from e.g. "test --foo". */ |
| 294 | if (!ENABLE_TEST || strcmp(applet_name, "test") != 0) |
| 295 | bb_show_usage(); |
| 296 | } |
Denis Vlasenko | 82d38da | 2007-10-10 14:38:47 +0000 | [diff] [blame] | 297 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 298 | } |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 299 | |
| 300 | /* The code below can well be in applets/applets.c, as it is used only |
| 301 | * for busybox binary, not "individual" binaries. |
| 302 | * However, keeping it here and linking it into libbusybox.so |
| 303 | * (together with remaining tiny applets/applets.o) |
| 304 | * makes it possible to avoid --whole-archive at link time. |
| 305 | * This makes (shared busybox) + libbusybox smaller. |
| 306 | * (--gc-sections would be even better....) |
| 307 | */ |
| 308 | |
| 309 | const char *applet_name; |
| 310 | #if !BB_MMU |
| 311 | bool re_execed; |
| 312 | #endif |
| 313 | |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 314 | |
Denis Vlasenko | 10f6fb1 | 2008-04-29 00:10:27 +0000 | [diff] [blame] | 315 | /* If not built as a single-applet executable... */ |
| 316 | #if !defined(SINGLE_APPLET_MAIN) |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 317 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 318 | IF_FEATURE_SUID(static uid_t ruid;) /* real uid */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 319 | |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 320 | # if ENABLE_FEATURE_SUID_CONFIG |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 321 | |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 322 | static struct suid_config_t { |
| 323 | /* next ptr must be first: this struct needs to be llist-compatible */ |
| 324 | struct suid_config_t *m_next; |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 325 | struct bb_uidgid_t m_ugid; |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 326 | int m_applet; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 327 | mode_t m_mode; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 328 | } *suid_config; |
| 329 | |
| 330 | static bool suid_cfg_readable; |
| 331 | |
| 332 | /* check if u is member of group g */ |
| 333 | static int ingroup(uid_t u, gid_t g) |
| 334 | { |
| 335 | struct group *grp = getgrgid(g); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 336 | if (grp) { |
| 337 | char **mem; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 338 | for (mem = grp->gr_mem; *mem; mem++) { |
| 339 | struct passwd *pwd = getpwnam(*mem); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 340 | if (pwd && (pwd->pw_uid == u)) |
| 341 | return 1; |
| 342 | } |
| 343 | } |
| 344 | return 0; |
| 345 | } |
| 346 | |
Denys Vlasenko | d83aff1 | 2011-05-16 13:53:19 +0200 | [diff] [blame] | 347 | /* libbb candidate */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 348 | static char *get_trimmed_slice(char *s, char *e) |
| 349 | { |
| 350 | /* First, consider the value at e to be nul and back up until we |
| 351 | * reach a non-space char. Set the char after that (possibly at |
| 352 | * the original e) to nul. */ |
| 353 | while (e-- > s) { |
| 354 | if (!isspace(*e)) { |
| 355 | break; |
| 356 | } |
| 357 | } |
| 358 | e[1] = '\0'; |
| 359 | |
| 360 | /* Next, advance past all leading space and return a ptr to the |
| 361 | * first non-space char; possibly the terminating nul. */ |
| 362 | return skip_whitespace(s); |
| 363 | } |
| 364 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 365 | static void parse_config_file(void) |
| 366 | { |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 367 | /* Don't depend on the tools to combine strings. */ |
| 368 | static const char config_file[] ALIGN1 = "/etc/busybox.conf"; |
| 369 | |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 370 | struct suid_config_t *sct_head; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 371 | int applet_no; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 372 | FILE *f; |
| 373 | const char *errmsg; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 374 | unsigned lc; |
| 375 | smallint section; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 376 | struct stat st; |
| 377 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 378 | ruid = getuid(); |
| 379 | if (ruid == 0) /* run by root - don't need to even read config file */ |
| 380 | return; |
| 381 | |
| 382 | if ((stat(config_file, &st) != 0) /* No config file? */ |
| 383 | || !S_ISREG(st.st_mode) /* Not a regular file? */ |
| 384 | || (st.st_uid != 0) /* Not owned by root? */ |
| 385 | || (st.st_mode & (S_IWGRP | S_IWOTH)) /* Writable by non-root? */ |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 386 | || !(f = fopen_for_read(config_file)) /* Cannot open? */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 387 | ) { |
| 388 | return; |
| 389 | } |
| 390 | |
| 391 | suid_cfg_readable = 1; |
| 392 | sct_head = NULL; |
| 393 | section = lc = 0; |
| 394 | |
| 395 | while (1) { |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 396 | char buffer[256]; |
| 397 | char *s; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 398 | |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 399 | if (!fgets(buffer, sizeof(buffer), f)) { /* Are we done? */ |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 400 | // Looks like bloat |
| 401 | //if (ferror(f)) { /* Make sure it wasn't a read error. */ |
| 402 | // errmsg = "reading"; |
| 403 | // goto pe_label; |
| 404 | //} |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 405 | fclose(f); |
| 406 | suid_config = sct_head; /* Success, so set the pointer. */ |
| 407 | return; |
| 408 | } |
| 409 | |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 410 | s = buffer; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 411 | lc++; /* Got a (partial) line. */ |
| 412 | |
| 413 | /* If a line is too long for our buffer, we consider it an error. |
| 414 | * The following test does mistreat one corner case though. |
| 415 | * If the final line of the file does not end with a newline and |
| 416 | * yet exactly fills the buffer, it will be treated as too long |
| 417 | * even though there isn't really a problem. But it isn't really |
| 418 | * worth adding code to deal with such an unlikely situation, and |
| 419 | * we do err on the side of caution. Besides, the line would be |
| 420 | * too long if it did end with a newline. */ |
| 421 | if (!strchr(s, '\n') && !feof(f)) { |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 422 | errmsg = "line too long"; |
| 423 | goto pe_label; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | /* Trim leading and trailing whitespace, ignoring comments, and |
| 427 | * check if the resulting string is empty. */ |
| 428 | s = get_trimmed_slice(s, strchrnul(s, '#')); |
| 429 | if (!*s) { |
| 430 | continue; |
| 431 | } |
| 432 | |
| 433 | /* Check for a section header. */ |
| 434 | |
| 435 | if (*s == '[') { |
| 436 | /* Unlike the old code, we ignore leading and trailing |
| 437 | * whitespace for the section name. We also require that |
| 438 | * there are no stray characters after the closing bracket. */ |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 439 | char *e = strchr(s, ']'); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 440 | if (!e /* Missing right bracket? */ |
| 441 | || e[1] /* Trailing characters? */ |
| 442 | || !*(s = get_trimmed_slice(s+1, e)) /* Missing name? */ |
| 443 | ) { |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 444 | errmsg = "section header"; |
| 445 | goto pe_label; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 446 | } |
| 447 | /* Right now we only have one section so just check it. |
| 448 | * If more sections are added in the future, please don't |
| 449 | * resort to cascading ifs with multiple strcasecmp calls. |
| 450 | * That kind of bloated code is all too common. A loop |
| 451 | * and a string table would be a better choice unless the |
| 452 | * number of sections is very small. */ |
| 453 | if (strcasecmp(s, "SUID") == 0) { |
| 454 | section = 1; |
| 455 | continue; |
| 456 | } |
| 457 | section = -1; /* Unknown section so set to skip. */ |
| 458 | continue; |
| 459 | } |
| 460 | |
| 461 | /* Process sections. */ |
| 462 | |
| 463 | if (section == 1) { /* SUID */ |
| 464 | /* Since we trimmed leading and trailing space above, we're |
| 465 | * now looking for strings of the form |
| 466 | * <key>[::space::]*=[::space::]*<value> |
| 467 | * where both key and value could contain inner whitespace. */ |
| 468 | |
| 469 | /* First get the key (an applet name in our case). */ |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 470 | char *e = strchr(s, '='); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 471 | if (e) { |
| 472 | s = get_trimmed_slice(s, e); |
| 473 | } |
| 474 | if (!e || !*s) { /* Missing '=' or empty key. */ |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 475 | errmsg = "keyword"; |
| 476 | goto pe_label; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /* Ok, we have an applet name. Process the rhs if this |
| 480 | * applet is currently built in and ignore it otherwise. |
| 481 | * Note: this can hide config file bugs which only pop |
| 482 | * up when the busybox configuration is changed. */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 483 | applet_no = find_applet_by_name(s); |
| 484 | if (applet_no >= 0) { |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 485 | unsigned i; |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 486 | struct suid_config_t *sct; |
| 487 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 488 | /* Note: We currently don't check for duplicates! |
| 489 | * The last config line for each applet will be the |
| 490 | * one used since we insert at the head of the list. |
| 491 | * I suppose this could be considered a feature. */ |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 492 | sct = xzalloc(sizeof(*sct)); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 493 | sct->m_applet = applet_no; |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 494 | /*sct->m_mode = 0;*/ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 495 | sct->m_next = sct_head; |
| 496 | sct_head = sct; |
| 497 | |
| 498 | /* Get the specified mode. */ |
| 499 | |
| 500 | e = skip_whitespace(e+1); |
| 501 | |
| 502 | for (i = 0; i < 3; i++) { |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 503 | /* There are 4 chars for each of user/group/other. |
| 504 | * "x-xx" instead of "x-" are to make |
| 505 | * "idx > 3" check catch invalid chars. |
| 506 | */ |
| 507 | static const char mode_chars[] ALIGN1 = "Ssx-" "Ssx-" "x-xx"; |
| 508 | static const unsigned short mode_mask[] ALIGN2 = { |
| 509 | S_ISUID, S_ISUID|S_IXUSR, S_IXUSR, 0, /* Ssx- */ |
| 510 | S_ISGID, S_ISGID|S_IXGRP, S_IXGRP, 0, /* Ssx- */ |
| 511 | S_IXOTH, 0 /* x- */ |
| 512 | }; |
| 513 | const char *q = strchrnul(mode_chars + 4*i, *e); |
| 514 | unsigned idx = q - (mode_chars + 4*i); |
| 515 | if (idx > 3) { |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 516 | errmsg = "mode"; |
| 517 | goto pe_label; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 518 | } |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 519 | sct->m_mode |= mode_mask[q - mode_chars]; |
| 520 | e++; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Marek Polacek | b0b8884 | 2011-04-16 17:33:43 +0200 | [diff] [blame] | 523 | /* Now get the user/group info. */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 524 | |
| 525 | s = skip_whitespace(e); |
Denys Vlasenko | 351fec3 | 2011-05-16 14:30:26 +0200 | [diff] [blame] | 526 | /* Default is 0.0, else parse USER.GROUP: */ |
| 527 | if (*s) { |
| 528 | /* We require whitespace between mode and USER.GROUP */ |
| 529 | if ((s == e) || !(e = strchr(s, '.'))) { |
| 530 | errmsg = "uid.gid"; |
| 531 | goto pe_label; |
| 532 | } |
| 533 | *e = ':'; /* get_uidgid needs USER:GROUP syntax */ |
Denys Vlasenko | 526d858 | 2015-10-19 04:27:17 +0200 | [diff] [blame] | 534 | if (get_uidgid(&sct->m_ugid, s) == 0) { |
Denys Vlasenko | 351fec3 | 2011-05-16 14:30:26 +0200 | [diff] [blame] | 535 | errmsg = "unknown user/group"; |
| 536 | goto pe_label; |
| 537 | } |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | continue; |
| 541 | } |
| 542 | |
| 543 | /* Unknown sections are ignored. */ |
| 544 | |
| 545 | /* Encountering configuration lines prior to seeing a |
| 546 | * section header is treated as an error. This is how |
| 547 | * the old code worked, but it may not be desirable. |
| 548 | * We may want to simply ignore such lines in case they |
| 549 | * are used in some future version of busybox. */ |
| 550 | if (!section) { |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 551 | errmsg = "keyword outside section"; |
| 552 | goto pe_label; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 553 | } |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 554 | } /* while (1) */ |
| 555 | |
| 556 | pe_label: |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 557 | fclose(f); |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 558 | bb_error_msg("parse error in %s, line %u: %s", config_file, lc, errmsg); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 559 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 560 | /* Release any allocated memory before returning. */ |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 561 | llist_free((llist_t*)sct_head, NULL); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 562 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 563 | # else |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 564 | static inline void parse_config_file(void) |
| 565 | { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 566 | IF_FEATURE_SUID(ruid = getuid();) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 567 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 568 | # endif /* FEATURE_SUID_CONFIG */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 569 | |
| 570 | |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 571 | # if ENABLE_FEATURE_SUID |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 572 | static void check_suid(int applet_no) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 573 | { |
| 574 | gid_t rgid; /* real gid */ |
| 575 | |
| 576 | if (ruid == 0) /* set by parse_config_file() */ |
| 577 | return; /* run by root - no need to check more */ |
| 578 | rgid = getgid(); |
| 579 | |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 580 | # if ENABLE_FEATURE_SUID_CONFIG |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 581 | if (suid_cfg_readable) { |
| 582 | uid_t uid; |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 583 | struct suid_config_t *sct; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 584 | mode_t m; |
| 585 | |
| 586 | for (sct = suid_config; sct; sct = sct->m_next) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 587 | if (sct->m_applet == applet_no) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 588 | goto found; |
| 589 | } |
Denis Vlasenko | 15ca51e | 2007-10-29 19:25:45 +0000 | [diff] [blame] | 590 | goto check_need_suid; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 591 | found: |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 592 | /* Is this user allowed to run this applet? */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 593 | m = sct->m_mode; |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 594 | if (sct->m_ugid.uid == ruid) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 595 | /* same uid */ |
| 596 | m >>= 6; |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 597 | else if ((sct->m_ugid.gid == rgid) || ingroup(ruid, sct->m_ugid.gid)) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 598 | /* same group / in group */ |
| 599 | m >>= 3; |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 600 | if (!(m & S_IXOTH)) /* is x bit not set? */ |
Denys Vlasenko | d83aff1 | 2011-05-16 13:53:19 +0200 | [diff] [blame] | 601 | bb_error_msg_and_die("you have no permission to run this applet"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 602 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 603 | /* We set effective AND saved ids. If saved-id is not set |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 604 | * like we do below, seteuid(0) can still later succeed! */ |
| 605 | |
| 606 | /* Are we directed to change gid |
| 607 | * (APPLET = *s* USER.GROUP or APPLET = *S* USER.GROUP)? |
| 608 | */ |
| 609 | if (sct->m_mode & S_ISGID) |
| 610 | rgid = sct->m_ugid.gid; |
| 611 | /* else: we will set egid = rgid, thus dropping sgid effect */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 612 | if (setresgid(-1, rgid, rgid)) |
| 613 | bb_perror_msg_and_die("setresgid"); |
| 614 | |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 615 | /* Are we directed to change uid |
| 616 | * (APPLET = s** USER.GROUP or APPLET = S** USER.GROUP)? |
| 617 | */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 618 | uid = ruid; |
| 619 | if (sct->m_mode & S_ISUID) |
Denys Vlasenko | 4566e17 | 2011-05-16 00:01:08 +0200 | [diff] [blame] | 620 | uid = sct->m_ugid.uid; |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 621 | /* else: we will set euid = ruid, thus dropping suid effect */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 622 | if (setresuid(-1, uid, uid)) |
| 623 | bb_perror_msg_and_die("setresuid"); |
Denys Vlasenko | 3770b6b | 2011-05-16 13:19:25 +0200 | [diff] [blame] | 624 | |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 625 | goto ret; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 626 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 627 | # if !ENABLE_FEATURE_SUID_CONFIG_QUIET |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 628 | { |
| 629 | static bool onetime = 0; |
| 630 | |
| 631 | if (!onetime) { |
| 632 | onetime = 1; |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 633 | bb_error_msg("using fallback suid method"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 634 | } |
| 635 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 636 | # endif |
Denis Vlasenko | 15ca51e | 2007-10-29 19:25:45 +0000 | [diff] [blame] | 637 | check_need_suid: |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 638 | # endif |
Denys Vlasenko | b9f2d9f | 2011-01-18 13:58:01 +0100 | [diff] [blame] | 639 | if (APPLET_SUID(applet_no) == BB_SUID_REQUIRE) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 640 | /* Real uid is not 0. If euid isn't 0 too, suid bit |
| 641 | * is most probably not set on our executable */ |
| 642 | if (geteuid()) |
Denis Vlasenko | 15ca51e | 2007-10-29 19:25:45 +0000 | [diff] [blame] | 643 | bb_error_msg_and_die("must be suid to work properly"); |
Denys Vlasenko | b9f2d9f | 2011-01-18 13:58:01 +0100 | [diff] [blame] | 644 | } else if (APPLET_SUID(applet_no) == BB_SUID_DROP) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 645 | xsetgid(rgid); /* drop all privileges */ |
| 646 | xsetuid(ruid); |
| 647 | } |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 648 | # if ENABLE_FEATURE_SUID_CONFIG |
Cristian Ionescu-Idbohrn | ea137aa | 2011-05-20 03:52:36 +0200 | [diff] [blame] | 649 | ret: ; |
Denys Vlasenko | 9be4702 | 2011-05-16 12:21:31 +0200 | [diff] [blame] | 650 | llist_free((llist_t*)suid_config, NULL); |
| 651 | # endif |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 652 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 653 | # else |
| 654 | # define check_suid(x) ((void)0) |
| 655 | # endif /* FEATURE_SUID */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 656 | |
| 657 | |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 658 | # if ENABLE_FEATURE_INSTALLER |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 659 | static const char usr_bin [] ALIGN1 = "/usr/bin/"; |
| 660 | static const char usr_sbin[] ALIGN1 = "/usr/sbin/"; |
| 661 | static const char *const install_dir[] = { |
| 662 | &usr_bin [8], /* "/" */ |
| 663 | &usr_bin [4], /* "/bin/" */ |
Denys Vlasenko | d4d289a | 2010-10-12 04:18:05 +0200 | [diff] [blame] | 664 | &usr_sbin[4] /* "/sbin/" */ |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 665 | # if !ENABLE_INSTALL_NO_USR |
Denys Vlasenko | d4d289a | 2010-10-12 04:18:05 +0200 | [diff] [blame] | 666 | ,usr_bin |
| 667 | ,usr_sbin |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 668 | # endif |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 669 | }; |
| 670 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 671 | /* create (sym)links for each applet */ |
Denys Vlasenko | 3b40543 | 2009-07-15 00:35:34 +0200 | [diff] [blame] | 672 | static void install_links(const char *busybox, int use_symbolic_links, |
| 673 | char *custom_install_dir) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 674 | { |
| 675 | /* directory table |
| 676 | * this should be consistent w/ the enum, |
| 677 | * busybox.h::bb_install_loc_t, or else... */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 678 | int (*lf)(const char *, const char *); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 679 | char *fpc; |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 680 | const char *appname = applet_names; |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 681 | unsigned i; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 682 | int rc; |
| 683 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 684 | lf = link; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 685 | if (use_symbolic_links) |
| 686 | lf = symlink; |
| 687 | |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 688 | for (i = 0; i < ARRAY_SIZE(applet_main); i++) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 689 | fpc = concat_path_file( |
Denys Vlasenko | 3b40543 | 2009-07-15 00:35:34 +0200 | [diff] [blame] | 690 | custom_install_dir ? custom_install_dir : install_dir[APPLET_INSTALL_LOC(i)], |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 691 | appname); |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 692 | // debug: bb_error_msg("%slinking %s to busybox", |
| 693 | // use_symbolic_links ? "sym" : "", fpc); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 694 | rc = lf(busybox, fpc); |
| 695 | if (rc != 0 && errno != EEXIST) { |
| 696 | bb_simple_perror_msg(fpc); |
| 697 | } |
| 698 | free(fpc); |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 699 | while (*appname++ != '\0') |
| 700 | continue; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 701 | } |
| 702 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 703 | # else |
Mike Frysinger | f1999b5 | 2014-01-31 00:29:47 -0500 | [diff] [blame] | 704 | static void install_links(const char *busybox UNUSED_PARAM, |
| 705 | int use_symbolic_links UNUSED_PARAM, |
| 706 | char *custom_install_dir UNUSED_PARAM) |
| 707 | { |
| 708 | } |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 709 | # endif |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 710 | |
| 711 | /* If we were called as "busybox..." */ |
| 712 | static int busybox_main(char **argv) |
| 713 | { |
| 714 | if (!argv[1]) { |
| 715 | /* Called without arguments */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 716 | const char *a; |
Denys Vlasenko | 0149f02 | 2009-05-19 18:01:42 +0200 | [diff] [blame] | 717 | int col; |
| 718 | unsigned output_width; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 719 | help: |
| 720 | output_width = 80; |
| 721 | if (ENABLE_FEATURE_AUTOWIDTH) { |
| 722 | /* Obtain the terminal width */ |
Denys Vlasenko | 641caae | 2015-10-23 01:44:22 +0200 | [diff] [blame] | 723 | output_width = get_terminal_width(2); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 724 | } |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 725 | |
Denis Vlasenko | 21278df | 2008-06-25 12:15:46 +0000 | [diff] [blame] | 726 | dup2(1, 2); |
Denys Vlasenko | 630dde1 | 2009-08-30 19:57:49 +0200 | [diff] [blame] | 727 | full_write2_str(bb_banner); /* reuse const string */ |
| 728 | full_write2_str(" multi-call binary.\n"); /* reuse */ |
| 729 | full_write2_str( |
Aaro Koskinen | 7b729ed | 2015-04-02 00:55:17 +0300 | [diff] [blame] | 730 | "BusyBox is copyrighted by many authors between 1998-2015.\n" |
Bradley M. Kuhn | 0e941d5 | 2012-07-13 11:38:38 -0400 | [diff] [blame] | 731 | "Licensed under GPLv2. See source distribution for detailed\n" |
| 732 | "copyright notices.\n" |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 733 | "\n" |
Denys Vlasenko | 02b8b9b | 2012-05-14 23:52:57 +0200 | [diff] [blame] | 734 | "Usage: busybox [function [arguments]...]\n" |
Denys Vlasenko | ba88826 | 2012-03-22 11:15:06 +0100 | [diff] [blame] | 735 | " or: busybox --list"IF_FEATURE_INSTALLER("[-full]")"\n" |
| 736 | IF_FEATURE_INSTALLER( |
| 737 | " or: busybox --install [-s] [DIR]\n" |
| 738 | ) |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 739 | " or: function [arguments]...\n" |
| 740 | "\n" |
Ron Yorston | ae57af6 | 2015-05-30 17:13:52 +0100 | [diff] [blame] | 741 | IF_NOT_FEATURE_SH_STANDALONE( |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 742 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
| 743 | "\tutilities into a single executable. Most people will create a\n" |
| 744 | "\tlink to busybox for each function they wish to use and BusyBox\n" |
| 745 | "\twill act like whatever it was invoked as.\n" |
Ron Yorston | ae57af6 | 2015-05-30 17:13:52 +0100 | [diff] [blame] | 746 | ) |
| 747 | IF_FEATURE_SH_STANDALONE( |
| 748 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
| 749 | "\tutilities into a single executable. The shell in this build\n" |
| 750 | "\tis configured to run built-in utilities without $PATH search.\n" |
| 751 | "\tYou don't need to install a link to busybox for each utility.\n" |
| 752 | "\tTo run external program, use full path (/sbin/ip instead of ip).\n" |
| 753 | ) |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 754 | "\n" |
| 755 | "Currently defined functions:\n" |
| 756 | ); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 757 | col = 0; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 758 | a = applet_names; |
Denys Vlasenko | 0149f02 | 2009-05-19 18:01:42 +0200 | [diff] [blame] | 759 | /* prevent last comma to be in the very last pos */ |
| 760 | output_width--; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 761 | while (*a) { |
Denys Vlasenko | 0149f02 | 2009-05-19 18:01:42 +0200 | [diff] [blame] | 762 | int len2 = strlen(a) + 2; |
| 763 | if (col >= (int)output_width - len2) { |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 764 | full_write2_str(",\n"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 765 | col = 0; |
| 766 | } |
Denys Vlasenko | 0149f02 | 2009-05-19 18:01:42 +0200 | [diff] [blame] | 767 | if (col == 0) { |
| 768 | col = 6; |
| 769 | full_write2_str("\t"); |
| 770 | } else { |
| 771 | full_write2_str(", "); |
| 772 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 773 | full_write2_str(a); |
Denys Vlasenko | 0149f02 | 2009-05-19 18:01:42 +0200 | [diff] [blame] | 774 | col += len2; |
| 775 | a += len2 - 1; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 776 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 777 | full_write2_str("\n\n"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 778 | return 0; |
| 779 | } |
| 780 | |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 781 | if (is_prefixed_with(argv[1], "--list")) { |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 782 | unsigned i = 0; |
| 783 | const char *a = applet_names; |
| 784 | dup2(1, 2); |
| 785 | while (*a) { |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 786 | # if ENABLE_FEATURE_INSTALLER |
Denys Vlasenko | ba88826 | 2012-03-22 11:15:06 +0100 | [diff] [blame] | 787 | if (argv[1][6]) /* --list-full? */ |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 788 | full_write2_str(install_dir[APPLET_INSTALL_LOC(i)] + 1); |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 789 | # endif |
Denys Vlasenko | 5a7c720 | 2010-04-20 21:02:57 -0400 | [diff] [blame] | 790 | full_write2_str(a); |
| 791 | full_write2_str("\n"); |
| 792 | i++; |
| 793 | a += strlen(a) + 1; |
| 794 | } |
| 795 | return 0; |
| 796 | } |
| 797 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 798 | if (ENABLE_FEATURE_INSTALLER && strcmp(argv[1], "--install") == 0) { |
Denys Vlasenko | 3b40543 | 2009-07-15 00:35:34 +0200 | [diff] [blame] | 799 | int use_symbolic_links; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 800 | const char *busybox; |
Denys Vlasenko | 4a2a86d | 2011-03-06 06:02:31 +0100 | [diff] [blame] | 801 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 802 | busybox = xmalloc_readlink(bb_busybox_exec_path); |
Denys Vlasenko | 4a2a86d | 2011-03-06 06:02:31 +0100 | [diff] [blame] | 803 | if (!busybox) { |
| 804 | /* bb_busybox_exec_path is usually "/proc/self/exe". |
| 805 | * In chroot, readlink("/proc/self/exe") usually fails. |
| 806 | * In such case, better use argv[0] as symlink target |
| 807 | * if it is a full path name. |
| 808 | */ |
Denys Vlasenko | 5c94271 | 2011-03-12 06:08:28 +0100 | [diff] [blame] | 809 | if (argv[0][0] != '/') |
| 810 | bb_error_msg_and_die("'%s' is not an absolute path", argv[0]); |
| 811 | busybox = argv[0]; |
Denys Vlasenko | 4a2a86d | 2011-03-06 06:02:31 +0100 | [diff] [blame] | 812 | } |
| 813 | /* busybox --install [-s] [DIR]: |
| 814 | * -s: make symlinks |
| 815 | * DIR: directory to install links to |
| 816 | */ |
Denys Vlasenko | ba88826 | 2012-03-22 11:15:06 +0100 | [diff] [blame] | 817 | use_symbolic_links = (argv[2] && strcmp(argv[2], "-s") == 0 && ++argv); |
Denys Vlasenko | 3b40543 | 2009-07-15 00:35:34 +0200 | [diff] [blame] | 818 | install_links(busybox, use_symbolic_links, argv[2]); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 819 | return 0; |
| 820 | } |
| 821 | |
| 822 | if (strcmp(argv[1], "--help") == 0) { |
| 823 | /* "busybox --help [<applet>]" */ |
| 824 | if (!argv[2]) |
| 825 | goto help; |
| 826 | /* convert to "<applet> --help" */ |
| 827 | argv[0] = argv[2]; |
| 828 | argv[2] = NULL; |
| 829 | } else { |
| 830 | /* "busybox <applet> arg1 arg2 ..." */ |
| 831 | argv++; |
| 832 | } |
| 833 | /* We support "busybox /a/path/to/applet args..." too. Allows for |
| 834 | * "#!/bin/busybox"-style wrappers */ |
| 835 | applet_name = bb_get_last_path_component_nostrip(argv[0]); |
| 836 | run_applet_and_exit(applet_name, argv); |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 837 | |
| 838 | /*bb_error_msg_and_die("applet not found"); - sucks in printf */ |
| 839 | full_write2_str(applet_name); |
| 840 | full_write2_str(": applet not found\n"); |
Denys Vlasenko | 628f134 | 2014-11-17 17:03:47 +0100 | [diff] [blame] | 841 | /* POSIX: "If a command is not found, the exit status shall be 127" */ |
| 842 | exit(127); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 843 | } |
| 844 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 845 | void FAST_FUNC run_applet_no_and_exit(int applet_no, char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 846 | { |
| 847 | int argc = 1; |
| 848 | |
| 849 | while (argv[argc]) |
| 850 | argc++; |
| 851 | |
| 852 | /* Reinit some shared global data */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 853 | xfunc_error_retval = EXIT_FAILURE; |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 854 | applet_name = bb_get_last_path_component_nostrip(argv[0]); |
Denys Vlasenko | cd7a38a | 2014-09-18 00:47:05 +0200 | [diff] [blame] | 855 | |
Denys Vlasenko | cd7a38a | 2014-09-18 00:47:05 +0200 | [diff] [blame] | 856 | /* Special case. POSIX says "test --help" |
| 857 | * should be no different from e.g. "test --foo". |
| 858 | * Thus for "test", we skip --help check. |
Denys Vlasenko | de5edad | 2015-04-21 16:00:41 +0200 | [diff] [blame] | 859 | * "true" and "false" are also special. |
Denys Vlasenko | cd7a38a | 2014-09-18 00:47:05 +0200 | [diff] [blame] | 860 | */ |
Denys Vlasenko | de5edad | 2015-04-21 16:00:41 +0200 | [diff] [blame] | 861 | if (1 |
| 862 | #if defined APPLET_NO_test |
| 863 | && applet_no != APPLET_NO_test |
Denys Vlasenko | cd7a38a | 2014-09-18 00:47:05 +0200 | [diff] [blame] | 864 | #endif |
Denys Vlasenko | de5edad | 2015-04-21 16:00:41 +0200 | [diff] [blame] | 865 | #if defined APPLET_NO_true |
| 866 | && applet_no != APPLET_NO_true |
| 867 | #endif |
Denys Vlasenko | cd7a38a | 2014-09-18 00:47:05 +0200 | [diff] [blame] | 868 | #if defined APPLET_NO_false |
Denys Vlasenko | de5edad | 2015-04-21 16:00:41 +0200 | [diff] [blame] | 869 | && applet_no != APPLET_NO_false |
Denys Vlasenko | cd7a38a | 2014-09-18 00:47:05 +0200 | [diff] [blame] | 870 | #endif |
Denys Vlasenko | de5edad | 2015-04-21 16:00:41 +0200 | [diff] [blame] | 871 | ) { |
| 872 | if (argc == 2 && strcmp(argv[1], "--help") == 0) { |
| 873 | /* Make "foo --help" exit with 0: */ |
| 874 | xfunc_error_retval = 0; |
Denis Vlasenko | bd28f6b | 2008-07-19 08:15:13 +0000 | [diff] [blame] | 875 | bb_show_usage(); |
Denys Vlasenko | 5d78355 | 2013-01-17 11:02:21 +0100 | [diff] [blame] | 876 | } |
Denis Vlasenko | bd28f6b | 2008-07-19 08:15:13 +0000 | [diff] [blame] | 877 | } |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 878 | if (ENABLE_FEATURE_SUID) |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 879 | check_suid(applet_no); |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 880 | exit(applet_main[applet_no](argc, argv)); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 881 | } |
| 882 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 883 | void FAST_FUNC run_applet_and_exit(const char *name, char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 884 | { |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 885 | int applet; |
| 886 | |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 887 | if (is_prefixed_with(name, "busybox")) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 888 | exit(busybox_main(argv)); |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 889 | /* find_applet_by_name() search is more expensive, so goes second */ |
| 890 | applet = find_applet_by_name(name); |
| 891 | if (applet >= 0) |
| 892 | run_applet_no_and_exit(applet, argv); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 893 | } |
| 894 | |
Denis Vlasenko | 10f6fb1 | 2008-04-29 00:10:27 +0000 | [diff] [blame] | 895 | #endif /* !defined(SINGLE_APPLET_MAIN) */ |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 896 | |
| 897 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 898 | |
| 899 | #if ENABLE_BUILD_LIBBUSYBOX |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 900 | int lbb_main(char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 901 | #else |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 902 | int main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 903 | #endif |
| 904 | { |
Denys Vlasenko | bc14f4d | 2016-04-03 16:06:42 +0200 | [diff] [blame^] | 905 | #if 0 |
| 906 | /* TODO: find a use for a block of memory between end of .bss |
| 907 | * and end of page. For example, I'm getting "_end:0x812e698 2408 bytes" |
| 908 | * - more than 2k of wasted memory (in this particular build) |
| 909 | * *per each running process*! |
| 910 | * (If your linker does not generate "_end" name, weak attribute |
| 911 | * makes &_end == NULL, end_len == 0 here.) |
| 912 | */ |
| 913 | extern char _end[] __attribute__((weak)); |
| 914 | unsigned end_len = (-(int)_end) & 0xfff; |
| 915 | printf("_end:%p %u bytes\n", &_end, end_len); |
| 916 | #endif |
| 917 | |
Denys Vlasenko | 1f7c167 | 2009-09-06 02:12:28 +0200 | [diff] [blame] | 918 | /* Tweak malloc for reduced memory consumption */ |
Denys Vlasenko | 1f7c167 | 2009-09-06 02:12:28 +0200 | [diff] [blame] | 919 | #ifdef M_TRIM_THRESHOLD |
| 920 | /* M_TRIM_THRESHOLD is the maximum amount of freed top-most memory |
| 921 | * to keep before releasing to the OS |
| 922 | * Default is way too big: 256k |
| 923 | */ |
Denys Vlasenko | fe86d6b | 2011-06-03 21:39:42 +0200 | [diff] [blame] | 924 | mallopt(M_TRIM_THRESHOLD, 8 * 1024); |
Denys Vlasenko | 1f7c167 | 2009-09-06 02:12:28 +0200 | [diff] [blame] | 925 | #endif |
| 926 | #ifdef M_MMAP_THRESHOLD |
| 927 | /* M_MMAP_THRESHOLD is the request size threshold for using mmap() |
| 928 | * Default is too big: 256k |
| 929 | */ |
Denys Vlasenko | fe86d6b | 2011-06-03 21:39:42 +0200 | [diff] [blame] | 930 | mallopt(M_MMAP_THRESHOLD, 32 * 1024 - 256); |
Denys Vlasenko | 1f7c167 | 2009-09-06 02:12:28 +0200 | [diff] [blame] | 931 | #endif |
| 932 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 933 | #if !BB_MMU |
| 934 | /* NOMMU re-exec trick sets high-order bit in first byte of name */ |
| 935 | if (argv[0][0] & 0x80) { |
| 936 | re_execed = 1; |
| 937 | argv[0][0] &= 0x7f; |
| 938 | } |
| 939 | #endif |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 940 | |
| 941 | #if defined(SINGLE_APPLET_MAIN) |
| 942 | /* Only one applet is selected in .config */ |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 943 | if (argv[1] && is_prefixed_with(argv[0], "busybox")) { |
Denys Vlasenko | 8f0af3b | 2010-11-29 02:55:35 +0100 | [diff] [blame] | 944 | /* "busybox <applet> <params>" should still work as expected */ |
| 945 | argv++; |
| 946 | } |
| 947 | /* applet_names in this case is just "applet\0\0" */ |
| 948 | lbb_prepare(applet_names IF_FEATURE_INDIVIDUAL(, argv)); |
| 949 | return SINGLE_APPLET_MAIN(argc, argv); |
| 950 | #else |
| 951 | lbb_prepare("busybox" IF_FEATURE_INDIVIDUAL(, argv)); |
| 952 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 953 | applet_name = argv[0]; |
| 954 | if (applet_name[0] == '-') |
| 955 | applet_name++; |
| 956 | applet_name = bb_basename(applet_name); |
| 957 | |
| 958 | parse_config_file(); /* ...maybe, if FEATURE_SUID_CONFIG */ |
| 959 | |
| 960 | run_applet_and_exit(applet_name, argv); |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame] | 961 | |
| 962 | /*bb_error_msg_and_die("applet not found"); - sucks in printf */ |
| 963 | full_write2_str(applet_name); |
| 964 | full_write2_str(": applet not found\n"); |
Denys Vlasenko | 628f134 | 2014-11-17 17:03:47 +0100 | [diff] [blame] | 965 | /* POSIX: "If a command is not found, the exit status shall be 127" */ |
| 966 | exit(127); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 967 | #endif |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 968 | } |