blob: c27d03433c21163604955d6852695deead515ff6 [file] [log] [blame]
Johannes Berg4855d252006-01-12 21:12:59 +01001/*
2 * ieee80211softmac.h - public interface to the softmac
3 *
4 * Copyright (c) 2005 Johannes Berg <johannes@sipsolutions.net>
5 * Joseph Jezak <josejx@gentoo.org>
6 * Larry Finger <Larry.Finger@lwfinger.net>
7 * Danny van Dyk <kugelfang@gentoo.org>
8 * Michael Buesch <mbuesch@freenet.de>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 *
23 * The full GNU General Public License is included in this distribution in the
24 * file called COPYING.
25 */
26
Johannes Berg370121e2006-01-04 16:32:16 +010027#ifndef IEEE80211SOFTMAC_H_
28#define IEEE80211SOFTMAC_H_
29
30#include <linux/kernel.h>
31#include <linux/spinlock.h>
32#include <linux/workqueue.h>
33#include <linux/list.h>
34#include <net/ieee80211.h>
35
36/* Once the API is considered more or less stable,
37 * this should be incremented on API incompatible changes.
38 */
39#define IEEE80211SOFTMAC_API 0
40
41#define IEEE80211SOFTMAC_MAX_RATES_LEN 8
42#define IEEE80211SOFTMAC_MAX_EX_RATES_LEN 255
43
44struct ieee80211softmac_ratesinfo {
45 u8 count;
46 u8 rates[IEEE80211SOFTMAC_MAX_RATES_LEN + IEEE80211SOFTMAC_MAX_EX_RATES_LEN];
47};
48
49/* internal structures */
50struct ieee80211softmac_network;
51struct ieee80211softmac_scaninfo;
52
53struct ieee80211softmac_essid {
54 u8 len;
55 char data[IW_ESSID_MAX_SIZE+1];
56};
57
58struct ieee80211softmac_wpa {
59 char *IE;
60 int IElen;
61 int IEbuflen;
62};
63
64/*
65 * Information about association
66 *
67 * Do we need a lock for this?
68 * We only ever use this structure inlined
69 * into our global struct. I've used its lock,
70 * but maybe we need a local one here?
71 */
72struct ieee80211softmac_assoc_info {
73 /*
74 * This is the requested ESSID. It is written
75 * only by the WX handlers.
76 *
77 */
78 struct ieee80211softmac_essid req_essid;
79 /*
80 * the ESSID of the network we're currently
81 * associated (or trying) to. This is
82 * updated to the network's actual ESSID
83 * even if the requested ESSID was 'ANY'
84 */
85 struct ieee80211softmac_essid associate_essid;
86
87 /* BSSID we're trying to associate to */
88 char bssid[ETH_ALEN];
89
90 /* some flags.
91 * static_essid is valid if the essid is constant,
92 * this is for use by the wx handlers only.
93 *
94 * associating is true, if the network has been
95 * auth'ed on and we are in the process of associating.
96 *
97 * bssvalid is true if we found a matching network
98 * and saved it's BSSID into the bssid above.
Johannes Berg818667f2006-04-20 20:02:03 +020099 *
100 * bssfixed is used for SIOCSIWAP.
Johannes Berg370121e2006-01-04 16:32:16 +0100101 */
102 u8 static_essid:1,
Daniel Drake5acd0c412006-07-18 21:33:27 +0100103 short_preamble_available:1,
Johannes Berg370121e2006-01-04 16:32:16 +0100104 associating:1,
Joseph Jezakcb74c432006-06-11 12:00:37 -0400105 assoc_wait:1,
Johannes Berg818667f2006-04-20 20:02:03 +0200106 bssvalid:1,
107 bssfixed:1;
Johannes Berg370121e2006-01-04 16:32:16 +0100108
109 /* Scan retries remaining */
110 int scan_retry;
111
112 struct work_struct work;
113 struct work_struct timeout;
114};
115
Daniel Drake5acd0c412006-07-18 21:33:27 +0100116struct ieee80211softmac_bss_info {
117 /* Rates supported by the network */
118 struct ieee80211softmac_ratesinfo supported_rates;
119
120 /* This indicates whether frames can currently be transmitted with
121 * short preamble (only use this variable during TX at CCK rates) */
122 u8 short_preamble:1;
123
124 /* This indicates whether protection (e.g. self-CTS) should be used
125 * when transmitting with OFDM modulation */
126 u8 use_protection:1;
127};
128
Johannes Berg370121e2006-01-04 16:32:16 +0100129enum {
130 IEEE80211SOFTMAC_AUTH_OPEN_REQUEST = 1,
131 IEEE80211SOFTMAC_AUTH_OPEN_RESPONSE = 2,
132};
133
134enum {
135 IEEE80211SOFTMAC_AUTH_SHARED_REQUEST = 1,
136 IEEE80211SOFTMAC_AUTH_SHARED_CHALLENGE = 2,
137 IEEE80211SOFTMAC_AUTH_SHARED_RESPONSE = 3,
138 IEEE80211SOFTMAC_AUTH_SHARED_PASS = 4,
139};
140
141/* We should make these tunable
142 * AUTH_TIMEOUT seems really long, but that's what it is in BSD */
143#define IEEE80211SOFTMAC_AUTH_TIMEOUT (12 * HZ)
144#define IEEE80211SOFTMAC_AUTH_RETRY_LIMIT 5
145#define IEEE80211SOFTMAC_ASSOC_SCAN_RETRY_LIMIT 3
146
147struct ieee80211softmac_txrates {
148 /* The Bit-Rate to be used for multicast frames. */
149 u8 mcast_rate;
Daniel Drake8462fe32006-05-01 22:45:50 +0100150
151 /* The Bit-Rate to be used for multicast management frames. */
152 u8 mgt_mcast_rate;
153
Johannes Berg370121e2006-01-04 16:32:16 +0100154 /* The Bit-Rate to be used for any other (normal) data packet. */
155 u8 default_rate;
156 /* The Bit-Rate to be used for default fallback
157 * (If the device supports fallback and hardware-retry)
158 */
159 u8 default_fallback;
Daniel Drake8462fe32006-05-01 22:45:50 +0100160
161 /* This is the rate that the user asked for */
162 u8 user_rate;
Johannes Berg370121e2006-01-04 16:32:16 +0100163};
164
165/* Bits for txrates_change callback. */
166#define IEEE80211SOFTMAC_TXRATECHG_DEFAULT (1 << 0) /* default_rate */
167#define IEEE80211SOFTMAC_TXRATECHG_DEFAULT_FBACK (1 << 1) /* default_fallback */
168#define IEEE80211SOFTMAC_TXRATECHG_MCAST (1 << 2) /* mcast_rate */
Daniel Drake8462fe32006-05-01 22:45:50 +0100169#define IEEE80211SOFTMAC_TXRATECHG_MGT_MCAST (1 << 3) /* mgt_mcast_rate */
Johannes Berg370121e2006-01-04 16:32:16 +0100170
Daniel Drake5acd0c412006-07-18 21:33:27 +0100171#define IEEE80211SOFTMAC_BSSINFOCHG_RATES (1 << 0) /* supported_rates */
172#define IEEE80211SOFTMAC_BSSINFOCHG_SHORT_PREAMBLE (1 << 1) /* short_preamble */
173#define IEEE80211SOFTMAC_BSSINFOCHG_PROTECTION (1 << 2) /* use_protection */
174
Johannes Berg370121e2006-01-04 16:32:16 +0100175struct ieee80211softmac_device {
176 /* 802.11 structure for data stuff */
177 struct ieee80211_device *ieee;
178 struct net_device *dev;
179
180 /* only valid if associated, then holds the Association ID */
181 u16 association_id;
182
183 /* the following methods are callbacks that the driver
184 * using this framework has to assign
185 */
186
187 /* always assign these */
188 void (*set_bssid_filter)(struct net_device *dev, const u8 *bssid);
189 void (*set_channel)(struct net_device *dev, u8 channel);
190
191 /* assign if you need it, informational only */
192 void (*link_change)(struct net_device *dev);
193
194 /* If the hardware can do scanning, assign _all_ three of these callbacks.
195 * When the scan finishes, call ieee80211softmac_scan_finished().
196 */
197
198 /* when called, start_scan is guaranteed to not be called again
199 * until you call ieee80211softmac_scan_finished.
200 * Return 0 if scanning could start, error otherwise.
201 * SOFTMAC AUTHORS: don't call this, use ieee80211softmac_start_scan */
202 int (*start_scan)(struct net_device *dev);
203 /* this should block until after ieee80211softmac_scan_finished was called
204 * SOFTMAC AUTHORS: don't call this, use ieee80211softmac_wait_for_scan */
205 void (*wait_for_scan)(struct net_device *dev);
206 /* stop_scan aborts a scan, but is asynchronous.
207 * if you want to wait for it too, use wait_for_scan
208 * SOFTMAC AUTHORS: don't call this, use ieee80211softmac_stop_scan */
209 void (*stop_scan)(struct net_device *dev);
210
211 /* we'll need something about beacons here too, for AP or ad-hoc modes */
212
213 /* Transmission rates to be used by the driver.
214 * The SoftMAC figures out the best possible rates.
215 * The driver just needs to read them.
216 */
217 struct ieee80211softmac_txrates txrates;
Daniel Drake5acd0c412006-07-18 21:33:27 +0100218
219 /* If the driver needs to do stuff on TX rate changes, assign this
220 * callback. See IEEE80211SOFTMAC_TXRATECHG for change flags. */
Johannes Berg370121e2006-01-04 16:32:16 +0100221 void (*txrates_change)(struct net_device *dev,
Daniel Drake5acd0c412006-07-18 21:33:27 +0100222 u32 changes);
223
224 /* If the driver needs to do stuff when BSS properties change, assign
225 * this callback. see IEEE80211SOFTMAC_BSSINFOCHG for change flags. */
226 void (*bssinfo_change)(struct net_device *dev,
227 u32 changes);
Johannes Berg370121e2006-01-04 16:32:16 +0100228
229 /* private stuff follows */
230 /* this lock protects this structure */
231 spinlock_t lock;
232
233 /* couple of flags */
234 u8 scanning:1, /* protects scanning from being done multiple times at once */
Daniel Draked57336e2006-04-30 22:09:07 +0100235 associated:1,
236 running:1;
Johannes Berg370121e2006-01-04 16:32:16 +0100237
Johannes Berg370121e2006-01-04 16:32:16 +0100238 struct ieee80211softmac_scaninfo *scaninfo;
239 struct ieee80211softmac_assoc_info associnfo;
Daniel Drake5acd0c412006-07-18 21:33:27 +0100240 struct ieee80211softmac_bss_info bssinfo;
Johannes Berg370121e2006-01-04 16:32:16 +0100241
242 struct list_head auth_queue;
243 struct list_head events;
244
245 struct ieee80211softmac_ratesinfo ratesinfo;
246 int txrate_badness;
247
248 /* WPA stuff */
249 struct ieee80211softmac_wpa wpa;
250
251 /* we need to keep a list of network structs we copied */
252 struct list_head network_list;
253
254 /* This must be the last item so that it points to the data
255 * allocated beyond this structure by alloc_ieee80211 */
256 u8 priv[0];
257};
258
259extern void ieee80211softmac_scan_finished(struct ieee80211softmac_device *sm);
260
261static inline void * ieee80211softmac_priv(struct net_device *dev)
262{
263 return ((struct ieee80211softmac_device *)ieee80211_priv(dev))->priv;
264}
265
266extern struct net_device * alloc_ieee80211softmac(int sizeof_priv);
267extern void free_ieee80211softmac(struct net_device *dev);
268
269/* Call this function if you detect a lost TX fragment.
270 * (If the device indicates failure of ACK RX, for example.)
271 * It is wise to call this function if you are able to detect lost packets,
272 * because it contributes to the TX Rates auto adjustment.
273 */
274extern void ieee80211softmac_fragment_lost(struct net_device *dev,
275 u16 wireless_sequence_number);
276/* Call this function before _start to tell the softmac what rates
277 * the hw supports. The rates parameter is copied, so you can
278 * free it right after calling this function.
279 * Note that the rates need to be sorted. */
280extern void ieee80211softmac_set_rates(struct net_device *dev, u8 count, u8 *rates);
281
Daniel Drake8462fe32006-05-01 22:45:50 +0100282/* Helper function which advises you the rate at which a frame should be
283 * transmitted at. */
284static inline u8 ieee80211softmac_suggest_txrate(struct ieee80211softmac_device *mac,
285 int is_multicast,
286 int is_mgt)
287{
288 struct ieee80211softmac_txrates *txrates = &mac->txrates;
289
290 if (!mac->associated)
291 return txrates->mgt_mcast_rate;
292
293 /* We are associated, sending unicast frame */
294 if (!is_multicast)
295 return txrates->default_rate;
296
297 /* We are associated, sending multicast frame */
298 if (is_mgt)
299 return txrates->mgt_mcast_rate;
300 else
301 return txrates->mcast_rate;
302}
303
Daniel Drake5acd0c412006-07-18 21:33:27 +0100304/* Helper function which advises you when it is safe to transmit with short
305 * preamble.
306 * You should only call this function when transmitting at CCK rates. */
307static inline int ieee80211softmac_short_preamble_ok(struct ieee80211softmac_device *mac,
308 int is_multicast,
309 int is_mgt)
310{
311 return (is_multicast && is_mgt) ? 0 : mac->bssinfo.short_preamble;
312}
313
314/* Helper function which advises you whether protection (e.g. self-CTS) is
315 * needed. 1 = protection needed, 0 = no protection needed
316 * Only use this function when transmitting with OFDM modulation. */
317static inline int ieee80211softmac_protection_needed(struct ieee80211softmac_device *mac)
318{
319 return mac->bssinfo.use_protection;
320}
321
Johannes Berg370121e2006-01-04 16:32:16 +0100322/* Start the SoftMAC. Call this after you initialized the device
323 * and it is ready to run.
324 */
325extern void ieee80211softmac_start(struct net_device *dev);
326/* Stop the SoftMAC. Call this before you shutdown the device. */
327extern void ieee80211softmac_stop(struct net_device *dev);
328
329/*
330 * Event system
331 */
332
333/* valid event types */
334#define IEEE80211SOFTMAC_EVENT_ANY -1 /*private use only*/
335#define IEEE80211SOFTMAC_EVENT_SCAN_FINISHED 0
336#define IEEE80211SOFTMAC_EVENT_ASSOCIATED 1
337#define IEEE80211SOFTMAC_EVENT_ASSOCIATE_FAILED 2
338#define IEEE80211SOFTMAC_EVENT_ASSOCIATE_TIMEOUT 3
339#define IEEE80211SOFTMAC_EVENT_AUTHENTICATED 4
340#define IEEE80211SOFTMAC_EVENT_AUTH_FAILED 5
341#define IEEE80211SOFTMAC_EVENT_AUTH_TIMEOUT 6
342#define IEEE80211SOFTMAC_EVENT_ASSOCIATE_NET_NOT_FOUND 7
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200343#define IEEE80211SOFTMAC_EVENT_DISASSOCIATED 8
Johannes Berg370121e2006-01-04 16:32:16 +0100344/* keep this updated! */
Johannes Bergfeeeaa82006-04-13 02:42:42 +0200345#define IEEE80211SOFTMAC_EVENT_LAST 8
Johannes Berg370121e2006-01-04 16:32:16 +0100346/*
347 * If you want to be notified of certain events, you can call
348 * ieee80211softmac_notify[_atomic] with
349 * - event set to one of the constants below
350 * - fun set to a function pointer of the appropriate type
351 * - context set to the context data you want passed
352 * The return value is 0, or an error.
353 */
Daniel Drake6ae15df2006-06-01 15:37:22 +0100354typedef void (*notify_function_ptr)(struct net_device *dev, int event_type, void *context);
Johannes Berg370121e2006-01-04 16:32:16 +0100355
356#define ieee80211softmac_notify(dev, event, fun, context) ieee80211softmac_notify_gfp(dev, event, fun, context, GFP_KERNEL);
357#define ieee80211softmac_notify_atomic(dev, event, fun, context) ieee80211softmac_notify_gfp(dev, event, fun, context, GFP_ATOMIC);
358
359extern int ieee80211softmac_notify_gfp(struct net_device *dev,
360 int event, notify_function_ptr fun, void *context, gfp_t gfp_mask);
361
362/* To clear pending work (for ifconfig down, etc.) */
363extern void
364ieee80211softmac_clear_pending_work(struct ieee80211softmac_device *sm);
365
366#endif /* IEEE80211SOFTMAC_H_ */