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