blob: d4a57732dfb6e57dea72efa88422c783ba6ddb5e [file] [log] [blame]
Eric Andersenf6b71392000-09-26 01:09:18 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Busybox main internal header file
4 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
21 * Permission has been granted to redistribute this code under the GPL.
22 *
23 */
24#ifndef _BB_INTERNAL_H_
25#define _BB_INTERNAL_H_ 1
26
27#include "Config.h"
28
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <stdio.h>
Eric Andersenf6b71392000-09-26 01:09:18 +000030#include <stdarg.h>
Eric Andersenf6b71392000-09-26 01:09:18 +000031#include <sys/stat.h>
Eric Andersen01bda5d2001-01-02 01:16:38 +000032#include <sys/types.h>
Eric Andersenf6b71392000-09-26 01:09:18 +000033
Eric Andersen01bda5d2001-01-02 01:16:38 +000034#ifdef DMALLOC
35#include "dmalloc.h"
36#endif
Eric Andersenf6b71392000-09-26 01:09:18 +000037
Eric Andersen2b1c3672001-03-14 01:36:52 +000038#include <features.h>
Eric Andersenc3196012001-03-14 01:15:06 +000039
40
Eric Andersenf6b71392000-09-26 01:09:18 +000041enum Location {
42 _BB_DIR_ROOT = 0,
43 _BB_DIR_BIN,
44 _BB_DIR_SBIN,
45 _BB_DIR_USR_BIN,
46 _BB_DIR_USR_SBIN
47};
48
49struct BB_applet {
50 const char* name;
51 int (*main)(int argc, char** argv);
52 enum Location location;
Eric Andersenf6b71392000-09-26 01:09:18 +000053};
54/* From busybox.c */
55extern const struct BB_applet applets[];
56
Eric Andersen8c725e62000-11-30 00:27:06 +000057/* Automagically pull in all the applet function prototypes and
Eric Andersen87559822000-12-01 19:02:24 +000058 * applet usage strings. These are all of the form:
Eric Andersen8c725e62000-11-30 00:27:06 +000059 * extern int foo_main(int argc, char **argv);
60 * extern const char foo_usage[];
61 * These are all autogenerated from the set of currently defined applets.
62 */
63#define PROTOTYPES
64#include "applets.h"
65#undef PROTOTYPES
Eric Andersenf6b71392000-09-26 01:09:18 +000066
67extern const char *applet_name;
68
Eric Andersenaad1a882001-03-16 22:47:14 +000069#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
70#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]
71#define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len]
72#else
73#define RESERVE_BB_BUFFER(buffer,len) char *buffer=xmalloc(len)
74#define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len)
Eric Andersenf6b71392000-09-26 01:09:18 +000075#endif
76
77
Eric Andersenf6b71392000-09-26 01:09:18 +000078/* Bit map related macros -- libc5 doens't provide these... sigh. */
79#ifndef setbit
80#define NBBY CHAR_BIT
81#define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
82#define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
83#define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
84#define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
85#endif
86
Eric Andersenaad1a882001-03-16 22:47:14 +000087#ifndef RB_POWER_OFF
88/* Stop system and switch power off if possible. */
89#define RB_POWER_OFF 0x4321fedc
Eric Andersend35c2152001-01-25 23:49:09 +000090#endif
91
Eric Andersenaad1a882001-03-16 22:47:14 +000092
93/* Pull in the utility routines from libbb */
94#include "libbb/libbb.h"
95
96
Mark Whitleye0bf91d2001-03-13 00:40:19 +000097
Eric Andersenf6b71392000-09-26 01:09:18 +000098#endif /* _BB_INTERNAL_H_ */