2000-09-26 06:39:18 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Busybox main internal header file
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2000-09-26 06:39:18 +05:30
|
|
|
*/
|
2009-04-09 18:05:13 +05:30
|
|
|
#ifndef BUSYBOX_H
|
|
|
|
#define BUSYBOX_H 1
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2002-06-05 01:36:25 +05:30
|
|
|
#include "libbb.h"
|
2001-03-14 06:45:06 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2007-11-28 12:19:03 +05:30
|
|
|
/* order matters: used as index into "install_dir[]" in appletlib.c */
|
2007-04-11 03:08:30 +05:30
|
|
|
typedef enum bb_install_loc_t {
|
2000-09-26 06:39:18 +05:30
|
|
|
_BB_DIR_ROOT = 0,
|
|
|
|
_BB_DIR_BIN,
|
|
|
|
_BB_DIR_SBIN,
|
|
|
|
_BB_DIR_USR_BIN,
|
|
|
|
_BB_DIR_USR_SBIN
|
2007-04-11 03:08:30 +05:30
|
|
|
} bb_install_loc_t;
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2007-04-11 03:08:30 +05:30
|
|
|
typedef enum bb_suid_t {
|
2009-07-30 16:27:19 +05:30
|
|
|
_BB_SUID_DROP = 0,
|
2002-06-05 01:36:25 +05:30
|
|
|
_BB_SUID_MAYBE,
|
2009-07-30 16:27:19 +05:30
|
|
|
_BB_SUID_REQUIRE
|
2007-04-11 03:08:30 +05:30
|
|
|
} bb_suid_t;
|
2002-06-05 01:36:25 +05:30
|
|
|
|
2007-11-28 12:19:03 +05:30
|
|
|
|
|
|
|
/* Defined in appletlib.c (by including generated applet_tables.h) */
|
|
|
|
/* Keep in sync with applets/applet_tables.c! */
|
|
|
|
extern const char applet_names[];
|
2007-11-29 09:01:20 +05:30
|
|
|
extern int (*const applet_main[])(int argc, char **argv);
|
|
|
|
extern const uint16_t applet_nameofs[];
|
|
|
|
extern const uint8_t applet_install_loc[];
|
2007-11-28 12:19:03 +05:30
|
|
|
|
2007-11-29 09:01:20 +05:30
|
|
|
#if ENABLE_FEATURE_SUID || ENABLE_FEATURE_PREFER_APPLETS
|
2010-07-15 11:48:46 +05:30
|
|
|
# define APPLET_NAME(i) (applet_names + (applet_nameofs[i] & 0x0fff))
|
2007-11-28 12:19:03 +05:30
|
|
|
#else
|
2010-07-15 11:48:46 +05:30
|
|
|
# define APPLET_NAME(i) (applet_names + applet_nameofs[i])
|
2007-11-29 09:01:20 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS
|
2010-07-15 11:48:46 +05:30
|
|
|
# define APPLET_IS_NOFORK(i) (applet_nameofs[i] & (1 << 12))
|
|
|
|
# define APPLET_IS_NOEXEC(i) (applet_nameofs[i] & (1 << 13))
|
|
|
|
#else
|
|
|
|
# define APPLET_IS_NOFORK(i) 0
|
|
|
|
# define APPLET_IS_NOEXEC(i) 0
|
2007-04-11 03:08:30 +05:30
|
|
|
#endif
|
2007-11-28 12:19:03 +05:30
|
|
|
|
2007-04-11 03:08:30 +05:30
|
|
|
#if ENABLE_FEATURE_SUID
|
2010-07-15 11:48:46 +05:30
|
|
|
# define APPLET_SUID(i) ((applet_nameofs[i] >> 14) & 0x3)
|
2007-04-11 03:08:30 +05:30
|
|
|
#endif
|
2007-11-28 12:19:03 +05:30
|
|
|
|
|
|
|
#if ENABLE_FEATURE_INSTALLER
|
2007-11-29 09:01:20 +05:30
|
|
|
#define APPLET_INSTALL_LOC(i) ({ \
|
|
|
|
unsigned v = (i); \
|
|
|
|
if (v & 1) v = applet_install_loc[v/2] >> 4; \
|
|
|
|
else v = applet_install_loc[v/2] & 0xf; \
|
|
|
|
v; })
|
2007-11-28 12:19:03 +05:30
|
|
|
#endif
|
2007-10-11 15:35:36 +05:30
|
|
|
|
|
|
|
|
|
|
|
/* Length of these names has effect on size of libbusybox
|
|
|
|
* and "individual" binaries. Keep them short.
|
|
|
|
*/
|
2007-10-10 20:11:07 +05:30
|
|
|
#if ENABLE_BUILD_LIBBUSYBOX
|
2007-10-11 15:35:36 +05:30
|
|
|
#if ENABLE_FEATURE_SHARED_BUSYBOX
|
2008-03-17 14:34:04 +05:30
|
|
|
int lbb_main(char **argv) EXTERNALLY_VISIBLE;
|
2007-10-11 15:35:36 +05:30
|
|
|
#else
|
2008-03-17 14:34:04 +05:30
|
|
|
int lbb_main(char **argv);
|
2007-10-10 20:11:07 +05:30
|
|
|
#endif
|
2007-10-11 15:35:36 +05:30
|
|
|
#endif
|
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
#endif
|