From: Pablo Neira Ayuso <pablo@netfilter.org>
To: netfilter-devel@vger.kernel.org
Cc: kaber@trash.net
Subject: [PATCH] iptables: PKTTYPE target support
Date: Wed, 28 Jan 2009 16:05:00 +0100 [thread overview]
Message-ID: <20090128150459.7933.35154.stgit@Decadence> (raw)
This patch adds support for the PKTTYPE target to iptables.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
extensions/libxt_PKTTYPE.c | 113 ++++++++++++++++++++++++++++++++++
include/linux/netfilter/xt_PKTTYPE.h | 8 ++
2 files changed, 121 insertions(+), 0 deletions(-)
create mode 100644 extensions/libxt_PKTTYPE.c
create mode 100644 include/linux/netfilter/xt_PKTTYPE.h
diff --git a/extensions/libxt_PKTTYPE.c b/extensions/libxt_PKTTYPE.c
new file mode 100644
index 0000000..878897d
--- /dev/null
+++ b/extensions/libxt_PKTTYPE.c
@@ -0,0 +1,113 @@
+/*
+ * (C) 2008 by Pablo Neira Ayuso <pablo@netfilter.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+#include <stdio.h>
+#include <netdb.h>
+#include <string.h>
+#include <stdlib.h>
+#include <getopt.h>
+#if defined(__GLIBC__) && __GLIBC__ == 2
+#include <net/ethernet.h>
+#else
+#include <linux/if_ether.h>
+#endif
+#include <xtables.h>
+#include <linux/if_packet.h>
+#include <linux/netfilter/xt_PKTTYPE.h>
+
+static void
+pkttype_help(void)
+{
+ printf(
+"PKTTYPE target options:\n"
+" --to-pkt-type packettype new packet type\n"
+"Valid packet types:\n"
+" unicast to us\n");
+}
+
+enum {
+ PKTTYPE_OPT_PKTTYPE,
+};
+
+static const struct option pkttype_opts[] = {
+ { "to-pkt-type", 1, NULL, PKTTYPE_OPT_PKTTYPE },
+ { .name = NULL }
+};
+
+static int
+pkttype_parse(int c, char **argv, int invert, unsigned int *flags,
+ const void *entry, struct xt_entry_target **target)
+{
+ struct xt_pkttype_target_info *info = (void *)(*target)->data;
+
+ switch (c) {
+ case PKTTYPE_OPT_PKTTYPE:
+ if (*flags & (1 << c))
+ exit_error(PARAMETER_PROBLEM,
+ "Can only specify `--to-pkttype' once");
+
+ if (strncmp(optarg, "unicast", strlen("unicast")) != 0)
+ exit_error(PARAMETER_PROBLEM,
+ "Unknown packet type `%s'", optarg);
+
+ info->pkt_type = PACKET_HOST;
+ *flags |= 1 << c;
+ break;
+ default:
+ return 0;
+ }
+
+ return 1;
+}
+
+static void
+pkttype_check(unsigned int flags)
+{
+ if ((flags & ((1 << PKTTYPE_OPT_PKTTYPE)))
+ == ((1 << PKTTYPE_OPT_PKTTYPE))) {
+ return;
+ }
+
+ exit_error(PARAMETER_PROBLEM,
+ "PKTTYPE target: Invalid parameter combination");
+}
+
+static void
+pkttype_print(const void *ip, const struct xt_entry_target *target, int numeric)
+{
+ const struct xt_pkttype_target_info *info = (void *)target->data;
+
+ printf("PKTTYPE to-pkt-type=%s",
+ info->pkt_type == PACKET_HOST ? "unicast" : "unknown");
+}
+
+static void
+pkttype_save(const void *ip, const struct xt_entry_target *target)
+{
+ const struct xt_pkttype_target_info *info = (void *)target->data;
+
+ printf("--to-pkt-type %s",
+ info->pkt_type == PACKET_HOST ? "unicast" : "unknown");
+}
+
+static struct xtables_target pkttype_tg_reg = {
+ .family = AF_UNSPEC,
+ .name = "PKTTYPE",
+ .version = XTABLES_VERSION,
+ .size = XT_ALIGN(sizeof(struct xt_pkttype_target_info)),
+ .help = pkttype_help,
+ .parse = pkttype_parse,
+ .final_check = pkttype_check,
+ .print = pkttype_print,
+ .save = pkttype_save,
+ .extra_opts = pkttype_opts,
+};
+
+void _init(void)
+{
+ xtables_register_target(&pkttype_tg_reg);
+}
diff --git a/include/linux/netfilter/xt_PKTTYPE.h b/include/linux/netfilter/xt_PKTTYPE.h
new file mode 100644
index 0000000..cc67cbf
--- /dev/null
+++ b/include/linux/netfilter/xt_PKTTYPE.h
@@ -0,0 +1,8 @@
+#ifndef _XT_PKTTYPE_TARGET_H
+#define _XT_PKTTYPE_TARGET_H
+
+struct xt_pkttype_target_info {
+ u_int8_t pkt_type;
+};
+
+#endif /* _XT_PKTTYPE_TARGET_H */
reply other threads:[~2009-01-28 15:05 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090128150459.7933.35154.stgit@Decadence \
--to=pablo@netfilter.org \
--cc=kaber@trash.net \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.