1 diff -purN bb.old/editors/awk.c bb.dev/editors/awk.c
2 --- bb.old/editors/awk.c 2007-03-06 19:38:07.278092000 +0100
3 +++ bb.dev/editors/awk.c 2007-03-11 05:14:11.776304544 +0100
5 /* these flags are static, don't change them when value is changed */
6 #define VF_DONTTOUCH (VF_ARRAY | VF_SPECIAL | VF_WALK | VF_CHILD | VF_DIRTY)
9 +#define fputs(s, stream) fputs_hook(s, stream)
10 +static inline int fputs_hook (__const char *__restrict __s, FILE *__restrict __stream);
14 typedef struct var_s {
15 unsigned short type; /* flags */
16 @@ -50,10 +55,15 @@ typedef struct chain_s {
20 +typedef var *(*awk_cfunc)(var *res, var *args, int nargs);
22 typedef struct func_s {
24 - struct chain_s body;
25 + enum { AWKFUNC, CFUNC } type;
28 + struct chain_s body;
33 @@ -1312,7 +1322,8 @@ static void parse_program(char *p)
34 next_token(TC_FUNCTION);
36 f = newfunc(t.string);
37 - f->body.first = NULL;
39 + f->x.body.first = NULL;
41 while (next_token(TC_VARIABLE | TC_SEQTERM) & TC_VARIABLE) {
42 v = findvar(ahash, t.string);
43 @@ -1321,7 +1332,7 @@ static void parse_program(char *p)
44 if (next_token(TC_COMMA | TC_SEQTERM) & TC_SEQTERM)
52 @@ -2260,7 +2271,8 @@ static var *evaluate(node *op, var *res)
56 - if (! op->r.f->body.first)
57 + if ((op->r.f->type == AWKFUNC) &&
58 + !op->r.f->x.body.first)
59 runtime_error(EMSG_UNDEF_FUNC);
61 X.v = R.v = nvalloc(op->r.f->nargs+1);
62 @@ -2277,7 +2289,11 @@ static var *evaluate(node *op, var *res)
66 - res = evaluate(op->r.f->body.first, res);
67 + if (op->r.f->type == AWKFUNC)
68 + res = evaluate(op->r.f->x.body.first, res);
69 + else if (op->r.f->type == CFUNC)
70 + res = op->r.f->x.cfunc(res, fnargs, op->r.f->nargs);
75 @@ -2637,6 +2653,11 @@ static rstream *next_input_file(void)
80 +static int is_awx = 0;
84 int awk_main(int argc, char **argv)
87 @@ -2693,6 +2714,10 @@ int awk_main(int argc, char **argv)
96 while((c = getopt(argc, argv, "F:v:f:W:")) != EOF) {
98 diff -purN bb.old/editors/awx.c bb.dev/editors/awx.c
99 --- bb.old/editors/awx.c 1970-01-01 01:00:00.000000000 +0100
100 +++ bb.dev/editors/awx.c 2007-03-14 02:03:50.566202928 +0100
103 + * awk web extension
105 + * Copyright (C) 2007 by Felix Fietkau <nbd@openwrt.org>
107 + * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
113 +#define LINE_BUF 2048
114 +#define HASH_MAX 1536
115 +#define TR_START "@TR<<"
118 +#define SSI_START "<%"
119 +#define SSI_END "%>"
123 +static xhash *lstr = NULL;
124 +static xhash *formvar = NULL;
125 +static int lang_inuse = 0;
127 +/* look up a translation symbol from the hash */
128 +static inline char *translate_lookup(char *str)
130 + char *name, *def, *p;
135 + if (((p = strchr(str, '|')) != NULL)
136 + || ((p = strchr(str, '#')) != NULL)) {
141 + hi = hash_search(lstr, name);
147 + return getvar_s(v);
150 +/* look for translation markers in the line and return the translated string */
151 +static char *translate_line(char *line)
153 + char *tok[MAX_TR * 3];
154 + char *l, *p, *p2, *res;
155 + int len = 0, _pos = 0, i;
158 + while (l != NULL) {
159 + if ((p = strstr(l, TR_START)) == NULL) {
160 + len += strlen((tok[_pos++] = l));
164 + p2 = strstr(p, TR_END);
170 + len += strlen((tok[_pos++] = l));
171 + len += strlen((tok[_pos++] = translate_lookup(p + strlen(TR_START))));
174 + l += strlen(TR_END);
178 + p = xmalloc(len + 1);
181 + for (i = 0; i < _pos; i++) {
183 + p += strlen(tok[i]);
189 +/* hook for intercepting awk's use of puts. used for running all printed strings
190 + * through the translation system */
191 +static inline int fputs_hook (__const char *__restrict __s, FILE *__restrict __stream)
193 + if (lang_inuse && (__stream == stdout)) {
197 + str = translate_line((char *) __s);
198 + ret = fputs(str, __stream);
204 + return fputs(__s, __stream);
207 +static var *init_lang(var *res, var *args, int nargs)
210 + lstr = hash_init();
217 +/* load and parse language file */
218 +static void load_lang_file(char *file)
221 + char *b, *name, *value;
222 + char buf1[LINE_BUF];
224 + if ((f = fopen(file, "r")) == NULL)
227 + while (!feof(f) && (fgets(buf1, LINE_BUF - 1, f) != NULL)) {
230 + continue; /* skip comments */
232 + while (isspace(*b))
233 + b++; /* skip leading spaces */
238 + if ((b = strstr(name, "=>")) == NULL)
239 + continue; /* separator not found */
246 + for (b--; isspace(*b); b--)
247 + *b = 0; /* remove trailing spaces */
249 + while (isspace(*value))
250 + value++; /* skip leading spaces */
252 + for (b = value + strlen(value) - 1; isspace(*b); b--)
253 + *b = 0; /* remove trailing spaces */
258 + setvar_s(findvar(lstr,name), value);
264 +static var *load_lang(var *res, var *args, int nargs)
266 + const char *langfmt = "/usr/lib/webif/lang/%s.txt";
267 + char lbuf[LINE_BUF];
271 + init_lang(res, args, nargs);
273 + lang = getvar_s(args);
274 + if (!lang || !strcmp(lang, ""))
277 + sprintf(lbuf, langfmt, lang);
278 + load_lang_file(lbuf);
283 +/* read the contents of an entire file */
284 +static char *get_file(char *fname)
290 + F = fopen(fname, "r");
295 + if (fseek(F, 0, SEEK_END) == 0) {
297 + s = (char *)xmalloc(flen+4);
298 + fseek(F, 0, SEEK_SET);
299 + i = 1 + fread(s+1, 1, flen, F);
301 + for (i=j=1; j>0; i+=j) {
302 + s = (char *)xrealloc(s, i+4096);
303 + j = fread(s+i, 1, 4094, F);
315 + * taken from parse_program from awk.c
316 + * END{} is not parsed here, and BEGIN{} is executed immediately
318 +static void parse_include(char *p)
321 + chain *initseq = NULL;
326 + memset(&tmp, 0, sizeof(tmp));
329 + while ((tclass = next_token(TC_EOF | TC_OPSEQ |
330 + TC_OPTERM | TC_BEGIN | TC_FUNCDECL)) != TC_EOF) {
331 + if (tclass & TC_OPTERM)
335 + if (tclass & TC_BEGIN) {
336 + initseq = xzalloc(sizeof(chain));
339 + } else if (tclass & TC_FUNCDECL) {
340 + next_token(TC_FUNCTION);
342 + f = newfunc(t.string);
344 + f->x.body.first = NULL;
346 + while (next_token(TC_VARIABLE | TC_SEQTERM) & TC_VARIABLE) {
347 + v = findvar(ahash, t.string);
348 + v->x.aidx = (f->nargs)++;
350 + if (next_token(TC_COMMA | TC_SEQTERM) & TC_SEQTERM)
353 + seq = &(f->x.body);
355 + clear_array(ahash);
358 + if (initseq && initseq->first)
359 + evaluate(initseq->first, &tv);
363 +/* include an awk file and run its BEGIN{} section */
364 +static xhash *includes = NULL;
365 +static void include_file(char *filename)
371 + includes = hash_init();
373 + /* find out if the file has been included already */
374 + v = findvar(includes, filename);
379 + /* read include file */
380 + s = get_file(filename);
382 + fprintf(stderr, "Could not open file.\n");
385 + parse_include(s+1);
389 +static var *include(var *res, var *args, int nargs)
393 + s = getvar_s(args);
394 + if (s && (strlen(s) > 0))
401 +/* parse and evaluate an awk expression and return the result as string */
402 +static char *render_lookup(char *fname, int lnr, char *str)
407 + memset(&body, 0, sizeof(body));
412 + /* end of expression, assume that there's going to be a free byte
413 + * at the end of the string that can be used for the ')' */
414 + strcat(str + strlen(str), ")");
415 + return getvar_s(evaluate(parse_expr(TC_SEQTERM), &tv));
418 +static inline void print_translate(char *s)
422 + str = translate_line(s);
423 + fputs(str, stdout);
429 +/* process awk calls in a template line and print the output to stdout */
430 +static void render_line(char *fname, int lnr, char *line)
432 + char *tok[MAX_TR * 3];
433 + char *l, *p, *p2, *res;
434 + int len = 0, _pos = 0, i;
437 + while (l != NULL) {
438 + if ((p = strstr(l, SSI_START)) == NULL) {
439 + len += strlen((tok[_pos++] = l));
443 + p2 = strstr(p, SSI_END);
445 + fprintf(stderr, "Parse error in '%s', line '%d', unmatched %s\n", fname, lnr, SSI_END);
452 + len += strlen((tok[_pos++] = l));
453 + len += strlen((tok[_pos++] = render_lookup(fname, lnr, p + strlen(SSI_START))));
456 + l += strlen(SSI_END);
460 + p = xmalloc(len + 1);
463 + for (i = 0; i < _pos; i++) {
465 + p += strlen(tok[i]);
467 + print_translate(res);
471 +/* awk method render(), which opens a template file and processes all awk ssi calls */
472 +static void render_file(char *filename)
478 + f = fopen(filename, "r");
482 + buf1 = xmalloc(LINE_BUF);
483 + while (!feof(f) && (fgets(buf1, LINE_BUF - 1, f) != NULL)) {
484 + render_line(filename, ++lnr, buf1);
488 +static var *render(var *res, var *args, int nargs)
492 + s = getvar_s(args);
501 +/* Call render, but only if this function hasn't been called already */
502 +static int layout_rendered = 0;
503 +static var *render_layout(var *res, var *args, int nargs)
505 + if (layout_rendered)
507 + layout_rendered = 1;
508 + return render(res, args, nargs);
511 +/* registers a global c function for the awk interpreter */
512 +static void register_cfunc(char *name, awk_cfunc cfunc, int nargs)
518 + f->x.cfunc = cfunc;
522 +static void putvar(vartype type, char *name, char *value)
524 + if (type != FORM_VAR)
527 + setvar_u(findvar(formvar, name), value);
530 +static char *cgi_getvar(char *name)
533 + formvar = hash_init();
537 + if (!formvar || !name)
540 + return getvar_s(findvar(formvar, name));
543 +/* function call for accessing cgi form variables */
544 +static var *getvar(var *res, var *args, int nargs)
549 + s = getvar_s(args);
553 + svar = cgi_getvar(s);
557 + setvar_u(res, svar);
562 +/* call an awk function without arguments by string reference */
563 +static var *call(var *res, var *args, int nargs)
565 + char *s = getvar_s(args);
572 + if (f && f->type == AWKFUNC && f->x.body.first)
573 + return evaluate(f->x.body.first, res);
580 +static int run_awxscript(char *name)
582 + var tv, *layout, *action;
583 + char *tmp, *s = NULL;
586 + programname = name;
588 + /* read the main controller source */
589 + s = get_file(programname);
591 + fprintf(stderr, "Could not open file\n");
594 + parse_program(s+1);
598 + /* set some defaults for ACTION and LAYOUT, which will have special meaning */
599 + layout = newvar("LAYOUT");
600 + setvar_s(layout, "views/layout.ahtml");
602 + /* run the BEGIN {} block */
603 + evaluate(beginseq.first, &tv);
605 + action = newvar("ACTION");
606 + if (!(strlen(getvar_s(action)) > 0)) {
607 + tmp = cgi_getvar("action");
608 + if (!tmp || (strlen(tmp) <= 0))
609 + tmp = strdup("default");
611 + setvar_p(action, tmp);
614 + /* call the action (precedence: begin block override > cgi parameter > "default") */
615 + tmp = xmalloc(strlen(getvar_s(action)) + 7);
616 + sprintf(tmp, "handle_%s", getvar_s(action));
617 + setvar_s(action, tmp);
618 + call(&tv, action, 1);
621 + /* render the selected layout, will do nothing if render_layout has been called from awk */
622 + render_layout(&tv, layout, 1);
628 +/* main awx processing function. called from awk_main() */
629 +static int do_awx(int argc, char **argv)
634 + char **args = argv;
638 + /* register awk C callbacks */
639 + register_cfunc("getvar", getvar, 1);
640 + register_cfunc("render", render, 1);
641 + register_cfunc("render_layout", render_layout, 1);
642 + register_cfunc("call", call, 1);
643 + register_cfunc("include", include, 1);
644 + register_cfunc("init_lang", init_lang, 1);
645 + register_cfunc("load_lang", load_lang, 1);
650 + /* fill in ARGV array */
651 + setvar_i(V[ARGC], argc + 1);
652 + setari_u(V[ARGV], 0, "awx");
655 + setari_u(V[ARGV], ++i, *args++);
657 + while((c = getopt(argc, argv, "i:f:")) != EOF) {
660 + programname = optarg;
661 + include_file(optarg);
665 + programname = optarg;
666 + render_file(optarg);
674 + fprintf(stderr, "Invalid argument.\n");
678 + ret = run_awxscript(*argv);
684 +/* entry point for awx applet */
685 +int awx_main(int argc, char **argv)
688 + return awk_main(argc, argv);
691 diff -purN bb.old/editors/Config.in bb.dev/editors/Config.in
692 --- bb.old/editors/Config.in 2007-01-24 22:34:50.000000000 +0100
693 +++ bb.dev/editors/Config.in 2007-03-11 06:19:51.469380160 +0100
694 @@ -12,6 +12,13 @@ config AWK
695 Awk is used as a pattern scanning and processing language. This is
696 the BusyBox implementation of that programming language.
699 + bool "Enable awx (awk web extension)"
703 + awx - awk web extension
705 config FEATURE_AWK_MATH
706 bool "Enable math functions (requires libm)"
708 diff -purN bb.old/include/applets.h bb.dev/include/applets.h
709 --- bb.old/include/applets.h 2007-03-06 19:38:07.355081000 +0100
710 +++ bb.dev/include/applets.h 2007-03-07 02:12:24.280681880 +0100
711 @@ -60,6 +60,7 @@ USE_ARP(APPLET(arp, _BB_DIR_SBIN, _BB_SU
712 USE_ARPING(APPLET(arping, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
713 USE_ASH(APPLET_NOUSAGE(ash, ash, _BB_DIR_BIN, _BB_SUID_NEVER))
714 USE_AWK(APPLET(awk, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
715 +USE_AWX(APPLET_NOUSAGE(awx, awx, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
716 USE_BASENAME(APPLET(basename, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
717 USE_BBCONFIG(APPLET(bbconfig, _BB_DIR_BIN, _BB_SUID_NEVER))
718 //USE_BBSH(APPLET(bbsh, _BB_DIR_BIN, _BB_SUID_NEVER))
719 diff -purN bb.old/include/cgi.h bb.dev/include/cgi.h
720 --- bb.old/include/cgi.h 1970-01-01 01:00:00.000000000 +0100
721 +++ bb.dev/include/cgi.h 2007-03-11 18:58:10.708444448 +0100
726 +typedef enum { FORM_VAR, COOKIE_VAR } vartype;
727 +typedef void (*var_handler) (vartype, char *, char *);
728 +int cgi_init(var_handler);
731 diff -purN bb.old/libbb/cgi.c bb.dev/libbb/cgi.c
732 --- bb.old/libbb/cgi.c 1970-01-01 01:00:00.000000000 +0100
733 +++ bb.dev/libbb/cgi.c 2007-03-11 19:02:04.691873560 +0100
735 +/* --------------------------------------------------------------------------
736 + * functions for processing cgi form data
737 + * Copyright (C) 2007 by Felix Fietkau <nbd@openwrt.org>
739 + * parts taken from the core of haserl.cgi - a poor-man's php for embedded/lightweight environments
740 + * $Id: haserl.c,v 1.13 2004/11/10 17:59:35 nangel Exp $
741 + * Copyright (c) 2003,2004 Nathan Angelacos (nangel@users.sourceforge.net)
743 + * This program is free software; you can redistribute it and/or modify
744 + * it under the terms of the GNU General Public License as published by
745 + * the Free Software Foundation; either version 2 of the License, or
746 + * (at your option) any later version.
748 + * This program is distributed in the hope that it will be useful,
749 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
750 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
751 + * General Public License for more details.
753 + * You should have received a copy of the GNU General Public License
754 + * along with this program; if not, write to the Free Software
755 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
758 + * The x2c() and unescape_url() routines were taken from
759 + * http://www.jmarshall.com/easy/cgi/getcgi.c.txt
761 + * The comments in that text file state:
763 + *** Written in 1996 by James Marshall, james@jmarshall.com, except
764 + *** that the x2c() and unescape_url() routines were lifted directly
765 + *** from NCSA's sample program util.c, packaged with their HTTPD.
766 + *** For the latest, see http://www.jmarshall.com/easy/cgi/
769 + ------------------------------------------------------------------------- */
774 +#include <sys/mman.h>
775 +#include <sys/types.h>
776 +#include <sys/wait.h>
777 +#include <sys/stat.h>
778 +#include <sys/fcntl.h>
783 +#ifndef MAX_UPLOAD_KB
784 +#define MAX_UPLOAD_KB 2048
786 +#define TEMPDIR "/tmp"
788 +static int global_upload_size = 0;
789 +static int ReadMimeEncodedInput(char *qs);
790 +static var_handler do_putvar = NULL;
793 + * Convert 2 char hex string into char it represents
794 + * (from http://www.jmarshall.com/easy/cgi)
796 +static char x2c (char *what) {
799 + digit=(what[0] >= 'A' ? ((what[0] & 0xdf) - 'A')+10 : (what[0] - '0'));
801 + digit+=(what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0'));
807 + * unsescape %xx to the characters they represent
810 +static void unescape_url (char *url) {
813 + for (i=0, j=0; url[j]; ++i, ++j) {
814 + if ((url[i] = url[j]) == '%') {
815 + url[i] = x2c(&url[j+1]);
822 +static inline void put_var(vartype type, char *var)
829 + val = strchr(var, '=');
835 + do_putvar(type, var, val);
842 + * if HTTP_COOKIE is passed as an environment variable,
843 + * attempt to parse its values into environment variables
845 +static void CookieVars (void)
850 + if (getenv("HTTP_COOKIE") != NULL)
851 + qs=strdup(getenv("HTTP_COOKIE"));
855 + /** split on; to extract name value pairs */
856 + token=strtok(qs, ";");
858 + // skip leading spaces
859 + while ( token[0] == ' ' )
862 + put_var(COOKIE_VAR, token);
864 + token = strtok(NULL, ";");
870 + * Read cgi variables from query string, and put in environment
872 +static int ReadCGIQueryString (void)
878 + if (getenv("QUERY_STRING") != NULL)
879 + qs=strdup(getenv("QUERY_STRING"));
883 + /* change plusses into spaces */
884 + for (i=0; qs[i]; i++ ) { if (qs[i] == '+' ) { qs[i] = ' ';} };
886 + /** split on & and ; to extract name value pairs */
888 + token=strtok(qs, "&;");
890 + unescape_url(token);
891 + put_var(FORM_VAR, token);
892 + token=strtok(NULL, "&;");
901 + * Read cgi variables from stdin (for POST queries)
902 + * (oh... and if its mime-encoded file upload, we save the
903 + * file to /tmp; and return the name of the tmp file
904 + * the cgi script is responsible for disposing of the tmp file
907 +static int ReadCGIPOSTValues (void) {
909 + int content_length;
914 + if (getenv("CONTENT_LENGTH") == NULL)
917 + content_length = atoi(getenv("CONTENT_LENGTH"));
919 + /* protect ourselves from 20GB file uploads */
920 + if (content_length > MAX_UPLOAD_KB * 1024 ) {
921 + /* But we need to finish reading the content */
922 + while ( fread( &i, sizeof(int), 1, stdin) == 1 );
926 + if (!(qs=malloc(content_length+1)))
929 + /* set the buffer to null, so that a browser messing with less
930 + data than content_length won't buffer underrun us */
931 + memset(qs, 0 ,content_length+1);
933 + if ((!fread(qs,content_length,1,stdin) &&
934 + (content_length > 0)
935 + && !feof(stdin))) {
941 + if (getenv("CONTENT_TYPE") && (strncasecmp(getenv("CONTENT_TYPE"), "multipart/form-data", 19) == 0)) {
942 + /* This is a mime request, we need to go to the mime handler */
943 + i=ReadMimeEncodedInput(qs);
949 + /* change plusses into spaces */
950 + for (i=0; qs[i]; i++ ) { if (qs[i] == '+' ) { qs[i] = ' ';} };
952 + /** split on & and ; to extract name value pairs */
953 + token=strtok(qs, "&;");
955 + unescape_url(token);
956 + put_var(FORM_VAR, token);
957 + token=strtok(NULL, "&;");
966 + * LineToStr - Scans char and replaces the first "\n" with a "\0";
967 + * If it finds a "\r", it does that to; (fix DOS brokennes) returns
968 + * the length of the string;
970 +static int LineToStr (char *string, size_t max) {
973 + while ((offset < max) && (string[offset] != '\n') && (string[offset] != '\r'))
976 + if (string[offset] == '\r') {
977 + string[offset]='\0';
980 + if (string[offset] == '\n') {
981 + string[offset]='\0';
990 + * ReadMimeEncodedInput - handles things that are mime encoded
991 + * takes a pointer to the input; returns 0 on success
994 +static int ReadMimeEncodedInput(char *qs)
1006 + char tmpname[] = TEMPDIR "/XXXXXX";
1008 + /* we should only get here if the content type was set. Segfaults happen
1009 + if Content_Type is null */
1011 + if (getenv("CONTENT_LENGTH") == NULL)
1012 + /* No content length?! */
1015 + cl=atoi(getenv("CONTENT_LENGTH"));
1017 + /* we do this 'cause we can't mess with the real env. variable - it would
1018 + * overwrite the environment - I tried.
1020 + i=strlen(getenv("CONTENT_TYPE"))+1;
1023 + memcpy(ct, getenv("CONTENT_TYPE"), i);
1029 + while (i < strlen(ct) && (strncmp("boundary=", &ct[i], 9) != 0))
1032 + if (i == strlen(ct)) {
1033 + /* no boundary informaiton found */
1037 + boundary=&ct[i+7];
1038 + /* add two leading -- to the boundary */
1042 + /* begin the big loop. Look for:
1044 + Content-Disposition: form-data; name="......."
1049 + Content-Disposition: form-data; name="....." filename="....."
1057 + while (offset < cl) {
1058 + /* first look for boundary */
1059 + while ((offset < cl) && (memcmp(&qs[offset], boundary, strlen(boundary))))
1062 + /* if we got here and we ran off the end, its an error */
1063 + if (offset >= cl) {
1068 + /* if the two characters following the boundary are --, */
1069 + /* then we are at the end, exit */
1070 + if (memcmp(&qs[offset+strlen(boundary)], "--", 2) == 0) {
1074 + /* find where the offset should be */
1075 + line=LineToStr(&qs[offset], cl-offset);
1078 + /* Now we're going to look for content-disposition */
1079 + line=LineToStr(&qs[offset], cl-offset);
1080 + if (strncasecmp(&qs[offset], "Content-Disposition", 19) != 0) {
1081 + /* hmm... content disposition was not where we expected it */
1085 + /* Found it, so let's go find "name=" */
1086 + if (!(envname=strstr(&qs[offset], "name="))) {
1087 + /* now name= is missing?! */
1093 + /* is there a filename tag? */
1094 + if ((filename=strstr(&qs[offset], "filename="))!= NULL)
1099 + /* make envname and filename ASCIIZ */
1100 + for (i=0; (envname[i] != '"') && (envname[i] != '\0'); i++);
1102 + envname[i] = '\0';
1104 + for (i=0; (filename[i] != '"') && (filename[i] != '\0'); i++);
1105 + filename[i] = '\0';
1109 + /* Ok, by some miracle, we have the name; let's skip till we */
1110 + /* come to a blank line */
1111 + line=LineToStr(&qs[offset], cl-offset);
1112 + while (strlen(&qs[offset]) > 1) {
1114 + line=LineToStr(&qs[offset], cl-offset);
1118 + /* And we go back to looking for a boundary */
1119 + while ((offset < cl) && (memcmp(&qs[offset], boundary, strlen(boundary))))
1122 + /* strip [cr] lf */
1123 + if ((qs[offset-1] == '\n') && (qs[offset-2] == '\r'))
1130 + /* ok, at this point, we know where the name is, and we know */
1131 + /* where the content is... we have to do one of two things */
1132 + /* based on whether its a file or not */
1133 + if (filename==NULL) { /* its not a file, so its easy */
1134 + /* just jam the content after the name */
1135 + memcpy(&envname[strlen(envname)+1], &qs[datastart], offset-datastart+1);
1136 + envname[strlen(envname)]='=';
1137 + put_var(FORM_VAR, envname);
1138 + } else { /* handle the fileupload case */
1139 + if (offset-datastart) { /* only if they uploaded */
1140 + if ( global_upload_size == 0 ) {
1143 + /* stuff in the filename */
1144 + ptr= calloc ( sizeof (char), strlen(envname)+strlen(filename)+2+5 );
1145 + sprintf (ptr, "%s_name=%s", envname, filename);
1146 + put_var(FORM_VAR, ptr);
1149 + fd=mkstemp(tmpname);
1154 + write(fd, &qs[datastart], offset-datastart);
1156 + ptr= calloc (sizeof(char), strlen(envname)+strlen(tmpname)+2);
1157 + sprintf (ptr, "%s=%s", envname, tmpname);
1158 + put_var(FORM_VAR, ptr);
1168 +/*-------------------------------------------------------------------------
1172 + *------------------------------------------------------------------------*/
1174 +int cgi_init(var_handler putvar_handler)
1178 + do_putvar = putvar_handler;
1180 + /* Read the current environment into our chain */
1182 + if (getenv("REQUEST_METHOD")) {
1183 + if (strcasecmp(getenv("REQUEST_METHOD"), "GET") == 0)
1184 + retval = ReadCGIQueryString();
1186 + if (strcasecmp(getenv("REQUEST_METHOD"), "POST") == 0)
1187 + retval = ReadCGIPOSTValues();
1192 diff -purN bb.old/libbb/Kbuild bb.dev/libbb/Kbuild
1193 --- bb.old/libbb/Kbuild 2007-03-06 19:38:07.361080000 +0100
1194 +++ bb.dev/libbb/Kbuild 2007-03-11 18:40:51.384445712 +0100
1195 @@ -118,3 +118,6 @@ lib-$(CONFIG_GREP) += xregcomp.o
1196 lib-$(CONFIG_MDEV) += xregcomp.o
1197 lib-$(CONFIG_LESS) += xregcomp.o
1198 lib-$(CONFIG_DEVFSD) += xregcomp.o
1200 +lib-$(CONFIG_AWX) += cgi.o