blob: 8cef05b60f16403dc9f3c9b3cfca1436683edf1c [file] [log] [blame]
Johannes Berg4855d252006-01-12 21:12:59 +01001/*
2 * Event system
3 * Also see comments in public header file and longer explanation below.
4 *
Johannes Berg79859052006-01-31 19:31:41 +01005 * Copyright (c) 2005, 2006 Johannes Berg <johannes@sipsolutions.net>
6 * Joseph Jezak <josejx@gentoo.org>
7 * Larry Finger <Larry.Finger@lwfinger.net>
8 * Danny van Dyk <kugelfang@gentoo.org>
9 * Michael Buesch <mbuesch@freenet.de>
Johannes Berg4855d252006-01-12 21:12:59 +010010 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 *
24 * The full GNU General Public License is included in this distribution in the
25 * file called COPYING.
26 */
27
Johannes Berg370121e2006-01-04 16:32:16 +010028#include "ieee80211softmac_priv.h"
29
30/*
Johannes Berg370121e2006-01-04 16:32:16 +010031 * Each event has associated to it
32 * - an event type (see constants in public header)
33 * - an event context (see below)
34 * - the function to be called
35 * - a context (extra parameter to call the function with)
36 * - and the softmac struct
37 *
38 * The event context is private and can only be used from
39 * within this module. Its meaning varies with the event
40 * type:
Johannes Berg921a91e2006-04-20 20:02:04 +020041 * SCAN_FINISHED,
42 * DISASSOCIATED: NULL
Johannes Berg370121e2006-01-04 16:32:16 +010043 * ASSOCIATED,
44 * ASSOCIATE_FAILED,
45 * ASSOCIATE_TIMEOUT,
46 * AUTHENTICATED,
47 * AUTH_FAILED,
48 * AUTH_TIMEOUT: a pointer to the network struct
49 * ...
50 * Code within this module can use the event context to be only
51 * called when the event is true for that specific context
52 * as per above table.
53 * If the event context is NULL, then the notification is always called,
54 * regardless of the event context. The event context is not passed to
55 * the callback, it is assumed that the context suffices.
56 *
57 * You can also use the event context only by setting the event type
58 * to -1 (private use only), in which case you'll be notified
59 * whenever the event context matches.
60 */
61
62static char *event_descriptions[IEEE80211SOFTMAC_EVENT_LAST+1] = {
Johannes Berg921a91e2006-04-20 20:02:04 +020063 NULL, /* scan finished */
64 NULL, /* associated */
Johannes Berg370121e2006-01-04 16:32:16 +010065 "associating failed",
66 "associating timed out",
67 "authenticated",
68 "authenticating failed",
69 "authenticating timed out",
70 "associating failed because no suitable network was found",
Johannes Berg921a91e2006-04-20 20:02:04 +020071 NULL, /* disassociated */
Johannes Berg370121e2006-01-04 16:32:16 +010072};
73
74
75static void
David Howellsc4028952006-11-22 14:57:56 +000076ieee80211softmac_notify_callback(struct work_struct *work)
Johannes Berg370121e2006-01-04 16:32:16 +010077{
David Howellsc4028952006-11-22 14:57:56 +000078 struct ieee80211softmac_event *pevent =
79 container_of(work, struct ieee80211softmac_event, work.work);
80 struct ieee80211softmac_event event = *pevent;
81 kfree(pevent);
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +090082
Daniel Drake6ae15df2006-06-01 15:37:22 +010083 event.fun(event.mac->dev, event.event_type, event.context);
Johannes Berg370121e2006-01-04 16:32:16 +010084}
85
86int
87ieee80211softmac_notify_internal(struct ieee80211softmac_device *mac,
88 int event, void *event_context, notify_function_ptr fun, void *context, gfp_t gfp_mask)
89{
90 struct ieee80211softmac_event *eventptr;
91 unsigned long flags;
92
93 if (event < -1 || event > IEEE80211SOFTMAC_EVENT_LAST)
94 return -ENOSYS;
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +090095
Johannes Berg370121e2006-01-04 16:32:16 +010096 if (!fun)
97 return -EINVAL;
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +090098
Johannes Berg370121e2006-01-04 16:32:16 +010099 eventptr = kmalloc(sizeof(struct ieee80211softmac_event), gfp_mask);
100 if (!eventptr)
101 return -ENOMEM;
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +0900102
Johannes Berg370121e2006-01-04 16:32:16 +0100103 eventptr->event_type = event;
David Howellsc4028952006-11-22 14:57:56 +0000104 INIT_DELAYED_WORK(&eventptr->work, ieee80211softmac_notify_callback);
Johannes Berg370121e2006-01-04 16:32:16 +0100105 eventptr->fun = fun;
106 eventptr->context = context;
107 eventptr->mac = mac;
108 eventptr->event_context = event_context;
109
110 spin_lock_irqsave(&mac->lock, flags);
111 list_add(&eventptr->list, &mac->events);
112 spin_unlock_irqrestore(&mac->lock, flags);
113
114 return 0;
115}
116
117int
118ieee80211softmac_notify_gfp(struct net_device *dev,
119 int event, notify_function_ptr fun, void *context, gfp_t gfp_mask)
120{
121 struct ieee80211softmac_device *mac = ieee80211_priv(dev);
122
123 if (event < 0 || event > IEEE80211SOFTMAC_EVENT_LAST)
124 return -ENOSYS;
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +0900125
Johannes Berg370121e2006-01-04 16:32:16 +0100126 return ieee80211softmac_notify_internal(mac, event, NULL, fun, context, gfp_mask);
127}
128EXPORT_SYMBOL_GPL(ieee80211softmac_notify_gfp);
129
130/* private -- calling all callbacks that were specified */
131void
132ieee80211softmac_call_events_locked(struct ieee80211softmac_device *mac, int event, void *event_ctx)
133{
134 struct ieee80211softmac_event *eventptr, *tmp;
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200135 struct ieee80211softmac_network *network;
YOSHIFUJI Hideaki64265652007-02-09 23:24:46 +0900136
Johannes Berg370121e2006-01-04 16:32:16 +0100137 if (event >= 0) {
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200138 union iwreq_data wrqu;
139 int we_event;
140 char *msg = NULL;
141
Johannes Berg921a91e2006-04-20 20:02:04 +0200142 memset(&wrqu, '\0', sizeof (union iwreq_data));
143
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200144 switch(event) {
145 case IEEE80211SOFTMAC_EVENT_ASSOCIATED:
146 network = (struct ieee80211softmac_network *)event_ctx;
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200147 memcpy(wrqu.ap_addr.sa_data, &network->bssid[0], ETH_ALEN);
Johannes Berg921a91e2006-04-20 20:02:04 +0200148 /* fall through */
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200149 case IEEE80211SOFTMAC_EVENT_DISASSOCIATED:
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200150 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
151 we_event = SIOCGIWAP;
152 break;
Johannes Berg6788a072006-04-13 11:41:28 +0200153 case IEEE80211SOFTMAC_EVENT_SCAN_FINISHED:
Johannes Berg6788a072006-04-13 11:41:28 +0200154 we_event = SIOCGIWSCAN;
155 break;
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200156 default:
157 msg = event_descriptions[event];
Johannes Berg921a91e2006-04-20 20:02:04 +0200158 if (!msg)
159 msg = "SOFTMAC EVENT BUG";
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200160 wrqu.data.length = strlen(msg);
161 we_event = IWEVCUSTOM;
162 break;
163 }
164 wireless_send_event(mac->dev, we_event, &wrqu, msg);
Johannes Berg370121e2006-01-04 16:32:16 +0100165 }
166
167 if (!list_empty(&mac->events))
168 list_for_each_entry_safe(eventptr, tmp, &mac->events, list) {
169 if ((eventptr->event_type == event || eventptr->event_type == -1)
170 && (eventptr->event_context == NULL || eventptr->event_context == event_ctx)) {
171 list_del(&eventptr->list);
Daniel Drake6ae15df2006-06-01 15:37:22 +0100172 /* User may have subscribed to ANY event, so
173 * we tell them which event triggered it. */
174 eventptr->event_type = event;
Johannes Berg501d8572007-10-03 18:14:23 -0700175 queue_delayed_work(mac->wq, &eventptr->work, 0);
Johannes Berg370121e2006-01-04 16:32:16 +0100176 }
177 }
178}
179
180void
181ieee80211softmac_call_events(struct ieee80211softmac_device *mac, int event, void *event_ctx)
182{
183 unsigned long flags;
184
185 spin_lock_irqsave(&mac->lock, flags);
186 ieee80211softmac_call_events_locked(mac, event, event_ctx);
187
188 spin_unlock_irqrestore(&mac->lock, flags);
189}