123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- /* Shared library add-on to iptables for DCCP matching
- *
- * (C) 2005 by Harald Welte <laforge@netfilter.org>
- *
- * This program is distributed under the terms of GNU GPL v2, 1991
- *
- */
- #include <stdint.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <netdb.h>
- #include <arpa/inet.h>
- #include <xtables.h>
- #include <linux/dccp.h>
- #include <linux/netfilter/x_tables.h>
- #include <linux/netfilter/xt_dccp.h>
- #if 0
- #define DEBUGP(format, first...) printf(format, ##first)
- #define static
- #else
- #define DEBUGP(format, fist...)
- #endif
- enum {
- O_SOURCE_PORT = 0,
- O_DEST_PORT,
- O_DCCP_TYPES,
- O_DCCP_OPTION,
- };
- static void dccp_help(void)
- {
- printf(
- "dccp match options\n"
- "[!] --source-port port[:port] match source port(s)\n"
- " --sport ...\n"
- "[!] --destination-port port[:port] match destination port(s)\n"
- " --dport ...\n"
- "[!] --dccp-types type[,...] match when packet is one of the given types\n"
- "[!] --dccp-option option match if option (by number!) is set\n"
- );
- }
- #define s struct xt_dccp_info
- static const struct xt_option_entry dccp_opts[] = {
- {.name = "source-port", .id = O_SOURCE_PORT, .type = XTTYPE_PORTRC,
- .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, spts)},
- {.name = "sport", .id = O_SOURCE_PORT, .type = XTTYPE_PORTRC,
- .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, spts)},
- {.name = "destination-port", .id = O_DEST_PORT, .type = XTTYPE_PORTRC,
- .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, dpts)},
- {.name = "dport", .id = O_DEST_PORT, .type = XTTYPE_PORTRC,
- .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, dpts)},
- {.name = "dccp-types", .id = O_DCCP_TYPES, .type = XTTYPE_STRING,
- .flags = XTOPT_INVERT},
- {.name = "dccp-option", .id = O_DCCP_OPTION, .type = XTTYPE_UINT8,
- .min = 1, .max = UINT8_MAX, .flags = XTOPT_INVERT | XTOPT_PUT,
- XTOPT_POINTER(s, option)},
- XTOPT_TABLEEND,
- };
- #undef s
- static const char *const dccp_pkt_types[] = {
- [DCCP_PKT_REQUEST] = "REQUEST",
- [DCCP_PKT_RESPONSE] = "RESPONSE",
- [DCCP_PKT_DATA] = "DATA",
- [DCCP_PKT_ACK] = "ACK",
- [DCCP_PKT_DATAACK] = "DATAACK",
- [DCCP_PKT_CLOSEREQ] = "CLOSEREQ",
- [DCCP_PKT_CLOSE] = "CLOSE",
- [DCCP_PKT_RESET] = "RESET",
- [DCCP_PKT_SYNC] = "SYNC",
- [DCCP_PKT_SYNCACK] = "SYNCACK",
- [DCCP_PKT_INVALID] = "INVALID",
- };
- static uint16_t
- parse_dccp_types(const char *typestring)
- {
- uint16_t typemask = 0;
- char *ptr, *buffer;
- buffer = strdup(typestring);
- for (ptr = strtok(buffer, ","); ptr; ptr = strtok(NULL, ",")) {
- unsigned int i;
- for (i = 0; i < ARRAY_SIZE(dccp_pkt_types); ++i)
- if (!strcasecmp(dccp_pkt_types[i], ptr)) {
- typemask |= (1 << i);
- break;
- }
- if (i == ARRAY_SIZE(dccp_pkt_types))
- xtables_error(PARAMETER_PROBLEM,
- "Unknown DCCP type `%s'", ptr);
- }
- free(buffer);
- return typemask;
- }
- static void dccp_parse(struct xt_option_call *cb)
- {
- struct xt_dccp_info *einfo = cb->data;
- xtables_option_parse(cb);
- switch (cb->entry->id) {
- case O_SOURCE_PORT:
- einfo->flags |= XT_DCCP_SRC_PORTS;
- if (cb->invert)
- einfo->invflags |= XT_DCCP_SRC_PORTS;
- break;
- case O_DEST_PORT:
- einfo->flags |= XT_DCCP_DEST_PORTS;
- if (cb->invert)
- einfo->invflags |= XT_DCCP_DEST_PORTS;
- break;
- case O_DCCP_TYPES:
- einfo->flags |= XT_DCCP_TYPE;
- einfo->typemask = parse_dccp_types(cb->arg);
- if (cb->invert)
- einfo->invflags |= XT_DCCP_TYPE;
- break;
- case O_DCCP_OPTION:
- einfo->flags |= XT_DCCP_OPTION;
- if (cb->invert)
- einfo->invflags |= XT_DCCP_OPTION;
- break;
- }
- }
- static const char *
- port_to_service(int port)
- {
- const struct servent *service;
- if ((service = getservbyport(htons(port), "dccp")))
- return service->s_name;
- return NULL;
- }
- static void
- print_port(uint16_t port, int numeric)
- {
- const char *service;
- if (numeric || (service = port_to_service(port)) == NULL)
- printf("%u", port);
- else
- printf("%s", service);
- }
- static void
- print_ports(const char *name, uint16_t min, uint16_t max,
- int invert, int numeric)
- {
- const char *inv = invert ? "!" : "";
- if (min != 0 || max != 0xFFFF || invert) {
- printf(" %s", name);
- if (min == max) {
- printf(":%s", inv);
- print_port(min, numeric);
- } else {
- printf("s:%s", inv);
- print_port(min, numeric);
- printf(":");
- print_port(max, numeric);
- }
- }
- }
- static void
- print_types(uint16_t types, int inverted, int numeric)
- {
- int have_type = 0;
- if (inverted)
- printf(" !");
- printf(" ");
- while (types) {
- unsigned int i;
- for (i = 0; !(types & (1 << i)); i++);
- if (have_type)
- printf(",");
- else
- have_type = 1;
- if (numeric)
- printf("%u", i);
- else
- printf("%s", dccp_pkt_types[i]);
- types &= ~(1 << i);
- }
- }
- static void
- print_option(uint8_t option, int invert, int numeric)
- {
- if (option || invert)
- printf(" option=%s%u", invert ? "!" : "", option);
- }
- static void
- dccp_print(const void *ip, const struct xt_entry_match *match, int numeric)
- {
- const struct xt_dccp_info *einfo =
- (const struct xt_dccp_info *)match->data;
- printf(" dccp");
- if (einfo->flags & XT_DCCP_SRC_PORTS) {
- print_ports("spt", einfo->spts[0], einfo->spts[1],
- einfo->invflags & XT_DCCP_SRC_PORTS,
- numeric);
- }
- if (einfo->flags & XT_DCCP_DEST_PORTS) {
- print_ports("dpt", einfo->dpts[0], einfo->dpts[1],
- einfo->invflags & XT_DCCP_DEST_PORTS,
- numeric);
- }
- if (einfo->flags & XT_DCCP_TYPE) {
- print_types(einfo->typemask,
- einfo->invflags & XT_DCCP_TYPE,
- numeric);
- }
- if (einfo->flags & XT_DCCP_OPTION) {
- print_option(einfo->option,
- einfo->invflags & XT_DCCP_OPTION, numeric);
- }
- }
- static void dccp_save(const void *ip, const struct xt_entry_match *match)
- {
- const struct xt_dccp_info *einfo =
- (const struct xt_dccp_info *)match->data;
- if (einfo->flags & XT_DCCP_SRC_PORTS) {
- if (einfo->invflags & XT_DCCP_SRC_PORTS)
- printf(" !");
- if (einfo->spts[0] != einfo->spts[1])
- printf(" --sport %u:%u",
- einfo->spts[0], einfo->spts[1]);
- else
- printf(" --sport %u", einfo->spts[0]);
- }
- if (einfo->flags & XT_DCCP_DEST_PORTS) {
- if (einfo->invflags & XT_DCCP_DEST_PORTS)
- printf(" !");
- if (einfo->dpts[0] != einfo->dpts[1])
- printf(" --dport %u:%u",
- einfo->dpts[0], einfo->dpts[1]);
- else
- printf(" --dport %u", einfo->dpts[0]);
- }
- if (einfo->flags & XT_DCCP_TYPE) {
- printf("%s --dccp-types",
- einfo->invflags & XT_DCCP_TYPE ? " !" : "");
- print_types(einfo->typemask, false, 0);
- }
- if (einfo->flags & XT_DCCP_OPTION) {
- printf("%s --dccp-option %u",
- einfo->invflags & XT_DCCP_OPTION ? " !" : "",
- einfo->option);
- }
- }
- static struct xtables_match dccp_match = {
- .name = "dccp",
- .family = NFPROTO_UNSPEC,
- .version = XTABLES_VERSION,
- .size = XT_ALIGN(sizeof(struct xt_dccp_info)),
- .userspacesize = XT_ALIGN(sizeof(struct xt_dccp_info)),
- .help = dccp_help,
- .print = dccp_print,
- .save = dccp_save,
- .x6_parse = dccp_parse,
- .x6_options = dccp_opts,
- };
- void _init(void)
- {
- xtables_register_match(&dccp_match);
- }
|