From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zhang Chunyu Subject: [PATCH V2 2/4] Add MARK target for arptables Date: Tue, 24 Mar 2015 21:57:34 -0400 Message-ID: <1427248656-8851-3-git-send-email-zhangcy@cn.fujitsu.com> References: <1427248656-8851-1-git-send-email-zhangcy@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Zhang Chunyu , Gao feng To: Return-path: Received: from cn.fujitsu.com ([59.151.112.132]:2952 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751840AbbCYCLl (ORCPT ); Tue, 24 Mar 2015 22:11:41 -0400 In-Reply-To: <1427248656-8851-1-git-send-email-zhangcy@cn.fujitsu.com> Sender: netfilter-devel-owner@vger.kernel.org List-ID: We can use MARK target to set make value for arp packet. Signed-off-by: Gao feng Signed-off-by: Zhang Chunyu --- extensions/Makefile | 2 +- extensions/arpt_MARK.c | 119 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 120 insertions(+), 1 deletion(-) create mode 100644 extensions/arpt_MARK.c diff --git a/extensions/Makefile b/extensions/Makefile index 09b244e..0189cc9 100644 --- a/extensions/Makefile +++ b/extensions/Makefile @@ -1,6 +1,6 @@ #! /usr/bin/make -EXT_FUNC+=standard mangle CLASSIFY +EXT_FUNC+=standard mangle CLASSIFY MARK 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/extensions/arpt_MARK.c b/extensions/arpt_MARK.c new file mode 100644 index 0000000..d9aec8b --- /dev/null +++ b/extensions/arpt_MARK.c @@ -0,0 +1,119 @@ +/* + * (C) 2014 by Gao Feng + * + * arpt_MARK.c -- arptables extension to set mark for 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 +#include +#include + +static void +help(void) +{ + printf( +"MARK target v%s options:\n" +"--set-mark mark : set the mark value\n", + ARPTABLES_VERSION); +} + +#define MARK_OPT 1 + +static struct option opts[] = { + { "set-mark" , required_argument, 0, MARK_OPT }, + {0} +}; + +static void +init(struct arpt_entry_target *t) +{ + struct xt_mark_tginfo2 *info = (struct xt_mark_tginfo2 *) t->data; + + info->mark = 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_mark_tginfo2 *info = (struct xt_mark_tginfo2 *)(*t)->data; + int i; + + switch (c) { + case MARK_OPT: + if (sscanf(argv[optind-1], "%x", &i) != 1) { + exit_error(PARAMETER_PROBLEM, + "Bad mark value `%s'", optarg); + return 0; + } + info->mark = i; + if (*flags) + exit_error(PARAMETER_PROBLEM, + "CLASSIFY: Can't specify --set-mark twice"); + *flags = 1; + break; + default: + return 0; + } + return 1; +} + +static void final_check(unsigned int flags) +{ + if (!flags) + exit_error(PARAMETER_PROBLEM, "MARK: Parameter --set-mark is required"); +} + +static void print(const struct arpt_arp *ip, + const struct arpt_entry_target *target, int numeric) +{ + struct xt_mark_tginfo2 *info = (struct xt_mark_tginfo2 *)(target->data); + + printf("--set-mark %x ", info->mark); +} + +static void +save(const struct arpt_arp *ip, const struct arpt_entry_target *target) +{ +} + +static +struct arptables_target mark += { NULL, + "MARK", + ARPTABLES_VERSION, + ARPT_ALIGN(sizeof(struct xt_mark_tginfo2)), + ARPT_ALIGN(sizeof(struct xt_mark_tginfo2)), + 2, + &help, + &init, + &parse, + &final_check, + &print, + &save, + opts +}; + +static void _init(void) __attribute__ ((constructor)); +static void _init(void) +{ + register_target(&mark); +} -- 1.7.12.4