2000-09-26 06:39:18 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Busybox main internal header file
|
|
|
|
*
|
2006-01-23 04:25:11 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-09-26 06:39:18 +05:30
|
|
|
*/
|
|
|
|
#ifndef _BB_INTERNAL_H_
|
|
|
|
#define _BB_INTERNAL_H_ 1
|
|
|
|
|
2002-06-05 01:36:25 +05:30
|
|
|
#include "libbb.h"
|
2001-03-14 06:45:06 +05:30
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility push(hidden)
|
|
|
|
#endif
|
|
|
|
|
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 {
|
2002-06-05 01:36:25 +05:30
|
|
|
_BB_SUID_NEVER = 0,
|
|
|
|
_BB_SUID_MAYBE,
|
|
|
|
_BB_SUID_ALWAYS
|
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
|
|
|
|
#define APPLET_NAME(i) (applet_names + (applet_nameofs[i] & 0x0fff))
|
2007-11-28 12:19:03 +05:30
|
|
|
#else
|
2007-11-29 09:01:20 +05:30
|
|
|
#define APPLET_NAME(i) (applet_names + applet_nameofs[i])
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS
|
|
|
|
#define APPLET_IS_NOFORK(i) (applet_nameofs[i] & (1 << 12))
|
|
|
|
#define APPLET_IS_NOEXEC(i) (applet_nameofs[i] & (1 << 13))
|
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
|
2007-11-28 12:19:03 +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
|
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility pop
|
|
|
|
#endif
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2007-02-03 22:57:14 +05:30
|
|
|
#endif /* _BB_INTERNAL_H_ */
|