[security] do not emit HTTP_PROXY to CGI env
[lighttpd.git] / src / mod_fastcgi.c
blob52d707d5616a1ae9a37535a2eda3ded2a19c4a0e
1 #include "first.h"
3 #include "buffer.h"
4 #include "server.h"
5 #include "keyvalue.h"
6 #include "log.h"
8 #include "http_chunk.h"
9 #include "fdevent.h"
10 #include "connections.h"
11 #include "response.h"
12 #include "joblist.h"
14 #include "plugin.h"
16 #include "inet_ntop_cache.h"
17 #include "stat_cache.h"
18 #include "status_counter.h"
20 #include <sys/types.h>
21 #include <unistd.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <string.h>
25 #include <stdlib.h>
26 #include <ctype.h>
27 #include <assert.h>
28 #include <signal.h>
30 #ifdef HAVE_FASTCGI_FASTCGI_H
31 # include <fastcgi/fastcgi.h>
32 #else
33 # ifdef HAVE_FASTCGI_H
34 # include <fastcgi.h>
35 # else
36 # include "fastcgi.h"
37 # endif
38 #endif /* HAVE_FASTCGI_FASTCGI_H */
40 #include <stdio.h>
42 #include "sys-socket.h"
44 #ifdef HAVE_SYS_UIO_H
45 #include <sys/uio.h>
46 #endif
47 #ifdef HAVE_SYS_WAIT_H
48 #include <sys/wait.h>
49 #endif
53 * TODO:
55 * - add timeout for a connect to a non-fastcgi process
56 * (use state_timestamp + state)
60 typedef struct fcgi_proc {
61 size_t id; /* id will be between 1 and max_procs */
62 buffer *unixsocket; /* config.socket + "-" + id */
63 unsigned port; /* config.port + pno */
65 buffer *connection_name; /* either tcp:<host>:<port> or unix:<socket> for debugging purposes */
67 pid_t pid; /* PID of the spawned process (0 if not spawned locally) */
70 size_t load; /* number of requests waiting on this process */
72 size_t requests; /* see max_requests */
73 struct fcgi_proc *prev, *next; /* see first */
75 time_t disabled_until; /* this proc is disabled until, use something else until then */
77 int is_local;
79 enum {
80 PROC_STATE_UNSET, /* init-phase */
81 PROC_STATE_RUNNING, /* alive */
82 PROC_STATE_OVERLOADED, /* listen-queue is full,
83 don't send anything to this proc for the next 2 seconds */
84 PROC_STATE_DIED_WAIT_FOR_PID, /* */
85 PROC_STATE_DIED, /* marked as dead, should be restarted */
86 PROC_STATE_KILLED /* was killed as we don't have the load anymore */
87 } state;
88 } fcgi_proc;
90 typedef struct {
91 /* the key that is used to reference this value */
92 buffer *id;
94 /* list of processes handling this extension
95 * sorted by lowest load
97 * whenever a job is done move it up in the list
98 * until it is sorted, move it down as soon as the
99 * job is started
101 fcgi_proc *first;
102 fcgi_proc *unused_procs;
105 * spawn at least min_procs, at max_procs.
107 * as soon as the load of the first entry
108 * is max_load_per_proc we spawn a new one
109 * and add it to the first entry and give it
110 * the load
114 unsigned short max_procs;
115 size_t num_procs; /* how many procs are started */
116 size_t active_procs; /* how many of them are really running, i.e. state = PROC_STATE_RUNNING */
119 * time after a disabled remote connection is tried to be re-enabled
124 unsigned short disable_time;
127 * some fastcgi processes get a little bit larger
128 * than wanted. max_requests_per_proc kills a
129 * process after a number of handled requests.
132 size_t max_requests_per_proc;
135 /* config */
138 * host:port
140 * if host is one of the local IP adresses the
141 * whole connection is local
143 * if port is not 0, and host is not specified,
144 * "localhost" (INADDR_LOOPBACK) is assumed.
147 buffer *host;
148 unsigned short port;
149 sa_family_t family;
152 * Unix Domain Socket
154 * instead of TCP/IP we can use Unix Domain Sockets
155 * - more secure (you have fileperms to play with)
156 * - more control (on locally)
157 * - more speed (no extra overhead)
159 buffer *unixsocket;
161 /* if socket is local we can start the fastcgi
162 * process ourself
164 * bin-path is the path to the binary
166 * check min_procs and max_procs for the number
167 * of process to start up
169 buffer *bin_path;
171 /* bin-path is set bin-environment is taken to
172 * create the environement before starting the
173 * FastCGI process
176 array *bin_env;
178 array *bin_env_copy;
181 * docroot-translation between URL->phys and the
182 * remote host
184 * reasons:
185 * - different dir-layout if remote
186 * - chroot if local
189 buffer *docroot;
192 * fastcgi-mode:
193 * - responser
194 * - authorizer
197 unsigned short mode;
200 * check_local tells you if the phys file is stat()ed
201 * or not. FastCGI doesn't care if the service is
202 * remote. If the web-server side doesn't contain
203 * the fastcgi-files we should not stat() for them
204 * and say '404 not found'.
206 unsigned short check_local;
209 * append PATH_INFO to SCRIPT_FILENAME
211 * php needs this if cgi.fix_pathinfo is provided
215 unsigned short break_scriptfilename_for_php;
218 * workaround for program when prefix="/"
220 * rule to build PATH_INFO is hardcoded for when check_local is disabled
221 * enable this option to use the workaround
225 unsigned short fix_root_path_name;
228 * If the backend includes X-Sendfile in the response
229 * we use the value as filename and ignore the content.
232 unsigned short xsendfile_allow;
233 array *xsendfile_docroot;
235 ssize_t load; /* replace by host->load */
237 size_t max_id; /* corresponds most of the time to
238 num_procs.
240 only if a process is killed max_id waits for the process itself
241 to die and decrements it afterwards */
243 buffer *strip_request_uri;
245 unsigned short kill_signal; /* we need a setting for this as libfcgi
246 applications prefer SIGUSR1 while the
247 rest of the world would use SIGTERM
248 *sigh* */
250 int listen_backlog;
251 int refcount;
252 } fcgi_extension_host;
255 * one extension can have multiple hosts assigned
256 * one host can spawn additional processes on the same
257 * socket (if we control it)
259 * ext -> host -> procs
260 * 1:n 1:n
262 * if the fastcgi process is remote that whole goes down
263 * to
265 * ext -> host -> procs
266 * 1:n 1:1
268 * in case of PHP and FCGI_CHILDREN we have again a procs
269 * but we don't control it directly.
273 typedef struct {
274 buffer *key; /* like .php */
276 int note_is_sent;
277 int last_used_ndx;
279 fcgi_extension_host **hosts;
281 size_t used;
282 size_t size;
283 } fcgi_extension;
285 typedef struct {
286 fcgi_extension **exts;
288 size_t used;
289 size_t size;
290 } fcgi_exts;
293 typedef struct {
294 fcgi_exts *exts;
296 array *ext_mapping;
298 unsigned int debug;
299 } plugin_config;
301 typedef struct {
302 char **ptr;
304 size_t size;
305 size_t used;
306 } char_array;
308 /* generic plugin data, shared between all connections */
309 typedef struct {
310 PLUGIN_DATA;
312 buffer *fcgi_env;
314 buffer *path;
316 buffer *statuskey;
318 plugin_config **config_storage;
320 plugin_config conf; /* this is only used as long as no handler_ctx is setup */
321 } plugin_data;
323 /* connection specific data */
324 typedef enum {
325 FCGI_STATE_INIT,
326 FCGI_STATE_CONNECT_DELAYED,
327 FCGI_STATE_PREPARE_WRITE,
328 FCGI_STATE_WRITE,
329 FCGI_STATE_READ
330 } fcgi_connection_state_t;
332 typedef struct {
333 fcgi_proc *proc;
334 fcgi_extension_host *host;
335 fcgi_extension *ext;
337 fcgi_connection_state_t state;
338 time_t state_timestamp;
340 chunkqueue *rb; /* read queue */
341 chunkqueue *wb; /* write queue */
342 off_t wb_reqlen;
344 buffer *response_header;
346 int fd; /* fd to the fastcgi process */
347 int fde_ndx; /* index into the fd-event buffer */
349 pid_t pid;
350 int got_proc;
351 int reconnects; /* number of reconnect attempts */
353 int request_id;
354 int send_content_body;
356 plugin_config conf;
358 connection *remote_conn; /* dumb pointer */
359 plugin_data *plugin_data; /* dumb pointer */
360 } handler_ctx;
363 /* ok, we need a prototype */
364 static handler_t fcgi_handle_fdevent(server *srv, void *ctx, int revents);
366 static void reset_signals(void) {
367 #ifdef SIGTTOU
368 signal(SIGTTOU, SIG_DFL);
369 #endif
370 #ifdef SIGTTIN
371 signal(SIGTTIN, SIG_DFL);
372 #endif
373 #ifdef SIGTSTP
374 signal(SIGTSTP, SIG_DFL);
375 #endif
376 signal(SIGHUP, SIG_DFL);
377 signal(SIGPIPE, SIG_DFL);
378 signal(SIGUSR1, SIG_DFL);
381 static void fastcgi_status_copy_procname(buffer *b, fcgi_extension_host *host, fcgi_proc *proc) {
382 buffer_copy_string_len(b, CONST_STR_LEN("fastcgi.backend."));
383 buffer_append_string_buffer(b, host->id);
384 if (proc) {
385 buffer_append_string_len(b, CONST_STR_LEN("."));
386 buffer_append_int(b, proc->id);
390 static void fcgi_proc_load_inc(server *srv, handler_ctx *hctx) {
391 plugin_data *p = hctx->plugin_data;
392 hctx->proc->load++;
394 status_counter_inc(srv, CONST_STR_LEN("fastcgi.active-requests"));
396 fastcgi_status_copy_procname(p->statuskey, hctx->host, hctx->proc);
397 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".load"));
399 status_counter_set(srv, CONST_BUF_LEN(p->statuskey), hctx->proc->load);
402 static void fcgi_proc_load_dec(server *srv, handler_ctx *hctx) {
403 plugin_data *p = hctx->plugin_data;
404 hctx->proc->load--;
406 status_counter_dec(srv, CONST_STR_LEN("fastcgi.active-requests"));
408 fastcgi_status_copy_procname(p->statuskey, hctx->host, hctx->proc);
409 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".load"));
411 status_counter_set(srv, CONST_BUF_LEN(p->statuskey), hctx->proc->load);
414 static void fcgi_host_assign(server *srv, handler_ctx *hctx, fcgi_extension_host *host) {
415 plugin_data *p = hctx->plugin_data;
416 hctx->host = host;
417 hctx->host->load++;
419 fastcgi_status_copy_procname(p->statuskey, hctx->host, NULL);
420 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".load"));
422 status_counter_set(srv, CONST_BUF_LEN(p->statuskey), hctx->host->load);
425 static void fcgi_host_reset(server *srv, handler_ctx *hctx) {
426 plugin_data *p = hctx->plugin_data;
427 hctx->host->load--;
429 fastcgi_status_copy_procname(p->statuskey, hctx->host, NULL);
430 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".load"));
432 status_counter_set(srv, CONST_BUF_LEN(p->statuskey), hctx->host->load);
434 hctx->host = NULL;
437 static void fcgi_host_disable(server *srv, handler_ctx *hctx) {
438 plugin_data *p = hctx->plugin_data;
440 if (hctx->host->disable_time || hctx->proc->is_local) {
441 if (hctx->proc->state == PROC_STATE_RUNNING) hctx->host->active_procs--;
442 hctx->proc->disabled_until = srv->cur_ts + hctx->host->disable_time;
443 hctx->proc->state = hctx->proc->is_local ? PROC_STATE_DIED_WAIT_FOR_PID : PROC_STATE_DIED;
445 if (p->conf.debug) {
446 log_error_write(srv, __FILE__, __LINE__, "sds",
447 "backend disabled for", hctx->host->disable_time, "seconds");
452 static int fastcgi_status_init(server *srv, buffer *b, fcgi_extension_host *host, fcgi_proc *proc) {
453 #define CLEAN(x) \
454 fastcgi_status_copy_procname(b, host, proc); \
455 buffer_append_string_len(b, CONST_STR_LEN(x)); \
456 status_counter_set(srv, CONST_BUF_LEN(b), 0);
458 CLEAN(".disabled");
459 CLEAN(".died");
460 CLEAN(".overloaded");
461 CLEAN(".connected");
462 CLEAN(".load");
464 #undef CLEAN
466 #define CLEAN(x) \
467 fastcgi_status_copy_procname(b, host, NULL); \
468 buffer_append_string_len(b, CONST_STR_LEN(x)); \
469 status_counter_set(srv, CONST_BUF_LEN(b), 0);
471 CLEAN(".load");
473 #undef CLEAN
475 return 0;
478 static handler_ctx * handler_ctx_init(void) {
479 handler_ctx * hctx;
481 hctx = calloc(1, sizeof(*hctx));
482 force_assert(hctx);
484 hctx->fde_ndx = -1;
486 hctx->response_header = buffer_init();
488 hctx->request_id = 0;
489 hctx->state = FCGI_STATE_INIT;
490 hctx->proc = NULL;
492 hctx->fd = -1;
494 hctx->reconnects = 0;
495 hctx->send_content_body = 1;
497 hctx->rb = chunkqueue_init();
498 hctx->wb = chunkqueue_init();
499 hctx->wb_reqlen = 0;
501 return hctx;
504 static void handler_ctx_free(server *srv, handler_ctx *hctx) {
505 if (hctx->host) {
506 fcgi_host_reset(srv, hctx);
509 buffer_free(hctx->response_header);
511 chunkqueue_free(hctx->rb);
512 chunkqueue_free(hctx->wb);
514 free(hctx);
517 static fcgi_proc *fastcgi_process_init(void) {
518 fcgi_proc *f;
520 f = calloc(1, sizeof(*f));
521 f->unixsocket = buffer_init();
522 f->connection_name = buffer_init();
524 f->prev = NULL;
525 f->next = NULL;
527 return f;
530 static void fastcgi_process_free(fcgi_proc *f) {
531 if (!f) return;
533 fastcgi_process_free(f->next);
535 buffer_free(f->unixsocket);
536 buffer_free(f->connection_name);
538 free(f);
541 static fcgi_extension_host *fastcgi_host_init(void) {
542 fcgi_extension_host *f;
544 f = calloc(1, sizeof(*f));
546 f->id = buffer_init();
547 f->host = buffer_init();
548 f->unixsocket = buffer_init();
549 f->docroot = buffer_init();
550 f->bin_path = buffer_init();
551 f->bin_env = array_init();
552 f->bin_env_copy = array_init();
553 f->strip_request_uri = buffer_init();
554 f->xsendfile_docroot = array_init();
556 return f;
559 static void fastcgi_host_free(fcgi_extension_host *h) {
560 if (!h) return;
561 if (h->refcount) {
562 --h->refcount;
563 return;
566 buffer_free(h->id);
567 buffer_free(h->host);
568 buffer_free(h->unixsocket);
569 buffer_free(h->docroot);
570 buffer_free(h->bin_path);
571 buffer_free(h->strip_request_uri);
572 array_free(h->bin_env);
573 array_free(h->bin_env_copy);
574 array_free(h->xsendfile_docroot);
576 fastcgi_process_free(h->first);
577 fastcgi_process_free(h->unused_procs);
579 free(h);
583 static fcgi_exts *fastcgi_extensions_init(void) {
584 fcgi_exts *f;
586 f = calloc(1, sizeof(*f));
588 return f;
591 static void fastcgi_extensions_free(fcgi_exts *f) {
592 size_t i;
594 if (!f) return;
596 for (i = 0; i < f->used; i++) {
597 fcgi_extension *fe;
598 size_t j;
600 fe = f->exts[i];
602 for (j = 0; j < fe->used; j++) {
603 fcgi_extension_host *h;
605 h = fe->hosts[j];
607 fastcgi_host_free(h);
610 buffer_free(fe->key);
611 free(fe->hosts);
613 free(fe);
616 free(f->exts);
618 free(f);
621 static int fastcgi_extension_insert(fcgi_exts *ext, buffer *key, fcgi_extension_host *fh) {
622 fcgi_extension *fe;
623 size_t i;
625 /* there is something */
627 for (i = 0; i < ext->used; i++) {
628 if (buffer_is_equal(key, ext->exts[i]->key)) {
629 break;
633 if (i == ext->used) {
634 /* filextension is new */
635 fe = calloc(1, sizeof(*fe));
636 force_assert(fe);
637 fe->key = buffer_init();
638 fe->last_used_ndx = -1;
639 buffer_copy_buffer(fe->key, key);
641 /* */
643 if (ext->size == 0) {
644 ext->size = 8;
645 ext->exts = malloc(ext->size * sizeof(*(ext->exts)));
646 force_assert(ext->exts);
647 } else if (ext->used == ext->size) {
648 ext->size += 8;
649 ext->exts = realloc(ext->exts, ext->size * sizeof(*(ext->exts)));
650 force_assert(ext->exts);
652 ext->exts[ext->used++] = fe;
653 } else {
654 fe = ext->exts[i];
657 if (fe->size == 0) {
658 fe->size = 4;
659 fe->hosts = malloc(fe->size * sizeof(*(fe->hosts)));
660 force_assert(fe->hosts);
661 } else if (fe->size == fe->used) {
662 fe->size += 4;
663 fe->hosts = realloc(fe->hosts, fe->size * sizeof(*(fe->hosts)));
664 force_assert(fe->hosts);
667 fe->hosts[fe->used++] = fh;
669 return 0;
673 INIT_FUNC(mod_fastcgi_init) {
674 plugin_data *p;
676 p = calloc(1, sizeof(*p));
678 p->fcgi_env = buffer_init();
680 p->path = buffer_init();
682 p->statuskey = buffer_init();
684 return p;
688 FREE_FUNC(mod_fastcgi_free) {
689 plugin_data *p = p_d;
691 UNUSED(srv);
693 buffer_free(p->fcgi_env);
694 buffer_free(p->path);
695 buffer_free(p->statuskey);
697 if (p->config_storage) {
698 size_t i, j, n;
699 for (i = 0; i < srv->config_context->used; i++) {
700 plugin_config *s = p->config_storage[i];
701 fcgi_exts *exts;
703 if (NULL == s) continue;
705 exts = s->exts;
707 for (j = 0; j < exts->used; j++) {
708 fcgi_extension *ex;
710 ex = exts->exts[j];
712 for (n = 0; n < ex->used; n++) {
713 fcgi_proc *proc;
714 fcgi_extension_host *host;
716 host = ex->hosts[n];
718 for (proc = host->first; proc; proc = proc->next) {
719 if (proc->pid != 0) {
720 kill(proc->pid, host->kill_signal);
723 if (proc->is_local &&
724 !buffer_string_is_empty(proc->unixsocket)) {
725 unlink(proc->unixsocket->ptr);
729 for (proc = host->unused_procs; proc; proc = proc->next) {
730 if (proc->pid != 0) {
731 kill(proc->pid, host->kill_signal);
733 if (proc->is_local &&
734 !buffer_string_is_empty(proc->unixsocket)) {
735 unlink(proc->unixsocket->ptr);
741 fastcgi_extensions_free(s->exts);
742 array_free(s->ext_mapping);
744 free(s);
746 free(p->config_storage);
749 free(p);
751 return HANDLER_GO_ON;
754 static int env_add(char_array *env, const char *key, size_t key_len, const char *val, size_t val_len) {
755 char *dst;
756 size_t i;
758 if (!key || !val) return -1;
760 dst = malloc(key_len + val_len + 3);
761 memcpy(dst, key, key_len);
762 dst[key_len] = '=';
763 memcpy(dst + key_len + 1, val, val_len);
764 dst[key_len + 1 + val_len] = '\0';
766 for (i = 0; i < env->used; i++) {
767 if (0 == strncmp(dst, env->ptr[i], key_len + 1)) {
768 /* don't care about free as we are in a forked child which is going to exec(...) */
769 /* free(env->ptr[i]); */
770 env->ptr[i] = dst;
771 return 0;
775 if (env->size == 0) {
776 env->size = 16;
777 env->ptr = malloc(env->size * sizeof(*env->ptr));
778 } else if (env->size == env->used + 1) {
779 env->size += 16;
780 env->ptr = realloc(env->ptr, env->size * sizeof(*env->ptr));
783 env->ptr[env->used++] = dst;
785 return 0;
788 static int parse_binpath(char_array *env, buffer *b) {
789 char *start;
790 size_t i;
791 /* search for spaces */
793 start = b->ptr;
794 for (i = 0; i < buffer_string_length(b); i++) {
795 switch(b->ptr[i]) {
796 case ' ':
797 case '\t':
798 /* a WS, stop here and copy the argument */
800 if (env->size == 0) {
801 env->size = 16;
802 env->ptr = malloc(env->size * sizeof(*env->ptr));
803 } else if (env->size == env->used) {
804 env->size += 16;
805 env->ptr = realloc(env->ptr, env->size * sizeof(*env->ptr));
808 b->ptr[i] = '\0';
810 env->ptr[env->used++] = start;
812 start = b->ptr + i + 1;
813 break;
814 default:
815 break;
819 if (env->size == 0) {
820 env->size = 16;
821 env->ptr = malloc(env->size * sizeof(*env->ptr));
822 } else if (env->size == env->used) { /* we need one extra for the terminating NULL */
823 env->size += 16;
824 env->ptr = realloc(env->ptr, env->size * sizeof(*env->ptr));
827 /* the rest */
828 env->ptr[env->used++] = start;
830 if (env->size == 0) {
831 env->size = 16;
832 env->ptr = malloc(env->size * sizeof(*env->ptr));
833 } else if (env->size == env->used) { /* we need one extra for the terminating NULL */
834 env->size += 16;
835 env->ptr = realloc(env->ptr, env->size * sizeof(*env->ptr));
838 /* terminate */
839 env->ptr[env->used++] = NULL;
841 return 0;
844 #if !defined(HAVE_FORK)
845 static int fcgi_spawn_connection(server *srv,
846 plugin_data *p,
847 fcgi_extension_host *host,
848 fcgi_proc *proc) {
849 UNUSED(srv);
850 UNUSED(p);
851 UNUSED(host);
852 UNUSED(proc);
853 return -1;
856 #else /* -> defined(HAVE_FORK) */
858 static int fcgi_spawn_connection(server *srv,
859 plugin_data *p,
860 fcgi_extension_host *host,
861 fcgi_proc *proc) {
862 int fcgi_fd;
863 int status;
864 struct timeval tv = { 0, 100 * 1000 };
865 #ifdef HAVE_SYS_UN_H
866 struct sockaddr_un fcgi_addr_un;
867 #endif
868 #if defined(HAVE_IPV6) && defined(HAVE_INET_PTON)
869 struct sockaddr_in6 fcgi_addr_in6;
870 #endif
871 struct sockaddr_in fcgi_addr_in;
872 struct sockaddr *fcgi_addr;
874 socklen_t servlen;
876 if (p->conf.debug) {
877 log_error_write(srv, __FILE__, __LINE__, "sdb",
878 "new proc, socket:", proc->port, proc->unixsocket);
881 if (!buffer_string_is_empty(proc->unixsocket)) {
882 #ifdef HAVE_SYS_UN_H
883 memset(&fcgi_addr_un, 0, sizeof(fcgi_addr_un));
884 fcgi_addr_un.sun_family = AF_UNIX;
885 if (buffer_string_length(proc->unixsocket) + 1 > sizeof(fcgi_addr_un.sun_path)) {
886 log_error_write(srv, __FILE__, __LINE__, "sB",
887 "ERROR: Unix Domain socket filename too long:",
888 proc->unixsocket);
889 return -1;
891 memcpy(fcgi_addr_un.sun_path, proc->unixsocket->ptr, buffer_string_length(proc->unixsocket) + 1);
893 #ifdef SUN_LEN
894 servlen = SUN_LEN(&fcgi_addr_un);
895 #else
896 /* stevens says: */
897 servlen = buffer_string_length(proc->unixsocket) + 1 + sizeof(fcgi_addr_un.sun_family);
898 #endif
899 fcgi_addr = (struct sockaddr *) &fcgi_addr_un;
901 buffer_copy_string_len(proc->connection_name, CONST_STR_LEN("unix:"));
902 buffer_append_string_buffer(proc->connection_name, proc->unixsocket);
904 #else
905 log_error_write(srv, __FILE__, __LINE__, "s",
906 "ERROR: Unix Domain sockets are not supported.");
907 return -1;
908 #endif
909 #if defined(HAVE_IPV6) && defined(HAVE_INET_PTON)
910 } else if (host->family == AF_INET6 && !buffer_string_is_empty(host->host)) {
911 memset(&fcgi_addr_in6, 0, sizeof(fcgi_addr_in6));
912 fcgi_addr_in6.sin6_family = AF_INET6;
913 inet_pton(AF_INET6, host->host->ptr, (char *) &fcgi_addr_in6.sin6_addr);
914 fcgi_addr_in6.sin6_port = htons(proc->port);
915 servlen = sizeof(fcgi_addr_in6);
916 fcgi_addr = (struct sockaddr *) &fcgi_addr_in6;
917 #endif
918 } else {
919 memset(&fcgi_addr_in, 0, sizeof(fcgi_addr_in));
920 fcgi_addr_in.sin_family = AF_INET;
922 if (buffer_string_is_empty(host->host)) {
923 fcgi_addr_in.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
924 } else {
925 struct hostent *he;
927 /* set a useful default */
928 fcgi_addr_in.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
931 if (NULL == (he = gethostbyname(host->host->ptr))) {
932 log_error_write(srv, __FILE__, __LINE__,
933 "sdb", "gethostbyname failed: ",
934 h_errno, host->host);
935 return -1;
938 if (he->h_addrtype != AF_INET) {
939 log_error_write(srv, __FILE__, __LINE__, "sd", "addr-type != AF_INET: ", he->h_addrtype);
940 return -1;
943 if (he->h_length != sizeof(struct in_addr)) {
944 log_error_write(srv, __FILE__, __LINE__, "sd", "addr-length != sizeof(in_addr): ", he->h_length);
945 return -1;
948 memcpy(&(fcgi_addr_in.sin_addr.s_addr), he->h_addr_list[0], he->h_length);
951 fcgi_addr_in.sin_port = htons(proc->port);
952 servlen = sizeof(fcgi_addr_in);
954 fcgi_addr = (struct sockaddr *) &fcgi_addr_in;
957 if (buffer_string_is_empty(proc->unixsocket)) {
958 buffer_copy_string_len(proc->connection_name, CONST_STR_LEN("tcp:"));
959 if (!buffer_string_is_empty(host->host)) {
960 buffer_append_string_buffer(proc->connection_name, host->host);
961 } else {
962 buffer_append_string_len(proc->connection_name, CONST_STR_LEN("localhost"));
964 buffer_append_string_len(proc->connection_name, CONST_STR_LEN(":"));
965 buffer_append_int(proc->connection_name, proc->port);
968 if (-1 == (fcgi_fd = socket(fcgi_addr->sa_family, SOCK_STREAM, 0))) {
969 log_error_write(srv, __FILE__, __LINE__, "ss",
970 "failed:", strerror(errno));
971 return -1;
974 if (-1 == connect(fcgi_fd, fcgi_addr, servlen)) {
975 /* server is not up, spawn it */
976 pid_t child;
977 int val;
979 if (errno != ENOENT &&
980 !buffer_string_is_empty(proc->unixsocket)) {
981 unlink(proc->unixsocket->ptr);
984 close(fcgi_fd);
986 /* reopen socket */
987 if (-1 == (fcgi_fd = socket(fcgi_addr->sa_family, SOCK_STREAM, 0))) {
988 log_error_write(srv, __FILE__, __LINE__, "ss",
989 "socket failed:", strerror(errno));
990 return -1;
993 val = 1;
994 if (setsockopt(fcgi_fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val)) < 0) {
995 log_error_write(srv, __FILE__, __LINE__, "ss",
996 "socketsockopt failed:", strerror(errno));
997 close(fcgi_fd);
998 return -1;
1001 /* create socket */
1002 if (-1 == bind(fcgi_fd, fcgi_addr, servlen)) {
1003 log_error_write(srv, __FILE__, __LINE__, "sbs",
1004 "bind failed for:",
1005 proc->connection_name,
1006 strerror(errno));
1007 close(fcgi_fd);
1008 return -1;
1011 if (-1 == listen(fcgi_fd, host->listen_backlog)) {
1012 log_error_write(srv, __FILE__, __LINE__, "ss",
1013 "listen failed:", strerror(errno));
1014 close(fcgi_fd);
1015 return -1;
1018 switch ((child = fork())) {
1019 case 0: {
1020 size_t i = 0;
1021 char *c;
1022 char_array env;
1023 char_array arg;
1025 /* create environment */
1026 env.ptr = NULL;
1027 env.size = 0;
1028 env.used = 0;
1030 arg.ptr = NULL;
1031 arg.size = 0;
1032 arg.used = 0;
1034 if(fcgi_fd != FCGI_LISTENSOCK_FILENO) {
1035 close(FCGI_LISTENSOCK_FILENO);
1036 dup2(fcgi_fd, FCGI_LISTENSOCK_FILENO);
1037 close(fcgi_fd);
1040 /* we don't need the client socket */
1041 for (i = 3; i < 256; i++) {
1042 close(i);
1045 /* build clean environment */
1046 if (host->bin_env_copy->used) {
1047 for (i = 0; i < host->bin_env_copy->used; i++) {
1048 data_string *ds = (data_string *)host->bin_env_copy->data[i];
1049 char *ge;
1051 if (NULL != (ge = getenv(ds->value->ptr))) {
1052 env_add(&env, CONST_BUF_LEN(ds->value), ge, strlen(ge));
1055 } else {
1056 char ** const e = environ;
1057 for (i = 0; e[i]; ++i) {
1058 char *eq;
1060 if (NULL != (eq = strchr(e[i], '='))) {
1061 env_add(&env, e[i], eq - e[i], eq+1, strlen(eq+1));
1066 /* create environment */
1067 for (i = 0; i < host->bin_env->used; i++) {
1068 data_string *ds = (data_string *)host->bin_env->data[i];
1070 env_add(&env, CONST_BUF_LEN(ds->key), CONST_BUF_LEN(ds->value));
1073 for (i = 0; i < env.used; i++) {
1074 /* search for PHP_FCGI_CHILDREN */
1075 if (0 == strncmp(env.ptr[i], "PHP_FCGI_CHILDREN=", sizeof("PHP_FCGI_CHILDREN=") - 1)) break;
1078 /* not found, add a default */
1079 if (i == env.used) {
1080 env_add(&env, CONST_STR_LEN("PHP_FCGI_CHILDREN"), CONST_STR_LEN("1"));
1083 env.ptr[env.used] = NULL;
1085 parse_binpath(&arg, host->bin_path);
1087 /* chdir into the base of the bin-path,
1088 * search for the last / */
1089 if (NULL != (c = strrchr(arg.ptr[0], '/'))) {
1090 *c = '\0';
1092 /* change to the physical directory */
1093 if (-1 == chdir(arg.ptr[0])) {
1094 *c = '/';
1095 log_error_write(srv, __FILE__, __LINE__, "sss", "chdir failed:", strerror(errno), arg.ptr[0]);
1097 *c = '/';
1100 reset_signals();
1102 /* exec the cgi */
1103 execve(arg.ptr[0], arg.ptr, env.ptr);
1105 /* log_error_write(srv, __FILE__, __LINE__, "sbs",
1106 "execve failed for:", host->bin_path, strerror(errno)); */
1108 _exit(errno);
1110 break;
1112 case -1:
1113 /* error */
1114 close(fcgi_fd);
1115 break;
1116 default:
1117 /* father */
1118 close(fcgi_fd);
1120 /* wait */
1121 select(0, NULL, NULL, NULL, &tv);
1123 switch (waitpid(child, &status, WNOHANG)) {
1124 case 0:
1125 /* child still running after timeout, good */
1126 break;
1127 case -1:
1128 /* no PID found ? should never happen */
1129 log_error_write(srv, __FILE__, __LINE__, "ss",
1130 "pid not found:", strerror(errno));
1131 return -1;
1132 default:
1133 log_error_write(srv, __FILE__, __LINE__, "sbs",
1134 "the fastcgi-backend", host->bin_path, "failed to start:");
1135 /* the child should not terminate at all */
1136 if (WIFEXITED(status)) {
1137 log_error_write(srv, __FILE__, __LINE__, "sdb",
1138 "child exited with status",
1139 WEXITSTATUS(status), host->bin_path);
1140 log_error_write(srv, __FILE__, __LINE__, "s",
1141 "If you're trying to run your app as a FastCGI backend, make sure you're using the FastCGI-enabled version.\n"
1142 "If this is PHP on Gentoo, add 'fastcgi' to the USE flags.");
1143 } else if (WIFSIGNALED(status)) {
1144 log_error_write(srv, __FILE__, __LINE__, "sd",
1145 "terminated by signal:",
1146 WTERMSIG(status));
1148 if (WTERMSIG(status) == 11) {
1149 log_error_write(srv, __FILE__, __LINE__, "s",
1150 "to be exact: it segfaulted, crashed, died, ... you get the idea." );
1151 log_error_write(srv, __FILE__, __LINE__, "s",
1152 "If this is PHP, try removing the bytecode caches for now and try again.");
1154 } else {
1155 log_error_write(srv, __FILE__, __LINE__, "sd",
1156 "child died somehow:",
1157 status);
1159 return -1;
1162 /* register process */
1163 proc->pid = child;
1164 proc->is_local = 1;
1166 break;
1168 } else {
1169 close(fcgi_fd);
1170 proc->is_local = 0;
1171 proc->pid = 0;
1173 if (p->conf.debug) {
1174 log_error_write(srv, __FILE__, __LINE__, "sb",
1175 "(debug) socket is already used; won't spawn:",
1176 proc->connection_name);
1180 proc->state = PROC_STATE_RUNNING;
1181 host->active_procs++;
1183 return 0;
1186 #endif /* HAVE_FORK */
1188 static fcgi_extension_host * unixsocket_is_dup(plugin_data *p, size_t used, buffer *unixsocket) {
1189 size_t i, j, n;
1190 for (i = 0; i < used; ++i) {
1191 fcgi_exts *exts = p->config_storage[i]->exts;
1192 for (j = 0; j < exts->used; ++j) {
1193 fcgi_extension *ex = exts->exts[j];
1194 for (n = 0; n < ex->used; ++n) {
1195 fcgi_extension_host *host = ex->hosts[n];
1196 if (!buffer_string_is_empty(host->unixsocket)
1197 && buffer_is_equal(host->unixsocket, unixsocket)
1198 && !buffer_string_is_empty(host->bin_path))
1199 return host;
1204 return NULL;
1207 SETDEFAULTS_FUNC(mod_fastcgi_set_defaults) {
1208 plugin_data *p = p_d;
1209 data_unset *du;
1210 size_t i = 0;
1211 buffer *fcgi_mode = buffer_init();
1212 fcgi_extension_host *host = NULL;
1214 config_values_t cv[] = {
1215 { "fastcgi.server", NULL, T_CONFIG_LOCAL, T_CONFIG_SCOPE_CONNECTION }, /* 0 */
1216 { "fastcgi.debug", NULL, T_CONFIG_INT , T_CONFIG_SCOPE_CONNECTION }, /* 1 */
1217 { "fastcgi.map-extensions", NULL, T_CONFIG_ARRAY, T_CONFIG_SCOPE_CONNECTION }, /* 2 */
1218 { NULL, NULL, T_CONFIG_UNSET, T_CONFIG_SCOPE_UNSET }
1221 p->config_storage = calloc(1, srv->config_context->used * sizeof(plugin_config *));
1223 for (i = 0; i < srv->config_context->used; i++) {
1224 data_config const* config = (data_config const*)srv->config_context->data[i];
1225 plugin_config *s;
1227 s = malloc(sizeof(plugin_config));
1228 s->exts = fastcgi_extensions_init();
1229 s->debug = 0;
1230 s->ext_mapping = array_init();
1232 cv[0].destination = s->exts;
1233 cv[1].destination = &(s->debug);
1234 cv[2].destination = s->ext_mapping;
1236 p->config_storage[i] = s;
1238 if (0 != config_insert_values_global(srv, config->value, cv, i == 0 ? T_CONFIG_SCOPE_SERVER : T_CONFIG_SCOPE_CONNECTION)) {
1239 goto error;
1243 * <key> = ( ... )
1246 if (NULL != (du = array_get_element(config->value, "fastcgi.server"))) {
1247 size_t j;
1248 data_array *da = (data_array *)du;
1250 if (du->type != TYPE_ARRAY) {
1251 log_error_write(srv, __FILE__, __LINE__, "sss",
1252 "unexpected type for key: ", "fastcgi.server", "expected ( \"ext\" => ( \"backend-label\" => ( \"key\" => \"value\" )))");
1254 goto error;
1259 * fastcgi.server = ( "<ext>" => ( ... ),
1260 * "<ext>" => ( ... ) )
1263 for (j = 0; j < da->value->used; j++) {
1264 size_t n;
1265 data_array *da_ext = (data_array *)da->value->data[j];
1267 if (da->value->data[j]->type != TYPE_ARRAY) {
1268 log_error_write(srv, __FILE__, __LINE__, "sssbs",
1269 "unexpected type for key: ", "fastcgi.server",
1270 "[", da->value->data[j]->key, "](string); expected ( \"ext\" => ( \"backend-label\" => ( \"key\" => \"value\" )))");
1272 goto error;
1276 * da_ext->key == name of the extension
1280 * fastcgi.server = ( "<ext>" =>
1281 * ( "<host>" => ( ... ),
1282 * "<host>" => ( ... )
1283 * ),
1284 * "<ext>" => ... )
1287 for (n = 0; n < da_ext->value->used; n++) {
1288 data_array *da_host = (data_array *)da_ext->value->data[n];
1290 config_values_t fcv[] = {
1291 { "host", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 0 */
1292 { "docroot", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 1 */
1293 { "mode", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 2 */
1294 { "socket", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 3 */
1295 { "bin-path", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 4 */
1297 { "check-local", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 5 */
1298 { "port", NULL, T_CONFIG_SHORT, T_CONFIG_SCOPE_CONNECTION }, /* 6 */
1299 { "max-procs", NULL, T_CONFIG_SHORT, T_CONFIG_SCOPE_CONNECTION }, /* 7 */
1300 { "disable-time", NULL, T_CONFIG_SHORT, T_CONFIG_SCOPE_CONNECTION }, /* 8 */
1302 { "bin-environment", NULL, T_CONFIG_ARRAY, T_CONFIG_SCOPE_CONNECTION }, /* 9 */
1303 { "bin-copy-environment", NULL, T_CONFIG_ARRAY, T_CONFIG_SCOPE_CONNECTION }, /* 10 */
1305 { "broken-scriptfilename", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 11 */
1306 { "allow-x-send-file", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 12 */
1307 { "strip-request-uri", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 13 */
1308 { "kill-signal", NULL, T_CONFIG_SHORT, T_CONFIG_SCOPE_CONNECTION }, /* 14 */
1309 { "fix-root-scriptname", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 15 */
1310 { "listen-backlog", NULL, T_CONFIG_INT, T_CONFIG_SCOPE_CONNECTION }, /* 16 */
1311 { "x-sendfile", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 17 */
1312 { "x-sendfile-docroot",NULL, T_CONFIG_ARRAY, T_CONFIG_SCOPE_CONNECTION }, /* 18 */
1314 { NULL, NULL, T_CONFIG_UNSET, T_CONFIG_SCOPE_UNSET }
1317 if (da_host->type != TYPE_ARRAY) {
1318 log_error_write(srv, __FILE__, __LINE__, "ssSBS",
1319 "unexpected type for key:",
1320 "fastcgi.server",
1321 "[", da_host->key, "](string); expected ( \"ext\" => ( \"backend-label\" => ( \"key\" => \"value\" )))");
1323 goto error;
1326 host = fastcgi_host_init();
1327 buffer_reset(fcgi_mode);
1329 buffer_copy_buffer(host->id, da_host->key);
1331 host->check_local = 1;
1332 host->max_procs = 4;
1333 host->mode = FCGI_RESPONDER;
1334 host->disable_time = 1;
1335 host->break_scriptfilename_for_php = 0;
1336 host->xsendfile_allow = 0;
1337 host->kill_signal = SIGTERM;
1338 host->fix_root_path_name = 0;
1339 host->listen_backlog = 1024;
1340 host->refcount = 0;
1342 fcv[0].destination = host->host;
1343 fcv[1].destination = host->docroot;
1344 fcv[2].destination = fcgi_mode;
1345 fcv[3].destination = host->unixsocket;
1346 fcv[4].destination = host->bin_path;
1348 fcv[5].destination = &(host->check_local);
1349 fcv[6].destination = &(host->port);
1350 fcv[7].destination = &(host->max_procs);
1351 fcv[8].destination = &(host->disable_time);
1353 fcv[9].destination = host->bin_env;
1354 fcv[10].destination = host->bin_env_copy;
1355 fcv[11].destination = &(host->break_scriptfilename_for_php);
1356 fcv[12].destination = &(host->xsendfile_allow);
1357 fcv[13].destination = host->strip_request_uri;
1358 fcv[14].destination = &(host->kill_signal);
1359 fcv[15].destination = &(host->fix_root_path_name);
1360 fcv[16].destination = &(host->listen_backlog);
1361 fcv[17].destination = &(host->xsendfile_allow);
1362 fcv[18].destination = host->xsendfile_docroot;
1364 if (0 != config_insert_values_internal(srv, da_host->value, fcv, T_CONFIG_SCOPE_CONNECTION)) {
1365 goto error;
1368 if ((!buffer_string_is_empty(host->host) || host->port) &&
1369 !buffer_string_is_empty(host->unixsocket)) {
1370 log_error_write(srv, __FILE__, __LINE__, "sbsbsbs",
1371 "either host/port or socket have to be set in:",
1372 da->key, "= (",
1373 da_ext->key, " => (",
1374 da_host->key, " ( ...");
1376 goto error;
1379 if (!buffer_string_is_empty(host->unixsocket)) {
1380 /* unix domain socket */
1381 struct sockaddr_un un;
1383 if (buffer_string_length(host->unixsocket) + 1 > sizeof(un.sun_path) - 2) {
1384 log_error_write(srv, __FILE__, __LINE__, "sbsbsbs",
1385 "unixsocket is too long in:",
1386 da->key, "= (",
1387 da_ext->key, " => (",
1388 da_host->key, " ( ...");
1390 goto error;
1393 if (!buffer_string_is_empty(host->bin_path)) {
1394 fcgi_extension_host *duplicate = unixsocket_is_dup(p, i+1, host->unixsocket);
1395 if (NULL != duplicate) {
1396 if (!buffer_is_equal(host->bin_path, duplicate->bin_path)) {
1397 log_error_write(srv, __FILE__, __LINE__, "sb",
1398 "duplicate unixsocket path:",
1399 host->unixsocket);
1400 goto error;
1402 fastcgi_host_free(host);
1403 host = duplicate;
1404 ++host->refcount;
1408 host->family = AF_UNIX;
1409 } else {
1410 /* tcp/ip */
1412 if (buffer_string_is_empty(host->host) &&
1413 buffer_string_is_empty(host->bin_path)) {
1414 log_error_write(srv, __FILE__, __LINE__, "sbsbsbs",
1415 "host or binpath have to be set in:",
1416 da->key, "= (",
1417 da_ext->key, " => (",
1418 da_host->key, " ( ...");
1420 goto error;
1421 } else if (host->port == 0) {
1422 log_error_write(srv, __FILE__, __LINE__, "sbsbsbs",
1423 "port has to be set in:",
1424 da->key, "= (",
1425 da_ext->key, " => (",
1426 da_host->key, " ( ...");
1428 goto error;
1431 host->family = (!buffer_string_is_empty(host->host) && NULL != strchr(host->host->ptr, ':')) ? AF_INET6 : AF_INET;
1434 if (host->refcount) {
1435 /* already init'd; skip spawning */
1436 } else if (!buffer_string_is_empty(host->bin_path)) {
1437 /* a local socket + self spawning */
1438 size_t pno;
1440 if (s->debug) {
1441 log_error_write(srv, __FILE__, __LINE__, "ssbsdsbsd",
1442 "--- fastcgi spawning local",
1443 "\n\tproc:", host->bin_path,
1444 "\n\tport:", host->port,
1445 "\n\tsocket", host->unixsocket,
1446 "\n\tmax-procs:", host->max_procs);
1449 for (pno = 0; pno < host->max_procs; pno++) {
1450 fcgi_proc *proc;
1452 proc = fastcgi_process_init();
1453 proc->id = host->num_procs++;
1454 host->max_id++;
1456 if (buffer_string_is_empty(host->unixsocket)) {
1457 proc->port = host->port + pno;
1458 } else {
1459 buffer_copy_buffer(proc->unixsocket, host->unixsocket);
1460 buffer_append_string_len(proc->unixsocket, CONST_STR_LEN("-"));
1461 buffer_append_int(proc->unixsocket, pno);
1464 if (s->debug) {
1465 log_error_write(srv, __FILE__, __LINE__, "ssdsbsdsd",
1466 "--- fastcgi spawning",
1467 "\n\tport:", host->port,
1468 "\n\tsocket", host->unixsocket,
1469 "\n\tcurrent:", pno, "/", host->max_procs);
1472 if (!srv->srvconf.preflight_check
1473 && fcgi_spawn_connection(srv, p, host, proc)) {
1474 log_error_write(srv, __FILE__, __LINE__, "s",
1475 "[ERROR]: spawning fcgi failed.");
1476 fastcgi_process_free(proc);
1477 goto error;
1480 fastcgi_status_init(srv, p->statuskey, host, proc);
1482 proc->next = host->first;
1483 if (host->first) host->first->prev = proc;
1485 host->first = proc;
1487 } else {
1488 fcgi_proc *proc;
1490 proc = fastcgi_process_init();
1491 proc->id = host->num_procs++;
1492 host->max_id++;
1493 host->active_procs++;
1494 proc->state = PROC_STATE_RUNNING;
1496 if (buffer_string_is_empty(host->unixsocket)) {
1497 proc->port = host->port;
1498 } else {
1499 buffer_copy_buffer(proc->unixsocket, host->unixsocket);
1502 fastcgi_status_init(srv, p->statuskey, host, proc);
1504 host->first = proc;
1506 host->max_procs = 1;
1509 if (!buffer_string_is_empty(fcgi_mode)) {
1510 if (strcmp(fcgi_mode->ptr, "responder") == 0) {
1511 host->mode = FCGI_RESPONDER;
1512 } else if (strcmp(fcgi_mode->ptr, "authorizer") == 0) {
1513 host->mode = FCGI_AUTHORIZER;
1514 if (buffer_string_is_empty(host->docroot)) {
1515 log_error_write(srv, __FILE__, __LINE__, "s",
1516 "ERROR: docroot is required for authorizer mode.");
1517 goto error;
1519 } else {
1520 log_error_write(srv, __FILE__, __LINE__, "sbs",
1521 "WARNING: unknown fastcgi mode:",
1522 fcgi_mode, "(ignored, mode set to responder)");
1526 if (host->xsendfile_docroot->used) {
1527 size_t k;
1528 for (k = 0; k < host->xsendfile_docroot->used; ++k) {
1529 data_string *ds = (data_string *)host->xsendfile_docroot->data[k];
1530 if (ds->type != TYPE_STRING) {
1531 log_error_write(srv, __FILE__, __LINE__, "s",
1532 "unexpected type for x-sendfile-docroot; expected: \"x-sendfile-docroot\" => ( \"/allowed/path\", ... )");
1533 goto error;
1535 if (ds->value->ptr[0] != '/') {
1536 log_error_write(srv, __FILE__, __LINE__, "SBs",
1537 "x-sendfile-docroot paths must begin with '/'; invalid: \"", ds->value, "\"");
1538 goto error;
1540 buffer_path_simplify(ds->value, ds->value);
1541 buffer_append_slash(ds->value);
1545 /* if extension already exists, take it */
1546 fastcgi_extension_insert(s->exts, da_ext->key, host);
1547 host = NULL;
1553 buffer_free(fcgi_mode);
1554 return HANDLER_GO_ON;
1556 error:
1557 if (NULL != host) fastcgi_host_free(host);
1558 buffer_free(fcgi_mode);
1559 return HANDLER_ERROR;
1562 static int fcgi_set_state(server *srv, handler_ctx *hctx, fcgi_connection_state_t state) {
1563 hctx->state = state;
1564 hctx->state_timestamp = srv->cur_ts;
1566 return 0;
1570 static void fcgi_connection_close(server *srv, handler_ctx *hctx) {
1571 plugin_data *p;
1572 connection *con;
1574 p = hctx->plugin_data;
1575 con = hctx->remote_conn;
1577 if (hctx->fd != -1) {
1578 fdevent_event_del(srv->ev, &(hctx->fde_ndx), hctx->fd);
1579 fdevent_unregister(srv->ev, hctx->fd);
1580 close(hctx->fd);
1581 srv->cur_fds--;
1584 if (hctx->host && hctx->proc) {
1585 if (hctx->got_proc) {
1586 /* after the connect the process gets a load */
1587 fcgi_proc_load_dec(srv, hctx);
1589 if (p->conf.debug) {
1590 log_error_write(srv, __FILE__, __LINE__, "ssdsbsd",
1591 "released proc:",
1592 "pid:", hctx->proc->pid,
1593 "socket:", hctx->proc->connection_name,
1594 "load:", hctx->proc->load);
1600 handler_ctx_free(srv, hctx);
1601 con->plugin_ctx[p->id] = NULL;
1603 /* finish response (if not already con->file_started, con->file_finished) */
1604 if (con->mode == p->id) {
1605 http_response_backend_done(srv, con);
1609 static int fcgi_reconnect(server *srv, handler_ctx *hctx) {
1610 plugin_data *p = hctx->plugin_data;
1612 /* child died
1614 * 1.
1616 * connect was ok, connection was accepted
1617 * but the php accept loop checks after the accept if it should die or not.
1619 * if yes we can only detect it at a write()
1621 * next step is resetting this attemp and setup a connection again
1623 * if we have more than 5 reconnects for the same request, die
1625 * 2.
1627 * we have a connection but the child died by some other reason
1631 if (hctx->fd != -1) {
1632 fdevent_event_del(srv->ev, &(hctx->fde_ndx), hctx->fd);
1633 fdevent_unregister(srv->ev, hctx->fd);
1634 close(hctx->fd);
1635 srv->cur_fds--;
1636 hctx->fd = -1;
1639 fcgi_set_state(srv, hctx, FCGI_STATE_INIT);
1641 hctx->request_id = 0;
1642 hctx->reconnects++;
1644 if (p->conf.debug > 2) {
1645 if (hctx->proc) {
1646 log_error_write(srv, __FILE__, __LINE__, "sdb",
1647 "release proc for reconnect:",
1648 hctx->proc->pid, hctx->proc->connection_name);
1649 } else {
1650 log_error_write(srv, __FILE__, __LINE__, "sb",
1651 "release proc for reconnect:",
1652 hctx->host->unixsocket);
1656 if (hctx->proc && hctx->got_proc) {
1657 fcgi_proc_load_dec(srv, hctx);
1660 /* perhaps another host gives us more luck */
1661 fcgi_host_reset(srv, hctx);
1663 return 0;
1667 static handler_t fcgi_connection_reset(server *srv, connection *con, void *p_d) {
1668 plugin_data *p = p_d;
1669 handler_ctx *hctx = con->plugin_ctx[p->id];
1670 if (hctx) fcgi_connection_close(srv, hctx);
1672 return HANDLER_GO_ON;
1676 static int fcgi_env_add(buffer *env, const char *key, size_t key_len, const char *val, size_t val_len) {
1677 size_t len;
1678 char len_enc[8];
1679 size_t len_enc_len = 0;
1681 if (!key || !val) return -1;
1683 len = key_len + val_len;
1685 len += key_len > 127 ? 4 : 1;
1686 len += val_len > 127 ? 4 : 1;
1688 if (buffer_string_length(env) + len >= FCGI_MAX_LENGTH) {
1690 * we can't append more headers, ignore it
1692 return -1;
1696 * field length can be 31bit max
1698 * HINT: this can't happen as FCGI_MAX_LENGTH is only 16bit
1700 force_assert(key_len < 0x7fffffffu);
1701 force_assert(val_len < 0x7fffffffu);
1703 buffer_string_prepare_append(env, len);
1705 if (key_len > 127) {
1706 len_enc[len_enc_len++] = ((key_len >> 24) & 0xff) | 0x80;
1707 len_enc[len_enc_len++] = (key_len >> 16) & 0xff;
1708 len_enc[len_enc_len++] = (key_len >> 8) & 0xff;
1709 len_enc[len_enc_len++] = (key_len >> 0) & 0xff;
1710 } else {
1711 len_enc[len_enc_len++] = (key_len >> 0) & 0xff;
1714 if (val_len > 127) {
1715 len_enc[len_enc_len++] = ((val_len >> 24) & 0xff) | 0x80;
1716 len_enc[len_enc_len++] = (val_len >> 16) & 0xff;
1717 len_enc[len_enc_len++] = (val_len >> 8) & 0xff;
1718 len_enc[len_enc_len++] = (val_len >> 0) & 0xff;
1719 } else {
1720 len_enc[len_enc_len++] = (val_len >> 0) & 0xff;
1723 buffer_append_string_len(env, len_enc, len_enc_len);
1724 buffer_append_string_len(env, key, key_len);
1725 buffer_append_string_len(env, val, val_len);
1727 return 0;
1730 static int fcgi_header(FCGI_Header * header, unsigned char type, int request_id, int contentLength, unsigned char paddingLength) {
1731 force_assert(contentLength <= FCGI_MAX_LENGTH);
1733 header->version = FCGI_VERSION_1;
1734 header->type = type;
1735 header->requestIdB0 = request_id & 0xff;
1736 header->requestIdB1 = (request_id >> 8) & 0xff;
1737 header->contentLengthB0 = contentLength & 0xff;
1738 header->contentLengthB1 = (contentLength >> 8) & 0xff;
1739 header->paddingLength = paddingLength;
1740 header->reserved = 0;
1742 return 0;
1745 typedef enum {
1746 CONNECTION_OK,
1747 CONNECTION_DELAYED, /* retry after event, take same host */
1748 CONNECTION_OVERLOADED, /* disable for 1 second, take another backend */
1749 CONNECTION_DEAD /* disable for 60 seconds, take another backend */
1750 } connection_result_t;
1752 static connection_result_t fcgi_establish_connection(server *srv, handler_ctx *hctx) {
1753 struct sockaddr *fcgi_addr;
1754 struct sockaddr_in fcgi_addr_in;
1755 #if defined(HAVE_IPV6) && defined(HAVE_INET_PTON)
1756 struct sockaddr_in6 fcgi_addr_in6;
1757 #endif
1758 #ifdef HAVE_SYS_UN_H
1759 struct sockaddr_un fcgi_addr_un;
1760 #endif
1761 socklen_t servlen;
1763 fcgi_extension_host *host = hctx->host;
1764 fcgi_proc *proc = hctx->proc;
1765 int fcgi_fd = hctx->fd;
1767 if (!buffer_string_is_empty(proc->unixsocket)) {
1768 #ifdef HAVE_SYS_UN_H
1769 /* use the unix domain socket */
1770 memset(&fcgi_addr_un, 0, sizeof(fcgi_addr_un));
1771 fcgi_addr_un.sun_family = AF_UNIX;
1772 if (buffer_string_length(proc->unixsocket) + 1 > sizeof(fcgi_addr_un.sun_path)) {
1773 log_error_write(srv, __FILE__, __LINE__, "sB",
1774 "ERROR: Unix Domain socket filename too long:",
1775 proc->unixsocket);
1776 return -1;
1778 memcpy(fcgi_addr_un.sun_path, proc->unixsocket->ptr, buffer_string_length(proc->unixsocket) + 1);
1780 #ifdef SUN_LEN
1781 servlen = SUN_LEN(&fcgi_addr_un);
1782 #else
1783 /* stevens says: */
1784 servlen = buffer_string_length(proc->unixsocket) + 1 + sizeof(fcgi_addr_un.sun_family);
1785 #endif
1786 fcgi_addr = (struct sockaddr *) &fcgi_addr_un;
1788 if (buffer_string_is_empty(proc->connection_name)) {
1789 /* on remote spawing we have to set the connection-name now */
1790 buffer_copy_string_len(proc->connection_name, CONST_STR_LEN("unix:"));
1791 buffer_append_string_buffer(proc->connection_name, proc->unixsocket);
1793 #else
1794 return CONNECTION_DEAD;
1795 #endif
1796 #if defined(HAVE_IPV6) && defined(HAVE_INET_PTON)
1797 } else if (host->family == AF_INET6 && !buffer_string_is_empty(host->host)) {
1798 memset(&fcgi_addr_in6, 0, sizeof(fcgi_addr_in6));
1799 fcgi_addr_in6.sin6_family = AF_INET6;
1800 inet_pton(AF_INET6, host->host->ptr, (char *) &fcgi_addr_in6.sin6_addr);
1801 fcgi_addr_in6.sin6_port = htons(proc->port);
1802 servlen = sizeof(fcgi_addr_in6);
1803 fcgi_addr = (struct sockaddr *) &fcgi_addr_in6;
1804 #endif
1805 } else {
1806 memset(&fcgi_addr_in, 0, sizeof(fcgi_addr_in));
1807 fcgi_addr_in.sin_family = AF_INET;
1808 if (!buffer_string_is_empty(host->host)) {
1809 if (0 == inet_aton(host->host->ptr, &(fcgi_addr_in.sin_addr))) {
1810 log_error_write(srv, __FILE__, __LINE__, "sbs",
1811 "converting IP address failed for", host->host,
1812 "\nBe sure to specify an IP address here");
1814 return CONNECTION_DEAD;
1816 } else {
1817 fcgi_addr_in.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1819 fcgi_addr_in.sin_port = htons(proc->port);
1820 servlen = sizeof(fcgi_addr_in);
1822 fcgi_addr = (struct sockaddr *) &fcgi_addr_in;
1825 if (buffer_string_is_empty(proc->unixsocket)) {
1826 if (buffer_string_is_empty(proc->connection_name)) {
1827 /* on remote spawing we have to set the connection-name now */
1828 buffer_copy_string_len(proc->connection_name, CONST_STR_LEN("tcp:"));
1829 if (!buffer_string_is_empty(host->host)) {
1830 buffer_append_string_buffer(proc->connection_name, host->host);
1831 } else {
1832 buffer_append_string_len(proc->connection_name, CONST_STR_LEN("localhost"));
1834 buffer_append_string_len(proc->connection_name, CONST_STR_LEN(":"));
1835 buffer_append_int(proc->connection_name, proc->port);
1839 if (-1 == connect(fcgi_fd, fcgi_addr, servlen)) {
1840 if (errno == EINPROGRESS ||
1841 errno == EALREADY ||
1842 errno == EINTR) {
1843 if (hctx->conf.debug > 2) {
1844 log_error_write(srv, __FILE__, __LINE__, "sb",
1845 "connect delayed; will continue later:", proc->connection_name);
1848 return CONNECTION_DELAYED;
1849 } else if (errno == EAGAIN) {
1850 if (hctx->conf.debug) {
1851 log_error_write(srv, __FILE__, __LINE__, "sbsd",
1852 "This means that you have more incoming requests than your FastCGI backend can handle in parallel."
1853 "It might help to spawn more FastCGI backends or PHP children; if not, decrease server.max-connections."
1854 "The load for this FastCGI backend", proc->connection_name, "is", proc->load);
1857 return CONNECTION_OVERLOADED;
1858 } else {
1859 log_error_write(srv, __FILE__, __LINE__, "sssb",
1860 "connect failed:",
1861 strerror(errno), "on",
1862 proc->connection_name);
1864 return CONNECTION_DEAD;
1868 hctx->reconnects = 0;
1869 if (hctx->conf.debug > 1) {
1870 log_error_write(srv, __FILE__, __LINE__, "sd",
1871 "connect succeeded: ", fcgi_fd);
1874 return CONNECTION_OK;
1877 #define FCGI_ENV_ADD_CHECK(ret, con) \
1878 if (ret == -1) { \
1879 con->http_status = 400; \
1880 return -1; \
1882 static int fcgi_env_add_request_headers(server *srv, connection *con, plugin_data *p) {
1883 size_t i;
1885 for (i = 0; i < con->request.headers->used; i++) {
1886 data_string *ds;
1888 ds = (data_string *)con->request.headers->data[i];
1890 if (!buffer_is_empty(ds->value) && !buffer_is_empty(ds->key)) {
1891 /* Do not emit HTTP_PROXY in environment.
1892 * Some executables use HTTP_PROXY to configure
1893 * outgoing proxy. See also https://httpoxy.org/ */
1894 if (buffer_is_equal_caseless_string(ds->key, CONST_STR_LEN("Proxy"))) {
1895 continue;
1898 buffer_copy_string_encoded_cgi_varnames(srv->tmp_buf, CONST_BUF_LEN(ds->key), 1);
1900 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_BUF_LEN(srv->tmp_buf), CONST_BUF_LEN(ds->value)),con);
1904 for (i = 0; i < con->environment->used; i++) {
1905 data_string *ds;
1907 ds = (data_string *)con->environment->data[i];
1909 if (!buffer_is_empty(ds->value) && !buffer_is_empty(ds->key)) {
1910 buffer_copy_string_encoded_cgi_varnames(srv->tmp_buf, CONST_BUF_LEN(ds->key), 0);
1912 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_BUF_LEN(srv->tmp_buf), CONST_BUF_LEN(ds->value)), con);
1916 return 0;
1919 static void fcgi_stdin_append(server *srv, connection *con, handler_ctx *hctx, int request_id) {
1920 FCGI_Header header;
1921 chunkqueue *req_cq = con->request_content_queue;
1922 plugin_data *p = hctx->plugin_data;
1923 off_t offset, weWant;
1924 const off_t req_cqlen = req_cq->bytes_in - req_cq->bytes_out;
1926 /* something to send ? */
1927 for (offset = 0; offset != req_cqlen; offset += weWant) {
1928 weWant = req_cqlen - offset > FCGI_MAX_LENGTH ? FCGI_MAX_LENGTH : req_cqlen - offset;
1930 /* we announce toWrite octets
1931 * now take all request_content chunks available
1932 * */
1934 fcgi_header(&(header), FCGI_STDIN, request_id, weWant, 0);
1935 chunkqueue_append_mem(hctx->wb, (const char *)&header, sizeof(header));
1936 hctx->wb_reqlen += sizeof(header);
1938 if (p->conf.debug > 10) {
1939 log_error_write(srv, __FILE__, __LINE__, "soso", "tosend:", offset, "/", req_cqlen);
1942 chunkqueue_steal(hctx->wb, req_cq, weWant);
1943 /*(hctx->wb_reqlen already includes content_length)*/
1946 if (hctx->wb->bytes_in == hctx->wb_reqlen) {
1947 /* terminate STDIN */
1948 fcgi_header(&(header), FCGI_STDIN, request_id, 0, 0);
1949 chunkqueue_append_mem(hctx->wb, (const char *)&header, sizeof(header));
1950 hctx->wb_reqlen += (int)sizeof(header);
1954 static int fcgi_create_env(server *srv, handler_ctx *hctx, int request_id) {
1955 FCGI_BeginRequestRecord beginRecord;
1956 FCGI_Header header;
1958 char buf[LI_ITOSTRING_LENGTH];
1959 const char *s;
1960 #ifdef HAVE_IPV6
1961 char b2[INET6_ADDRSTRLEN + 1];
1962 #endif
1964 plugin_data *p = hctx->plugin_data;
1965 fcgi_extension_host *host= hctx->host;
1967 connection *con = hctx->remote_conn;
1968 buffer * const req_uri = (con->error_handler_saved_status >= 0) ? con->request.uri : con->request.orig_uri;
1969 server_socket *srv_sock = con->srv_socket;
1971 sock_addr our_addr;
1972 socklen_t our_addr_len;
1974 /* send FCGI_BEGIN_REQUEST */
1976 fcgi_header(&(beginRecord.header), FCGI_BEGIN_REQUEST, request_id, sizeof(beginRecord.body), 0);
1977 beginRecord.body.roleB0 = host->mode;
1978 beginRecord.body.roleB1 = 0;
1979 beginRecord.body.flags = 0;
1980 memset(beginRecord.body.reserved, 0, sizeof(beginRecord.body.reserved));
1982 /* send FCGI_PARAMS */
1983 buffer_string_prepare_copy(p->fcgi_env, 1023);
1985 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SERVER_SOFTWARE"), CONST_BUF_LEN(con->conf.server_tag)),con)
1987 if (!buffer_is_empty(con->server_name)) {
1988 size_t len = buffer_string_length(con->server_name);
1990 if (con->server_name->ptr[0] == '[') {
1991 const char *colon = strstr(con->server_name->ptr, "]:");
1992 if (colon) len = (colon + 1) - con->server_name->ptr;
1993 } else {
1994 const char *colon = strchr(con->server_name->ptr, ':');
1995 if (colon) len = colon - con->server_name->ptr;
1998 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SERVER_NAME"), con->server_name->ptr, len),con)
1999 } else {
2000 #ifdef HAVE_IPV6
2001 s = inet_ntop(srv_sock->addr.plain.sa_family,
2002 srv_sock->addr.plain.sa_family == AF_INET6 ?
2003 (const void *) &(srv_sock->addr.ipv6.sin6_addr) :
2004 (const void *) &(srv_sock->addr.ipv4.sin_addr),
2005 b2, sizeof(b2)-1);
2006 #else
2007 s = inet_ntoa(srv_sock->addr.ipv4.sin_addr);
2008 #endif
2009 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SERVER_NAME"), s, strlen(s)),con)
2012 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("GATEWAY_INTERFACE"), CONST_STR_LEN("CGI/1.1")),con)
2014 li_utostrn(buf, sizeof(buf),
2015 #ifdef HAVE_IPV6
2016 ntohs(srv_sock->addr.plain.sa_family ? srv_sock->addr.ipv6.sin6_port : srv_sock->addr.ipv4.sin_port)
2017 #else
2018 ntohs(srv_sock->addr.ipv4.sin_port)
2019 #endif
2022 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SERVER_PORT"), buf, strlen(buf)),con)
2024 /* get the server-side of the connection to the client */
2025 our_addr_len = sizeof(our_addr);
2027 if (-1 == getsockname(con->fd, (struct sockaddr *)&our_addr, &our_addr_len)
2028 || our_addr_len > (socklen_t)sizeof(our_addr)) {
2029 s = inet_ntop_cache_get_ip(srv, &(srv_sock->addr));
2030 } else {
2031 s = inet_ntop_cache_get_ip(srv, &(our_addr));
2033 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SERVER_ADDR"), s, strlen(s)),con)
2035 li_utostrn(buf, sizeof(buf),
2036 #ifdef HAVE_IPV6
2037 ntohs(con->dst_addr.plain.sa_family ? con->dst_addr.ipv6.sin6_port : con->dst_addr.ipv4.sin_port)
2038 #else
2039 ntohs(con->dst_addr.ipv4.sin_port)
2040 #endif
2043 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REMOTE_PORT"), buf, strlen(buf)),con)
2045 s = inet_ntop_cache_get_ip(srv, &(con->dst_addr));
2046 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REMOTE_ADDR"), s, strlen(s)),con)
2048 if (con->request.content_length > 0 && host->mode != FCGI_AUTHORIZER) {
2049 /* CGI-SPEC 6.1.2 and FastCGI spec 6.3 */
2051 li_itostrn(buf, sizeof(buf), con->request.content_length);
2052 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("CONTENT_LENGTH"), buf, strlen(buf)),con)
2055 if (host->mode != FCGI_AUTHORIZER) {
2057 * SCRIPT_NAME, PATH_INFO and PATH_TRANSLATED according to
2058 * http://cgi-spec.golux.com/draft-coar-cgi-v11-03-clean.html
2059 * (6.1.14, 6.1.6, 6.1.7)
2060 * For AUTHORIZER mode these headers should be omitted.
2063 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SCRIPT_NAME"), CONST_BUF_LEN(con->uri.path)),con)
2065 if (!buffer_string_is_empty(con->request.pathinfo)) {
2066 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("PATH_INFO"), CONST_BUF_LEN(con->request.pathinfo)),con)
2068 /* PATH_TRANSLATED is only defined if PATH_INFO is set */
2070 if (!buffer_string_is_empty(host->docroot)) {
2071 buffer_copy_buffer(p->path, host->docroot);
2072 } else {
2073 buffer_copy_buffer(p->path, con->physical.basedir);
2075 buffer_append_string_buffer(p->path, con->request.pathinfo);
2076 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("PATH_TRANSLATED"), CONST_BUF_LEN(p->path)),con)
2077 } else {
2078 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("PATH_INFO"), CONST_STR_LEN("")),con)
2083 * SCRIPT_FILENAME and DOCUMENT_ROOT for php. The PHP manual
2084 * http://www.php.net/manual/en/reserved.variables.php
2085 * treatment of PATH_TRANSLATED is different from the one of CGI specs.
2086 * TODO: this code should be checked against cgi.fix_pathinfo php
2087 * parameter.
2090 if (!buffer_string_is_empty(host->docroot)) {
2092 * rewrite SCRIPT_FILENAME
2096 buffer_copy_buffer(p->path, host->docroot);
2097 buffer_append_string_buffer(p->path, con->uri.path);
2099 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SCRIPT_FILENAME"), CONST_BUF_LEN(p->path)),con)
2100 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("DOCUMENT_ROOT"), CONST_BUF_LEN(host->docroot)),con)
2101 } else {
2102 buffer_copy_buffer(p->path, con->physical.path);
2104 /* cgi.fix_pathinfo need a broken SCRIPT_FILENAME to find out what PATH_INFO is itself
2106 * see src/sapi/cgi_main.c, init_request_info()
2108 if (host->break_scriptfilename_for_php) {
2109 buffer_append_string_buffer(p->path, con->request.pathinfo);
2112 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SCRIPT_FILENAME"), CONST_BUF_LEN(p->path)),con)
2113 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("DOCUMENT_ROOT"), CONST_BUF_LEN(con->physical.basedir)),con)
2116 if (!buffer_string_is_empty(host->strip_request_uri)) {
2117 /* we need at least one char to strip off */
2119 * /app1/index/list
2121 * stripping /app1 or /app1/ should lead to
2123 * /index/list
2127 if ('/' != host->strip_request_uri->ptr[buffer_string_length(host->strip_request_uri) - 1]) {
2128 /* fix the user-input to have / as last char */
2129 buffer_append_string_len(host->strip_request_uri, CONST_STR_LEN("/"));
2132 if (buffer_string_length(req_uri) >= buffer_string_length(host->strip_request_uri) &&
2133 0 == strncmp(req_uri->ptr, host->strip_request_uri->ptr, buffer_string_length(host->strip_request_uri))) {
2134 /* the left is the same */
2136 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REQUEST_URI"),
2137 req_uri->ptr + (buffer_string_length(host->strip_request_uri) - 1),
2138 buffer_string_length(req_uri) - (buffer_string_length(host->strip_request_uri) - 1)), con)
2139 } else {
2140 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REQUEST_URI"), CONST_BUF_LEN(req_uri)),con)
2142 } else {
2143 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REQUEST_URI"), CONST_BUF_LEN(req_uri)),con)
2145 if (!buffer_string_is_empty(con->uri.query)) {
2146 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("QUERY_STRING"), CONST_BUF_LEN(con->uri.query)),con)
2147 } else {
2148 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("QUERY_STRING"), CONST_STR_LEN("")),con)
2151 s = get_http_method_name(con->request.http_method);
2152 force_assert(s);
2153 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REQUEST_METHOD"), s, strlen(s)),con)
2154 /* set REDIRECT_STATUS for php compiled with --force-redirect
2155 * (if REDIRECT_STATUS has not already been set by error handler) */
2156 if (0 == con->error_handler_saved_status) {
2157 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("REDIRECT_STATUS"), CONST_STR_LEN("200")), con);
2159 s = get_http_version_name(con->request.http_version);
2160 force_assert(s);
2161 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("SERVER_PROTOCOL"), s, strlen(s)),con)
2163 if (buffer_is_equal_caseless_string(con->uri.scheme, CONST_STR_LEN("https"))) {
2164 FCGI_ENV_ADD_CHECK(fcgi_env_add(p->fcgi_env, CONST_STR_LEN("HTTPS"), CONST_STR_LEN("on")),con)
2167 FCGI_ENV_ADD_CHECK(fcgi_env_add_request_headers(srv, con, p), con);
2170 buffer *b = buffer_init();
2172 buffer_copy_string_len(b, (const char *)&beginRecord, sizeof(beginRecord));
2174 fcgi_header(&(header), FCGI_PARAMS, request_id, buffer_string_length(p->fcgi_env), 0);
2175 buffer_append_string_len(b, (const char *)&header, sizeof(header));
2176 buffer_append_string_buffer(b, p->fcgi_env);
2178 fcgi_header(&(header), FCGI_PARAMS, request_id, 0, 0);
2179 buffer_append_string_len(b, (const char *)&header, sizeof(header));
2181 hctx->wb_reqlen = buffer_string_length(b);
2182 chunkqueue_append_buffer(hctx->wb, b);
2183 buffer_free(b);
2186 hctx->wb_reqlen += con->request.content_length;/* (eventual) (minimal) total request size, not necessarily including all fcgi_headers around content length yet */
2187 fcgi_stdin_append(srv, con, hctx, request_id);
2189 return 0;
2192 static int fcgi_response_parse(server *srv, connection *con, plugin_data *p, buffer *in) {
2193 char *s, *ns;
2195 handler_ctx *hctx = con->plugin_ctx[p->id];
2196 fcgi_extension_host *host= hctx->host;
2197 int have_sendfile2 = 0;
2198 off_t sendfile2_content_length = 0;
2200 UNUSED(srv);
2202 /* search for \n */
2203 for (s = in->ptr; NULL != (ns = strchr(s, '\n')); s = ns + 1) {
2204 char *key, *value;
2205 int key_len;
2207 /* a good day. Someone has read the specs and is sending a \r\n to us */
2209 if (ns > in->ptr &&
2210 *(ns-1) == '\r') {
2211 *(ns-1) = '\0';
2214 ns[0] = '\0';
2216 key = s;
2217 if (NULL == (value = strchr(s, ':'))) {
2218 /* we expect: "<key>: <value>\n" */
2219 continue;
2222 key_len = value - key;
2224 value++;
2225 /* strip WS */
2226 while (*value == ' ' || *value == '\t') value++;
2228 if (host->mode != FCGI_AUTHORIZER ||
2229 !(con->http_status == 0 ||
2230 con->http_status == 200)) {
2231 /* authorizers shouldn't affect the response headers sent back to the client */
2233 /* don't forward Status: */
2234 if (0 != strncasecmp(key, "Status", key_len)) {
2235 data_string *ds;
2236 if (NULL == (ds = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) {
2237 ds = data_response_init();
2239 buffer_copy_string_len(ds->key, key, key_len);
2240 buffer_copy_string(ds->value, value);
2242 array_insert_unique(con->response.headers, (data_unset *)ds);
2246 switch(key_len) {
2247 case 4:
2248 if (0 == strncasecmp(key, "Date", key_len)) {
2249 con->parsed_response |= HTTP_DATE;
2251 break;
2252 case 6:
2253 if (0 == strncasecmp(key, "Status", key_len)) {
2254 int status = strtol(value, NULL, 10);
2255 if (status >= 100 && status < 1000) {
2256 con->http_status = status;
2257 con->parsed_response |= HTTP_STATUS;
2258 } else {
2259 con->http_status = 502;
2262 break;
2263 case 8:
2264 if (0 == strncasecmp(key, "Location", key_len)) {
2265 con->parsed_response |= HTTP_LOCATION;
2267 break;
2268 case 10:
2269 if (0 == strncasecmp(key, "Connection", key_len)) {
2270 con->response.keep_alive = (0 == strcasecmp(value, "Keep-Alive")) ? 1 : 0;
2271 con->parsed_response |= HTTP_CONNECTION;
2273 break;
2274 case 11:
2275 if (host->xsendfile_allow && 0 == strncasecmp(key, "X-Sendfile2", key_len) && hctx->send_content_body) {
2276 char *pos = value;
2277 have_sendfile2 = 1;
2279 while (*pos) {
2280 char *filename, *range;
2281 stat_cache_entry *sce;
2282 off_t begin_range, end_range, range_len;
2284 while (' ' == *pos) pos++;
2285 if (!*pos) break;
2287 filename = pos;
2288 if (NULL == (range = strchr(pos, ' '))) {
2289 /* missing range */
2290 if (p->conf.debug) {
2291 log_error_write(srv, __FILE__, __LINE__, "ss", "Couldn't find range after filename:", filename);
2293 return 502;
2295 buffer_copy_string_len(srv->tmp_buf, filename, range - filename);
2297 /* find end of range */
2298 for (pos = ++range; *pos && *pos != ' ' && *pos != ','; pos++) ;
2300 buffer_urldecode_path(srv->tmp_buf);
2301 buffer_path_simplify(srv->tmp_buf, srv->tmp_buf);
2302 if (con->conf.force_lowercase_filenames) {
2303 buffer_to_lower(srv->tmp_buf);
2305 if (host->xsendfile_docroot->used) {
2306 size_t i, xlen = buffer_string_length(srv->tmp_buf);
2307 for (i = 0; i < host->xsendfile_docroot->used; ++i) {
2308 data_string *ds = (data_string *)host->xsendfile_docroot->data[i];
2309 size_t dlen = buffer_string_length(ds->value);
2310 if (dlen <= xlen
2311 && (!con->conf.force_lowercase_filenames
2312 ? 0 == memcmp(srv->tmp_buf->ptr, ds->value->ptr, dlen)
2313 : 0 == strncasecmp(srv->tmp_buf->ptr, ds->value->ptr, dlen))) {
2314 break;
2317 if (i == host->xsendfile_docroot->used) {
2318 log_error_write(srv, __FILE__, __LINE__, "SBs",
2319 "X-Sendfile2 (", srv->tmp_buf,
2320 ") not under configured x-sendfile-docroot(s)");
2321 return 403;
2325 if (HANDLER_ERROR == stat_cache_get_entry(srv, con, srv->tmp_buf, &sce)) {
2326 if (p->conf.debug) {
2327 log_error_write(srv, __FILE__, __LINE__, "sb",
2328 "send-file error: couldn't get stat_cache entry for X-Sendfile2:",
2329 srv->tmp_buf);
2331 return 404;
2332 } else if (!S_ISREG(sce->st.st_mode)) {
2333 if (p->conf.debug) {
2334 log_error_write(srv, __FILE__, __LINE__, "sb",
2335 "send-file error: wrong filetype for X-Sendfile2:",
2336 srv->tmp_buf);
2338 return 502;
2340 /* found the file */
2342 /* parse range */
2343 begin_range = 0; end_range = sce->st.st_size - 1;
2345 char *rpos = NULL;
2346 errno = 0;
2347 begin_range = strtoll(range, &rpos, 10);
2348 if (errno != 0 || begin_range < 0 || rpos == range) goto range_failed;
2349 if ('-' != *rpos++) goto range_failed;
2350 if (rpos != pos) {
2351 range = rpos;
2352 end_range = strtoll(range, &rpos, 10);
2353 if (errno != 0 || end_range < 0 || rpos == range) goto range_failed;
2355 if (rpos != pos) goto range_failed;
2357 goto range_success;
2359 range_failed:
2360 if (p->conf.debug) {
2361 log_error_write(srv, __FILE__, __LINE__, "ss", "Couldn't decode range after filename:", filename);
2363 return 502;
2365 range_success: ;
2368 /* no parameters accepted */
2370 while (*pos == ' ') pos++;
2371 if (*pos != '\0' && *pos != ',') return 502;
2373 range_len = end_range - begin_range + 1;
2374 if (range_len < 0) return 502;
2375 if (range_len != 0) {
2376 if (0 != http_chunk_append_file_range(srv, con, srv->tmp_buf, begin_range, range_len)) {
2377 return 502;
2380 sendfile2_content_length += range_len;
2382 if (*pos == ',') pos++;
2385 break;
2386 case 14:
2387 if (0 == strncasecmp(key, "Content-Length", key_len)) {
2388 con->response.content_length = strtoul(value, NULL, 10);
2389 con->parsed_response |= HTTP_CONTENT_LENGTH;
2391 if (con->response.content_length < 0) con->response.content_length = 0;
2393 break;
2394 default:
2395 break;
2399 if (have_sendfile2) {
2400 data_string *dcls;
2402 /* fix content-length */
2403 if (NULL == (dcls = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) {
2404 dcls = data_response_init();
2407 buffer_copy_string_len(dcls->key, "Content-Length", sizeof("Content-Length")-1);
2408 buffer_copy_int(dcls->value, sendfile2_content_length);
2409 array_replace(con->response.headers, (data_unset *)dcls);
2411 con->parsed_response |= HTTP_CONTENT_LENGTH;
2412 con->response.content_length = sendfile2_content_length;
2413 return 200;
2416 /* CGI/1.1 rev 03 - 7.2.1.2 */
2417 if ((con->parsed_response & HTTP_LOCATION) &&
2418 !(con->parsed_response & HTTP_STATUS)) {
2419 con->http_status = 302;
2422 return 0;
2425 typedef struct {
2426 buffer *b;
2427 unsigned int len;
2428 int type;
2429 int padding;
2430 int request_id;
2431 } fastcgi_response_packet;
2433 static int fastcgi_get_packet(server *srv, handler_ctx *hctx, fastcgi_response_packet *packet) {
2434 chunk *c;
2435 size_t offset;
2436 size_t toread;
2437 FCGI_Header *header;
2439 if (!hctx->rb->first) return -1;
2441 packet->b = buffer_init();
2442 packet->len = 0;
2443 packet->type = 0;
2444 packet->padding = 0;
2445 packet->request_id = 0;
2447 offset = 0; toread = 8;
2448 /* get at least the FastCGI header */
2449 for (c = hctx->rb->first; c; c = c->next) {
2450 size_t weHave = buffer_string_length(c->mem) - c->offset;
2452 if (weHave > toread) weHave = toread;
2454 buffer_append_string_len(packet->b, c->mem->ptr + c->offset, weHave);
2455 toread -= weHave;
2456 offset = weHave; /* skip offset bytes in chunk for "real" data */
2458 if (0 == toread) break;
2461 if (buffer_string_length(packet->b) < sizeof(FCGI_Header)) {
2462 /* no header */
2463 if (hctx->plugin_data->conf.debug) {
2464 log_error_write(srv, __FILE__, __LINE__, "sdsds", "FastCGI: header too small:", buffer_string_length(packet->b), "bytes <", sizeof(FCGI_Header), "bytes, waiting for more data");
2467 buffer_free(packet->b);
2469 return -1;
2472 /* we have at least a header, now check how much me have to fetch */
2473 header = (FCGI_Header *)(packet->b->ptr);
2475 packet->len = (header->contentLengthB0 | (header->contentLengthB1 << 8)) + header->paddingLength;
2476 packet->request_id = (header->requestIdB0 | (header->requestIdB1 << 8));
2477 packet->type = header->type;
2478 packet->padding = header->paddingLength;
2480 /* ->b should only be the content */
2481 buffer_string_set_length(packet->b, 0);
2483 if (packet->len) {
2484 /* copy the content */
2485 for (; c && (buffer_string_length(packet->b) < packet->len); c = c->next) {
2486 size_t weWant = packet->len - buffer_string_length(packet->b);
2487 size_t weHave = buffer_string_length(c->mem) - c->offset - offset;
2489 if (weHave > weWant) weHave = weWant;
2491 buffer_append_string_len(packet->b, c->mem->ptr + c->offset + offset, weHave);
2493 /* we only skipped the first bytes as they belonged to the fcgi header */
2494 offset = 0;
2497 if (buffer_string_length(packet->b) < packet->len) {
2498 /* we didn't get the full packet */
2500 buffer_free(packet->b);
2501 return -1;
2504 buffer_string_set_length(packet->b, buffer_string_length(packet->b) - packet->padding);
2507 chunkqueue_mark_written(hctx->rb, packet->len + sizeof(FCGI_Header));
2509 return 0;
2512 static int fcgi_demux_response(server *srv, handler_ctx *hctx) {
2513 int fin = 0;
2514 int toread, ret;
2515 ssize_t r = 0;
2517 plugin_data *p = hctx->plugin_data;
2518 connection *con = hctx->remote_conn;
2519 int fcgi_fd = hctx->fd;
2520 fcgi_extension_host *host= hctx->host;
2521 fcgi_proc *proc = hctx->proc;
2524 * check how much we have to read
2526 #if !defined(_WIN32) && !defined(__CYGWIN__)
2527 if (ioctl(hctx->fd, FIONREAD, &toread)) {
2528 if (errno == EAGAIN) {
2529 fdevent_event_add(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_IN);
2530 return 0;
2532 log_error_write(srv, __FILE__, __LINE__, "sd",
2533 "unexpected end-of-file (perhaps the fastcgi process died):",
2534 fcgi_fd);
2535 return -1;
2537 #else
2538 toread = 4096;
2539 #endif
2541 if (toread > 0) {
2542 char *mem;
2543 size_t mem_len;
2545 if ((con->conf.stream_response_body & FDEVENT_STREAM_RESPONSE_BUFMIN)) {
2546 off_t cqlen = chunkqueue_length(hctx->rb);
2547 if (cqlen + toread > 65536 + (int)sizeof(FCGI_Header)) { /*(max size of FastCGI packet + 1)*/
2548 if (cqlen < 65536 + (int)sizeof(FCGI_Header)) {
2549 toread = 65536 + (int)sizeof(FCGI_Header) - cqlen;
2550 } else { /* should not happen */
2551 toread = toread < 1024 ? toread : 1024;
2556 chunkqueue_get_memory(hctx->rb, &mem, &mem_len, 0, toread);
2557 r = read(hctx->fd, mem, mem_len);
2558 chunkqueue_use_memory(hctx->rb, r > 0 ? r : 0);
2560 if (-1 == r) {
2561 if (errno == EAGAIN) {
2562 fdevent_event_add(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_IN);
2563 return 0;
2565 log_error_write(srv, __FILE__, __LINE__, "sds",
2566 "unexpected end-of-file (perhaps the fastcgi process died):",
2567 fcgi_fd, strerror(errno));
2568 return -1;
2571 if (0 == r) {
2572 log_error_write(srv, __FILE__, __LINE__, "ssdsb",
2573 "unexpected end-of-file (perhaps the fastcgi process died):",
2574 "pid:", proc->pid,
2575 "socket:", proc->connection_name);
2577 return -1;
2581 * parse the fastcgi packets and forward the content to the write-queue
2584 while (fin == 0) {
2585 fastcgi_response_packet packet;
2587 /* check if we have at least one packet */
2588 if (0 != fastcgi_get_packet(srv, hctx, &packet)) {
2589 /* no full packet */
2590 break;
2593 switch(packet.type) {
2594 case FCGI_STDOUT:
2595 if (packet.len == 0) break;
2597 /* is the header already finished */
2598 if (0 == con->file_started) {
2599 char *c;
2600 data_string *ds;
2602 /* search for header terminator
2604 * if we start with \r\n check if last packet terminated with \r\n
2605 * if we start with \n check if last packet terminated with \n
2606 * search for \r\n\r\n
2607 * search for \n\n
2610 buffer_append_string_buffer(hctx->response_header, packet.b);
2612 if (NULL != (c = buffer_search_string_len(hctx->response_header, CONST_STR_LEN("\r\n\r\n")))) {
2613 char *hend = c + 4; /* header end == body start */
2614 size_t hlen = hend - hctx->response_header->ptr;
2615 buffer_copy_string_len(packet.b, hend, buffer_string_length(hctx->response_header) - hlen);
2616 buffer_string_set_length(hctx->response_header, hlen);
2617 } else if (NULL != (c = buffer_search_string_len(hctx->response_header, CONST_STR_LEN("\n\n")))) {
2618 char *hend = c + 2; /* header end == body start */
2619 size_t hlen = hend - hctx->response_header->ptr;
2620 buffer_copy_string_len(packet.b, hend, buffer_string_length(hctx->response_header) - hlen);
2621 buffer_string_set_length(hctx->response_header, hlen);
2622 } else {
2623 /* no luck, no header found */
2624 /*(reuse MAX_HTTP_REQUEST_HEADER as max size for response headers from backends)*/
2625 if (buffer_string_length(hctx->response_header) > MAX_HTTP_REQUEST_HEADER) {
2626 log_error_write(srv, __FILE__, __LINE__, "sb", "response headers too large for", con->uri.path);
2627 con->http_status = 502; /* Bad Gateway */
2628 con->mode = DIRECT;
2629 fin = 1;
2631 break;
2634 /* parse the response header */
2635 if ((ret = fcgi_response_parse(srv, con, p, hctx->response_header))) {
2636 if (200 != ret) { /*(200 returned for X-Sendfile2 handled)*/
2637 con->http_status = ret;
2638 con->mode = DIRECT;
2640 con->file_started = 1;
2641 hctx->send_content_body = 0;
2642 fin = 1;
2643 break;
2646 con->file_started = 1;
2648 if (host->mode == FCGI_AUTHORIZER &&
2649 (con->http_status == 0 ||
2650 con->http_status == 200)) {
2651 /* a authorizer with approved the static request, ignore the content here */
2652 hctx->send_content_body = 0;
2655 if (host->xsendfile_allow && hctx->send_content_body &&
2656 (NULL != (ds = (data_string *) array_get_element(con->response.headers, "X-LIGHTTPD-send-file"))
2657 || NULL != (ds = (data_string *) array_get_element(con->response.headers, "X-Sendfile")))) {
2658 http_response_xsendfile(srv, con, ds->value, host->xsendfile_docroot);
2659 if (con->mode == DIRECT) {
2660 fin = 1;
2663 hctx->send_content_body = 0; /* ignore the content */
2664 break;
2668 if (hctx->send_content_body && !buffer_string_is_empty(packet.b)) {
2669 if (0 != http_chunk_append_buffer(srv, con, packet.b)) {
2670 /* error writing to tempfile;
2671 * truncate response or send 500 if nothing sent yet */
2672 fin = 1;
2673 break;
2675 if ((con->conf.stream_response_body & FDEVENT_STREAM_RESPONSE_BUFMIN)
2676 && chunkqueue_length(con->write_queue) > 65536 - 4096) {
2677 if (!con->is_writable) {
2678 /*(defer removal of FDEVENT_IN interest since
2679 * connection_state_machine() might be able to send data
2680 * immediately, unless !con->is_writable, where
2681 * connection_state_machine() might not loop back to call
2682 * mod_fastcgi_handle_subrequest())*/
2683 fdevent_event_clr(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_IN);
2687 break;
2688 case FCGI_STDERR:
2689 if (packet.len == 0) break;
2691 log_error_write_multiline_buffer(srv, __FILE__, __LINE__, packet.b, "s",
2692 "FastCGI-stderr:");
2694 break;
2695 case FCGI_END_REQUEST:
2696 fin = 1;
2697 break;
2698 default:
2699 log_error_write(srv, __FILE__, __LINE__, "sd",
2700 "FastCGI: header.type not handled: ", packet.type);
2701 break;
2703 buffer_free(packet.b);
2706 return fin;
2709 static int fcgi_restart_dead_procs(server *srv, plugin_data *p, fcgi_extension_host *host) {
2710 fcgi_proc *proc;
2712 for (proc = host->first; proc; proc = proc->next) {
2713 int status;
2715 if (p->conf.debug > 2) {
2716 log_error_write(srv, __FILE__, __LINE__, "sbdddd",
2717 "proc:",
2718 proc->connection_name,
2719 proc->state,
2720 proc->is_local,
2721 proc->load,
2722 proc->pid);
2726 * if the remote side is overloaded, we check back after <n> seconds
2729 switch (proc->state) {
2730 case PROC_STATE_KILLED:
2731 case PROC_STATE_UNSET:
2732 /* this should never happen as long as adaptive spawing is disabled */
2733 force_assert(0);
2735 break;
2736 case PROC_STATE_RUNNING:
2737 break;
2738 case PROC_STATE_OVERLOADED:
2739 if (srv->cur_ts <= proc->disabled_until) break;
2741 proc->state = PROC_STATE_RUNNING;
2742 host->active_procs++;
2744 log_error_write(srv, __FILE__, __LINE__, "sbdb",
2745 "fcgi-server re-enabled:",
2746 host->host, host->port,
2747 host->unixsocket);
2748 break;
2749 case PROC_STATE_DIED_WAIT_FOR_PID:
2750 /* non-local procs don't have PIDs to wait for */
2751 if (!proc->is_local) {
2752 proc->state = PROC_STATE_DIED;
2753 } else {
2754 /* the child should not terminate at all */
2756 for ( ;; ) {
2757 switch(waitpid(proc->pid, &status, WNOHANG)) {
2758 case 0:
2759 /* child is still alive */
2760 if (srv->cur_ts <= proc->disabled_until) break;
2762 proc->state = PROC_STATE_RUNNING;
2763 host->active_procs++;
2765 log_error_write(srv, __FILE__, __LINE__, "sbdb",
2766 "fcgi-server re-enabled:",
2767 host->host, host->port,
2768 host->unixsocket);
2769 break;
2770 case -1:
2771 if (errno == EINTR) continue;
2773 log_error_write(srv, __FILE__, __LINE__, "sd",
2774 "child died somehow, waitpid failed:",
2775 errno);
2776 proc->state = PROC_STATE_DIED;
2777 break;
2778 default:
2779 if (WIFEXITED(status)) {
2780 #if 0
2781 log_error_write(srv, __FILE__, __LINE__, "sdsd",
2782 "child exited, pid:", proc->pid,
2783 "status:", WEXITSTATUS(status));
2784 #endif
2785 } else if (WIFSIGNALED(status)) {
2786 log_error_write(srv, __FILE__, __LINE__, "sd",
2787 "child signaled:",
2788 WTERMSIG(status));
2789 } else {
2790 log_error_write(srv, __FILE__, __LINE__, "sd",
2791 "child died somehow:",
2792 status);
2795 proc->state = PROC_STATE_DIED;
2796 break;
2798 break;
2802 /* fall through if we have a dead proc now */
2803 if (proc->state != PROC_STATE_DIED) break;
2805 case PROC_STATE_DIED:
2806 /* local procs get restarted by us,
2807 * remote ones hopefully by the admin */
2809 if (!buffer_string_is_empty(host->bin_path)) {
2810 /* we still have connections bound to this proc,
2811 * let them terminate first */
2812 if (proc->load != 0) break;
2814 /* restart the child */
2816 if (p->conf.debug) {
2817 log_error_write(srv, __FILE__, __LINE__, "ssbsdsd",
2818 "--- fastcgi spawning",
2819 "\n\tsocket", proc->connection_name,
2820 "\n\tcurrent:", 1, "/", host->max_procs);
2823 if (fcgi_spawn_connection(srv, p, host, proc)) {
2824 log_error_write(srv, __FILE__, __LINE__, "s",
2825 "ERROR: spawning fcgi failed.");
2826 return HANDLER_ERROR;
2828 } else {
2829 if (srv->cur_ts <= proc->disabled_until) break;
2831 proc->state = PROC_STATE_RUNNING;
2832 host->active_procs++;
2834 log_error_write(srv, __FILE__, __LINE__, "sb",
2835 "fcgi-server re-enabled:",
2836 proc->connection_name);
2838 break;
2842 return 0;
2845 static handler_t fcgi_write_request(server *srv, handler_ctx *hctx) {
2846 plugin_data *p = hctx->plugin_data;
2847 fcgi_extension_host *host= hctx->host;
2848 connection *con = hctx->remote_conn;
2849 fcgi_proc *proc;
2851 int ret;
2853 /* sanity check:
2854 * - host != NULL
2855 * - either:
2856 * - tcp socket (do not check host->host->uses, as it may be not set which means INADDR_LOOPBACK)
2857 * - unix socket
2859 if (!host) {
2860 log_error_write(srv, __FILE__, __LINE__, "s", "fatal error: host = NULL");
2861 return HANDLER_ERROR;
2863 if ((!host->port && buffer_string_is_empty(host->unixsocket))) {
2864 log_error_write(srv, __FILE__, __LINE__, "s", "fatal error: neither host->port nor host->unixsocket is set");
2865 return HANDLER_ERROR;
2868 /* we can't handle this in the switch as we have to fall through in it */
2869 if (hctx->state == FCGI_STATE_CONNECT_DELAYED) {
2870 int socket_error;
2871 socklen_t socket_error_len = sizeof(socket_error);
2873 /* try to finish the connect() */
2874 if (0 != getsockopt(hctx->fd, SOL_SOCKET, SO_ERROR, &socket_error, &socket_error_len)) {
2875 log_error_write(srv, __FILE__, __LINE__, "ss",
2876 "getsockopt failed:", strerror(errno));
2878 fcgi_host_disable(srv, hctx);
2880 return HANDLER_ERROR;
2882 if (socket_error != 0) {
2883 if (!hctx->proc->is_local || p->conf.debug) {
2884 /* local procs get restarted */
2886 log_error_write(srv, __FILE__, __LINE__, "sssb",
2887 "establishing connection failed:", strerror(socket_error),
2888 "socket:", hctx->proc->connection_name);
2891 fcgi_host_disable(srv, hctx);
2892 log_error_write(srv, __FILE__, __LINE__, "sdssdsd",
2893 "backend is overloaded; we'll disable it for", hctx->host->disable_time, "seconds and send the request to another backend instead:",
2894 "reconnects:", hctx->reconnects,
2895 "load:", host->load);
2897 fastcgi_status_copy_procname(p->statuskey, hctx->host, hctx->proc);
2898 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".died"));
2900 status_counter_inc(srv, CONST_BUF_LEN(p->statuskey));
2902 return HANDLER_ERROR;
2904 /* go on with preparing the request */
2905 hctx->state = FCGI_STATE_PREPARE_WRITE;
2909 switch(hctx->state) {
2910 case FCGI_STATE_CONNECT_DELAYED:
2911 /* should never happen */
2912 return HANDLER_WAIT_FOR_EVENT;
2913 case FCGI_STATE_INIT:
2914 /* do we have a running process for this host (max-procs) ? */
2915 hctx->proc = NULL;
2917 for (proc = hctx->host->first;
2918 proc && proc->state != PROC_STATE_RUNNING;
2919 proc = proc->next);
2921 /* all children are dead */
2922 if (proc == NULL) {
2923 hctx->fde_ndx = -1;
2925 return HANDLER_ERROR;
2928 hctx->proc = proc;
2930 /* check the other procs if they have a lower load */
2931 for (proc = proc->next; proc; proc = proc->next) {
2932 if (proc->state != PROC_STATE_RUNNING) continue;
2933 if (proc->load < hctx->proc->load) hctx->proc = proc;
2936 if (-1 == (hctx->fd = socket(host->family, SOCK_STREAM, 0))) {
2937 if (errno == EMFILE ||
2938 errno == EINTR) {
2939 log_error_write(srv, __FILE__, __LINE__, "sd",
2940 "wait for fd at connection:", con->fd);
2942 return HANDLER_WAIT_FOR_FD;
2945 log_error_write(srv, __FILE__, __LINE__, "ssdd",
2946 "socket failed:", strerror(errno), srv->cur_fds, srv->max_fds);
2947 return HANDLER_ERROR;
2949 hctx->fde_ndx = -1;
2951 srv->cur_fds++;
2953 fdevent_register(srv->ev, hctx->fd, fcgi_handle_fdevent, hctx);
2955 if (-1 == fdevent_fcntl_set(srv->ev, hctx->fd)) {
2956 log_error_write(srv, __FILE__, __LINE__, "ss",
2957 "fcntl failed:", strerror(errno));
2959 return HANDLER_ERROR;
2962 if (hctx->proc->is_local) {
2963 hctx->pid = hctx->proc->pid;
2966 switch (fcgi_establish_connection(srv, hctx)) {
2967 case CONNECTION_DELAYED:
2968 /* connection is in progress, wait for an event and call getsockopt() below */
2970 fdevent_event_set(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_OUT);
2972 fcgi_set_state(srv, hctx, FCGI_STATE_CONNECT_DELAYED);
2973 return HANDLER_WAIT_FOR_EVENT;
2974 case CONNECTION_OVERLOADED:
2975 /* cool down the backend, it is overloaded
2976 * -> EAGAIN */
2978 if (hctx->host->disable_time) {
2979 log_error_write(srv, __FILE__, __LINE__, "sdssdsd",
2980 "backend is overloaded; we'll disable it for", hctx->host->disable_time, "seconds and send the request to another backend instead:",
2981 "reconnects:", hctx->reconnects,
2982 "load:", host->load);
2984 hctx->proc->disabled_until = srv->cur_ts + hctx->host->disable_time;
2985 if (hctx->proc->state == PROC_STATE_RUNNING) hctx->host->active_procs--;
2986 hctx->proc->state = PROC_STATE_OVERLOADED;
2989 fastcgi_status_copy_procname(p->statuskey, hctx->host, hctx->proc);
2990 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".overloaded"));
2992 status_counter_inc(srv, CONST_BUF_LEN(p->statuskey));
2994 return HANDLER_ERROR;
2995 case CONNECTION_DEAD:
2996 /* we got a hard error from the backend like
2997 * - ECONNREFUSED for tcp-ip sockets
2998 * - ENOENT for unix-domain-sockets
3000 * for check if the host is back in hctx->host->disable_time seconds
3001 * */
3003 fcgi_host_disable(srv, hctx);
3005 log_error_write(srv, __FILE__, __LINE__, "sdssdsd",
3006 "backend died; we'll disable it for", hctx->host->disable_time, "seconds and send the request to another backend instead:",
3007 "reconnects:", hctx->reconnects,
3008 "load:", host->load);
3010 fastcgi_status_copy_procname(p->statuskey, hctx->host, hctx->proc);
3011 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".died"));
3013 status_counter_inc(srv, CONST_BUF_LEN(p->statuskey));
3015 return HANDLER_ERROR;
3016 case CONNECTION_OK:
3017 /* everything is ok, go on */
3019 fcgi_set_state(srv, hctx, FCGI_STATE_PREPARE_WRITE);
3021 break;
3023 /* fallthrough */
3024 case FCGI_STATE_PREPARE_WRITE:
3025 /* ok, we have the connection */
3027 fcgi_proc_load_inc(srv, hctx);
3028 hctx->got_proc = 1;
3030 status_counter_inc(srv, CONST_STR_LEN("fastcgi.requests"));
3032 fastcgi_status_copy_procname(p->statuskey, hctx->host, hctx->proc);
3033 buffer_append_string_len(p->statuskey, CONST_STR_LEN(".connected"));
3035 status_counter_inc(srv, CONST_BUF_LEN(p->statuskey));
3037 if (p->conf.debug) {
3038 log_error_write(srv, __FILE__, __LINE__, "ssdsbsd",
3039 "got proc:",
3040 "pid:", hctx->proc->pid,
3041 "socket:", hctx->proc->connection_name,
3042 "load:", hctx->proc->load);
3045 /* move the proc-list entry down the list */
3046 if (hctx->request_id == 0) {
3047 hctx->request_id = 1; /* always use id 1 as we don't use multiplexing */
3048 } else {
3049 log_error_write(srv, __FILE__, __LINE__, "sd",
3050 "fcgi-request is already in use:", hctx->request_id);
3053 if (-1 == fcgi_create_env(srv, hctx, hctx->request_id)) return HANDLER_ERROR;
3055 fdevent_event_add(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_IN);
3056 fcgi_set_state(srv, hctx, FCGI_STATE_WRITE);
3057 /* fall through */
3058 case FCGI_STATE_WRITE:
3059 ret = srv->network_backend_write(srv, con, hctx->fd, hctx->wb, MAX_WRITE_LIMIT);
3061 chunkqueue_remove_finished_chunks(hctx->wb);
3063 if (ret < 0) {
3064 switch(errno) {
3065 case EPIPE:
3066 case ENOTCONN:
3067 case ECONNRESET:
3068 /* the connection got dropped after accept()
3069 * we don't care about that - if you accept() it, you have to handle it.
3072 log_error_write(srv, __FILE__, __LINE__, "ssosb",
3073 "connection was dropped after accept() (perhaps the fastcgi process died),",
3074 "write-offset:", hctx->wb->bytes_out,
3075 "socket:", hctx->proc->connection_name);
3077 return HANDLER_ERROR;
3078 default:
3079 log_error_write(srv, __FILE__, __LINE__, "ssd",
3080 "write failed:", strerror(errno), errno);
3082 return HANDLER_ERROR;
3086 if (hctx->wb->bytes_out == hctx->wb_reqlen) {
3087 fdevent_event_clr(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_OUT);
3088 fcgi_set_state(srv, hctx, FCGI_STATE_READ);
3089 } else {
3090 off_t wblen = hctx->wb->bytes_in - hctx->wb->bytes_out;
3091 if (hctx->wb->bytes_in < hctx->wb_reqlen && wblen < 65536 - 16384) {
3092 /*(con->conf.stream_request_body & FDEVENT_STREAM_REQUEST)*/
3093 if (!(con->conf.stream_request_body & FDEVENT_STREAM_REQUEST_POLLIN)) {
3094 con->conf.stream_request_body |= FDEVENT_STREAM_REQUEST_POLLIN;
3095 con->is_readable = 1; /* trigger optimistic read from client */
3098 if (0 == wblen) {
3099 fdevent_event_clr(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_OUT);
3100 } else {
3101 fdevent_event_add(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_OUT);
3105 return HANDLER_WAIT_FOR_EVENT;
3106 case FCGI_STATE_READ:
3107 /* waiting for a response */
3108 return HANDLER_WAIT_FOR_EVENT;
3109 default:
3110 log_error_write(srv, __FILE__, __LINE__, "s", "(debug) unknown state");
3111 return HANDLER_ERROR;
3116 /* might be called on fdevent after a connect() is delay too
3117 * */
3118 static handler_t fcgi_send_request(server *srv, handler_ctx *hctx) {
3119 fcgi_extension_host *host;
3120 handler_t rc;
3122 /* we don't have a host yet, choose one
3123 * -> this happens in the first round
3124 * and when the host died and we have to select a new one */
3125 if (hctx->host == NULL) {
3126 size_t k;
3127 int ndx, used = -1;
3129 /* check if the next server has no load. */
3130 ndx = hctx->ext->last_used_ndx + 1;
3131 if(ndx >= (int) hctx->ext->used || ndx < 0) ndx = 0;
3132 host = hctx->ext->hosts[ndx];
3133 if (host->load > 0) {
3134 /* get backend with the least load. */
3135 for (k = 0, ndx = -1; k < hctx->ext->used; k++) {
3136 host = hctx->ext->hosts[k];
3138 /* we should have at least one proc that can do something */
3139 if (host->active_procs == 0) continue;
3141 if (used == -1 || host->load < used) {
3142 used = host->load;
3144 ndx = k;
3149 /* found a server */
3150 if (ndx == -1) {
3151 /* all hosts are down */
3153 fcgi_connection_close(srv, hctx);
3155 return HANDLER_FINISHED;
3158 hctx->ext->last_used_ndx = ndx;
3159 host = hctx->ext->hosts[ndx];
3162 * if check-local is disabled, use the uri.path handler
3166 /* init handler-context */
3168 /* we put a connection on this host, move the other new connections to other hosts
3170 * as soon as hctx->host is unassigned, decrease the load again */
3171 fcgi_host_assign(srv, hctx, host);
3172 hctx->proc = NULL;
3173 } else {
3174 host = hctx->host;
3177 /* ok, create the request */
3178 rc = fcgi_write_request(srv, hctx);
3179 if (HANDLER_ERROR != rc) {
3180 return rc;
3181 } else {
3182 plugin_data *p = hctx->plugin_data;
3183 connection *con = hctx->remote_conn;
3185 if (hctx->state == FCGI_STATE_INIT ||
3186 hctx->state == FCGI_STATE_CONNECT_DELAYED) {
3187 fcgi_restart_dead_procs(srv, p, host);
3189 /* cleanup this request and let the request handler start this request again */
3190 if (hctx->reconnects < 5) {
3191 fcgi_reconnect(srv, hctx);
3193 return HANDLER_COMEBACK;
3194 } else {
3195 fcgi_connection_close(srv, hctx);
3196 con->http_status = 503;
3198 return HANDLER_FINISHED;
3200 } else {
3201 int status = con->http_status;
3202 fcgi_connection_close(srv, hctx);
3203 con->http_status = (status == 400) ? 400 : 503; /* see FCGI_ENV_ADD_CHECK() for 400 error */
3205 return HANDLER_FINISHED;
3211 static handler_t fcgi_recv_response(server *srv, handler_ctx *hctx);
3214 SUBREQUEST_FUNC(mod_fastcgi_handle_subrequest) {
3215 plugin_data *p = p_d;
3217 handler_ctx *hctx = con->plugin_ctx[p->id];
3219 if (NULL == hctx) return HANDLER_GO_ON;
3221 /* not my job */
3222 if (con->mode != p->id) return HANDLER_GO_ON;
3224 if ((con->conf.stream_response_body & FDEVENT_STREAM_RESPONSE_BUFMIN)
3225 && con->file_started) {
3226 if (chunkqueue_length(con->write_queue) > 65536 - 4096) {
3227 fdevent_event_clr(srv->ev, &(hctx->fde_ndx), hctx->fd, FDEVENT_IN);
3228 } else if (!(fdevent_event_get_interest(srv->ev, hctx->fd) & FDEVENT_IN)) {
3229 /* optimistic read from backend, which might re-enable FDEVENT_IN */
3230 handler_t rc = fcgi_recv_response(srv, hctx); /*(might invalidate hctx)*/
3231 if (rc != HANDLER_GO_ON) return rc; /*(unless HANDLER_GO_ON)*/
3235 if (0 == hctx->wb->bytes_in
3236 ? con->state == CON_STATE_READ_POST
3237 : hctx->wb->bytes_in < hctx->wb_reqlen) {
3238 /*(64k - 4k to attempt to avoid temporary files
3239 * in conjunction with FDEVENT_STREAM_REQUEST_BUFMIN)*/
3240 if (hctx->wb->bytes_in - hctx->wb->bytes_out > 65536 - 4096
3241 && (con->conf.stream_request_body & FDEVENT_STREAM_REQUEST_BUFMIN)){
3242 con->conf.stream_request_body &= ~FDEVENT_STREAM_REQUEST_POLLIN;
3243 if (0 != hctx->wb->bytes_in) return HANDLER_WAIT_FOR_EVENT;
3244 } else {
3245 handler_t r = connection_handle_read_post_state(srv, con);
3246 chunkqueue *req_cq = con->request_content_queue;
3247 if (0 != hctx->wb->bytes_in && !chunkqueue_is_empty(req_cq)) {
3248 fcgi_stdin_append(srv, con, hctx, hctx->request_id);
3249 if (fdevent_event_get_interest(srv->ev, hctx->fd) & FDEVENT_OUT) {
3250 return (r == HANDLER_GO_ON) ? HANDLER_WAIT_FOR_EVENT : r;
3253 if (r != HANDLER_GO_ON) return r;
3257 return (0 == hctx->wb->bytes_in || !chunkqueue_is_empty(hctx->wb))
3258 ? fcgi_send_request(srv, hctx)
3259 : HANDLER_WAIT_FOR_EVENT;
3263 static handler_t fcgi_recv_response(server *srv, handler_ctx *hctx) {
3264 connection *con = hctx->remote_conn;
3265 plugin_data *p = hctx->plugin_data;
3267 fcgi_proc *proc = hctx->proc;
3268 fcgi_extension_host *host= hctx->host;
3270 switch (fcgi_demux_response(srv, hctx)) {
3271 case 0:
3272 break;
3273 case 1:
3275 if (host->mode == FCGI_AUTHORIZER &&
3276 (con->http_status == 200 ||
3277 con->http_status == 0)) {
3279 * If we are here in AUTHORIZER mode then a request for authorizer
3280 * was processed already, and status 200 has been returned. We need
3281 * now to handle authorized request.
3284 buffer_copy_buffer(con->physical.doc_root, host->docroot);
3285 buffer_copy_buffer(con->physical.basedir, host->docroot);
3287 buffer_copy_buffer(con->physical.path, host->docroot);
3288 buffer_append_string_buffer(con->physical.path, con->uri.path);
3290 con->mode = DIRECT;/*(avoid changing con->state, con->http_status)*/
3291 fcgi_connection_close(srv, hctx);
3292 con->http_status = 0;
3293 con->file_started = 1; /* fcgi_extension won't touch the request afterwards */
3294 } else {
3295 /* we are done */
3296 fcgi_connection_close(srv, hctx);
3299 return HANDLER_FINISHED;
3300 case -1:
3301 if (proc->pid && proc->state != PROC_STATE_DIED) {
3302 int status;
3304 /* only fetch the zombie if it is not already done */
3306 switch(waitpid(proc->pid, &status, WNOHANG)) {
3307 case 0:
3308 /* child is still alive */
3309 break;
3310 case -1:
3311 break;
3312 default:
3313 /* the child should not terminate at all */
3314 if (WIFEXITED(status)) {
3315 log_error_write(srv, __FILE__, __LINE__, "sdsd",
3316 "child exited, pid:", proc->pid,
3317 "status:", WEXITSTATUS(status));
3318 } else if (WIFSIGNALED(status)) {
3319 log_error_write(srv, __FILE__, __LINE__, "sd",
3320 "child signaled:",
3321 WTERMSIG(status));
3322 } else {
3323 log_error_write(srv, __FILE__, __LINE__, "sd",
3324 "child died somehow:",
3325 status);
3328 if (p->conf.debug) {
3329 log_error_write(srv, __FILE__, __LINE__, "ssbsdsd",
3330 "--- fastcgi spawning",
3331 "\n\tsocket", proc->connection_name,
3332 "\n\tcurrent:", 1, "/", host->max_procs);
3335 if (fcgi_spawn_connection(srv, p, host, proc)) {
3336 /* respawning failed, retry later */
3337 proc->state = PROC_STATE_DIED;
3339 log_error_write(srv, __FILE__, __LINE__, "s",
3340 "respawning failed, will retry later");
3343 break;
3347 if (con->file_started == 0) {
3348 /* nothing has been sent out yet, try to use another child */
3350 if (hctx->wb->bytes_out == 0 &&
3351 hctx->reconnects < 5) {
3353 log_error_write(srv, __FILE__, __LINE__, "ssbsBSBs",
3354 "response not received, request not sent",
3355 "on socket:", proc->connection_name,
3356 "for", con->uri.path, "?", con->uri.query, ", reconnecting");
3358 fcgi_reconnect(srv, hctx);
3360 return HANDLER_COMEBACK;
3363 log_error_write(srv, __FILE__, __LINE__, "sosbsBSBs",
3364 "response not received, request sent:", hctx->wb->bytes_out,
3365 "on socket:", proc->connection_name,
3366 "for", con->uri.path, "?", con->uri.query, ", closing connection");
3367 } else {
3368 log_error_write(srv, __FILE__, __LINE__, "ssbsBSBs",
3369 "response already sent out, but backend returned error",
3370 "on socket:", proc->connection_name,
3371 "for", con->uri.path, "?", con->uri.query, ", terminating connection");
3374 http_response_backend_error(srv, con);
3375 fcgi_connection_close(srv, hctx);
3376 return HANDLER_FINISHED;
3379 return HANDLER_GO_ON;
3383 static handler_t fcgi_handle_fdevent(server *srv, void *ctx, int revents) {
3384 handler_ctx *hctx = ctx;
3385 connection *con = hctx->remote_conn;
3387 joblist_append(srv, con);
3389 if (revents & FDEVENT_IN) {
3390 handler_t rc = fcgi_recv_response(srv, hctx);/*(might invalidate hctx)*/
3391 if (rc != HANDLER_GO_ON) return rc; /*(unless HANDLER_GO_ON)*/
3394 if (revents & FDEVENT_OUT) {
3395 return fcgi_send_request(srv, hctx); /*(might invalidate hctx)*/
3398 /* perhaps this issue is already handled */
3399 if (revents & FDEVENT_HUP) {
3400 if (hctx->state == FCGI_STATE_CONNECT_DELAYED) {
3401 /* getoptsock will catch this one (right ?)
3403 * if we are in connect we might get an EINPROGRESS
3404 * in the first call and an FDEVENT_HUP in the
3405 * second round
3407 * FIXME: as it is a bit ugly.
3410 fcgi_send_request(srv, hctx);
3411 } else if (con->file_started) {
3412 /* drain any remaining data from kernel pipe buffers
3413 * even if (con->conf.stream_response_body
3414 * & FDEVENT_STREAM_RESPONSE_BUFMIN)
3415 * since event loop will spin on fd FDEVENT_HUP event
3416 * until unregistered. */
3417 handler_t rc;
3418 do {
3419 rc = fcgi_recv_response(srv,hctx);/*(might invalidate hctx)*/
3420 } while (rc == HANDLER_GO_ON); /*(unless HANDLER_GO_ON)*/
3421 return rc; /* HANDLER_FINISHED or HANDLER_ERROR */
3422 } else {
3423 fcgi_proc *proc = hctx->proc;
3424 log_error_write(srv, __FILE__, __LINE__, "sBSbsbsd",
3425 "error: unexpected close of fastcgi connection for",
3426 con->uri.path, "?", con->uri.query,
3427 "(no fastcgi process on socket:", proc->connection_name, "?)",
3428 hctx->state);
3430 fcgi_connection_close(srv, hctx);
3432 } else if (revents & FDEVENT_ERR) {
3433 log_error_write(srv, __FILE__, __LINE__, "s",
3434 "fcgi: got a FDEVENT_ERR. Don't know why.");
3436 http_response_backend_error(srv, con);
3437 fcgi_connection_close(srv, hctx);
3440 return HANDLER_FINISHED;
3443 #define PATCH(x) \
3444 p->conf.x = s->x;
3445 static int fcgi_patch_connection(server *srv, connection *con, plugin_data *p) {
3446 size_t i, j;
3447 plugin_config *s = p->config_storage[0];
3449 PATCH(exts);
3450 PATCH(debug);
3451 PATCH(ext_mapping);
3453 /* skip the first, the global context */
3454 for (i = 1; i < srv->config_context->used; i++) {
3455 data_config *dc = (data_config *)srv->config_context->data[i];
3456 s = p->config_storage[i];
3458 /* condition didn't match */
3459 if (!config_check_cond(srv, con, dc)) continue;
3461 /* merge config */
3462 for (j = 0; j < dc->value->used; j++) {
3463 data_unset *du = dc->value->data[j];
3465 if (buffer_is_equal_string(du->key, CONST_STR_LEN("fastcgi.server"))) {
3466 PATCH(exts);
3467 } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("fastcgi.debug"))) {
3468 PATCH(debug);
3469 } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("fastcgi.map-extensions"))) {
3470 PATCH(ext_mapping);
3475 return 0;
3477 #undef PATCH
3480 static handler_t fcgi_check_extension(server *srv, connection *con, void *p_d, int uri_path_handler) {
3481 plugin_data *p = p_d;
3482 size_t s_len;
3483 size_t k;
3484 buffer *fn;
3485 fcgi_extension *extension = NULL;
3486 fcgi_extension_host *host = NULL;
3488 if (con->mode != DIRECT) return HANDLER_GO_ON;
3490 /* Possibly, we processed already this request */
3491 if (con->file_started == 1) return HANDLER_GO_ON;
3493 fn = uri_path_handler ? con->uri.path : con->physical.path;
3495 if (buffer_string_is_empty(fn)) return HANDLER_GO_ON;
3497 s_len = buffer_string_length(fn);
3499 fcgi_patch_connection(srv, con, p);
3501 /* fastcgi.map-extensions maps extensions to existing fastcgi.server entries
3503 * fastcgi.map-extensions = ( ".php3" => ".php" )
3505 * fastcgi.server = ( ".php" => ... )
3507 * */
3509 /* check if extension-mapping matches */
3510 for (k = 0; k < p->conf.ext_mapping->used; k++) {
3511 data_string *ds = (data_string *)p->conf.ext_mapping->data[k];
3512 size_t ct_len; /* length of the config entry */
3514 if (buffer_is_empty(ds->key)) continue;
3516 ct_len = buffer_string_length(ds->key);
3518 if (s_len < ct_len) continue;
3520 /* found a mapping */
3521 if (0 == strncmp(fn->ptr + s_len - ct_len, ds->key->ptr, ct_len)) {
3522 /* check if we know the extension */
3524 /* we can reuse k here */
3525 for (k = 0; k < p->conf.exts->used; k++) {
3526 extension = p->conf.exts->exts[k];
3528 if (buffer_is_equal(ds->value, extension->key)) {
3529 break;
3533 if (k == p->conf.exts->used) {
3534 /* found nothign */
3535 extension = NULL;
3537 break;
3541 if (extension == NULL) {
3542 size_t uri_path_len = buffer_string_length(con->uri.path);
3544 /* check if extension matches */
3545 for (k = 0; k < p->conf.exts->used; k++) {
3546 size_t ct_len; /* length of the config entry */
3547 fcgi_extension *ext = p->conf.exts->exts[k];
3549 if (buffer_is_empty(ext->key)) continue;
3551 ct_len = buffer_string_length(ext->key);
3553 /* check _url_ in the form "/fcgi_pattern" */
3554 if (ext->key->ptr[0] == '/') {
3555 if ((ct_len <= uri_path_len) &&
3556 (strncmp(con->uri.path->ptr, ext->key->ptr, ct_len) == 0)) {
3557 extension = ext;
3558 break;
3560 } else if ((ct_len <= s_len) && (0 == strncmp(fn->ptr + s_len - ct_len, ext->key->ptr, ct_len))) {
3561 /* check extension in the form ".fcg" */
3562 extension = ext;
3563 break;
3566 /* extension doesn't match */
3567 if (NULL == extension) {
3568 return HANDLER_GO_ON;
3572 /* check if we have at least one server for this extension up and running */
3573 for (k = 0; k < extension->used; k++) {
3574 fcgi_extension_host *h = extension->hosts[k];
3576 /* we should have at least one proc that can do something */
3577 if (h->active_procs == 0) {
3578 continue;
3581 /* we found one host that is alive */
3582 host = h;
3583 break;
3586 if (!host) {
3587 /* sorry, we don't have a server alive for this ext */
3588 con->http_status = 500;
3589 con->mode = DIRECT;
3591 /* only send the 'no handler' once */
3592 if (!extension->note_is_sent) {
3593 extension->note_is_sent = 1;
3595 log_error_write(srv, __FILE__, __LINE__, "sBSbsbs",
3596 "all handlers for", con->uri.path, "?", con->uri.query,
3597 "on", extension->key,
3598 "are down.");
3601 return HANDLER_FINISHED;
3604 /* a note about no handler is not sent yet */
3605 extension->note_is_sent = 0;
3608 * if check-local is disabled, use the uri.path handler
3612 /* init handler-context */
3613 if (uri_path_handler) {
3614 if (host->check_local == 0) {
3615 handler_ctx *hctx;
3616 char *pathinfo;
3618 hctx = handler_ctx_init();
3620 hctx->remote_conn = con;
3621 hctx->plugin_data = p;
3622 hctx->proc = NULL;
3623 hctx->ext = extension;
3626 hctx->conf.exts = p->conf.exts;
3627 hctx->conf.debug = p->conf.debug;
3629 con->plugin_ctx[p->id] = hctx;
3631 con->mode = p->id;
3633 if (con->conf.log_request_handling) {
3634 log_error_write(srv, __FILE__, __LINE__, "s",
3635 "handling it in mod_fastcgi");
3638 /* do not split path info for authorizer */
3639 if (host->mode != FCGI_AUTHORIZER) {
3640 /* the prefix is the SCRIPT_NAME,
3641 * everything from start to the next slash
3642 * this is important for check-local = "disable"
3644 * if prefix = /admin.fcgi
3646 * /admin.fcgi/foo/bar
3648 * SCRIPT_NAME = /admin.fcgi
3649 * PATH_INFO = /foo/bar
3651 * if prefix = /fcgi-bin/
3653 * /fcgi-bin/foo/bar
3655 * SCRIPT_NAME = /fcgi-bin/foo
3656 * PATH_INFO = /bar
3658 * if prefix = /, and fix-root-path-name is enable
3660 * /fcgi-bin/foo/bar
3662 * SCRIPT_NAME = /fcgi-bin/foo
3663 * PATH_INFO = /bar
3667 /* the rewrite is only done for /prefix/? matches */
3668 if (host->fix_root_path_name && extension->key->ptr[0] == '/' && extension->key->ptr[1] == '\0') {
3669 buffer_copy_string(con->request.pathinfo, con->uri.path->ptr);
3670 buffer_string_set_length(con->uri.path, 0);
3671 } else if (extension->key->ptr[0] == '/' &&
3672 buffer_string_length(con->uri.path) > buffer_string_length(extension->key) &&
3673 NULL != (pathinfo = strchr(con->uri.path->ptr + buffer_string_length(extension->key), '/'))) {
3674 /* rewrite uri.path and pathinfo */
3676 buffer_copy_string(con->request.pathinfo, pathinfo);
3677 buffer_string_set_length(con->uri.path, buffer_string_length(con->uri.path) - buffer_string_length(con->request.pathinfo));
3681 } else {
3682 handler_ctx *hctx;
3683 hctx = handler_ctx_init();
3685 hctx->remote_conn = con;
3686 hctx->plugin_data = p;
3687 hctx->proc = NULL;
3688 hctx->ext = extension;
3690 hctx->conf.exts = p->conf.exts;
3691 hctx->conf.debug = p->conf.debug;
3693 con->plugin_ctx[p->id] = hctx;
3695 con->mode = p->id;
3697 if (con->conf.log_request_handling) {
3698 log_error_write(srv, __FILE__, __LINE__, "s", "handling it in mod_fastcgi");
3702 return HANDLER_GO_ON;
3705 /* uri-path handler */
3706 static handler_t fcgi_check_extension_1(server *srv, connection *con, void *p_d) {
3707 return fcgi_check_extension(srv, con, p_d, 1);
3710 /* start request handler */
3711 static handler_t fcgi_check_extension_2(server *srv, connection *con, void *p_d) {
3712 return fcgi_check_extension(srv, con, p_d, 0);
3716 TRIGGER_FUNC(mod_fastcgi_handle_trigger) {
3717 plugin_data *p = p_d;
3718 size_t i, j, n;
3721 /* perhaps we should kill a connect attempt after 10-15 seconds
3723 * currently we wait for the TCP timeout which is 180 seconds on Linux
3729 /* check all children if they are still up */
3731 for (i = 0; i < srv->config_context->used; i++) {
3732 plugin_config *conf;
3733 fcgi_exts *exts;
3735 conf = p->config_storage[i];
3737 exts = conf->exts;
3739 for (j = 0; j < exts->used; j++) {
3740 fcgi_extension *ex;
3742 ex = exts->exts[j];
3744 for (n = 0; n < ex->used; n++) {
3746 fcgi_proc *proc;
3747 fcgi_extension_host *host;
3749 host = ex->hosts[n];
3751 fcgi_restart_dead_procs(srv, p, host);
3753 for (proc = host->unused_procs; proc; proc = proc->next) {
3754 int status;
3756 if (proc->pid == 0) continue;
3758 switch (waitpid(proc->pid, &status, WNOHANG)) {
3759 case 0:
3760 /* child still running after timeout, good */
3761 break;
3762 case -1:
3763 if (errno != EINTR) {
3764 /* no PID found ? should never happen */
3765 log_error_write(srv, __FILE__, __LINE__, "sddss",
3766 "pid ", proc->pid, proc->state,
3767 "not found:", strerror(errno));
3769 #if 0
3770 if (errno == ECHILD) {
3771 /* someone else has cleaned up for us */
3772 proc->pid = 0;
3773 proc->state = PROC_STATE_UNSET;
3775 #endif
3777 break;
3778 default:
3779 /* the child should not terminate at all */
3780 if (WIFEXITED(status)) {
3781 if (proc->state != PROC_STATE_KILLED) {
3782 log_error_write(srv, __FILE__, __LINE__, "sdb",
3783 "child exited:",
3784 WEXITSTATUS(status), proc->connection_name);
3786 } else if (WIFSIGNALED(status)) {
3787 if (WTERMSIG(status) != SIGTERM) {
3788 log_error_write(srv, __FILE__, __LINE__, "sd",
3789 "child signaled:",
3790 WTERMSIG(status));
3792 } else {
3793 log_error_write(srv, __FILE__, __LINE__, "sd",
3794 "child died somehow:",
3795 status);
3797 proc->pid = 0;
3798 if (proc->state == PROC_STATE_RUNNING) host->active_procs--;
3799 proc->state = PROC_STATE_UNSET;
3800 host->max_id--;
3807 return HANDLER_GO_ON;
3811 int mod_fastcgi_plugin_init(plugin *p);
3812 int mod_fastcgi_plugin_init(plugin *p) {
3813 p->version = LIGHTTPD_VERSION_ID;
3814 p->name = buffer_init_string("fastcgi");
3816 p->init = mod_fastcgi_init;
3817 p->cleanup = mod_fastcgi_free;
3818 p->set_defaults = mod_fastcgi_set_defaults;
3819 p->connection_reset = fcgi_connection_reset;
3820 p->handle_connection_close = fcgi_connection_reset;
3821 p->handle_uri_clean = fcgi_check_extension_1;
3822 p->handle_subrequest_start = fcgi_check_extension_2;
3823 p->handle_subrequest = mod_fastcgi_handle_subrequest;
3824 p->handle_trigger = mod_fastcgi_handle_trigger;
3826 p->data = NULL;
3828 return 0;