blob: 8f6906eb08f378fca6603cd7c495b3be1f0d7e3e [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 /*
João Paulo Rechi Vita3ff707d2016-02-22 11:36:32 -0500285 * Failed -- reset status to _PREV, which may be different
286 * from what we have set _PREV to earlier in this function
Johannes Berg19d337d2009-06-02 13:01:37 +0200287 * 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
Heikki Krogerus648b50d2016-01-25 12:03:46 +0300575static const char * const rfkill_types[] = {
576 NULL, /* RFKILL_TYPE_ALL */
577 "wlan",
578 "bluetooth",
579 "ultrawideband",
580 "wimax",
581 "wwan",
582 "gps",
583 "fm",
584 "nfc",
585};
586
587enum rfkill_type rfkill_find_type(const char *name)
588{
589 int i;
590
591 BUILD_BUG_ON(ARRAY_SIZE(rfkill_types) != NUM_RFKILL_TYPES);
592
593 if (!name)
594 return RFKILL_TYPE_ALL;
595
596 for (i = 1; i < NUM_RFKILL_TYPES; i++)
597 if (!strcmp(name, rfkill_types[i]))
598 return i;
599 return RFKILL_TYPE_ALL;
600}
601EXPORT_SYMBOL(rfkill_find_type);
602
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700603static ssize_t name_show(struct device *dev, struct device_attribute *attr,
604 char *buf)
Johannes Berg19d337d2009-06-02 13:01:37 +0200605{
606 struct rfkill *rfkill = to_rfkill(dev);
607
608 return sprintf(buf, "%s\n", rfkill->name);
609}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700610static DEVICE_ATTR_RO(name);
Johannes Berg19d337d2009-06-02 13:01:37 +0200611
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700612static ssize_t type_show(struct device *dev, struct device_attribute *attr,
613 char *buf)
Johannes Berg19d337d2009-06-02 13:01:37 +0200614{
615 struct rfkill *rfkill = to_rfkill(dev);
616
Heikki Krogerus648b50d2016-01-25 12:03:46 +0300617 return sprintf(buf, "%s\n", rfkill_types[rfkill->type]);
Johannes Berg19d337d2009-06-02 13:01:37 +0200618}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700619static DEVICE_ATTR_RO(type);
Johannes Berg19d337d2009-06-02 13:01:37 +0200620
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700621static ssize_t index_show(struct device *dev, struct device_attribute *attr,
622 char *buf)
Johannes Bergc64fb012009-06-02 13:01:38 +0200623{
624 struct rfkill *rfkill = to_rfkill(dev);
625
626 return sprintf(buf, "%d\n", rfkill->idx);
627}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700628static DEVICE_ATTR_RO(index);
Johannes Bergc64fb012009-06-02 13:01:38 +0200629
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700630static ssize_t persistent_show(struct device *dev,
631 struct device_attribute *attr, char *buf)
Alan Jenkins464902e2009-06-16 14:54:04 +0100632{
633 struct rfkill *rfkill = to_rfkill(dev);
634
635 return sprintf(buf, "%d\n", rfkill->persistent);
636}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700637static DEVICE_ATTR_RO(persistent);
Alan Jenkins464902e2009-06-16 14:54:04 +0100638
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700639static ssize_t hard_show(struct device *dev, struct device_attribute *attr,
640 char *buf)
florian@mickler.org6c263612010-02-26 12:01:34 +0100641{
642 struct rfkill *rfkill = to_rfkill(dev);
florian@mickler.org6c263612010-02-26 12:01:34 +0100643
florian@mickler.org819bfec2010-03-13 13:31:05 +0100644 return sprintf(buf, "%d\n", (rfkill->state & RFKILL_BLOCK_HW) ? 1 : 0 );
florian@mickler.org6c263612010-02-26 12:01:34 +0100645}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700646static DEVICE_ATTR_RO(hard);
florian@mickler.org6c263612010-02-26 12:01:34 +0100647
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700648static ssize_t soft_show(struct device *dev, struct device_attribute *attr,
649 char *buf)
florian@mickler.org6c263612010-02-26 12:01:34 +0100650{
651 struct rfkill *rfkill = to_rfkill(dev);
florian@mickler.org6c263612010-02-26 12:01:34 +0100652
florian@mickler.org819bfec2010-03-13 13:31:05 +0100653 return sprintf(buf, "%d\n", (rfkill->state & RFKILL_BLOCK_SW) ? 1 : 0 );
florian@mickler.org6c263612010-02-26 12:01:34 +0100654}
655
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700656static ssize_t soft_store(struct device *dev, struct device_attribute *attr,
657 const char *buf, size_t count)
florian@mickler.org6c263612010-02-26 12:01:34 +0100658{
659 struct rfkill *rfkill = to_rfkill(dev);
660 unsigned long state;
661 int err;
662
663 if (!capable(CAP_NET_ADMIN))
664 return -EPERM;
665
Julia Lawall1bac92c2011-11-06 14:26:49 +0100666 err = kstrtoul(buf, 0, &state);
florian@mickler.org6c263612010-02-26 12:01:34 +0100667 if (err)
668 return err;
669
670 if (state > 1 )
671 return -EINVAL;
672
673 mutex_lock(&rfkill_global_mutex);
674 rfkill_set_block(rfkill, state);
675 mutex_unlock(&rfkill_global_mutex);
676
Alan Cox6f7c9622012-10-25 15:18:34 +0100677 return count;
florian@mickler.org6c263612010-02-26 12:01:34 +0100678}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700679static DEVICE_ATTR_RW(soft);
florian@mickler.org6c263612010-02-26 12:01:34 +0100680
Johannes Berg19d337d2009-06-02 13:01:37 +0200681static u8 user_state_from_blocked(unsigned long state)
682{
683 if (state & RFKILL_BLOCK_HW)
684 return RFKILL_USER_STATE_HARD_BLOCKED;
685 if (state & RFKILL_BLOCK_SW)
686 return RFKILL_USER_STATE_SOFT_BLOCKED;
687
688 return RFKILL_USER_STATE_UNBLOCKED;
689}
690
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700691static ssize_t state_show(struct device *dev, struct device_attribute *attr,
692 char *buf)
Johannes Berg19d337d2009-06-02 13:01:37 +0200693{
694 struct rfkill *rfkill = to_rfkill(dev);
Johannes Berg19d337d2009-06-02 13:01:37 +0200695
florian@mickler.org819bfec2010-03-13 13:31:05 +0100696 return sprintf(buf, "%d\n", user_state_from_blocked(rfkill->state));
Johannes Berg19d337d2009-06-02 13:01:37 +0200697}
698
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700699static ssize_t state_store(struct device *dev, struct device_attribute *attr,
700 const char *buf, size_t count)
Johannes Berg19d337d2009-06-02 13:01:37 +0200701{
Johannes Bergf54c1422009-07-10 21:41:39 +0200702 struct rfkill *rfkill = to_rfkill(dev);
703 unsigned long state;
704 int err;
Johannes Berg19d337d2009-06-02 13:01:37 +0200705
Johannes Bergf54c1422009-07-10 21:41:39 +0200706 if (!capable(CAP_NET_ADMIN))
707 return -EPERM;
708
Julia Lawall1bac92c2011-11-06 14:26:49 +0100709 err = kstrtoul(buf, 0, &state);
Johannes Bergf54c1422009-07-10 21:41:39 +0200710 if (err)
711 return err;
712
713 if (state != RFKILL_USER_STATE_SOFT_BLOCKED &&
714 state != RFKILL_USER_STATE_UNBLOCKED)
715 return -EINVAL;
716
717 mutex_lock(&rfkill_global_mutex);
718 rfkill_set_block(rfkill, state == RFKILL_USER_STATE_SOFT_BLOCKED);
719 mutex_unlock(&rfkill_global_mutex);
720
Alan Cox6f7c9622012-10-25 15:18:34 +0100721 return count;
Johannes Berg19d337d2009-06-02 13:01:37 +0200722}
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700723static DEVICE_ATTR_RW(state);
Johannes Berg19d337d2009-06-02 13:01:37 +0200724
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700725static struct attribute *rfkill_dev_attrs[] = {
726 &dev_attr_name.attr,
727 &dev_attr_type.attr,
728 &dev_attr_index.attr,
729 &dev_attr_persistent.attr,
730 &dev_attr_state.attr,
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700731 &dev_attr_soft.attr,
732 &dev_attr_hard.attr,
733 NULL,
Johannes Berg19d337d2009-06-02 13:01:37 +0200734};
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700735ATTRIBUTE_GROUPS(rfkill_dev);
Johannes Berg19d337d2009-06-02 13:01:37 +0200736
737static void rfkill_release(struct device *dev)
738{
739 struct rfkill *rfkill = to_rfkill(dev);
740
741 kfree(rfkill);
742}
743
744static int rfkill_dev_uevent(struct device *dev, struct kobj_uevent_env *env)
745{
746 struct rfkill *rfkill = to_rfkill(dev);
747 unsigned long flags;
748 u32 state;
749 int error;
750
751 error = add_uevent_var(env, "RFKILL_NAME=%s", rfkill->name);
752 if (error)
753 return error;
754 error = add_uevent_var(env, "RFKILL_TYPE=%s",
Heikki Krogerus648b50d2016-01-25 12:03:46 +0300755 rfkill_types[rfkill->type]);
Johannes Berg19d337d2009-06-02 13:01:37 +0200756 if (error)
757 return error;
758 spin_lock_irqsave(&rfkill->lock, flags);
759 state = rfkill->state;
760 spin_unlock_irqrestore(&rfkill->lock, flags);
761 error = add_uevent_var(env, "RFKILL_STATE=%d",
762 user_state_from_blocked(state));
763 return error;
764}
765
766void rfkill_pause_polling(struct rfkill *rfkill)
767{
768 BUG_ON(!rfkill);
769
770 if (!rfkill->ops->poll)
771 return;
772
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100773 rfkill->polling_paused = true;
Johannes Berg19d337d2009-06-02 13:01:37 +0200774 cancel_delayed_work_sync(&rfkill->poll_work);
775}
776EXPORT_SYMBOL(rfkill_pause_polling);
777
778void rfkill_resume_polling(struct rfkill *rfkill)
779{
780 BUG_ON(!rfkill);
781
782 if (!rfkill->ops->poll)
783 return;
784
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100785 rfkill->polling_paused = false;
786
787 if (rfkill->suspended)
788 return;
789
Shaibal Dutta67235cb2014-01-30 14:43:34 -0800790 queue_delayed_work(system_power_efficient_wq,
791 &rfkill->poll_work, 0);
Johannes Berg19d337d2009-06-02 13:01:37 +0200792}
793EXPORT_SYMBOL(rfkill_resume_polling);
794
Lars-Peter Clausen28f297a2015-05-16 14:23:55 +0200795#ifdef CONFIG_PM_SLEEP
796static int rfkill_suspend(struct device *dev)
Johannes Berg19d337d2009-06-02 13:01:37 +0200797{
798 struct rfkill *rfkill = to_rfkill(dev);
799
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100800 rfkill->suspended = true;
801 cancel_delayed_work_sync(&rfkill->poll_work);
Johannes Berg19d337d2009-06-02 13:01:37 +0200802
Johannes Berg19d337d2009-06-02 13:01:37 +0200803 return 0;
804}
805
806static int rfkill_resume(struct device *dev)
807{
808 struct rfkill *rfkill = to_rfkill(dev);
809 bool cur;
810
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100811 rfkill->suspended = false;
812
Alan Jenkins06d5caf2009-06-16 15:39:51 +0100813 if (!rfkill->persistent) {
814 cur = !!(rfkill->state & RFKILL_BLOCK_SW);
815 rfkill_set_block(rfkill, cur);
816 }
Johannes Berg19d337d2009-06-02 13:01:37 +0200817
Johannes Bergdd21dfc2016-01-20 10:39:23 +0100818 if (rfkill->ops->poll && !rfkill->polling_paused)
819 queue_delayed_work(system_power_efficient_wq,
820 &rfkill->poll_work, 0);
Johannes Berg19d337d2009-06-02 13:01:37 +0200821
822 return 0;
823}
824
Lars-Peter Clausen28f297a2015-05-16 14:23:55 +0200825static SIMPLE_DEV_PM_OPS(rfkill_pm_ops, rfkill_suspend, rfkill_resume);
826#define RFKILL_PM_OPS (&rfkill_pm_ops)
827#else
828#define RFKILL_PM_OPS NULL
829#endif
830
Johannes Berg19d337d2009-06-02 13:01:37 +0200831static struct class rfkill_class = {
832 .name = "rfkill",
833 .dev_release = rfkill_release,
Greg Kroah-Hartmane49df672013-07-24 15:05:36 -0700834 .dev_groups = rfkill_dev_groups,
Johannes Berg19d337d2009-06-02 13:01:37 +0200835 .dev_uevent = rfkill_dev_uevent,
Lars-Peter Clausen28f297a2015-05-16 14:23:55 +0200836 .pm = RFKILL_PM_OPS,
Johannes Berg19d337d2009-06-02 13:01:37 +0200837};
838
Johannes Berg60811622009-06-02 13:01:40 +0200839bool rfkill_blocked(struct rfkill *rfkill)
840{
841 unsigned long flags;
842 u32 state;
843
844 spin_lock_irqsave(&rfkill->lock, flags);
845 state = rfkill->state;
846 spin_unlock_irqrestore(&rfkill->lock, flags);
847
848 return !!(state & RFKILL_BLOCK_ANY);
849}
850EXPORT_SYMBOL(rfkill_blocked);
851
Johannes Berg19d337d2009-06-02 13:01:37 +0200852
853struct rfkill * __must_check rfkill_alloc(const char *name,
854 struct device *parent,
855 const enum rfkill_type type,
856 const struct rfkill_ops *ops,
857 void *ops_data)
858{
859 struct rfkill *rfkill;
860 struct device *dev;
861
862 if (WARN_ON(!ops))
863 return NULL;
864
865 if (WARN_ON(!ops->set_block))
866 return NULL;
867
868 if (WARN_ON(!name))
869 return NULL;
870
Johannes Bergc64fb012009-06-02 13:01:38 +0200871 if (WARN_ON(type == RFKILL_TYPE_ALL || type >= NUM_RFKILL_TYPES))
Johannes Berg19d337d2009-06-02 13:01:37 +0200872 return NULL;
873
Johannes Bergb7bb1102015-12-10 10:37:51 +0100874 rfkill = kzalloc(sizeof(*rfkill) + strlen(name) + 1, GFP_KERNEL);
Johannes Berg19d337d2009-06-02 13:01:37 +0200875 if (!rfkill)
876 return NULL;
877
878 spin_lock_init(&rfkill->lock);
879 INIT_LIST_HEAD(&rfkill->node);
880 rfkill->type = type;
Johannes Bergb7bb1102015-12-10 10:37:51 +0100881 strcpy(rfkill->name, name);
Johannes Berg19d337d2009-06-02 13:01:37 +0200882 rfkill->ops = ops;
883 rfkill->data = ops_data;
884
885 dev = &rfkill->dev;
886 dev->class = &rfkill_class;
887 dev->parent = parent;
888 device_initialize(dev);
889
890 return rfkill;
891}
892EXPORT_SYMBOL(rfkill_alloc);
893
894static void rfkill_poll(struct work_struct *work)
895{
896 struct rfkill *rfkill;
897
898 rfkill = container_of(work, struct rfkill, poll_work.work);
899
900 /*
901 * Poll hardware state -- driver will use one of the
902 * rfkill_set{,_hw,_sw}_state functions and use its
903 * return value to update the current status.
904 */
905 rfkill->ops->poll(rfkill, rfkill->data);
906
Shaibal Dutta67235cb2014-01-30 14:43:34 -0800907 queue_delayed_work(system_power_efficient_wq,
908 &rfkill->poll_work,
Johannes Berg19d337d2009-06-02 13:01:37 +0200909 round_jiffies_relative(POLL_INTERVAL));
910}
911
912static void rfkill_uevent_work(struct work_struct *work)
913{
914 struct rfkill *rfkill;
915
916 rfkill = container_of(work, struct rfkill, uevent_work);
917
Johannes Bergc64fb012009-06-02 13:01:38 +0200918 mutex_lock(&rfkill_global_mutex);
919 rfkill_event(rfkill);
920 mutex_unlock(&rfkill_global_mutex);
Johannes Berg19d337d2009-06-02 13:01:37 +0200921}
922
923static void rfkill_sync_work(struct work_struct *work)
924{
925 struct rfkill *rfkill;
926 bool cur;
927
928 rfkill = container_of(work, struct rfkill, sync_work);
929
930 mutex_lock(&rfkill_global_mutex);
931 cur = rfkill_global_states[rfkill->type].cur;
932 rfkill_set_block(rfkill, cur);
933 mutex_unlock(&rfkill_global_mutex);
934}
935
936int __must_check rfkill_register(struct rfkill *rfkill)
937{
938 static unsigned long rfkill_no;
939 struct device *dev = &rfkill->dev;
940 int error;
941
942 BUG_ON(!rfkill);
943
944 mutex_lock(&rfkill_global_mutex);
945
946 if (rfkill->registered) {
947 error = -EALREADY;
948 goto unlock;
949 }
950
Johannes Bergc64fb012009-06-02 13:01:38 +0200951 rfkill->idx = rfkill_no;
Johannes Berg19d337d2009-06-02 13:01:37 +0200952 dev_set_name(dev, "rfkill%lu", rfkill_no);
953 rfkill_no++;
954
Johannes Berg19d337d2009-06-02 13:01:37 +0200955 list_add_tail(&rfkill->node, &rfkill_list);
956
957 error = device_add(dev);
958 if (error)
959 goto remove;
960
961 error = rfkill_led_trigger_register(rfkill);
962 if (error)
963 goto devdel;
964
965 rfkill->registered = true;
966
Johannes Berg2ec2c682009-06-03 09:55:29 +0200967 INIT_DELAYED_WORK(&rfkill->poll_work, rfkill_poll);
968 INIT_WORK(&rfkill->uevent_work, rfkill_uevent_work);
969 INIT_WORK(&rfkill->sync_work, rfkill_sync_work);
970
971 if (rfkill->ops->poll)
Shaibal Dutta67235cb2014-01-30 14:43:34 -0800972 queue_delayed_work(system_power_efficient_wq,
973 &rfkill->poll_work,
Johannes Berg19d337d2009-06-02 13:01:37 +0200974 round_jiffies_relative(POLL_INTERVAL));
Alan Jenkinsb3fa1322009-06-08 13:27:27 +0100975
976 if (!rfkill->persistent || rfkill_epo_lock_active) {
977 schedule_work(&rfkill->sync_work);
978 } else {
979#ifdef CONFIG_RFKILL_INPUT
980 bool soft_blocked = !!(rfkill->state & RFKILL_BLOCK_SW);
981
982 if (!atomic_read(&rfkill_input_disabled))
983 __rfkill_switch_all(rfkill->type, soft_blocked);
984#endif
985 }
Johannes Berg2ec2c682009-06-03 09:55:29 +0200986
Johannes Bergc64fb012009-06-02 13:01:38 +0200987 rfkill_send_events(rfkill, RFKILL_OP_ADD);
Johannes Berg19d337d2009-06-02 13:01:37 +0200988
989 mutex_unlock(&rfkill_global_mutex);
990 return 0;
991
992 devdel:
993 device_del(&rfkill->dev);
994 remove:
995 list_del_init(&rfkill->node);
996 unlock:
997 mutex_unlock(&rfkill_global_mutex);
998 return error;
999}
1000EXPORT_SYMBOL(rfkill_register);
1001
1002void rfkill_unregister(struct rfkill *rfkill)
1003{
1004 BUG_ON(!rfkill);
1005
1006 if (rfkill->ops->poll)
1007 cancel_delayed_work_sync(&rfkill->poll_work);
1008
1009 cancel_work_sync(&rfkill->uevent_work);
1010 cancel_work_sync(&rfkill->sync_work);
1011
1012 rfkill->registered = false;
1013
1014 device_del(&rfkill->dev);
1015
1016 mutex_lock(&rfkill_global_mutex);
Johannes Bergc64fb012009-06-02 13:01:38 +02001017 rfkill_send_events(rfkill, RFKILL_OP_DEL);
Johannes Berg19d337d2009-06-02 13:01:37 +02001018 list_del_init(&rfkill->node);
1019 mutex_unlock(&rfkill_global_mutex);
1020
1021 rfkill_led_trigger_unregister(rfkill);
1022}
1023EXPORT_SYMBOL(rfkill_unregister);
1024
1025void rfkill_destroy(struct rfkill *rfkill)
1026{
1027 if (rfkill)
1028 put_device(&rfkill->dev);
1029}
1030EXPORT_SYMBOL(rfkill_destroy);
1031
Johannes Bergc64fb012009-06-02 13:01:38 +02001032static int rfkill_fop_open(struct inode *inode, struct file *file)
1033{
1034 struct rfkill_data *data;
1035 struct rfkill *rfkill;
1036 struct rfkill_int_event *ev, *tmp;
1037
1038 data = kzalloc(sizeof(*data), GFP_KERNEL);
1039 if (!data)
1040 return -ENOMEM;
1041
1042 INIT_LIST_HEAD(&data->events);
1043 mutex_init(&data->mtx);
1044 init_waitqueue_head(&data->read_wait);
1045
1046 mutex_lock(&rfkill_global_mutex);
1047 mutex_lock(&data->mtx);
1048 /*
1049 * start getting events from elsewhere but hold mtx to get
1050 * startup events added first
1051 */
Johannes Bergc64fb012009-06-02 13:01:38 +02001052
1053 list_for_each_entry(rfkill, &rfkill_list, node) {
1054 ev = kzalloc(sizeof(*ev), GFP_KERNEL);
1055 if (!ev)
1056 goto free;
1057 rfkill_fill_event(&ev->ev, rfkill, RFKILL_OP_ADD);
1058 list_add_tail(&ev->list, &data->events);
1059 }
Julia Lawallbd2281b2011-05-13 15:52:10 +02001060 list_add(&data->list, &rfkill_fds);
Johannes Bergc64fb012009-06-02 13:01:38 +02001061 mutex_unlock(&data->mtx);
1062 mutex_unlock(&rfkill_global_mutex);
1063
1064 file->private_data = data;
1065
1066 return nonseekable_open(inode, file);
1067
1068 free:
1069 mutex_unlock(&data->mtx);
1070 mutex_unlock(&rfkill_global_mutex);
1071 mutex_destroy(&data->mtx);
1072 list_for_each_entry_safe(ev, tmp, &data->events, list)
1073 kfree(ev);
1074 kfree(data);
1075 return -ENOMEM;
1076}
1077
1078static unsigned int rfkill_fop_poll(struct file *file, poll_table *wait)
1079{
1080 struct rfkill_data *data = file->private_data;
1081 unsigned int res = POLLOUT | POLLWRNORM;
1082
1083 poll_wait(file, &data->read_wait, wait);
1084
1085 mutex_lock(&data->mtx);
1086 if (!list_empty(&data->events))
1087 res = POLLIN | POLLRDNORM;
1088 mutex_unlock(&data->mtx);
1089
1090 return res;
1091}
1092
1093static bool rfkill_readable(struct rfkill_data *data)
1094{
1095 bool r;
1096
1097 mutex_lock(&data->mtx);
1098 r = !list_empty(&data->events);
1099 mutex_unlock(&data->mtx);
1100
1101 return r;
1102}
1103
1104static ssize_t rfkill_fop_read(struct file *file, char __user *buf,
1105 size_t count, loff_t *pos)
1106{
1107 struct rfkill_data *data = file->private_data;
1108 struct rfkill_int_event *ev;
1109 unsigned long sz;
1110 int ret;
1111
1112 mutex_lock(&data->mtx);
1113
1114 while (list_empty(&data->events)) {
1115 if (file->f_flags & O_NONBLOCK) {
1116 ret = -EAGAIN;
1117 goto out;
1118 }
1119 mutex_unlock(&data->mtx);
1120 ret = wait_event_interruptible(data->read_wait,
1121 rfkill_readable(data));
1122 mutex_lock(&data->mtx);
1123
1124 if (ret)
1125 goto out;
1126 }
1127
1128 ev = list_first_entry(&data->events, struct rfkill_int_event,
1129 list);
1130
1131 sz = min_t(unsigned long, sizeof(ev->ev), count);
1132 ret = sz;
1133 if (copy_to_user(buf, &ev->ev, sz))
1134 ret = -EFAULT;
1135
1136 list_del(&ev->list);
1137 kfree(ev);
1138 out:
1139 mutex_unlock(&data->mtx);
1140 return ret;
1141}
1142
1143static ssize_t rfkill_fop_write(struct file *file, const char __user *buf,
1144 size_t count, loff_t *pos)
1145{
1146 struct rfkill *rfkill;
1147 struct rfkill_event ev;
1148
1149 /* we don't need the 'hard' variable but accept it */
Johannes Berg1be491f2009-07-05 14:51:06 +02001150 if (count < RFKILL_EVENT_SIZE_V1 - 1)
Johannes Bergc64fb012009-06-02 13:01:38 +02001151 return -EINVAL;
1152
Johannes Berg1be491f2009-07-05 14:51:06 +02001153 /*
1154 * Copy as much data as we can accept into our 'ev' buffer,
1155 * but tell userspace how much we've copied so it can determine
1156 * our API version even in a write() call, if it cares.
1157 */
1158 count = min(count, sizeof(ev));
1159 if (copy_from_user(&ev, buf, count))
Johannes Bergc64fb012009-06-02 13:01:38 +02001160 return -EFAULT;
1161
1162 if (ev.op != RFKILL_OP_CHANGE && ev.op != RFKILL_OP_CHANGE_ALL)
1163 return -EINVAL;
1164
1165 if (ev.type >= NUM_RFKILL_TYPES)
1166 return -EINVAL;
1167
1168 mutex_lock(&rfkill_global_mutex);
1169
1170 if (ev.op == RFKILL_OP_CHANGE_ALL) {
1171 if (ev.type == RFKILL_TYPE_ALL) {
1172 enum rfkill_type i;
1173 for (i = 0; i < NUM_RFKILL_TYPES; i++)
1174 rfkill_global_states[i].cur = ev.soft;
1175 } else {
1176 rfkill_global_states[ev.type].cur = ev.soft;
1177 }
1178 }
1179
1180 list_for_each_entry(rfkill, &rfkill_list, node) {
1181 if (rfkill->idx != ev.idx && ev.op != RFKILL_OP_CHANGE_ALL)
1182 continue;
1183
1184 if (rfkill->type != ev.type && ev.type != RFKILL_TYPE_ALL)
1185 continue;
1186
1187 rfkill_set_block(rfkill, ev.soft);
1188 }
1189 mutex_unlock(&rfkill_global_mutex);
1190
1191 return count;
1192}
1193
1194static int rfkill_fop_release(struct inode *inode, struct file *file)
1195{
1196 struct rfkill_data *data = file->private_data;
1197 struct rfkill_int_event *ev, *tmp;
1198
1199 mutex_lock(&rfkill_global_mutex);
1200 list_del(&data->list);
1201 mutex_unlock(&rfkill_global_mutex);
1202
1203 mutex_destroy(&data->mtx);
1204 list_for_each_entry_safe(ev, tmp, &data->events, list)
1205 kfree(ev);
1206
1207#ifdef CONFIG_RFKILL_INPUT
1208 if (data->input_handler)
Johannes Berg207ee162009-06-07 12:26:52 +02001209 if (atomic_dec_return(&rfkill_input_disabled) == 0)
1210 printk(KERN_DEBUG "rfkill: input handler enabled\n");
Johannes Bergc64fb012009-06-02 13:01:38 +02001211#endif
1212
1213 kfree(data);
1214
1215 return 0;
1216}
1217
1218#ifdef CONFIG_RFKILL_INPUT
1219static long rfkill_fop_ioctl(struct file *file, unsigned int cmd,
1220 unsigned long arg)
1221{
1222 struct rfkill_data *data = file->private_data;
1223
1224 if (_IOC_TYPE(cmd) != RFKILL_IOC_MAGIC)
1225 return -ENOSYS;
1226
1227 if (_IOC_NR(cmd) != RFKILL_IOC_NOINPUT)
1228 return -ENOSYS;
1229
1230 mutex_lock(&data->mtx);
1231
1232 if (!data->input_handler) {
Johannes Berg207ee162009-06-07 12:26:52 +02001233 if (atomic_inc_return(&rfkill_input_disabled) == 1)
1234 printk(KERN_DEBUG "rfkill: input handler disabled\n");
Johannes Bergc64fb012009-06-02 13:01:38 +02001235 data->input_handler = true;
1236 }
1237
1238 mutex_unlock(&data->mtx);
1239
1240 return 0;
1241}
1242#endif
1243
1244static const struct file_operations rfkill_fops = {
Johannes Berg45ba5642009-11-23 11:27:30 +01001245 .owner = THIS_MODULE,
Johannes Bergc64fb012009-06-02 13:01:38 +02001246 .open = rfkill_fop_open,
1247 .read = rfkill_fop_read,
1248 .write = rfkill_fop_write,
1249 .poll = rfkill_fop_poll,
1250 .release = rfkill_fop_release,
1251#ifdef CONFIG_RFKILL_INPUT
1252 .unlocked_ioctl = rfkill_fop_ioctl,
1253 .compat_ioctl = rfkill_fop_ioctl,
1254#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02001255 .llseek = no_llseek,
Johannes Bergc64fb012009-06-02 13:01:38 +02001256};
1257
1258static struct miscdevice rfkill_miscdev = {
1259 .name = "rfkill",
1260 .fops = &rfkill_fops,
1261 .minor = MISC_DYNAMIC_MINOR,
1262};
Johannes Berg19d337d2009-06-02 13:01:37 +02001263
1264static int __init rfkill_init(void)
1265{
1266 int error;
1267 int i;
1268
1269 for (i = 0; i < NUM_RFKILL_TYPES; i++)
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001270 rfkill_global_states[i].cur = !rfkill_default_state;
Johannes Berg19d337d2009-06-02 13:01:37 +02001271
1272 error = class_register(&rfkill_class);
1273 if (error)
1274 goto out;
1275
Johannes Bergc64fb012009-06-02 13:01:38 +02001276 error = misc_register(&rfkill_miscdev);
1277 if (error) {
1278 class_unregister(&rfkill_class);
1279 goto out;
1280 }
1281
Johannes Berg19d337d2009-06-02 13:01:37 +02001282#ifdef CONFIG_RFKILL_INPUT
1283 error = rfkill_handler_init();
Johannes Bergc64fb012009-06-02 13:01:38 +02001284 if (error) {
1285 misc_deregister(&rfkill_miscdev);
Johannes Berg19d337d2009-06-02 13:01:37 +02001286 class_unregister(&rfkill_class);
Johannes Bergc64fb012009-06-02 13:01:38 +02001287 goto out;
1288 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001289#endif
1290
1291 out:
1292 return error;
1293}
1294subsys_initcall(rfkill_init);
1295
1296static void __exit rfkill_exit(void)
1297{
1298#ifdef CONFIG_RFKILL_INPUT
1299 rfkill_handler_exit();
1300#endif
Johannes Bergc64fb012009-06-02 13:01:38 +02001301 misc_deregister(&rfkill_miscdev);
Johannes Berg19d337d2009-06-02 13:01:37 +02001302 class_unregister(&rfkill_class);
1303}
1304module_exit(rfkill_exit);