941 lines
21 KiB
C
941 lines
21 KiB
C
/*-
|
|
* Copyright (c) 2009-2014 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This material is based upon work partially supported by The
|
|
* NetBSD Foundation under a contract with Mindaugas Rasiukevicius.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__RCSID("$NetBSD: npfctl.c,v 1.63 2019/09/30 00:37:11 rmind Exp $");
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
#ifdef __NetBSD__
|
|
#include <sha1.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/module.h>
|
|
#define SHA_DIGEST_LENGTH SHA1_DIGEST_LENGTH
|
|
#else
|
|
#include <openssl/sha.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <err.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "npfctl.h"
|
|
|
|
enum {
|
|
NPFCTL_START,
|
|
NPFCTL_STOP,
|
|
NPFCTL_RELOAD,
|
|
NPFCTL_SHOWCONF,
|
|
NPFCTL_FLUSH,
|
|
NPFCTL_VALIDATE,
|
|
NPFCTL_TABLE,
|
|
NPFCTL_RULE,
|
|
NPFCTL_STATS,
|
|
NPFCTL_SAVE,
|
|
NPFCTL_LOAD,
|
|
NPFCTL_DEBUG,
|
|
NPFCTL_CONN_LIST,
|
|
};
|
|
|
|
static const struct operations_s {
|
|
const char * cmd;
|
|
int action;
|
|
} operations[] = {
|
|
/* Start, stop, reload */
|
|
{ "start", NPFCTL_START },
|
|
{ "stop", NPFCTL_STOP },
|
|
{ "reload", NPFCTL_RELOAD },
|
|
{ "show", NPFCTL_SHOWCONF, },
|
|
{ "flush", NPFCTL_FLUSH },
|
|
/* Table */
|
|
{ "table", NPFCTL_TABLE },
|
|
/* Rule */
|
|
{ "rule", NPFCTL_RULE },
|
|
/* Stats */
|
|
{ "stats", NPFCTL_STATS },
|
|
/* Full state save/load */
|
|
{ "save", NPFCTL_SAVE },
|
|
{ "load", NPFCTL_LOAD },
|
|
{ "list", NPFCTL_CONN_LIST },
|
|
/* Misc. */
|
|
{ "valid", NPFCTL_VALIDATE },
|
|
{ "debug", NPFCTL_DEBUG },
|
|
/* --- */
|
|
{ NULL, 0 }
|
|
};
|
|
|
|
bool
|
|
join(char *buf, size_t buflen, int count, char **args, const char *sep)
|
|
{
|
|
const u_int seplen = strlen(sep);
|
|
char *s = buf, *p = NULL;
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
size_t len;
|
|
|
|
p = stpncpy(s, args[i], buflen);
|
|
len = p - s + seplen;
|
|
if (len >= buflen) {
|
|
return false;
|
|
}
|
|
buflen -= len;
|
|
strcpy(p, sep);
|
|
s = p + seplen;
|
|
}
|
|
*p = '\0';
|
|
return true;
|
|
}
|
|
|
|
__dead static void
|
|
usage(void)
|
|
{
|
|
const char *progname = getprogname();
|
|
|
|
fprintf(stderr,
|
|
"Usage:\t%s start | stop | flush | show | stats\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s validate | reload [<rule-file>]\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s rule \"rule-name\" { add | rem } <rule-syntax>\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s rule \"rule-name\" rem-id <rule-id>\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s rule \"rule-name\" { list | flush }\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s table \"table-name\" { add | rem | test } <address/mask>\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s table \"table-name\" { list | flush }\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s table \"table-name\" replace [-n \"name\"]"
|
|
" [-t <type>] <table-file>\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s save | load\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s list [-46hNnw] [-i <ifname>]\n",
|
|
progname);
|
|
fprintf(stderr,
|
|
"\t%s debug [<rule-file>] [<raw-output>]\n",
|
|
progname);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
static int
|
|
npfctl_print_stats(int fd)
|
|
{
|
|
static const struct stats_s {
|
|
/* Note: -1 indicates a new section. */
|
|
int index;
|
|
const char * name;
|
|
} stats[] = {
|
|
{ -1, "Packets passed" },
|
|
{ NPF_STAT_PASS_DEFAULT, "default pass" },
|
|
{ NPF_STAT_PASS_RULESET, "ruleset pass" },
|
|
{ NPF_STAT_PASS_CONN, "state pass" },
|
|
|
|
{ -1, "Packets blocked" },
|
|
{ NPF_STAT_BLOCK_DEFAULT, "default block" },
|
|
{ NPF_STAT_BLOCK_RULESET, "ruleset block" },
|
|
|
|
{ -1, "State and NAT entries" },
|
|
{ NPF_STAT_CONN_CREATE, "state allocations"},
|
|
{ NPF_STAT_CONN_DESTROY, "state destructions"},
|
|
{ NPF_STAT_NAT_CREATE, "NAT entry allocations" },
|
|
{ NPF_STAT_NAT_DESTROY, "NAT entry destructions"},
|
|
|
|
{ -1, "Network buffers" },
|
|
{ NPF_STAT_NBUF_NONCONTIG, "non-contiguous cases" },
|
|
{ NPF_STAT_NBUF_CONTIG_FAIL, "contig alloc failures" },
|
|
|
|
{ -1, "Invalid packet state cases" },
|
|
{ NPF_STAT_INVALID_STATE, "cases in total" },
|
|
{ NPF_STAT_INVALID_STATE_TCP1, "TCP case I" },
|
|
{ NPF_STAT_INVALID_STATE_TCP2, "TCP case II" },
|
|
{ NPF_STAT_INVALID_STATE_TCP3, "TCP case III" },
|
|
|
|
{ -1, "Packet race cases" },
|
|
{ NPF_STAT_RACE_NAT, "NAT association race" },
|
|
{ NPF_STAT_RACE_CONN, "duplicate state race" },
|
|
|
|
{ -1, "Fragmentation" },
|
|
{ NPF_STAT_FRAGMENTS, "fragments" },
|
|
{ NPF_STAT_REASSEMBLY, "reassembled" },
|
|
{ NPF_STAT_REASSFAIL, "failed reassembly" },
|
|
|
|
{ -1, "Other" },
|
|
{ NPF_STAT_ERROR, "unexpected errors" },
|
|
};
|
|
uint64_t *st = ecalloc(1, NPF_STATS_SIZE);
|
|
|
|
if (ioctl(fd, IOC_NPF_STATS, &st) != 0) {
|
|
err(EXIT_FAILURE, "ioctl(IOC_NPF_STATS)");
|
|
}
|
|
|
|
for (unsigned i = 0; i < __arraycount(stats); i++) {
|
|
const char *sname = stats[i].name;
|
|
int sidx = stats[i].index;
|
|
|
|
if (sidx == -1) {
|
|
printf("%s:\n", sname);
|
|
} else {
|
|
printf("\t%"PRIu64" %s\n", st[sidx], sname);
|
|
}
|
|
}
|
|
|
|
free(st);
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
npfctl_print_error(const npf_error_t *ne)
|
|
{
|
|
const char *srcfile = ne->source_file;
|
|
|
|
if (ne->error_msg) {
|
|
errx(EXIT_FAILURE, "%s", ne->error_msg);
|
|
}
|
|
if (srcfile) {
|
|
warnx("source %s line %d", srcfile, ne->source_line);
|
|
}
|
|
if (ne->id) {
|
|
warnx("object: %" PRIi64, ne->id);
|
|
}
|
|
}
|
|
|
|
char *
|
|
npfctl_print_addrmask(int alen, const char *fmt, const npf_addr_t *addr,
|
|
npf_netmask_t mask)
|
|
{
|
|
const unsigned buflen = 256;
|
|
char *buf = ecalloc(1, buflen);
|
|
struct sockaddr_storage ss;
|
|
|
|
memset(&ss, 0, sizeof(ss));
|
|
|
|
switch (alen) {
|
|
case 4: {
|
|
struct sockaddr_in *sin = (void *)&ss;
|
|
sin->sin_family = AF_INET;
|
|
memcpy(&sin->sin_addr, addr, sizeof(sin->sin_addr));
|
|
break;
|
|
}
|
|
case 16: {
|
|
struct sockaddr_in6 *sin6 = (void *)&ss;
|
|
sin6->sin6_family = AF_INET6;
|
|
memcpy(&sin6->sin6_addr, addr, sizeof(sin6->sin6_addr));
|
|
break;
|
|
}
|
|
default:
|
|
assert(false);
|
|
}
|
|
sockaddr_snprintf(buf, buflen, fmt, (const void *)&ss);
|
|
if (mask && mask != NPF_NO_NETMASK) {
|
|
const unsigned len = strlen(buf);
|
|
snprintf(&buf[len], buflen - len, "/%u", mask);
|
|
}
|
|
return buf;
|
|
}
|
|
|
|
static int
|
|
npfctl_table_type(const char *typename)
|
|
{
|
|
static const struct tbltype_s {
|
|
const char * name;
|
|
unsigned type;
|
|
} tbltypes[] = {
|
|
{ "ipset", NPF_TABLE_IPSET },
|
|
{ "lpm", NPF_TABLE_LPM },
|
|
{ "const", NPF_TABLE_CONST },
|
|
{ NULL, 0 }
|
|
};
|
|
|
|
for (unsigned i = 0; tbltypes[i].name != NULL; i++) {
|
|
if (strcmp(typename, tbltypes[i].name) == 0) {
|
|
return tbltypes[i].type;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
npfctl_table_replace(int fd, int argc, char **argv)
|
|
{
|
|
const char *name, *newname, *path, *typename = NULL;
|
|
int c, tid = -1;
|
|
FILE *fp;
|
|
nl_config_t *ncf;
|
|
nl_table_t *t;
|
|
u_int type = 0;
|
|
|
|
name = newname = argv[0];
|
|
optind = 2;
|
|
while ((c = getopt(argc, argv, "n:t:")) != -1) {
|
|
switch (c) {
|
|
case 't':
|
|
typename = optarg;
|
|
break;
|
|
case 'n':
|
|
newname = optarg;
|
|
break;
|
|
default:
|
|
fprintf(stderr,
|
|
"Usage: %s table \"table-name\" replace "
|
|
"[-n \"name\"] [-t <type>] <table-file>\n",
|
|
getprogname());
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
argc -= optind;
|
|
argv += optind;
|
|
|
|
if (typename && (type = npfctl_table_type(typename)) == 0) {
|
|
errx(EXIT_FAILURE, "unsupported table type '%s'", typename);
|
|
}
|
|
|
|
if (argc != 1) {
|
|
usage();
|
|
}
|
|
|
|
path = argv[0];
|
|
if (strcmp(path, "-") == 0) {
|
|
path = "stdin";
|
|
fp = stdin;
|
|
} else if ((fp = fopen(path, "r")) == NULL) {
|
|
err(EXIT_FAILURE, "open '%s'", path);
|
|
}
|
|
|
|
/* Get existing config to lookup ID of existing table */
|
|
if ((ncf = npf_config_retrieve(fd)) == NULL) {
|
|
err(EXIT_FAILURE, "npf_config_retrieve()");
|
|
}
|
|
if ((t = npfctl_table_getbyname(ncf, name)) == NULL) {
|
|
errx(EXIT_FAILURE,
|
|
"table '%s' not found in the active configuration", name);
|
|
}
|
|
tid = npf_table_getid(t);
|
|
if (!type) {
|
|
type = npf_table_gettype(t);
|
|
}
|
|
npf_config_destroy(ncf);
|
|
|
|
if ((t = npfctl_load_table(newname, tid, type, path, fp)) == NULL) {
|
|
err(EXIT_FAILURE, "table load failed");
|
|
}
|
|
|
|
if (npf_table_replace(fd, t, NULL)) {
|
|
err(EXIT_FAILURE, "npf_table_replace(<%s>)", name);
|
|
}
|
|
}
|
|
|
|
static void
|
|
npfctl_table(int fd, int argc, char **argv)
|
|
{
|
|
static const struct tblops_s {
|
|
const char * cmd;
|
|
int action;
|
|
} tblops[] = {
|
|
{ "add", NPF_CMD_TABLE_ADD },
|
|
{ "rem", NPF_CMD_TABLE_REMOVE },
|
|
{ "del", NPF_CMD_TABLE_REMOVE },
|
|
{ "test", NPF_CMD_TABLE_LOOKUP },
|
|
{ "list", NPF_CMD_TABLE_LIST },
|
|
{ "flush", NPF_CMD_TABLE_FLUSH },
|
|
{ NULL, 0 }
|
|
};
|
|
npf_ioctl_table_t nct;
|
|
fam_addr_mask_t fam;
|
|
size_t buflen = 512;
|
|
char *cmd, *arg;
|
|
int n, alen;
|
|
|
|
/* Default action is list. */
|
|
memset(&nct, 0, sizeof(npf_ioctl_table_t));
|
|
nct.nct_name = argv[0];
|
|
cmd = argv[1];
|
|
|
|
for (n = 0; tblops[n].cmd != NULL; n++) {
|
|
if (strcmp(cmd, tblops[n].cmd) != 0) {
|
|
continue;
|
|
}
|
|
nct.nct_cmd = tblops[n].action;
|
|
break;
|
|
}
|
|
if (tblops[n].cmd == NULL) {
|
|
errx(EXIT_FAILURE, "invalid command '%s'", cmd);
|
|
}
|
|
|
|
switch (nct.nct_cmd) {
|
|
case NPF_CMD_TABLE_LIST:
|
|
case NPF_CMD_TABLE_FLUSH:
|
|
arg = NULL;
|
|
break;
|
|
default:
|
|
if (argc < 3) {
|
|
usage();
|
|
}
|
|
arg = argv[2];
|
|
}
|
|
|
|
again:
|
|
switch (nct.nct_cmd) {
|
|
case NPF_CMD_TABLE_LIST:
|
|
nct.nct_data.buf.buf = ecalloc(1, buflen);
|
|
nct.nct_data.buf.len = buflen;
|
|
break;
|
|
case NPF_CMD_TABLE_FLUSH:
|
|
break;
|
|
default:
|
|
if (!npfctl_parse_cidr(arg, &fam, &alen)) {
|
|
errx(EXIT_FAILURE, "invalid CIDR '%s'", arg);
|
|
}
|
|
nct.nct_data.ent.alen = alen;
|
|
memcpy(&nct.nct_data.ent.addr, &fam.fam_addr, alen);
|
|
nct.nct_data.ent.mask = fam.fam_mask;
|
|
}
|
|
|
|
if (ioctl(fd, IOC_NPF_TABLE, &nct) != -1) {
|
|
errno = 0;
|
|
}
|
|
switch (errno) {
|
|
case 0:
|
|
break;
|
|
case EEXIST:
|
|
errx(EXIT_FAILURE, "entry already exists or is conflicting");
|
|
case ENOENT:
|
|
errx(EXIT_FAILURE, "not found");
|
|
case EINVAL:
|
|
errx(EXIT_FAILURE, "invalid address, mask or table ID");
|
|
case ENOMEM:
|
|
if (nct.nct_cmd == NPF_CMD_TABLE_LIST) {
|
|
/* XXX */
|
|
free(nct.nct_data.buf.buf);
|
|
buflen <<= 1;
|
|
goto again;
|
|
}
|
|
/* FALLTHROUGH */
|
|
default:
|
|
err(EXIT_FAILURE, "ioctl(IOC_NPF_TABLE)");
|
|
}
|
|
|
|
if (nct.nct_cmd == NPF_CMD_TABLE_LIST) {
|
|
npf_ioctl_ent_t *ent = nct.nct_data.buf.buf;
|
|
char *buf;
|
|
|
|
while (nct.nct_data.buf.len--) {
|
|
if (!ent->alen)
|
|
break;
|
|
buf = npfctl_print_addrmask(ent->alen, "%a",
|
|
&ent->addr, ent->mask);
|
|
puts(buf);
|
|
ent++;
|
|
}
|
|
free(nct.nct_data.buf.buf);
|
|
} else {
|
|
printf("%s: %s\n", getprogname(),
|
|
nct.nct_cmd == NPF_CMD_TABLE_LOOKUP ?
|
|
"match" : "success");
|
|
}
|
|
}
|
|
|
|
static nl_rule_t *
|
|
npfctl_parse_rule(int argc, char **argv, parse_entry_t entry)
|
|
{
|
|
char rule_string[1024];
|
|
nl_rule_t *rl;
|
|
|
|
/* Get the rule string and parse it. */
|
|
if (!join(rule_string, sizeof(rule_string), argc, argv, " ")) {
|
|
errx(EXIT_FAILURE, "command too long");
|
|
}
|
|
npfctl_parse_string(rule_string, entry);
|
|
if ((rl = npfctl_rule_ref()) == NULL) {
|
|
errx(EXIT_FAILURE, "could not parse the rule");
|
|
}
|
|
return rl;
|
|
}
|
|
|
|
#ifdef __NetBSD__
|
|
static unsigned char *
|
|
SHA1(const unsigned char *d, size_t l, unsigned char *md)
|
|
{
|
|
SHA1_CTX c;
|
|
|
|
SHA1Init(&c);
|
|
SHA1Update(&c, d, l);
|
|
SHA1Final(md, &c);
|
|
return md;
|
|
}
|
|
#endif
|
|
|
|
static void
|
|
npfctl_generate_key(nl_rule_t *rl, void *key)
|
|
{
|
|
void *meta;
|
|
size_t len;
|
|
|
|
if ((meta = npf_rule_export(rl, &len)) == NULL) {
|
|
errx(EXIT_FAILURE, "error generating rule key");
|
|
}
|
|
__CTASSERT(NPF_RULE_MAXKEYLEN >= SHA_DIGEST_LENGTH);
|
|
memset(key, 0, NPF_RULE_MAXKEYLEN);
|
|
SHA1(meta, len, key);
|
|
free(meta);
|
|
}
|
|
|
|
int
|
|
npfctl_nat_ruleset_p(const char *name, bool *natset)
|
|
{
|
|
const size_t preflen = sizeof(NPF_RULESET_MAP_PREF) - 1;
|
|
*natset = strncmp(name, NPF_RULESET_MAP_PREF, preflen) == 0;
|
|
return (*natset && strlen(name) <= preflen) ? -1 : 0;
|
|
}
|
|
|
|
static void
|
|
npfctl_rule(int fd, int argc, char **argv)
|
|
{
|
|
static const struct ruleops_s {
|
|
const char * cmd;
|
|
int action;
|
|
bool extra_arg;
|
|
} ruleops[] = {
|
|
{ "add", NPF_CMD_RULE_ADD, true },
|
|
{ "rem", NPF_CMD_RULE_REMKEY, true },
|
|
{ "del", NPF_CMD_RULE_REMKEY, true },
|
|
{ "rem-id", NPF_CMD_RULE_REMOVE, true },
|
|
{ "list", NPF_CMD_RULE_LIST, false },
|
|
{ "flush", NPF_CMD_RULE_FLUSH, false },
|
|
{ NULL, 0, 0 }
|
|
};
|
|
uint8_t key[NPF_RULE_MAXKEYLEN];
|
|
const char *ruleset_name = argv[0];
|
|
const char *cmd = argv[1];
|
|
int error, action = 0;
|
|
bool extra_arg, natset;
|
|
parse_entry_t entry;
|
|
uint64_t rule_id;
|
|
nl_rule_t *rl;
|
|
|
|
for (unsigned n = 0; ruleops[n].cmd != NULL; n++) {
|
|
if (strcmp(cmd, ruleops[n].cmd) == 0) {
|
|
action = ruleops[n].action;
|
|
extra_arg = ruleops[n].extra_arg;
|
|
break;
|
|
}
|
|
}
|
|
argc -= 2;
|
|
argv += 2;
|
|
|
|
if (!action || (extra_arg && argc == 0)) {
|
|
usage();
|
|
}
|
|
|
|
if (npfctl_nat_ruleset_p(ruleset_name, &natset) != 0) {
|
|
errx(EXIT_FAILURE,
|
|
"invalid NAT ruleset name (note: the name must be "
|
|
"prefixed with `" NPF_RULESET_MAP_PREF "`)");
|
|
}
|
|
entry = natset ? NPFCTL_PARSE_MAP : NPFCTL_PARSE_RULE;
|
|
|
|
switch (action) {
|
|
case NPF_CMD_RULE_ADD:
|
|
rl = npfctl_parse_rule(argc, argv, entry);
|
|
npfctl_generate_key(rl, key);
|
|
npf_rule_setkey(rl, key, sizeof(key));
|
|
error = npf_ruleset_add(fd, ruleset_name, rl, &rule_id);
|
|
break;
|
|
case NPF_CMD_RULE_REMKEY:
|
|
rl = npfctl_parse_rule(argc, argv, entry);
|
|
npfctl_generate_key(rl, key);
|
|
error = npf_ruleset_remkey(fd, ruleset_name, key, sizeof(key));
|
|
break;
|
|
case NPF_CMD_RULE_REMOVE:
|
|
rule_id = strtoull(argv[0], NULL, 16);
|
|
error = npf_ruleset_remove(fd, ruleset_name, rule_id);
|
|
break;
|
|
case NPF_CMD_RULE_LIST:
|
|
error = npfctl_ruleset_show(fd, ruleset_name);
|
|
break;
|
|
case NPF_CMD_RULE_FLUSH:
|
|
error = npf_ruleset_flush(fd, ruleset_name);
|
|
break;
|
|
default:
|
|
abort();
|
|
}
|
|
|
|
switch (error) {
|
|
case 0:
|
|
/* Success. */
|
|
break;
|
|
case ESRCH:
|
|
errx(EXIT_FAILURE, "ruleset \"%s\" not found", ruleset_name);
|
|
case ENOENT:
|
|
errx(EXIT_FAILURE, "rule was not found");
|
|
default:
|
|
errx(EXIT_FAILURE, "rule operation: %s", strerror(error));
|
|
}
|
|
if (action == NPF_CMD_RULE_ADD) {
|
|
printf("OK %" PRIx64 "\n", rule_id);
|
|
}
|
|
}
|
|
|
|
static bool bpfjit = true;
|
|
|
|
void
|
|
npfctl_bpfjit(bool onoff)
|
|
{
|
|
bpfjit = onoff;
|
|
}
|
|
|
|
static void
|
|
npfctl_preload_bpfjit(void)
|
|
{
|
|
#ifdef __NetBSD__
|
|
modctl_load_t args = {
|
|
.ml_filename = "bpfjit",
|
|
.ml_flags = MODCTL_NO_PROP,
|
|
.ml_props = NULL,
|
|
.ml_propslen = 0
|
|
};
|
|
|
|
if (!bpfjit)
|
|
return;
|
|
|
|
if (modctl(MODCTL_LOAD, &args) != 0 && errno != EEXIST) {
|
|
static const char *p = "; performance will be degraded";
|
|
if (errno == ENOENT)
|
|
warnx("the bpfjit module seems to be missing%s", p);
|
|
else
|
|
warn("error loading the bpfjit module%s", p);
|
|
warnx("To disable this warning `set bpf.jit off' in "
|
|
"/etc/npf.conf");
|
|
}
|
|
#endif
|
|
}
|
|
|
|
static int
|
|
npfctl_load(int fd)
|
|
{
|
|
nl_config_t *ncf;
|
|
npf_error_t errinfo;
|
|
struct stat sb;
|
|
size_t blen;
|
|
void *blob;
|
|
int error;
|
|
|
|
/*
|
|
* The file may change while reading - we are not handling this,
|
|
* leaving this responsibility for the caller.
|
|
*/
|
|
if (stat(NPF_DB_PATH, &sb) == -1) {
|
|
err(EXIT_FAILURE, "stat");
|
|
}
|
|
if ((blen = sb.st_size) == 0) {
|
|
err(EXIT_FAILURE, "saved configuration file is empty");
|
|
}
|
|
if ((blob = mmap(NULL, blen, PROT_READ,
|
|
MAP_FILE | MAP_PRIVATE, fd, 0)) == MAP_FAILED) {
|
|
err(EXIT_FAILURE, "mmap");
|
|
}
|
|
ncf = npf_config_import(blob, blen);
|
|
munmap(blob, blen);
|
|
if (ncf == NULL) {
|
|
return errno;
|
|
}
|
|
|
|
/*
|
|
* Configuration imported - submit it now.
|
|
**/
|
|
errno = error = npf_config_submit(ncf, fd, &errinfo);
|
|
if (error) {
|
|
npfctl_print_error(&errinfo);
|
|
}
|
|
npf_config_destroy(ncf);
|
|
return error;
|
|
}
|
|
|
|
struct npf_conn_filter {
|
|
uint16_t alen;
|
|
const char * ifname;
|
|
bool nat;
|
|
bool wide;
|
|
bool name;
|
|
int width;
|
|
FILE * fp;
|
|
};
|
|
|
|
static int
|
|
npfctl_conn_print(unsigned alen, const npf_addr_t *a, const in_port_t *p,
|
|
const char *ifname, void *v)
|
|
{
|
|
struct npf_conn_filter *fil = v;
|
|
FILE *fp = fil->fp;
|
|
char *src, *dst;
|
|
|
|
if (fil->ifname && strcmp(ifname, fil->ifname) != 0)
|
|
return 0;
|
|
if (fil->alen && alen != fil->alen)
|
|
return 0;
|
|
if (fil->nat && !p[2])
|
|
return 0;
|
|
|
|
int w = fil->width;
|
|
const char *fmt = fil->name ? "%A" :
|
|
(alen == sizeof(struct in_addr) ? "%a" : "[%a]");
|
|
src = npfctl_print_addrmask(alen, fmt, &a[0], NPF_NO_NETMASK);
|
|
dst = npfctl_print_addrmask(alen, fmt, &a[1], NPF_NO_NETMASK);
|
|
|
|
if (fil->wide) {
|
|
fprintf(fp, "%s:%d %s:%d", src, p[0], dst, p[1]);
|
|
} else {
|
|
fprintf(fp, "%*.*s:%-5d %*.*s:%-5d", w, w, src, p[0],
|
|
w, w, dst, p[1]);
|
|
}
|
|
free(src);
|
|
free(dst);
|
|
if (!p[2]) {
|
|
fputc('\n', fp);
|
|
return 1;
|
|
}
|
|
fprintf(fp, " via %s:%d\n", ifname, p[2]);
|
|
return 1;
|
|
}
|
|
|
|
static int
|
|
npfctl_conn_list(int fd, int argc, char **argv)
|
|
{
|
|
struct npf_conn_filter f;
|
|
int c, w, header = true;
|
|
|
|
memset(&f, 0, sizeof(f));
|
|
argc--;
|
|
argv++;
|
|
|
|
while ((c = getopt(argc, argv, "46hi:nNw")) != -1) {
|
|
switch (c) {
|
|
case '4':
|
|
f.alen = sizeof(struct in_addr);
|
|
break;
|
|
case '6':
|
|
f.alen = sizeof(struct in6_addr);
|
|
break;
|
|
case 'h':
|
|
header = false;
|
|
break;
|
|
case 'i':
|
|
f.ifname = optarg;
|
|
break;
|
|
case 'n':
|
|
f.nat = true;
|
|
break;
|
|
case 'N':
|
|
f.name = true;
|
|
break;
|
|
case 'w':
|
|
f.wide = true;
|
|
break;
|
|
default:
|
|
fprintf(stderr,
|
|
"Usage: %s list [-46hnNw] [-i <ifname>]\n",
|
|
getprogname());
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
f.width = f.alen == sizeof(struct in_addr) ? 25 : 41;
|
|
w = f.width + 6;
|
|
f.fp = stdout;
|
|
|
|
if (header) {
|
|
fprintf(f.fp, "%*.*s %*.*s\n",
|
|
w, w, "From address:port ", w, w, "To address:port ");
|
|
}
|
|
npf_conn_list(fd, npfctl_conn_print, &f);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
npfctl_open_dev(const char *path)
|
|
{
|
|
int fd, kernver;
|
|
|
|
fd = open(path, O_RDONLY);
|
|
if (fd == -1) {
|
|
err(EXIT_FAILURE, "cannot open '%s'", path);
|
|
}
|
|
if (ioctl(fd, IOC_NPF_VERSION, &kernver) == -1) {
|
|
err(EXIT_FAILURE, "ioctl(IOC_NPF_VERSION)");
|
|
}
|
|
if (kernver != NPF_VERSION) {
|
|
errx(EXIT_FAILURE,
|
|
"incompatible NPF interface version (%d, kernel %d)\n"
|
|
"Hint: update %s?", NPF_VERSION, kernver,
|
|
kernver > NPF_VERSION ? "userland" : "kernel");
|
|
}
|
|
return fd;
|
|
}
|
|
|
|
static void
|
|
npfctl(int action, int argc, char **argv)
|
|
{
|
|
int fd, boolval, ret = 0;
|
|
const char *fun = "";
|
|
nl_config_t *ncf;
|
|
|
|
switch (action) {
|
|
case NPFCTL_VALIDATE:
|
|
case NPFCTL_DEBUG:
|
|
fd = 0;
|
|
break;
|
|
default:
|
|
fd = npfctl_open_dev(NPF_DEV_PATH);
|
|
}
|
|
|
|
switch (action) {
|
|
case NPFCTL_START:
|
|
boolval = true;
|
|
ret = ioctl(fd, IOC_NPF_SWITCH, &boolval);
|
|
fun = "ioctl(IOC_NPF_SWITCH)";
|
|
break;
|
|
case NPFCTL_STOP:
|
|
boolval = false;
|
|
ret = ioctl(fd, IOC_NPF_SWITCH, &boolval);
|
|
fun = "ioctl(IOC_NPF_SWITCH)";
|
|
break;
|
|
case NPFCTL_RELOAD:
|
|
npfctl_config_init(false);
|
|
npfctl_parse_file(argc < 3 ? NPF_CONF_PATH : argv[2]);
|
|
npfctl_preload_bpfjit();
|
|
errno = ret = npfctl_config_send(fd);
|
|
fun = "npfctl_config_send";
|
|
break;
|
|
case NPFCTL_SHOWCONF:
|
|
ret = npfctl_config_show(fd);
|
|
fun = "npfctl_config_show";
|
|
break;
|
|
case NPFCTL_FLUSH:
|
|
ret = npf_config_flush(fd);
|
|
fun = "npf_config_flush";
|
|
break;
|
|
case NPFCTL_TABLE:
|
|
if ((argc -= 2) < 2) {
|
|
usage();
|
|
}
|
|
argv += 2;
|
|
if (strcmp(argv[1], "replace") == 0) {
|
|
npfctl_table_replace(fd, argc, argv);
|
|
} else {
|
|
npfctl_table(fd, argc, argv);
|
|
}
|
|
break;
|
|
case NPFCTL_RULE:
|
|
if ((argc -= 2) < 2) {
|
|
usage();
|
|
}
|
|
argv += 2;
|
|
npfctl_rule(fd, argc, argv);
|
|
break;
|
|
case NPFCTL_LOAD:
|
|
npfctl_preload_bpfjit();
|
|
ret = npfctl_load(fd);
|
|
fun = "npfctl_config_load";
|
|
break;
|
|
case NPFCTL_SAVE:
|
|
ncf = npf_config_retrieve(fd);
|
|
if (ncf) {
|
|
npfctl_config_save(ncf, NPF_DB_PATH);
|
|
npf_config_destroy(ncf);
|
|
} else {
|
|
ret = errno;
|
|
}
|
|
fun = "npfctl_config_save";
|
|
break;
|
|
case NPFCTL_STATS:
|
|
ret = npfctl_print_stats(fd);
|
|
fun = "npfctl_print_stats";
|
|
break;
|
|
case NPFCTL_CONN_LIST:
|
|
ret = npfctl_conn_list(fd, argc, argv);
|
|
fun = "npfctl_conn_list";
|
|
break;
|
|
case NPFCTL_VALIDATE:
|
|
npfctl_config_init(false);
|
|
npfctl_parse_file(argc > 2 ? argv[2] : NPF_CONF_PATH);
|
|
ret = npfctl_config_show(0);
|
|
fun = "npfctl_config_show";
|
|
break;
|
|
case NPFCTL_DEBUG:
|
|
npfctl_config_init(true);
|
|
npfctl_parse_file(argc > 2 ? argv[2] : NPF_CONF_PATH);
|
|
npfctl_config_debug(argc > 3 ? argv[3] : "/tmp/npf.nvlist");
|
|
break;
|
|
}
|
|
if (ret) {
|
|
err(EXIT_FAILURE, "%s", fun);
|
|
}
|
|
if (fd) {
|
|
close(fd);
|
|
}
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
char *cmd;
|
|
|
|
if (argc < 2) {
|
|
usage();
|
|
}
|
|
npfctl_show_init();
|
|
cmd = argv[1];
|
|
|
|
/* Find and call the subroutine. */
|
|
for (int n = 0; operations[n].cmd != NULL; n++) {
|
|
const char *opcmd = operations[n].cmd;
|
|
if (strncmp(cmd, opcmd, strlen(opcmd)) != 0)
|
|
continue;
|
|
npfctl(operations[n].action, argc, argv);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
usage();
|
|
}
|