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 |
| 10 | * Permission has been granted to redistribute this code under the GPL. |
| 11 | * |
| 12 | * Licensed under GPLv2 or later, see file License in this tarball for details. |
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 | */ |
| 29 | |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 30 | #include <assert.h> |
| 31 | #include "busybox.h" |
| 32 | |
| 33 | |
| 34 | /* Declare <applet>_main() */ |
| 35 | #define PROTOTYPES |
| 36 | #include "applets.h" |
| 37 | #undef PROTOTYPES |
| 38 | |
| 39 | #if ENABLE_SHOW_USAGE && !ENABLE_FEATURE_COMPRESS_USAGE |
| 40 | /* Define usage_messages[] */ |
| 41 | static const char usage_messages[] ALIGN1 = "" |
| 42 | #define MAKE_USAGE |
| 43 | #include "usage.h" |
| 44 | #include "applets.h" |
| 45 | ; |
| 46 | #undef MAKE_USAGE |
| 47 | #else |
| 48 | #define usage_messages 0 |
| 49 | #endif /* SHOW_USAGE */ |
| 50 | |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 51 | |
Denis Vlasenko | 32b2a9f | 2008-02-22 22:43:22 +0000 | [diff] [blame] | 52 | /* Include generated applet names, pointers to <applet>_main, etc */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 53 | #include "applet_tables.h" |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 54 | /* ...and if applet_tables generator says we have only one applet... */ |
| 55 | #ifdef SINGLE_APPLET_MAIN |
| 56 | #undef ENABLE_FEATURE_INDIVIDUAL |
| 57 | #define ENABLE_FEATURE_INDIVIDUAL 1 |
| 58 | #undef USE_FEATURE_INDIVIDUAL |
| 59 | #define USE_FEATURE_INDIVIDUAL(...) __VA_ARGS__ |
| 60 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 61 | |
| 62 | |
| 63 | #if ENABLE_FEATURE_COMPRESS_USAGE |
| 64 | |
| 65 | #include "usage_compressed.h" |
| 66 | #include "unarchive.h" |
| 67 | |
| 68 | static const char *unpack_usage_messages(void) |
| 69 | { |
| 70 | char *outbuf = NULL; |
| 71 | bunzip_data *bd; |
| 72 | int i; |
| 73 | |
| 74 | i = start_bunzip(&bd, |
| 75 | /* src_fd: */ -1, |
| 76 | /* inbuf: */ packed_usage, |
| 77 | /* len: */ sizeof(packed_usage)); |
| 78 | /* read_bunzip can longjmp to start_bunzip, and ultimately |
| 79 | * end up here with i != 0 on read data errors! Not trivial */ |
| 80 | if (!i) { |
| 81 | /* Cannot use xmalloc: will leak bd in NOFORK case! */ |
| 82 | outbuf = malloc_or_warn(SIZEOF_usage_messages); |
| 83 | if (outbuf) |
| 84 | read_bunzip(bd, outbuf, SIZEOF_usage_messages); |
| 85 | } |
| 86 | dealloc_bunzip(bd); |
| 87 | return outbuf; |
| 88 | } |
| 89 | #define dealloc_usage_messages(s) free(s) |
| 90 | |
| 91 | #else |
| 92 | |
| 93 | #define unpack_usage_messages() usage_messages |
| 94 | #define dealloc_usage_messages(s) ((void)(s)) |
| 95 | |
| 96 | #endif /* FEATURE_COMPRESS_USAGE */ |
| 97 | |
| 98 | |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 99 | static void full_write2_str(const char *str) |
| 100 | { |
| 101 | full_write(2, str, strlen(str)); |
| 102 | } |
| 103 | |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 104 | void bb_show_usage(void) |
| 105 | { |
| 106 | if (ENABLE_SHOW_USAGE) { |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 107 | #ifdef SINGLE_APPLET_STR |
| 108 | /* Imagine that this applet is "true". Dont suck in printf! */ |
| 109 | const char *p; |
| 110 | const char *usage_string = p = unpack_usage_messages(); |
| 111 | |
| 112 | if (*p == '\b') { |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 113 | full_write2_str("\nNo help available.\n\n"); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 114 | } else { |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 115 | full_write2_str("\nUsage: "SINGLE_APPLET_STR" "); |
| 116 | full_write2_str(p); |
| 117 | full_write2_str("\n\n"); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 118 | } |
| 119 | dealloc_usage_messages((char*)usage_string); |
| 120 | #else |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 121 | const char *p; |
| 122 | const char *usage_string = p = unpack_usage_messages(); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 123 | int ap = find_applet_by_name(applet_name); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 124 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 125 | if (ap < 0) /* never happens, paranoia */ |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 126 | xfunc_die(); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 127 | while (ap) { |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 128 | while (*p++) continue; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 129 | ap--; |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 130 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 131 | full_write2_str(bb_banner); |
| 132 | full_write2_str(" multi-call binary\n"); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 133 | if (*p == '\b') |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 134 | full_write2_str("\nNo help available.\n\n"); |
| 135 | else { |
| 136 | full_write2_str("\nUsage: "); |
| 137 | full_write2_str(applet_name); |
| 138 | full_write2_str(" "); |
| 139 | full_write2_str(p); |
| 140 | full_write2_str("\n\n"); |
| 141 | } |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 142 | dealloc_usage_messages((char*)usage_string); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 143 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 144 | } |
| 145 | xfunc_die(); |
| 146 | } |
| 147 | |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 148 | #if NUM_APPLETS > 8 |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 149 | /* NB: any char pointer will work as well, not necessarily applet_names */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 150 | static int applet_name_compare(const void *name, const void *v) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 151 | { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 152 | int i = (const char *)v - applet_names; |
| 153 | return strcmp(name, APPLET_NAME(i)); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 154 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 155 | #endif |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 156 | int find_applet_by_name(const char *name) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 157 | { |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 158 | #if NUM_APPLETS > 8 |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 159 | /* Do a binary search to find the applet entry given the name. */ |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 160 | const char *p; |
| 161 | p = bsearch(name, applet_names, ARRAY_SIZE(applet_main), 1, applet_name_compare); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 162 | if (!p) |
| 163 | return -1; |
| 164 | return p - applet_names; |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 165 | #else |
| 166 | /* A version which does not pull in bsearch */ |
| 167 | int i = 0; |
| 168 | const char *p = applet_names; |
| 169 | while (i < NUM_APPLETS) { |
| 170 | if (strcmp(name, p) == 0) |
| 171 | return i; |
| 172 | p += strlen(p) + 1; |
| 173 | i++; |
| 174 | } |
| 175 | return -1; |
| 176 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | |
| 180 | #ifdef __GLIBC__ |
| 181 | /* Make it reside in R/W memory: */ |
| 182 | int *const bb_errno __attribute__ ((section (".data"))); |
| 183 | #endif |
| 184 | |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 185 | void lbb_prepare(const char *applet |
| 186 | USE_FEATURE_INDIVIDUAL(, char **argv)) |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 187 | MAIN_EXTERNALLY_VISIBLE; |
| 188 | void lbb_prepare(const char *applet |
| 189 | USE_FEATURE_INDIVIDUAL(, char **argv)) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 190 | { |
| 191 | #ifdef __GLIBC__ |
| 192 | (*(int **)&bb_errno) = __errno_location(); |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 193 | barrier(); |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 194 | #endif |
Denis Vlasenko | 15cb4a4 | 2007-10-11 10:06:26 +0000 | [diff] [blame] | 195 | applet_name = applet; |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 196 | |
| 197 | /* Set locale for everybody except 'init' */ |
| 198 | if (ENABLE_LOCALE_SUPPORT && getpid() != 1) |
| 199 | setlocale(LC_ALL, ""); |
| 200 | |
Denis Vlasenko | 82d38da | 2007-10-10 14:38:47 +0000 | [diff] [blame] | 201 | #if ENABLE_FEATURE_INDIVIDUAL |
| 202 | /* Redundant for busybox (run_applet_and_exit covers that case) |
| 203 | * but needed for "individual applet" mode */ |
Denis Vlasenko | d419a9f | 2007-10-08 20:45:42 +0000 | [diff] [blame] | 204 | if (argv[1] && strcmp(argv[1], "--help") == 0) |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 205 | bb_show_usage(); |
Denis Vlasenko | 82d38da | 2007-10-10 14:38:47 +0000 | [diff] [blame] | 206 | #endif |
Denis Vlasenko | ac7d0e3 | 2007-10-08 19:32:12 +0000 | [diff] [blame] | 207 | } |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 208 | |
| 209 | /* The code below can well be in applets/applets.c, as it is used only |
| 210 | * for busybox binary, not "individual" binaries. |
| 211 | * However, keeping it here and linking it into libbusybox.so |
| 212 | * (together with remaining tiny applets/applets.o) |
| 213 | * makes it possible to avoid --whole-archive at link time. |
| 214 | * This makes (shared busybox) + libbusybox smaller. |
| 215 | * (--gc-sections would be even better....) |
| 216 | */ |
| 217 | |
| 218 | const char *applet_name; |
| 219 | #if !BB_MMU |
| 220 | bool re_execed; |
| 221 | #endif |
| 222 | |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 223 | |
| 224 | #if !ENABLE_FEATURE_INDIVIDUAL |
| 225 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 226 | USE_FEATURE_SUID(static uid_t ruid;) /* real uid */ |
| 227 | |
| 228 | #if ENABLE_FEATURE_SUID_CONFIG |
| 229 | |
| 230 | /* applets[] is const, so we have to define this "override" structure */ |
| 231 | static struct BB_suid_config { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 232 | int m_applet; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 233 | uid_t m_uid; |
| 234 | gid_t m_gid; |
| 235 | mode_t m_mode; |
| 236 | struct BB_suid_config *m_next; |
| 237 | } *suid_config; |
| 238 | |
| 239 | static bool suid_cfg_readable; |
| 240 | |
| 241 | /* check if u is member of group g */ |
| 242 | static int ingroup(uid_t u, gid_t g) |
| 243 | { |
| 244 | struct group *grp = getgrgid(g); |
| 245 | |
| 246 | if (grp) { |
| 247 | char **mem; |
| 248 | |
| 249 | for (mem = grp->gr_mem; *mem; mem++) { |
| 250 | struct passwd *pwd = getpwnam(*mem); |
| 251 | |
| 252 | if (pwd && (pwd->pw_uid == u)) |
| 253 | return 1; |
| 254 | } |
| 255 | } |
| 256 | return 0; |
| 257 | } |
| 258 | |
| 259 | /* This should probably be a libbb routine. In that case, |
| 260 | * I'd probably rename it to something like bb_trimmed_slice. |
| 261 | */ |
| 262 | static char *get_trimmed_slice(char *s, char *e) |
| 263 | { |
| 264 | /* First, consider the value at e to be nul and back up until we |
| 265 | * reach a non-space char. Set the char after that (possibly at |
| 266 | * the original e) to nul. */ |
| 267 | while (e-- > s) { |
| 268 | if (!isspace(*e)) { |
| 269 | break; |
| 270 | } |
| 271 | } |
| 272 | e[1] = '\0'; |
| 273 | |
| 274 | /* Next, advance past all leading space and return a ptr to the |
| 275 | * first non-space char; possibly the terminating nul. */ |
| 276 | return skip_whitespace(s); |
| 277 | } |
| 278 | |
| 279 | /* Don't depend on the tools to combine strings. */ |
| 280 | static const char config_file[] ALIGN1 = "/etc/busybox.conf"; |
| 281 | |
| 282 | /* We don't supply a value for the nul, so an index adjustment is |
| 283 | * necessary below. Also, we use unsigned short here to save some |
| 284 | * space even though these are really mode_t values. */ |
| 285 | static const unsigned short mode_mask[] ALIGN2 = { |
| 286 | /* SST sst xxx --- */ |
| 287 | S_ISUID, S_ISUID|S_IXUSR, S_IXUSR, 0, /* user */ |
| 288 | S_ISGID, S_ISGID|S_IXGRP, S_IXGRP, 0, /* group */ |
| 289 | 0, S_IXOTH, S_IXOTH, 0 /* other */ |
| 290 | }; |
| 291 | |
| 292 | #define parse_error(x) do { errmsg = x; goto pe_label; } while (0) |
| 293 | |
| 294 | static void parse_config_file(void) |
| 295 | { |
| 296 | struct BB_suid_config *sct_head; |
| 297 | struct BB_suid_config *sct; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 298 | int applet_no; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 299 | FILE *f; |
| 300 | const char *errmsg; |
| 301 | char *s; |
| 302 | char *e; |
| 303 | int i; |
| 304 | unsigned lc; |
| 305 | smallint section; |
| 306 | char buffer[256]; |
| 307 | struct stat st; |
| 308 | |
| 309 | assert(!suid_config); /* Should be set to NULL by bss init. */ |
| 310 | |
| 311 | ruid = getuid(); |
| 312 | if (ruid == 0) /* run by root - don't need to even read config file */ |
| 313 | return; |
| 314 | |
| 315 | if ((stat(config_file, &st) != 0) /* No config file? */ |
| 316 | || !S_ISREG(st.st_mode) /* Not a regular file? */ |
| 317 | || (st.st_uid != 0) /* Not owned by root? */ |
| 318 | || (st.st_mode & (S_IWGRP | S_IWOTH)) /* Writable by non-root? */ |
| 319 | || !(f = fopen(config_file, "r")) /* Cannot open? */ |
| 320 | ) { |
| 321 | return; |
| 322 | } |
| 323 | |
| 324 | suid_cfg_readable = 1; |
| 325 | sct_head = NULL; |
| 326 | section = lc = 0; |
| 327 | |
| 328 | while (1) { |
| 329 | s = buffer; |
| 330 | |
| 331 | if (!fgets(s, sizeof(buffer), f)) { /* Are we done? */ |
Denis Vlasenko | d02db89 | 2008-03-17 09:05:21 +0000 | [diff] [blame] | 332 | // why? |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 333 | if (ferror(f)) { /* Make sure it wasn't a read error. */ |
| 334 | parse_error("reading"); |
| 335 | } |
| 336 | fclose(f); |
| 337 | suid_config = sct_head; /* Success, so set the pointer. */ |
| 338 | return; |
| 339 | } |
| 340 | |
| 341 | lc++; /* Got a (partial) line. */ |
| 342 | |
| 343 | /* If a line is too long for our buffer, we consider it an error. |
| 344 | * The following test does mistreat one corner case though. |
| 345 | * If the final line of the file does not end with a newline and |
| 346 | * yet exactly fills the buffer, it will be treated as too long |
| 347 | * even though there isn't really a problem. But it isn't really |
| 348 | * worth adding code to deal with such an unlikely situation, and |
| 349 | * we do err on the side of caution. Besides, the line would be |
| 350 | * too long if it did end with a newline. */ |
| 351 | if (!strchr(s, '\n') && !feof(f)) { |
| 352 | parse_error("line too long"); |
| 353 | } |
| 354 | |
| 355 | /* Trim leading and trailing whitespace, ignoring comments, and |
| 356 | * check if the resulting string is empty. */ |
| 357 | s = get_trimmed_slice(s, strchrnul(s, '#')); |
| 358 | if (!*s) { |
| 359 | continue; |
| 360 | } |
| 361 | |
| 362 | /* Check for a section header. */ |
| 363 | |
| 364 | if (*s == '[') { |
| 365 | /* Unlike the old code, we ignore leading and trailing |
| 366 | * whitespace for the section name. We also require that |
| 367 | * there are no stray characters after the closing bracket. */ |
| 368 | e = strchr(s, ']'); |
| 369 | if (!e /* Missing right bracket? */ |
| 370 | || e[1] /* Trailing characters? */ |
| 371 | || !*(s = get_trimmed_slice(s+1, e)) /* Missing name? */ |
| 372 | ) { |
| 373 | parse_error("section header"); |
| 374 | } |
| 375 | /* Right now we only have one section so just check it. |
| 376 | * If more sections are added in the future, please don't |
| 377 | * resort to cascading ifs with multiple strcasecmp calls. |
| 378 | * That kind of bloated code is all too common. A loop |
| 379 | * and a string table would be a better choice unless the |
| 380 | * number of sections is very small. */ |
| 381 | if (strcasecmp(s, "SUID") == 0) { |
| 382 | section = 1; |
| 383 | continue; |
| 384 | } |
| 385 | section = -1; /* Unknown section so set to skip. */ |
| 386 | continue; |
| 387 | } |
| 388 | |
| 389 | /* Process sections. */ |
| 390 | |
| 391 | if (section == 1) { /* SUID */ |
| 392 | /* Since we trimmed leading and trailing space above, we're |
| 393 | * now looking for strings of the form |
| 394 | * <key>[::space::]*=[::space::]*<value> |
| 395 | * where both key and value could contain inner whitespace. */ |
| 396 | |
| 397 | /* First get the key (an applet name in our case). */ |
| 398 | e = strchr(s, '='); |
| 399 | if (e) { |
| 400 | s = get_trimmed_slice(s, e); |
| 401 | } |
| 402 | if (!e || !*s) { /* Missing '=' or empty key. */ |
| 403 | parse_error("keyword"); |
| 404 | } |
| 405 | |
| 406 | /* Ok, we have an applet name. Process the rhs if this |
| 407 | * applet is currently built in and ignore it otherwise. |
| 408 | * Note: this can hide config file bugs which only pop |
| 409 | * up when the busybox configuration is changed. */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 410 | applet_no = find_applet_by_name(s); |
| 411 | if (applet_no >= 0) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 412 | /* Note: We currently don't check for duplicates! |
| 413 | * The last config line for each applet will be the |
| 414 | * one used since we insert at the head of the list. |
| 415 | * I suppose this could be considered a feature. */ |
| 416 | sct = xmalloc(sizeof(struct BB_suid_config)); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 417 | sct->m_applet = applet_no; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 418 | sct->m_mode = 0; |
| 419 | sct->m_next = sct_head; |
| 420 | sct_head = sct; |
| 421 | |
| 422 | /* Get the specified mode. */ |
| 423 | |
| 424 | e = skip_whitespace(e+1); |
| 425 | |
| 426 | for (i = 0; i < 3; i++) { |
| 427 | /* There are 4 chars + 1 nul for each of user/group/other. */ |
| 428 | static const char mode_chars[] ALIGN1 = "Ssx-\0" "Ssx-\0" "Ttx-"; |
| 429 | |
| 430 | const char *q; |
| 431 | q = strchrnul(mode_chars + 5*i, *e++); |
| 432 | if (!*q) { |
| 433 | parse_error("mode"); |
| 434 | } |
| 435 | /* Adjust by -i to account for nul. */ |
| 436 | sct->m_mode |= mode_mask[(q - mode_chars) - i]; |
| 437 | } |
| 438 | |
| 439 | /* Now get the the user/group info. */ |
| 440 | |
| 441 | s = skip_whitespace(e); |
| 442 | |
| 443 | /* Note: we require whitespace between the mode and the |
| 444 | * user/group info. */ |
| 445 | if ((s == e) || !(e = strchr(s, '.'))) { |
| 446 | parse_error("<uid>.<gid>"); |
| 447 | } |
| 448 | *e++ = '\0'; |
| 449 | |
| 450 | /* We can't use get_ug_id here since it would exit() |
| 451 | * if a uid or gid was not found. Oh well... */ |
| 452 | sct->m_uid = bb_strtoul(s, NULL, 10); |
| 453 | if (errno) { |
| 454 | struct passwd *pwd = getpwnam(s); |
| 455 | if (!pwd) { |
| 456 | parse_error("user"); |
| 457 | } |
| 458 | sct->m_uid = pwd->pw_uid; |
| 459 | } |
| 460 | |
| 461 | sct->m_gid = bb_strtoul(e, NULL, 10); |
| 462 | if (errno) { |
| 463 | struct group *grp; |
| 464 | grp = getgrnam(e); |
| 465 | if (!grp) { |
| 466 | parse_error("group"); |
| 467 | } |
| 468 | sct->m_gid = grp->gr_gid; |
| 469 | } |
| 470 | } |
| 471 | continue; |
| 472 | } |
| 473 | |
| 474 | /* Unknown sections are ignored. */ |
| 475 | |
| 476 | /* Encountering configuration lines prior to seeing a |
| 477 | * section header is treated as an error. This is how |
| 478 | * the old code worked, but it may not be desirable. |
| 479 | * We may want to simply ignore such lines in case they |
| 480 | * are used in some future version of busybox. */ |
| 481 | if (!section) { |
| 482 | parse_error("keyword outside section"); |
| 483 | } |
| 484 | |
| 485 | } /* while (1) */ |
| 486 | |
| 487 | pe_label: |
| 488 | fprintf(stderr, "Parse error in %s, line %d: %s\n", |
| 489 | config_file, lc, errmsg); |
| 490 | |
| 491 | fclose(f); |
| 492 | /* Release any allocated memory before returning. */ |
| 493 | while (sct_head) { |
| 494 | sct = sct_head->m_next; |
| 495 | free(sct_head); |
| 496 | sct_head = sct; |
| 497 | } |
| 498 | } |
| 499 | #else |
| 500 | static inline void parse_config_file(void) |
| 501 | { |
| 502 | USE_FEATURE_SUID(ruid = getuid();) |
| 503 | } |
| 504 | #endif /* FEATURE_SUID_CONFIG */ |
| 505 | |
| 506 | |
| 507 | #if ENABLE_FEATURE_SUID |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 508 | static void check_suid(int applet_no) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 509 | { |
| 510 | gid_t rgid; /* real gid */ |
| 511 | |
| 512 | if (ruid == 0) /* set by parse_config_file() */ |
| 513 | return; /* run by root - no need to check more */ |
| 514 | rgid = getgid(); |
| 515 | |
| 516 | #if ENABLE_FEATURE_SUID_CONFIG |
| 517 | if (suid_cfg_readable) { |
| 518 | uid_t uid; |
| 519 | struct BB_suid_config *sct; |
| 520 | mode_t m; |
| 521 | |
| 522 | for (sct = suid_config; sct; sct = sct->m_next) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 523 | if (sct->m_applet == applet_no) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 524 | goto found; |
| 525 | } |
Denis Vlasenko | 15ca51e | 2007-10-29 19:25:45 +0000 | [diff] [blame] | 526 | goto check_need_suid; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 527 | found: |
| 528 | m = sct->m_mode; |
| 529 | if (sct->m_uid == ruid) |
| 530 | /* same uid */ |
| 531 | m >>= 6; |
| 532 | else if ((sct->m_gid == rgid) || ingroup(ruid, sct->m_gid)) |
| 533 | /* same group / in group */ |
| 534 | m >>= 3; |
| 535 | |
| 536 | if (!(m & S_IXOTH)) /* is x bit not set ? */ |
| 537 | bb_error_msg_and_die("you have no permission to run this applet!"); |
| 538 | |
| 539 | /* _both_ sgid and group_exec have to be set for setegid */ |
| 540 | if ((sct->m_mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) |
| 541 | rgid = sct->m_gid; |
| 542 | /* else (no setegid) we will set egid = rgid */ |
| 543 | |
| 544 | /* We set effective AND saved ids. If saved-id is not set |
| 545 | * like we do below, seteiud(0) can still later succeed! */ |
| 546 | if (setresgid(-1, rgid, rgid)) |
| 547 | bb_perror_msg_and_die("setresgid"); |
| 548 | |
| 549 | /* do we have to set effective uid? */ |
| 550 | uid = ruid; |
| 551 | if (sct->m_mode & S_ISUID) |
| 552 | uid = sct->m_uid; |
| 553 | /* else (no seteuid) we will set euid = ruid */ |
| 554 | |
| 555 | if (setresuid(-1, uid, uid)) |
| 556 | bb_perror_msg_and_die("setresuid"); |
| 557 | return; |
| 558 | } |
| 559 | #if !ENABLE_FEATURE_SUID_CONFIG_QUIET |
| 560 | { |
| 561 | static bool onetime = 0; |
| 562 | |
| 563 | if (!onetime) { |
| 564 | onetime = 1; |
| 565 | fprintf(stderr, "Using fallback suid method\n"); |
| 566 | } |
| 567 | } |
| 568 | #endif |
Denis Vlasenko | 15ca51e | 2007-10-29 19:25:45 +0000 | [diff] [blame] | 569 | check_need_suid: |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 570 | #endif |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 571 | if (APPLET_SUID(applet_no) == _BB_SUID_ALWAYS) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 572 | /* Real uid is not 0. If euid isn't 0 too, suid bit |
| 573 | * is most probably not set on our executable */ |
| 574 | if (geteuid()) |
Denis Vlasenko | 15ca51e | 2007-10-29 19:25:45 +0000 | [diff] [blame] | 575 | bb_error_msg_and_die("must be suid to work properly"); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 576 | } else if (APPLET_SUID(applet_no) == _BB_SUID_NEVER) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 577 | xsetgid(rgid); /* drop all privileges */ |
| 578 | xsetuid(ruid); |
| 579 | } |
| 580 | } |
| 581 | #else |
| 582 | #define check_suid(x) ((void)0) |
| 583 | #endif /* FEATURE_SUID */ |
| 584 | |
| 585 | |
| 586 | #if ENABLE_FEATURE_INSTALLER |
| 587 | /* create (sym)links for each applet */ |
| 588 | static void install_links(const char *busybox, int use_symbolic_links) |
| 589 | { |
| 590 | /* directory table |
| 591 | * this should be consistent w/ the enum, |
| 592 | * busybox.h::bb_install_loc_t, or else... */ |
| 593 | static const char usr_bin [] ALIGN1 = "/usr/bin"; |
| 594 | static const char usr_sbin[] ALIGN1 = "/usr/sbin"; |
| 595 | static const char *const install_dir[] = { |
| 596 | &usr_bin [8], /* "", equivalent to "/" for concat_path_file() */ |
| 597 | &usr_bin [4], /* "/bin" */ |
| 598 | &usr_sbin[4], /* "/sbin" */ |
| 599 | usr_bin, |
| 600 | usr_sbin |
| 601 | }; |
| 602 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 603 | int (*lf)(const char *, const char *); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 604 | char *fpc; |
| 605 | int i; |
| 606 | int rc; |
| 607 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 608 | lf = link; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 609 | if (use_symbolic_links) |
| 610 | lf = symlink; |
| 611 | |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 612 | for (i = 0; i < ARRAY_SIZE(applet_main); i++) { |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 613 | fpc = concat_path_file( |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 614 | install_dir[APPLET_INSTALL_LOC(i)], |
| 615 | APPLET_NAME(i)); |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 616 | // debug: bb_error_msg("%slinking %s to busybox", |
| 617 | // use_symbolic_links ? "sym" : "", fpc); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 618 | rc = lf(busybox, fpc); |
| 619 | if (rc != 0 && errno != EEXIST) { |
| 620 | bb_simple_perror_msg(fpc); |
| 621 | } |
| 622 | free(fpc); |
| 623 | } |
| 624 | } |
| 625 | #else |
| 626 | #define install_links(x,y) ((void)0) |
| 627 | #endif /* FEATURE_INSTALLER */ |
| 628 | |
| 629 | /* If we were called as "busybox..." */ |
| 630 | static int busybox_main(char **argv) |
| 631 | { |
| 632 | if (!argv[1]) { |
| 633 | /* Called without arguments */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 634 | const char *a; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 635 | int col, output_width; |
| 636 | help: |
| 637 | output_width = 80; |
| 638 | if (ENABLE_FEATURE_AUTOWIDTH) { |
| 639 | /* Obtain the terminal width */ |
| 640 | get_terminal_width_height(0, &output_width, NULL); |
| 641 | } |
| 642 | /* leading tab and room to wrap */ |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 643 | output_width -= MAX_APPLET_NAME_LEN + 8; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 644 | |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 645 | full_write2_str(bb_banner); /* reuse const string... */ |
| 646 | full_write2_str(" multi-call binary\n" |
| 647 | "Copyright (C) 1998-2007 Erik Andersen, Rob Landley, Denys Vlasenko\n" |
Denis Vlasenko | fcfb5c0 | 2007-12-24 12:16:24 +0000 | [diff] [blame] | 648 | "and others. Licensed under GPLv2.\n" |
| 649 | "See source distribution for full notice.\n" |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 650 | "\n" |
| 651 | "Usage: busybox [function] [arguments]...\n" |
Denis Vlasenko | fcfb5c0 | 2007-12-24 12:16:24 +0000 | [diff] [blame] | 652 | " or: function [arguments]...\n" |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 653 | "\n" |
| 654 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
| 655 | "\tutilities into a single executable. Most people will create a\n" |
| 656 | "\tlink to busybox for each function they wish to use and BusyBox\n" |
| 657 | "\twill act like whatever it was invoked as!\n" |
Denis Vlasenko | fcfb5c0 | 2007-12-24 12:16:24 +0000 | [diff] [blame] | 658 | "\n" |
| 659 | "Currently defined functions:\n"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 660 | col = 0; |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 661 | a = applet_names; |
| 662 | while (*a) { |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 663 | int len; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 664 | if (col > output_width) { |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 665 | full_write2_str(",\n"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 666 | col = 0; |
| 667 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 668 | full_write2_str(col ? ", " : "\t"); |
| 669 | full_write2_str(a); |
| 670 | len = strlen(a); |
| 671 | col += len + 2; |
| 672 | a += len + 1; |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 673 | } |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 674 | full_write2_str("\n\n"); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 675 | return 0; |
| 676 | } |
| 677 | |
| 678 | if (ENABLE_FEATURE_INSTALLER && strcmp(argv[1], "--install") == 0) { |
| 679 | const char *busybox; |
| 680 | busybox = xmalloc_readlink(bb_busybox_exec_path); |
| 681 | if (!busybox) |
| 682 | busybox = bb_busybox_exec_path; |
| 683 | /* -s makes symlinks */ |
| 684 | install_links(busybox, argv[2] && strcmp(argv[2], "-s") == 0); |
| 685 | return 0; |
| 686 | } |
| 687 | |
| 688 | if (strcmp(argv[1], "--help") == 0) { |
| 689 | /* "busybox --help [<applet>]" */ |
| 690 | if (!argv[2]) |
| 691 | goto help; |
| 692 | /* convert to "<applet> --help" */ |
| 693 | argv[0] = argv[2]; |
| 694 | argv[2] = NULL; |
| 695 | } else { |
| 696 | /* "busybox <applet> arg1 arg2 ..." */ |
| 697 | argv++; |
| 698 | } |
| 699 | /* We support "busybox /a/path/to/applet args..." too. Allows for |
| 700 | * "#!/bin/busybox"-style wrappers */ |
| 701 | applet_name = bb_get_last_path_component_nostrip(argv[0]); |
| 702 | run_applet_and_exit(applet_name, argv); |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 703 | |
| 704 | /*bb_error_msg_and_die("applet not found"); - sucks in printf */ |
| 705 | full_write2_str(applet_name); |
| 706 | full_write2_str(": applet not found\n"); |
| 707 | xfunc_die(); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 708 | } |
| 709 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 710 | void run_applet_no_and_exit(int applet_no, char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 711 | { |
| 712 | int argc = 1; |
| 713 | |
| 714 | while (argv[argc]) |
| 715 | argc++; |
| 716 | |
| 717 | /* Reinit some shared global data */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 718 | xfunc_error_retval = EXIT_FAILURE; |
| 719 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 720 | applet_name = APPLET_NAME(applet_no); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 721 | if (argc == 2 && !strcmp(argv[1], "--help")) |
| 722 | bb_show_usage(); |
| 723 | if (ENABLE_FEATURE_SUID) |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 724 | check_suid(applet_no); |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 725 | exit(applet_main[applet_no](argc, argv)); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | void run_applet_and_exit(const char *name, char **argv) |
| 729 | { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 730 | int applet = find_applet_by_name(name); |
| 731 | if (applet >= 0) |
| 732 | run_applet_no_and_exit(applet, argv); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 733 | if (!strncmp(name, "busybox", 7)) |
| 734 | exit(busybox_main(argv)); |
| 735 | } |
| 736 | |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 737 | #endif /* !ENABLE_FEATURE_INDIVIDUAL */ |
| 738 | |
| 739 | |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 740 | |
| 741 | #if ENABLE_BUILD_LIBBUSYBOX |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 742 | int lbb_main(char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 743 | #else |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 744 | int main(int argc ATTRIBUTE_UNUSED, char **argv) |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 745 | #endif |
| 746 | { |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 747 | #if ENABLE_FEATURE_INDIVIDUAL |
| 748 | /* Only one applet is selected by the user! */ |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 749 | /* applet_names in this case is just "applet\0\0" */ |
| 750 | lbb_prepare(applet_names USE_FEATURE_INDIVIDUAL(, argv)); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 751 | return SINGLE_APPLET_MAIN(argc, argv); |
| 752 | #else |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 753 | lbb_prepare("busybox" USE_FEATURE_INDIVIDUAL(, argv)); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 754 | |
| 755 | #if !BB_MMU |
| 756 | /* NOMMU re-exec trick sets high-order bit in first byte of name */ |
| 757 | if (argv[0][0] & 0x80) { |
| 758 | re_execed = 1; |
| 759 | argv[0][0] &= 0x7f; |
| 760 | } |
| 761 | #endif |
| 762 | applet_name = argv[0]; |
| 763 | if (applet_name[0] == '-') |
| 764 | applet_name++; |
| 765 | applet_name = bb_basename(applet_name); |
| 766 | |
| 767 | parse_config_file(); /* ...maybe, if FEATURE_SUID_CONFIG */ |
| 768 | |
| 769 | run_applet_and_exit(applet_name, argv); |
Denis Vlasenko | 79cedcb | 2008-04-08 21:13:28 +0000 | [diff] [blame^] | 770 | |
| 771 | /*bb_error_msg_and_die("applet not found"); - sucks in printf */ |
| 772 | full_write2_str(applet_name); |
| 773 | full_write2_str(": applet not found\n"); |
| 774 | xfunc_die(); |
Denis Vlasenko | 468aea2 | 2008-04-01 14:47:57 +0000 | [diff] [blame] | 775 | #endif |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 776 | } |