1 /* vi: set sw=4 ts=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.
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.
12 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
15 /* We are trying to not use printf, this benefits the case when selected
16 * applets are really simple. Example:
20 * Currently defined functions:
21 * basename, false, true
24 * text data bss dec hex filename
25 * 4473 52 72 4597 11f5 busybox
27 * FEATURE_INSTALLER or FEATURE_SUID will still link printf routines in. :(
31 #if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
32 || defined(__APPLE__) \
34 # include <malloc.h> /* for mallopt */
38 /* Declare <applet>_main() */
43 /* Include generated applet names, pointers to <applet>_main, etc */
44 #include "applet_tables.h"
45 /* ...and if applet_tables generator says we have only one applet... */
46 #ifdef SINGLE_APPLET_MAIN
47 # undef ENABLE_FEATURE_INDIVIDUAL
48 # define ENABLE_FEATURE_INDIVIDUAL 1
49 # undef IF_FEATURE_INDIVIDUAL
50 # define IF_FEATURE_INDIVIDUAL(...) __VA_ARGS__
53 #include "usage_compressed.h"
55 static void run_applet_and_exit(const char *name
, char **argv
) NORETURN
;
57 #if ENABLE_SHOW_USAGE && !ENABLE_FEATURE_COMPRESS_USAGE
58 static const char usage_messages
[] ALIGN1
= UNPACKED_USAGE
;
60 # define usage_messages 0
63 #if ENABLE_FEATURE_COMPRESS_USAGE
65 static const char packed_usage
[] ALIGN1
= { PACKED_USAGE
};
66 # include "bb_archive.h"
67 static const char *unpack_usage_messages(void)
75 /* inbuf: */ packed_usage
,
76 /* len: */ sizeof(packed_usage
));
77 /* read_bunzip can longjmp to start_bunzip, and ultimately
78 * end up here with i != 0 on read data errors! Not trivial */
80 /* Cannot use xmalloc: will leak bd in NOFORK case! */
81 outbuf
= malloc_or_warn(sizeof(UNPACKED_USAGE
));
83 read_bunzip(bd
, outbuf
, sizeof(UNPACKED_USAGE
));
88 # define dealloc_usage_messages(s) free(s)
92 # define unpack_usage_messages() usage_messages
93 # define dealloc_usage_messages(s) ((void)(s))
95 #endif /* FEATURE_COMPRESS_USAGE */
98 void FAST_FUNC
bb_show_usage(void)
100 if (ENABLE_SHOW_USAGE
) {
101 #ifdef SINGLE_APPLET_STR
102 /* Imagine that this applet is "true". Dont suck in printf! */
103 const char *usage_string
= unpack_usage_messages();
105 if (*usage_string
== '\b') {
106 full_write2_str("No help available.\n\n");
108 full_write2_str("Usage: "SINGLE_APPLET_STR
" ");
109 full_write2_str(usage_string
);
110 full_write2_str("\n\n");
112 if (ENABLE_FEATURE_CLEAN_UP
)
113 dealloc_usage_messages((char*)usage_string
);
116 const char *usage_string
= p
= unpack_usage_messages();
117 int ap
= find_applet_by_name(applet_name
);
119 if (ap
< 0) /* never happens, paranoia */
122 while (*p
++) continue;
125 full_write2_str(bb_banner
);
126 full_write2_str(" multi-call binary.\n");
128 full_write2_str("\nNo help available.\n\n");
130 full_write2_str("\nUsage: ");
131 full_write2_str(applet_name
);
132 full_write2_str(" ");
134 full_write2_str("\n");
136 if (ENABLE_FEATURE_CLEAN_UP
)
137 dealloc_usage_messages((char*)usage_string
);
143 int FAST_FUNC
find_applet_by_name(const char *name
)
149 /* The commented-out word-at-a-time code is ~40% faster, but +160 bytes.
150 * "Faster" here saves ~0.5 microsecond of real time - not worth it.
152 #if 0 /*BB_UNALIGNED_MEMACCESS_OK && BB_LITTLE_ENDIAN*/
155 /* Handle all names < 2 chars long early */
157 return -1; /* "" is not a valid applet name */
158 if (name
[1] == '\0') {
160 return -1; /* 1-char name is not valid */
162 return -1; /* 1-char name which isn't "[" is not valid */
163 /* applet "[" is always applet #0: */
170 #if KNOWN_APPNAME_OFFSETS <= 0
173 max
= NUM_APPLETS
* KNOWN_APPNAME_OFFSETS
;
174 for (j
= ARRAY_SIZE(applet_nameofs
)-1; j
>= 0; j
--) {
175 const char *pp
= applet_names
+ applet_nameofs
[j
];
176 if (strcmp(name
, pp
) >= 0) {
177 //bb_error_msg("name:'%s' >= pp:'%s'", name, pp);
179 i
= max
- NUM_APPLETS
;
184 max
/= (unsigned)KNOWN_APPNAME_OFFSETS
;
185 i
/= (unsigned)KNOWN_APPNAME_OFFSETS
;
186 //bb_error_msg("name:'%s' starting from:'%s' i:%u max:%u", name, p, i, max);
189 /* Open-coded linear search without strcmp/strlen calls for speed */
191 #if 0 /*BB_UNALIGNED_MEMACCESS_OK && BB_LITTLE_ENDIAN*/
192 /* skip "[\0" name, it's surely not it */
193 if (ENABLE_TEST
&& LONE_CHAR(p
, '['))
195 /* All remaining applet names in p[] are at least 2 chars long */
196 /* name[] is also at least 2 chars long */
198 n32
= (name
[0] << 0) | (name
[1] << 8) | (name
[2] << 16);
203 /* Quickly check match of the first 3 bytes */
204 move_from_unaligned32(p32
, p
);
206 if ((p32
& 0x00ffffff) != n32
) {
207 /* Most likely case: 3 first bytes do not match */
209 if ((p32
& 0x00ff0000) == '\0')
210 continue; // p[2] was NUL
212 if ((p32
& 0xff000000) == '\0')
213 continue; // p[3] was NUL
214 /* p[0..3] aren't matching and none is NUL, check the rest */
220 /* Unlikely branch: first 3 bytes ([0..2]) match */
221 if ((p32
& 0x00ff0000) == '\0') {
222 /* name is 2-byte long, it is full match */
223 //bb_error_msg("found:'%s' i:%u", name, i);
226 /* Check remaining bytes [3..NUL] */
229 while (ch
== name
[j
]) {
231 //bb_error_msg("found:'%s' i:%u", name, i);
237 /* Not a match. Skip it, including NUL */
248 /* Do we see "name\0" in applet_names[p] position? */
249 while ((ch
= *p
) == name
[j
]) {
251 //bb_error_msg("found:'%s' i:%u", name, i);
258 * p => 1st non-matching char in applet_names[],
259 * skip to and including NUL.
271 void lbb_prepare(const char *applet
272 IF_FEATURE_INDIVIDUAL(, char **argv
))
273 MAIN_EXTERNALLY_VISIBLE
;
274 void lbb_prepare(const char *applet
275 IF_FEATURE_INDIVIDUAL(, char **argv
))
278 (*(int **)&bb_errno
) = __errno_location();
281 applet_name
= applet
;
283 if (ENABLE_LOCALE_SUPPORT
)
284 setlocale(LC_ALL
, "");
286 #if ENABLE_FEATURE_INDIVIDUAL
287 /* Redundant for busybox (run_applet_and_exit covers that case)
288 * but needed for "individual applet" mode */
291 && strcmp(argv
[1], "--help") == 0
292 && !is_prefixed_with(applet
, "busybox")
294 /* Special case. POSIX says "test --help"
295 * should be no different from e.g. "test --foo". */
296 if (!ENABLE_TEST
|| strcmp(applet_name
, "test") != 0)
302 /* The code below can well be in applets/applets.c, as it is used only
303 * for busybox binary, not "individual" binaries.
304 * However, keeping it here and linking it into libbusybox.so
305 * (together with remaining tiny applets/applets.o)
306 * makes it possible to avoid --whole-archive at link time.
307 * This makes (shared busybox) + libbusybox smaller.
308 * (--gc-sections would be even better....)
311 const char *applet_name
;
317 /* If not built as a single-applet executable... */
318 #if !defined(SINGLE_APPLET_MAIN)
320 IF_FEATURE_SUID(static uid_t ruid
;) /* real uid */
322 # if ENABLE_FEATURE_SUID_CONFIG
324 static struct suid_config_t
{
325 /* next ptr must be first: this struct needs to be llist-compatible */
326 struct suid_config_t
*m_next
;
327 struct bb_uidgid_t m_ugid
;
332 static bool suid_cfg_readable
;
334 /* check if u is member of group g */
335 static int ingroup(uid_t u
, gid_t g
)
337 struct group
*grp
= getgrgid(g
);
340 for (mem
= grp
->gr_mem
; *mem
; mem
++) {
341 struct passwd
*pwd
= getpwnam(*mem
);
342 if (pwd
&& (pwd
->pw_uid
== u
))
349 /* libbb candidate */
350 static char *get_trimmed_slice(char *s
, char *e
)
352 /* First, consider the value at e to be nul and back up until we
353 * reach a non-space char. Set the char after that (possibly at
354 * the original e) to nul. */
362 /* Next, advance past all leading space and return a ptr to the
363 * first non-space char; possibly the terminating nul. */
364 return skip_whitespace(s
);
367 static void parse_config_file(void)
369 /* Don't depend on the tools to combine strings. */
370 static const char config_file
[] ALIGN1
= "/etc/busybox.conf";
372 struct suid_config_t
*sct_head
;
381 if (ruid
== 0) /* run by root - don't need to even read config file */
384 if ((stat(config_file
, &st
) != 0) /* No config file? */
385 || !S_ISREG(st
.st_mode
) /* Not a regular file? */
386 || (st
.st_uid
!= 0) /* Not owned by root? */
387 || (st
.st_mode
& (S_IWGRP
| S_IWOTH
)) /* Writable by non-root? */
388 || !(f
= fopen_for_read(config_file
)) /* Cannot open? */
393 suid_cfg_readable
= 1;
401 if (!fgets(buffer
, sizeof(buffer
), f
)) { /* Are we done? */
403 //if (ferror(f)) { /* Make sure it wasn't a read error. */
404 // errmsg = "reading";
408 suid_config
= sct_head
; /* Success, so set the pointer. */
413 lc
++; /* Got a (partial) line. */
415 /* If a line is too long for our buffer, we consider it an error.
416 * The following test does mistreat one corner case though.
417 * If the final line of the file does not end with a newline and
418 * yet exactly fills the buffer, it will be treated as too long
419 * even though there isn't really a problem. But it isn't really
420 * worth adding code to deal with such an unlikely situation, and
421 * we do err on the side of caution. Besides, the line would be
422 * too long if it did end with a newline. */
423 if (!strchr(s
, '\n') && !feof(f
)) {
424 errmsg
= "line too long";
428 /* Trim leading and trailing whitespace, ignoring comments, and
429 * check if the resulting string is empty. */
430 s
= get_trimmed_slice(s
, strchrnul(s
, '#'));
435 /* Check for a section header. */
438 /* Unlike the old code, we ignore leading and trailing
439 * whitespace for the section name. We also require that
440 * there are no stray characters after the closing bracket. */
441 char *e
= strchr(s
, ']');
442 if (!e
/* Missing right bracket? */
443 || e
[1] /* Trailing characters? */
444 || !*(s
= get_trimmed_slice(s
+1, e
)) /* Missing name? */
446 errmsg
= "section header";
449 /* Right now we only have one section so just check it.
450 * If more sections are added in the future, please don't
451 * resort to cascading ifs with multiple strcasecmp calls.
452 * That kind of bloated code is all too common. A loop
453 * and a string table would be a better choice unless the
454 * number of sections is very small. */
455 if (strcasecmp(s
, "SUID") == 0) {
459 section
= -1; /* Unknown section so set to skip. */
463 /* Process sections. */
465 if (section
== 1) { /* SUID */
466 /* Since we trimmed leading and trailing space above, we're
467 * now looking for strings of the form
468 * <key>[::space::]*=[::space::]*<value>
469 * where both key and value could contain inner whitespace. */
471 /* First get the key (an applet name in our case). */
472 char *e
= strchr(s
, '=');
474 s
= get_trimmed_slice(s
, e
);
476 if (!e
|| !*s
) { /* Missing '=' or empty key. */
481 /* Ok, we have an applet name. Process the rhs if this
482 * applet is currently built in and ignore it otherwise.
483 * Note: this can hide config file bugs which only pop
484 * up when the busybox configuration is changed. */
485 applet_no
= find_applet_by_name(s
);
486 if (applet_no
>= 0) {
488 struct suid_config_t
*sct
;
490 /* Note: We currently don't check for duplicates!
491 * The last config line for each applet will be the
492 * one used since we insert at the head of the list.
493 * I suppose this could be considered a feature. */
494 sct
= xzalloc(sizeof(*sct
));
495 sct
->m_applet
= applet_no
;
497 sct
->m_next
= sct_head
;
500 /* Get the specified mode. */
502 e
= skip_whitespace(e
+1);
504 for (i
= 0; i
< 3; i
++) {
505 /* There are 4 chars for each of user/group/other.
506 * "x-xx" instead of "x-" are to make
507 * "idx > 3" check catch invalid chars.
509 static const char mode_chars
[] ALIGN1
= "Ssx-" "Ssx-" "x-xx";
510 static const unsigned short mode_mask
[] ALIGN2
= {
511 S_ISUID
, S_ISUID
|S_IXUSR
, S_IXUSR
, 0, /* Ssx- */
512 S_ISGID
, S_ISGID
|S_IXGRP
, S_IXGRP
, 0, /* Ssx- */
515 const char *q
= strchrnul(mode_chars
+ 4*i
, *e
);
516 unsigned idx
= q
- (mode_chars
+ 4*i
);
521 sct
->m_mode
|= mode_mask
[q
- mode_chars
];
525 /* Now get the user/group info. */
527 s
= skip_whitespace(e
);
528 /* Default is 0.0, else parse USER.GROUP: */
530 /* We require whitespace between mode and USER.GROUP */
531 if ((s
== e
) || !(e
= strchr(s
, '.'))) {
535 *e
= ':'; /* get_uidgid needs USER:GROUP syntax */
536 if (get_uidgid(&sct
->m_ugid
, s
) == 0) {
537 errmsg
= "unknown user/group";
545 /* Unknown sections are ignored. */
547 /* Encountering configuration lines prior to seeing a
548 * section header is treated as an error. This is how
549 * the old code worked, but it may not be desirable.
550 * We may want to simply ignore such lines in case they
551 * are used in some future version of busybox. */
553 errmsg
= "keyword outside section";
560 bb_error_msg("parse error in %s, line %u: %s", config_file
, lc
, errmsg
);
562 /* Release any allocated memory before returning. */
563 llist_free((llist_t
*)sct_head
, NULL
);
566 static inline void parse_config_file(void)
568 IF_FEATURE_SUID(ruid
= getuid();)
570 # endif /* FEATURE_SUID_CONFIG */
573 # if ENABLE_FEATURE_SUID
574 static void check_suid(int applet_no
)
576 gid_t rgid
; /* real gid */
578 if (ruid
== 0) /* set by parse_config_file() */
579 return; /* run by root - no need to check more */
582 # if ENABLE_FEATURE_SUID_CONFIG
583 if (suid_cfg_readable
) {
585 struct suid_config_t
*sct
;
588 for (sct
= suid_config
; sct
; sct
= sct
->m_next
) {
589 if (sct
->m_applet
== applet_no
)
592 goto check_need_suid
;
594 /* Is this user allowed to run this applet? */
596 if (sct
->m_ugid
.uid
== ruid
)
599 else if ((sct
->m_ugid
.gid
== rgid
) || ingroup(ruid
, sct
->m_ugid
.gid
))
600 /* same group / in group */
602 if (!(m
& S_IXOTH
)) /* is x bit not set? */
603 bb_error_msg_and_die("you have no permission to run this applet");
605 /* We set effective AND saved ids. If saved-id is not set
606 * like we do below, seteuid(0) can still later succeed! */
608 /* Are we directed to change gid
609 * (APPLET = *s* USER.GROUP or APPLET = *S* USER.GROUP)?
611 if (sct
->m_mode
& S_ISGID
)
612 rgid
= sct
->m_ugid
.gid
;
613 /* else: we will set egid = rgid, thus dropping sgid effect */
614 if (setresgid(-1, rgid
, rgid
))
615 bb_perror_msg_and_die("setresgid");
617 /* Are we directed to change uid
618 * (APPLET = s** USER.GROUP or APPLET = S** USER.GROUP)?
621 if (sct
->m_mode
& S_ISUID
)
622 uid
= sct
->m_ugid
.uid
;
623 /* else: we will set euid = ruid, thus dropping suid effect */
624 if (setresuid(-1, uid
, uid
))
625 bb_perror_msg_and_die("setresuid");
629 # if !ENABLE_FEATURE_SUID_CONFIG_QUIET
631 static bool onetime
= 0;
635 bb_error_msg("using fallback suid method");
641 if (APPLET_SUID(applet_no
) == BB_SUID_REQUIRE
) {
642 /* Real uid is not 0. If euid isn't 0 too, suid bit
643 * is most probably not set on our executable */
645 bb_error_msg_and_die("must be suid to work properly");
646 } else if (APPLET_SUID(applet_no
) == BB_SUID_DROP
) {
647 xsetgid(rgid
); /* drop all privileges */
650 # if ENABLE_FEATURE_SUID_CONFIG
652 llist_free((llist_t
*)suid_config
, NULL
);
656 # define check_suid(x) ((void)0)
657 # endif /* FEATURE_SUID */
660 # if ENABLE_FEATURE_INSTALLER
661 static const char usr_bin
[] ALIGN1
= "/usr/bin/";
662 static const char usr_sbin
[] ALIGN1
= "/usr/sbin/";
663 static const char *const install_dir
[] = {
664 &usr_bin
[8], /* "/" */
665 &usr_bin
[4], /* "/bin/" */
666 &usr_sbin
[4] /* "/sbin/" */
667 # if !ENABLE_INSTALL_NO_USR
673 /* create (sym)links for each applet */
674 static void install_links(const char *busybox
, int use_symbolic_links
,
675 char *custom_install_dir
)
678 * this should be consistent w/ the enum,
679 * busybox.h::bb_install_loc_t, or else... */
680 int (*lf
)(const char *, const char *);
682 const char *appname
= applet_names
;
687 if (use_symbolic_links
)
690 for (i
= 0; i
< ARRAY_SIZE(applet_main
); i
++) {
691 fpc
= concat_path_file(
692 custom_install_dir
? custom_install_dir
: install_dir
[APPLET_INSTALL_LOC(i
)],
694 // debug: bb_error_msg("%slinking %s to busybox",
695 // use_symbolic_links ? "sym" : "", fpc);
696 rc
= lf(busybox
, fpc
);
697 if (rc
!= 0 && errno
!= EEXIST
) {
698 bb_simple_perror_msg(fpc
);
701 while (*appname
++ != '\0')
705 # elif ENABLE_BUSYBOX
706 static void install_links(const char *busybox UNUSED_PARAM
,
707 int use_symbolic_links UNUSED_PARAM
,
708 char *custom_install_dir UNUSED_PARAM
)
714 /* If we were called as "busybox..." */
715 static int busybox_main(char **argv
)
718 /* Called without arguments */
721 unsigned output_width
;
724 if (ENABLE_FEATURE_AUTOWIDTH
) {
725 /* Obtain the terminal width */
726 output_width
= get_terminal_width(2);
730 full_write2_str(bb_banner
); /* reuse const string */
731 full_write2_str(" multi-call binary.\n"); /* reuse */
733 "BusyBox is copyrighted by many authors between 1998-2015.\n"
734 "Licensed under GPLv2. See source distribution for detailed\n"
735 "copyright notices.\n"
737 "Usage: busybox [function [arguments]...]\n"
738 " or: busybox --list"IF_FEATURE_INSTALLER("[-full]")"\n"
739 IF_FEATURE_INSTALLER(
740 " or: busybox --install [-s] [DIR]\n"
742 " or: function [arguments]...\n"
744 IF_NOT_FEATURE_SH_STANDALONE(
745 "\tBusyBox is a multi-call binary that combines many common Unix\n"
746 "\tutilities into a single executable. Most people will create a\n"
747 "\tlink to busybox for each function they wish to use and BusyBox\n"
748 "\twill act like whatever it was invoked as.\n"
750 IF_FEATURE_SH_STANDALONE(
751 "\tBusyBox is a multi-call binary that combines many common Unix\n"
752 "\tutilities into a single executable. The shell in this build\n"
753 "\tis configured to run built-in utilities without $PATH search.\n"
754 "\tYou don't need to install a link to busybox for each utility.\n"
755 "\tTo run external program, use full path (/sbin/ip instead of ip).\n"
758 "Currently defined functions:\n"
762 /* prevent last comma to be in the very last pos */
765 int len2
= strlen(a
) + 2;
766 if (col
>= (int)output_width
- len2
) {
767 full_write2_str(",\n");
772 full_write2_str("\t");
774 full_write2_str(", ");
780 full_write2_str("\n\n");
784 if (is_prefixed_with(argv
[1], "--list")) {
786 const char *a
= applet_names
;
789 # if ENABLE_FEATURE_INSTALLER
790 if (argv
[1][6]) /* --list-full? */
791 full_write2_str(install_dir
[APPLET_INSTALL_LOC(i
)] + 1);
794 full_write2_str("\n");
802 if (ENABLE_FEATURE_INSTALLER
&& strcmp(argv
[1], "--install") == 0) {
803 int use_symbolic_links
;
806 busybox
= xmalloc_readlink(bb_busybox_exec_path
);
808 /* bb_busybox_exec_path is usually "/proc/self/exe".
809 * In chroot, readlink("/proc/self/exe") usually fails.
810 * In such case, better use argv[0] as symlink target
811 * if it is a full path name.
813 if (argv
[0][0] != '/')
814 bb_error_msg_and_die("'%s' is not an absolute path", argv
[0]);
817 /* busybox --install [-s] [DIR]:
819 * DIR: directory to install links to
821 use_symbolic_links
= (argv
[2] && strcmp(argv
[2], "-s") == 0 && ++argv
);
822 install_links(busybox
, use_symbolic_links
, argv
[2]);
826 if (strcmp(argv
[1], "--help") == 0) {
827 /* "busybox --help [<applet>]" */
830 /* convert to "<applet> --help" */
834 /* "busybox <applet> arg1 arg2 ..." */
837 /* We support "busybox /a/path/to/applet args..." too. Allows for
838 * "#!/bin/busybox"-style wrappers */
839 applet_name
= bb_get_last_path_component_nostrip(argv
[0]);
840 run_applet_and_exit(applet_name
, argv
);
844 void FAST_FUNC
run_applet_no_and_exit(int applet_no
, char **argv
)
851 /* Reinit some shared global data */
852 xfunc_error_retval
= EXIT_FAILURE
;
853 applet_name
= bb_get_last_path_component_nostrip(argv
[0]);
855 /* Special case. POSIX says "test --help"
856 * should be no different from e.g. "test --foo".
857 * Thus for "test", we skip --help check.
858 * "true" and "false" are also special.
861 #if defined APPLET_NO_test
862 && applet_no
!= APPLET_NO_test
864 #if defined APPLET_NO_true
865 && applet_no
!= APPLET_NO_true
867 #if defined APPLET_NO_false
868 && applet_no
!= APPLET_NO_false
871 if (argc
== 2 && strcmp(argv
[1], "--help") == 0) {
872 /* Make "foo --help" exit with 0: */
873 xfunc_error_retval
= 0;
877 if (ENABLE_FEATURE_SUID
)
878 check_suid(applet_no
);
879 exit(applet_main
[applet_no
](argc
, argv
));
882 static NORETURN
void run_applet_and_exit(const char *name
, char **argv
)
887 if (is_prefixed_with(name
, "busybox"))
888 exit(busybox_main(argv
));
890 /* find_applet_by_name() search is more expensive, so goes second */
891 applet
= find_applet_by_name(name
);
893 run_applet_no_and_exit(applet
, argv
);
895 /*bb_error_msg_and_die("applet not found"); - links in printf */
896 full_write2_str(applet_name
);
897 full_write2_str(": applet not found\n");
898 /* POSIX: "If a command is not found, the exit status shall be 127" */
902 #endif /* !defined(SINGLE_APPLET_MAIN) */
906 #if ENABLE_BUILD_LIBBUSYBOX
907 int lbb_main(char **argv
)
909 int main(int argc UNUSED_PARAM
, char **argv
)
913 /* TODO: find a use for a block of memory between end of .bss
914 * and end of page. For example, I'm getting "_end:0x812e698 2408 bytes"
915 * - more than 2k of wasted memory (in this particular build)
916 * *per each running process*!
917 * (If your linker does not generate "_end" name, weak attribute
918 * makes &_end == NULL, end_len == 0 here.)
920 extern char _end
[] __attribute__((weak
));
921 unsigned end_len
= (-(int)_end
) & 0xfff;
922 printf("_end:%p %u bytes\n", &_end
, end_len
);
925 /* Tweak malloc for reduced memory consumption */
926 #ifdef M_TRIM_THRESHOLD
927 /* M_TRIM_THRESHOLD is the maximum amount of freed top-most memory
928 * to keep before releasing to the OS
929 * Default is way too big: 256k
931 mallopt(M_TRIM_THRESHOLD
, 8 * 1024);
933 #ifdef M_MMAP_THRESHOLD
934 /* M_MMAP_THRESHOLD is the request size threshold for using mmap()
935 * Default is too big: 256k
937 mallopt(M_MMAP_THRESHOLD
, 32 * 1024 - 256);
941 /* NOMMU re-exec trick sets high-order bit in first byte of name */
942 if (argv
[0][0] & 0x80) {
948 #if defined(SINGLE_APPLET_MAIN)
949 /* Only one applet is selected in .config */
950 if (argv
[1] && is_prefixed_with(argv
[0], "busybox")) {
951 /* "busybox <applet> <params>" should still work as expected */
954 /* applet_names in this case is just "applet\0\0" */
955 lbb_prepare(applet_names
IF_FEATURE_INDIVIDUAL(, argv
));
956 return SINGLE_APPLET_MAIN(argc
, argv
);
958 lbb_prepare("busybox" IF_FEATURE_INDIVIDUAL(, argv
));
961 if (argv
[1] && is_prefixed_with(bb_basename(argv
[0]), "busybox"))
964 applet_name
= argv
[0];
965 if (applet_name
[0] == '-')
967 applet_name
= bb_basename(applet_name
);
969 parse_config_file(); /* ...maybe, if FEATURE_SUID_CONFIG */
971 run_applet_and_exit(applet_name
, argv
);