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
|
|
|
|
|
2005-07-27 12:25:36 +05:30
|
|
|
#include "bb_config.h"
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdio.h>
|
2004-02-05 20:15:58 +05:30
|
|
|
#include <stdlib.h>
|
2000-09-26 06:39:18 +05:30
|
|
|
#include <stdarg.h>
|
2001-01-02 06:46:38 +05:30
|
|
|
#include <sys/types.h>
|
2005-09-29 13:25:51 +05:30
|
|
|
#include <sys/stat.h>
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2006-02-16 21:10:24 +05:30
|
|
|
extern const char BB_BANNER[];
|
2001-04-13 01:41:55 +05:30
|
|
|
|
2002-08-22 21:24:22 +05:30
|
|
|
/* Pull in the utility routines from libbb */
|
2002-06-05 01:36:25 +05:30
|
|
|
#include "libbb.h"
|
2001-03-14 06:45:06 +05:30
|
|
|
|
2000-09-26 06:39:18 +05:30
|
|
|
enum Location {
|
|
|
|
_BB_DIR_ROOT = 0,
|
|
|
|
_BB_DIR_BIN,
|
|
|
|
_BB_DIR_SBIN,
|
|
|
|
_BB_DIR_USR_BIN,
|
|
|
|
_BB_DIR_USR_SBIN
|
|
|
|
};
|
|
|
|
|
2002-06-05 01:36:25 +05:30
|
|
|
enum SUIDRoot {
|
|
|
|
_BB_SUID_NEVER = 0,
|
|
|
|
_BB_SUID_MAYBE,
|
|
|
|
_BB_SUID_ALWAYS
|
|
|
|
};
|
|
|
|
|
2000-09-26 06:39:18 +05:30
|
|
|
struct BB_applet {
|
2002-08-22 21:24:22 +05:30
|
|
|
const char *name;
|
|
|
|
int (*main) (int argc, char **argv);
|
2006-01-23 04:25:11 +05:30
|
|
|
__extension__ enum Location location:4;
|
|
|
|
__extension__ enum SUIDRoot need_suid:4;
|
2000-09-26 06:39:18 +05:30
|
|
|
};
|
2002-08-22 21:24:22 +05:30
|
|
|
|
2000-09-26 06:39:18 +05:30
|
|
|
/* From busybox.c */
|
|
|
|
extern const struct BB_applet applets[];
|
|
|
|
|
2000-11-30 05:57:06 +05:30
|
|
|
/* Automagically pull in all the applet function prototypes and
|
2000-12-02 00:32:24 +05:30
|
|
|
* applet usage strings. These are all of the form:
|
2000-11-30 05:57:06 +05:30
|
|
|
* extern int foo_main(int argc, char **argv);
|
|
|
|
* extern const char foo_usage[];
|
2004-03-15 13:59:22 +05:30
|
|
|
* These are all autogenerated from the set of currently defined applets.
|
2000-11-30 05:57:06 +05:30
|
|
|
*/
|
|
|
|
#define PROTOTYPES
|
|
|
|
#include "applets.h"
|
|
|
|
#undef PROTOTYPES
|
2000-09-26 06:39:18 +05:30
|
|
|
|
2001-03-17 04:17:14 +05:30
|
|
|
#ifndef RB_POWER_OFF
|
|
|
|
/* Stop system and switch power off if possible. */
|
|
|
|
#define RB_POWER_OFF 0x4321fedc
|
2001-03-02 00:21:33 +05:30
|
|
|
#endif
|
2001-01-23 04:05:38 +05:30
|
|
|
|
2002-03-16 07:42:30 +05:30
|
|
|
/* Try to pull in PATH_MAX */
|
|
|
|
#include <limits.h>
|
2002-08-22 21:24:22 +05:30
|
|
|
|
2002-03-16 07:42:30 +05:30
|
|
|
/* for PATH_MAX on systems that don't have it in limits.h */
|
2002-08-22 21:24:22 +05:30
|
|
|
#include <sys/param.h>
|
|
|
|
#ifndef PATH_MAX
|
2002-01-27 05:28:22 +05:30
|
|
|
#define PATH_MAX 256
|
|
|
|
#endif
|
2001-03-13 06:10:19 +05:30
|
|
|
|
2005-09-21 23:08:30 +05:30
|
|
|
#ifdef DMALLOC
|
|
|
|
#include <dmalloc.h>
|
|
|
|
#endif
|
|
|
|
|
2002-08-22 21:24:22 +05:30
|
|
|
#endif /* _BB_INTERNAL_H_ */
|