2 * linux/net/netfilter/xt_IDLETIMER.c
4 * Netfilter module to trigger a timer when packet matches.
5 * After timer expires a kevent will be sent.
7 * Copyright (C) 2004, 2010 Nokia Corporation
8 * Written by Timo Teras <ext-timo.teras@nokia.com>
10 * Converted to x_tables and reworked for upstream inclusion
11 * by Luciano Coelho <luciano.coelho@nokia.com>
13 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * version 2 as published by the Free Software Foundation.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/module.h>
33 #include <linux/timer.h>
34 #include <linux/list.h>
35 #include <linux/mutex.h>
36 #include <linux/netfilter.h>
37 #include <linux/netfilter/x_tables.h>
38 #include <linux/netfilter/xt_IDLETIMER.h>
39 #include <linux/kdev_t.h>
40 #include <linux/kobject.h>
41 #include <linux/workqueue.h>
42 #include <linux/sysfs.h>
44 struct idletimer_tg_attr
{
45 struct attribute attr
;
46 ssize_t (*show
)(struct kobject
*kobj
,
47 struct attribute
*attr
, char *buf
);
51 struct list_head entry
;
52 struct timer_list timer
;
53 struct work_struct work
;
56 struct idletimer_tg_attr attr
;
61 static LIST_HEAD(idletimer_tg_list
);
62 static DEFINE_MUTEX(list_mutex
);
64 static struct kobject
*idletimer_tg_kobj
;
67 struct idletimer_tg
*__idletimer_tg_find_by_label(const char *label
)
69 struct idletimer_tg
*entry
;
71 list_for_each_entry(entry
, &idletimer_tg_list
, entry
) {
72 if (!strcmp(label
, entry
->attr
.attr
.name
))
79 static ssize_t
idletimer_tg_show(struct kobject
*kobj
, struct attribute
*attr
,
82 struct idletimer_tg
*timer
;
83 unsigned long expires
= 0;
85 mutex_lock(&list_mutex
);
87 timer
= __idletimer_tg_find_by_label(attr
->name
);
89 expires
= timer
->timer
.expires
;
91 mutex_unlock(&list_mutex
);
93 if (time_after(expires
, jiffies
))
94 return sprintf(buf
, "%u\n",
95 jiffies_to_msecs(expires
- jiffies
) / 1000);
97 return sprintf(buf
, "0\n");
100 static void idletimer_tg_work(struct work_struct
*work
)
102 struct idletimer_tg
*timer
= container_of(work
, struct idletimer_tg
,
105 sysfs_notify(idletimer_tg_kobj
, NULL
, timer
->attr
.attr
.name
);
108 static void idletimer_tg_expired(struct timer_list
*t
)
110 struct idletimer_tg
*timer
= from_timer(timer
, t
, timer
);
112 pr_debug("timer %s expired\n", timer
->attr
.attr
.name
);
114 schedule_work(&timer
->work
);
117 static int idletimer_tg_create(struct idletimer_tg_info
*info
)
121 info
->timer
= kmalloc(sizeof(*info
->timer
), GFP_KERNEL
);
127 sysfs_attr_init(&info
->timer
->attr
.attr
);
128 info
->timer
->attr
.attr
.name
= kstrdup(info
->label
, GFP_KERNEL
);
129 if (!info
->timer
->attr
.attr
.name
) {
133 info
->timer
->attr
.attr
.mode
= 0444;
134 info
->timer
->attr
.show
= idletimer_tg_show
;
136 ret
= sysfs_create_file(idletimer_tg_kobj
, &info
->timer
->attr
.attr
);
138 pr_debug("couldn't add file to sysfs");
142 list_add(&info
->timer
->entry
, &idletimer_tg_list
);
144 timer_setup(&info
->timer
->timer
, idletimer_tg_expired
, 0);
145 info
->timer
->refcnt
= 1;
147 INIT_WORK(&info
->timer
->work
, idletimer_tg_work
);
149 mod_timer(&info
->timer
->timer
,
150 msecs_to_jiffies(info
->timeout
* 1000) + jiffies
);
155 kfree(info
->timer
->attr
.attr
.name
);
163 * The actual xt_tables plugin.
165 static unsigned int idletimer_tg_target(struct sk_buff
*skb
,
166 const struct xt_action_param
*par
)
168 const struct idletimer_tg_info
*info
= par
->targinfo
;
170 pr_debug("resetting timer %s, timeout period %u\n",
171 info
->label
, info
->timeout
);
173 mod_timer(&info
->timer
->timer
,
174 msecs_to_jiffies(info
->timeout
* 1000) + jiffies
);
179 static int idletimer_tg_checkentry(const struct xt_tgchk_param
*par
)
181 struct idletimer_tg_info
*info
= par
->targinfo
;
184 pr_debug("checkentry targinfo%s\n", info
->label
);
186 if (info
->timeout
== 0) {
187 pr_debug("timeout value is zero\n");
190 if (info
->timeout
>= INT_MAX
/ 1000) {
191 pr_debug("timeout value is too big\n");
194 if (info
->label
[0] == '\0' ||
196 MAX_IDLETIMER_LABEL_SIZE
) == MAX_IDLETIMER_LABEL_SIZE
) {
197 pr_debug("label is empty or not nul-terminated\n");
201 mutex_lock(&list_mutex
);
203 info
->timer
= __idletimer_tg_find_by_label(info
->label
);
205 info
->timer
->refcnt
++;
206 mod_timer(&info
->timer
->timer
,
207 msecs_to_jiffies(info
->timeout
* 1000) + jiffies
);
209 pr_debug("increased refcnt of timer %s to %u\n",
210 info
->label
, info
->timer
->refcnt
);
212 ret
= idletimer_tg_create(info
);
214 pr_debug("failed to create timer\n");
215 mutex_unlock(&list_mutex
);
220 mutex_unlock(&list_mutex
);
224 static void idletimer_tg_destroy(const struct xt_tgdtor_param
*par
)
226 const struct idletimer_tg_info
*info
= par
->targinfo
;
228 pr_debug("destroy targinfo %s\n", info
->label
);
230 mutex_lock(&list_mutex
);
232 if (--info
->timer
->refcnt
== 0) {
233 pr_debug("deleting timer %s\n", info
->label
);
235 list_del(&info
->timer
->entry
);
236 del_timer_sync(&info
->timer
->timer
);
237 cancel_work_sync(&info
->timer
->work
);
238 sysfs_remove_file(idletimer_tg_kobj
, &info
->timer
->attr
.attr
);
239 kfree(info
->timer
->attr
.attr
.name
);
242 pr_debug("decreased refcnt of timer %s to %u\n",
243 info
->label
, info
->timer
->refcnt
);
246 mutex_unlock(&list_mutex
);
249 static struct xt_target idletimer_tg __read_mostly
= {
251 .family
= NFPROTO_UNSPEC
,
252 .target
= idletimer_tg_target
,
253 .targetsize
= sizeof(struct idletimer_tg_info
),
254 .usersize
= offsetof(struct idletimer_tg_info
, timer
),
255 .checkentry
= idletimer_tg_checkentry
,
256 .destroy
= idletimer_tg_destroy
,
260 static struct class *idletimer_tg_class
;
262 static struct device
*idletimer_tg_device
;
264 static int __init
idletimer_tg_init(void)
268 idletimer_tg_class
= class_create(THIS_MODULE
, "xt_idletimer");
269 err
= PTR_ERR(idletimer_tg_class
);
270 if (IS_ERR(idletimer_tg_class
)) {
271 pr_debug("couldn't register device class\n");
275 idletimer_tg_device
= device_create(idletimer_tg_class
, NULL
,
276 MKDEV(0, 0), NULL
, "timers");
277 err
= PTR_ERR(idletimer_tg_device
);
278 if (IS_ERR(idletimer_tg_device
)) {
279 pr_debug("couldn't register system device\n");
283 idletimer_tg_kobj
= &idletimer_tg_device
->kobj
;
285 err
= xt_register_target(&idletimer_tg
);
287 pr_debug("couldn't register xt target\n");
293 device_destroy(idletimer_tg_class
, MKDEV(0, 0));
295 class_destroy(idletimer_tg_class
);
300 static void __exit
idletimer_tg_exit(void)
302 xt_unregister_target(&idletimer_tg
);
304 device_destroy(idletimer_tg_class
, MKDEV(0, 0));
305 class_destroy(idletimer_tg_class
);
308 module_init(idletimer_tg_init
);
309 module_exit(idletimer_tg_exit
);
311 MODULE_AUTHOR("Timo Teras <ext-timo.teras@nokia.com>");
312 MODULE_AUTHOR("Luciano Coelho <luciano.coelho@nokia.com>");
313 MODULE_DESCRIPTION("Xtables: idle time monitor");
314 MODULE_LICENSE("GPL v2");
315 MODULE_ALIAS("ipt_IDLETIMER");
316 MODULE_ALIAS("ip6t_IDLETIMER");