From d5c1af5d9fb33e42e24dc3f1c0ea235eb1fb904a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 14 Mar 1998 04:13:24 +0000 Subject: fixed support for running swat via cgi-bin (This used to be commit 9dbfb16990954ee3518ce3bc73e067c82b653930) --- source3/web/cgi.c | 50 +++++++++++++++++++++++++++++++++++++++++++------- source3/web/swat.c | 10 +++++++--- 2 files changed, 50 insertions(+), 10 deletions(-) (limited to 'source3/web') diff --git a/source3/web/cgi.c b/source3/web/cgi.c index 6468c92917..46654b1303 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -44,6 +44,7 @@ static int request_post; static int request_get; static char *query_string; static char *baseurl; +static char *pathinfo; static void unescape(char *buf) { @@ -545,9 +546,7 @@ void cgi_setup(char *rootdir, int auth_required) char *url=NULL; char *p; #if CGI_LOGGING - FILE *f = fopen("/tmp/cgi.log", "a"); - - fprintf(f,"\n[Date: %s]\n", http_timestring(time(NULL))); + FILE *f; #endif if (chdir(rootdir)) { @@ -560,11 +559,16 @@ void cgi_setup(char *rootdir, int auth_required) return; } +#if CGI_LOGGING + f = fopen("/tmp/cgi.log", "a"); + if (f) fprintf(f,"\n[Date: %s]\n", http_timestring(time(NULL))); +#endif + /* we are a mini-web server. We need to read the request from stdin and handle authentication etc */ while (fgets(line, sizeof(line)-1, stdin)) { #if CGI_LOGGING - fputs(line, f); + if (f) fputs(line, f); #endif if (line[0] == '\r' || line[0] == '\n') break; if (strncasecmp(line,"GET ", 4)==0) { @@ -584,7 +588,7 @@ void cgi_setup(char *rootdir, int auth_required) /* ignore all other requests! */ } #if CGI_LOGGING - fclose(f); + if (f) fclose(f); #endif if (auth_required && !authenticated) { @@ -618,7 +622,8 @@ void cgi_setup(char *rootdir, int auth_required) printf("HTTP/1.1 200 OK\r\nConnection: close\r\n"); printf("Date: %s\r\n", http_timestring(time(NULL))); - baseurl = url+1; + baseurl = ""; + pathinfo = url+1; } @@ -627,5 +632,36 @@ return the current pages URL ***************************************************************************/ char *cgi_baseurl(void) { - return baseurl; + if (baseurl) { + return baseurl; + } + return getenv("SCRIPT_NAME"); } + +/*************************************************************************** +return the root URL for images etc + ***************************************************************************/ +char *cgi_rooturl(void) +{ + if (baseurl) { + return "/"; + } + return "/swat/"; +} + + +/*************************************************************************** +return the current pages path info + ***************************************************************************/ +char *cgi_pathinfo(void) +{ + char *r; + if (pathinfo) { + return pathinfo; + } + r = getenv("PATH_INFO"); + if (!r) return ""; + if (*r == '/') r++; + return r; +} + diff --git a/source3/web/swat.c b/source3/web/swat.c index 09d0f08ea6..987520d2cf 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -219,7 +219,11 @@ static void load_config(void) /* spit out the html for a link with an image */ static void image_link(char *name,char *hlink, char *src, int width, int height) { - printf("\"%s\"\n", hlink, width, height, src, name); + printf("\"%s\"\n", + cgi_baseurl(), + hlink, width, height, + cgi_rooturl(), + src, name); } /* display the main navigation controls at the top of each page along @@ -562,7 +566,7 @@ int main(int argc, char *argv[]) cgi_setup(SWATDIR, auth_required); print_header(); - + charset_initialise(); /* if this binary is setuid then run completely as root */ @@ -574,7 +578,7 @@ int main(int argc, char *argv[]) show_main_buttons(); - page = cgi_baseurl(); + page = cgi_pathinfo(); if (strcmp(page, "globals")==0) { globals_page(); -- cgit