Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.
-Erik
This commit is contained in:
parent
ffde8673fe
commit
d35c21587a
5
Config.h
5
Config.h
@ -129,6 +129,11 @@
|
||||
// pretty/useful).
|
||||
//
|
||||
//
|
||||
// BusyBox will, by default, malloc space for its buffers. This costs code
|
||||
// size for the call to xmalloc. You can use the following feature to have
|
||||
// them put on the stack. For some very small machines with limited stack
|
||||
// space, this can be deadly. For most folks, this works just fine...
|
||||
//#define BB_FEATURE_BUFFERS_GO_ON_STACK
|
||||
//
|
||||
// Turn this on to use Erik's very cool devps, and devmtab kernel drivers,
|
||||
// thereby eliminating the need for the /proc filesystem and thereby saving
|
||||
|
@ -1222,8 +1222,8 @@ int gunzip_main(int argc, char **argv)
|
||||
int force = 0;
|
||||
struct stat statBuf;
|
||||
char *delFileName;
|
||||
char ifname[MAX_PATH_LEN + 1]; /* input file name */
|
||||
char ofname[MAX_PATH_LEN + 1]; /* output file name */
|
||||
RESERVE_BB_BUFFER(ifname, MAX_PATH_LEN+1); /* input file name */
|
||||
RESERVE_BB_BUFFER(ofname, MAX_PATH_LEN+1); /* output file name */
|
||||
|
||||
method = DEFLATED; /* default compression method */
|
||||
exit_code = OK; /* let's go out on a limb and assume everything will run fine (wink wink) */
|
||||
|
@ -266,4 +266,12 @@ char *format(unsigned long val, unsigned long hr);
|
||||
#define GIGABYTE (MEGABYTE*1024)
|
||||
#endif
|
||||
|
||||
#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
|
||||
#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]
|
||||
#define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len]
|
||||
#else
|
||||
#define RESERVE_BB_BUFFER(buffer,len) char *buffer=xmalloc(len)
|
||||
#define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len)
|
||||
#endif
|
||||
|
||||
#endif /* _BB_INTERNAL_H_ */
|
||||
|
@ -144,10 +144,11 @@ extern int tr_main(int argc, char **argv)
|
||||
int output_length=0, input_length;
|
||||
int index = 1;
|
||||
int i;
|
||||
/* set up big arrays here (better than making a bunch of static arrays up top) */
|
||||
unsigned char output[BUFSIZ], input[BUFSIZ];
|
||||
unsigned char vector[ASCII + 1];
|
||||
char invec[ASCII + 1], outvec[ASCII + 1];
|
||||
RESERVE_BB_BUFFER(output, BUFSIZ);
|
||||
RESERVE_BB_BUFFER(input, BUFSIZ);
|
||||
RESERVE_BB_UBUFFER(vector, ASCII+1);
|
||||
RESERVE_BB_BUFFER(invec, ASCII+1);
|
||||
RESERVE_BB_BUFFER(outvec, ASCII+1);
|
||||
|
||||
/* ... but make them available globally */
|
||||
poutput = output;
|
||||
|
4
cp_mv.c
4
cp_mv.c
@ -175,8 +175,8 @@ extern int cp_mv_main(int argc, char **argv)
|
||||
{
|
||||
volatile int i;
|
||||
int c;
|
||||
char baseDestName[BUFSIZ + 1]; /* not declared globally == less bss used */
|
||||
pBaseDestName = baseDestName; /* but available globally */
|
||||
RESERVE_BB_BUFFER(baseDestName,BUFSIZ + 1);
|
||||
pBaseDestName = baseDestName; /* available globally */
|
||||
|
||||
if (*applet_name == 'c' && *(applet_name + 1) == 'p')
|
||||
dz_i = is_cp;
|
||||
|
@ -402,7 +402,7 @@ The problem with these is that any time any busybox app is run, you pay a
|
||||
memory penalty for this buffer, even if the applet that uses said buffer is
|
||||
not run. This can be fixed, thusly:
|
||||
|
||||
static char *buffer
|
||||
static char *buffer;
|
||||
...
|
||||
other_func()
|
||||
{
|
||||
@ -418,7 +418,7 @@ mallocing the buffers (and thus growing the text size), buffers can be
|
||||
declared on the stack in the *_main() function and made available globally by
|
||||
assigning them to a global pointer thusly:
|
||||
|
||||
static char *pbuffer
|
||||
static char *pbuffer;
|
||||
...
|
||||
other_func()
|
||||
{
|
||||
@ -430,13 +430,13 @@ assigning them to a global pointer thusly:
|
||||
pbuffer = buffer; /* but available globally */
|
||||
...
|
||||
|
||||
Thus:
|
||||
- global static buffers are eliminated
|
||||
- we don't grow the text segment as much because no malloc() call is made;
|
||||
memory is automatically allocated on the stack when execution context
|
||||
enters the function. (We still grow text a little bit because of the
|
||||
assignment, but that's cheap compared to a function call.)
|
||||
- the buffer is still available globally via the pointer
|
||||
This last approach has some advantages (low code size, space not used until
|
||||
it's needed), but can be a problem in some low resource machines that have
|
||||
very limited stack space (e.g., uCLinux). busybox.h declares a macro that
|
||||
implements compile-time selection between xmalloc() and stack creation, so
|
||||
you can code the line in question as
|
||||
RESERVE_BB_BUFFER(buffer, BUFSIZ);
|
||||
and the right thing will happen, based on the customer's configuration.
|
||||
|
||||
|
||||
|
||||
|
4
gunzip.c
4
gunzip.c
@ -1222,8 +1222,8 @@ int gunzip_main(int argc, char **argv)
|
||||
int force = 0;
|
||||
struct stat statBuf;
|
||||
char *delFileName;
|
||||
char ifname[MAX_PATH_LEN + 1]; /* input file name */
|
||||
char ofname[MAX_PATH_LEN + 1]; /* output file name */
|
||||
RESERVE_BB_BUFFER(ifname, MAX_PATH_LEN+1); /* input file name */
|
||||
RESERVE_BB_BUFFER(ofname, MAX_PATH_LEN+1); /* output file name */
|
||||
|
||||
method = DEFLATED; /* default compression method */
|
||||
exit_code = OK; /* let's go out on a limb and assume everything will run fine (wink wink) */
|
||||
|
@ -266,4 +266,12 @@ char *format(unsigned long val, unsigned long hr);
|
||||
#define GIGABYTE (MEGABYTE*1024)
|
||||
#endif
|
||||
|
||||
#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
|
||||
#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]
|
||||
#define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len]
|
||||
#else
|
||||
#define RESERVE_BB_BUFFER(buffer,len) char *buffer=xmalloc(len)
|
||||
#define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len)
|
||||
#endif
|
||||
|
||||
#endif /* _BB_INTERNAL_H_ */
|
||||
|
@ -51,7 +51,7 @@ static void myread(int num, char *buffer)
|
||||
int rpmunpack_main(int argc, char **argv)
|
||||
{
|
||||
int len, status = 0;
|
||||
char buffer[BUFSIZ];
|
||||
RESERVE_BB_BUFFER(buffer, BUFSIZ);
|
||||
|
||||
/* Get our own program name */
|
||||
if ((progname = strrchr(argv[0], '/')) == NULL)
|
||||
|
@ -209,7 +209,7 @@ static void domark(int sig)
|
||||
static const int BUFSIZE = 1023;
|
||||
static int serveConnection (int conn)
|
||||
{
|
||||
char buf[ BUFSIZE + 1 ];
|
||||
RESERVE_BB_BUFFER(buf, BUFSIZE + 1);
|
||||
int n_read;
|
||||
|
||||
while ((n_read = read (conn, buf, BUFSIZE )) > 0) {
|
||||
@ -296,7 +296,7 @@ static void doSyslogd (void)
|
||||
int sock_fd;
|
||||
fd_set fds;
|
||||
|
||||
char lfile[BUFSIZ];
|
||||
RESERVE_BB_BUFFER(lfile, BUFSIZ);
|
||||
|
||||
/* Set up signal handlers. */
|
||||
signal (SIGINT, quit_signal);
|
||||
|
@ -209,7 +209,7 @@ static void domark(int sig)
|
||||
static const int BUFSIZE = 1023;
|
||||
static int serveConnection (int conn)
|
||||
{
|
||||
char buf[ BUFSIZE + 1 ];
|
||||
RESERVE_BB_BUFFER(buf, BUFSIZE + 1);
|
||||
int n_read;
|
||||
|
||||
while ((n_read = read (conn, buf, BUFSIZE )) > 0) {
|
||||
@ -296,7 +296,7 @@ static void doSyslogd (void)
|
||||
int sock_fd;
|
||||
fd_set fds;
|
||||
|
||||
char lfile[BUFSIZ];
|
||||
RESERVE_BB_BUFFER(lfile, BUFSIZ);
|
||||
|
||||
/* Set up signal handlers. */
|
||||
signal (SIGINT, quit_signal);
|
||||
|
9
tr.c
9
tr.c
@ -144,10 +144,11 @@ extern int tr_main(int argc, char **argv)
|
||||
int output_length=0, input_length;
|
||||
int index = 1;
|
||||
int i;
|
||||
/* set up big arrays here (better than making a bunch of static arrays up top) */
|
||||
unsigned char output[BUFSIZ], input[BUFSIZ];
|
||||
unsigned char vector[ASCII + 1];
|
||||
char invec[ASCII + 1], outvec[ASCII + 1];
|
||||
RESERVE_BB_BUFFER(output, BUFSIZ);
|
||||
RESERVE_BB_BUFFER(input, BUFSIZ);
|
||||
RESERVE_BB_UBUFFER(vector, ASCII+1);
|
||||
RESERVE_BB_BUFFER(invec, ASCII+1);
|
||||
RESERVE_BB_BUFFER(outvec, ASCII+1);
|
||||
|
||||
/* ... but make them available globally */
|
||||
poutput = output;
|
||||
|
Loading…
Reference in New Issue
Block a user