2 some simple CGI helper routines
3 Copyright (C) Andrew Tridgell 1997-1998
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #define MAX_VARIABLES 10000
26 /* set the expiry on fixed pages */
27 #define EXPIRY_TIME (60*60*24*7)
30 extern void print_title(char *fmt
, ...);
38 static struct var variables
[MAX_VARIABLES
];
39 static int num_variables
;
40 static int content_length
;
41 static int request_post
;
42 static char *query_string
;
44 static char *pathinfo
;
46 static BOOL inetd_server
;
47 static BOOL got_request
;
49 static void unescape(char *buf
)
53 while ((p
=strchr_m(p
,'+')))
58 while (p
&& *p
&& (p
=strchr_m(p
,'%'))) {
62 if (c1
>= '0' && c1
<= '9')
64 else if (c1
>= 'A' && c1
<= 'F')
66 else if (c1
>= 'a' && c1
<= 'f')
70 if (c2
>= '0' && c2
<= '9')
72 else if (c2
>= 'A' && c2
<= 'F')
74 else if (c2
>= 'a' && c2
<= 'f')
80 memcpy(p
+1, p
+3, strlen(p
+3)+1);
86 static char *grab_line(FILE *f
, int *cl
)
97 if (len
== 0) len
= 1024;
99 ret2
= (char *)Realloc(ret
, len
);
100 if (!ret2
) return ret
;
112 if (c
== '\r') continue;
114 if (strchr_m("\n&", c
)) break;
125 /***************************************************************************
126 load all the variables passed to the CGI program. May have multiple variables
127 with the same name and the same or different values. Takes a file parameter
128 for simulating CGI invocation eg loading saved preferences.
129 ***************************************************************************/
130 void cgi_load_variables(void)
137 #ifdef DEBUG_COMMENTS
140 d_printf("<!== Start dump in cgi_load_variables() %s ==>\n",__FILE__
);
143 if (!content_length
) {
144 p
= getenv("CONTENT_LENGTH");
147 len
= content_length
;
153 ((s
=getenv("REQUEST_METHOD")) &&
154 strcasecmp(s
,"POST")==0))) {
155 while (len
&& (line
=grab_line(f
, &len
))) {
156 p
= strchr_m(line
,'=');
161 variables
[num_variables
].name
= strdup(line
);
162 variables
[num_variables
].value
= strdup(p
+1);
166 if (!variables
[num_variables
].name
||
167 !variables
[num_variables
].value
)
170 unescape(variables
[num_variables
].value
);
171 unescape(variables
[num_variables
].name
);
173 #ifdef DEBUG_COMMENTS
174 printf("<!== POST var %s has value \"%s\" ==>\n",
175 variables
[num_variables
].name
,
176 variables
[num_variables
].value
);
180 if (num_variables
== MAX_VARIABLES
) break;
185 open("/dev/null", O_RDWR
);
187 if ((s
=query_string
) || (s
=getenv("QUERY_STRING"))) {
188 for (tok
=strtok(s
,"&;");tok
;tok
=strtok(NULL
,"&;")) {
189 p
= strchr_m(tok
,'=');
194 variables
[num_variables
].name
= strdup(tok
);
195 variables
[num_variables
].value
= strdup(p
+1);
197 if (!variables
[num_variables
].name
||
198 !variables
[num_variables
].value
)
201 unescape(variables
[num_variables
].value
);
202 unescape(variables
[num_variables
].name
);
204 #ifdef DEBUG_COMMENTS
205 printf("<!== Commandline var %s has value \"%s\" ==>\n",
206 variables
[num_variables
].name
,
207 variables
[num_variables
].value
);
210 if (num_variables
== MAX_VARIABLES
) break;
214 #ifdef DEBUG_COMMENTS
215 printf("<!== End dump in cgi_load_variables() ==>\n");
218 /* variables from the client are in display charset - convert them
219 to our internal charset before use */
220 for (i
=0;i
<num_variables
;i
++) {
223 convert_string(CH_DISPLAY
, CH_UNIX
,
224 variables
[i
].name
, -1,
226 free(variables
[i
].name
);
227 variables
[i
].name
= strdup(dest
);
229 convert_string(CH_DISPLAY
, CH_UNIX
,
230 variables
[i
].value
, -1,
232 free(variables
[i
].value
);
233 variables
[i
].value
= strdup(dest
);
238 /***************************************************************************
239 find a variable passed via CGI
240 Doesn't quite do what you think in the case of POST text variables, because
241 if they exist they might have a value of "" or even " ", depending on the
242 browser. Also doesn't allow for variables[] containing multiple variables
243 with the same name and the same or different values.
244 ***************************************************************************/
245 char *cgi_variable(char *name
)
249 for (i
=0;i
<num_variables
;i
++)
250 if (strcmp(variables
[i
].name
, name
) == 0)
251 return variables
[i
].value
;
255 /***************************************************************************
256 tell a browser about a fatal error in the http processing
257 ***************************************************************************/
258 static void cgi_setup_error(char *err
, char *header
, char *info
)
261 /* damn browsers don't like getting cut off before they give a request */
263 while (fgets(line
, sizeof(line
)-1, stdin
)) {
264 if (strncasecmp(line
,"GET ", 4)==0 ||
265 strncasecmp(line
,"POST ", 5)==0 ||
266 strncasecmp(line
,"PUT ", 4)==0) {
272 d_printf("HTTP/1.0 %s\r\n%sConnection: close\r\nContent-Type: text/html\r\n\r\n<HTML><HEAD><TITLE>%s</TITLE></HEAD><BODY><H1>%s</H1>%s<p></BODY></HTML>\r\n\r\n", err
, header
, err
, err
, info
);
279 /***************************************************************************
280 tell a browser about a fatal authentication error
281 ***************************************************************************/
282 static void cgi_auth_error(void)
285 cgi_setup_error("401 Authorization Required",
286 "WWW-Authenticate: Basic realm=\"SWAT\"\r\n",
287 "You must be authenticated to use this service");
289 printf("Content-Type: text/html\r\n");
291 printf("\r\n<HTML><HEAD><TITLE>SWAT</TITLE></HEAD>\n");
292 printf("<BODY><H1>Installation Error</H1>\n");
293 printf("SWAT must be installed via inetd. It cannot be run as a CGI script<p>\n");
294 printf("</BODY></HTML>\r\n");
299 /***************************************************************************
300 authenticate when we are running as a CGI
301 ***************************************************************************/
302 static void cgi_web_auth(void)
304 char *user
= getenv("REMOTE_USER");
306 char *head
= "Content-Type: text/html\r\n\r\n<HTML><BODY><H1>SWAT installation Error</H1>\n";
307 char *tail
= "</BODY></HTML>\r\n";
310 printf("%sREMOTE_USER not set. Not authenticated by web server.<br>%s\n",
315 pwd
= getpwnam_alloc(user
);
317 printf("%sCannot find user %s<br>%s\n", head
, user
, tail
);
323 if (geteuid() != pwd
->pw_uid
|| getuid() != pwd
->pw_uid
) {
324 printf("%sFailed to become user %s - uid=%d/%d<br>%s\n",
325 head
, user
, (int)geteuid(), (int)getuid(), tail
);
331 /***************************************************************************
332 decode a base64 string in-place - simple and slow algorithm
333 ***************************************************************************/
334 static void base64_decode(char *s
)
336 char *b64
= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
337 int bit_offset
, byte_offset
, idx
, i
, n
;
338 unsigned char *d
= (unsigned char *)s
;
343 while (*s
&& (p
=strchr_m(b64
,*s
))) {
344 idx
= (int)(p
- b64
);
345 byte_offset
= (i
*6)/8;
346 bit_offset
= (i
*6)%8;
347 d
[byte_offset
] &= ~((1<<(8-bit_offset
))-1);
348 if (bit_offset
< 3) {
349 d
[byte_offset
] |= (idx
<< (2-bit_offset
));
352 d
[byte_offset
] |= (idx
>> (bit_offset
-2));
353 d
[byte_offset
+1] = 0;
354 d
[byte_offset
+1] |= (idx
<< (8-(bit_offset
-2))) & 0xFF;
363 /***************************************************************************
364 handle a http authentication line
365 ***************************************************************************/
366 static BOOL
cgi_handle_authorization(char *line
)
368 char *p
, *user
, *user_pass
;
369 struct passwd
*pass
= NULL
;
371 if (strncasecmp(line
,"Basic ", 6)) {
375 while (line
[0] == ' ') line
++;
377 if (!(p
=strchr_m(line
,':'))) {
379 * Always give the same error so a cracker
380 * cannot tell why we fail.
389 * Try and get the user from the UNIX password file.
392 pass
= getpwnam_alloc(user
);
395 * Validate the password they have given.
398 if NT_STATUS_IS_OK(pass_check(pass
, user
, user_pass
,
399 strlen(user_pass
), NULL
, False
)) {
406 become_user_permanently(pass
->pw_uid
, pass
->pw_gid
);
408 /* Save the users name */
409 C_user
= strdup(user
);
416 cgi_setup_error("401 Bad Authorization", "",
417 "username or password incorrect");
423 /***************************************************************************
425 ***************************************************************************/
428 if (geteuid() == 0) {
435 /***************************************************************************
436 return a ptr to the users name
437 ***************************************************************************/
438 char *cgi_user_name(void)
444 /***************************************************************************
445 handle a file download
446 ***************************************************************************/
447 static void cgi_download(char *file
)
455 /* sanitise the filename */
456 for (i
=0;file
[i
];i
++) {
457 if (!isalnum((int)file
[i
]) && !strchr_m("/.-_", file
[i
])) {
458 cgi_setup_error("404 File Not Found","",
459 "Illegal character in filename");
463 if (!file_exist(file
, &st
)) {
464 cgi_setup_error("404 File Not Found","",
465 "The requested file was not found");
468 fd
= web_open(file
,O_RDONLY
,0);
470 cgi_setup_error("404 File Not Found","",
471 "The requested file was not found");
473 printf("HTTP/1.0 200 OK\r\n");
474 if ((p
=strrchr_m(file
,'.'))) {
475 if (strcmp(p
,".gif")==0) {
476 printf("Content-Type: image/gif\r\n");
477 } else if (strcmp(p
,".jpg")==0) {
478 printf("Content-Type: image/jpeg\r\n");
479 } else if (strcmp(p
,".txt")==0) {
480 printf("Content-Type: text/plain\r\n");
482 printf("Content-Type: text/html\r\n");
485 printf("Expires: %s\r\n", http_timestring(time(NULL
)+EXPIRY_TIME
));
487 lang
= lang_tdb_current();
489 printf("Content-Language: %s\r\n", lang
);
492 printf("Content-Length: %d\r\n\r\n", (int)st
.st_size
);
493 while ((l
=read(fd
,buf
,sizeof(buf
)))>0) {
494 fwrite(buf
, 1, l
, stdout
);
504 * @brief Setup the CGI framework.
506 * Setup the cgi framework, handling the possibility that this program
507 * is either run as a true CGI program with a gateway to a web server, or
508 * is itself a mini web server.
510 void cgi_setup(const char *rootdir
, int auth_required
)
512 BOOL authenticated
= False
;
518 if (chdir(rootdir
)) {
519 cgi_setup_error("400 Server Error", "",
520 "chdir failed - the server is not configured correctly");
523 /* Handle the possability we might be running as non-root */
526 if ((lang
=getenv("HTTP_ACCEPT_LANGUAGE"))) {
527 /* if running as a cgi program */
531 /* maybe we are running under a web server */
532 if (getenv("CONTENT_LENGTH") || getenv("REQUEST_METHOD")) {
541 if (!check_access(1, lp_hostsallow(-1), lp_hostsdeny(-1))) {
542 cgi_setup_error("400 Server Error", "",
543 "Samba is configured to deny access from this client\n<br>Check your \"hosts allow\" and \"hosts deny\" options in smb.conf ");
546 /* we are a mini-web server. We need to read the request from stdin
547 and handle authentication etc */
548 while (fgets(line
, sizeof(line
)-1, stdin
)) {
549 if (line
[0] == '\r' || line
[0] == '\n') break;
550 if (strncasecmp(line
,"GET ", 4)==0) {
552 url
= strdup(&line
[4]);
553 } else if (strncasecmp(line
,"POST ", 5)==0) {
556 url
= strdup(&line
[5]);
557 } else if (strncasecmp(line
,"PUT ", 4)==0) {
559 cgi_setup_error("400 Bad Request", "",
560 "This server does not accept PUT requests");
561 } else if (strncasecmp(line
,"Authorization: ", 15)==0) {
562 authenticated
= cgi_handle_authorization(&line
[15]);
563 } else if (strncasecmp(line
,"Content-Length: ", 16)==0) {
564 content_length
= atoi(&line
[16]);
565 } else if (strncasecmp(line
,"Accept-Language: ", 17)==0) {
566 web_set_lang(&line
[17]);
568 /* ignore all other requests! */
571 if (auth_required
&& !authenticated
) {
576 cgi_setup_error("400 Bad Request", "",
577 "You must specify a GET or POST request");
581 if ((p
= strchr_m(url
,' ')) || (p
=strchr_m(url
,'\t'))) {
584 while (*url
&& strchr_m("\r\n",url
[strlen(url
)-1])) {
585 url
[strlen(url
)-1] = 0;
588 /* anything following a ? in the URL is part of the query string */
589 if ((p
=strchr_m(url
,'?'))) {
594 string_sub(url
, "/swat/", "", 0);
596 if (url
[0] != '/' && strstr(url
,"..")==0 && file_exist(url
, NULL
)) {
600 printf("HTTP/1.0 200 OK\r\nConnection: close\r\n");
601 printf("Date: %s\r\n", http_timestring(time(NULL
)));
607 /***************************************************************************
608 return the current pages URL
609 ***************************************************************************/
610 char *cgi_baseurl(void)
615 return getenv("SCRIPT_NAME");
618 /***************************************************************************
619 return the current pages path info
620 ***************************************************************************/
621 char *cgi_pathinfo(void)
627 r
= getenv("PATH_INFO");
633 /***************************************************************************
634 return the hostname of the client
635 ***************************************************************************/
636 char *cgi_remote_host(void)
639 return get_socket_name(1);
641 return getenv("REMOTE_HOST");
644 /***************************************************************************
645 return the hostname of the client
646 ***************************************************************************/
647 char *cgi_remote_addr(void)
650 return get_socket_addr(1);
652 return getenv("REMOTE_ADDR");
656 /***************************************************************************
657 return True if the request was a POST
658 ***************************************************************************/
659 BOOL
cgi_waspost(void)
664 return strequal(getenv("REQUEST_METHOD"), "POST");