blob: ebdec7106d6365af4b25c16f3d7c591322e4fd73 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
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 version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <net/mac80211.h>
12#include <net/ieee80211_radiotap.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/netdevice.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/if_arp.h>
21#include <linux/wireless.h>
22#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070023#include <linux/bitmap.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070024#include <net/net_namespace.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/cfg80211.h>
26
Jiri Bencf0706e82007-05-05 11:45:53 -070027#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040028#include "rate.h"
Luis Carlos Cobof7a92142008-02-23 15:17:18 +010029#include "mesh.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070030#include "wep.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070031#include "wme.h"
32#include "aes_ccm.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040033#include "led.h"
Michael Wue0eb6852007-09-18 17:29:21 -040034#include "cfg.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070035#include "debugfs.h"
36#include "debugfs_netdev.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070037
Johannes Bergb306f452007-07-10 19:32:08 +020038/*
39 * For seeing transmitted packets on monitor interfaces
40 * we have a radiotap header too.
41 */
42struct ieee80211_tx_status_rtap_hdr {
43 struct ieee80211_radiotap_header hdr;
44 __le16 tx_flags;
45 u8 data_retries;
46} __attribute__ ((packed));
47
Johannes Bergb2c258f2007-07-27 15:43:23 +020048/* common interface routines */
Jiri Bencf0706e82007-05-05 11:45:53 -070049
Stephen Hemmingerb95cce32007-09-26 22:13:38 -070050static int header_parse_80211(const struct sk_buff *skb, unsigned char *haddr)
Jiri Bencf0706e82007-05-05 11:45:53 -070051{
Johannes Bergb2c258f2007-07-27 15:43:23 +020052 memcpy(haddr, skb_mac_header(skb) + 10, ETH_ALEN); /* addr2 */
53 return ETH_ALEN;
Jiri Bencf0706e82007-05-05 11:45:53 -070054}
55
Johannes Berg4150c572007-09-17 01:29:23 -040056/* must be called under mdev tx lock */
57static void ieee80211_configure_filter(struct ieee80211_local *local)
58{
59 unsigned int changed_flags;
60 unsigned int new_flags = 0;
61
Johannes Berg53918992007-09-26 15:19:47 +020062 if (atomic_read(&local->iff_promiscs))
Johannes Berg4150c572007-09-17 01:29:23 -040063 new_flags |= FIF_PROMISC_IN_BSS;
64
Johannes Berg53918992007-09-26 15:19:47 +020065 if (atomic_read(&local->iff_allmultis))
Johannes Berg4150c572007-09-17 01:29:23 -040066 new_flags |= FIF_ALLMULTI;
67
68 if (local->monitors)
Michael Wu8cc9a732008-01-31 19:48:23 +010069 new_flags |= FIF_BCN_PRBRESP_PROMISC;
70
71 if (local->fif_fcsfail)
72 new_flags |= FIF_FCSFAIL;
73
74 if (local->fif_plcpfail)
75 new_flags |= FIF_PLCPFAIL;
76
77 if (local->fif_control)
78 new_flags |= FIF_CONTROL;
79
80 if (local->fif_other_bss)
81 new_flags |= FIF_OTHER_BSS;
Johannes Berg4150c572007-09-17 01:29:23 -040082
83 changed_flags = local->filter_flags ^ new_flags;
84
85 /* be a bit nasty */
86 new_flags |= (1<<31);
87
88 local->ops->configure_filter(local_to_hw(local),
89 changed_flags, &new_flags,
90 local->mdev->mc_count,
91 local->mdev->mc_list);
92
93 WARN_ON(new_flags & (1<<31));
94
95 local->filter_flags = new_flags & ~(1<<31);
96}
97
Johannes Bergb2c258f2007-07-27 15:43:23 +020098/* master interface */
Jiri Bencf0706e82007-05-05 11:45:53 -070099
100static int ieee80211_master_open(struct net_device *dev)
101{
102 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
103 struct ieee80211_sub_if_data *sdata;
104 int res = -EOPNOTSUPP;
105
Johannes Berg79010422007-09-18 17:29:21 -0400106 /* we hold the RTNL here so can safely walk the list */
107 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200108 if (netif_running(sdata->dev)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700109 res = 0;
110 break;
111 }
112 }
Johannes Berg36d68252008-05-15 12:55:26 +0200113
114 if (res)
115 return res;
116
David S. Miller51cb6db2008-07-15 03:34:57 -0700117 netif_tx_start_all_queues(local->mdev);
Johannes Berg36d68252008-05-15 12:55:26 +0200118
119 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700120}
121
122static int ieee80211_master_stop(struct net_device *dev)
123{
124 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
125 struct ieee80211_sub_if_data *sdata;
126
Johannes Berg79010422007-09-18 17:29:21 -0400127 /* we hold the RTNL here so can safely walk the list */
128 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg3e122be2008-07-09 14:40:34 +0200129 if (netif_running(sdata->dev))
Jiri Bencf0706e82007-05-05 11:45:53 -0700130 dev_close(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700131
132 return 0;
133}
134
Johannes Berg4150c572007-09-17 01:29:23 -0400135static void ieee80211_master_set_multicast_list(struct net_device *dev)
136{
137 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
138
139 ieee80211_configure_filter(local);
140}
141
Johannes Bergb2c258f2007-07-27 15:43:23 +0200142/* regular interfaces */
143
144static int ieee80211_change_mtu(struct net_device *dev, int new_mtu)
145{
Luis Carlos Cobof7a92142008-02-23 15:17:18 +0100146 int meshhdrlen;
147 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
148
149 meshhdrlen = (sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT) ? 5 : 0;
150
Johannes Bergb2c258f2007-07-27 15:43:23 +0200151 /* FIX: what would be proper limits for MTU?
152 * This interface uses 802.3 frames. */
Luis Carlos Cobof7a92142008-02-23 15:17:18 +0100153 if (new_mtu < 256 ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200154 new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6 - meshhdrlen) {
Johannes Bergb2c258f2007-07-27 15:43:23 +0200155 return -EINVAL;
156 }
157
158#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
159 printk(KERN_DEBUG "%s: setting MTU %d\n", dev->name, new_mtu);
160#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
161 dev->mtu = new_mtu;
162 return 0;
163}
164
165static inline int identical_mac_addr_allowed(int type1, int type2)
166{
167 return (type1 == IEEE80211_IF_TYPE_MNTR ||
168 type2 == IEEE80211_IF_TYPE_MNTR ||
169 (type1 == IEEE80211_IF_TYPE_AP &&
170 type2 == IEEE80211_IF_TYPE_WDS) ||
171 (type1 == IEEE80211_IF_TYPE_WDS &&
172 (type2 == IEEE80211_IF_TYPE_WDS ||
173 type2 == IEEE80211_IF_TYPE_AP)) ||
174 (type1 == IEEE80211_IF_TYPE_AP &&
175 type2 == IEEE80211_IF_TYPE_VLAN) ||
176 (type1 == IEEE80211_IF_TYPE_VLAN &&
177 (type2 == IEEE80211_IF_TYPE_AP ||
178 type2 == IEEE80211_IF_TYPE_VLAN)));
179}
180
Johannes Bergb2c258f2007-07-27 15:43:23 +0200181static int ieee80211_open(struct net_device *dev)
182{
183 struct ieee80211_sub_if_data *sdata, *nsdata;
184 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Tomas Winklerfc32f922008-07-03 01:27:13 +0300185 struct sta_info *sta;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200186 struct ieee80211_if_init_conf conf;
Tomas Winklerfc32f922008-07-03 01:27:13 +0300187 u32 changed = 0;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200188 int res;
Michael Bueschceffefd2008-02-10 14:16:52 +0100189 bool need_hw_reconfig = 0;
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700190 u8 null_addr[ETH_ALEN] = {0};
Johannes Bergb2c258f2007-07-27 15:43:23 +0200191
192 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400193
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700194 /* fail early if user set an invalid address */
195 if (compare_ether_addr(dev->dev_addr, null_addr) &&
196 !is_valid_ether_addr(dev->dev_addr))
197 return -EADDRNOTAVAIL;
198
Johannes Berg79010422007-09-18 17:29:21 -0400199 /* we hold the RTNL here so can safely walk the list */
200 list_for_each_entry(nsdata, &local->interfaces, list) {
Johannes Bergb2c258f2007-07-27 15:43:23 +0200201 struct net_device *ndev = nsdata->dev;
202
Johannes Berg3e122be2008-07-09 14:40:34 +0200203 if (ndev != dev && netif_running(ndev)) {
Johannes Berg665e8aa2008-02-21 01:10:07 +0100204 /*
205 * Allow only a single IBSS interface to be up at any
206 * time. This is restricted because beacon distribution
207 * cannot work properly if both are in the same IBSS.
208 *
209 * To remove this restriction we'd have to disallow them
210 * from setting the same SSID on different IBSS interfaces
211 * belonging to the same hardware. Then, however, we're
212 * faced with having to adopt two different TSF timers...
213 */
214 if (sdata->vif.type == IEEE80211_IF_TYPE_IBSS &&
215 nsdata->vif.type == IEEE80211_IF_TYPE_IBSS)
216 return -EBUSY;
217
218 /*
Johannes Berg665e8aa2008-02-21 01:10:07 +0100219 * The remaining checks are only performed for interfaces
220 * with the same MAC address.
221 */
222 if (compare_ether_addr(dev->dev_addr, ndev->dev_addr))
223 continue;
224
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400225 /*
226 * check whether it may have the same address
227 */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100228 if (!identical_mac_addr_allowed(sdata->vif.type,
229 nsdata->vif.type))
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400230 return -ENOTUNIQ;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400231
232 /*
233 * can only add VLANs to enabled APs
234 */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100235 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN &&
Johannes Berg665e8aa2008-02-21 01:10:07 +0100236 nsdata->vif.type == IEEE80211_IF_TYPE_AP)
Johannes Berg3e122be2008-07-09 14:40:34 +0200237 sdata->bss = &nsdata->u.ap;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200238 }
239 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200240
Johannes Berg51fb61e2007-12-19 01:31:27 +0100241 switch (sdata->vif.type) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400242 case IEEE80211_IF_TYPE_WDS:
Johannes Berge94e1062008-04-24 14:16:36 +0200243 if (!is_valid_ether_addr(sdata->u.wds.remote_addr))
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400244 return -ENOLINK;
245 break;
246 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg3e122be2008-07-09 14:40:34 +0200247 if (!sdata->bss)
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400248 return -ENOLINK;
Johannes Berg3e122be2008-07-09 14:40:34 +0200249 list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400250 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +0200251 case IEEE80211_IF_TYPE_AP:
Johannes Berg3e122be2008-07-09 14:40:34 +0200252 sdata->bss = &sdata->u.ap;
253 break;
Luis Carlos Cobo8dbc1722008-08-06 13:17:54 +0200254 case IEEE80211_IF_TYPE_MESH_POINT:
Johannes Berg472dbc42008-09-11 00:01:49 +0200255 if (!ieee80211_vif_is_mesh(&sdata->vif))
256 break;
Luis Carlos Cobo8dbc1722008-08-06 13:17:54 +0200257 /* mesh ifaces must set allmulti to forward mcast traffic */
258 atomic_inc(&local->iff_allmultis);
259 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +0200260 case IEEE80211_IF_TYPE_STA:
261 case IEEE80211_IF_TYPE_MNTR:
262 case IEEE80211_IF_TYPE_IBSS:
263 /* no special treatment */
264 break;
Johannes Berga2897552007-09-28 14:01:25 +0200265 case IEEE80211_IF_TYPE_INVALID:
266 /* cannot happen */
267 WARN_ON(1);
268 break;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400269 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200270
Johannes Bergb2c258f2007-07-27 15:43:23 +0200271 if (local->open_count == 0) {
272 res = 0;
Johannes Berg4150c572007-09-17 01:29:23 -0400273 if (local->ops->start)
274 res = local->ops->start(local_to_hw(local));
275 if (res)
Johannes Berg3e122be2008-07-09 14:40:34 +0200276 goto err_del_bss;
Michael Bueschceffefd2008-02-10 14:16:52 +0100277 need_hw_reconfig = 1;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100278 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200279 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200280
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700281 /*
282 * Check all interfaces and copy the hopefully now-present
283 * MAC address to those that have the special null one.
284 */
285 list_for_each_entry(nsdata, &local->interfaces, list) {
286 struct net_device *ndev = nsdata->dev;
287
288 /*
289 * No need to check netif_running since we do not allow
290 * it to start up with this invalid address.
291 */
292 if (compare_ether_addr(null_addr, ndev->dev_addr) == 0)
293 memcpy(ndev->dev_addr,
294 local->hw.wiphy->perm_addr,
295 ETH_ALEN);
296 }
297
298 if (compare_ether_addr(null_addr, local->mdev->dev_addr) == 0)
299 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr,
300 ETH_ALEN);
301
302 /*
303 * Validate the MAC address for this device.
304 */
305 if (!is_valid_ether_addr(dev->dev_addr)) {
306 if (!local->open_count && local->ops->stop)
307 local->ops->stop(local_to_hw(local));
308 return -EADDRNOTAVAIL;
309 }
310
Johannes Berg51fb61e2007-12-19 01:31:27 +0100311 switch (sdata->vif.type) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400312 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400313 /* no need to tell driver */
314 break;
Johannes Berg4150c572007-09-17 01:29:23 -0400315 case IEEE80211_IF_TYPE_MNTR:
Michael Wu3d30d942008-01-31 19:48:27 +0100316 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
317 local->cooked_mntrs++;
318 break;
319 }
320
Johannes Berg4150c572007-09-17 01:29:23 -0400321 /* must be before the call to ieee80211_configure_filter */
Johannes Bergb2c258f2007-07-27 15:43:23 +0200322 local->monitors++;
Michael Wu8cc9a732008-01-31 19:48:23 +0100323 if (local->monitors == 1)
Johannes Berg4150c572007-09-17 01:29:23 -0400324 local->hw.conf.flags |= IEEE80211_CONF_RADIOTAP;
Michael Wu8cc9a732008-01-31 19:48:23 +0100325
326 if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL)
327 local->fif_fcsfail++;
328 if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL)
329 local->fif_plcpfail++;
330 if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL)
331 local->fif_control++;
332 if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS)
333 local->fif_other_bss++;
334
David S. Millerb9e40852008-07-15 00:15:08 -0700335 netif_addr_lock_bh(local->mdev);
Michael Wu8cc9a732008-01-31 19:48:23 +0100336 ieee80211_configure_filter(local);
David S. Millerb9e40852008-07-15 00:15:08 -0700337 netif_addr_unlock_bh(local->mdev);
Johannes Berg4150c572007-09-17 01:29:23 -0400338 break;
339 case IEEE80211_IF_TYPE_STA:
340 case IEEE80211_IF_TYPE_IBSS:
341 sdata->u.sta.flags &= ~IEEE80211_STA_PREV_BSSID_SET;
342 /* fall through */
343 default:
Johannes Berg32bfd352007-12-19 01:31:26 +0100344 conf.vif = &sdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100345 conf.type = sdata->vif.type;
Johannes Berg4150c572007-09-17 01:29:23 -0400346 conf.mac_addr = dev->dev_addr;
347 res = local->ops->add_interface(local_to_hw(local), &conf);
Johannes Berg4150c572007-09-17 01:29:23 -0400348 if (res)
Johannes Berg636c5d42008-04-24 14:18:37 +0200349 goto err_stop;
Johannes Berg4150c572007-09-17 01:29:23 -0400350
Johannes Berg9d139c82008-07-09 14:40:37 +0200351 if (ieee80211_vif_is_mesh(&sdata->vif))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200352 ieee80211_start_mesh(sdata);
353 changed |= ieee80211_reset_erp_info(sdata);
Tomas Winklerfc32f922008-07-03 01:27:13 +0300354 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg11a843b2007-08-28 17:01:55 -0400355 ieee80211_enable_keys(sdata);
Johannes Berg4150c572007-09-17 01:29:23 -0400356
Johannes Berg51fb61e2007-12-19 01:31:27 +0100357 if (sdata->vif.type == IEEE80211_IF_TYPE_STA &&
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200358 !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
Johannes Berg4150c572007-09-17 01:29:23 -0400359 netif_carrier_off(dev);
360 else
361 netif_carrier_on(dev);
Daniel Draked9430a32007-07-27 15:43:24 +0200362 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200363
Johannes Berg636c5d42008-04-24 14:18:37 +0200364 if (sdata->vif.type == IEEE80211_IF_TYPE_WDS) {
365 /* Create STA entry for the WDS peer */
366 sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr,
367 GFP_KERNEL);
368 if (!sta) {
369 res = -ENOMEM;
370 goto err_del_interface;
371 }
372
Johannes Berg07346f812008-05-03 01:02:02 +0200373 /* no locking required since STA is not live yet */
Johannes Berg636c5d42008-04-24 14:18:37 +0200374 sta->flags |= WLAN_STA_AUTHORIZED;
375
376 res = sta_info_insert(sta);
377 if (res) {
378 /* STA has been freed */
379 goto err_del_interface;
380 }
381 }
382
Johannes Berg4150c572007-09-17 01:29:23 -0400383 if (local->open_count == 0) {
384 res = dev_open(local->mdev);
385 WARN_ON(res);
Johannes Berg636c5d42008-04-24 14:18:37 +0200386 if (res)
387 goto err_del_interface;
Johannes Berg4150c572007-09-17 01:29:23 -0400388 tasklet_enable(&local->tx_pending_tasklet);
389 tasklet_enable(&local->tasklet);
390 }
391
Johannes Bergc1428b32007-11-16 02:54:53 +0100392 /*
393 * set_multicast_list will be invoked by the networking core
394 * which will check whether any increments here were done in
395 * error and sync them down to the hardware as filter flags.
396 */
397 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
398 atomic_inc(&local->iff_allmultis);
399
400 if (sdata->flags & IEEE80211_SDATA_PROMISC)
401 atomic_inc(&local->iff_promiscs);
402
Johannes Berg4150c572007-09-17 01:29:23 -0400403 local->open_count++;
Johannes Berg5825fe102008-09-09 12:56:01 +0200404 if (need_hw_reconfig) {
Michael Bueschceffefd2008-02-10 14:16:52 +0100405 ieee80211_hw_config(local);
Johannes Berg5825fe102008-09-09 12:56:01 +0200406 /*
407 * set default queue parameters so drivers don't
408 * need to initialise the hardware if the hardware
409 * doesn't start up with sane defaults
410 */
411 ieee80211_set_wmm_default(sdata);
412 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200413
Jan Niehusmann64f851e2008-03-23 20:23:56 +0100414 /*
415 * ieee80211_sta_work is disabled while network interface
416 * is down. Therefore, some configuration changes may not
417 * yet be effective. Trigger execution of ieee80211_sta_work
418 * to fix this.
419 */
Johannes Berg988c0f72008-04-17 19:21:22 +0200420 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
421 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jan Niehusmann64f851e2008-03-23 20:23:56 +0100422 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
423 queue_work(local->hw.workqueue, &ifsta->work);
424 }
425
David S. Miller51cb6db2008-07-15 03:34:57 -0700426 netif_tx_start_all_queues(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400427
Johannes Bergb2c258f2007-07-27 15:43:23 +0200428 return 0;
Johannes Berg636c5d42008-04-24 14:18:37 +0200429 err_del_interface:
430 local->ops->remove_interface(local_to_hw(local), &conf);
431 err_stop:
432 if (!local->open_count && local->ops->stop)
433 local->ops->stop(local_to_hw(local));
Johannes Berg3e122be2008-07-09 14:40:34 +0200434 err_del_bss:
435 sdata->bss = NULL;
436 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
437 list_del(&sdata->u.vlan.list);
Johannes Berg636c5d42008-04-24 14:18:37 +0200438 return res;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200439}
440
Johannes Berg4150c572007-09-17 01:29:23 -0400441static int ieee80211_stop(struct net_device *dev)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200442{
Johannes Berg44213b52008-02-25 16:27:49 +0100443 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
444 struct ieee80211_local *local = sdata->local;
Johannes Berg4150c572007-09-17 01:29:23 -0400445 struct ieee80211_if_init_conf conf;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200446 struct sta_info *sta;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200447
Johannes Berg44213b52008-02-25 16:27:49 +0100448 /*
449 * Stop TX on this interface first.
450 */
David S. Miller51cb6db2008-07-15 03:34:57 -0700451 netif_tx_stop_all_queues(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400452
Johannes Berg44213b52008-02-25 16:27:49 +0100453 /*
454 * Now delete all active aggregation sessions.
455 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100456 rcu_read_lock();
457
458 list_for_each_entry_rcu(sta, &local->sta_list, list) {
459 if (sta->sdata == sdata)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200460 ieee80211_sta_tear_down_BA_sessions(sdata, sta->addr);
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200461 }
462
Johannes Bergd0709a62008-02-25 16:27:46 +0100463 rcu_read_unlock();
464
Johannes Berg44213b52008-02-25 16:27:49 +0100465 /*
466 * Remove all stations associated with this interface.
467 *
468 * This must be done before calling ops->remove_interface()
469 * because otherwise we can later invoke ops->sta_notify()
470 * whenever the STAs are removed, and that invalidates driver
471 * assumptions about always getting a vif pointer that is valid
472 * (because if we remove a STA after ops->remove_interface()
473 * the driver will have removed the vif info already!)
474 *
475 * We could relax this and only unlink the stations from the
476 * hash table and list but keep them on a per-sdata list that
477 * will be inserted back again when the interface is brought
478 * up again, but I don't currently see a use case for that,
479 * except with WDS which gets a STA entry created when it is
480 * brought up.
481 */
482 sta_info_flush(local, sdata);
Johannes Berg4150c572007-09-17 01:29:23 -0400483
Johannes Bergc1428b32007-11-16 02:54:53 +0100484 /*
485 * Don't count this interface for promisc/allmulti while it
486 * is down. dev_mc_unsync() will invoke set_multicast_list
487 * on the master interface which will sync these down to the
488 * hardware as filter flags.
489 */
490 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
491 atomic_dec(&local->iff_allmultis);
492
493 if (sdata->flags & IEEE80211_SDATA_PROMISC)
494 atomic_dec(&local->iff_promiscs);
495
Johannes Berg4150c572007-09-17 01:29:23 -0400496 dev_mc_unsync(local->mdev, dev);
497
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100498 /* APs need special treatment */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100499 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400500 struct ieee80211_sub_if_data *vlan, *tmp;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100501 struct beacon_data *old_beacon = sdata->u.ap.beacon;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400502
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100503 /* remove beacon */
504 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
505 synchronize_rcu();
506 kfree(old_beacon);
507
508 /* down all dependent devices, that is VLANs */
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400509 list_for_each_entry_safe(vlan, tmp, &sdata->u.ap.vlans,
510 u.vlan.list)
511 dev_close(vlan->dev);
512 WARN_ON(!list_empty(&sdata->u.ap.vlans));
513 }
514
Johannes Berg4150c572007-09-17 01:29:23 -0400515 local->open_count--;
516
Johannes Berg51fb61e2007-12-19 01:31:27 +0100517 switch (sdata->vif.type) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400518 case IEEE80211_IF_TYPE_VLAN:
519 list_del(&sdata->u.vlan.list);
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400520 /* no need to tell driver */
521 break;
Johannes Berg4150c572007-09-17 01:29:23 -0400522 case IEEE80211_IF_TYPE_MNTR:
Michael Wu3d30d942008-01-31 19:48:27 +0100523 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
524 local->cooked_mntrs--;
525 break;
526 }
527
Johannes Berg4150c572007-09-17 01:29:23 -0400528 local->monitors--;
Michael Wu8cc9a732008-01-31 19:48:23 +0100529 if (local->monitors == 0)
Michael Wu8b393f12007-11-28 01:57:08 -0500530 local->hw.conf.flags &= ~IEEE80211_CONF_RADIOTAP;
Michael Wu8cc9a732008-01-31 19:48:23 +0100531
532 if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL)
533 local->fif_fcsfail--;
534 if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL)
535 local->fif_plcpfail--;
536 if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL)
537 local->fif_control--;
538 if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS)
539 local->fif_other_bss--;
540
David S. Millerb9e40852008-07-15 00:15:08 -0700541 netif_addr_lock_bh(local->mdev);
Michael Wu8cc9a732008-01-31 19:48:23 +0100542 ieee80211_configure_filter(local);
David S. Millerb9e40852008-07-15 00:15:08 -0700543 netif_addr_unlock_bh(local->mdev);
Johannes Berg4150c572007-09-17 01:29:23 -0400544 break;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200545 case IEEE80211_IF_TYPE_STA:
546 case IEEE80211_IF_TYPE_IBSS:
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300547 sdata->u.sta.state = IEEE80211_STA_MLME_DISABLED;
Assaf Kraussad81b2f2008-06-04 20:27:59 +0300548 memset(sdata->u.sta.bssid, 0, ETH_ALEN);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200549 del_timer_sync(&sdata->u.sta.timer);
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400550 /*
Johannes Bergb7413432008-09-11 00:01:50 +0200551 * If the timer fired while we waited for it, it will have
552 * requeued the work. Now the work will be running again
553 * but will not rearm the timer again because it checks
554 * whether the interface is running, which, at this point,
555 * it no longer is.
556 */
557 cancel_work_sync(&sdata->u.sta.work);
558 /*
Johannes Berg79010422007-09-18 17:29:21 -0400559 * When we get here, the interface is marked down.
560 * Call synchronize_rcu() to wait for the RX path
561 * should it be using the interface and enqueuing
562 * frames at this very time on another CPU.
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400563 */
Johannes Berg79010422007-09-18 17:29:21 -0400564 synchronize_rcu();
Johannes Bergb2c258f2007-07-27 15:43:23 +0200565 skb_queue_purge(&sdata->u.sta.skb_queue);
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400566
Johannes Berg491775a2008-09-08 17:44:23 +0200567 if (local->scan_sdata == sdata) {
Zhu Yiece8edd2007-11-22 10:53:21 +0800568 if (!local->ops->hw_scan) {
569 local->sta_sw_scanning = 0;
570 cancel_delayed_work(&local->scan_work);
571 } else
572 local->sta_hw_scanning = 0;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200573 }
Zhu Yiece8edd2007-11-22 10:53:21 +0800574
Zhu Yia10605e2007-11-22 11:10:22 +0800575 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
576 kfree(sdata->u.sta.extra_ie);
577 sdata->u.sta.extra_ie = NULL;
578 sdata->u.sta.extra_ie_len = 0;
Johannes Berg4150c572007-09-17 01:29:23 -0400579 /* fall through */
Johannes Berg472dbc42008-09-11 00:01:49 +0200580 case IEEE80211_IF_TYPE_MESH_POINT:
581 if (ieee80211_vif_is_mesh(&sdata->vif)) {
582 /* allmulti is always set on mesh ifaces */
583 atomic_dec(&local->iff_allmultis);
584 ieee80211_stop_mesh(sdata);
585 }
586 /* fall through */
Johannes Berg4150c572007-09-17 01:29:23 -0400587 default:
Johannes Berg32bfd352007-12-19 01:31:26 +0100588 conf.vif = &sdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100589 conf.type = sdata->vif.type;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200590 conf.mac_addr = dev->dev_addr;
Johannes Berg4150c572007-09-17 01:29:23 -0400591 /* disable all keys for as long as this netdev is down */
592 ieee80211_disable_keys(sdata);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200593 local->ops->remove_interface(local_to_hw(local), &conf);
594 }
595
Johannes Berg3e122be2008-07-09 14:40:34 +0200596 sdata->bss = NULL;
597
Johannes Berg4150c572007-09-17 01:29:23 -0400598 if (local->open_count == 0) {
599 if (netif_running(local->mdev))
600 dev_close(local->mdev);
601
Johannes Berg4150c572007-09-17 01:29:23 -0400602 if (local->ops->stop)
603 local->ops->stop(local_to_hw(local));
604
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100605 ieee80211_led_radio(local, 0);
606
Ivo van Doornea0c9252008-07-03 19:02:44 +0200607 flush_workqueue(local->hw.workqueue);
608
Johannes Berg4150c572007-09-17 01:29:23 -0400609 tasklet_disable(&local->tx_pending_tasklet);
610 tasklet_disable(&local->tasklet);
611 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200612
613 return 0;
614}
615
Johannes Bergb2c258f2007-07-27 15:43:23 +0200616static void ieee80211_set_multicast_list(struct net_device *dev)
617{
618 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
619 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400620 int allmulti, promisc, sdata_allmulti, sdata_promisc;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200621
Johannes Berg4150c572007-09-17 01:29:23 -0400622 allmulti = !!(dev->flags & IFF_ALLMULTI);
623 promisc = !!(dev->flags & IFF_PROMISC);
Johannes Bergb52f2192007-11-16 01:49:11 +0100624 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
625 sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
Johannes Berg4150c572007-09-17 01:29:23 -0400626
627 if (allmulti != sdata_allmulti) {
628 if (dev->flags & IFF_ALLMULTI)
Johannes Berg53918992007-09-26 15:19:47 +0200629 atomic_inc(&local->iff_allmultis);
Johannes Berg4150c572007-09-17 01:29:23 -0400630 else
Johannes Berg53918992007-09-26 15:19:47 +0200631 atomic_dec(&local->iff_allmultis);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400632 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200633 }
Johannes Berg4150c572007-09-17 01:29:23 -0400634
635 if (promisc != sdata_promisc) {
636 if (dev->flags & IFF_PROMISC)
Johannes Berg53918992007-09-26 15:19:47 +0200637 atomic_inc(&local->iff_promiscs);
Johannes Berg4150c572007-09-17 01:29:23 -0400638 else
Johannes Berg53918992007-09-26 15:19:47 +0200639 atomic_dec(&local->iff_promiscs);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400640 sdata->flags ^= IEEE80211_SDATA_PROMISC;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200641 }
Johannes Berg4150c572007-09-17 01:29:23 -0400642
643 dev_mc_sync(local->mdev, dev);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200644}
645
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700646static const struct header_ops ieee80211_header_ops = {
647 .create = eth_header,
648 .parse = header_parse_80211,
649 .rebuild = eth_rebuild_header,
650 .cache = eth_header_cache,
651 .cache_update = eth_header_cache_update,
652};
653
Johannes Bergb2c258f2007-07-27 15:43:23 +0200654void ieee80211_if_setup(struct net_device *dev)
655{
656 ether_setup(dev);
657 dev->hard_start_xmit = ieee80211_subif_start_xmit;
658 dev->wireless_handlers = &ieee80211_iw_handler_def;
659 dev->set_multicast_list = ieee80211_set_multicast_list;
660 dev->change_mtu = ieee80211_change_mtu;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200661 dev->open = ieee80211_open;
662 dev->stop = ieee80211_stop;
Johannes Berg75636522008-07-09 14:40:35 +0200663 dev->destructor = free_netdev;
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700664 /* we will validate the address ourselves in ->open */
665 dev->validate_addr = NULL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200666}
667
Johannes Bergb2c258f2007-07-27 15:43:23 +0200668/* everything else */
669
Johannes Berg9d139c82008-07-09 14:40:37 +0200670int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200671{
Johannes Berg9d139c82008-07-09 14:40:37 +0200672 struct ieee80211_local *local = sdata->local;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200673 struct ieee80211_if_conf conf;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200674
Johannes Berg9d139c82008-07-09 14:40:37 +0200675 if (WARN_ON(!netif_running(sdata->dev)))
676 return 0;
677
678 if (!local->ops->config_interface)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200679 return 0;
680
681 memset(&conf, 0, sizeof(conf));
Johannes Berg9d139c82008-07-09 14:40:37 +0200682 conf.changed = changed;
683
Johannes Berg51fb61e2007-12-19 01:31:27 +0100684 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
685 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Johannes Berg4150c572007-09-17 01:29:23 -0400686 conf.bssid = sdata->u.sta.bssid;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200687 conf.ssid = sdata->u.sta.ssid;
688 conf.ssid_len = sdata->u.sta.ssid_len;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100689 } else if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Johannes Berg9d139c82008-07-09 14:40:37 +0200690 conf.bssid = sdata->dev->dev_addr;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200691 conf.ssid = sdata->u.ap.ssid;
692 conf.ssid_len = sdata->u.ap.ssid_len;
Johannes Berg9d139c82008-07-09 14:40:37 +0200693 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
694 u8 zero[ETH_ALEN] = { 0 };
695 conf.bssid = zero;
696 conf.ssid = zero;
697 conf.ssid_len = 0;
698 } else {
699 WARN_ON(1);
700 return -EINVAL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200701 }
Johannes Berg9d139c82008-07-09 14:40:37 +0200702
703 if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID)))
704 return -EINVAL;
705
706 if (WARN_ON(!conf.ssid && (changed & IEEE80211_IFCC_SSID)))
707 return -EINVAL;
708
Johannes Bergb2c258f2007-07-27 15:43:23 +0200709 return local->ops->config_interface(local_to_hw(local),
Johannes Berg32bfd352007-12-19 01:31:26 +0100710 &sdata->vif, &conf);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200711}
712
Johannes Bergb2c258f2007-07-27 15:43:23 +0200713int ieee80211_hw_config(struct ieee80211_local *local)
714{
Johannes Bergb2c258f2007-07-27 15:43:23 +0200715 struct ieee80211_channel *chan;
716 int ret = 0;
717
Johannes Berg8318d782008-01-24 19:38:38 +0100718 if (local->sta_sw_scanning)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200719 chan = local->scan_channel;
Johannes Berg8318d782008-01-24 19:38:38 +0100720 else
Johannes Bergb2c258f2007-07-27 15:43:23 +0200721 chan = local->oper_channel;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200722
Johannes Berg8318d782008-01-24 19:38:38 +0100723 local->hw.conf.channel = chan;
724
725 if (!local->hw.conf.power_level)
726 local->hw.conf.power_level = chan->max_power;
727 else
728 local->hw.conf.power_level = min(chan->max_power,
729 local->hw.conf.power_level);
730
731 local->hw.conf.max_antenna_gain = chan->max_antenna_gain;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200732
733#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg8318d782008-01-24 19:38:38 +0100734 printk(KERN_DEBUG "%s: HW CONFIG: freq=%d\n",
735 wiphy_name(local->hw.wiphy), chan->center_freq);
736#endif
Johannes Bergb2c258f2007-07-27 15:43:23 +0200737
Michael Bueschf7c4dae2007-09-24 18:41:49 +0200738 if (local->open_count)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200739 ret = local->ops->config(local_to_hw(local), &local->hw.conf);
740
741 return ret;
742}
743
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200744/**
Tomas Winkler38668c02008-03-28 16:33:32 -0700745 * ieee80211_handle_ht should be used only after legacy configuration
746 * has been determined namely band, as ht configuration depends upon
747 * the hardware's HT abilities for a _specific_ band.
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200748 */
Tomas Winkler38668c02008-03-28 16:33:32 -0700749u32 ieee80211_handle_ht(struct ieee80211_local *local, int enable_ht,
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200750 struct ieee80211_ht_info *req_ht_cap,
751 struct ieee80211_ht_bss_info *req_bss_cap)
752{
753 struct ieee80211_conf *conf = &local->hw.conf;
Johannes Berg8318d782008-01-24 19:38:38 +0100754 struct ieee80211_supported_band *sband;
Tomas Winkler38668c02008-03-28 16:33:32 -0700755 struct ieee80211_ht_info ht_conf;
756 struct ieee80211_ht_bss_info ht_bss_conf;
Tomas Winkler38668c02008-03-28 16:33:32 -0700757 u32 changed = 0;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800758 int i;
759 u8 max_tx_streams = IEEE80211_HT_CAP_MAX_STREAMS;
760 u8 tx_mcs_set_cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200761
Johannes Berg8318d782008-01-24 19:38:38 +0100762 sband = local->hw.wiphy->bands[conf->channel->band];
763
Tomas Winkler38668c02008-03-28 16:33:32 -0700764 memset(&ht_conf, 0, sizeof(struct ieee80211_ht_info));
765 memset(&ht_bss_conf, 0, sizeof(struct ieee80211_ht_bss_info));
766
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800767 /* HT is not supported */
768 if (!sband->ht_info.ht_supported) {
769 conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE;
770 goto out;
771 }
Tomas Winkler38668c02008-03-28 16:33:32 -0700772
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800773 /* disable HT */
774 if (!enable_ht) {
Tomas Winkler38668c02008-03-28 16:33:32 -0700775 if (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE)
776 changed |= BSS_CHANGED_HT;
777 conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800778 conf->ht_conf.ht_supported = 0;
779 goto out;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200780 }
781
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800782
783 if (!(conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE))
784 changed |= BSS_CHANGED_HT;
785
786 conf->flags |= IEEE80211_CONF_SUPPORT_HT_MODE;
787 ht_conf.ht_supported = 1;
788
789 ht_conf.cap = req_ht_cap->cap & sband->ht_info.cap;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800790 ht_conf.cap &= ~(IEEE80211_HT_CAP_SM_PS);
791 ht_conf.cap |= sband->ht_info.cap & IEEE80211_HT_CAP_SM_PS;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800792 ht_bss_conf.primary_channel = req_bss_cap->primary_channel;
793 ht_bss_conf.bss_cap = req_bss_cap->bss_cap;
794 ht_bss_conf.bss_op_mode = req_bss_cap->bss_op_mode;
795
796 ht_conf.ampdu_factor = req_ht_cap->ampdu_factor;
797 ht_conf.ampdu_density = req_ht_cap->ampdu_density;
798
799 /* Bits 96-100 */
800 tx_mcs_set_cap = sband->ht_info.supp_mcs_set[12];
801
802 /* configure suppoerted Tx MCS according to requested MCS
803 * (based in most cases on Rx capabilities of peer) and self
804 * Tx MCS capabilities (as defined by low level driver HW
805 * Tx capabilities) */
806 if (!(tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_DEFINED))
807 goto check_changed;
808
809 /* Counting from 0 therfore + 1 */
810 if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_RX_DIFF)
811 max_tx_streams = ((tx_mcs_set_cap &
812 IEEE80211_HT_CAP_MCS_TX_STREAMS) >> 2) + 1;
813
814 for (i = 0; i < max_tx_streams; i++)
815 ht_conf.supp_mcs_set[i] =
816 sband->ht_info.supp_mcs_set[i] &
817 req_ht_cap->supp_mcs_set[i];
818
819 if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_UEQM)
820 for (i = IEEE80211_SUPP_MCS_SET_UEQM;
821 i < IEEE80211_SUPP_MCS_SET_LEN; i++)
822 ht_conf.supp_mcs_set[i] =
823 sband->ht_info.supp_mcs_set[i] &
824 req_ht_cap->supp_mcs_set[i];
825
826check_changed:
827 /* if bss configuration changed store the new one */
828 if (memcmp(&conf->ht_conf, &ht_conf, sizeof(ht_conf)) ||
829 memcmp(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf))) {
830 changed |= BSS_CHANGED_HT;
831 memcpy(&conf->ht_conf, &ht_conf, sizeof(ht_conf));
832 memcpy(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf));
833 }
834out:
Tomas Winkler38668c02008-03-28 16:33:32 -0700835 return changed;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200836}
837
Johannes Berg471b3ef2007-12-28 14:32:58 +0100838void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
839 u32 changed)
Daniel Draked9430a32007-07-27 15:43:24 +0200840{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100841 struct ieee80211_local *local = sdata->local;
842
843 if (!changed)
844 return;
845
846 if (local->ops->bss_info_changed)
847 local->ops->bss_info_changed(local_to_hw(local),
848 &sdata->vif,
849 &sdata->bss_conf,
850 changed);
Daniel Draked9430a32007-07-27 15:43:24 +0200851}
852
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200853u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
Daniel Draked9430a32007-07-27 15:43:24 +0200854{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100855 sdata->bss_conf.use_cts_prot = 0;
856 sdata->bss_conf.use_short_preamble = 0;
Tomas Winklerfc32f922008-07-03 01:27:13 +0300857 return BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_ERP_PREAMBLE;
Daniel Draked9430a32007-07-27 15:43:24 +0200858}
859
Jiri Bencf0706e82007-05-05 11:45:53 -0700860void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +0200861 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700862{
863 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200864 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700865 int tmp;
866
867 skb->dev = local->mdev;
Jiri Bencf0706e82007-05-05 11:45:53 -0700868 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
Johannes Berge039fa42008-05-15 12:55:29 +0200869 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
Jiri Bencf0706e82007-05-05 11:45:53 -0700870 &local->skb_queue : &local->skb_queue_unreliable, skb);
871 tmp = skb_queue_len(&local->skb_queue) +
872 skb_queue_len(&local->skb_queue_unreliable);
873 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
874 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700875 dev_kfree_skb_irq(skb);
876 tmp--;
877 I802_DEBUG_INC(local->tx_status_drop);
878 }
879 tasklet_schedule(&local->tasklet);
880}
881EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
882
883static void ieee80211_tasklet_handler(unsigned long data)
884{
885 struct ieee80211_local *local = (struct ieee80211_local *) data;
886 struct sk_buff *skb;
887 struct ieee80211_rx_status rx_status;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200888 struct ieee80211_ra_tid *ra_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700889
890 while ((skb = skb_dequeue(&local->skb_queue)) ||
891 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
892 switch (skb->pkt_type) {
893 case IEEE80211_RX_MSG:
894 /* status is in skb->cb */
895 memcpy(&rx_status, skb->cb, sizeof(rx_status));
Johannes Berg51fb61e2007-12-19 01:31:27 +0100896 /* Clear skb->pkt_type in order to not confuse kernel
Jiri Bencf0706e82007-05-05 11:45:53 -0700897 * netstack. */
898 skb->pkt_type = 0;
899 __ieee80211_rx(local_to_hw(local), skb, &rx_status);
900 break;
901 case IEEE80211_TX_STATUS_MSG:
Jiri Bencf0706e82007-05-05 11:45:53 -0700902 skb->pkt_type = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200903 ieee80211_tx_status(local_to_hw(local), skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700904 break;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200905 case IEEE80211_DELBA_MSG:
906 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
907 ieee80211_stop_tx_ba_cb(local_to_hw(local),
908 ra_tid->ra, ra_tid->tid);
909 dev_kfree_skb(skb);
910 break;
911 case IEEE80211_ADDBA_MSG:
912 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
913 ieee80211_start_tx_ba_cb(local_to_hw(local),
914 ra_tid->ra, ra_tid->tid);
915 dev_kfree_skb(skb);
916 break ;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200917 default:
918 WARN_ON(1);
Jiri Bencf0706e82007-05-05 11:45:53 -0700919 dev_kfree_skb(skb);
920 break;
921 }
922 }
923}
924
Jiri Bencf0706e82007-05-05 11:45:53 -0700925/* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
926 * make a prepared TX frame (one that has been given to hw) to look like brand
927 * new IEEE 802.11 frame that is ready to go through TX processing again.
Johannes Bergd0f09802008-07-29 11:32:07 +0200928 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700929static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
930 struct ieee80211_key *key,
Johannes Berge039fa42008-05-15 12:55:29 +0200931 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700932{
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700933 unsigned int hdrlen, iv_len, mic_len;
934 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700935
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700936 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700937
938 if (!key)
939 goto no_key;
940
Johannes Berg8f20fc22007-08-28 17:01:54 -0400941 switch (key->conf.alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700942 case ALG_WEP:
943 iv_len = WEP_IV_LEN;
944 mic_len = WEP_ICV_LEN;
945 break;
946 case ALG_TKIP:
947 iv_len = TKIP_IV_LEN;
948 mic_len = TKIP_ICV_LEN;
949 break;
950 case ALG_CCMP:
951 iv_len = CCMP_HDR_LEN;
952 mic_len = CCMP_MIC_LEN;
953 break;
954 default:
955 goto no_key;
956 }
957
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700958 if (skb->len >= hdrlen + mic_len &&
Johannes Berg11a843b2007-08-28 17:01:55 -0400959 !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Jiri Bencf0706e82007-05-05 11:45:53 -0700960 skb_trim(skb, skb->len - mic_len);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700961 if (skb->len >= hdrlen + iv_len) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700962 memmove(skb->data + iv_len, skb->data, hdrlen);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700963 hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700964 }
965
966no_key:
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700967 if (ieee80211_is_data_qos(hdr->frame_control)) {
968 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
969 memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data,
970 hdrlen - IEEE80211_QOS_CTL_LEN);
971 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700972 }
973}
974
Johannes Bergd46e1442008-02-20 23:59:33 +0100975static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
976 struct sta_info *sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200977 struct sk_buff *skb)
Johannes Bergd46e1442008-02-20 23:59:33 +0100978{
Johannes Berge039fa42008-05-15 12:55:29 +0200979 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
980
Johannes Bergd46e1442008-02-20 23:59:33 +0100981 sta->tx_filtered_count++;
982
983 /*
984 * Clear the TX filter mask for this STA when sending the next
985 * packet. If the STA went to power save mode, this will happen
Yi Zhuf6d97102008-05-27 17:50:50 +0300986 * when it wakes up for the next time.
Johannes Bergd46e1442008-02-20 23:59:33 +0100987 */
Johannes Berg07346f812008-05-03 01:02:02 +0200988 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
Johannes Bergd46e1442008-02-20 23:59:33 +0100989
990 /*
991 * This code races in the following way:
992 *
993 * (1) STA sends frame indicating it will go to sleep and does so
994 * (2) hardware/firmware adds STA to filter list, passes frame up
995 * (3) hardware/firmware processes TX fifo and suppresses a frame
996 * (4) we get TX status before having processed the frame and
997 * knowing that the STA has gone to sleep.
998 *
999 * This is actually quite unlikely even when both those events are
1000 * processed from interrupts coming in quickly after one another or
1001 * even at the same time because we queue both TX status events and
1002 * RX frames to be processed by a tasklet and process them in the
1003 * same order that they were received or TX status last. Hence, there
1004 * is no race as long as the frame RX is processed before the next TX
1005 * status, which drivers can ensure, see below.
1006 *
1007 * Note that this can only happen if the hardware or firmware can
1008 * actually add STAs to the filter list, if this is done by the
1009 * driver in response to set_tim() (which will only reduce the race
1010 * this whole filtering tries to solve, not completely solve it)
1011 * this situation cannot happen.
1012 *
1013 * To completely solve this race drivers need to make sure that they
1014 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
1015 * functions and
1016 * (b) always process RX events before TX status events if ordering
1017 * can be unknown, for example with different interrupt status
1018 * bits.
1019 */
Johannes Berg07346f812008-05-03 01:02:02 +02001020 if (test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Bergd46e1442008-02-20 23:59:33 +01001021 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
Johannes Berge039fa42008-05-15 12:55:29 +02001022 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +01001023 skb_queue_tail(&sta->tx_filtered, skb);
1024 return;
1025 }
1026
Johannes Berg07346f812008-05-03 01:02:02 +02001027 if (!test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Berge039fa42008-05-15 12:55:29 +02001028 !(info->flags & IEEE80211_TX_CTL_REQUEUE)) {
Johannes Bergd46e1442008-02-20 23:59:33 +01001029 /* Software retry the packet once */
Johannes Berge039fa42008-05-15 12:55:29 +02001030 info->flags |= IEEE80211_TX_CTL_REQUEUE;
1031 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +01001032 dev_queue_xmit(skb);
1033 return;
1034 }
1035
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001036#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergd46e1442008-02-20 23:59:33 +01001037 if (net_ratelimit())
1038 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
1039 "queue_len=%d PS=%d @%lu\n",
1040 wiphy_name(local->hw.wiphy),
1041 skb_queue_len(&sta->tx_filtered),
Johannes Berg07346f812008-05-03 01:02:02 +02001042 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001043#endif
Johannes Bergd46e1442008-02-20 23:59:33 +01001044 dev_kfree_skb(skb);
1045}
1046
Johannes Berge039fa42008-05-15 12:55:29 +02001047void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001048{
1049 struct sk_buff *skb2;
1050 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1051 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +02001052 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -07001053 u16 frag, type;
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001054 __le16 fc;
Johannes Bergb306f452007-07-10 19:32:08 +02001055 struct ieee80211_tx_status_rtap_hdr *rthdr;
1056 struct ieee80211_sub_if_data *sdata;
Michael Wu3d30d942008-01-31 19:48:27 +01001057 struct net_device *prev_dev = NULL;
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001058 struct sta_info *sta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001059
Johannes Bergd0709a62008-02-25 16:27:46 +01001060 rcu_read_lock();
1061
Johannes Berge039fa42008-05-15 12:55:29 +02001062 if (info->status.excessive_retries) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001063 sta = sta_info_get(local, hdr->addr1);
1064 if (sta) {
Johannes Berg07346f812008-05-03 01:02:02 +02001065 if (test_sta_flags(sta, WLAN_STA_PS)) {
Johannes Bergd46e1442008-02-20 23:59:33 +01001066 /*
1067 * The STA is in power save mode, so assume
Jiri Bencf0706e82007-05-05 11:45:53 -07001068 * that this TX packet failed because of that.
1069 */
Johannes Berge039fa42008-05-15 12:55:29 +02001070 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001071 rcu_read_unlock();
Johannes Bergd46e1442008-02-20 23:59:33 +01001072 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001073 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001074 }
1075 }
1076
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001077 fc = hdr->frame_control;
1078
1079 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
1080 (ieee80211_is_data_qos(fc))) {
1081 u16 tid, ssn;
1082 u8 *qc;
1083 sta = sta_info_get(local, hdr->addr1);
1084 if (sta) {
1085 qc = ieee80211_get_qos_ctl(hdr);
1086 tid = qc[0] & 0xf;
1087 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
1088 & IEEE80211_SCTL_SEQ);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001089 ieee80211_send_bar(sta->sdata, hdr->addr1,
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001090 tid, ssn);
1091 }
1092 }
1093
Johannes Berge039fa42008-05-15 12:55:29 +02001094 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001095 sta = sta_info_get(local, hdr->addr1);
1096 if (sta) {
Johannes Berge039fa42008-05-15 12:55:29 +02001097 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001098 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001099 return;
1100 }
Mattias Nissler1abbe492007-12-20 13:50:07 +01001101 } else
Johannes Berge039fa42008-05-15 12:55:29 +02001102 rate_control_tx_status(local->mdev, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -07001103
Johannes Bergd0709a62008-02-25 16:27:46 +01001104 rcu_read_unlock();
1105
Jiri Bencf0706e82007-05-05 11:45:53 -07001106 ieee80211_led_tx(local, 0);
1107
1108 /* SNMP counters
1109 * Fragments are passed to low-level drivers as separate skbs, so these
1110 * are actually fragments, not frames. Update frame counters only for
1111 * the first fragment of the frame. */
1112
1113 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
1114 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
1115
Johannes Berge039fa42008-05-15 12:55:29 +02001116 if (info->flags & IEEE80211_TX_STAT_ACK) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001117 if (frag == 0) {
1118 local->dot11TransmittedFrameCount++;
1119 if (is_multicast_ether_addr(hdr->addr1))
1120 local->dot11MulticastTransmittedFrameCount++;
Johannes Berge039fa42008-05-15 12:55:29 +02001121 if (info->status.retry_count > 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001122 local->dot11RetryCount++;
Johannes Berge039fa42008-05-15 12:55:29 +02001123 if (info->status.retry_count > 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001124 local->dot11MultipleRetryCount++;
1125 }
1126
1127 /* This counter shall be incremented for an acknowledged MPDU
1128 * with an individual address in the address 1 field or an MPDU
1129 * with a multicast address in the address 1 field of type Data
1130 * or Management. */
1131 if (!is_multicast_ether_addr(hdr->addr1) ||
1132 type == IEEE80211_FTYPE_DATA ||
1133 type == IEEE80211_FTYPE_MGMT)
1134 local->dot11TransmittedFragmentCount++;
1135 } else {
1136 if (frag == 0)
1137 local->dot11FailedCount++;
1138 }
1139
Johannes Bergb306f452007-07-10 19:32:08 +02001140 /* this was a transmitted frame, but now we want to reuse it */
1141 skb_orphan(skb);
1142
Michael Wu3d30d942008-01-31 19:48:27 +01001143 /*
1144 * This is a bit racy but we can avoid a lot of work
1145 * with this test...
1146 */
1147 if (!local->monitors && !local->cooked_mntrs) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001148 dev_kfree_skb(skb);
1149 return;
1150 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001151
Johannes Bergb306f452007-07-10 19:32:08 +02001152 /* send frame to monitor interfaces now */
1153
1154 if (skb_headroom(skb) < sizeof(*rthdr)) {
1155 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
1156 dev_kfree_skb(skb);
1157 return;
1158 }
1159
Johannes Berg988c0f72008-04-17 19:21:22 +02001160 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
Johannes Bergb306f452007-07-10 19:32:08 +02001161 skb_push(skb, sizeof(*rthdr));
1162
1163 memset(rthdr, 0, sizeof(*rthdr));
1164 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1165 rthdr->hdr.it_present =
1166 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
1167 (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
1168
Johannes Berge039fa42008-05-15 12:55:29 +02001169 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
Johannes Bergb306f452007-07-10 19:32:08 +02001170 !is_multicast_ether_addr(hdr->addr1))
1171 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
1172
Johannes Berge039fa42008-05-15 12:55:29 +02001173 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) &&
1174 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT))
Johannes Bergb306f452007-07-10 19:32:08 +02001175 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
Johannes Berge039fa42008-05-15 12:55:29 +02001176 else if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS)
Johannes Bergb306f452007-07-10 19:32:08 +02001177 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
1178
Johannes Berge039fa42008-05-15 12:55:29 +02001179 rthdr->data_retries = info->status.retry_count;
Johannes Bergb306f452007-07-10 19:32:08 +02001180
Michael Wu3d30d942008-01-31 19:48:27 +01001181 /* XXX: is this sufficient for BPF? */
1182 skb_set_mac_header(skb, 0);
1183 skb->ip_summed = CHECKSUM_UNNECESSARY;
1184 skb->pkt_type = PACKET_OTHERHOST;
1185 skb->protocol = htons(ETH_P_802_2);
1186 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergb306f452007-07-10 19:32:08 +02001187
Michael Wu3d30d942008-01-31 19:48:27 +01001188 rcu_read_lock();
1189 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +01001190 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR) {
Johannes Bergb306f452007-07-10 19:32:08 +02001191 if (!netif_running(sdata->dev))
1192 continue;
Michael Wu3d30d942008-01-31 19:48:27 +01001193
1194 if (prev_dev) {
Johannes Berg79010422007-09-18 17:29:21 -04001195 skb2 = skb_clone(skb, GFP_ATOMIC);
Michael Wu3d30d942008-01-31 19:48:27 +01001196 if (skb2) {
1197 skb2->dev = prev_dev;
1198 netif_rx(skb2);
1199 }
1200 }
1201
1202 prev_dev = sdata->dev;
Johannes Bergb306f452007-07-10 19:32:08 +02001203 }
1204 }
Michael Wu3d30d942008-01-31 19:48:27 +01001205 if (prev_dev) {
1206 skb->dev = prev_dev;
1207 netif_rx(skb);
1208 skb = NULL;
1209 }
Johannes Berg79010422007-09-18 17:29:21 -04001210 rcu_read_unlock();
Michael Wu3d30d942008-01-31 19:48:27 +01001211 dev_kfree_skb(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -07001212}
1213EXPORT_SYMBOL(ieee80211_tx_status);
1214
Jiri Bencf0706e82007-05-05 11:45:53 -07001215struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
1216 const struct ieee80211_ops *ops)
1217{
Jiri Bencf0706e82007-05-05 11:45:53 -07001218 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001219 int priv_size;
1220 struct wiphy *wiphy;
1221
1222 /* Ensure 32-byte alignment of our private data and hw private data.
1223 * We use the wiphy priv data for both our ieee80211_local and for
1224 * the driver's private data
1225 *
1226 * In memory it'll be like this:
1227 *
1228 * +-------------------------+
1229 * | struct wiphy |
1230 * +-------------------------+
1231 * | struct ieee80211_local |
1232 * +-------------------------+
1233 * | driver's private data |
1234 * +-------------------------+
1235 *
1236 */
1237 priv_size = ((sizeof(struct ieee80211_local) +
1238 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
1239 priv_data_len;
1240
1241 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
1242
1243 if (!wiphy)
1244 return NULL;
1245
1246 wiphy->privid = mac80211_wiphy_privid;
1247
1248 local = wiphy_priv(wiphy);
1249 local->hw.wiphy = wiphy;
1250
1251 local->hw.priv = (char *)local +
1252 ((sizeof(struct ieee80211_local) +
1253 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
1254
Johannes Berg4480f15c2007-07-10 19:32:10 +02001255 BUG_ON(!ops->tx);
Johannes Berg4150c572007-09-17 01:29:23 -04001256 BUG_ON(!ops->start);
1257 BUG_ON(!ops->stop);
Johannes Berg4480f15c2007-07-10 19:32:10 +02001258 BUG_ON(!ops->config);
1259 BUG_ON(!ops->add_interface);
Johannes Berg4150c572007-09-17 01:29:23 -04001260 BUG_ON(!ops->remove_interface);
1261 BUG_ON(!ops->configure_filter);
Jiri Bencf0706e82007-05-05 11:45:53 -07001262 local->ops = ops;
1263
Jiri Bencf0706e82007-05-05 11:45:53 -07001264 local->hw.queues = 1; /* default */
1265
Jiri Bencf0706e82007-05-05 11:45:53 -07001266 local->bridge_packets = 1;
1267
1268 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
1269 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
1270 local->short_retry_limit = 7;
1271 local->long_retry_limit = 4;
1272 local->hw.conf.radio_enabled = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001273
Johannes Berg79010422007-09-18 17:29:21 -04001274 INIT_LIST_HEAD(&local->interfaces);
Jiri Bencf0706e82007-05-05 11:45:53 -07001275
Johannes Bergb16bd152008-04-11 21:40:35 +02001276 spin_lock_init(&local->key_lock);
1277
Jiri Bencf0706e82007-05-05 11:45:53 -07001278 INIT_DELAYED_WORK(&local->scan_work, ieee80211_sta_scan_work);
Jiri Bencf0706e82007-05-05 11:45:53 -07001279
1280 sta_info_init(local);
1281
Jiri Bencf0706e82007-05-05 11:45:53 -07001282 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
1283 (unsigned long)local);
1284 tasklet_disable(&local->tx_pending_tasklet);
1285
1286 tasklet_init(&local->tasklet,
1287 ieee80211_tasklet_handler,
1288 (unsigned long) local);
1289 tasklet_disable(&local->tasklet);
1290
1291 skb_queue_head_init(&local->skb_queue);
1292 skb_queue_head_init(&local->skb_queue_unreliable);
1293
1294 return local_to_hw(local);
1295}
1296EXPORT_SYMBOL(ieee80211_alloc_hw);
1297
1298int ieee80211_register_hw(struct ieee80211_hw *hw)
1299{
1300 struct ieee80211_local *local = hw_to_local(hw);
1301 const char *name;
1302 int result;
Johannes Berg8318d782008-01-24 19:38:38 +01001303 enum ieee80211_band band;
Johannes Berg96d51052008-02-08 09:48:13 +01001304 struct net_device *mdev;
Johannes Berg3e122be2008-07-09 14:40:34 +02001305 struct wireless_dev *mwdev;
Johannes Berg8318d782008-01-24 19:38:38 +01001306
1307 /*
1308 * generic code guarantees at least one band,
1309 * set this very early because much code assumes
1310 * that hw.conf.channel is assigned
1311 */
1312 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1313 struct ieee80211_supported_band *sband;
1314
1315 sband = local->hw.wiphy->bands[band];
1316 if (sband) {
1317 /* init channel we're on */
1318 local->hw.conf.channel =
1319 local->oper_channel =
1320 local->scan_channel = &sband->channels[0];
1321 break;
1322 }
1323 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001324
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001325 /* if low-level driver supports AP, we also support VLAN */
1326 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
1327 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
1328
1329 /* mac80211 always supports monitor */
1330 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
1331
Jiri Bencf0706e82007-05-05 11:45:53 -07001332 result = wiphy_register(local->hw.wiphy);
1333 if (result < 0)
1334 return result;
1335
Johannes Berge2530082008-05-17 00:57:14 +02001336 /*
1337 * We use the number of queues for feature tests (QoS, HT) internally
1338 * so restrict them appropriately.
1339 */
Johannes Berge2530082008-05-17 00:57:14 +02001340 if (hw->queues > IEEE80211_MAX_QUEUES)
1341 hw->queues = IEEE80211_MAX_QUEUES;
1342 if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES)
1343 hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES;
1344 if (hw->queues < 4)
1345 hw->ampdu_queues = 0;
Johannes Berge2530082008-05-17 00:57:14 +02001346
Johannes Berg3e122be2008-07-09 14:40:34 +02001347 mdev = alloc_netdev_mq(sizeof(struct wireless_dev),
Johannes Berge2530082008-05-17 00:57:14 +02001348 "wmaster%d", ether_setup,
1349 ieee80211_num_queues(hw));
Johannes Berg96d51052008-02-08 09:48:13 +01001350 if (!mdev)
1351 goto fail_mdev_alloc;
1352
Johannes Berg3e122be2008-07-09 14:40:34 +02001353 mwdev = netdev_priv(mdev);
1354 mdev->ieee80211_ptr = mwdev;
1355 mwdev->wiphy = local->hw.wiphy;
Johannes Berg96d51052008-02-08 09:48:13 +01001356
1357 local->mdev = mdev;
1358
Johannes Berg3e122be2008-07-09 14:40:34 +02001359 ieee80211_rx_bss_list_init(local);
Johannes Berg96d51052008-02-08 09:48:13 +01001360
1361 mdev->hard_start_xmit = ieee80211_master_start_xmit;
1362 mdev->open = ieee80211_master_open;
1363 mdev->stop = ieee80211_master_stop;
1364 mdev->type = ARPHRD_IEEE80211;
1365 mdev->header_ops = &ieee80211_header_ops;
1366 mdev->set_multicast_list = ieee80211_master_set_multicast_list;
1367
Jiri Bencf0706e82007-05-05 11:45:53 -07001368 name = wiphy_dev(local->hw.wiphy)->driver->name;
Johannes Berg59959a62008-06-26 19:59:56 +02001369 local->hw.workqueue = create_freezeable_workqueue(name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001370 if (!local->hw.workqueue) {
1371 result = -ENOMEM;
1372 goto fail_workqueue;
1373 }
1374
Johannes Bergb306f452007-07-10 19:32:08 +02001375 /*
1376 * The hardware needs headroom for sending the frame,
1377 * and we need some headroom for passing the frame to monitor
1378 * interfaces, but never both at the same time.
1379 */
Jiri Benc33ccad32007-07-18 17:10:44 +02001380 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
1381 sizeof(struct ieee80211_tx_status_rtap_hdr));
Johannes Bergb306f452007-07-10 19:32:08 +02001382
Jiri Bence9f207f2007-05-05 11:46:38 -07001383 debugfs_hw_add(local);
1384
Tomas Winklerdc0ae302008-06-12 22:38:37 +03001385 if (local->hw.conf.beacon_int < 10)
1386 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07001387
Tomas Winklerea95bba2008-07-18 13:53:00 +08001388 if (local->hw.max_listen_interval == 0)
1389 local->hw.max_listen_interval = 1;
1390
1391 local->hw.conf.listen_interval = local->hw.max_listen_interval;
1392
Bruno Randolf566bfe52008-05-08 19:15:40 +02001393 local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
1394 IEEE80211_HW_SIGNAL_DB |
1395 IEEE80211_HW_SIGNAL_DBM) ?
Jiri Bencf0706e82007-05-05 11:45:53 -07001396 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001397 local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
Jiri Bencf0706e82007-05-05 11:45:53 -07001398 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001399 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
Jiri Bencf0706e82007-05-05 11:45:53 -07001400 local->wstats_flags |= IW_QUAL_DBM;
1401
1402 result = sta_info_start(local);
1403 if (result < 0)
1404 goto fail_sta_info;
1405
1406 rtnl_lock();
1407 result = dev_alloc_name(local->mdev, local->mdev->name);
1408 if (result < 0)
1409 goto fail_dev;
1410
1411 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1412 SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
1413
1414 result = register_netdevice(local->mdev);
1415 if (result < 0)
1416 goto fail_dev;
1417
Johannes Berg830f9032007-10-28 14:51:05 +01001418 result = ieee80211_init_rate_ctrl_alg(local,
1419 hw->rate_control_algorithm);
Jiri Bencf0706e82007-05-05 11:45:53 -07001420 if (result < 0) {
1421 printk(KERN_DEBUG "%s: Failed to initialize rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001422 "algorithm\n", wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001423 goto fail_rate;
1424 }
1425
1426 result = ieee80211_wep_init(local);
1427
1428 if (result < 0) {
Jeremy Fitzhardinge023a04b2008-07-14 12:52:08 -07001429 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
1430 wiphy_name(local->hw.wiphy), result);
Jiri Bencf0706e82007-05-05 11:45:53 -07001431 goto fail_wep;
1432 }
1433
David S. Miller51cb6db2008-07-15 03:34:57 -07001434 local->mdev->select_queue = ieee80211_select_queue;
Jiri Bencf0706e82007-05-05 11:45:53 -07001435
1436 /* add one default STA interface */
Johannes Berg3e122be2008-07-09 14:40:34 +02001437 result = ieee80211_if_add(local, "wlan%d", NULL,
Luis Carlos Coboee385852008-02-23 15:17:11 +01001438 IEEE80211_IF_TYPE_STA, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001439 if (result)
1440 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001441 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001442
Jiri Bencf0706e82007-05-05 11:45:53 -07001443 rtnl_unlock();
1444
1445 ieee80211_led_init(local);
1446
1447 return 0;
1448
1449fail_wep:
1450 rate_control_deinitialize(local);
1451fail_rate:
1452 unregister_netdevice(local->mdev);
Pavel Emelyanov339a7c42008-05-04 17:59:30 -07001453 local->mdev = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001454fail_dev:
1455 rtnl_unlock();
1456 sta_info_stop(local);
1457fail_sta_info:
Jiri Bence9f207f2007-05-05 11:46:38 -07001458 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -07001459 destroy_workqueue(local->hw.workqueue);
1460fail_workqueue:
Johannes Berg3e122be2008-07-09 14:40:34 +02001461 if (local->mdev)
1462 free_netdev(local->mdev);
Johannes Berg96d51052008-02-08 09:48:13 +01001463fail_mdev_alloc:
Jiri Bencf0706e82007-05-05 11:45:53 -07001464 wiphy_unregister(local->hw.wiphy);
1465 return result;
1466}
1467EXPORT_SYMBOL(ieee80211_register_hw);
1468
Jiri Bencf0706e82007-05-05 11:45:53 -07001469void ieee80211_unregister_hw(struct ieee80211_hw *hw)
1470{
1471 struct ieee80211_local *local = hw_to_local(hw);
Jiri Bencf0706e82007-05-05 11:45:53 -07001472
1473 tasklet_kill(&local->tx_pending_tasklet);
1474 tasklet_kill(&local->tasklet);
1475
1476 rtnl_lock();
1477
Johannes Berg79010422007-09-18 17:29:21 -04001478 /*
1479 * At this point, interface list manipulations are fine
1480 * because the driver cannot be handing us frames any
1481 * more and the tasklet is killed.
1482 */
Johannes Berg5b2812e2007-09-26 14:27:23 +02001483
Johannes Berg75636522008-07-09 14:40:35 +02001484 /* First, we remove all virtual interfaces. */
1485 ieee80211_remove_interfaces(local);
Johannes Berg5b2812e2007-09-26 14:27:23 +02001486
1487 /* then, finally, remove the master interface */
Johannes Berg3e122be2008-07-09 14:40:34 +02001488 unregister_netdevice(local->mdev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001489
1490 rtnl_unlock();
1491
Johannes Berg3e122be2008-07-09 14:40:34 +02001492 ieee80211_rx_bss_list_deinit(local);
Jiri Bencf0706e82007-05-05 11:45:53 -07001493 ieee80211_clear_tx_pending(local);
1494 sta_info_stop(local);
1495 rate_control_deinitialize(local);
Jiri Bence9f207f2007-05-05 11:46:38 -07001496 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -07001497
Jiri Bencf0706e82007-05-05 11:45:53 -07001498 if (skb_queue_len(&local->skb_queue)
1499 || skb_queue_len(&local->skb_queue_unreliable))
1500 printk(KERN_WARNING "%s: skb_queue not empty\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001501 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001502 skb_queue_purge(&local->skb_queue);
1503 skb_queue_purge(&local->skb_queue_unreliable);
1504
1505 destroy_workqueue(local->hw.workqueue);
1506 wiphy_unregister(local->hw.wiphy);
1507 ieee80211_wep_free(local);
1508 ieee80211_led_exit(local);
Johannes Berg3e122be2008-07-09 14:40:34 +02001509 free_netdev(local->mdev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001510}
1511EXPORT_SYMBOL(ieee80211_unregister_hw);
1512
1513void ieee80211_free_hw(struct ieee80211_hw *hw)
1514{
1515 struct ieee80211_local *local = hw_to_local(hw);
1516
Jiri Bencf0706e82007-05-05 11:45:53 -07001517 wiphy_free(local->hw.wiphy);
1518}
1519EXPORT_SYMBOL(ieee80211_free_hw);
1520
Jiri Bencf0706e82007-05-05 11:45:53 -07001521static int __init ieee80211_init(void)
1522{
1523 struct sk_buff *skb;
1524 int ret;
1525
Johannes Berge039fa42008-05-15 12:55:29 +02001526 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
1527 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
1528 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
Jiri Bencf0706e82007-05-05 11:45:53 -07001529
Johannes Berg4b475892008-01-02 15:17:03 +01001530 ret = rc80211_pid_init();
Mattias Nisslerad018372007-12-19 01:25:57 +01001531 if (ret)
David S. Miller51cb6db2008-07-15 03:34:57 -07001532 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07001533
Jiri Bence9f207f2007-05-05 11:46:38 -07001534 ieee80211_debugfs_netdev_init();
1535
Jiri Bencf0706e82007-05-05 11:45:53 -07001536 return 0;
1537}
1538
Jiri Bencf0706e82007-05-05 11:45:53 -07001539static void __exit ieee80211_exit(void)
1540{
Johannes Berg4b475892008-01-02 15:17:03 +01001541 rc80211_pid_exit();
Johannes Bergac71c692007-10-28 14:17:44 +01001542
Johannes Berg3b967662008-04-08 17:56:52 +02001543 /*
1544 * For key todo, it'll be empty by now but the work
1545 * might still be scheduled.
1546 */
1547 flush_scheduled_work();
1548
Luis Carlos Cobof7a92142008-02-23 15:17:18 +01001549 if (mesh_allocated)
1550 ieee80211s_stop();
Johannes Berg902acc72008-02-23 15:17:19 +01001551
Jiri Bence9f207f2007-05-05 11:46:38 -07001552 ieee80211_debugfs_netdev_exit();
Jiri Bencf0706e82007-05-05 11:45:53 -07001553}
1554
1555
Johannes Bergca9938f2007-09-11 12:50:32 +02001556subsys_initcall(ieee80211_init);
Jiri Bencf0706e82007-05-05 11:45:53 -07001557module_exit(ieee80211_exit);
1558
1559MODULE_DESCRIPTION("IEEE 802.11 subsystem");
1560MODULE_LICENSE("GPL");