From 8221ec00f8817d23b712ad7b88ec1b72da29c2a1 Mon Sep 17 00:00:00 2001 From: Bart De Schuymer Date: Mon, 15 Nov 2010 19:31:08 +0000 Subject: add xtables CLASSIFY target (Frederic Leroy) --- userspace/arptables/arptables.8 | 9 ++ userspace/arptables/extensions/Makefile | 2 +- userspace/arptables/extensions/arpt_CLASSIFY.c | 121 +++++++++++++++++++++++++ 3 files changed, 131 insertions(+), 1 deletion(-) create mode 100644 userspace/arptables/extensions/arpt_CLASSIFY.c (limited to 'userspace') diff --git a/userspace/arptables/arptables.8 b/userspace/arptables/arptables.8 index 1d9893b..d3059d9 100644 --- a/userspace/arptables/arptables.8 +++ b/userspace/arptables/arptables.8 @@ -297,6 +297,15 @@ Mangles Destination MAC Address to given value. .BR "--mangle-target target " Target of ARP mangle operation .BR "" ( DROP ", " CONTINUE " or " ACCEPT " -- default is " ACCEPT ). +.SS CLASSIFY +This module allows you to set the skb->priority value (and thus clas- +sify the packet into a specific CBQ class). + +.TP +.BR "--set-class major:minor" + +Set the major and minor class value. The values are always +interpreted as hexadecimal even if no 0x prefix is given. .SH MAILINGLISTS .BR "" "See " http://netfilter.org/mailinglists.html diff --git a/userspace/arptables/extensions/Makefile b/userspace/arptables/extensions/Makefile index b9c0b54..09b244e 100644 --- a/userspace/arptables/extensions/Makefile +++ b/userspace/arptables/extensions/Makefile @@ -1,6 +1,6 @@ #! /usr/bin/make -EXT_FUNC+=standard mangle +EXT_FUNC+=standard mangle CLASSIFY EXT_OBJS+=$(foreach T,$(EXT_FUNC), extensions/arpt_$(T).o) extensions/ebt_%.o: extensions/arpt_%.c include/arptables.h include/arptables_common.h diff --git a/userspace/arptables/extensions/arpt_CLASSIFY.c b/userspace/arptables/extensions/arpt_CLASSIFY.c new file mode 100644 index 0000000..cb5770b --- /dev/null +++ b/userspace/arptables/extensions/arpt_CLASSIFY.c @@ -0,0 +1,121 @@ +/* + * (C) 2010 by Frederic Leroy + * + * arpt_classify.c -- arptables extension to classify arp packet + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include +#include +#include +#include + +#define TC_H_MAJ_MASK (0xFFFF0000U) +#define TC_H_MIN_MASK (0x0000FFFFU) +#define TC_H_MAJ(h) ((h)&TC_H_MAJ_MASK) +#define TC_H_MIN(h) ((h)&TC_H_MIN_MASK) +#define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK)) + +static void +help(void) +{ + printf( +"CLASSIFY target v%s options:\n" +"--set-class major:minor : set the major and minor class value\n", + ARPTABLES_VERSION); +} + +#define CLASSIFY_OPT 1 + +static struct option opts[] = { + { "set-class" , required_argument, 0, CLASSIFY_OPT }, + {0} +}; + +static void +init(struct arpt_entry_target *t) +{ + struct xt_classify_target_info *classify = (struct xt_classify_target_info *) t->data; + classify->priority = 0; +} + +static int +parse(int c, char **argv, int invert, unsigned int *flags, + const struct arpt_entry *e, + struct arpt_entry_target **t) +{ + struct xt_classify_target_info *classify = (struct xt_classify_target_info *)(*t)->data; + int i,j; + + switch (c) { + case CLASSIFY_OPT: + if (sscanf(argv[optind-1], "%x:%x", &i, &j) != 2) { + exit_error(PARAMETER_PROBLEM, + "Bad class value `%s'", optarg); + return 0; + } + classify->priority = TC_H_MAKE(i<<16, j); + if (*flags) + exit_error(PARAMETER_PROBLEM, + "CLASSIFY: Can't specify --set-class twice"); + *flags = 1; + break; + default: + return 0; + } + return 1; +} + +static void final_check(unsigned int flags) +{ + if (!flags) + exit_error(PARAMETER_PROBLEM, "CLASSIFY: Parameter --set-class is required"); +} + +static void print(const struct arpt_arp *ip, + const struct arpt_entry_target *target, int numeric) +{ + struct xt_classify_target_info *t = (struct xt_classify_target_info *)(target->data); + + printf("--set-class %x:%x ", TC_H_MAJ(t->priority)>>16, TC_H_MIN(t->priority)); +} + +static void +save(const struct arpt_arp *ip, const struct arpt_entry_target *target) +{ +} + +static +struct arptables_target classify += { NULL, + "CLASSIFY", + ARPTABLES_VERSION, + ARPT_ALIGN(sizeof(struct xt_classify_target_info)), + ARPT_ALIGN(sizeof(struct xt_classify_target_info)), + &help, + &init, + &parse, + &final_check, + &print, + &save, + opts +}; + +static void _init(void) __attribute__ ((constructor)); +static void _init(void) +{ + register_target(&classify); +} -- cgit v1.2.3