summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_IDLETIMER.c
blob: 216b62579b2fd58f8752102e10c0dcf72de9d8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
 * Shared library add-on for iptables to add IDLETIMER support.
 *
 * 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_IDLETIMER.h>

enum {
	O_TIMEOUT = 0,
	O_LABEL,
	O_ALARM,
};

#define s struct idletimer_tg_info
static const struct xt_option_entry idletimer_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)},
	XTOPT_TABLEEND,
};
#undef s

#define s struct idletimer_tg_info_v1
static const struct xt_option_entry idletimer_tg_opts_v1[] = {
	{.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 = "alarm", .id = O_ALARM, .type = XTTYPE_NONE},
	XTOPT_TABLEEND,
};
#undef s

static void idletimer_tg_help(void)
{
	printf(
"IDLETIMER target options:\n"
" --timeout time	Timeout until the notification is sent (in seconds)\n"
" --label string	Unique rule identifier\n"
"\n");
}

static void idletimer_tg_help_v1(void)
{
	printf(
"IDLETIMER target options:\n"
" --timeout time	Timeout until the notification is sent (in seconds)\n"
" --label string	Unique rule identifier\n"
" --alarm	Use alarm instead of default timer\n"
"\n");
}

static void idletimer_tg_print(const void *ip,
			       const struct xt_entry_target *target,
			       int numeric)
{
	struct idletimer_tg_info *info =
		(struct idletimer_tg_info *) target->data;

	printf(" timeout:%u", info->timeout);
	printf(" label:%s", info->label);
}

static void idletimer_tg_print_v1(const void *ip,
			       const struct xt_entry_target *target,
			       int numeric)
{
	struct idletimer_tg_info_v1 *info =
		(struct idletimer_tg_info_v1 *) target->data;

	printf(" timeout:%u", info->timeout);
	printf(" label:%s", info->label);
	if (info->timer_type == XT_IDLETIMER_ALARM)
		printf(" alarm");
}


static void idletimer_tg_save(const void *ip,
			      const struct xt_entry_target *target)
{
	struct idletimer_tg_info *info =
		(struct idletimer_tg_info *) target->data;

	printf(" --timeout %u", info->timeout);
	printf(" --label %s", info->label);
}

static void idletimer_tg_save_v1(const void *ip,
			      const struct xt_entry_target *target)
{
	struct idletimer_tg_info_v1 *info =
		(struct idletimer_tg_info_v1 *) target->data;

	printf(" --timeout %u", info->timeout);
	printf(" --label %s", info->label);
	if (info->timer_type == XT_IDLETIMER_ALARM)
		printf(" --alarm");
}

static void idletimer_tg_parse_v1(struct xt_option_call *cb)
{
	struct idletimer_tg_info_v1 *info = cb->data;

	xtables_option_parse(cb);
	if (cb->entry->id == O_ALARM)
		info->timer_type = XT_IDLETIMER_ALARM;
}

static struct xtables_target idletimer_tg_reg[] = {
	{
		.family	       = NFPROTO_UNSPEC,
		.name	       = "IDLETIMER",
		.version       = XTABLES_VERSION,
		.revision      = 0,
		.size	       = XT_ALIGN(sizeof(struct idletimer_tg_info)),
		.userspacesize = offsetof(struct idletimer_tg_info, timer),
		.help	       = idletimer_tg_help,
		.x6_parse      = xtables_option_parse,
		.print	       = idletimer_tg_print,
		.save	       = idletimer_tg_save,
		.x6_options    = idletimer_tg_opts,
	},
	{
		.family	       = NFPROTO_UNSPEC,
		.name	       = "IDLETIMER",
		.version       = XTABLES_VERSION,
		.revision      = 1,
		.size	       = XT_ALIGN(sizeof(struct idletimer_tg_info_v1)),
		.userspacesize = offsetof(struct idletimer_tg_info_v1, timer),
		.help	       = idletimer_tg_help_v1,
		.x6_parse      = idletimer_tg_parse_v1,
		.print	       = idletimer_tg_print_v1,
		.save	       = idletimer_tg_save_v1,
		.x6_options    = idletimer_tg_opts_v1,
	},

};

void _init(void)
{
	xtables_register_targets(idletimer_tg_reg, ARRAY_SIZE(idletimer_tg_reg));
}