#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#) options.c 1.17 96/02/11 17:01:31";
#else
__RCSID("$NetBSD: options.c,v 1.16 2012/03/22 22:59:43 joerg Exp $");
#endif
#endif
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <netdb.h>
#include <stdio.h>
#include <syslog.h>
#include <unistd.h>
#include <stdlib.h>
#include <pwd.h>
#include <grp.h>
#include <ctype.h>
#include <setjmp.h>
#include <string.h>
#include "tcpd.h"
int dry_run = 0;
extern jmp_buf tcpd_buf;
static char whitespace_eq[] = "= \t\r\n";
#define whitespace (whitespace_eq + 1)
static char *get_field
(char *);
static char *chop_string
(char *);
struct syslog_names;
static int severity_map
(const struct syslog_names *, char *);
static void user_option
(char *, struct request_info *);
static void group_option
(char *, struct request_info *);
static void umask_option
(char *, struct request_info *);
static void linger_option
(char *, struct request_info *);
static void keepalive_option
(char *, struct request_info *);
static void spawn_option
(char *, struct request_info *);
static void twist_option
(char *, struct request_info *);
static void rfc931_option
(char *, struct request_info *);
static void setenv_option
(char *, struct request_info *);
static void nice_option
(char *, struct request_info *);
static void severity_option
(char *, struct request_info *);
__dead static void allow_option
(char *, struct request_info *);
__dead static void deny_option
(char *, struct request_info *);
static void banners_option
(char *, struct request_info *);
struct option {
const char *name;
void (*func)
(char *, struct request_info *);
int flags;
};
#define NEED_ARG (1<<1)
#define USE_LAST (1<<2)
#define OPT_ARG (1<<3)
#define EXPAND_ARG (1<<4)
#define need_arg(o) ((o)->flags & NEED_ARG)
#define opt_arg(o) ((o)->flags & OPT_ARG)
#define permit_arg(o) ((o)->flags & (NEED_ARG | OPT_ARG))
#define use_last(o) ((o)->flags & USE_LAST)
#define expand_arg(o) ((o)->flags & EXPAND_ARG)
static struct option option_table[] = {
{ "user", user_option, NEED_ARG },
{ "group", group_option, NEED_ARG },
{ "umask", umask_option, NEED_ARG },
{ "linger", linger_option, NEED_ARG },
{ "keepalive", keepalive_option, 0 },
{ "spawn", spawn_option, NEED_ARG | EXPAND_ARG },
{ "twist", twist_option, NEED_ARG | EXPAND_ARG | USE_LAST },
{ "rfc931", rfc931_option, OPT_ARG },
{ "setenv", setenv_option, NEED_ARG | EXPAND_ARG },
{ "nice", nice_option, OPT_ARG },
{ "severity", severity_option, NEED_ARG },
{ "allow", allow_option, USE_LAST },
{ "deny", deny_option, USE_LAST },
{ "banners", banners_option, NEED_ARG },
{ NULL, NULL, 0 }
};
void
process_options(char *options, struct request_info *request)
{
char *key;
char *value;
char *curr_opt;
char *next_opt;
struct option *op;
char bf[BUFSIZ];
for (curr_opt = get_field(options); curr_opt; curr_opt = next_opt) {
next_opt = get_field((char *) 0);
curr_opt = chop_string(curr_opt);
if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
if (*value != '=') {
*value++ = 0;
value += strspn(value, whitespace);
}
if (*value == '=') {
*value++ = 0;
value += strspn(value, whitespace);
}
}
if (*value == 0)
value = 0;
key = curr_opt;
if (*key == 0)
tcpd_jump("missing option name");
for (op = option_table; op->name && STR_NE(op->name, key); op++)
;
if (op->name == 0)
tcpd_jump("bad option name: \"%s\"", key);
if (!value && need_arg(op))
tcpd_jump("option \"%s\" requires value", key);
if (value && !permit_arg(op))
tcpd_jump("option \"%s\" requires no value", key);
if (next_opt && use_last(op))
tcpd_jump("option \"%s\" must be at end", key);
if (value && expand_arg(op))
value = chop_string(percent_x(bf, sizeof(bf), value, request));
if (hosts_access_verbose)
syslog(LOG_DEBUG, "option: %s %s", key, value ? value : "");
(*(op->func)) (value, request);
}
}
static void
allow_option(char *value, struct request_info *request)
{
longjmp(tcpd_buf, AC_PERMIT);
}
static void
deny_option(char *value, struct request_info *request)
{
longjmp(tcpd_buf, AC_DENY);
}
static void
banners_option(char *value, struct request_info *request)
{
char path[MAXPATHLEN];
char ibuf[BUFSIZ];
char obuf[2 * BUFSIZ];
struct stat st;
int ch;
FILE *fp;
(void)snprintf(path, sizeof path, "%s/%s", value, eval_daemon(request));
if ((fp = fopen(path, "r")) != 0) {
while ((ch = fgetc(fp)) == 0)
write(request->fd, "", 1);
ungetc(ch, fp);
while (fgets(ibuf, sizeof(ibuf) - 2, fp)) {
if (split_at(ibuf, '\n'))
strcat(ibuf, "\r\n");
percent_x(obuf, sizeof(obuf), ibuf, request);
write(request->fd, obuf, strlen(obuf));
}
fclose(fp);
} else if (stat(value, &st) < 0) {
tcpd_warn("%s: %m", value);
}
}
static void
group_option(char *value, struct request_info *request)
{
struct group grs, *grp;
char grbuf[1024];
(void)getgrnam_r(value, &grs, grbuf, sizeof(grbuf), &grp);
if (grp == NULL)
tcpd_jump("unknown group: \"%s\"", value);
if (dry_run == 0 && setgid(grp->gr_gid))
tcpd_jump("setgid(%s): %m", value);
}
static void
user_option(char *value, struct request_info *request)
{
struct passwd *pwd, pws;
char *group;
char pwbuf[1024];
if ((group = split_at(value, '.')) != 0)
group_option(group, request);
(void)getpwnam_r(value, &pws, pwbuf, sizeof(pwbuf), &pwd);
if (pwd == NULL)
tcpd_jump("unknown user: \"%s\"", value);
if (dry_run == 0 && setuid(pwd->pw_uid))
tcpd_jump("setuid(%s): %m", value);
}
static void
umask_option(char *value, struct request_info *request)
{
unsigned mask;
char junk;
if (sscanf(value, "%o%c", &mask, &junk) != 1 || (mask & 0777) != mask)
tcpd_jump("bad umask value: \"%s\"", value);
(void) umask(mask);
}
static void
spawn_option(char *value, struct request_info *request)
{
if (dry_run == 0)
shell_cmd(value);
}
static void
linger_option(char *value, struct request_info *request)
{
struct linger linger;
char junk;
if (sscanf(value, "%d%c", &linger.l_linger, &junk) != 1
|| linger.l_linger < 0)
tcpd_jump("bad linger value: \"%s\"", value);
if (dry_run == 0) {
linger.l_onoff = (linger.l_linger != 0);
if (setsockopt(request->fd, SOL_SOCKET, SO_LINGER, (char *) &linger,
sizeof(linger)) < 0)
tcpd_warn("setsockopt SO_LINGER %d: %m", linger.l_linger);
}
}
static void
keepalive_option(char *value, struct request_info *request)
{
static int on = 1;
if (dry_run == 0 && setsockopt(request->fd, SOL_SOCKET, SO_KEEPALIVE,
(char *) &on, sizeof(on)) < 0)
tcpd_warn("setsockopt SO_KEEPALIVE: %m");
}
static void
nice_option(char *value, struct request_info *request)
{
int niceval = 10;
char junk;
if (value != 0 && sscanf(value, "%d%c", &niceval, &junk) != 1)
tcpd_jump("bad nice value: \"%s\"", value);
if (dry_run == 0 && nice(niceval) < 0)
tcpd_warn("nice(%d): %m", niceval);
}
static void
twist_option(char *value, struct request_info *request)
{
if (dry_run != 0) {
dry_run = 0;
} else {
if (resident > 0)
tcpd_jump("twist option in resident process");
syslog(deny_severity, "twist %s to %s", eval_client(request), value);
#define maybe_dup2(from, to) ((from == to) ? to : (close(to), dup(from)))
if (maybe_dup2(request->fd, 0) != 0 ||
maybe_dup2(request->fd, 1) != 1 ||
maybe_dup2(request->fd, 2) != 2) {
tcpd_warn("twist_option: dup: %m");
} else {
if (request->fd > 2)
close(request->fd);
(void) execl("/bin/sh", "sh", "-c", value, (char *) 0);
tcpd_warn("twist_option: /bin/sh: %m");
}
clean_exit(request);
}
}
static void
rfc931_option(char *value, struct request_info *request)
{
int timeout;
char junk;
if (value != 0) {
if (sscanf(value, "%d%c", &timeout, &junk) != 1 || timeout <= 0)
tcpd_jump("bad rfc931 timeout: \"%s\"", value);
rfc931_timeout = timeout;
}
(void) eval_user(request);
}
static void
setenv_option(char *value, struct request_info *request)
{
char *var_value;
if (*(var_value = value + strcspn(value, whitespace)))
*var_value++ = 0;
if (setenv(chop_string(value), chop_string(var_value), 1))
tcpd_jump("memory allocation failure");
}
struct syslog_names {
const char *name;
int value;
};
static const struct syslog_names log_fac[] = {
#ifdef LOG_KERN
{ "kern", LOG_KERN },
#endif
#ifdef LOG_USER
{ "user", LOG_USER },
#endif
#ifdef LOG_MAIL
{ "mail", LOG_MAIL },
#endif
#ifdef LOG_DAEMON
{ "daemon", LOG_DAEMON },
#endif
#ifdef LOG_AUTH
{ "auth", LOG_AUTH },
#endif
#ifdef LOG_LPR
{ "lpr", LOG_LPR },
#endif
#ifdef LOG_NEWS
{ "news", LOG_NEWS },
#endif
#ifdef LOG_UUCP
{ "uucp", LOG_UUCP },
#endif
#ifdef LOG_CRON
{ "cron", LOG_CRON },
#endif
#ifdef LOG_AUTHPRIV
{ "authpriv", LOG_AUTHPRIV },
#endif
#ifdef LOG_FTP
{ "ftp", LOG_FTP },
#endif
#ifdef LOG_LOCAL0
{ "local0", LOG_LOCAL0 },
#endif
#ifdef LOG_LOCAL1
{ "local1", LOG_LOCAL1 },
#endif
#ifdef LOG_LOCAL2
{ "local2", LOG_LOCAL2 },
#endif
#ifdef LOG_LOCAL3
{ "local3", LOG_LOCAL3 },
#endif
#ifdef LOG_LOCAL4
{ "local4", LOG_LOCAL4 },
#endif
#ifdef LOG_LOCAL5
{ "local5", LOG_LOCAL5 },
#endif
#ifdef LOG_LOCAL6
{ "local6", LOG_LOCAL6 },
#endif
#ifdef LOG_LOCAL7
{ "local7", LOG_LOCAL7 },
#endif
{ NULL, 0 }
};
static const struct syslog_names log_sev[] = {
#ifdef LOG_EMERG
{ "emerg", LOG_EMERG },
#endif
#ifdef LOG_ALERT
{ "alert", LOG_ALERT },
#endif
#ifdef LOG_CRIT
{ "crit", LOG_CRIT },
#endif
#ifdef LOG_ERR
{ "err", LOG_ERR },
#endif
#ifdef LOG_WARNING
{ "warning", LOG_WARNING },
#endif
#ifdef LOG_NOTICE
{ "notice", LOG_NOTICE },
#endif
#ifdef LOG_INFO
{ "info", LOG_INFO },
#endif
#ifdef LOG_DEBUG
{ "debug", LOG_DEBUG },
#endif
{ NULL, 0 }
};
static int
severity_map(const struct syslog_names *table, char *name)
{
const struct syslog_names *t;
for (t = table; t->name; t++)
if (STR_EQ(t->name, name))
return (t->value);
tcpd_jump("bad syslog facility or severity: \"%s\"", name);
return -1;
}
static void
severity_option(char *value, struct request_info *request)
{
char *level = split_at(value, '.');
allow_severity = deny_severity = level ?
severity_map(log_fac, value) | severity_map(log_sev, level) :
severity_map(log_sev, value);
}
static char *
get_field(char *string)
{
static char nul = '\0';
static char *last = &nul;
char *src;
char *dst;
char *ret;
int ch;
src = dst = ret = (string ? string : last);
if (src[0] == 0)
return (0);
while ((ch = *src) != '\0') {
if (ch == ':') {
if (*++src == 0)
tcpd_warn("rule ends in \":\"");
break;
}
if (ch == '\\' && src[1] == ':')
src++;
*dst++ = *src++;
}
last = src;
*dst = 0;
return (ret);
}
static char *
chop_string(register char *string)
{
char *start = NULL;
char *end = NULL;
char *cp;
for (cp = string; *cp; cp++) {
if (!isspace((unsigned char) *cp)) {
if (start == 0)
start = cp;
end = cp;
}
}
return (start ? (end[1] = 0, start) : cp);
}