Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 1 | /* 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 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 27 | #include "config.h" |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 28 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 30 | #include <stdarg.h> |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 31 | #include <sys/stat.h> |
Eric Andersen | 01bda5d | 2001-01-02 01:16:38 +0000 | [diff] [blame] | 32 | #include <sys/types.h> |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 33 | |
Matt Kraai | 6ba1a80 | 2001-04-12 20:11:55 +0000 | [diff] [blame] | 34 | #define BB_BANNER "BusyBox v" BB_VER " (" BB_BT ")" |
| 35 | |
Eric Andersen | 01bda5d | 2001-01-02 01:16:38 +0000 | [diff] [blame] | 36 | #ifdef DMALLOC |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 37 | #include <dmalloc.h> |
Eric Andersen | 01bda5d | 2001-01-02 01:16:38 +0000 | [diff] [blame] | 38 | #endif |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 39 | |
Eric Andersen | 2b1c367 | 2001-03-14 01:36:52 +0000 | [diff] [blame] | 40 | #include <features.h> |
Eric Andersen | c319601 | 2001-03-14 01:15:06 +0000 | [diff] [blame] | 41 | |
| 42 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 43 | enum Location { |
| 44 | _BB_DIR_ROOT = 0, |
| 45 | _BB_DIR_BIN, |
| 46 | _BB_DIR_SBIN, |
| 47 | _BB_DIR_USR_BIN, |
| 48 | _BB_DIR_USR_SBIN |
| 49 | }; |
| 50 | |
| 51 | struct BB_applet { |
| 52 | const char* name; |
| 53 | int (*main)(int argc, char** argv); |
| 54 | enum Location location; |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 55 | }; |
| 56 | /* From busybox.c */ |
| 57 | extern const struct BB_applet applets[]; |
| 58 | |
Eric Andersen | 8c725e6 | 2000-11-30 00:27:06 +0000 | [diff] [blame] | 59 | /* Automagically pull in all the applet function prototypes and |
Eric Andersen | 8755982 | 2000-12-01 19:02:24 +0000 | [diff] [blame] | 60 | * applet usage strings. These are all of the form: |
Eric Andersen | 8c725e6 | 2000-11-30 00:27:06 +0000 | [diff] [blame] | 61 | * extern int foo_main(int argc, char **argv); |
| 62 | * extern const char foo_usage[]; |
| 63 | * These are all autogenerated from the set of currently defined applets. |
| 64 | */ |
| 65 | #define PROTOTYPES |
| 66 | #include "applets.h" |
| 67 | #undef PROTOTYPES |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 68 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 69 | #ifdef CONFIG_FEATURE_BUFFERS_GO_ON_STACK |
| 70 | #define RESERVE_CONFIG_BUFFER(buffer,len) char buffer[len] |
| 71 | #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char buffer[len] |
| 72 | #define RELEASE_CONFIG_BUFFER(buffer) ((void)0) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 73 | #else |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 74 | #ifdef CONFIG_FEATURE_BUFFERS_GO_IN_BSS |
| 75 | #define RESERVE_CONFIG_BUFFER(buffer,len) static char buffer[len] |
| 76 | #define RESERVE_CONFIG_UBUFFER(buffer,len) static unsigned char buffer[len] |
| 77 | #define RELEASE_CONFIG_BUFFER(buffer) ((void)0) |
Mark Whitley | 3e310ac | 2001-04-20 17:40:33 +0000 | [diff] [blame] | 78 | #else |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 79 | #define RESERVE_CONFIG_BUFFER(buffer,len) char *buffer=xmalloc(len) |
| 80 | #define RESERVE_CONFIG_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len) |
| 81 | #define RELEASE_CONFIG_BUFFER(buffer) free (buffer) |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 82 | #endif |
Mark Whitley | 3e310ac | 2001-04-20 17:40:33 +0000 | [diff] [blame] | 83 | #endif |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 84 | |
| 85 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 86 | /* Bit map related macros -- libc5 doens't provide these... sigh. */ |
| 87 | #ifndef setbit |
| 88 | #define NBBY CHAR_BIT |
| 89 | #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) |
| 90 | #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY))) |
| 91 | #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY))) |
| 92 | #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0) |
| 93 | #endif |
| 94 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 95 | #ifndef RB_POWER_OFF |
| 96 | /* Stop system and switch power off if possible. */ |
| 97 | #define RB_POWER_OFF 0x4321fedc |
Eric Andersen | d35c215 | 2001-01-25 23:49:09 +0000 | [diff] [blame] | 98 | #endif |
| 99 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 100 | |
| 101 | /* Pull in the utility routines from libbb */ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 102 | #include "libbb.h" |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 103 | |
Eric Andersen | 38ddbed | 2002-03-16 02:12:30 +0000 | [diff] [blame^] | 104 | /* Try to pull in PATH_MAX */ |
| 105 | #include <limits.h> |
| 106 | /* for PATH_MAX on systems that don't have it in limits.h */ |
| 107 | #include <sys/param.h> |
Eric Andersen | 20d739a | 2002-01-26 23:58:22 +0000 | [diff] [blame] | 108 | #ifndef PATH_MAX |
| 109 | #define PATH_MAX 256 |
| 110 | #endif |
Mark Whitley | e0bf91d | 2001-03-13 00:40:19 +0000 | [diff] [blame] | 111 | |
Eric Andersen | f6b7139 | 2000-09-26 01:09:18 +0000 | [diff] [blame] | 112 | #endif /* _BB_INTERNAL_H_ */ |