2000-09-26 01:09:18 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Busybox main internal header file
|
|
|
|
*
|
2006-01-22 22:55:11 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-09-26 01:09:18 +00:00
|
|
|
*/
|
|
|
|
#ifndef _BB_INTERNAL_H_
|
|
|
|
#define _BB_INTERNAL_H_ 1
|
|
|
|
|
2005-07-27 06:55:36 +00:00
|
|
|
#include "bb_config.h"
|
2000-09-26 01:09:18 +00:00
|
|
|
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdio.h>
|
2004-02-05 14:45:58 +00:00
|
|
|
#include <stdlib.h>
|
2000-09-26 01:09:18 +00:00
|
|
|
#include <stdarg.h>
|
2001-01-02 01:16:38 +00:00
|
|
|
#include <sys/types.h>
|
2005-09-29 07:55:51 +00:00
|
|
|
#include <sys/stat.h>
|
2000-09-26 01:09:18 +00:00
|
|
|
|
2005-03-04 01:09:43 +00:00
|
|
|
#if __GNU_LIBRARY__ < 5 && \
|
|
|
|
!defined(__dietlibc__) && \
|
|
|
|
!defined(_NEWLIB_VERSION)
|
|
|
|
#error "Sorry, this libc version is not supported :("
|
2003-07-22 08:56:55 +00:00
|
|
|
#endif
|
|
|
|
|
2006-02-16 15:40:24 +00:00
|
|
|
extern const char BB_BANNER[];
|
2001-04-12 20:11:55 +00:00
|
|
|
|
2001-03-14 01:36:52 +00:00
|
|
|
#include <features.h>
|
2001-03-14 01:15:06 +00:00
|
|
|
|
2002-08-22 15:54:22 +00:00
|
|
|
/* Pull in the utility routines from libbb */
|
2002-06-04 20:06:25 +00:00
|
|
|
#include "libbb.h"
|
2001-03-14 01:15:06 +00:00
|
|
|
|
2000-09-26 01:09:18 +00:00
|
|
|
enum Location {
|
|
|
|
_BB_DIR_ROOT = 0,
|
|
|
|
_BB_DIR_BIN,
|
|
|
|
_BB_DIR_SBIN,
|
|
|
|
_BB_DIR_USR_BIN,
|
|
|
|
_BB_DIR_USR_SBIN
|
|
|
|
};
|
|
|
|
|
2002-06-04 20:06:25 +00:00
|
|
|
enum SUIDRoot {
|
|
|
|
_BB_SUID_NEVER = 0,
|
|
|
|
_BB_SUID_MAYBE,
|
|
|
|
_BB_SUID_ALWAYS
|
|
|
|
};
|
|
|
|
|
2000-09-26 01:09:18 +00:00
|
|
|
struct BB_applet {
|
2002-08-22 15:54:22 +00:00
|
|
|
const char *name;
|
|
|
|
int (*main) (int argc, char **argv);
|
2006-01-22 22:55:11 +00:00
|
|
|
__extension__ enum Location location:4;
|
|
|
|
__extension__ enum SUIDRoot need_suid:4;
|
2000-09-26 01:09:18 +00:00
|
|
|
};
|
2002-08-22 15:54:22 +00:00
|
|
|
|
2000-09-26 01:09:18 +00:00
|
|
|
/* From busybox.c */
|
|
|
|
extern const struct BB_applet applets[];
|
|
|
|
|
2000-11-30 00:27:06 +00:00
|
|
|
/* Automagically pull in all the applet function prototypes and
|
2000-12-01 19:02:24 +00:00
|
|
|
* applet usage strings. These are all of the form:
|
2000-11-30 00:27:06 +00:00
|
|
|
* extern int foo_main(int argc, char **argv);
|
|
|
|
* extern const char foo_usage[];
|
2004-03-15 08:29:22 +00:00
|
|
|
* These are all autogenerated from the set of currently defined applets.
|
2000-11-30 00:27:06 +00:00
|
|
|
*/
|
|
|
|
#define PROTOTYPES
|
|
|
|
#include "applets.h"
|
|
|
|
#undef PROTOTYPES
|
2000-09-26 01:09:18 +00:00
|
|
|
|
2001-03-16 22:47:14 +00:00
|
|
|
#ifndef RB_POWER_OFF
|
|
|
|
/* Stop system and switch power off if possible. */
|
|
|
|
#define RB_POWER_OFF 0x4321fedc
|
2001-03-01 18:51:33 +00:00
|
|
|
#endif
|
2001-01-22 22:35:38 +00:00
|
|
|
|
2002-03-16 02:12:30 +00:00
|
|
|
/* Try to pull in PATH_MAX */
|
|
|
|
#include <limits.h>
|
2002-08-22 15:54:22 +00:00
|
|
|
|
2002-03-16 02:12:30 +00:00
|
|
|
/* for PATH_MAX on systems that don't have it in limits.h */
|
2002-08-22 15:54:22 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#ifndef PATH_MAX
|
2002-01-26 23:58:22 +00:00
|
|
|
#define PATH_MAX 256
|
|
|
|
#endif
|
2001-03-13 00:40:19 +00:00
|
|
|
|
2005-09-21 17:38:30 +00:00
|
|
|
#ifdef DMALLOC
|
|
|
|
#include <dmalloc.h>
|
|
|
|
#endif
|
|
|
|
|
2002-08-22 15:54:22 +00:00
|
|
|
#endif /* _BB_INTERNAL_H_ */
|