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