Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 4 | */ |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 5 | #ifndef BUSYBOX_H |
| 6 | #define BUSYBOX_H 1 |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 7 | |
Robert Griebl | c9aca45 | 2002-06-04 20:06:25 +0000 | [diff] [blame] | 8 | #include "libbb.h" |
Denys Vlasenko | 6ec1510 | 2011-03-28 01:23:38 +0200 | [diff] [blame] | 9 | /* BB_DIR_foo and BB_SUID_bar constants: */ |
| 10 | #include "applet_metadata.h" |
Eric Andersen | c319601 | 2001-03-14 01:15:06 +0000 | [diff] [blame] | 11 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 12 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 13 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 14 | /* Defined in appletlib.c (by including generated applet_tables.h) */ |
| 15 | /* Keep in sync with applets/applet_tables.c! */ |
Michael Tokarev | 32f774c | 2012-07-24 15:56:37 +0200 | [diff] [blame] | 16 | extern const char applet_names[] ALIGN1; |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 17 | extern int (*const applet_main[])(int argc, char **argv); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 18 | extern const uint16_t applet_nameofs[]; |
Michael Tokarev | 32f774c | 2012-07-24 15:56:37 +0200 | [diff] [blame] | 19 | extern const uint8_t applet_install_loc[] ALIGN1; |
Robert Griebl | c9aca45 | 2002-06-04 20:06:25 +0000 | [diff] [blame] | 20 | |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 21 | #if ENABLE_FEATURE_SUID || ENABLE_FEATURE_PREFER_APPLETS |
Denys Vlasenko | 8fa1f5d | 2010-07-15 08:18:46 +0200 | [diff] [blame] | 22 | # define APPLET_NAME(i) (applet_names + (applet_nameofs[i] & 0x0fff)) |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 23 | #else |
Denys Vlasenko | 8fa1f5d | 2010-07-15 08:18:46 +0200 | [diff] [blame] | 24 | # define APPLET_NAME(i) (applet_names + applet_nameofs[i]) |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 25 | #endif |
| 26 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 27 | #if ENABLE_FEATURE_PREFER_APPLETS |
Denys Vlasenko | 8fa1f5d | 2010-07-15 08:18:46 +0200 | [diff] [blame] | 28 | # define APPLET_IS_NOFORK(i) (applet_nameofs[i] & (1 << 12)) |
| 29 | # define APPLET_IS_NOEXEC(i) (applet_nameofs[i] & (1 << 13)) |
| 30 | #else |
| 31 | # define APPLET_IS_NOFORK(i) 0 |
| 32 | # define APPLET_IS_NOEXEC(i) 0 |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 33 | #endif |
| 34 | |
| 35 | #if ENABLE_FEATURE_SUID |
Denys Vlasenko | 8fa1f5d | 2010-07-15 08:18:46 +0200 | [diff] [blame] | 36 | # define APPLET_SUID(i) ((applet_nameofs[i] >> 14) & 0x3) |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 37 | #endif |
| 38 | |
| 39 | #if ENABLE_FEATURE_INSTALLER |
| 40 | #define APPLET_INSTALL_LOC(i) ({ \ |
| 41 | unsigned v = (i); \ |
| 42 | if (v & 1) v = applet_install_loc[v/2] >> 4; \ |
| 43 | else v = applet_install_loc[v/2] & 0xf; \ |
| 44 | v; }) |
Denis Vlasenko | 335b63d | 2007-04-10 21:38:30 +0000 | [diff] [blame] | 45 | #endif |
Glenn L McGrath | 60a22ad | 2002-08-22 15:54:22 +0000 | [diff] [blame] | 46 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 47 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 48 | /* Length of these names has effect on size of libbusybox |
| 49 | * and "individual" binaries. Keep them short. |
| 50 | */ |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 51 | #if ENABLE_BUILD_LIBBUSYBOX |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 52 | #if ENABLE_FEATURE_SHARED_BUSYBOX |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 53 | int lbb_main(char **argv) EXTERNALLY_VISIBLE; |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 54 | #else |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 55 | int lbb_main(char **argv); |
Denis Vlasenko | 724d196 | 2007-10-10 14:41:07 +0000 | [diff] [blame] | 56 | #endif |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 57 | #endif |
| 58 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 59 | POP_SAVED_FUNCTION_VISIBILITY |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 60 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 61 | #endif |