From db4a67628d4e4418d01bbba1c8603a6ca8c3562e Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 10 Sep 2009 21:24:45 +0200 Subject: networking/httpd_ssi.c: new example CGI handler Signed-off-by: Denys Vlasenko --- networking/httpd_ssi.c | 102 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 networking/httpd_ssi.c (limited to 'networking/httpd_ssi.c') diff --git a/networking/httpd_ssi.c b/networking/httpd_ssi.c new file mode 100644 index 000000000..f75805923 --- /dev/null +++ b/networking/httpd_ssi.c @@ -0,0 +1,102 @@ +/* + * Copyright (c) 2009 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this tarball for details. + */ + +/* + * This program is a CGI application. It processes server-side includes: + * + */ + +/* Build a-la +i486-linux-uclibc-gcc \ +-static -static-libgcc \ +-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \ +-Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Werror \ +-Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign \ +-Wmissing-prototypes -Wmissing-declarations \ +-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer \ +-ffunction-sections -fdata-sections -fno-guess-branch-probability \ +-funsigned-char \ +-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 \ +-march=i386 -mpreferred-stack-boundary=2 \ +-Wl,-Map -Wl,link.map -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ +httpd_ssi.c -o httpd_ssi +*/ + +/* Size (i386, static uclibc, approximate): + text data bss dec hex filename + 8931 164 68552 77647 12f4f httpd_ssi +*/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static char line[64 * 1024]; + +/* + * Currently only handles directives which are alone on the line + */ +static void process_includes(const char *filename) +{ + FILE *fp = fopen(filename, "r"); + if (!fp) + exit(1); + +#define INCLUDE "")? */ + ) { + fputs(line, stdout); + continue; + } + *closing_dq = '\0'; + /* FIXME: (1) are relative paths ok? + * (2) if we include a/1.htm and it includes b/2.htm, + * do we need to insert a/b/2.htm or b/2.htm? + * IOW, do we need to "cd $dirname"? + */ + process_includes(line + sizeof(INCLUDE)-1); + /* FIXME: this should be the tail of line after --> */ + putchar('\n'); + } +} + +int main(int argc, char *argv[]) +{ + if (!argv[1]) + return 1; + + /* Seen from busybox.net's Apache: + * HTTP/1.1 200 OK + * Date: Thu, 10 Sep 2009 18:23:28 GMT + * Server: Apache + * Accept-Ranges: bytes + * Connection: close + * Content-Type: text/html + */ + printf( + /* "Date: Thu, 10 Sep 2009 18:23:28 GMT\r\n" */ + /* "Server: Apache\r\n" */ + /* "Accept-Ranges: bytes\r\n" - do we really accept bytes?! */ + "Connection: close\r\n" + "Content-Type: text/html\r\n" + "\r\n" + ); + process_includes(argv[1]); + return 0; +} -- cgit v1.2.3