blob: bd102c77d1f05667b9ff12df56f2bffc06007223 [file] [log] [blame]
Adam Nielsen268cb382009-02-20 10:55:14 +01001/*
2 * xt_LED.c - netfilter target to make LEDs blink upon packet matches
3 *
4 * Copyright (C) 2008 Adam Nielsen <a.nielsen@shikadi.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301 USA.
19 *
20 */
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +010021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Adam Nielsen268cb382009-02-20 10:55:14 +010022#include <linux/module.h>
23#include <linux/skbuff.h>
24#include <linux/netfilter/x_tables.h>
25#include <linux/leds.h>
26#include <linux/mutex.h>
27
28#include <linux/netfilter/xt_LED.h>
29
30MODULE_LICENSE("GPL");
31MODULE_AUTHOR("Adam Nielsen <a.nielsen@shikadi.net>");
32MODULE_DESCRIPTION("Xtables: trigger LED devices on packet match");
33
Adam Nielsenb660d042010-04-09 16:51:40 +020034static LIST_HEAD(xt_led_triggers);
35static DEFINE_MUTEX(xt_led_mutex);
36
Adam Nielsen268cb382009-02-20 10:55:14 +010037/*
38 * This is declared in here (the kernel module) only, to avoid having these
39 * dependencies in userspace code. This is what xt_led_info.internal_data
40 * points to.
41 */
42struct xt_led_info_internal {
Adam Nielsenb660d042010-04-09 16:51:40 +020043 struct list_head list;
44 int refcnt;
45 char *trigger_id;
Adam Nielsen268cb382009-02-20 10:55:14 +010046 struct led_trigger netfilter_led_trigger;
47 struct timer_list timer;
48};
49
50static unsigned int
51led_tg(struct sk_buff *skb, const struct xt_target_param *par)
52{
53 const struct xt_led_info *ledinfo = par->targinfo;
54 struct xt_led_info_internal *ledinternal = ledinfo->internal_data;
55
56 /*
57 * If "always blink" is enabled, and there's still some time until the
58 * LED will switch off, briefly switch it off now.
59 */
60 if ((ledinfo->delay > 0) && ledinfo->always_blink &&
61 timer_pending(&ledinternal->timer))
Adam Nielsenb660d042010-04-09 16:51:40 +020062 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_OFF);
Adam Nielsen268cb382009-02-20 10:55:14 +010063
64 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_FULL);
65
66 /* If there's a positive delay, start/update the timer */
67 if (ledinfo->delay > 0) {
68 mod_timer(&ledinternal->timer,
69 jiffies + msecs_to_jiffies(ledinfo->delay));
70
71 /* Otherwise if there was no delay given, blink as fast as possible */
72 } else if (ledinfo->delay == 0) {
73 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_OFF);
74 }
75
76 /* else the delay is negative, which means switch on and stay on */
77
78 return XT_CONTINUE;
79}
80
81static void led_timeout_callback(unsigned long data)
82{
Adam Nielsenb660d042010-04-09 16:51:40 +020083 struct xt_led_info_internal *ledinternal = (struct xt_led_info_internal *)data;
Adam Nielsen268cb382009-02-20 10:55:14 +010084
85 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_OFF);
86}
87
Adam Nielsenb660d042010-04-09 16:51:40 +020088static struct xt_led_info_internal *led_trigger_lookup(const char *name)
89{
90 struct xt_led_info_internal *ledinternal;
91
92 list_for_each_entry(ledinternal, &xt_led_triggers, list) {
93 if (!strcmp(name, ledinternal->netfilter_led_trigger.name)) {
94 return ledinternal;
95 }
96 }
97 return NULL;
98}
99
Jan Engelhardt135367b2010-03-19 17:16:42 +0100100static int led_tg_check(const struct xt_tgchk_param *par)
Adam Nielsen268cb382009-02-20 10:55:14 +0100101{
102 struct xt_led_info *ledinfo = par->targinfo;
103 struct xt_led_info_internal *ledinternal;
104 int err;
105
106 if (ledinfo->id[0] == '\0') {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100107 pr_info("No 'id' parameter given.\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100108 return -EINVAL;
Adam Nielsen268cb382009-02-20 10:55:14 +0100109 }
110
Adam Nielsenb660d042010-04-09 16:51:40 +0200111 mutex_lock(&xt_led_mutex);
112
113 ledinternal = led_trigger_lookup(ledinfo->id);
114 if (ledinternal) {
115 ledinternal->refcnt++;
116 goto out;
117 }
118
119 err = -ENOMEM;
Adam Nielsen268cb382009-02-20 10:55:14 +0100120 ledinternal = kzalloc(sizeof(struct xt_led_info_internal), GFP_KERNEL);
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100121 if (!ledinternal)
Adam Nielsenb660d042010-04-09 16:51:40 +0200122 goto exit_mutex_only;
Adam Nielsen268cb382009-02-20 10:55:14 +0100123
Adam Nielsenb660d042010-04-09 16:51:40 +0200124 ledinternal->trigger_id = kstrdup(ledinfo->id, GFP_KERNEL);
125 if (!ledinternal->trigger_id)
126 goto exit_internal_alloc;
127
128 ledinternal->refcnt = 1;
129 ledinternal->netfilter_led_trigger.name = ledinternal->trigger_id;
Adam Nielsen268cb382009-02-20 10:55:14 +0100130
131 err = led_trigger_register(&ledinternal->netfilter_led_trigger);
132 if (err) {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100133 pr_warning("led_trigger_register() failed\n");
Adam Nielsen268cb382009-02-20 10:55:14 +0100134 if (err == -EEXIST)
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100135 pr_warning("Trigger name is already in use.\n");
Adam Nielsen268cb382009-02-20 10:55:14 +0100136 goto exit_alloc;
137 }
138
139 /* See if we need to set up a timer */
140 if (ledinfo->delay > 0)
141 setup_timer(&ledinternal->timer, led_timeout_callback,
Adam Nielsenb660d042010-04-09 16:51:40 +0200142 (unsigned long)ledinternal);
143
144 list_add_tail(&ledinternal->list, &xt_led_triggers);
145
146out:
147 mutex_unlock(&xt_led_mutex);
Adam Nielsen268cb382009-02-20 10:55:14 +0100148
149 ledinfo->internal_data = ledinternal;
Adam Nielsenb660d042010-04-09 16:51:40 +0200150
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100151 return 0;
Adam Nielsen268cb382009-02-20 10:55:14 +0100152
153exit_alloc:
Adam Nielsenb660d042010-04-09 16:51:40 +0200154 kfree(ledinternal->trigger_id);
155
156exit_internal_alloc:
Adam Nielsen268cb382009-02-20 10:55:14 +0100157 kfree(ledinternal);
Adam Nielsenb660d042010-04-09 16:51:40 +0200158
159exit_mutex_only:
160 mutex_unlock(&xt_led_mutex);
161
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100162 return err;
Adam Nielsen268cb382009-02-20 10:55:14 +0100163}
164
165static void led_tg_destroy(const struct xt_tgdtor_param *par)
166{
167 const struct xt_led_info *ledinfo = par->targinfo;
168 struct xt_led_info_internal *ledinternal = ledinfo->internal_data;
169
Adam Nielsenb660d042010-04-09 16:51:40 +0200170 mutex_lock(&xt_led_mutex);
171
172 if (--ledinternal->refcnt) {
173 mutex_unlock(&xt_led_mutex);
174 return;
175 }
176
177 list_del(&ledinternal->list);
178
Adam Nielsen268cb382009-02-20 10:55:14 +0100179 if (ledinfo->delay > 0)
180 del_timer_sync(&ledinternal->timer);
181
182 led_trigger_unregister(&ledinternal->netfilter_led_trigger);
Adam Nielsenb660d042010-04-09 16:51:40 +0200183
184 mutex_unlock(&xt_led_mutex);
185
186 kfree(ledinternal->trigger_id);
Adam Nielsen268cb382009-02-20 10:55:14 +0100187 kfree(ledinternal);
188}
189
190static struct xt_target led_tg_reg __read_mostly = {
191 .name = "LED",
192 .revision = 0,
193 .family = NFPROTO_UNSPEC,
194 .target = led_tg,
Jan Engelhardt7d5f7ed2010-03-09 23:27:24 +0100195 .targetsize = sizeof(struct xt_led_info),
Adam Nielsen268cb382009-02-20 10:55:14 +0100196 .checkentry = led_tg_check,
197 .destroy = led_tg_destroy,
198 .me = THIS_MODULE,
199};
200
201static int __init led_tg_init(void)
202{
203 return xt_register_target(&led_tg_reg);
204}
205
206static void __exit led_tg_exit(void)
207{
208 xt_unregister_target(&led_tg_reg);
209}
210
211module_init(led_tg_init);
212module_exit(led_tg_exit);