123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /*
- * firewall3 - 3rd OpenWrt UCI firewall implementation
- *
- * Copyright (C) 2013 Jo-Philipp Wich <jo@mein.io>
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- #include "ipsets.h"
- const struct fw3_option fw3_ipset_opts[] = {
- FW3_OPT("enabled", bool, ipset, enabled),
- FW3_OPT("name", string, ipset, name),
- FW3_OPT("family", family, ipset, family),
- FW3_OPT("storage", ipset_method, ipset, method),
- FW3_LIST("match", ipset_datatype, ipset, datatypes),
- FW3_OPT("iprange", address, ipset, iprange),
- FW3_OPT("portrange", port, ipset, portrange),
- FW3_OPT("netmask", int, ipset, netmask),
- FW3_OPT("maxelem", int, ipset, maxelem),
- FW3_OPT("hashsize", int, ipset, hashsize),
- FW3_OPT("timeout", int, ipset, timeout),
- FW3_OPT("external", string, ipset, external),
- FW3_LIST("entry", setentry, ipset, entries),
- FW3_OPT("loadfile", string, ipset, loadfile),
- { }
- };
- #define T(m, t1, t2, t3, r, o) \
- { FW3_IPSET_METHOD_##m, \
- FW3_IPSET_TYPE_##t1 | (FW3_IPSET_TYPE_##t2 << 8) | (FW3_IPSET_TYPE_##t3 << 16), \
- r, o }
- enum ipset_optflag {
- OPT_IPRANGE = (1 << 0),
- OPT_PORTRANGE = (1 << 1),
- OPT_NETMASK = (1 << 2),
- OPT_HASHSIZE = (1 << 3),
- OPT_MAXELEM = (1 << 4),
- OPT_FAMILY = (1 << 5),
- };
- struct ipset_type {
- enum fw3_ipset_method method;
- uint32_t types;
- uint8_t required;
- uint8_t optional;
- };
- static struct ipset_type ipset_types[] = {
- T(BITMAP, IP, UNSPEC, UNSPEC, OPT_IPRANGE, OPT_NETMASK),
- T(BITMAP, IP, MAC, UNSPEC, OPT_IPRANGE, 0),
- T(BITMAP, PORT, UNSPEC, UNSPEC, OPT_PORTRANGE, 0),
- T(HASH, IP, UNSPEC, UNSPEC, 0,
- OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM | OPT_NETMASK),
- T(HASH, NET, UNSPEC, UNSPEC, 0,
- OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
- T(HASH, IP, PORT, UNSPEC, 0,
- OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
- T(HASH, NET, PORT, UNSPEC, 0,
- OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
- T(HASH, IP, PORT, IP, 0,
- OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
- T(HASH, IP, PORT, NET, 0,
- OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
- T(LIST, SET, UNSPEC, UNSPEC, 0, OPT_MAXELEM),
- };
- static bool
- check_types(struct uci_element *e, struct fw3_ipset *ipset)
- {
- int i = 0;
- uint32_t typelist = 0;
- struct fw3_ipset_datatype *type;
- list_for_each_entry(type, &ipset->datatypes, list)
- {
- if (i >= 3)
- {
- warn_section("ipset", ipset, e, "must not have more than 3 datatypes assigned");
- return false;
- }
- typelist |= (type->type << (i++ * 8));
- }
- /* find a suitable storage method if none specified */
- if (ipset->method == FW3_IPSET_METHOD_UNSPEC)
- {
- for (i = 0; i < ARRAY_SIZE(ipset_types); i++)
- {
- /* skip type for v6 if it does not support family */
- if (ipset->family != FW3_FAMILY_V4 &&
- !(ipset_types[i].optional & OPT_FAMILY))
- continue;
- if (ipset_types[i].types == typelist)
- {
- ipset->method = ipset_types[i].method;
- warn_section("ipset", ipset, e, "defines no storage method, assuming '%s'",
- fw3_ipset_method_names[ipset->method]);
- break;
- }
- }
- }
- //typelist |= ipset->method;
- for (i = 0; i < ARRAY_SIZE(ipset_types); i++)
- {
- if (ipset_types[i].method == ipset->method &&
- ipset_types[i].types == typelist)
- {
- if (!ipset->external)
- {
- if ((ipset_types[i].required & OPT_IPRANGE) &&
- !ipset->iprange.set)
- {
- warn_section("ipset", ipset, e, "requires an ip range");
- return false;
- }
- if ((ipset_types[i].required & OPT_PORTRANGE) &&
- !ipset->portrange.set)
- {
- warn_section("ipset", ipset, e, "requires a port range");
- return false;
- }
- if (!(ipset_types[i].required & OPT_IPRANGE) &&
- ipset->iprange.set)
- {
- warn_section("ipset", ipset, e, "iprange ignored");
- ipset->iprange.set = false;
- }
- if (!(ipset_types[i].required & OPT_PORTRANGE) &&
- ipset->portrange.set)
- {
- warn_section("ipset", ipset, e, "portrange ignored");
- ipset->portrange.set = false;
- }
- if (!(ipset_types[i].optional & OPT_NETMASK) &&
- ipset->netmask > 0)
- {
- warn_section("ipset", ipset, e, "netmask ignored");
- ipset->netmask = 0;
- }
- if (!(ipset_types[i].optional & OPT_HASHSIZE) &&
- ipset->hashsize > 0)
- {
- warn_section("ipset", ipset, e, "hashsize ignored");
- ipset->hashsize = 0;
- }
- if (!(ipset_types[i].optional & OPT_MAXELEM) &&
- ipset->maxelem > 0)
- {
- warn_section("ipset", ipset, e, "maxelem ignored");
- ipset->maxelem = 0;
- }
- if (!(ipset_types[i].optional & OPT_FAMILY) &&
- ipset->family != FW3_FAMILY_V4)
- {
- warn_section("ipset", ipset, e, "family ignored");
- ipset->family = FW3_FAMILY_V4;
- }
- }
- return true;
- }
- }
- warn_section("ipset", ipset, e, "has an invalid combination of storage method and matches");
- return false;
- }
- static bool
- check_ipset(struct fw3_state *state, struct fw3_ipset *ipset, struct uci_element *e)
- {
- if (ipset->external)
- {
- if (!*ipset->external)
- ipset->external = NULL;
- else if (!ipset->name)
- ipset->name = ipset->external;
- }
- if (!ipset->name || !*ipset->name)
- {
- warn_section("ipset", ipset, e, "ipset must have a name assigned");
- }
- //else if (fw3_lookup_ipset(state, ipset->name) != NULL)
- //{
- // warn_section("ipset", ipset, e, "has duplicated set name", ipset->name);
- //}
- else if (ipset->family == FW3_FAMILY_ANY)
- {
- warn_section("ipset", ipset, e, "must not have family 'any'");
- }
- else if (ipset->iprange.set && ipset->family != ipset->iprange.family)
- {
- warn_section("ipset", ipset, e, "has iprange of wrong address family");
- }
- else if (list_empty(&ipset->datatypes))
- {
- warn_section("ipset", ipset, e, "has no datatypes assigned");
- }
- else if (check_types(e, ipset))
- {
- return true;
- }
- return false;
- }
- static struct fw3_ipset *
- fw3_alloc_ipset(struct fw3_state *state)
- {
- struct fw3_ipset *ipset;
- ipset = calloc(1, sizeof(*ipset));
- if (!ipset)
- return NULL;
- INIT_LIST_HEAD(&ipset->datatypes);
- INIT_LIST_HEAD(&ipset->entries);
- ipset->enabled = true;
- ipset->family = FW3_FAMILY_V4;
- list_add_tail(&ipset->list, &state->ipsets);
- return ipset;
- }
- void
- fw3_load_ipsets(struct fw3_state *state, struct uci_package *p,
- struct blob_attr *a)
- {
- struct uci_section *s;
- struct uci_element *e;
- struct fw3_ipset *ipset;
- struct blob_attr *entry;
- unsigned rem;
- INIT_LIST_HEAD(&state->ipsets);
- if (state->disable_ipsets)
- return;
- blob_for_each_attr(entry, a, rem)
- {
- const char *type;
- const char *name = "ubus ipset";
- if (!fw3_attr_parse_name_type(entry, &name, &type))
- continue;
- if (strcmp(type, "ipset"))
- continue;
- ipset = fw3_alloc_ipset(state);
- if (!ipset)
- continue;
- if (!fw3_parse_blob_options(ipset, fw3_ipset_opts, entry, name))
- {
- warn_section("ipset", ipset, NULL, "skipped due to invalid options");
- fw3_free_ipset(ipset);
- continue;
- }
- if (!check_ipset(state, ipset, NULL))
- fw3_free_ipset(ipset);
- }
- uci_foreach_element(&p->sections, e)
- {
- s = uci_to_section(e);
- if (strcmp(s->type, "ipset"))
- continue;
- ipset = fw3_alloc_ipset(state);
- if (!ipset)
- continue;
- if (!fw3_parse_options(ipset, fw3_ipset_opts, s))
- warn_elem(e, "has invalid options");
- if (!check_ipset(state, ipset, e))
- fw3_free_ipset(ipset);
- }
- }
- static void
- load_file(struct fw3_ipset *ipset)
- {
- FILE *f;
- char line[128];
- if (!ipset->loadfile)
- return;
- info(" * Loading file %s", ipset->loadfile);
- f = fopen(ipset->loadfile, "r");
- if (!f) {
- info(" ! Skipping due to open error: %s", strerror(errno));
- return;
- }
- while (fgets(line, sizeof(line), f))
- fw3_pr("add %s %s", ipset->name, line);
- fclose(f);
- }
- static void
- create_ipset(struct fw3_ipset *ipset, struct fw3_state *state)
- {
- bool first = true;
- struct fw3_setentry *entry;
- struct fw3_ipset_datatype *type;
- info(" * Creating ipset %s", ipset->name);
- first = true;
- fw3_pr("create %s %s", ipset->name, fw3_ipset_method_names[ipset->method]);
- list_for_each_entry(type, &ipset->datatypes, list)
- {
- fw3_pr("%c%s", first ? ':' : ',', fw3_ipset_type_names[type->type]);
- first = false;
- }
- if (ipset->method == FW3_IPSET_METHOD_HASH)
- fw3_pr(" family inet%s", (ipset->family == FW3_FAMILY_V4) ? "" : "6");
- if (ipset->iprange.set)
- {
- fw3_pr(" range %s", fw3_address_to_string(&ipset->iprange, false, true));
- }
- else if (ipset->portrange.set)
- {
- fw3_pr(" range %u-%u",
- ipset->portrange.port_min, ipset->portrange.port_max);
- }
- if (ipset->timeout > 0)
- fw3_pr(" timeout %u", ipset->timeout);
- if (ipset->maxelem > 0)
- fw3_pr(" maxelem %u", ipset->maxelem);
- if (ipset->netmask > 0)
- fw3_pr(" netmask %u", ipset->netmask);
- if (ipset->hashsize > 0)
- fw3_pr(" hashsize %u", ipset->hashsize);
- fw3_pr("\n");
- list_for_each_entry(entry, &ipset->entries, list)
- fw3_pr("add %s %s\n", ipset->name, entry->value);
- load_file(ipset);
- }
- void
- fw3_create_ipsets(struct fw3_state *state)
- {
- int tries;
- bool exec = false;
- struct fw3_ipset *ipset;
- if (state->disable_ipsets)
- return;
- /* spawn ipsets */
- list_for_each_entry(ipset, &state->ipsets, list)
- {
- if (ipset->external)
- continue;
- if (!exec)
- {
- exec = fw3_command_pipe(false, "ipset", "-exist", "-");
- if (!exec)
- return;
- }
- create_ipset(ipset, state);
- }
- if (exec)
- {
- fw3_pr("quit\n");
- fw3_command_close();
- }
- /* wait for ipsets to appear */
- list_for_each_entry(ipset, &state->ipsets, list)
- {
- if (ipset->external)
- continue;
- for (tries = 0; !fw3_check_ipset(ipset) && tries < 10; tries++)
- usleep(50000);
- }
- }
- void
- fw3_destroy_ipsets(struct fw3_state *state)
- {
- int tries;
- bool exec = false;
- struct fw3_ipset *ipset;
- /* destroy ipsets */
- list_for_each_entry(ipset, &state->ipsets, list)
- {
- if (!exec)
- {
- exec = fw3_command_pipe(false, "ipset", "-exist", "-");
- if (!exec)
- return;
- }
- info(" * Deleting ipset %s", ipset->name);
- fw3_pr("flush %s\n", ipset->name);
- fw3_pr("destroy %s\n", ipset->name);
- }
- if (exec)
- {
- fw3_pr("quit\n");
- fw3_command_close();
- }
- /* wait for ipsets to disappear */
- list_for_each_entry(ipset, &state->ipsets, list)
- {
- if (ipset->external)
- continue;
- for (tries = 0; fw3_check_ipset(ipset) && tries < 10; tries++)
- usleep(50000);
- }
- }
- struct fw3_ipset *
- fw3_lookup_ipset(struct fw3_state *state, const char *name)
- {
- struct fw3_ipset *s;
- if (list_empty(&state->ipsets))
- return NULL;
- list_for_each_entry(s, &state->ipsets, list)
- {
- if (strcmp(s->name, name))
- continue;
- return s;
- }
- return NULL;
- }
- bool
- fw3_check_ipset(struct fw3_ipset *set)
- {
- bool rv = false;
- socklen_t sz;
- int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
- struct ip_set_req_version req_ver;
- struct ip_set_req_get_set req_name;
- if (s < 0 || fcntl(s, F_SETFD, FD_CLOEXEC))
- goto out;
- sz = sizeof(req_ver);
- req_ver.op = IP_SET_OP_VERSION;
- if (getsockopt(s, SOL_IP, SO_IP_SET, &req_ver, &sz))
- goto out;
- sz = sizeof(req_name);
- req_name.op = IP_SET_OP_GET_BYNAME;
- req_name.version = req_ver.version;
- snprintf(req_name.set.name, IPSET_MAXNAMELEN - 1, "%s",
- set->external ? set->external : set->name);
- if (getsockopt(s, SOL_IP, SO_IP_SET, &req_name, &sz))
- goto out;
- rv = ((sz == sizeof(req_name)) && (req_name.set.index != IPSET_INVALID_ID));
- out:
- if (s >= 0)
- close(s);
- return rv;
- }
|