123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640 |
- /*
- * firewall3 - 3rd OpenWrt UCI firewall implementation
- *
- * Copyright (C) 2013-2014 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.
- */
- #ifndef __FW3_OPTIONS_H
- #define __FW3_OPTIONS_H
- #include <errno.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <stdbool.h>
- #include <ctype.h>
- #include <string.h>
- #include <netdb.h>
- #include <arpa/inet.h>
- #include <sys/socket.h>
- #define _LINUX_IN_H
- #define _LINUX_IN6_H
- #include <netinet/in.h>
- #include <netinet/ether.h>
- #include <time.h>
- #include <uci.h>
- #include <libubox/list.h>
- #include <libubox/utils.h>
- #include <libubox/blobmsg.h>
- #include "icmp_codes.h"
- #include "utils.h"
- enum fw3_table
- {
- FW3_TABLE_FILTER = 0,
- FW3_TABLE_NAT = 1,
- FW3_TABLE_MANGLE = 2,
- FW3_TABLE_RAW = 3,
- };
- enum fw3_family
- {
- FW3_FAMILY_ANY = 0,
- FW3_FAMILY_V4 = 4,
- FW3_FAMILY_V6 = 5,
- };
- enum fw3_flag
- {
- FW3_FLAG_UNSPEC = 0,
- FW3_FLAG_ACCEPT = 6,
- FW3_FLAG_REJECT = 7,
- FW3_FLAG_DROP = 8,
- FW3_FLAG_NOTRACK = 9,
- FW3_FLAG_HELPER = 10,
- FW3_FLAG_MARK = 11,
- FW3_FLAG_DSCP = 12,
- FW3_FLAG_DNAT = 13,
- FW3_FLAG_SNAT = 14,
- FW3_FLAG_MASQUERADE = 15,
- FW3_FLAG_SRC_ACCEPT = 16,
- FW3_FLAG_SRC_REJECT = 17,
- FW3_FLAG_SRC_DROP = 18,
- FW3_FLAG_CUSTOM_CHAINS = 19,
- FW3_FLAG_SYN_FLOOD = 20,
- FW3_FLAG_MTU_FIX = 21,
- FW3_FLAG_DROP_INVALID = 22,
- FW3_FLAG_HOTPLUG = 23,
- __FW3_FLAG_MAX
- };
- enum fw3_reject_code
- {
- FW3_REJECT_CODE_TCP_RESET = 0,
- FW3_REJECT_CODE_PORT_UNREACH = 1,
- FW3_REJECT_CODE_ADM_PROHIBITED = 2,
- __FW3_REJECT_CODE_MAX
- };
- extern const char *fw3_flag_names[__FW3_FLAG_MAX];
- enum fw3_limit_unit
- {
- FW3_LIMIT_UNIT_SECOND = 0,
- FW3_LIMIT_UNIT_MINUTE = 1,
- FW3_LIMIT_UNIT_HOUR = 2,
- FW3_LIMIT_UNIT_DAY = 3,
- __FW3_LIMIT_UNIT_MAX
- };
- extern const char *fw3_limit_units[__FW3_LIMIT_UNIT_MAX];
- enum fw3_ipset_method
- {
- FW3_IPSET_METHOD_UNSPEC = 0,
- FW3_IPSET_METHOD_BITMAP = 1,
- FW3_IPSET_METHOD_HASH = 2,
- FW3_IPSET_METHOD_LIST = 3,
- __FW3_IPSET_METHOD_MAX
- };
- enum fw3_ipset_type
- {
- FW3_IPSET_TYPE_UNSPEC = 0,
- FW3_IPSET_TYPE_IP = 1,
- FW3_IPSET_TYPE_PORT = 2,
- FW3_IPSET_TYPE_MAC = 3,
- FW3_IPSET_TYPE_NET = 4,
- FW3_IPSET_TYPE_SET = 5,
- __FW3_IPSET_TYPE_MAX
- };
- extern const char *fw3_ipset_method_names[__FW3_IPSET_METHOD_MAX];
- extern const char *fw3_ipset_type_names[__FW3_IPSET_TYPE_MAX];
- enum fw3_include_type
- {
- FW3_INC_TYPE_SCRIPT = 0,
- FW3_INC_TYPE_RESTORE = 1,
- };
- enum fw3_reflection_source
- {
- FW3_REFLECTION_INTERNAL = 0,
- FW3_REFLECTION_EXTERNAL = 1,
- };
- struct fw3_ipset_datatype
- {
- struct list_head list;
- enum fw3_ipset_type type;
- const char *dir;
- };
- struct fw3_setmatch
- {
- bool set;
- bool invert;
- char name[32];
- const char *dir[3];
- struct fw3_ipset *ptr;
- };
- struct fw3_device
- {
- struct list_head list;
- bool set;
- bool any;
- bool invert;
- char name[32];
- char network[32];
- };
- struct fw3_address
- {
- struct list_head list;
- bool set;
- bool range;
- bool invert;
- bool resolved;
- enum fw3_family family;
- union {
- struct in_addr v4;
- struct in6_addr v6;
- struct ether_addr mac;
- } address;
- union {
- struct in_addr v4;
- struct in6_addr v6;
- struct ether_addr mac;
- } mask;
- };
- struct fw3_mac
- {
- struct list_head list;
- bool set;
- bool invert;
- struct ether_addr mac;
- };
- struct fw3_protocol
- {
- struct list_head list;
- bool any;
- bool invert;
- uint32_t protocol;
- };
- struct fw3_port
- {
- struct list_head list;
- bool set;
- bool invert;
- uint16_t port_min;
- uint16_t port_max;
- };
- struct fw3_icmptype
- {
- struct list_head list;
- bool invert;
- enum fw3_family family;
- uint8_t type;
- uint8_t code_min;
- uint8_t code_max;
- uint8_t type6;
- uint8_t code6_min;
- uint8_t code6_max;
- };
- struct fw3_limit
- {
- bool invert;
- int rate;
- int burst;
- enum fw3_limit_unit unit;
- };
- struct fw3_time
- {
- bool utc;
- struct tm datestart;
- struct tm datestop;
- uint32_t timestart;
- uint32_t timestop;
- uint32_t monthdays; /* bit 0 is invert + 1 .. 31 */
- uint8_t weekdays; /* bit 0 is invert + 1 .. 7 */
- };
- struct fw3_mark
- {
- bool set;
- bool invert;
- uint32_t mark;
- uint32_t mask;
- };
- struct fw3_dscp
- {
- bool set;
- bool invert;
- uint8_t dscp;
- };
- struct fw3_cthelpermatch
- {
- struct list_head list;
- bool set;
- bool invert;
- char name[32];
- struct fw3_cthelper *ptr;
- };
- struct fw3_defaults
- {
- enum fw3_flag policy_input;
- enum fw3_flag policy_output;
- enum fw3_flag policy_forward;
- bool drop_invalid;
- enum fw3_reject_code tcp_reject_code;
- enum fw3_reject_code any_reject_code;
- bool syn_flood;
- struct fw3_limit syn_flood_rate;
- bool tcp_syncookies;
- int tcp_ecn;
- bool tcp_window_scaling;
- bool accept_redirects;
- bool accept_source_route;
- bool custom_chains;
- bool auto_helper;
- bool flow_offloading;
- bool flow_offloading_hw;
- bool disable_ipv6;
- uint32_t flags[2];
- };
- struct fw3_zone
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- enum fw3_flag policy_input;
- enum fw3_flag policy_output;
- enum fw3_flag policy_forward;
- struct list_head networks;
- struct list_head devices;
- struct list_head subnets;
- const char *extra_src;
- const char *extra_dest;
- bool masq;
- bool masq_allow_invalid;
- struct list_head masq_src;
- struct list_head masq_dest;
- bool mtu_fix;
- struct list_head cthelpers;
- int log;
- struct fw3_limit log_limit;
- bool custom_chains;
- bool auto_helper;
- uint32_t flags[2];
- struct list_head old_addrs;
- };
- struct fw3_rule
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- struct fw3_zone *_src;
- struct fw3_zone *_dest;
- const char *device;
- bool direction_out;
- struct fw3_device src;
- struct fw3_device dest;
- struct fw3_setmatch ipset;
- struct fw3_cthelpermatch helper;
- struct list_head proto;
- struct list_head ip_src;
- struct list_head mac_src;
- struct list_head port_src;
- struct list_head ip_dest;
- struct list_head port_dest;
- struct list_head icmp_type;
- struct fw3_limit limit;
- struct fw3_time time;
- struct fw3_mark mark;
- struct fw3_dscp dscp;
- enum fw3_flag target;
- struct fw3_mark set_mark;
- struct fw3_mark set_xmark;
- struct fw3_dscp set_dscp;
- struct fw3_cthelpermatch set_helper;
- const char *extra;
- };
- struct fw3_redirect
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- struct fw3_zone *_src;
- struct fw3_zone *_dest;
- struct fw3_device src;
- struct fw3_device dest;
- struct fw3_setmatch ipset;
- struct fw3_cthelpermatch helper;
- struct list_head proto;
- struct fw3_address ip_src;
- struct list_head mac_src;
- struct fw3_port port_src;
- struct fw3_address ip_dest;
- struct fw3_port port_dest;
- struct fw3_address ip_redir;
- struct fw3_port port_redir;
- struct fw3_limit limit;
- struct fw3_time time;
- struct fw3_mark mark;
- enum fw3_flag target;
- const char *extra;
- bool local;
- bool reflection;
- enum fw3_reflection_source reflection_src;
- };
- struct fw3_snat
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- struct fw3_zone *_src;
- struct fw3_device src;
- struct fw3_setmatch ipset;
- struct fw3_cthelpermatch helper;
- const char *device;
- struct list_head proto;
- struct fw3_address ip_src;
- struct fw3_port port_src;
- struct fw3_address ip_dest;
- struct fw3_port port_dest;
- struct fw3_address ip_snat;
- struct fw3_port port_snat;
- struct fw3_limit limit;
- struct fw3_time time;
- struct fw3_mark mark;
- bool connlimit_ports;
- enum fw3_flag target;
- const char *extra;
- };
- struct fw3_forward
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- struct fw3_zone *_src;
- struct fw3_zone *_dest;
- struct fw3_device src;
- struct fw3_device dest;
- };
- struct fw3_ipset
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- enum fw3_ipset_method method;
- struct list_head datatypes;
- struct fw3_address iprange;
- struct fw3_port portrange;
- int netmask;
- int maxelem;
- int hashsize;
- int timeout;
- const char *external;
- struct list_head entries;
- const char *loadfile;
- uint32_t flags[2];
- };
- struct fw3_include
- {
- struct list_head list;
- bool enabled;
- const char *name;
- enum fw3_family family;
- const char *path;
- enum fw3_include_type type;
- bool reload;
- };
- struct fw3_cthelper
- {
- struct list_head list;
- bool enabled;
- const char *name;
- const char *module;
- const char *description;
- enum fw3_family family;
- struct list_head proto;
- struct fw3_port port;
- };
- struct fw3_setentry
- {
- struct list_head list;
- const char *value;
- };
- struct fw3_state
- {
- struct uci_context *uci;
- struct fw3_defaults defaults;
- struct list_head zones;
- struct list_head rules;
- struct list_head redirects;
- struct list_head snats;
- struct list_head forwards;
- struct list_head ipsets;
- struct list_head includes;
- struct list_head cthelpers;
- bool disable_ipsets;
- bool statefile;
- };
- struct fw3_chain_spec {
- int family;
- int table;
- int flag;
- const char *format;
- };
- struct fw3_option
- {
- const char *name;
- bool (*parse)(void *, const char *, bool);
- uintptr_t offset;
- size_t elem_size;
- };
- #define FW3_OPT(name, parse, structure, member) \
- { name, fw3_parse_##parse, offsetof(struct fw3_##structure, member) }
- #define FW3_LIST(name, parse, structure, member) \
- { name, fw3_parse_##parse, offsetof(struct fw3_##structure, member), \
- sizeof(struct fw3_##structure) }
- bool fw3_parse_bool(void *ptr, const char *val, bool is_list);
- bool fw3_parse_int(void *ptr, const char *val, bool is_list);
- bool fw3_parse_string(void *ptr, const char *val, bool is_list);
- bool fw3_parse_target(void *ptr, const char *val, bool is_list);
- bool fw3_parse_reject_code(void *ptr, const char *val, bool is_list);
- bool fw3_parse_limit(void *ptr, const char *val, bool is_list);
- bool fw3_parse_device(void *ptr, const char *val, bool is_list);
- bool fw3_parse_address(void *ptr, const char *val, bool is_list);
- bool fw3_parse_network(void *ptr, const char *val, bool is_list);
- bool fw3_parse_mac(void *ptr, const char *val, bool is_list);
- bool fw3_parse_port(void *ptr, const char *val, bool is_list);
- bool fw3_parse_family(void *ptr, const char *val, bool is_list);
- bool fw3_parse_icmptype(void *ptr, const char *val, bool is_list);
- bool fw3_parse_protocol(void *ptr, const char *val, bool is_list);
- bool fw3_parse_ipset_method(void *ptr, const char *val, bool is_list);
- bool fw3_parse_ipset_datatype(void *ptr, const char *val, bool is_list);
- bool fw3_parse_include_type(void *ptr, const char *val, bool is_list);
- bool fw3_parse_reflection_source(void *ptr, const char *val, bool is_list);
- bool fw3_parse_date(void *ptr, const char *val, bool is_list);
- bool fw3_parse_time(void *ptr, const char *val, bool is_list);
- bool fw3_parse_weekdays(void *ptr, const char *val, bool is_list);
- bool fw3_parse_monthdays(void *ptr, const char *val, bool is_list);
- bool fw3_parse_mark(void *ptr, const char *val, bool is_list);
- bool fw3_parse_dscp(void *ptr, const char *val, bool is_list);
- bool fw3_parse_setmatch(void *ptr, const char *val, bool is_list);
- bool fw3_parse_direction(void *ptr, const char *val, bool is_list);
- bool fw3_parse_cthelper(void *ptr, const char *val, bool is_list);
- bool fw3_parse_setentry(void *ptr, const char *val, bool is_list);
- bool fw3_parse_options(void *s, const struct fw3_option *opts,
- struct uci_section *section);
- bool fw3_parse_blob_options(void *s, const struct fw3_option *opts,
- struct blob_attr *a, const char *name);
- const char * fw3_address_to_string(struct fw3_address *address,
- bool allow_invert, bool as_cidr);
- #endif
|