f9dd9810daa737d84b1af665f75cdf1774377ec2
[openwrt/staging/dedeckeh.git] / package / uhttpd / src / uhttpd-cgi.c
1 /*
2 * uhttpd - Tiny single-threaded httpd - CGI handler
3 *
4 * Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19 #include "uhttpd.h"
20 #include "uhttpd-utils.h"
21 #include "uhttpd-cgi.h"
22
23 static struct http_response * uh_cgi_header_parse(char *buf, int len, int *off)
24 {
25 char *bufptr = NULL;
26 char *hdrname = NULL;
27 int hdrcount = 0;
28 int pos = 0;
29
30 static struct http_response res;
31
32
33 if( ((bufptr = strfind(buf, len, "\r\n\r\n", 4)) != NULL) ||
34 ((bufptr = strfind(buf, len, "\n\n", 2)) != NULL)
35 ) {
36 *off = (int)(bufptr - buf) + ((bufptr[0] == '\r') ? 4 : 2);
37
38 memset(&res, 0, sizeof(res));
39
40 res.statuscode = 200;
41 res.statusmsg = "OK";
42
43 bufptr = &buf[0];
44
45 for( pos = 0; pos < len; pos++ )
46 {
47 if( !hdrname && (buf[pos] == ':') )
48 {
49 buf[pos++] = 0;
50
51 if( (pos < len) && (buf[pos] == ' ') )
52 pos++;
53
54 if( pos < len )
55 {
56 hdrname = bufptr;
57 bufptr = &buf[pos];
58 }
59 }
60
61 else if( (buf[pos] == '\r') || (buf[pos] == '\n') )
62 {
63 buf[pos++] = 0;
64
65 if( ! hdrname )
66 break;
67
68 if( (pos < len) && (buf[pos] == '\n') )
69 pos++;
70
71 if( pos <= len )
72 {
73 if( (hdrcount + 1) < array_size(res.headers) )
74 {
75 if( ! strcasecmp(hdrname, "Status") )
76 {
77 res.statuscode = atoi(bufptr);
78
79 if( res.statuscode < 100 )
80 res.statuscode = 200;
81
82 if( ((bufptr = strchr(bufptr, ' ')) != NULL) && (&bufptr[1] != 0) )
83 res.statusmsg = &bufptr[1];
84 }
85 else
86 {
87 res.headers[hdrcount++] = hdrname;
88 res.headers[hdrcount++] = bufptr;
89 }
90
91 bufptr = &buf[pos];
92 hdrname = NULL;
93 }
94 else
95 {
96 return NULL;
97 }
98 }
99 }
100 }
101
102 return &res;
103 }
104
105 return NULL;
106 }
107
108 static char * uh_cgi_header_lookup(struct http_response *res, const char *hdrname)
109 {
110 int i;
111
112 foreach_header(i, res->headers)
113 {
114 if( ! strcasecmp(res->headers[i], hdrname) )
115 return res->headers[i+1];
116 }
117
118 return NULL;
119 }
120
121 static int uh_cgi_error_500(struct client *cl, struct http_request *req, const char *message)
122 {
123 if( uh_http_sendf(cl, NULL,
124 "HTTP/%.1f 500 Internal Server Error\r\n"
125 "Content-Type: text/plain\r\n%s\r\n",
126 req->version,
127 (req->version > 1.0)
128 ? "Transfer-Encoding: chunked\r\n" : ""
129 ) >= 0
130 ) {
131 return uh_http_send(cl, req, message, -1);
132 }
133
134 return -1;
135 }
136
137
138 void uh_cgi_request(
139 struct client *cl, struct http_request *req,
140 struct path_info *pi, struct interpreter *ip
141 ) {
142 int i, hdroff, bufoff;
143 int hdrlen = 0;
144 int buflen = 0;
145 int fd_max = 0;
146 int content_length = 0;
147 int header_sent = 0;
148
149 int rfd[2] = { 0, 0 };
150 int wfd[2] = { 0, 0 };
151
152 char buf[UH_LIMIT_MSGHEAD];
153 char hdr[UH_LIMIT_MSGHEAD];
154
155 pid_t child;
156
157 fd_set reader;
158 fd_set writer;
159
160 struct sigaction sa;
161 struct timeval timeout;
162 struct http_response *res;
163
164
165 /* spawn pipes for me->child, child->me */
166 if( (pipe(rfd) < 0) || (pipe(wfd) < 0) )
167 {
168 uh_http_sendhf(cl, 500, "Internal Server Error",
169 "Failed to create pipe: %s", strerror(errno));
170
171 if( rfd[0] > 0 ) close(rfd[0]);
172 if( rfd[1] > 0 ) close(rfd[1]);
173 if( wfd[0] > 0 ) close(wfd[0]);
174 if( wfd[1] > 0 ) close(wfd[1]);
175
176 return;
177 }
178
179 /* fork off child process */
180 switch( (child = fork()) )
181 {
182 /* oops */
183 case -1:
184 uh_http_sendhf(cl, 500, "Internal Server Error",
185 "Failed to fork child: %s", strerror(errno));
186 return;
187
188 /* exec child */
189 case 0:
190 /* restore SIGTERM */
191 sa.sa_flags = 0;
192 sa.sa_handler = SIG_DFL;
193 sigemptyset(&sa.sa_mask);
194 sigaction(SIGTERM, &sa, NULL);
195
196 /* close loose pipe ends */
197 close(rfd[0]);
198 close(wfd[1]);
199
200 /* patch stdout and stdin to pipes */
201 dup2(rfd[1], 1);
202 dup2(wfd[0], 0);
203
204 /* check for regular, world-executable file _or_ interpreter */
205 if( ((pi->stat.st_mode & S_IFREG) &&
206 (pi->stat.st_mode & S_IXOTH)) || (ip != NULL)
207 ) {
208 /* build environment */
209 clearenv();
210
211 /* common information */
212 setenv("GATEWAY_INTERFACE", "CGI/1.1", 1);
213 setenv("SERVER_SOFTWARE", "uHTTPd", 1);
214 setenv("PATH", "/sbin:/usr/sbin:/bin:/usr/bin", 1);
215
216 #ifdef HAVE_TLS
217 /* https? */
218 if( cl->tls )
219 setenv("HTTPS", "on", 1);
220 #endif
221
222 /* addresses */
223 setenv("SERVER_NAME", sa_straddr(&cl->servaddr), 1);
224 setenv("SERVER_ADDR", sa_straddr(&cl->servaddr), 1);
225 setenv("SERVER_PORT", sa_strport(&cl->servaddr), 1);
226 setenv("REMOTE_HOST", sa_straddr(&cl->peeraddr), 1);
227 setenv("REMOTE_ADDR", sa_straddr(&cl->peeraddr), 1);
228 setenv("REMOTE_PORT", sa_strport(&cl->peeraddr), 1);
229
230 /* path information */
231 setenv("SCRIPT_NAME", pi->name, 1);
232 setenv("SCRIPT_FILENAME", pi->phys, 1);
233 setenv("DOCUMENT_ROOT", pi->root, 1);
234 setenv("QUERY_STRING", pi->query ? pi->query : "", 1);
235
236 if( pi->info )
237 setenv("PATH_INFO", pi->info, 1);
238
239 /* REDIRECT_STATUS, php-cgi wants it */
240 switch( req->redirect_status )
241 {
242 case 404:
243 setenv("REDIRECT_STATUS", "404", 1);
244 break;
245
246 default:
247 setenv("REDIRECT_STATUS", "200", 1);
248 break;
249 }
250
251 /* http version */
252 if( req->version > 1.0 )
253 setenv("SERVER_PROTOCOL", "HTTP/1.1", 1);
254 else
255 setenv("SERVER_PROTOCOL", "HTTP/1.0", 1);
256
257 /* request method */
258 switch( req->method )
259 {
260 case UH_HTTP_MSG_GET:
261 setenv("REQUEST_METHOD", "GET", 1);
262 break;
263
264 case UH_HTTP_MSG_HEAD:
265 setenv("REQUEST_METHOD", "HEAD", 1);
266 break;
267
268 case UH_HTTP_MSG_POST:
269 setenv("REQUEST_METHOD", "POST", 1);
270 break;
271 }
272
273 /* request url */
274 setenv("REQUEST_URI", req->url, 1);
275
276 /* remote user */
277 if( req->realm )
278 setenv("REMOTE_USER", req->realm->user, 1);
279
280 /* request message headers */
281 foreach_header(i, req->headers)
282 {
283 if( ! strcasecmp(req->headers[i], "Accept") )
284 setenv("HTTP_ACCEPT", req->headers[i+1], 1);
285
286 else if( ! strcasecmp(req->headers[i], "Accept-Charset") )
287 setenv("HTTP_ACCEPT_CHARSET", req->headers[i+1], 1);
288
289 else if( ! strcasecmp(req->headers[i], "Accept-Encoding") )
290 setenv("HTTP_ACCEPT_ENCODING", req->headers[i+1], 1);
291
292 else if( ! strcasecmp(req->headers[i], "Accept-Language") )
293 setenv("HTTP_ACCEPT_LANGUAGE", req->headers[i+1], 1);
294
295 else if( ! strcasecmp(req->headers[i], "Authorization") )
296 setenv("HTTP_AUTHORIZATION", req->headers[i+1], 1);
297
298 else if( ! strcasecmp(req->headers[i], "Connection") )
299 setenv("HTTP_CONNECTION", req->headers[i+1], 1);
300
301 else if( ! strcasecmp(req->headers[i], "Cookie") )
302 setenv("HTTP_COOKIE", req->headers[i+1], 1);
303
304 else if( ! strcasecmp(req->headers[i], "Host") )
305 setenv("HTTP_HOST", req->headers[i+1], 1);
306
307 else if( ! strcasecmp(req->headers[i], "Referer") )
308 setenv("HTTP_REFERER", req->headers[i+1], 1);
309
310 else if( ! strcasecmp(req->headers[i], "User-Agent") )
311 setenv("HTTP_USER_AGENT", req->headers[i+1], 1);
312
313 else if( ! strcasecmp(req->headers[i], "Content-Type") )
314 setenv("CONTENT_TYPE", req->headers[i+1], 1);
315
316 else if( ! strcasecmp(req->headers[i], "Content-Length") )
317 setenv("CONTENT_LENGTH", req->headers[i+1], 1);
318 }
319
320
321 /* execute child code ... */
322 if( chdir(pi->root) )
323 perror("chdir()");
324
325 if( ip != NULL )
326 execl(ip->path, ip->path, pi->phys, NULL);
327 else
328 execl(pi->phys, pi->phys, NULL);
329
330 /* in case it fails ... */
331 printf(
332 "Status: 500 Internal Server Error\r\n\r\n"
333 "Unable to launch the requested CGI program:\n"
334 " %s: %s\n",
335 ip ? ip->path : pi->phys, strerror(errno)
336 );
337 }
338
339 /* 403 */
340 else
341 {
342 printf(
343 "Status: 403 Forbidden\r\n\r\n"
344 "Access to this resource is forbidden\n"
345 );
346 }
347
348 close(wfd[0]);
349 close(rfd[1]);
350 exit(0);
351
352 break;
353
354 /* parent; handle I/O relaying */
355 default:
356 /* close unneeded pipe ends */
357 close(rfd[1]);
358 close(wfd[0]);
359
360 /* max watch fd */
361 fd_max = max(rfd[0], wfd[1]) + 1;
362
363 /* find content length */
364 if( req->method == UH_HTTP_MSG_POST )
365 {
366 foreach_header(i, req->headers)
367 {
368 if( ! strcasecmp(req->headers[i], "Content-Length") )
369 {
370 content_length = atoi(req->headers[i+1]);
371 break;
372 }
373 }
374 }
375
376
377 memset(hdr, 0, sizeof(hdr));
378
379 timeout.tv_sec = cl->server->conf->script_timeout;
380 timeout.tv_usec = 0;
381
382 #define ensure(x) \
383 do { if( x < 0 ) goto out; } while(0)
384
385 /* I/O loop, watch our pipe ends and dispatch child reads/writes from/to socket */
386 while( 1 )
387 {
388 FD_ZERO(&reader);
389 FD_ZERO(&writer);
390
391 FD_SET(rfd[0], &reader);
392 FD_SET(wfd[1], &writer);
393
394 /* wait until we can read or write or both */
395 if( select_intr(fd_max, &reader,
396 (content_length > -1) ? &writer : NULL, NULL,
397 (header_sent < 1) ? &timeout : NULL) > 0
398 ) {
399 /* ready to write to cgi program */
400 if( FD_ISSET(wfd[1], &writer) )
401 {
402 /* there is unread post data waiting */
403 if( content_length > 0 )
404 {
405 /* read it from socket ... */
406 if( (buflen = uh_tcp_recv(cl, buf, min(content_length, sizeof(buf)))) > 0 )
407 {
408 /* ... and write it to child's stdin */
409 if( write(wfd[1], buf, buflen) < 0 )
410 perror("write()");
411
412 content_length -= buflen;
413 }
414
415 /* unexpected eof! */
416 else
417 {
418 if( write(wfd[1], "", 0) < 0 )
419 perror("write()");
420
421 content_length = 0;
422 }
423 }
424
425 /* there is no more post data, close pipe to child's stdin */
426 else if( content_length > -1 )
427 {
428 close(wfd[1]);
429 content_length = -1;
430 }
431 }
432
433 /* ready to read from cgi program */
434 if( FD_ISSET(rfd[0], &reader) )
435 {
436 /* read data from child ... */
437 if( (buflen = read(rfd[0], buf, sizeof(buf))) > 0 )
438 {
439 /* we have not pushed out headers yet, parse input */
440 if( ! header_sent )
441 {
442 /* head buffer not full and no end yet */
443 if( hdrlen < sizeof(hdr) )
444 {
445 bufoff = min(buflen, sizeof(hdr) - hdrlen);
446 memcpy(&hdr[hdrlen], buf, bufoff);
447 hdrlen += bufoff;
448 }
449 else
450 {
451 bufoff = 0;
452 }
453
454
455 /* try to parse header ... */
456 if( (res = uh_cgi_header_parse(hdr, hdrlen, &hdroff)) != NULL )
457 {
458 /* write status */
459 ensure(uh_http_sendf(cl, NULL,
460 "HTTP/%.1f %03d %s\r\n"
461 "Connection: close\r\n",
462 req->version, res->statuscode,
463 res->statusmsg));
464
465 /* add Content-Type if no Location or Content-Type */
466 if( !uh_cgi_header_lookup(res, "Location") &&
467 !uh_cgi_header_lookup(res, "Content-Type")
468 ) {
469 ensure(uh_http_send(cl, NULL,
470 "Content-Type: text/plain\r\n", -1));
471 }
472
473 /* if request was HTTP 1.1 we'll respond chunked */
474 if( (req->version > 1.0) &&
475 !uh_cgi_header_lookup(res, "Transfer-Encoding")
476 ) {
477 ensure(uh_http_send(cl, NULL,
478 "Transfer-Encoding: chunked\r\n", -1));
479 }
480
481 /* write headers from CGI program */
482 foreach_header(i, res->headers)
483 {
484 ensure(uh_http_sendf(cl, NULL, "%s: %s\r\n",
485 res->headers[i], res->headers[i+1]));
486 }
487
488 /* terminate header */
489 ensure(uh_http_send(cl, NULL, "\r\n", -1));
490
491 /* push out remaining head buffer */
492 if( hdroff < hdrlen )
493 ensure(uh_http_send(cl, req, &hdr[hdroff], hdrlen - hdroff));
494 }
495
496 /* ... failed and head buffer exceeded */
497 else if( hdrlen >= sizeof(hdr) )
498 {
499 ensure(uh_cgi_error_500(cl, req,
500 "The CGI program generated an invalid response:\n\n"));
501
502 ensure(uh_http_send(cl, req, hdr, hdrlen));
503 }
504
505 /* ... failed but free buffer space, try again */
506 else
507 {
508 continue;
509 }
510
511 /* push out remaining read buffer */
512 if( bufoff < buflen )
513 ensure(uh_http_send(cl, req, &buf[bufoff], buflen - bufoff));
514
515 header_sent = 1;
516 continue;
517 }
518
519
520 /* headers complete, pass through buffer to socket */
521 ensure(uh_http_send(cl, req, buf, buflen));
522 }
523
524 /* looks like eof from child */
525 else
526 {
527 /* cgi script did not output useful stuff at all */
528 if( ! header_sent )
529 {
530 /* I would do this ...
531 *
532 * uh_cgi_error_500(cl, req,
533 * "The CGI program generated an "
534 * "invalid response:\n\n");
535 *
536 * ... but in order to stay as compatible as possible,
537 * treat whatever we got as text/plain response and
538 * build the required headers here.
539 */
540
541 ensure(uh_http_sendf(cl, NULL,
542 "HTTP/%.1f 200 OK\r\n"
543 "Content-Type: text/plain\r\n"
544 "%s\r\n",
545 req->version, (req->version > 1.0)
546 ? "Transfer-Encoding: chunked\r\n" : ""
547 ));
548
549 ensure(uh_http_send(cl, req, hdr, hdrlen));
550 }
551
552 /* send final chunk if we're in chunked transfer mode */
553 ensure(uh_http_send(cl, req, "", 0));
554 break;
555 }
556 }
557 }
558
559 /* timeout exceeded or interrupted by SIGCHLD */
560 else
561 {
562 if( (errno != EINTR) && ! header_sent )
563 {
564 ensure(uh_http_sendhf(cl, 504, "Gateway Timeout",
565 "The CGI script took too long to produce "
566 "a response"));
567 }
568
569 /* send final chunk if we're in chunked transfer mode */
570 ensure(uh_http_send(cl, req, "", 0));
571
572 break;
573 }
574 }
575
576 out:
577 close(rfd[0]);
578 close(wfd[1]);
579
580 if( !kill(child, 0) )
581 {
582 kill(child, SIGTERM);
583 waitpid(child, NULL, 0);
584 }
585
586 break;
587 }
588 }
589