1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-07-21 03:14:15 -04:00

Merge remote-tracking branch 'upstream/master' into exec-map-leak

This commit is contained in:
Edd Barrett 2019-03-04 21:42:55 +00:00
commit 1e5456cc73
7 changed files with 20 additions and 9 deletions

View File

@ -9,9 +9,9 @@ NAME = gophernicus
PACKAGE = $(NAME)
BINARY = in.$(NAME)
VERSION = `./version`
CODENAME = Prison Edition
AUTHOR = Kim Holviala
EMAIL = kimholviala@fastmail.com
CODENAME = Dungeon Edition
AUTHOR = Kim Holviala and others
EMAIL = hb9kns+gophernicus@gmail.com
STARTED = 2009
SOURCES = $(NAME).c file.c menu.c string.c platform.c session.c options.c

5
README
View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2018 Kim Holviala <kimholviala@fastmail.com>
Gophernicus - Copyright (c) 2009-2019 Kim Holviala and others
Gophernicus is a modern full-featured (and hopefully) secure gopher
daemon. It is licensed under the BSD license.
@ -44,6 +44,7 @@ Command line options:
-nm Disable shared memory use (for debugging)
-nr Disable root user checking (for debugging)
-np Disable HAproxy proxy protocol
-nx Disable execution of gophermaps and scripts
-d Debug output in syslog and /server-status
-v Display version number and build date
@ -288,5 +289,3 @@ service = in.gophernicus-tls
accept = :::7070
connect = 127.0.0.1:70
protocol = proxy

4
file.c
View File

@ -366,11 +366,15 @@ void setenv_cgi(state *st, char *script)
*/
void run_cgi(state *st, char *script, char *arg)
{
if (st->opt_exec) {
/* Setup environment & execute the binary */
if (st->debug) syslog(LOG_INFO, "executing script \"%s\"", script);
setenv_cgi(st, script);
execl(script, script, arg, NULL);
}
else if (st->debug) syslog(LOG_INFO, "script \"%s\" was blocked by -nx", script);
/* Didn't work - die */
die(st, ERR_ACCESS, NULL);

View File

@ -463,6 +463,7 @@ void init_state(state *st)
st->opt_shm = TRUE;
st->opt_root = TRUE;
st->opt_proxy = TRUE;
st->opt_exec = TRUE;
st->debug = FALSE;
/* Load default suffix -> filetype mappings */

View File

@ -359,6 +359,7 @@ typedef struct {
char opt_shm;
char opt_root;
char opt_proxy;
char opt_exec;
char debug;
} state;

11
menu.c
View File

@ -306,12 +306,17 @@ int gophermap(state *st, char *mapfile, int depth)
/* Debug output */
if (st->debug) {
if (exe) syslog(LOG_INFO, "parsing executable gophermap \"%s\"", mapfile);
if (exe) {
if (st->opt_exec)
syslog(LOG_INFO, "parsing executable gophermap \"%s\"", mapfile);
else
syslog(LOG_INFO, "parsing executable gophermap \"%s\" forbidden by -nx", mapfile);
}
else syslog(LOG_INFO, "parsing static gophermap \"%s\"", mapfile);
}
/* Try to execute or open the mapfile */
if (exe) {
if (exe & st->opt_exec) {
#ifdef HAVE_POPEN
setenv_cgi(st, mapfile);
if ((fp = popen(command, "r")) == NULL) return OK;
@ -428,7 +433,7 @@ int gophermap(state *st, char *mapfile, int depth)
/* Clean up & return */
#ifdef HAVE_POPEN
if (exe) pclose(fp);
if (exe & st->opt_exec) pclose(fp);
else
#endif
fclose(fp);

View File

@ -144,6 +144,7 @@ void parse_args(state *st, int argc, char *argv[])
if (*optarg == 'm') { st->opt_shm = FALSE; break; }
if (*optarg == 'r') { st->opt_root = FALSE; break; }
if (*optarg == 'p') { st->opt_proxy = FALSE; break; }
if (*optarg == 'x') { st->opt_exec = FALSE; break; }
break;
case 'd': st->debug = TRUE; break;