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