summaryrefslogtreecommitdiffstats
path: root/usr.sbin/slowcgi
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2014-01-19 00:01:05 +0000
committerdjm <djm@openbsd.org>2014-01-19 00:01:05 +0000
commit1878c91fd9e52ba2b03e28f88cb0418b2c16e34a (patch)
tree7374b25a35fd27cc0e983c2c7d55b71bff16083d /usr.sbin/slowcgi
parenttweak comments a bit (diff)
downloadwireguard-openbsd-1878c91fd9e52ba2b03e28f88cb0418b2c16e34a.tar.xz
wireguard-openbsd-1878c91fd9e52ba2b03e28f88cb0418b2c16e34a.zip
fix reaper loop that could run indefinitely
log execve() failures to syslog (very useful for debugging SCRIPT_NAME problems) ok florian@
Diffstat (limited to 'usr.sbin/slowcgi')
-rw-r--r--usr.sbin/slowcgi/slowcgi.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/slowcgi/slowcgi.c b/usr.sbin/slowcgi/slowcgi.c
index 9b5086802f2..af07bd856e1 100644
--- a/usr.sbin/slowcgi/slowcgi.c
+++ b/usr.sbin/slowcgi/slowcgi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: slowcgi.c,v 1.26 2013/10/31 21:53:16 florian Exp $ */
+/* $OpenBSD: slowcgi.c,v 1.27 2014/01/19 00:01:05 djm Exp $ */
/*
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
* Copyright (c) 2013 Florian Obser <florian@openbsd.org>
@@ -503,7 +503,7 @@ slowcgi_sig_handler(int sig, short event, void *arg)
switch (sig) {
case SIGCHLD:
- while((pid = waitpid(WAIT_ANY, &status, WNOHANG)) != -1) {
+ while((pid = waitpid(WAIT_ANY, &status, WNOHANG)) > 0) {
c = NULL;
SLIST_FOREACH(ncs, &p->requests, entry)
if (ncs->request->script_pid == pid) {
@@ -526,6 +526,8 @@ slowcgi_sig_handler(int sig, short event, void *arg)
ldebug("wait: %s", c->script_name);
}
+ if (pid == -1 && errno != ECHILD)
+ lwarn("waitpid");
break;
case SIGPIPE:
/* ignore */
@@ -893,6 +895,7 @@ exec_cgi(struct request *c)
env[i++] = env_entry->val;
env[i++] = NULL;
execve(c->script_name, argv, env);
+ lwarn("execve %s", c->script_name);
_exit(1);
}