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