2000-09-26 06:39:18 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
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"
|
2011-03-28 04:53:38 +05:30
|
|
|
/* BB_DIR_foo and BB_SUID_bar constants: */
|
|
|
|
#include "applet_metadata.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
|
|
|
/* Defined in appletlib.c (by including generated applet_tables.h) */
|
|
|
|
/* Keep in sync with applets/applet_tables.c! */
|
2012-07-24 19:26:37 +05:30
|
|
|
extern const char applet_names[] ALIGN1;
|
2007-11-29 09:01:20 +05:30
|
|
|
extern int (*const applet_main[])(int argc, char **argv);
|
|
|
|
extern const uint16_t applet_nameofs[];
|
2012-07-24 19:26:37 +05:30
|
|
|
extern const uint8_t applet_install_loc[] ALIGN1;
|
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
|