blob: a805831d5d9bc2ae0c2315daff1b0aad1c2d758c [file] [log] [blame]
Johannes Berg19d337d2009-06-02 13:01:37 +02001/*
2 * Copyright (C) 2006 - 2007 Ivo van Doorn
3 * Copyright (C) 2007 Dmitry Torokhov
4 * Copyright 2009 Johannes Berg <johannes@sipsolutions.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; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
Jeff Kirsher8232f1f2013-12-06 03:32:14 -080017 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Johannes Berg19d337d2009-06-02 13:01:37 +020018 */
19
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/workqueue.h>
24#include <linux/capability.h>
25#include <linux/list.h>
26#include <linux/mutex.h>
27#include <linux/rfkill.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040028#include <linux/sched.h>
Johannes Berg19d337d2009-06-02 13:01:37 +020029#include <linux/spinlock.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050030#include <linux/device.h>
Johannes Bergc64fb012009-06-02 13:01:38 +020031#include <linux/miscdevice.h>
32#include <linux/wait.h>
33#include <linux/poll.h>
34#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Johannes Berg19d337d2009-06-02 13:01:37 +020036
37#include "rfkill.h"
38
39#define POLL_INTERVAL (5 * HZ)
40
41#define RFKILL_BLOCK_HW BIT(0)
42#define RFKILL_BLOCK_SW BIT(1)
43#define RFKILL_BLOCK_SW_PREV BIT(2)
44#define RFKILL_BLOCK_ANY (RFKILL_BLOCK_HW |\
45 RFKILL_BLOCK_SW |\
46 RFKILL_BLOCK_SW_PREV)
47#define RFKILL_BLOCK_SW_SETCALL BIT(31)
48
49struct rfkill {
50 spinlock_t lock;
51
Johannes Berg19d337d2009-06-02 13:01:37 +020052 enum rfkill_type type;
53
54 unsigned long state;
55
Johannes Bergc64fb012009-06-02 13:01:38 +020056 u32 idx;
57
Johannes Berg19d337d2009-06-02 13:01:37 +020058 bool registered;
Alan Jenkinsb3fa1322009-06-08 13:27:27 +010059 bool persistent;
Johannes Bergdd21dfc2016-01-20 10:39:23 +010060 bool polling_paused;
61 bool suspended;
Johannes Berg19d337d2009-06-02 13:01:37 +020062
63 const struct rfkill_ops *ops;
64 void *data;
65
66#ifdef CONFIG_RFKILL_LEDS
67 struct led_trigger led_trigger;
68 const char *ledtrigname;
69#endif
70
71 struct device dev;
72 struct list_head node;
73
74 struct delayed_work poll_work;
75 struct work_struct uevent_work;
76 struct work_struct sync_work;
Johannes Bergb7bb1102015-12-10 10:37:51 +010077 char name[];
Johannes Berg19d337d2009-06-02 13:01:37 +020078};
79#define to_rfkill(d) container_of(d, struct rfkill, dev)
80
Johannes Bergc64fb012009-06-02 13:01:38 +020081struct rfkill_int_event {
82 struct list_head list;
83 struct rfkill_event ev;
84};
85
86struct rfkill_data {
87 struct list_head list;
88 struct list_head events;
89 struct mutex mtx;
90 wait_queue_head_t read_wait;
91 bool input_handler;
92};
Johannes Berg19d337d2009-06-02 13:01:37 +020093
94
95MODULE_AUTHOR("Ivo van Doorn <IvDoorn@gmail.com>");
96MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
97MODULE_DESCRIPTION("RF switch support");
98MODULE_LICENSE("GPL");
99
100
101/*
102 * The locking here should be made much smarter, we currently have
103 * a bit of a stupid situation because drivers might want to register
104 * the rfkill struct under their own lock, and take this lock during
105 * rfkill method calls -- which will cause an AB-BA deadlock situation.
106 *
107 * To fix that, we need to rework this code here to be mostly lock-free
108 * and only use the mutex for list manipulations, not to protect the
109 * various other global variables. Then we can avoid holding the mutex
110 * around driver operations, and all is happy.
111 */
112static LIST_HEAD(rfkill_list); /* list of registered rf switches */
113static DEFINE_MUTEX(rfkill_global_mutex);
Johannes Bergc64fb012009-06-02 13:01:38 +0200114static LIST_HEAD(rfkill_fds); /* list of open fds of /dev/rfkill */
Johannes Berg19d337d2009-06-02 13:01:37 +0200115
116static unsigned int rfkill_default_state = 1;
117module_param_named(default_state, rfkill_default_state, uint, 0444);
118MODULE_PARM_DESC(default_state,
119 "Default initial state for all radio types, 0 = radio off");
120
121static struct {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100122 bool cur, sav;
Johannes Berg19d337d2009-06-02 13:01:37 +0200123} rfkill_global_states[NUM_RFKILL_TYPES];
124
Johannes Berg19d337d2009-06-02 13:01:37 +0200125static bool rfkill_epo_lock_active;
126
127
128#ifdef CONFIG_RFKILL_LEDS
129static void rfkill_led_trigger_event(struct rfkill *rfkill)
130{
131 struct led_trigger *trigger;
132
133 if (!rfkill->registered)
134 return;
135
136 trigger = &rfkill->led_trigger;
137
138 if (rfkill->state & RFKILL_BLOCK_ANY)
139 led_trigger_event(trigger, LED_OFF);
140 else
141 led_trigger_event(trigger, LED_FULL);
142}
143
144static void rfkill_led_trigger_activate(struct led_classdev *led)
145{
146 struct rfkill *rfkill;
147
148 rfkill = container_of(led->trigger, struct rfkill, led_trigger);
149
150 rfkill_led_trigger_event(rfkill);
151}
152
AceLan Kao06d7de82012-07-26 09:51:08 +0800153const char *rfkill_get_led_trigger_name(struct rfkill *rfkill)
154{
155 return rfkill->led_trigger.name;
156}
157EXPORT_SYMBOL(rfkill_get_led_trigger_name);
158
159void rfkill_set_led_trigger_name(struct rfkill *rfkill, const char *name)
160{
161 BUG_ON(!rfkill);
162
163 rfkill->ledtrigname = name;
164}
165EXPORT_SYMBOL(rfkill_set_led_trigger_name);
166
Johannes Berg19d337d2009-06-02 13:01:37 +0200167static int rfkill_led_trigger_register(struct rfkill *rfkill)
168{
169 rfkill->led_trigger.name = rfkill->ledtrigname
170 ? : dev_name(&rfkill->dev);
171 rfkill->led_trigger.activate = rfkill_led_trigger_activate;
172 return led_trigger_register(&rfkill->led_trigger);
173}
174
175static void rfkill_led_trigger_unregister(struct rfkill *rfkill)
176{
177 led_trigger_unregister(&rfkill->led_trigger);
178}
179#else
180static void rfkill_led_trigger_event(struct rfkill *rfkill)
181{
182}
183
184static inline int rfkill_led_trigger_register(struct rfkill *rfkill)
185{
186 return 0;
187}
188
189static inline void rfkill_led_trigger_unregister(struct rfkill *rfkill)
190{
191}
192#endif /* CONFIG_RFKILL_LEDS */
193
Johannes Bergc64fb012009-06-02 13:01:38 +0200194static void rfkill_fill_event(struct rfkill_event *ev, struct rfkill *rfkill,
195 enum rfkill_operation op)
196{
197 unsigned long flags;
198
199 ev->idx = rfkill->idx;
200 ev->type = rfkill->type;
201 ev->op = op;
202
203 spin_lock_irqsave(&rfkill->lock, flags);
204 ev->hard = !!(rfkill->state & RFKILL_BLOCK_HW);
205 ev->soft = !!(rfkill->state & (RFKILL_BLOCK_SW |
206 RFKILL_BLOCK_SW_PREV));
207 spin_unlock_irqrestore(&rfkill->lock, flags);
208}
209
210static void rfkill_send_events(struct rfkill *rfkill, enum rfkill_operation op)
211{
212 struct rfkill_data *data;
213 struct rfkill_int_event *ev;
214
215 list_for_each_entry(data, &rfkill_fds, list) {
216 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
217 if (!ev)
218 continue;
219 rfkill_fill_event(&ev->ev, rfkill, op);
220 mutex_lock(&data->mtx);
221 list_add_tail(&ev->list, &data->events);
222 mutex_unlock(&data->mtx);
223 wake_up_interruptible(&data->read_wait);
224 }
225}
226
227static void rfkill_event(struct rfkill *rfkill)
Johannes Berg19d337d2009-06-02 13:01:37 +0200228{
Alan Jenkins06d5caf2009-06-16 15:39:51 +0100229 if (!rfkill->registered)
Johannes Berg19d337d2009-06-02 13:01:37 +0200230 return;
231
232 kobject_uevent(&rfkill->dev.kobj, KOBJ_CHANGE);
Johannes Bergc64fb012009-06-02 13:01:38 +0200233
234 /* also send event to /dev/rfkill */
235 rfkill_send_events(rfkill, RFKILL_OP_CHANGE);
Johannes Berg19d337d2009-06-02 13:01:37 +0200236}
237
Johannes Berg19d337d2009-06-02 13:01:37 +0200238/**
239 * rfkill_set_block - wrapper for set_block method
240 *
241 * @rfkill: the rfkill struct to use
242 * @blocked: the new software state
243 *
244 * Calls the set_block method (when applicable) and handles notifications
245 * etc. as well.
246 */
247static void rfkill_set_block(struct rfkill *rfkill, bool blocked)
248{
249 unsigned long flags;
Vitaly Wooleab48342012-09-06 16:06:52 +0200250 bool prev, curr;
Johannes Berg19d337d2009-06-02 13:01:37 +0200251 int err;
252
Alan Jenkins7fa20a72009-06-16 14:53:24 +0100253 if (unlikely(rfkill->dev.power.power_state.event & PM_EVENT_SLEEP))
254 return;
255
Johannes Berg19d337d2009-06-02 13:01:37 +0200256 /*
257 * Some platforms (...!) generate input events which affect the
258 * _hard_ kill state -- whenever something tries to change the
259 * current software state query the hardware state too.
260 */
261 if (rfkill->ops->query)
262 rfkill->ops->query(rfkill, rfkill->data);
263
264 spin_lock_irqsave(&rfkill->lock, flags);
Vitaly Wooleab48342012-09-06 16:06:52 +0200265 prev = rfkill->state & RFKILL_BLOCK_SW;
266
João Paulo Rechi Vitaf3e7fae2016-01-19 10:42:37 -0500267 if (prev)
Johannes Berg19d337d2009-06-02 13:01:37 +0200268 rfkill->state |= RFKILL_BLOCK_SW_PREV;
269 else
270 rfkill->state &= ~RFKILL_BLOCK_SW_PREV;
271
272 if (blocked)
273 rfkill->state |= RFKILL_BLOCK_SW;
274 else
275 rfkill->state &= ~RFKILL_BLOCK_SW;
276
277 rfkill->state |= RFKILL_BLOCK_SW_SETCALL;
278 spin_unlock_irqrestore(&rfkill->lock, flags);
279
Johannes Berg19d337d2009-06-02 13:01:37 +0200280 err = rfkill->ops->set_block(rfkill->data, blocked);
281
282 spin_lock_irqsave(&rfkill->lock, flags);
283 if (err) {
284 /*
285 * Failed -- reset status to _prev, this may be different
286 * from what set set _PREV to earlier in this function
287 * if rfkill_set_sw_state was invoked.
288 */
289 if (rfkill->state & RFKILL_BLOCK_SW_PREV)
290 rfkill->state |= RFKILL_BLOCK_SW;
291 else
292 rfkill->state &= ~RFKILL_BLOCK_SW;
293 }
294 rfkill->state &= ~RFKILL_BLOCK_SW_SETCALL;
295 rfkill->state &= ~RFKILL_BLOCK_SW_PREV;
Vitaly Wooleab48342012-09-06 16:06:52 +0200296 curr = rfkill->state & RFKILL_BLOCK_SW;
Johannes Berg19d337d2009-06-02 13:01:37 +0200297 spin_unlock_irqrestore(&rfkill->lock, flags);
298
299 rfkill_led_trigger_event(rfkill);
Vitaly Wooleab48342012-09-06 16:06:52 +0200300
301 if (prev != curr)
302 rfkill_event(rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200303}
304
Johannes Bergc64fb012009-06-02 13:01:38 +0200305#ifdef CONFIG_RFKILL_INPUT
306static atomic_t rfkill_input_disabled = ATOMIC_INIT(0);
307
Johannes Berg19d337d2009-06-02 13:01:37 +0200308/**
309 * __rfkill_switch_all - Toggle state of all switches of given type
310 * @type: type of interfaces to be affected
Fabian Frederick2f29fed2014-10-07 22:20:23 +0200311 * @blocked: the new state
Johannes Berg19d337d2009-06-02 13:01:37 +0200312 *
313 * This function sets the state of all switches of given type,
João Paulo Rechi Vitae2a35e82016-01-19 10:42:39 -0500314 * unless a specific switch is suspended.
Johannes Berg19d337d2009-06-02 13:01:37 +0200315 *
316 * Caller must have acquired rfkill_global_mutex.
317 */
318static void __rfkill_switch_all(const enum rfkill_type type, bool blocked)
319{
320 struct rfkill *rfkill;
321
João Paulo Rechi Vita4c077892015-08-25 08:56:43 -0400322 if (type == RFKILL_TYPE_ALL) {
323 int i;
324
325 for (i = 0; i < NUM_RFKILL_TYPES; i++)
326 rfkill_global_states[i].cur = blocked;
327 } else {
328 rfkill_global_states[type].cur = blocked;
329 }
330
Johannes Berg19d337d2009-06-02 13:01:37 +0200331 list_for_each_entry(rfkill, &rfkill_list, node) {
Alex Hung27e49ca2012-05-23 14:11:52 +0800332 if (rfkill->type != type && type != RFKILL_TYPE_ALL)
Johannes Berg19d337d2009-06-02 13:01:37 +0200333 continue;
334
335 rfkill_set_block(rfkill, blocked);
336 }
337}
338
339/**
340 * rfkill_switch_all - Toggle state of all switches of given type
341 * @type: type of interfaces to be affected
Fabian Frederick2f29fed2014-10-07 22:20:23 +0200342 * @blocked: the new state
Johannes Berg19d337d2009-06-02 13:01:37 +0200343 *
344 * Acquires rfkill_global_mutex and calls __rfkill_switch_all(@type, @state).
345 * Please refer to __rfkill_switch_all() for details.
346 *
347 * Does nothing if the EPO lock is active.
348 */
349void rfkill_switch_all(enum rfkill_type type, bool blocked)
350{
Johannes Bergc64fb012009-06-02 13:01:38 +0200351 if (atomic_read(&rfkill_input_disabled))
352 return;
353
Johannes Berg19d337d2009-06-02 13:01:37 +0200354 mutex_lock(&rfkill_global_mutex);
355
356 if (!rfkill_epo_lock_active)
357 __rfkill_switch_all(type, blocked);
358
359 mutex_unlock(&rfkill_global_mutex);
360}
361
362/**
363 * rfkill_epo - emergency power off all transmitters
364 *
365 * This kicks all non-suspended rfkill devices to RFKILL_STATE_SOFT_BLOCKED,
366 * ignoring everything in its path but rfkill_global_mutex and rfkill->mutex.
367 *
368 * The global state before the EPO is saved and can be restored later
369 * using rfkill_restore_states().
370 */
371void rfkill_epo(void)
372{
373 struct rfkill *rfkill;
374 int i;
375
Johannes Bergc64fb012009-06-02 13:01:38 +0200376 if (atomic_read(&rfkill_input_disabled))
377 return;
378
Johannes Berg19d337d2009-06-02 13:01:37 +0200379 mutex_lock(&rfkill_global_mutex);
380
381 rfkill_epo_lock_active = true;
382 list_for_each_entry(rfkill, &rfkill_list, node)
383 rfkill_set_block(rfkill, true);
384
385 for (i = 0; i < NUM_RFKILL_TYPES; i++) {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100386 rfkill_global_states[i].sav = rfkill_global_states[i].cur;
Johannes Berg19d337d2009-06-02 13:01:37 +0200387 rfkill_global_states[i].cur = true;
388 }
Johannes Bergc64fb012009-06-02 13:01:38 +0200389
Johannes Berg19d337d2009-06-02 13:01:37 +0200390 mutex_unlock(&rfkill_global_mutex);
391}
392
393/**
394 * rfkill_restore_states - restore global states
395 *
396 * Restore (and sync switches to) the global state from the
397 * states in rfkill_default_states. This can undo the effects of
398 * a call to rfkill_epo().
399 */
400void rfkill_restore_states(void)
401{
402 int i;
403
Johannes Bergc64fb012009-06-02 13:01:38 +0200404 if (atomic_read(&rfkill_input_disabled))
405 return;
406
Johannes Berg19d337d2009-06-02 13:01:37 +0200407 mutex_lock(&rfkill_global_mutex);
408
409 rfkill_epo_lock_active = false;
410 for (i = 0; i < NUM_RFKILL_TYPES; i++)
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100411 __rfkill_switch_all(i, rfkill_global_states[i].sav);
Johannes Berg19d337d2009-06-02 13:01:37 +0200412 mutex_unlock(&rfkill_global_mutex);
413}
414
415/**
416 * rfkill_remove_epo_lock - unlock state changes
417 *
418 * Used by rfkill-input manually unlock state changes, when
419 * the EPO switch is deactivated.
420 */
421void rfkill_remove_epo_lock(void)
422{
Johannes Bergc64fb012009-06-02 13:01:38 +0200423 if (atomic_read(&rfkill_input_disabled))
424 return;
425
Johannes Berg19d337d2009-06-02 13:01:37 +0200426 mutex_lock(&rfkill_global_mutex);
427 rfkill_epo_lock_active = false;
428 mutex_unlock(&rfkill_global_mutex);
429}
430
431/**
432 * rfkill_is_epo_lock_active - returns true EPO is active
433 *
434 * Returns 0 (false) if there is NOT an active EPO contidion,
435 * and 1 (true) if there is an active EPO contition, which
436 * locks all radios in one of the BLOCKED states.
437 *
438 * Can be called in atomic context.
439 */
440bool rfkill_is_epo_lock_active(void)
441{
442 return rfkill_epo_lock_active;
443}
444
445/**
446 * rfkill_get_global_sw_state - returns global state for a type
447 * @type: the type to get the global state of
448 *
449 * Returns the current global state for a given wireless
450 * device type.
451 */
452bool rfkill_get_global_sw_state(const enum rfkill_type type)
453{
454 return rfkill_global_states[type].cur;
455}
Johannes Bergc64fb012009-06-02 13:01:38 +0200456#endif
Johannes Berg19d337d2009-06-02 13:01:37 +0200457
Johannes Berg19d337d2009-06-02 13:01:37 +0200458
459bool rfkill_set_hw_state(struct rfkill *rfkill, bool blocked)
460{
João Paulo Rechi Vita1926e262016-01-19 10:42:38 -0500461 unsigned long flags;
462 bool ret, prev;
Johannes Berg19d337d2009-06-02 13:01:37 +0200463
João Paulo Rechi Vita1926e262016-01-19 10:42:38 -0500464 BUG_ON(!rfkill);
465
466 spin_lock_irqsave(&rfkill->lock, flags);
467 prev = !!(rfkill->state & RFKILL_BLOCK_HW);
468 if (blocked)
469 rfkill->state |= RFKILL_BLOCK_HW;
470 else
471 rfkill->state &= ~RFKILL_BLOCK_HW;
472 ret = !!(rfkill->state & RFKILL_BLOCK_ANY);
473 spin_unlock_irqrestore(&rfkill->lock, flags);
474
475 rfkill_led_trigger_event(rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200476
477 if (!rfkill->registered)
478 return ret;
479
João Paulo Rechi Vita1926e262016-01-19 10:42:38 -0500480 if (prev != blocked)
Johannes Berg19d337d2009-06-02 13:01:37 +0200481 schedule_work(&rfkill->uevent_work);
482
483 return ret;
484}
485EXPORT_SYMBOL(rfkill_set_hw_state);
486
487static void __rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
488{
489 u32 bit = RFKILL_BLOCK_SW;
490
491 /* if in a ops->set_block right now, use other bit */
492 if (rfkill->state & RFKILL_BLOCK_SW_SETCALL)
493 bit = RFKILL_BLOCK_SW_PREV;
494
495 if (blocked)
496 rfkill->state |= bit;
497 else
498 rfkill->state &= ~bit;
499}
500
501bool rfkill_set_sw_state(struct rfkill *rfkill, bool blocked)
502{
503 unsigned long flags;
504 bool prev, hwblock;
505
506 BUG_ON(!rfkill);
507
508 spin_lock_irqsave(&rfkill->lock, flags);
509 prev = !!(rfkill->state & RFKILL_BLOCK_SW);
510 __rfkill_set_sw_state(rfkill, blocked);
511 hwblock = !!(rfkill->state & RFKILL_BLOCK_HW);
512 blocked = blocked || hwblock;
513 spin_unlock_irqrestore(&rfkill->lock, flags);
514
Alan Jenkins06d5caf2009-06-16 15:39:51 +0100515 if (!rfkill->registered)
516 return blocked;
Johannes Berg19d337d2009-06-02 13:01:37 +0200517
Alan Jenkins06d5caf2009-06-16 15:39:51 +0100518 if (prev != blocked && !hwblock)
519 schedule_work(&rfkill->uevent_work);
520
521 rfkill_led_trigger_event(rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +0200522
523 return blocked;
524}
525EXPORT_SYMBOL(rfkill_set_sw_state);
526
Alan Jenkins06d5caf2009-06-16 15:39:51 +0100527void rfkill_init_sw_state(struct rfkill *rfkill, bool blocked)
528{
529 unsigned long flags;
530
531 BUG_ON(!rfkill);
532 BUG_ON(rfkill->registered);
533
534 spin_lock_irqsave(&rfkill->lock, flags);
535 __rfkill_set_sw_state(rfkill, blocked);
536 rfkill->persistent = true;
537 spin_unlock_irqrestore(&rfkill->lock, flags);
538}
539EXPORT_SYMBOL(rfkill_init_sw_state);
540
Johannes Berg19d337d2009-06-02 13:01:37 +0200541void rfkill_set_states(struct rfkill *rfkill, bool sw, bool hw)
542{
543 unsigned long flags;
544 bool swprev, hwprev;
545
546 BUG_ON(!rfkill);
547
548 spin_lock_irqsave(&rfkill->lock, flags);
549
550 /*
551 * No need to care about prev/setblock ... this is for uevent only
552 * and that will get triggered by rfkill_set_block anyway.
553 */
554 swprev = !!(rfkill->state & RFKILL_BLOCK_SW);
555 hwprev = !!(rfkill->state & RFKILL_BLOCK_HW);
556 __rfkill_set_sw_state(rfkill, sw);
Alan Jenkins48ab3572009-07-12 17:03:13 +0100557 if (hw)
558 rfkill->state |= RFKILL_BLOCK_HW;
559 else
560 rfkill->state &= ~RFKILL_BLOCK_HW;
Johannes Berg19d337d2009-06-02 13:01:37 +0200561
562 spin_unlock_irqrestore(&rfkill->lock, flags);
563
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100564 if (!rfkill->registered) {
565 rfkill->persistent = true;
566 } else {
567 if (swprev != sw || hwprev != hw)
568 schedule_work(&rfkill->uevent_work);
Johannes Berg19d337d2009-06-02 13:01:37 +0200569
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100570 rfkill_led_trigger_event(rfkill);
571 }
Johannes Berg19d337d2009-06-02 13:01:37 +0200572}
573EXPORT_SYMBOL(rfkill_set_states);
574
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700575static ssize_t name_show(struct device *dev, struct device_attribute *attr,
576 char *buf)
Johannes Berg19d337d2009-06-02 13:01:37 +0200577{
578 struct rfkill *rfkill = to_rfkill(dev);
579
580 return sprintf(buf, "%s\n", rfkill->name);
581}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700582static DEVICE_ATTR_RO(name);
Johannes Berg19d337d2009-06-02 13:01:37 +0200583
584static const char *rfkill_get_type_str(enum rfkill_type type)
585{
Samuel Ortiz44b3dec2013-04-11 11:51:36 +0200586 BUILD_BUG_ON(NUM_RFKILL_TYPES != RFKILL_TYPE_NFC + 1);
Andrew Morton02f7f172009-12-03 20:45:07 -0800587
Johannes Berg19d337d2009-06-02 13:01:37 +0200588 switch (type) {
589 case RFKILL_TYPE_WLAN:
590 return "wlan";
591 case RFKILL_TYPE_BLUETOOTH:
592 return "bluetooth";
593 case RFKILL_TYPE_UWB:
594 return "ultrawideband";
595 case RFKILL_TYPE_WIMAX:
596 return "wimax";
597 case RFKILL_TYPE_WWAN:
598 return "wwan";
Tomas Winkler3ad20142009-08-02 02:36:49 +0300599 case RFKILL_TYPE_GPS:
600 return "gps";
Marcel Holtmann875405a2009-11-18 16:48:01 +0100601 case RFKILL_TYPE_FM:
602 return "fm";
Samuel Ortiz44b3dec2013-04-11 11:51:36 +0200603 case RFKILL_TYPE_NFC:
604 return "nfc";
Johannes Berg19d337d2009-06-02 13:01:37 +0200605 default:
606 BUG();
607 }
Johannes Berg19d337d2009-06-02 13:01:37 +0200608}
609
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700610static ssize_t type_show(struct device *dev, struct device_attribute *attr,
611 char *buf)
Johannes Berg19d337d2009-06-02 13:01:37 +0200612{
613 struct rfkill *rfkill = to_rfkill(dev);
614
615 return sprintf(buf, "%s\n", rfkill_get_type_str(rfkill->type));
616}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700617static DEVICE_ATTR_RO(type);
Johannes Berg19d337d2009-06-02 13:01:37 +0200618
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700619static ssize_t index_show(struct device *dev, struct device_attribute *attr,
620 char *buf)
Johannes Bergc64fb012009-06-02 13:01:38 +0200621{
622 struct rfkill *rfkill = to_rfkill(dev);
623
624 return sprintf(buf, "%d\n", rfkill->idx);
625}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700626static DEVICE_ATTR_RO(index);
Johannes Bergc64fb012009-06-02 13:01:38 +0200627
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700628static ssize_t persistent_show(struct device *dev,
629 struct device_attribute *attr, char *buf)
Alan Jenkins464902e2009-06-16 14:54:04 +0100630{
631 struct rfkill *rfkill = to_rfkill(dev);
632
633 return sprintf(buf, "%d\n", rfkill->persistent);
634}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700635static DEVICE_ATTR_RO(persistent);
Alan Jenkins464902e2009-06-16 14:54:04 +0100636
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700637static ssize_t hard_show(struct device *dev, struct device_attribute *attr,
638 char *buf)
florian@mickler.org6c263612010-02-26 12:01:34 +0100639{
640 struct rfkill *rfkill = to_rfkill(dev);
florian@mickler.org6c263612010-02-26 12:01:34 +0100641
florian@mickler.org819bfec2010-03-13 13:31:05 +0100642 return sprintf(buf, "%d\n", (rfkill->state & RFKILL_BLOCK_HW) ? 1 : 0 );
florian@mickler.org6c263612010-02-26 12:01:34 +0100643}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700644static DEVICE_ATTR_RO(hard);
florian@mickler.org6c263612010-02-26 12:01:34 +0100645
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700646static ssize_t soft_show(struct device *dev, struct device_attribute *attr,
647 char *buf)
florian@mickler.org6c263612010-02-26 12:01:34 +0100648{
649 struct rfkill *rfkill = to_rfkill(dev);
florian@mickler.org6c263612010-02-26 12:01:34 +0100650
florian@mickler.org819bfec2010-03-13 13:31:05 +0100651 return sprintf(buf, "%d\n", (rfkill->state & RFKILL_BLOCK_SW) ? 1 : 0 );
florian@mickler.org6c263612010-02-26 12:01:34 +0100652}
653
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700654static ssize_t soft_store(struct device *dev, struct device_attribute *attr,
655 const char *buf, size_t count)
florian@mickler.org6c263612010-02-26 12:01:34 +0100656{
657 struct rfkill *rfkill = to_rfkill(dev);
658 unsigned long state;
659 int err;
660
661 if (!capable(CAP_NET_ADMIN))
662 return -EPERM;
663
Julia Lawall1bac92c2011-11-06 14:26:49 +0100664 err = kstrtoul(buf, 0, &state);
florian@mickler.org6c263612010-02-26 12:01:34 +0100665 if (err)
666 return err;
667
668 if (state > 1 )
669 return -EINVAL;
670
671 mutex_lock(&rfkill_global_mutex);
672 rfkill_set_block(rfkill, state);
673 mutex_unlock(&rfkill_global_mutex);
674
Alan Cox6f7c9622012-10-25 15:18:34 +0100675 return count;
florian@mickler.org6c263612010-02-26 12:01:34 +0100676}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700677static DEVICE_ATTR_RW(soft);
florian@mickler.org6c263612010-02-26 12:01:34 +0100678
Johannes Berg19d337d2009-06-02 13:01:37 +0200679static u8 user_state_from_blocked(unsigned long state)
680{
681 if (state & RFKILL_BLOCK_HW)
682 return RFKILL_USER_STATE_HARD_BLOCKED;
683 if (state & RFKILL_BLOCK_SW)
684 return RFKILL_USER_STATE_SOFT_BLOCKED;
685
686 return RFKILL_USER_STATE_UNBLOCKED;
687}
688
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700689static ssize_t state_show(struct device *dev, struct device_attribute *attr,
690 char *buf)
Johannes Berg19d337d2009-06-02 13:01:37 +0200691{
692 struct rfkill *rfkill = to_rfkill(dev);
Johannes Berg19d337d2009-06-02 13:01:37 +0200693
florian@mickler.org819bfec2010-03-13 13:31:05 +0100694 return sprintf(buf, "%d\n", user_state_from_blocked(rfkill->state));
Johannes Berg19d337d2009-06-02 13:01:37 +0200695}
696
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700697static ssize_t state_store(struct device *dev, struct device_attribute *attr,
698 const char *buf, size_t count)
Johannes Berg19d337d2009-06-02 13:01:37 +0200699{
Johannes Bergf54c1422009-07-10 21:41:39 +0200700 struct rfkill *rfkill = to_rfkill(dev);
701 unsigned long state;
702 int err;
Johannes Berg19d337d2009-06-02 13:01:37 +0200703
Johannes Bergf54c1422009-07-10 21:41:39 +0200704 if (!capable(CAP_NET_ADMIN))
705 return -EPERM;
706
Julia Lawall1bac92c2011-11-06 14:26:49 +0100707 err = kstrtoul(buf, 0, &state);
Johannes Bergf54c1422009-07-10 21:41:39 +0200708 if (err)
709 return err;
710
711 if (state != RFKILL_USER_STATE_SOFT_BLOCKED &&
712 state != RFKILL_USER_STATE_UNBLOCKED)
713 return -EINVAL;
714
715 mutex_lock(&rfkill_global_mutex);
716 rfkill_set_block(rfkill, state == RFKILL_USER_STATE_SOFT_BLOCKED);
717 mutex_unlock(&rfkill_global_mutex);
718
Alan Cox6f7c9622012-10-25 15:18:34 +0100719 return count;
Johannes Berg19d337d2009-06-02 13:01:37 +0200720}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700721static DEVICE_ATTR_RW(state);
Johannes Berg19d337d2009-06-02 13:01:37 +0200722
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700723static struct attribute *rfkill_dev_attrs[] = {
724 &dev_attr_name.attr,
725 &dev_attr_type.attr,
726 &dev_attr_index.attr,
727 &dev_attr_persistent.attr,
728 &dev_attr_state.attr,
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700729 &dev_attr_soft.attr,
730 &dev_attr_hard.attr,
731 NULL,
Johannes Berg19d337d2009-06-02 13:01:37 +0200732};
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700733ATTRIBUTE_GROUPS(rfkill_dev);
Johannes Berg19d337d2009-06-02 13:01:37 +0200734
735static void rfkill_release(struct device *dev)
736{
737 struct rfkill *rfkill = to_rfkill(dev);
738
739 kfree(rfkill);
740}
741
742static int rfkill_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
743{
744 struct rfkill *rfkill = to_rfkill(dev);
745 unsigned long flags;
746 u32 state;
747 int error;
748
749 error = add_uevent_var(env, "RFKILL_NAME=%s", rfkill->name);
750 if (error)
751 return error;
752 error = add_uevent_var(env, "RFKILL_TYPE=%s",
753 rfkill_get_type_str(rfkill->type));
754 if (error)
755 return error;
756 spin_lock_irqsave(&rfkill->lock, flags);
757 state = rfkill->state;
758 spin_unlock_irqrestore(&rfkill->lock, flags);
759 error = add_uevent_var(env, "RFKILL_STATE=%d",
760 user_state_from_blocked(state));
761 return error;
762}
763
764void rfkill_pause_polling(struct rfkill *rfkill)
765{
766 BUG_ON(!rfkill);
767
768 if (!rfkill->ops->poll)
769 return;
770
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100771 rfkill->polling_paused = true;
Johannes Berg19d337d2009-06-02 13:01:37 +0200772 cancel_delayed_work_sync(&rfkill->poll_work);
773}
774EXPORT_SYMBOL(rfkill_pause_polling);
775
776void rfkill_resume_polling(struct rfkill *rfkill)
777{
778 BUG_ON(!rfkill);
779
780 if (!rfkill->ops->poll)
781 return;
782
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100783 rfkill->polling_paused = false;
784
785 if (rfkill->suspended)
786 return;
787
Shaibal Dutta67235cb2014-01-30 14:43:34 -0800788 queue_delayed_work(system_power_efficient_wq,
789 &rfkill->poll_work, 0);
Johannes Berg19d337d2009-06-02 13:01:37 +0200790}
791EXPORT_SYMBOL(rfkill_resume_polling);
792
Lars-Peter Clausen28f297a2015-05-16 14:23:55 +0200793#ifdef CONFIG_PM_SLEEP
794static int rfkill_suspend(struct device *dev)
Johannes Berg19d337d2009-06-02 13:01:37 +0200795{
796 struct rfkill *rfkill = to_rfkill(dev);
797
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100798 rfkill->suspended = true;
799 cancel_delayed_work_sync(&rfkill->poll_work);
Johannes Berg19d337d2009-06-02 13:01:37 +0200800
Johannes Berg19d337d2009-06-02 13:01:37 +0200801 return 0;
802}
803
804static int rfkill_resume(struct device *dev)
805{
806 struct rfkill *rfkill = to_rfkill(dev);
807 bool cur;
808
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100809 rfkill->suspended = false;
810
Alan Jenkins06d5caf2009-06-16 15:39:51 +0100811 if (!rfkill->persistent) {
812 cur = !!(rfkill->state & RFKILL_BLOCK_SW);
813 rfkill_set_block(rfkill, cur);
814 }
Johannes Berg19d337d2009-06-02 13:01:37 +0200815
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100816 if (rfkill->ops->poll && !rfkill->polling_paused)
817 queue_delayed_work(system_power_efficient_wq,
818 &rfkill->poll_work, 0);
Johannes Berg19d337d2009-06-02 13:01:37 +0200819
820 return 0;
821}
822
Lars-Peter Clausen28f297a2015-05-16 14:23:55 +0200823static SIMPLE_DEV_PM_OPS(rfkill_pm_ops, rfkill_suspend, rfkill_resume);
824#define RFKILL_PM_OPS (&rfkill_pm_ops)
825#else
826#define RFKILL_PM_OPS NULL
827#endif
828
Johannes Berg19d337d2009-06-02 13:01:37 +0200829static struct class rfkill_class = {
830 .name = "rfkill",
831 .dev_release = rfkill_release,
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700832 .dev_groups = rfkill_dev_groups,
Johannes Berg19d337d2009-06-02 13:01:37 +0200833 .dev_uevent = rfkill_dev_uevent,
Lars-Peter Clausen28f297a2015-05-16 14:23:55 +0200834 .pm = RFKILL_PM_OPS,
Johannes Berg19d337d2009-06-02 13:01:37 +0200835};
836
Johannes Berg60811622009-06-02 13:01:40 +0200837bool rfkill_blocked(struct rfkill *rfkill)
838{
839 unsigned long flags;
840 u32 state;
841
842 spin_lock_irqsave(&rfkill->lock, flags);
843 state = rfkill->state;
844 spin_unlock_irqrestore(&rfkill->lock, flags);
845
846 return !!(state & RFKILL_BLOCK_ANY);
847}
848EXPORT_SYMBOL(rfkill_blocked);
849
Johannes Berg19d337d2009-06-02 13:01:37 +0200850
851struct rfkill * __must_check rfkill_alloc(const char *name,
852 struct device *parent,
853 const enum rfkill_type type,
854 const struct rfkill_ops *ops,
855 void *ops_data)
856{
857 struct rfkill *rfkill;
858 struct device *dev;
859
860 if (WARN_ON(!ops))
861 return NULL;
862
863 if (WARN_ON(!ops->set_block))
864 return NULL;
865
866 if (WARN_ON(!name))
867 return NULL;
868
Johannes Bergc64fb012009-06-02 13:01:38 +0200869 if (WARN_ON(type == RFKILL_TYPE_ALL || type >= NUM_RFKILL_TYPES))
Johannes Berg19d337d2009-06-02 13:01:37 +0200870 return NULL;
871
Johannes Bergb7bb1102015-12-10 10:37:51 +0100872 rfkill = kzalloc(sizeof(*rfkill) + strlen(name) + 1, GFP_KERNEL);
Johannes Berg19d337d2009-06-02 13:01:37 +0200873 if (!rfkill)
874 return NULL;
875
876 spin_lock_init(&rfkill->lock);
877 INIT_LIST_HEAD(&rfkill->node);
878 rfkill->type = type;
Johannes Bergb7bb1102015-12-10 10:37:51 +0100879 strcpy(rfkill->name, name);
Johannes Berg19d337d2009-06-02 13:01:37 +0200880 rfkill->ops = ops;
881 rfkill->data = ops_data;
882
883 dev = &rfkill->dev;
884 dev->class = &rfkill_class;
885 dev->parent = parent;
886 device_initialize(dev);
887
888 return rfkill;
889}
890EXPORT_SYMBOL(rfkill_alloc);
891
892static void rfkill_poll(struct work_struct *work)
893{
894 struct rfkill *rfkill;
895
896 rfkill = container_of(work, struct rfkill, poll_work.work);
897
898 /*
899 * Poll hardware state -- driver will use one of the
900 * rfkill_set{,_hw,_sw}_state functions and use its
901 * return value to update the current status.
902 */
903 rfkill->ops->poll(rfkill, rfkill->data);
904
Shaibal Dutta67235cb2014-01-30 14:43:34 -0800905 queue_delayed_work(system_power_efficient_wq,
906 &rfkill->poll_work,
Johannes Berg19d337d2009-06-02 13:01:37 +0200907 round_jiffies_relative(POLL_INTERVAL));
908}
909
910static void rfkill_uevent_work(struct work_struct *work)
911{
912 struct rfkill *rfkill;
913
914 rfkill = container_of(work, struct rfkill, uevent_work);
915
Johannes Bergc64fb012009-06-02 13:01:38 +0200916 mutex_lock(&rfkill_global_mutex);
917 rfkill_event(rfkill);
918 mutex_unlock(&rfkill_global_mutex);
Johannes Berg19d337d2009-06-02 13:01:37 +0200919}
920
921static void rfkill_sync_work(struct work_struct *work)
922{
923 struct rfkill *rfkill;
924 bool cur;
925
926 rfkill = container_of(work, struct rfkill, sync_work);
927
928 mutex_lock(&rfkill_global_mutex);
929 cur = rfkill_global_states[rfkill->type].cur;
930 rfkill_set_block(rfkill, cur);
931 mutex_unlock(&rfkill_global_mutex);
932}
933
934int __must_check rfkill_register(struct rfkill *rfkill)
935{
936 static unsigned long rfkill_no;
937 struct device *dev = &rfkill->dev;
938 int error;
939
940 BUG_ON(!rfkill);
941
942 mutex_lock(&rfkill_global_mutex);
943
944 if (rfkill->registered) {
945 error = -EALREADY;
946 goto unlock;
947 }
948
Johannes Bergc64fb012009-06-02 13:01:38 +0200949 rfkill->idx = rfkill_no;
Johannes Berg19d337d2009-06-02 13:01:37 +0200950 dev_set_name(dev, "rfkill%lu", rfkill_no);
951 rfkill_no++;
952
Johannes Berg19d337d2009-06-02 13:01:37 +0200953 list_add_tail(&rfkill->node, &rfkill_list);
954
955 error = device_add(dev);
956 if (error)
957 goto remove;
958
959 error = rfkill_led_trigger_register(rfkill);
960 if (error)
961 goto devdel;
962
963 rfkill->registered = true;
964
Johannes Berg2ec2c682009-06-03 09:55:29 +0200965 INIT_DELAYED_WORK(&rfkill->poll_work, rfkill_poll);
966 INIT_WORK(&rfkill->uevent_work, rfkill_uevent_work);
967 INIT_WORK(&rfkill->sync_work, rfkill_sync_work);
968
969 if (rfkill->ops->poll)
Shaibal Dutta67235cb2014-01-30 14:43:34 -0800970 queue_delayed_work(system_power_efficient_wq,
971 &rfkill->poll_work,
Johannes Berg19d337d2009-06-02 13:01:37 +0200972 round_jiffies_relative(POLL_INTERVAL));
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100973
974 if (!rfkill->persistent || rfkill_epo_lock_active) {
975 schedule_work(&rfkill->sync_work);
976 } else {
977#ifdef CONFIG_RFKILL_INPUT
978 bool soft_blocked = !!(rfkill->state & RFKILL_BLOCK_SW);
979
980 if (!atomic_read(&rfkill_input_disabled))
981 __rfkill_switch_all(rfkill->type, soft_blocked);
982#endif
983 }
Johannes Berg2ec2c682009-06-03 09:55:29 +0200984
Johannes Bergc64fb012009-06-02 13:01:38 +0200985 rfkill_send_events(rfkill, RFKILL_OP_ADD);
Johannes Berg19d337d2009-06-02 13:01:37 +0200986
987 mutex_unlock(&rfkill_global_mutex);
988 return 0;
989
990 devdel:
991 device_del(&rfkill->dev);
992 remove:
993 list_del_init(&rfkill->node);
994 unlock:
995 mutex_unlock(&rfkill_global_mutex);
996 return error;
997}
998EXPORT_SYMBOL(rfkill_register);
999
1000void rfkill_unregister(struct rfkill *rfkill)
1001{
1002 BUG_ON(!rfkill);
1003
1004 if (rfkill->ops->poll)
1005 cancel_delayed_work_sync(&rfkill->poll_work);
1006
1007 cancel_work_sync(&rfkill->uevent_work);
1008 cancel_work_sync(&rfkill->sync_work);
1009
1010 rfkill->registered = false;
1011
1012 device_del(&rfkill->dev);
1013
1014 mutex_lock(&rfkill_global_mutex);
Johannes Bergc64fb012009-06-02 13:01:38 +02001015 rfkill_send_events(rfkill, RFKILL_OP_DEL);
Johannes Berg19d337d2009-06-02 13:01:37 +02001016 list_del_init(&rfkill->node);
1017 mutex_unlock(&rfkill_global_mutex);
1018
1019 rfkill_led_trigger_unregister(rfkill);
1020}
1021EXPORT_SYMBOL(rfkill_unregister);
1022
1023void rfkill_destroy(struct rfkill *rfkill)
1024{
1025 if (rfkill)
1026 put_device(&rfkill->dev);
1027}
1028EXPORT_SYMBOL(rfkill_destroy);
1029
Johannes Bergc64fb012009-06-02 13:01:38 +02001030static int rfkill_fop_open(struct inode *inode, struct file *file)
1031{
1032 struct rfkill_data *data;
1033 struct rfkill *rfkill;
1034 struct rfkill_int_event *ev, *tmp;
1035
1036 data = kzalloc(sizeof(*data), GFP_KERNEL);
1037 if (!data)
1038 return -ENOMEM;
1039
1040 INIT_LIST_HEAD(&data->events);
1041 mutex_init(&data->mtx);
1042 init_waitqueue_head(&data->read_wait);
1043
1044 mutex_lock(&rfkill_global_mutex);
1045 mutex_lock(&data->mtx);
1046 /*
1047 * start getting events from elsewhere but hold mtx to get
1048 * startup events added first
1049 */
Johannes Bergc64fb012009-06-02 13:01:38 +02001050
1051 list_for_each_entry(rfkill, &rfkill_list, node) {
1052 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1053 if (!ev)
1054 goto free;
1055 rfkill_fill_event(&ev->ev, rfkill, RFKILL_OP_ADD);
1056 list_add_tail(&ev->list, &data->events);
1057 }
Julia Lawallbd2281b2011-05-13 15:52:10 +02001058 list_add(&data->list, &rfkill_fds);
Johannes Bergc64fb012009-06-02 13:01:38 +02001059 mutex_unlock(&data->mtx);
1060 mutex_unlock(&rfkill_global_mutex);
1061
1062 file->private_data = data;
1063
1064 return nonseekable_open(inode, file);
1065
1066 free:
1067 mutex_unlock(&data->mtx);
1068 mutex_unlock(&rfkill_global_mutex);
1069 mutex_destroy(&data->mtx);
1070 list_for_each_entry_safe(ev, tmp, &data->events, list)
1071 kfree(ev);
1072 kfree(data);
1073 return -ENOMEM;
1074}
1075
1076static unsigned int rfkill_fop_poll(struct file *file, poll_table *wait)
1077{
1078 struct rfkill_data *data = file->private_data;
1079 unsigned int res = POLLOUT | POLLWRNORM;
1080
1081 poll_wait(file, &data->read_wait, wait);
1082
1083 mutex_lock(&data->mtx);
1084 if (!list_empty(&data->events))
1085 res = POLLIN | POLLRDNORM;
1086 mutex_unlock(&data->mtx);
1087
1088 return res;
1089}
1090
1091static bool rfkill_readable(struct rfkill_data *data)
1092{
1093 bool r;
1094
1095 mutex_lock(&data->mtx);
1096 r = !list_empty(&data->events);
1097 mutex_unlock(&data->mtx);
1098
1099 return r;
1100}
1101
1102static ssize_t rfkill_fop_read(struct file *file, char __user *buf,
1103 size_t count, loff_t *pos)
1104{
1105 struct rfkill_data *data = file->private_data;
1106 struct rfkill_int_event *ev;
1107 unsigned long sz;
1108 int ret;
1109
1110 mutex_lock(&data->mtx);
1111
1112 while (list_empty(&data->events)) {
1113 if (file->f_flags & O_NONBLOCK) {
1114 ret = -EAGAIN;
1115 goto out;
1116 }
1117 mutex_unlock(&data->mtx);
1118 ret = wait_event_interruptible(data->read_wait,
1119 rfkill_readable(data));
1120 mutex_lock(&data->mtx);
1121
1122 if (ret)
1123 goto out;
1124 }
1125
1126 ev = list_first_entry(&data->events, struct rfkill_int_event,
1127 list);
1128
1129 sz = min_t(unsigned long, sizeof(ev->ev), count);
1130 ret = sz;
1131 if (copy_to_user(buf, &ev->ev, sz))
1132 ret = -EFAULT;
1133
1134 list_del(&ev->list);
1135 kfree(ev);
1136 out:
1137 mutex_unlock(&data->mtx);
1138 return ret;
1139}
1140
1141static ssize_t rfkill_fop_write(struct file *file, const char __user *buf,
1142 size_t count, loff_t *pos)
1143{
1144 struct rfkill *rfkill;
1145 struct rfkill_event ev;
1146
1147 /* we don't need the 'hard' variable but accept it */
Johannes Berg1be491f2009-07-05 14:51:06 +02001148 if (count < RFKILL_EVENT_SIZE_V1 - 1)
Johannes Bergc64fb012009-06-02 13:01:38 +02001149 return -EINVAL;
1150
Johannes Berg1be491f2009-07-05 14:51:06 +02001151 /*
1152 * Copy as much data as we can accept into our 'ev' buffer,
1153 * but tell userspace how much we've copied so it can determine
1154 * our API version even in a write() call, if it cares.
1155 */
1156 count = min(count, sizeof(ev));
1157 if (copy_from_user(&ev, buf, count))
Johannes Bergc64fb012009-06-02 13:01:38 +02001158 return -EFAULT;
1159
1160 if (ev.op != RFKILL_OP_CHANGE && ev.op != RFKILL_OP_CHANGE_ALL)
1161 return -EINVAL;
1162
1163 if (ev.type >= NUM_RFKILL_TYPES)
1164 return -EINVAL;
1165
1166 mutex_lock(&rfkill_global_mutex);
1167
1168 if (ev.op == RFKILL_OP_CHANGE_ALL) {
1169 if (ev.type == RFKILL_TYPE_ALL) {
1170 enum rfkill_type i;
1171 for (i = 0; i < NUM_RFKILL_TYPES; i++)
1172 rfkill_global_states[i].cur = ev.soft;
1173 } else {
1174 rfkill_global_states[ev.type].cur = ev.soft;
1175 }
1176 }
1177
1178 list_for_each_entry(rfkill, &rfkill_list, node) {
1179 if (rfkill->idx != ev.idx && ev.op != RFKILL_OP_CHANGE_ALL)
1180 continue;
1181
1182 if (rfkill->type != ev.type && ev.type != RFKILL_TYPE_ALL)
1183 continue;
1184
1185 rfkill_set_block(rfkill, ev.soft);
1186 }
1187 mutex_unlock(&rfkill_global_mutex);
1188
1189 return count;
1190}
1191
1192static int rfkill_fop_release(struct inode *inode, struct file *file)
1193{
1194 struct rfkill_data *data = file->private_data;
1195 struct rfkill_int_event *ev, *tmp;
1196
1197 mutex_lock(&rfkill_global_mutex);
1198 list_del(&data->list);
1199 mutex_unlock(&rfkill_global_mutex);
1200
1201 mutex_destroy(&data->mtx);
1202 list_for_each_entry_safe(ev, tmp, &data->events, list)
1203 kfree(ev);
1204
1205#ifdef CONFIG_RFKILL_INPUT
1206 if (data->input_handler)
Johannes Berg207ee162009-06-07 12:26:52 +02001207 if (atomic_dec_return(&rfkill_input_disabled) == 0)
1208 printk(KERN_DEBUG "rfkill: input handler enabled\n");
Johannes Bergc64fb012009-06-02 13:01:38 +02001209#endif
1210
1211 kfree(data);
1212
1213 return 0;
1214}
1215
1216#ifdef CONFIG_RFKILL_INPUT
1217static long rfkill_fop_ioctl(struct file *file, unsigned int cmd,
1218 unsigned long arg)
1219{
1220 struct rfkill_data *data = file->private_data;
1221
1222 if (_IOC_TYPE(cmd) != RFKILL_IOC_MAGIC)
1223 return -ENOSYS;
1224
1225 if (_IOC_NR(cmd) != RFKILL_IOC_NOINPUT)
1226 return -ENOSYS;
1227
1228 mutex_lock(&data->mtx);
1229
1230 if (!data->input_handler) {
Johannes Berg207ee162009-06-07 12:26:52 +02001231 if (atomic_inc_return(&rfkill_input_disabled) == 1)
1232 printk(KERN_DEBUG "rfkill: input handler disabled\n");
Johannes Bergc64fb012009-06-02 13:01:38 +02001233 data->input_handler = true;
1234 }
1235
1236 mutex_unlock(&data->mtx);
1237
1238 return 0;
1239}
1240#endif
1241
1242static const struct file_operations rfkill_fops = {
Johannes Berg45ba5642009-11-23 11:27:30 +01001243 .owner = THIS_MODULE,
Johannes Bergc64fb012009-06-02 13:01:38 +02001244 .open = rfkill_fop_open,
1245 .read = rfkill_fop_read,
1246 .write = rfkill_fop_write,
1247 .poll = rfkill_fop_poll,
1248 .release = rfkill_fop_release,
1249#ifdef CONFIG_RFKILL_INPUT
1250 .unlocked_ioctl = rfkill_fop_ioctl,
1251 .compat_ioctl = rfkill_fop_ioctl,
1252#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02001253 .llseek = no_llseek,
Johannes Bergc64fb012009-06-02 13:01:38 +02001254};
1255
1256static struct miscdevice rfkill_miscdev = {
1257 .name = "rfkill",
1258 .fops = &rfkill_fops,
1259 .minor = MISC_DYNAMIC_MINOR,
1260};
Johannes Berg19d337d2009-06-02 13:01:37 +02001261
1262static int __init rfkill_init(void)
1263{
1264 int error;
1265 int i;
1266
1267 for (i = 0; i < NUM_RFKILL_TYPES; i++)
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001268 rfkill_global_states[i].cur = !rfkill_default_state;
Johannes Berg19d337d2009-06-02 13:01:37 +02001269
1270 error = class_register(&rfkill_class);
1271 if (error)
1272 goto out;
1273
Johannes Bergc64fb012009-06-02 13:01:38 +02001274 error = misc_register(&rfkill_miscdev);
1275 if (error) {
1276 class_unregister(&rfkill_class);
1277 goto out;
1278 }
1279
Johannes Berg19d337d2009-06-02 13:01:37 +02001280#ifdef CONFIG_RFKILL_INPUT
1281 error = rfkill_handler_init();
Johannes Bergc64fb012009-06-02 13:01:38 +02001282 if (error) {
1283 misc_deregister(&rfkill_miscdev);
Johannes Berg19d337d2009-06-02 13:01:37 +02001284 class_unregister(&rfkill_class);
Johannes Bergc64fb012009-06-02 13:01:38 +02001285 goto out;
1286 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001287#endif
1288
1289 out:
1290 return error;
1291}
1292subsys_initcall(rfkill_init);
1293
1294static void __exit rfkill_exit(void)
1295{
1296#ifdef CONFIG_RFKILL_INPUT
1297 rfkill_handler_exit();
1298#endif
Johannes Bergc64fb012009-06-02 13:01:38 +02001299 misc_deregister(&rfkill_miscdev);
Johannes Berg19d337d2009-06-02 13:01:37 +02001300 class_unregister(&rfkill_class);
1301}
1302module_exit(rfkill_exit);