blob: 0858fe17e14a22a0b4dde95fc8d02aeb6fda8117 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Adam Nielsen268cb382009-02-20 10:55:14 +010026#include <linux/leds.h>
27#include <linux/mutex.h>
28
29#include <linux/netfilter/xt_LED.h>
30
31MODULE_LICENSE("GPL");
32MODULE_AUTHOR("Adam Nielsen <a.nielsen@shikadi.net>");
33MODULE_DESCRIPTION("Xtables: trigger LED devices on packet match");
Jan Engelhardtf1e231a2011-01-18 06:30:13 +010034MODULE_ALIAS("ipt_LED");
35MODULE_ALIAS("ip6t_LED");
Adam Nielsen268cb382009-02-20 10:55:14 +010036
Adam Nielsenb660d042010-04-09 16:51:40 +020037static LIST_HEAD(xt_led_triggers);
38static DEFINE_MUTEX(xt_led_mutex);
39
Adam Nielsen268cb382009-02-20 10:55:14 +010040/*
41 * This is declared in here (the kernel module) only, to avoid having these
42 * dependencies in userspace code. This is what xt_led_info.internal_data
43 * points to.
44 */
45struct xt_led_info_internal {
Adam Nielsenb660d042010-04-09 16:51:40 +020046 struct list_head list;
47 int refcnt;
48 char *trigger_id;
Adam Nielsen268cb382009-02-20 10:55:14 +010049 struct led_trigger netfilter_led_trigger;
50 struct timer_list timer;
51};
52
Jiri Prchal8452e6f2014-07-25 15:58:33 +020053#define XT_LED_BLINK_DELAY 50 /* ms */
54
Adam Nielsen268cb382009-02-20 10:55:14 +010055static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +020056led_tg(struct sk_buff *skb, const struct xt_action_param *par)
Adam Nielsen268cb382009-02-20 10:55:14 +010057{
58 const struct xt_led_info *ledinfo = par->targinfo;
59 struct xt_led_info_internal *ledinternal = ledinfo->internal_data;
Jiri Prchal8452e6f2014-07-25 15:58:33 +020060 unsigned long led_delay = XT_LED_BLINK_DELAY;
Adam Nielsen268cb382009-02-20 10:55:14 +010061
62 /*
63 * If "always blink" is enabled, and there's still some time until the
64 * LED will switch off, briefly switch it off now.
65 */
66 if ((ledinfo->delay > 0) && ledinfo->always_blink &&
67 timer_pending(&ledinternal->timer))
Jiri Prchal8452e6f2014-07-25 15:58:33 +020068 led_trigger_blink_oneshot(&ledinternal->netfilter_led_trigger,
69 &led_delay, &led_delay, 1);
70 else
71 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_FULL);
Adam Nielsen268cb382009-02-20 10:55:14 +010072
73 /* If there's a positive delay, start/update the timer */
74 if (ledinfo->delay > 0) {
75 mod_timer(&ledinternal->timer,
76 jiffies + msecs_to_jiffies(ledinfo->delay));
77
78 /* Otherwise if there was no delay given, blink as fast as possible */
79 } else if (ledinfo->delay == 0) {
80 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_OFF);
81 }
82
83 /* else the delay is negative, which means switch on and stay on */
84
85 return XT_CONTINUE;
86}
87
88static void led_timeout_callback(unsigned long data)
89{
Adam Nielsenb660d042010-04-09 16:51:40 +020090 struct xt_led_info_internal *ledinternal = (struct xt_led_info_internal *)data;
Adam Nielsen268cb382009-02-20 10:55:14 +010091
92 led_trigger_event(&ledinternal->netfilter_led_trigger, LED_OFF);
93}
94
Adam Nielsenb660d042010-04-09 16:51:40 +020095static struct xt_led_info_internal *led_trigger_lookup(const char *name)
96{
97 struct xt_led_info_internal *ledinternal;
98
99 list_for_each_entry(ledinternal, &xt_led_triggers, list) {
100 if (!strcmp(name, ledinternal->netfilter_led_trigger.name)) {
101 return ledinternal;
102 }
103 }
104 return NULL;
105}
106
Jan Engelhardt135367b2010-03-19 17:16:42 +0100107static int led_tg_check(const struct xt_tgchk_param *par)
Adam Nielsen268cb382009-02-20 10:55:14 +0100108{
109 struct xt_led_info *ledinfo = par->targinfo;
110 struct xt_led_info_internal *ledinternal;
111 int err;
112
113 if (ledinfo->id[0] == '\0') {
Jan Engelhardt8bee4ba2010-03-17 16:04:40 +0100114 pr_info("No 'id' parameter given.\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100115 return -EINVAL;
Adam Nielsen268cb382009-02-20 10:55:14 +0100116 }
117
Adam Nielsenb660d042010-04-09 16:51:40 +0200118 mutex_lock(&xt_led_mutex);
119
120 ledinternal = led_trigger_lookup(ledinfo->id);
121 if (ledinternal) {
122 ledinternal->refcnt++;
123 goto out;
124 }
125
126 err = -ENOMEM;
Adam Nielsen268cb382009-02-20 10:55:14 +0100127 ledinternal = kzalloc(sizeof(struct xt_led_info_internal), GFP_KERNEL);
Jan Engelhardt85bc3f32010-03-18 00:27:03 +0100128 if (!ledinternal)
Adam Nielsenb660d042010-04-09 16:51:40 +0200129 goto exit_mutex_only;
Adam Nielsen268cb382009-02-20 10:55:14 +0100130
Adam Nielsenb660d042010-04-09 16:51:40 +0200131 ledinternal->trigger_id = kstrdup(ledinfo->id, GFP_KERNEL);
132 if (!ledinternal->trigger_id)
133 goto exit_internal_alloc;
134
135 ledinternal->refcnt = 1;
136 ledinternal->netfilter_led_trigger.name = ledinternal->trigger_id;
Adam Nielsen268cb382009-02-20 10:55:14 +0100137
138 err = led_trigger_register(&ledinternal->netfilter_led_trigger);
139 if (err) {
Duan Jionga2b60c72014-07-25 09:06:27 +0800140 pr_err("Trigger name is already in use.\n");
Adam Nielsen268cb382009-02-20 10:55:14 +0100141 goto exit_alloc;
142 }
143
Paolo Abeniaf4b4242018-02-12 18:49:39 +0100144 /* Since the letinternal timer can be shared between multiple targets,
145 * always set it up, even if the current target does not need it
146 */
147 setup_timer(&ledinternal->timer, led_timeout_callback,
148 (unsigned long)ledinternal);
Adam Nielsenb660d042010-04-09 16:51:40 +0200149
150 list_add_tail(&ledinternal->list, &xt_led_triggers);
151
152out:
153 mutex_unlock(&xt_led_mutex);
Adam Nielsen268cb382009-02-20 10:55:14 +0100154
155 ledinfo->internal_data = ledinternal;
Adam Nielsenb660d042010-04-09 16:51:40 +0200156
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100157 return 0;
Adam Nielsen268cb382009-02-20 10:55:14 +0100158
159exit_alloc:
Adam Nielsenb660d042010-04-09 16:51:40 +0200160 kfree(ledinternal->trigger_id);
161
162exit_internal_alloc:
Adam Nielsen268cb382009-02-20 10:55:14 +0100163 kfree(ledinternal);
Adam Nielsenb660d042010-04-09 16:51:40 +0200164
165exit_mutex_only:
166 mutex_unlock(&xt_led_mutex);
167
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100168 return err;
Adam Nielsen268cb382009-02-20 10:55:14 +0100169}
170
171static void led_tg_destroy(const struct xt_tgdtor_param *par)
172{
173 const struct xt_led_info *ledinfo = par->targinfo;
174 struct xt_led_info_internal *ledinternal = ledinfo->internal_data;
175
Adam Nielsenb660d042010-04-09 16:51:40 +0200176 mutex_lock(&xt_led_mutex);
177
178 if (--ledinternal->refcnt) {
179 mutex_unlock(&xt_led_mutex);
180 return;
181 }
182
183 list_del(&ledinternal->list);
184
Paolo Abeniaf4b4242018-02-12 18:49:39 +0100185 del_timer_sync(&ledinternal->timer);
Adam Nielsen268cb382009-02-20 10:55:14 +0100186
187 led_trigger_unregister(&ledinternal->netfilter_led_trigger);
Adam Nielsenb660d042010-04-09 16:51:40 +0200188
189 mutex_unlock(&xt_led_mutex);
190
191 kfree(ledinternal->trigger_id);
Adam Nielsen268cb382009-02-20 10:55:14 +0100192 kfree(ledinternal);
193}
194
195static struct xt_target led_tg_reg __read_mostly = {
196 .name = "LED",
197 .revision = 0,
198 .family = NFPROTO_UNSPEC,
199 .target = led_tg,
Jan Engelhardt7d5f7ed2010-03-09 23:27:24 +0100200 .targetsize = sizeof(struct xt_led_info),
Adam Nielsen268cb382009-02-20 10:55:14 +0100201 .checkentry = led_tg_check,
202 .destroy = led_tg_destroy,
203 .me = THIS_MODULE,
204};
205
206static int __init led_tg_init(void)
207{
208 return xt_register_target(&led_tg_reg);
209}
210
211static void __exit led_tg_exit(void)
212{
213 xt_unregister_target(&led_tg_reg);
214}
215
216module_init(led_tg_init);
217module_exit(led_tg_exit);