iptables: update imq userspace part
SVN-Revision: 15653
This commit is contained in:
parent
a2be06692f
commit
addb4fe33f
3 changed files with 127 additions and 201 deletions
124
package/iptables/patches/1.4.3.2/005-imq.patch
Normal file
124
package/iptables/patches/1.4.3.2/005-imq.patch
Normal file
|
@ -0,0 +1,124 @@
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/extensions/.IMQ-testx
|
||||||
|
@@ -0,0 +1,3 @@
|
||||||
|
+#!/bin/sh
|
||||||
|
+# True if IMQ target patch is applied.
|
||||||
|
+[ -f $KERNEL_DIR/include/linux/netfilter/xt_IMQ.h ] && echo IMQ
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/extensions/libxt_IMQ.c
|
||||||
|
@@ -0,0 +1,103 @@
|
||||||
|
+/* Shared library add-on to iptables to add IMQ target support. */
|
||||||
|
+#include <stdio.h>
|
||||||
|
+#include <string.h>
|
||||||
|
+#include <stdlib.h>
|
||||||
|
+#include <getopt.h>
|
||||||
|
+
|
||||||
|
+#include <xtables.h>
|
||||||
|
+#include <linux/netfilter/x_tables.h>
|
||||||
|
+#include <linux/netfilter/xt_IMQ.h>
|
||||||
|
+
|
||||||
|
+/* Function which prints out usage message. */
|
||||||
|
+static void IMQ_help(void)
|
||||||
|
+{
|
||||||
|
+ printf(
|
||||||
|
+"IMQ target v%s options:\n"
|
||||||
|
+" --todev <N> enqueue to imq<N>, defaults to 0\n",
|
||||||
|
+XTABLES_VERSION);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+static struct option IMQ_opts[] = {
|
||||||
|
+ { "todev", 1, 0, '1' },
|
||||||
|
+ { 0 }
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+/* Initialize the target. */
|
||||||
|
+static void IMQ_init(struct xt_entry_target *t)
|
||||||
|
+{
|
||||||
|
+ struct xt_imq_info *mr = (struct xt_imq_info*)t->data;
|
||||||
|
+
|
||||||
|
+ mr->todev = 0;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+/* Function which parses command options; returns true if it
|
||||||
|
+ ate an option */
|
||||||
|
+static int IMQ_parse(int c, char **argv, int invert, unsigned int *flags,
|
||||||
|
+ const void *entry, struct xt_entry_target **target)
|
||||||
|
+{
|
||||||
|
+ struct xt_imq_info *mr = (struct xt_imq_info*)(*target)->data;
|
||||||
|
+
|
||||||
|
+ switch(c) {
|
||||||
|
+ case '1':
|
||||||
|
+ if (xtables_check_inverse(optarg, &invert, NULL, 0))
|
||||||
|
+ xtables_error(PARAMETER_PROBLEM,
|
||||||
|
+ "Unexpected `!' after --todev");
|
||||||
|
+ mr->todev=atoi(optarg);
|
||||||
|
+ break;
|
||||||
|
+ default:
|
||||||
|
+ return 0;
|
||||||
|
+ }
|
||||||
|
+ return 1;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+/* Prints out the targinfo. */
|
||||||
|
+static void IMQ_print(const void *ip,
|
||||||
|
+ const struct xt_entry_target *target,
|
||||||
|
+ int numeric)
|
||||||
|
+{
|
||||||
|
+ struct xt_imq_info *mr = (struct xt_imq_info*)target->data;
|
||||||
|
+
|
||||||
|
+ printf("IMQ: todev %u ", mr->todev);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+/* Saves the union ipt_targinfo in parsable form to stdout. */
|
||||||
|
+static void IMQ_save(const void *ip, const struct xt_entry_target *target)
|
||||||
|
+{
|
||||||
|
+ struct xt_imq_info *mr = (struct xt_imq_info*)target->data;
|
||||||
|
+
|
||||||
|
+ printf("--todev %u", mr->todev);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+static struct xtables_target imq_target = {
|
||||||
|
+ .name = "IMQ",
|
||||||
|
+ .version = XTABLES_VERSION,
|
||||||
|
+ .family = AF_INET,
|
||||||
|
+ .size = XT_ALIGN(sizeof(struct xt_imq_info)),
|
||||||
|
+ .userspacesize = XT_ALIGN(sizeof(struct xt_imq_info)),
|
||||||
|
+ .help = IMQ_help,
|
||||||
|
+ .init = IMQ_init,
|
||||||
|
+ .parse = IMQ_parse,
|
||||||
|
+ .print = IMQ_print,
|
||||||
|
+ .save = IMQ_save,
|
||||||
|
+ .extra_opts = IMQ_opts,
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+static struct xtables_target imq_target6 = {
|
||||||
|
+ .name = "IMQ",
|
||||||
|
+ .version = XTABLES_VERSION,
|
||||||
|
+ .family = AF_INET6,
|
||||||
|
+ .size = XT_ALIGN(sizeof(struct xt_imq_info)),
|
||||||
|
+ .userspacesize = XT_ALIGN(sizeof(struct xt_imq_info)),
|
||||||
|
+ .help = IMQ_help,
|
||||||
|
+ .init = IMQ_init,
|
||||||
|
+ .parse = IMQ_parse,
|
||||||
|
+ .print = IMQ_print,
|
||||||
|
+ .save = IMQ_save,
|
||||||
|
+ .extra_opts = IMQ_opts,
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+void _init(void)
|
||||||
|
+{
|
||||||
|
+ xtables_register_target(&imq_target);
|
||||||
|
+ xtables_register_target(&imq_target6);
|
||||||
|
+}
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/include/linux/netfilter/xt_IMQ.h
|
||||||
|
@@ -0,0 +1,9 @@
|
||||||
|
+#ifndef _XT_IMQ_H
|
||||||
|
+#define _XT_IMQ_H
|
||||||
|
+
|
||||||
|
+struct xt_imq_info {
|
||||||
|
+ unsigned int todev; /* target imq device */
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+#endif /* _XT_IMQ_H */
|
||||||
|
+
|
|
@ -1,197 +0,0 @@
|
||||||
--- /dev/null
|
|
||||||
+++ b/extensions/.IMQ-test
|
|
||||||
@@ -0,0 +1,3 @@
|
|
||||||
+#!/bin/sh
|
|
||||||
+# True if IMQ target patch is applied.
|
|
||||||
+[ -f $KERNEL_DIR/include/linux/netfilter_ipv4/ipt_IMQ.h ] && echo IMQ
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/extensions/.IMQ-test6
|
|
||||||
@@ -0,0 +1,3 @@
|
|
||||||
+#!/bin/sh
|
|
||||||
+# True if IMQ target patch is applied.
|
|
||||||
+[ -f $KERNEL_DIR/include/linux/netfilter_ipv6/ip6t_IMQ.h ] && echo IMQ
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/extensions/libip6t_IMQ.c
|
|
||||||
@@ -0,0 +1,90 @@
|
|
||||||
+/* Shared library add-on to iptables to add IMQ target support. */
|
|
||||||
+#include <stdio.h>
|
|
||||||
+#include <string.h>
|
|
||||||
+#include <stdlib.h>
|
|
||||||
+#include <getopt.h>
|
|
||||||
+
|
|
||||||
+#include <xtables.h>
|
|
||||||
+#include <ip6tables.h>
|
|
||||||
+#include <linux/netfilter_ipv6/ip6_tables.h>
|
|
||||||
+#include <linux/netfilter_ipv6/ip6t_IMQ.h>
|
|
||||||
+
|
|
||||||
+/* Function which prints out usage message. */
|
|
||||||
+static void IMQ_help(void)
|
|
||||||
+{
|
|
||||||
+ printf(
|
|
||||||
+"IMQ target v%s options:\n"
|
|
||||||
+" --todev <N> enqueue to imq<N>, defaults to 0\n",
|
|
||||||
+XTABLES_VERSION);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static struct option IMQ_opts[] = {
|
|
||||||
+ { "todev", 1, 0, '1' },
|
|
||||||
+ { 0 }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+/* Initialize the target. */
|
|
||||||
+static void IMQ_init(struct xt_entry_target *t)
|
|
||||||
+{
|
|
||||||
+ struct ip6t_imq_info *mr = (struct ip6t_imq_info*)t->data;
|
|
||||||
+
|
|
||||||
+ mr->todev = 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/* Function which parses command options; returns true if it
|
|
||||||
+ ate an option */
|
|
||||||
+static int IMQ_parse(int c, char **argv, int invert, unsigned int *flags,
|
|
||||||
+ const void *entry,
|
|
||||||
+ struct xt_entry_target **target)
|
|
||||||
+{
|
|
||||||
+ struct ip6t_imq_info *mr = (struct ip6t_imq_info*)(*target)->data;
|
|
||||||
+
|
|
||||||
+ switch(c) {
|
|
||||||
+ case '1':
|
|
||||||
+ if (xtables_check_inverse(optarg, &invert, NULL, 0))
|
|
||||||
+ xtables_error(PARAMETER_PROBLEM,
|
|
||||||
+ "Unexpected `!' after --todev");
|
|
||||||
+ mr->todev=atoi(optarg);
|
|
||||||
+ break;
|
|
||||||
+ default:
|
|
||||||
+ return 0;
|
|
||||||
+ }
|
|
||||||
+ return 1;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/* Prints out the targinfo. */
|
|
||||||
+static void IMQ_print(const void *ip,
|
|
||||||
+ const struct xt_entry_target *target,
|
|
||||||
+ int numeric)
|
|
||||||
+{
|
|
||||||
+ struct ip6t_imq_info *mr = (struct ip6t_imq_info*)target->data;
|
|
||||||
+
|
|
||||||
+ printf("IMQ: todev %u ", mr->todev);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/* Saves the union ipt_targinfo in parsable form to stdout. */
|
|
||||||
+static void IMQ_save(const void *ip, const struct xt_entry_target *target)
|
|
||||||
+{
|
|
||||||
+ struct ip6t_imq_info *mr = (struct ip6t_imq_info*)target->data;
|
|
||||||
+
|
|
||||||
+ printf("--todev %u", mr->todev);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static struct xtables_target imq = {
|
|
||||||
+ .name = "IMQ",
|
|
||||||
+ .version = XTABLES_VERSION,
|
|
||||||
+ .family = PF_INET6,
|
|
||||||
+ .size = XT_ALIGN(sizeof(struct ip6t_imq_info)),
|
|
||||||
+ .userspacesize = XT_ALIGN(sizeof(struct ip6t_imq_info)),
|
|
||||||
+ .help = IMQ_help,
|
|
||||||
+ .init = IMQ_init,
|
|
||||||
+ .parse = IMQ_parse,
|
|
||||||
+ .print = IMQ_print,
|
|
||||||
+ .save = IMQ_save,
|
|
||||||
+ .extra_opts = IMQ_opts,
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+void _init(void)
|
|
||||||
+{
|
|
||||||
+ xtables_register_target(&imq);
|
|
||||||
+}
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/extensions/libipt_IMQ.c
|
|
||||||
@@ -0,0 +1,89 @@
|
|
||||||
+/* Shared library add-on to iptables to add IMQ target support. */
|
|
||||||
+#include <stdio.h>
|
|
||||||
+#include <string.h>
|
|
||||||
+#include <stdlib.h>
|
|
||||||
+#include <getopt.h>
|
|
||||||
+
|
|
||||||
+#include <xtables.h>
|
|
||||||
+#include <iptables.h>
|
|
||||||
+#include <linux/netfilter_ipv4/ip_tables.h>
|
|
||||||
+#include <linux/netfilter_ipv4/ipt_IMQ.h>
|
|
||||||
+
|
|
||||||
+/* Function which prints out usage message. */
|
|
||||||
+static void IMQ_help(void)
|
|
||||||
+{
|
|
||||||
+ printf(
|
|
||||||
+"IMQ target v%s options:\n"
|
|
||||||
+" --todev <N> enqueue to imq<N>, defaults to 0\n",
|
|
||||||
+XTABLES_VERSION);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static struct option IMQ_opts[] = {
|
|
||||||
+ { "todev", 1, 0, '1' },
|
|
||||||
+ { 0 }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+/* Initialize the target. */
|
|
||||||
+static void IMQ_init(struct xt_entry_target *t)
|
|
||||||
+{
|
|
||||||
+ struct ipt_imq_info *mr = (struct ipt_imq_info*)t->data;
|
|
||||||
+
|
|
||||||
+ mr->todev = 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/* Function which parses command options; returns true if it
|
|
||||||
+ ate an option */
|
|
||||||
+static int IMQ_parse(int c, char **argv, int invert, unsigned int *flags,
|
|
||||||
+ const void *entry, struct xt_entry_target **target)
|
|
||||||
+{
|
|
||||||
+ struct ipt_imq_info *mr = (struct ipt_imq_info*)(*target)->data;
|
|
||||||
+
|
|
||||||
+ switch(c) {
|
|
||||||
+ case '1':
|
|
||||||
+ if (xtables_check_inverse(optarg, &invert, NULL, 0))
|
|
||||||
+ xtables_error(PARAMETER_PROBLEM,
|
|
||||||
+ "Unexpected `!' after --todev");
|
|
||||||
+ mr->todev=atoi(optarg);
|
|
||||||
+ break;
|
|
||||||
+ default:
|
|
||||||
+ return 0;
|
|
||||||
+ }
|
|
||||||
+ return 1;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/* Prints out the targinfo. */
|
|
||||||
+static void IMQ_print(const void *ip,
|
|
||||||
+ const struct xt_entry_target *target,
|
|
||||||
+ int numeric)
|
|
||||||
+{
|
|
||||||
+ struct ipt_imq_info *mr = (struct ipt_imq_info*)target->data;
|
|
||||||
+
|
|
||||||
+ printf("IMQ: todev %u ", mr->todev);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/* Saves the union ipt_targinfo in parsable form to stdout. */
|
|
||||||
+static void IMQ_save(const void *ip, const struct xt_entry_target *target)
|
|
||||||
+{
|
|
||||||
+ struct ipt_imq_info *mr = (struct ipt_imq_info*)target->data;
|
|
||||||
+
|
|
||||||
+ printf("--todev %u", mr->todev);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static struct xtables_target imq = {
|
|
||||||
+ .name = "IMQ",
|
|
||||||
+ .version = XTABLES_VERSION,
|
|
||||||
+ .family = PF_INET,
|
|
||||||
+ .size = XT_ALIGN(sizeof(struct ipt_imq_info)),
|
|
||||||
+ .userspacesize = XT_ALIGN(sizeof(struct ipt_imq_info)),
|
|
||||||
+ .help = IMQ_help,
|
|
||||||
+ .init = IMQ_init,
|
|
||||||
+ .parse = IMQ_parse,
|
|
||||||
+ .print = IMQ_print,
|
|
||||||
+ .save = IMQ_save,
|
|
||||||
+ .extra_opts = IMQ_opts,
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+void _init(void)
|
|
||||||
+{
|
|
||||||
+ xtables_register_target(&imq);
|
|
||||||
+}
|
|
|
@ -1,7 +1,6 @@
|
||||||
diff -Naur iptables-1.4.1.1.ori/libiptc/libiptc.c iptables-1.4.1.1/libiptc/libiptc.c
|
--- a/libiptc/libiptc.c
|
||||||
--- iptables-1.4.1.1.ori/libiptc/libiptc.c 2008-06-16 15:12:40.000000000 +0200
|
+++ b/libiptc/libiptc.c
|
||||||
+++ iptables-1.4.1.1/libiptc/libiptc.c 2009-01-08 12:27:24.000000000 +0100
|
@@ -69,7 +69,7 @@
|
||||||
@@ -66,7 +66,7 @@
|
|
||||||
struct ipt_error_target
|
struct ipt_error_target
|
||||||
{
|
{
|
||||||
STRUCT_ENTRY_TARGET t;
|
STRUCT_ENTRY_TARGET t;
|
||||||
|
|
Loading…
Reference in a new issue