aboutsummaryrefslogtreecommitdiff
path: root/extensions/libxt_HARDIDLETIMER.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/libxt_HARDIDLETIMER.c')
-rw-r--r--extensions/libxt_HARDIDLETIMER.c98
1 files changed, 98 insertions, 0 deletions
diff --git a/extensions/libxt_HARDIDLETIMER.c b/extensions/libxt_HARDIDLETIMER.c
new file mode 100644
index 00000000..a375e0e9
--- /dev/null
+++ b/extensions/libxt_HARDIDLETIMER.c
@@ -0,0 +1,98 @@
+/*
+ * Shared library add-on for iptables to add HARDIDLETIMER support.
+ *
+ * Copyright (c) 2014, The Linux Foundation. All rights reserved.
+ *
+ * Copyright (C) 2010 Nokia Corporation. All rights reserved.
+ *
+ * Contact: Luciano Coelho <luciano.coelho@nokia.com>
+ *
+ * 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.
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+#include <stdio.h>
+#include <xtables.h>
+#include <linux/netfilter/xt_HARDIDLETIMER.h>
+
+enum {
+ O_TIMEOUT = 0,
+ O_LABEL,
+ O_NETLINK,
+};
+
+#define s struct hardidletimer_tg_info
+static const struct xt_option_entry hardidletimer_tg_opts[] = {
+ {.name = "timeout", .id = O_TIMEOUT, .type = XTTYPE_UINT32,
+ .flags = XTOPT_MAND | XTOPT_PUT, XTOPT_POINTER(s, timeout)},
+ {.name = "label", .id = O_LABEL, .type = XTTYPE_STRING,
+ .flags = XTOPT_MAND | XTOPT_PUT, XTOPT_POINTER(s, label)},
+ {.name = "send_nl_msg", .id = O_NETLINK, .type = XTTYPE_UINT8,
+ .flags = XTOPT_PUT, XTOPT_POINTER(s, send_nl_msg)},
+ XTOPT_TABLEEND,
+};
+#undef s
+
+static void hardidletimer_tg_help(void)
+{
+ printf(
+ "HARDIDLETIMER target options:\n"
+ " --timeout time Timeout until the notification is sent (in seconds)\n"
+ " --label string Unique rule identifier\n"
+ " --send_nl_msg (0/1) Enable netlink messages,"
+ "and show remaining time in sysfs. Defaults to 0.\n"
+ "\n");
+}
+
+static void hardidletimer_tg_print(const void *ip,
+ const struct xt_entry_target *target,
+ int numeric)
+{
+ struct hardidletimer_tg_info *info =
+ (struct hardidletimer_tg_info *) target->data;
+
+ printf(" timeout:%u", info->timeout);
+ printf(" label:%s", info->label);
+ printf(" send_nl_msg:%u", info->send_nl_msg);
+}
+
+static void hardidletimer_tg_save(const void *ip,
+ const struct xt_entry_target *target)
+{
+ struct hardidletimer_tg_info *info =
+ (struct hardidletimer_tg_info *) target->data;
+
+ printf(" --timeout %u", info->timeout);
+ printf(" --label %s", info->label);
+ printf(" --send_nl_msg %u", info->send_nl_msg);
+}
+
+static struct xtables_target hardidletimer_tg_reg = {
+ .family = NFPROTO_UNSPEC,
+ .name = "HARDIDLETIMER",
+ .version = XTABLES_VERSION,
+ .revision = 1,
+ .size = XT_ALIGN(sizeof(struct hardidletimer_tg_info)),
+ .userspacesize = offsetof(struct hardidletimer_tg_info, timer),
+ .help = hardidletimer_tg_help,
+ .x6_parse = xtables_option_parse,
+ .print = hardidletimer_tg_print,
+ .save = hardidletimer_tg_save,
+ .x6_options = hardidletimer_tg_opts,
+};
+
+void _init(void)
+{
+ xtables_register_target(&hardidletimer_tg_reg);
+}