blob: f90254a5948e5240d0b2604faefdef74dd332a64 [file] [log] [blame]
Jiri Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-05-05 11:45:53 -070025#include <net/cfg80211.h>
26
Jiri Bencf0706e822007-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 Bencf0706e822007-05-05 11:45:53 -070030#include "wep.h"
Jiri Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-05-05 11:45:53 -0700130 dev_close(sdata->dev);
Jiri Bencf0706e822007-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:
255 /* mesh ifaces must set allmulti to forward mcast traffic */
256 atomic_inc(&local->iff_allmultis);
257 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +0200258 case IEEE80211_IF_TYPE_STA:
259 case IEEE80211_IF_TYPE_MNTR:
260 case IEEE80211_IF_TYPE_IBSS:
261 /* no special treatment */
262 break;
Johannes Berga2897552007-09-28 14:01:25 +0200263 case IEEE80211_IF_TYPE_INVALID:
264 /* cannot happen */
265 WARN_ON(1);
266 break;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400267 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200268
Johannes Bergb2c258f2007-07-27 15:43:23 +0200269 if (local->open_count == 0) {
270 res = 0;
Johannes Berg4150c572007-09-17 01:29:23 -0400271 if (local->ops->start)
272 res = local->ops->start(local_to_hw(local));
273 if (res)
Johannes Berg3e122be2008-07-09 14:40:34 +0200274 goto err_del_bss;
Michael Bueschceffefd2008-02-10 14:16:52 +0100275 need_hw_reconfig = 1;
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100276 ieee80211_led_radio(local, local->hw.conf.radio_enabled);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200277 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200278
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700279 /*
280 * Check all interfaces and copy the hopefully now-present
281 * MAC address to those that have the special null one.
282 */
283 list_for_each_entry(nsdata, &local->interfaces, list) {
284 struct net_device *ndev = nsdata->dev;
285
286 /*
287 * No need to check netif_running since we do not allow
288 * it to start up with this invalid address.
289 */
290 if (compare_ether_addr(null_addr, ndev->dev_addr) == 0)
291 memcpy(ndev->dev_addr,
292 local->hw.wiphy->perm_addr,
293 ETH_ALEN);
294 }
295
296 if (compare_ether_addr(null_addr, local->mdev->dev_addr) == 0)
297 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr,
298 ETH_ALEN);
299
300 /*
301 * Validate the MAC address for this device.
302 */
303 if (!is_valid_ether_addr(dev->dev_addr)) {
304 if (!local->open_count && local->ops->stop)
305 local->ops->stop(local_to_hw(local));
306 return -EADDRNOTAVAIL;
307 }
308
Johannes Berg51fb61e2007-12-19 01:31:27 +0100309 switch (sdata->vif.type) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400310 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400311 /* no need to tell driver */
312 break;
Johannes Berg4150c572007-09-17 01:29:23 -0400313 case IEEE80211_IF_TYPE_MNTR:
Michael Wu3d30d942008-01-31 19:48:27 +0100314 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
315 local->cooked_mntrs++;
316 break;
317 }
318
Johannes Berg4150c572007-09-17 01:29:23 -0400319 /* must be before the call to ieee80211_configure_filter */
Johannes Bergb2c258f2007-07-27 15:43:23 +0200320 local->monitors++;
Michael Wu8cc9a732008-01-31 19:48:23 +0100321 if (local->monitors == 1)
Johannes Berg4150c572007-09-17 01:29:23 -0400322 local->hw.conf.flags |= IEEE80211_CONF_RADIOTAP;
Michael Wu8cc9a732008-01-31 19:48:23 +0100323
324 if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL)
325 local->fif_fcsfail++;
326 if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL)
327 local->fif_plcpfail++;
328 if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL)
329 local->fif_control++;
330 if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS)
331 local->fif_other_bss++;
332
David S. Millerb9e40852008-07-15 00:15:08 -0700333 netif_addr_lock_bh(local->mdev);
Michael Wu8cc9a732008-01-31 19:48:23 +0100334 ieee80211_configure_filter(local);
David S. Millerb9e40852008-07-15 00:15:08 -0700335 netif_addr_unlock_bh(local->mdev);
Johannes Berg4150c572007-09-17 01:29:23 -0400336 break;
337 case IEEE80211_IF_TYPE_STA:
338 case IEEE80211_IF_TYPE_IBSS:
339 sdata->u.sta.flags &= ~IEEE80211_STA_PREV_BSSID_SET;
340 /* fall through */
341 default:
Johannes Berg32bfd352007-12-19 01:31:26 +0100342 conf.vif = &sdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100343 conf.type = sdata->vif.type;
Johannes Berg4150c572007-09-17 01:29:23 -0400344 conf.mac_addr = dev->dev_addr;
345 res = local->ops->add_interface(local_to_hw(local), &conf);
Johannes Berg4150c572007-09-17 01:29:23 -0400346 if (res)
Johannes Berg636c5d42008-04-24 14:18:37 +0200347 goto err_stop;
Johannes Berg4150c572007-09-17 01:29:23 -0400348
Johannes Berg9d139c82008-07-09 14:40:37 +0200349 if (ieee80211_vif_is_mesh(&sdata->vif))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200350 ieee80211_start_mesh(sdata);
351 changed |= ieee80211_reset_erp_info(sdata);
Tomas Winklerfc32f922008-07-03 01:27:13 +0300352 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg11a843b2007-08-28 17:01:55 -0400353 ieee80211_enable_keys(sdata);
Johannes Berg4150c572007-09-17 01:29:23 -0400354
Johannes Berg51fb61e2007-12-19 01:31:27 +0100355 if (sdata->vif.type == IEEE80211_IF_TYPE_STA &&
Johannes Bergddd3d2b2007-09-26 17:53:20 +0200356 !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
Johannes Berg4150c572007-09-17 01:29:23 -0400357 netif_carrier_off(dev);
358 else
359 netif_carrier_on(dev);
Daniel Draked9430a32007-07-27 15:43:24 +0200360 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200361
Johannes Berg636c5d42008-04-24 14:18:37 +0200362 if (sdata->vif.type == IEEE80211_IF_TYPE_WDS) {
363 /* Create STA entry for the WDS peer */
364 sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr,
365 GFP_KERNEL);
366 if (!sta) {
367 res = -ENOMEM;
368 goto err_del_interface;
369 }
370
Johannes Berg07346f812008-05-03 01:02:02 +0200371 /* no locking required since STA is not live yet */
Johannes Berg636c5d42008-04-24 14:18:37 +0200372 sta->flags |= WLAN_STA_AUTHORIZED;
373
374 res = sta_info_insert(sta);
375 if (res) {
376 /* STA has been freed */
377 goto err_del_interface;
378 }
379 }
380
Johannes Berg4150c572007-09-17 01:29:23 -0400381 if (local->open_count == 0) {
382 res = dev_open(local->mdev);
383 WARN_ON(res);
Johannes Berg636c5d42008-04-24 14:18:37 +0200384 if (res)
385 goto err_del_interface;
Johannes Berg4150c572007-09-17 01:29:23 -0400386 tasklet_enable(&local->tx_pending_tasklet);
387 tasklet_enable(&local->tasklet);
388 }
389
Johannes Bergc1428b32007-11-16 02:54:53 +0100390 /*
391 * set_multicast_list will be invoked by the networking core
392 * which will check whether any increments here were done in
393 * error and sync them down to the hardware as filter flags.
394 */
395 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
396 atomic_inc(&local->iff_allmultis);
397
398 if (sdata->flags & IEEE80211_SDATA_PROMISC)
399 atomic_inc(&local->iff_promiscs);
400
Johannes Berg4150c572007-09-17 01:29:23 -0400401 local->open_count++;
Michael Bueschceffefd2008-02-10 14:16:52 +0100402 if (need_hw_reconfig)
403 ieee80211_hw_config(local);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200404
Jan Niehusmann64f851e2008-03-23 20:23:56 +0100405 /*
406 * ieee80211_sta_work is disabled while network interface
407 * is down. Therefore, some configuration changes may not
408 * yet be effective. Trigger execution of ieee80211_sta_work
409 * to fix this.
410 */
Johannes Berg988c0f72008-04-17 19:21:22 +0200411 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
412 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jan Niehusmann64f851e2008-03-23 20:23:56 +0100413 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
414 queue_work(local->hw.workqueue, &ifsta->work);
415 }
416
David S. Miller51cb6db2008-07-15 03:34:57 -0700417 netif_tx_start_all_queues(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400418
Johannes Bergb2c258f2007-07-27 15:43:23 +0200419 return 0;
Johannes Berg636c5d42008-04-24 14:18:37 +0200420 err_del_interface:
421 local->ops->remove_interface(local_to_hw(local), &conf);
422 err_stop:
423 if (!local->open_count && local->ops->stop)
424 local->ops->stop(local_to_hw(local));
Johannes Berg3e122be2008-07-09 14:40:34 +0200425 err_del_bss:
426 sdata->bss = NULL;
427 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
428 list_del(&sdata->u.vlan.list);
Johannes Berg636c5d42008-04-24 14:18:37 +0200429 return res;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200430}
431
Johannes Berg4150c572007-09-17 01:29:23 -0400432static int ieee80211_stop(struct net_device *dev)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200433{
Johannes Berg44213b52008-02-25 16:27:49 +0100434 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
435 struct ieee80211_local *local = sdata->local;
Johannes Berg4150c572007-09-17 01:29:23 -0400436 struct ieee80211_if_init_conf conf;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200437 struct sta_info *sta;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200438
Johannes Berg44213b52008-02-25 16:27:49 +0100439 /*
440 * Stop TX on this interface first.
441 */
David S. Miller51cb6db2008-07-15 03:34:57 -0700442 netif_tx_stop_all_queues(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400443
Johannes Berg44213b52008-02-25 16:27:49 +0100444 /*
445 * Now delete all active aggregation sessions.
446 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100447 rcu_read_lock();
448
449 list_for_each_entry_rcu(sta, &local->sta_list, list) {
450 if (sta->sdata == sdata)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200451 ieee80211_sta_tear_down_BA_sessions(sdata, sta->addr);
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200452 }
453
Johannes Bergd0709a62008-02-25 16:27:46 +0100454 rcu_read_unlock();
455
Johannes Berg44213b52008-02-25 16:27:49 +0100456 /*
457 * Remove all stations associated with this interface.
458 *
459 * This must be done before calling ops->remove_interface()
460 * because otherwise we can later invoke ops->sta_notify()
461 * whenever the STAs are removed, and that invalidates driver
462 * assumptions about always getting a vif pointer that is valid
463 * (because if we remove a STA after ops->remove_interface()
464 * the driver will have removed the vif info already!)
465 *
466 * We could relax this and only unlink the stations from the
467 * hash table and list but keep them on a per-sdata list that
468 * will be inserted back again when the interface is brought
469 * up again, but I don't currently see a use case for that,
470 * except with WDS which gets a STA entry created when it is
471 * brought up.
472 */
473 sta_info_flush(local, sdata);
Johannes Berg4150c572007-09-17 01:29:23 -0400474
Johannes Bergc1428b32007-11-16 02:54:53 +0100475 /*
476 * Don't count this interface for promisc/allmulti while it
477 * is down. dev_mc_unsync() will invoke set_multicast_list
478 * on the master interface which will sync these down to the
479 * hardware as filter flags.
480 */
481 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
482 atomic_dec(&local->iff_allmultis);
483
484 if (sdata->flags & IEEE80211_SDATA_PROMISC)
485 atomic_dec(&local->iff_promiscs);
486
Johannes Berg4150c572007-09-17 01:29:23 -0400487 dev_mc_unsync(local->mdev, dev);
488
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100489 /* APs need special treatment */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100490 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400491 struct ieee80211_sub_if_data *vlan, *tmp;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100492 struct beacon_data *old_beacon = sdata->u.ap.beacon;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400493
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100494 /* remove beacon */
495 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
496 synchronize_rcu();
497 kfree(old_beacon);
498
499 /* down all dependent devices, that is VLANs */
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400500 list_for_each_entry_safe(vlan, tmp, &sdata->u.ap.vlans,
501 u.vlan.list)
502 dev_close(vlan->dev);
503 WARN_ON(!list_empty(&sdata->u.ap.vlans));
504 }
505
Johannes Berg4150c572007-09-17 01:29:23 -0400506 local->open_count--;
507
Johannes Berg51fb61e2007-12-19 01:31:27 +0100508 switch (sdata->vif.type) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400509 case IEEE80211_IF_TYPE_VLAN:
510 list_del(&sdata->u.vlan.list);
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400511 /* no need to tell driver */
512 break;
Johannes Berg4150c572007-09-17 01:29:23 -0400513 case IEEE80211_IF_TYPE_MNTR:
Michael Wu3d30d942008-01-31 19:48:27 +0100514 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
515 local->cooked_mntrs--;
516 break;
517 }
518
Johannes Berg4150c572007-09-17 01:29:23 -0400519 local->monitors--;
Michael Wu8cc9a732008-01-31 19:48:23 +0100520 if (local->monitors == 0)
Michael Wu8b393f12007-11-28 01:57:08 -0500521 local->hw.conf.flags &= ~IEEE80211_CONF_RADIOTAP;
Michael Wu8cc9a732008-01-31 19:48:23 +0100522
523 if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL)
524 local->fif_fcsfail--;
525 if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL)
526 local->fif_plcpfail--;
527 if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL)
528 local->fif_control--;
529 if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS)
530 local->fif_other_bss--;
531
David S. Millerb9e40852008-07-15 00:15:08 -0700532 netif_addr_lock_bh(local->mdev);
Michael Wu8cc9a732008-01-31 19:48:23 +0100533 ieee80211_configure_filter(local);
David S. Millerb9e40852008-07-15 00:15:08 -0700534 netif_addr_unlock_bh(local->mdev);
Johannes Berg4150c572007-09-17 01:29:23 -0400535 break;
Luis Carlos Cobof7a92142008-02-23 15:17:18 +0100536 case IEEE80211_IF_TYPE_MESH_POINT:
Luis Carlos Cobo8dbc1722008-08-06 13:17:54 +0200537 /* allmulti is always set on mesh ifaces */
538 atomic_dec(&local->iff_allmultis);
539 /* fall through */
Johannes Bergb2c258f2007-07-27 15:43:23 +0200540 case IEEE80211_IF_TYPE_STA:
541 case IEEE80211_IF_TYPE_IBSS:
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300542 sdata->u.sta.state = IEEE80211_STA_MLME_DISABLED;
Assaf Kraussad81b2f2008-06-04 20:27:59 +0300543 memset(sdata->u.sta.bssid, 0, ETH_ALEN);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200544 del_timer_sync(&sdata->u.sta.timer);
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400545 /*
Johannes Berg79010422007-09-18 17:29:21 -0400546 * When we get here, the interface is marked down.
547 * Call synchronize_rcu() to wait for the RX path
548 * should it be using the interface and enqueuing
549 * frames at this very time on another CPU.
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400550 */
Johannes Berg79010422007-09-18 17:29:21 -0400551 synchronize_rcu();
Johannes Bergb2c258f2007-07-27 15:43:23 +0200552 skb_queue_purge(&sdata->u.sta.skb_queue);
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400553
Johannes Berg491775a2008-09-08 17:44:23 +0200554 if (local->scan_sdata == sdata) {
Zhu Yiece8edd2007-11-22 10:53:21 +0800555 if (!local->ops->hw_scan) {
556 local->sta_sw_scanning = 0;
557 cancel_delayed_work(&local->scan_work);
558 } else
559 local->sta_hw_scanning = 0;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200560 }
Zhu Yiece8edd2007-11-22 10:53:21 +0800561
Zhu Yia10605e2007-11-22 11:10:22 +0800562 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
563 kfree(sdata->u.sta.extra_ie);
564 sdata->u.sta.extra_ie = NULL;
565 sdata->u.sta.extra_ie_len = 0;
Johannes Berg4150c572007-09-17 01:29:23 -0400566 /* fall through */
567 default:
Johannes Berg32bfd352007-12-19 01:31:26 +0100568 conf.vif = &sdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100569 conf.type = sdata->vif.type;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200570 conf.mac_addr = dev->dev_addr;
Johannes Berg4150c572007-09-17 01:29:23 -0400571 /* disable all keys for as long as this netdev is down */
572 ieee80211_disable_keys(sdata);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200573 local->ops->remove_interface(local_to_hw(local), &conf);
574 }
575
Johannes Berg3e122be2008-07-09 14:40:34 +0200576 sdata->bss = NULL;
577
Johannes Berg4150c572007-09-17 01:29:23 -0400578 if (local->open_count == 0) {
579 if (netif_running(local->mdev))
580 dev_close(local->mdev);
581
Johannes Berg4150c572007-09-17 01:29:23 -0400582 if (local->ops->stop)
583 local->ops->stop(local_to_hw(local));
584
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100585 ieee80211_led_radio(local, 0);
586
Ivo van Doornea0c9252008-07-03 19:02:44 +0200587 flush_workqueue(local->hw.workqueue);
588
Johannes Berg4150c572007-09-17 01:29:23 -0400589 tasklet_disable(&local->tx_pending_tasklet);
590 tasklet_disable(&local->tasklet);
591 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200592
593 return 0;
594}
595
Johannes Bergb2c258f2007-07-27 15:43:23 +0200596static void ieee80211_set_multicast_list(struct net_device *dev)
597{
598 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
599 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400600 int allmulti, promisc, sdata_allmulti, sdata_promisc;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200601
Johannes Berg4150c572007-09-17 01:29:23 -0400602 allmulti = !!(dev->flags & IFF_ALLMULTI);
603 promisc = !!(dev->flags & IFF_PROMISC);
Johannes Bergb52f2192007-11-16 01:49:11 +0100604 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
605 sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
Johannes Berg4150c572007-09-17 01:29:23 -0400606
607 if (allmulti != sdata_allmulti) {
608 if (dev->flags & IFF_ALLMULTI)
Johannes Berg53918992007-09-26 15:19:47 +0200609 atomic_inc(&local->iff_allmultis);
Johannes Berg4150c572007-09-17 01:29:23 -0400610 else
Johannes Berg53918992007-09-26 15:19:47 +0200611 atomic_dec(&local->iff_allmultis);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400612 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200613 }
Johannes Berg4150c572007-09-17 01:29:23 -0400614
615 if (promisc != sdata_promisc) {
616 if (dev->flags & IFF_PROMISC)
Johannes Berg53918992007-09-26 15:19:47 +0200617 atomic_inc(&local->iff_promiscs);
Johannes Berg4150c572007-09-17 01:29:23 -0400618 else
Johannes Berg53918992007-09-26 15:19:47 +0200619 atomic_dec(&local->iff_promiscs);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400620 sdata->flags ^= IEEE80211_SDATA_PROMISC;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200621 }
Johannes Berg4150c572007-09-17 01:29:23 -0400622
623 dev_mc_sync(local->mdev, dev);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200624}
625
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700626static const struct header_ops ieee80211_header_ops = {
627 .create = eth_header,
628 .parse = header_parse_80211,
629 .rebuild = eth_rebuild_header,
630 .cache = eth_header_cache,
631 .cache_update = eth_header_cache_update,
632};
633
Johannes Bergb2c258f2007-07-27 15:43:23 +0200634void ieee80211_if_setup(struct net_device *dev)
635{
636 ether_setup(dev);
637 dev->hard_start_xmit = ieee80211_subif_start_xmit;
638 dev->wireless_handlers = &ieee80211_iw_handler_def;
639 dev->set_multicast_list = ieee80211_set_multicast_list;
640 dev->change_mtu = ieee80211_change_mtu;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200641 dev->open = ieee80211_open;
642 dev->stop = ieee80211_stop;
Johannes Berg75636522008-07-09 14:40:35 +0200643 dev->destructor = free_netdev;
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700644 /* we will validate the address ourselves in ->open */
645 dev->validate_addr = NULL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200646}
647
Johannes Bergb2c258f2007-07-27 15:43:23 +0200648/* everything else */
649
Johannes Berg9d139c82008-07-09 14:40:37 +0200650int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200651{
Johannes Berg9d139c82008-07-09 14:40:37 +0200652 struct ieee80211_local *local = sdata->local;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200653 struct ieee80211_if_conf conf;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200654
Johannes Berg9d139c82008-07-09 14:40:37 +0200655 if (WARN_ON(!netif_running(sdata->dev)))
656 return 0;
657
658 if (!local->ops->config_interface)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200659 return 0;
660
661 memset(&conf, 0, sizeof(conf));
Johannes Berg9d139c82008-07-09 14:40:37 +0200662 conf.changed = changed;
663
Johannes Berg51fb61e2007-12-19 01:31:27 +0100664 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
665 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Johannes Berg4150c572007-09-17 01:29:23 -0400666 conf.bssid = sdata->u.sta.bssid;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200667 conf.ssid = sdata->u.sta.ssid;
668 conf.ssid_len = sdata->u.sta.ssid_len;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100669 } else if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Johannes Berg9d139c82008-07-09 14:40:37 +0200670 conf.bssid = sdata->dev->dev_addr;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200671 conf.ssid = sdata->u.ap.ssid;
672 conf.ssid_len = sdata->u.ap.ssid_len;
Johannes Berg9d139c82008-07-09 14:40:37 +0200673 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
674 u8 zero[ETH_ALEN] = { 0 };
675 conf.bssid = zero;
676 conf.ssid = zero;
677 conf.ssid_len = 0;
678 } else {
679 WARN_ON(1);
680 return -EINVAL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200681 }
Johannes Berg9d139c82008-07-09 14:40:37 +0200682
683 if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID)))
684 return -EINVAL;
685
686 if (WARN_ON(!conf.ssid && (changed & IEEE80211_IFCC_SSID)))
687 return -EINVAL;
688
Johannes Bergb2c258f2007-07-27 15:43:23 +0200689 return local->ops->config_interface(local_to_hw(local),
Johannes Berg32bfd352007-12-19 01:31:26 +0100690 &sdata->vif, &conf);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200691}
692
Johannes Bergb2c258f2007-07-27 15:43:23 +0200693int ieee80211_hw_config(struct ieee80211_local *local)
694{
Johannes Bergb2c258f2007-07-27 15:43:23 +0200695 struct ieee80211_channel *chan;
696 int ret = 0;
697
Johannes Berg8318d782008-01-24 19:38:38 +0100698 if (local->sta_sw_scanning)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200699 chan = local->scan_channel;
Johannes Berg8318d782008-01-24 19:38:38 +0100700 else
Johannes Bergb2c258f2007-07-27 15:43:23 +0200701 chan = local->oper_channel;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200702
Johannes Berg8318d782008-01-24 19:38:38 +0100703 local->hw.conf.channel = chan;
704
705 if (!local->hw.conf.power_level)
706 local->hw.conf.power_level = chan->max_power;
707 else
708 local->hw.conf.power_level = min(chan->max_power,
709 local->hw.conf.power_level);
710
711 local->hw.conf.max_antenna_gain = chan->max_antenna_gain;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200712
713#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg8318d782008-01-24 19:38:38 +0100714 printk(KERN_DEBUG "%s: HW CONFIG: freq=%d\n",
715 wiphy_name(local->hw.wiphy), chan->center_freq);
716#endif
Johannes Bergb2c258f2007-07-27 15:43:23 +0200717
Michael Bueschf7c4dae2007-09-24 18:41:49 +0200718 if (local->open_count)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200719 ret = local->ops->config(local_to_hw(local), &local->hw.conf);
720
721 return ret;
722}
723
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200724/**
Tomas Winkler38668c02008-03-28 16:33:32 -0700725 * ieee80211_handle_ht should be used only after legacy configuration
726 * has been determined namely band, as ht configuration depends upon
727 * the hardware's HT abilities for a _specific_ band.
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200728 */
Tomas Winkler38668c02008-03-28 16:33:32 -0700729u32 ieee80211_handle_ht(struct ieee80211_local *local, int enable_ht,
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200730 struct ieee80211_ht_info *req_ht_cap,
731 struct ieee80211_ht_bss_info *req_bss_cap)
732{
733 struct ieee80211_conf *conf = &local->hw.conf;
Johannes Berg8318d782008-01-24 19:38:38 +0100734 struct ieee80211_supported_band *sband;
Tomas Winkler38668c02008-03-28 16:33:32 -0700735 struct ieee80211_ht_info ht_conf;
736 struct ieee80211_ht_bss_info ht_bss_conf;
Tomas Winkler38668c02008-03-28 16:33:32 -0700737 u32 changed = 0;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800738 int i;
739 u8 max_tx_streams = IEEE80211_HT_CAP_MAX_STREAMS;
740 u8 tx_mcs_set_cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200741
Johannes Berg8318d782008-01-24 19:38:38 +0100742 sband = local->hw.wiphy->bands[conf->channel->band];
743
Tomas Winkler38668c02008-03-28 16:33:32 -0700744 memset(&ht_conf, 0, sizeof(struct ieee80211_ht_info));
745 memset(&ht_bss_conf, 0, sizeof(struct ieee80211_ht_bss_info));
746
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800747 /* HT is not supported */
748 if (!sband->ht_info.ht_supported) {
749 conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE;
750 goto out;
751 }
Tomas Winkler38668c02008-03-28 16:33:32 -0700752
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800753 /* disable HT */
754 if (!enable_ht) {
Tomas Winkler38668c02008-03-28 16:33:32 -0700755 if (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE)
756 changed |= BSS_CHANGED_HT;
757 conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800758 conf->ht_conf.ht_supported = 0;
759 goto out;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200760 }
761
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800762
763 if (!(conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE))
764 changed |= BSS_CHANGED_HT;
765
766 conf->flags |= IEEE80211_CONF_SUPPORT_HT_MODE;
767 ht_conf.ht_supported = 1;
768
769 ht_conf.cap = req_ht_cap->cap & sband->ht_info.cap;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800770 ht_conf.cap &= ~(IEEE80211_HT_CAP_SM_PS);
771 ht_conf.cap |= sband->ht_info.cap & IEEE80211_HT_CAP_SM_PS;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800772 ht_bss_conf.primary_channel = req_bss_cap->primary_channel;
773 ht_bss_conf.bss_cap = req_bss_cap->bss_cap;
774 ht_bss_conf.bss_op_mode = req_bss_cap->bss_op_mode;
775
776 ht_conf.ampdu_factor = req_ht_cap->ampdu_factor;
777 ht_conf.ampdu_density = req_ht_cap->ampdu_density;
778
779 /* Bits 96-100 */
780 tx_mcs_set_cap = sband->ht_info.supp_mcs_set[12];
781
782 /* configure suppoerted Tx MCS according to requested MCS
783 * (based in most cases on Rx capabilities of peer) and self
784 * Tx MCS capabilities (as defined by low level driver HW
785 * Tx capabilities) */
786 if (!(tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_DEFINED))
787 goto check_changed;
788
789 /* Counting from 0 therfore + 1 */
790 if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_RX_DIFF)
791 max_tx_streams = ((tx_mcs_set_cap &
792 IEEE80211_HT_CAP_MCS_TX_STREAMS) >> 2) + 1;
793
794 for (i = 0; i < max_tx_streams; i++)
795 ht_conf.supp_mcs_set[i] =
796 sband->ht_info.supp_mcs_set[i] &
797 req_ht_cap->supp_mcs_set[i];
798
799 if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_UEQM)
800 for (i = IEEE80211_SUPP_MCS_SET_UEQM;
801 i < IEEE80211_SUPP_MCS_SET_LEN; i++)
802 ht_conf.supp_mcs_set[i] =
803 sband->ht_info.supp_mcs_set[i] &
804 req_ht_cap->supp_mcs_set[i];
805
806check_changed:
807 /* if bss configuration changed store the new one */
808 if (memcmp(&conf->ht_conf, &ht_conf, sizeof(ht_conf)) ||
809 memcmp(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf))) {
810 changed |= BSS_CHANGED_HT;
811 memcpy(&conf->ht_conf, &ht_conf, sizeof(ht_conf));
812 memcpy(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf));
813 }
814out:
Tomas Winkler38668c02008-03-28 16:33:32 -0700815 return changed;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200816}
817
Johannes Berg471b3ef2007-12-28 14:32:58 +0100818void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
819 u32 changed)
Daniel Draked9430a32007-07-27 15:43:24 +0200820{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100821 struct ieee80211_local *local = sdata->local;
822
823 if (!changed)
824 return;
825
826 if (local->ops->bss_info_changed)
827 local->ops->bss_info_changed(local_to_hw(local),
828 &sdata->vif,
829 &sdata->bss_conf,
830 changed);
Daniel Draked9430a32007-07-27 15:43:24 +0200831}
832
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200833u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
Daniel Draked9430a32007-07-27 15:43:24 +0200834{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100835 sdata->bss_conf.use_cts_prot = 0;
836 sdata->bss_conf.use_short_preamble = 0;
Tomas Winklerfc32f922008-07-03 01:27:13 +0300837 return BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_ERP_PREAMBLE;
Daniel Draked9430a32007-07-27 15:43:24 +0200838}
839
Jiri Bencf0706e822007-05-05 11:45:53 -0700840void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +0200841 struct sk_buff *skb)
Jiri Bencf0706e822007-05-05 11:45:53 -0700842{
843 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200844 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e822007-05-05 11:45:53 -0700845 int tmp;
846
847 skb->dev = local->mdev;
Jiri Bencf0706e822007-05-05 11:45:53 -0700848 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
Johannes Berge039fa42008-05-15 12:55:29 +0200849 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
Jiri Bencf0706e822007-05-05 11:45:53 -0700850 &local->skb_queue : &local->skb_queue_unreliable, skb);
851 tmp = skb_queue_len(&local->skb_queue) +
852 skb_queue_len(&local->skb_queue_unreliable);
853 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
854 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700855 dev_kfree_skb_irq(skb);
856 tmp--;
857 I802_DEBUG_INC(local->tx_status_drop);
858 }
859 tasklet_schedule(&local->tasklet);
860}
861EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
862
863static void ieee80211_tasklet_handler(unsigned long data)
864{
865 struct ieee80211_local *local = (struct ieee80211_local *) data;
866 struct sk_buff *skb;
867 struct ieee80211_rx_status rx_status;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200868 struct ieee80211_ra_tid *ra_tid;
Jiri Bencf0706e822007-05-05 11:45:53 -0700869
870 while ((skb = skb_dequeue(&local->skb_queue)) ||
871 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
872 switch (skb->pkt_type) {
873 case IEEE80211_RX_MSG:
874 /* status is in skb->cb */
875 memcpy(&rx_status, skb->cb, sizeof(rx_status));
Johannes Berg51fb61e2007-12-19 01:31:27 +0100876 /* Clear skb->pkt_type in order to not confuse kernel
Jiri Bencf0706e822007-05-05 11:45:53 -0700877 * netstack. */
878 skb->pkt_type = 0;
879 __ieee80211_rx(local_to_hw(local), skb, &rx_status);
880 break;
881 case IEEE80211_TX_STATUS_MSG:
Jiri Bencf0706e822007-05-05 11:45:53 -0700882 skb->pkt_type = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200883 ieee80211_tx_status(local_to_hw(local), skb);
Jiri Bencf0706e822007-05-05 11:45:53 -0700884 break;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200885 case IEEE80211_DELBA_MSG:
886 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
887 ieee80211_stop_tx_ba_cb(local_to_hw(local),
888 ra_tid->ra, ra_tid->tid);
889 dev_kfree_skb(skb);
890 break;
891 case IEEE80211_ADDBA_MSG:
892 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
893 ieee80211_start_tx_ba_cb(local_to_hw(local),
894 ra_tid->ra, ra_tid->tid);
895 dev_kfree_skb(skb);
896 break ;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200897 default:
898 WARN_ON(1);
Jiri Bencf0706e822007-05-05 11:45:53 -0700899 dev_kfree_skb(skb);
900 break;
901 }
902 }
903}
904
Jiri Bencf0706e822007-05-05 11:45:53 -0700905/* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
906 * make a prepared TX frame (one that has been given to hw) to look like brand
907 * new IEEE 802.11 frame that is ready to go through TX processing again.
Johannes Bergd0f09802008-07-29 11:32:07 +0200908 */
Jiri Bencf0706e822007-05-05 11:45:53 -0700909static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
910 struct ieee80211_key *key,
Johannes Berge039fa42008-05-15 12:55:29 +0200911 struct sk_buff *skb)
Jiri Bencf0706e822007-05-05 11:45:53 -0700912{
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700913 unsigned int hdrlen, iv_len, mic_len;
914 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e822007-05-05 11:45:53 -0700915
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700916 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e822007-05-05 11:45:53 -0700917
918 if (!key)
919 goto no_key;
920
Johannes Berg8f20fc22007-08-28 17:01:54 -0400921 switch (key->conf.alg) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700922 case ALG_WEP:
923 iv_len = WEP_IV_LEN;
924 mic_len = WEP_ICV_LEN;
925 break;
926 case ALG_TKIP:
927 iv_len = TKIP_IV_LEN;
928 mic_len = TKIP_ICV_LEN;
929 break;
930 case ALG_CCMP:
931 iv_len = CCMP_HDR_LEN;
932 mic_len = CCMP_MIC_LEN;
933 break;
934 default:
935 goto no_key;
936 }
937
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700938 if (skb->len >= hdrlen + mic_len &&
Johannes Berg11a843b2007-08-28 17:01:55 -0400939 !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Jiri Bencf0706e822007-05-05 11:45:53 -0700940 skb_trim(skb, skb->len - mic_len);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700941 if (skb->len >= hdrlen + iv_len) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700942 memmove(skb->data + iv_len, skb->data, hdrlen);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700943 hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len);
Jiri Bencf0706e822007-05-05 11:45:53 -0700944 }
945
946no_key:
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700947 if (ieee80211_is_data_qos(hdr->frame_control)) {
948 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
949 memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data,
950 hdrlen - IEEE80211_QOS_CTL_LEN);
951 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Jiri Bencf0706e822007-05-05 11:45:53 -0700952 }
953}
954
Johannes Bergd46e1442008-02-20 23:59:33 +0100955static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
956 struct sta_info *sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200957 struct sk_buff *skb)
Johannes Bergd46e1442008-02-20 23:59:33 +0100958{
Johannes Berge039fa42008-05-15 12:55:29 +0200959 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
960
Johannes Bergd46e1442008-02-20 23:59:33 +0100961 sta->tx_filtered_count++;
962
963 /*
964 * Clear the TX filter mask for this STA when sending the next
965 * packet. If the STA went to power save mode, this will happen
Yi Zhuf6d97102008-05-27 17:50:50 +0300966 * when it wakes up for the next time.
Johannes Bergd46e1442008-02-20 23:59:33 +0100967 */
Johannes Berg07346f812008-05-03 01:02:02 +0200968 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
Johannes Bergd46e1442008-02-20 23:59:33 +0100969
970 /*
971 * This code races in the following way:
972 *
973 * (1) STA sends frame indicating it will go to sleep and does so
974 * (2) hardware/firmware adds STA to filter list, passes frame up
975 * (3) hardware/firmware processes TX fifo and suppresses a frame
976 * (4) we get TX status before having processed the frame and
977 * knowing that the STA has gone to sleep.
978 *
979 * This is actually quite unlikely even when both those events are
980 * processed from interrupts coming in quickly after one another or
981 * even at the same time because we queue both TX status events and
982 * RX frames to be processed by a tasklet and process them in the
983 * same order that they were received or TX status last. Hence, there
984 * is no race as long as the frame RX is processed before the next TX
985 * status, which drivers can ensure, see below.
986 *
987 * Note that this can only happen if the hardware or firmware can
988 * actually add STAs to the filter list, if this is done by the
989 * driver in response to set_tim() (which will only reduce the race
990 * this whole filtering tries to solve, not completely solve it)
991 * this situation cannot happen.
992 *
993 * To completely solve this race drivers need to make sure that they
994 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
995 * functions and
996 * (b) always process RX events before TX status events if ordering
997 * can be unknown, for example with different interrupt status
998 * bits.
999 */
Johannes Berg07346f812008-05-03 01:02:02 +02001000 if (test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Bergd46e1442008-02-20 23:59:33 +01001001 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
Johannes Berge039fa42008-05-15 12:55:29 +02001002 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +01001003 skb_queue_tail(&sta->tx_filtered, skb);
1004 return;
1005 }
1006
Johannes Berg07346f812008-05-03 01:02:02 +02001007 if (!test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Berge039fa42008-05-15 12:55:29 +02001008 !(info->flags & IEEE80211_TX_CTL_REQUEUE)) {
Johannes Bergd46e1442008-02-20 23:59:33 +01001009 /* Software retry the packet once */
Johannes Berge039fa42008-05-15 12:55:29 +02001010 info->flags |= IEEE80211_TX_CTL_REQUEUE;
1011 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +01001012 dev_queue_xmit(skb);
1013 return;
1014 }
1015
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001016#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergd46e1442008-02-20 23:59:33 +01001017 if (net_ratelimit())
1018 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
1019 "queue_len=%d PS=%d @%lu\n",
1020 wiphy_name(local->hw.wiphy),
1021 skb_queue_len(&sta->tx_filtered),
Johannes Berg07346f812008-05-03 01:02:02 +02001022 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001023#endif
Johannes Bergd46e1442008-02-20 23:59:33 +01001024 dev_kfree_skb(skb);
1025}
1026
Johannes Berge039fa42008-05-15 12:55:29 +02001027void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
Jiri Bencf0706e822007-05-05 11:45:53 -07001028{
1029 struct sk_buff *skb2;
1030 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1031 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +02001032 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e822007-05-05 11:45:53 -07001033 u16 frag, type;
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001034 __le16 fc;
Johannes Bergb306f452007-07-10 19:32:08 +02001035 struct ieee80211_tx_status_rtap_hdr *rthdr;
1036 struct ieee80211_sub_if_data *sdata;
Michael Wu3d30d942008-01-31 19:48:27 +01001037 struct net_device *prev_dev = NULL;
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001038 struct sta_info *sta;
Jiri Bencf0706e822007-05-05 11:45:53 -07001039
Johannes Bergd0709a62008-02-25 16:27:46 +01001040 rcu_read_lock();
1041
Johannes Berge039fa42008-05-15 12:55:29 +02001042 if (info->status.excessive_retries) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001043 sta = sta_info_get(local, hdr->addr1);
1044 if (sta) {
Johannes Berg07346f812008-05-03 01:02:02 +02001045 if (test_sta_flags(sta, WLAN_STA_PS)) {
Johannes Bergd46e1442008-02-20 23:59:33 +01001046 /*
1047 * The STA is in power save mode, so assume
Jiri Bencf0706e822007-05-05 11:45:53 -07001048 * that this TX packet failed because of that.
1049 */
Johannes Berge039fa42008-05-15 12:55:29 +02001050 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001051 rcu_read_unlock();
Johannes Bergd46e1442008-02-20 23:59:33 +01001052 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001053 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001054 }
1055 }
1056
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001057 fc = hdr->frame_control;
1058
1059 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
1060 (ieee80211_is_data_qos(fc))) {
1061 u16 tid, ssn;
1062 u8 *qc;
1063 sta = sta_info_get(local, hdr->addr1);
1064 if (sta) {
1065 qc = ieee80211_get_qos_ctl(hdr);
1066 tid = qc[0] & 0xf;
1067 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
1068 & IEEE80211_SCTL_SEQ);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001069 ieee80211_send_bar(sta->sdata, hdr->addr1,
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001070 tid, ssn);
1071 }
1072 }
1073
Johannes Berge039fa42008-05-15 12:55:29 +02001074 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001075 sta = sta_info_get(local, hdr->addr1);
1076 if (sta) {
Johannes Berge039fa42008-05-15 12:55:29 +02001077 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001078 rcu_read_unlock();
Jiri Bencf0706e822007-05-05 11:45:53 -07001079 return;
1080 }
Mattias Nissler1abbe492007-12-20 13:50:07 +01001081 } else
Johannes Berge039fa42008-05-15 12:55:29 +02001082 rate_control_tx_status(local->mdev, skb);
Jiri Bencf0706e822007-05-05 11:45:53 -07001083
Johannes Bergd0709a62008-02-25 16:27:46 +01001084 rcu_read_unlock();
1085
Jiri Bencf0706e822007-05-05 11:45:53 -07001086 ieee80211_led_tx(local, 0);
1087
1088 /* SNMP counters
1089 * Fragments are passed to low-level drivers as separate skbs, so these
1090 * are actually fragments, not frames. Update frame counters only for
1091 * the first fragment of the frame. */
1092
1093 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
1094 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
1095
Johannes Berge039fa42008-05-15 12:55:29 +02001096 if (info->flags & IEEE80211_TX_STAT_ACK) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001097 if (frag == 0) {
1098 local->dot11TransmittedFrameCount++;
1099 if (is_multicast_ether_addr(hdr->addr1))
1100 local->dot11MulticastTransmittedFrameCount++;
Johannes Berge039fa42008-05-15 12:55:29 +02001101 if (info->status.retry_count > 0)
Jiri Bencf0706e822007-05-05 11:45:53 -07001102 local->dot11RetryCount++;
Johannes Berge039fa42008-05-15 12:55:29 +02001103 if (info->status.retry_count > 1)
Jiri Bencf0706e822007-05-05 11:45:53 -07001104 local->dot11MultipleRetryCount++;
1105 }
1106
1107 /* This counter shall be incremented for an acknowledged MPDU
1108 * with an individual address in the address 1 field or an MPDU
1109 * with a multicast address in the address 1 field of type Data
1110 * or Management. */
1111 if (!is_multicast_ether_addr(hdr->addr1) ||
1112 type == IEEE80211_FTYPE_DATA ||
1113 type == IEEE80211_FTYPE_MGMT)
1114 local->dot11TransmittedFragmentCount++;
1115 } else {
1116 if (frag == 0)
1117 local->dot11FailedCount++;
1118 }
1119
Johannes Bergb306f452007-07-10 19:32:08 +02001120 /* this was a transmitted frame, but now we want to reuse it */
1121 skb_orphan(skb);
1122
Michael Wu3d30d942008-01-31 19:48:27 +01001123 /*
1124 * This is a bit racy but we can avoid a lot of work
1125 * with this test...
1126 */
1127 if (!local->monitors && !local->cooked_mntrs) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001128 dev_kfree_skb(skb);
1129 return;
1130 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001131
Johannes Bergb306f452007-07-10 19:32:08 +02001132 /* send frame to monitor interfaces now */
1133
1134 if (skb_headroom(skb) < sizeof(*rthdr)) {
1135 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
1136 dev_kfree_skb(skb);
1137 return;
1138 }
1139
Johannes Berg988c0f72008-04-17 19:21:22 +02001140 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
Johannes Bergb306f452007-07-10 19:32:08 +02001141 skb_push(skb, sizeof(*rthdr));
1142
1143 memset(rthdr, 0, sizeof(*rthdr));
1144 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1145 rthdr->hdr.it_present =
1146 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
1147 (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
1148
Johannes Berge039fa42008-05-15 12:55:29 +02001149 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
Johannes Bergb306f452007-07-10 19:32:08 +02001150 !is_multicast_ether_addr(hdr->addr1))
1151 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
1152
Johannes Berge039fa42008-05-15 12:55:29 +02001153 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) &&
1154 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT))
Johannes Bergb306f452007-07-10 19:32:08 +02001155 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
Johannes Berge039fa42008-05-15 12:55:29 +02001156 else if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS)
Johannes Bergb306f452007-07-10 19:32:08 +02001157 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
1158
Johannes Berge039fa42008-05-15 12:55:29 +02001159 rthdr->data_retries = info->status.retry_count;
Johannes Bergb306f452007-07-10 19:32:08 +02001160
Michael Wu3d30d942008-01-31 19:48:27 +01001161 /* XXX: is this sufficient for BPF? */
1162 skb_set_mac_header(skb, 0);
1163 skb->ip_summed = CHECKSUM_UNNECESSARY;
1164 skb->pkt_type = PACKET_OTHERHOST;
1165 skb->protocol = htons(ETH_P_802_2);
1166 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergb306f452007-07-10 19:32:08 +02001167
Michael Wu3d30d942008-01-31 19:48:27 +01001168 rcu_read_lock();
1169 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +01001170 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR) {
Johannes Bergb306f452007-07-10 19:32:08 +02001171 if (!netif_running(sdata->dev))
1172 continue;
Michael Wu3d30d942008-01-31 19:48:27 +01001173
1174 if (prev_dev) {
Johannes Berg79010422007-09-18 17:29:21 -04001175 skb2 = skb_clone(skb, GFP_ATOMIC);
Michael Wu3d30d942008-01-31 19:48:27 +01001176 if (skb2) {
1177 skb2->dev = prev_dev;
1178 netif_rx(skb2);
1179 }
1180 }
1181
1182 prev_dev = sdata->dev;
Johannes Bergb306f452007-07-10 19:32:08 +02001183 }
1184 }
Michael Wu3d30d942008-01-31 19:48:27 +01001185 if (prev_dev) {
1186 skb->dev = prev_dev;
1187 netif_rx(skb);
1188 skb = NULL;
1189 }
Johannes Berg79010422007-09-18 17:29:21 -04001190 rcu_read_unlock();
Michael Wu3d30d942008-01-31 19:48:27 +01001191 dev_kfree_skb(skb);
Jiri Bencf0706e822007-05-05 11:45:53 -07001192}
1193EXPORT_SYMBOL(ieee80211_tx_status);
1194
Jiri Bencf0706e822007-05-05 11:45:53 -07001195struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
1196 const struct ieee80211_ops *ops)
1197{
Jiri Bencf0706e822007-05-05 11:45:53 -07001198 struct ieee80211_local *local;
Jiri Bencf0706e822007-05-05 11:45:53 -07001199 int priv_size;
1200 struct wiphy *wiphy;
1201
1202 /* Ensure 32-byte alignment of our private data and hw private data.
1203 * We use the wiphy priv data for both our ieee80211_local and for
1204 * the driver's private data
1205 *
1206 * In memory it'll be like this:
1207 *
1208 * +-------------------------+
1209 * | struct wiphy |
1210 * +-------------------------+
1211 * | struct ieee80211_local |
1212 * +-------------------------+
1213 * | driver's private data |
1214 * +-------------------------+
1215 *
1216 */
1217 priv_size = ((sizeof(struct ieee80211_local) +
1218 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
1219 priv_data_len;
1220
1221 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
1222
1223 if (!wiphy)
1224 return NULL;
1225
1226 wiphy->privid = mac80211_wiphy_privid;
1227
1228 local = wiphy_priv(wiphy);
1229 local->hw.wiphy = wiphy;
1230
1231 local->hw.priv = (char *)local +
1232 ((sizeof(struct ieee80211_local) +
1233 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
1234
Johannes Berg4480f15c2007-07-10 19:32:10 +02001235 BUG_ON(!ops->tx);
Johannes Berg4150c572007-09-17 01:29:23 -04001236 BUG_ON(!ops->start);
1237 BUG_ON(!ops->stop);
Johannes Berg4480f15c2007-07-10 19:32:10 +02001238 BUG_ON(!ops->config);
1239 BUG_ON(!ops->add_interface);
Johannes Berg4150c572007-09-17 01:29:23 -04001240 BUG_ON(!ops->remove_interface);
1241 BUG_ON(!ops->configure_filter);
Jiri Bencf0706e822007-05-05 11:45:53 -07001242 local->ops = ops;
1243
Jiri Bencf0706e822007-05-05 11:45:53 -07001244 local->hw.queues = 1; /* default */
1245
Jiri Bencf0706e822007-05-05 11:45:53 -07001246 local->bridge_packets = 1;
1247
1248 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
1249 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
1250 local->short_retry_limit = 7;
1251 local->long_retry_limit = 4;
1252 local->hw.conf.radio_enabled = 1;
Jiri Bencf0706e822007-05-05 11:45:53 -07001253
Johannes Berg79010422007-09-18 17:29:21 -04001254 INIT_LIST_HEAD(&local->interfaces);
Jiri Bencf0706e822007-05-05 11:45:53 -07001255
Johannes Bergb16bd152008-04-11 21:40:35 +02001256 spin_lock_init(&local->key_lock);
1257
Jiri Bencf0706e822007-05-05 11:45:53 -07001258 INIT_DELAYED_WORK(&local->scan_work, ieee80211_sta_scan_work);
Jiri Bencf0706e822007-05-05 11:45:53 -07001259
1260 sta_info_init(local);
1261
Jiri Bencf0706e822007-05-05 11:45:53 -07001262 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
1263 (unsigned long)local);
1264 tasklet_disable(&local->tx_pending_tasklet);
1265
1266 tasklet_init(&local->tasklet,
1267 ieee80211_tasklet_handler,
1268 (unsigned long) local);
1269 tasklet_disable(&local->tasklet);
1270
1271 skb_queue_head_init(&local->skb_queue);
1272 skb_queue_head_init(&local->skb_queue_unreliable);
1273
1274 return local_to_hw(local);
1275}
1276EXPORT_SYMBOL(ieee80211_alloc_hw);
1277
1278int ieee80211_register_hw(struct ieee80211_hw *hw)
1279{
1280 struct ieee80211_local *local = hw_to_local(hw);
1281 const char *name;
1282 int result;
Johannes Berg8318d782008-01-24 19:38:38 +01001283 enum ieee80211_band band;
Johannes Berg96d51052008-02-08 09:48:13 +01001284 struct net_device *mdev;
Johannes Berg3e122be2008-07-09 14:40:34 +02001285 struct wireless_dev *mwdev;
Johannes Berg8318d782008-01-24 19:38:38 +01001286
1287 /*
1288 * generic code guarantees at least one band,
1289 * set this very early because much code assumes
1290 * that hw.conf.channel is assigned
1291 */
1292 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1293 struct ieee80211_supported_band *sband;
1294
1295 sband = local->hw.wiphy->bands[band];
1296 if (sband) {
1297 /* init channel we're on */
1298 local->hw.conf.channel =
1299 local->oper_channel =
1300 local->scan_channel = &sband->channels[0];
1301 break;
1302 }
1303 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001304
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001305 /* if low-level driver supports AP, we also support VLAN */
1306 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
1307 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
1308
1309 /* mac80211 always supports monitor */
1310 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
1311
Jiri Bencf0706e822007-05-05 11:45:53 -07001312 result = wiphy_register(local->hw.wiphy);
1313 if (result < 0)
1314 return result;
1315
Johannes Berge2530082008-05-17 00:57:14 +02001316 /*
1317 * We use the number of queues for feature tests (QoS, HT) internally
1318 * so restrict them appropriately.
1319 */
Johannes Berge2530082008-05-17 00:57:14 +02001320 if (hw->queues > IEEE80211_MAX_QUEUES)
1321 hw->queues = IEEE80211_MAX_QUEUES;
1322 if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES)
1323 hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES;
1324 if (hw->queues < 4)
1325 hw->ampdu_queues = 0;
Johannes Berge2530082008-05-17 00:57:14 +02001326
Johannes Berg3e122be2008-07-09 14:40:34 +02001327 mdev = alloc_netdev_mq(sizeof(struct wireless_dev),
Johannes Berge2530082008-05-17 00:57:14 +02001328 "wmaster%d", ether_setup,
1329 ieee80211_num_queues(hw));
Johannes Berg96d51052008-02-08 09:48:13 +01001330 if (!mdev)
1331 goto fail_mdev_alloc;
1332
Johannes Berg3e122be2008-07-09 14:40:34 +02001333 mwdev = netdev_priv(mdev);
1334 mdev->ieee80211_ptr = mwdev;
1335 mwdev->wiphy = local->hw.wiphy;
Johannes Berg96d51052008-02-08 09:48:13 +01001336
1337 local->mdev = mdev;
1338
Johannes Berg3e122be2008-07-09 14:40:34 +02001339 ieee80211_rx_bss_list_init(local);
Johannes Berg96d51052008-02-08 09:48:13 +01001340
1341 mdev->hard_start_xmit = ieee80211_master_start_xmit;
1342 mdev->open = ieee80211_master_open;
1343 mdev->stop = ieee80211_master_stop;
1344 mdev->type = ARPHRD_IEEE80211;
1345 mdev->header_ops = &ieee80211_header_ops;
1346 mdev->set_multicast_list = ieee80211_master_set_multicast_list;
1347
Jiri Bencf0706e822007-05-05 11:45:53 -07001348 name = wiphy_dev(local->hw.wiphy)->driver->name;
Johannes Berg59959a62008-06-26 19:59:56 +02001349 local->hw.workqueue = create_freezeable_workqueue(name);
Jiri Bencf0706e822007-05-05 11:45:53 -07001350 if (!local->hw.workqueue) {
1351 result = -ENOMEM;
1352 goto fail_workqueue;
1353 }
1354
Johannes Bergb306f452007-07-10 19:32:08 +02001355 /*
1356 * The hardware needs headroom for sending the frame,
1357 * and we need some headroom for passing the frame to monitor
1358 * interfaces, but never both at the same time.
1359 */
Jiri Benc33ccad32007-07-18 17:10:44 +02001360 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
1361 sizeof(struct ieee80211_tx_status_rtap_hdr));
Johannes Bergb306f452007-07-10 19:32:08 +02001362
Jiri Bence9f207f2007-05-05 11:46:38 -07001363 debugfs_hw_add(local);
1364
Tomas Winklerdc0ae302008-06-12 22:38:37 +03001365 if (local->hw.conf.beacon_int < 10)
1366 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e822007-05-05 11:45:53 -07001367
Tomas Winklerea95bba2008-07-18 13:53:00 +08001368 if (local->hw.max_listen_interval == 0)
1369 local->hw.max_listen_interval = 1;
1370
1371 local->hw.conf.listen_interval = local->hw.max_listen_interval;
1372
Bruno Randolf566bfe52008-05-08 19:15:40 +02001373 local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
1374 IEEE80211_HW_SIGNAL_DB |
1375 IEEE80211_HW_SIGNAL_DBM) ?
Jiri Bencf0706e822007-05-05 11:45:53 -07001376 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001377 local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
Jiri Bencf0706e822007-05-05 11:45:53 -07001378 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001379 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
Jiri Bencf0706e822007-05-05 11:45:53 -07001380 local->wstats_flags |= IW_QUAL_DBM;
1381
1382 result = sta_info_start(local);
1383 if (result < 0)
1384 goto fail_sta_info;
1385
1386 rtnl_lock();
1387 result = dev_alloc_name(local->mdev, local->mdev->name);
1388 if (result < 0)
1389 goto fail_dev;
1390
1391 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1392 SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
1393
1394 result = register_netdevice(local->mdev);
1395 if (result < 0)
1396 goto fail_dev;
1397
Johannes Berg830f9032007-10-28 14:51:05 +01001398 result = ieee80211_init_rate_ctrl_alg(local,
1399 hw->rate_control_algorithm);
Jiri Bencf0706e822007-05-05 11:45:53 -07001400 if (result < 0) {
1401 printk(KERN_DEBUG "%s: Failed to initialize rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001402 "algorithm\n", wiphy_name(local->hw.wiphy));
Jiri Bencf0706e822007-05-05 11:45:53 -07001403 goto fail_rate;
1404 }
1405
1406 result = ieee80211_wep_init(local);
1407
1408 if (result < 0) {
Jeremy Fitzhardinge023a04b2008-07-14 12:52:08 -07001409 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
1410 wiphy_name(local->hw.wiphy), result);
Jiri Bencf0706e822007-05-05 11:45:53 -07001411 goto fail_wep;
1412 }
1413
David S. Miller51cb6db2008-07-15 03:34:57 -07001414 local->mdev->select_queue = ieee80211_select_queue;
Jiri Bencf0706e822007-05-05 11:45:53 -07001415
1416 /* add one default STA interface */
Johannes Berg3e122be2008-07-09 14:40:34 +02001417 result = ieee80211_if_add(local, "wlan%d", NULL,
Luis Carlos Coboee385852008-02-23 15:17:11 +01001418 IEEE80211_IF_TYPE_STA, NULL);
Jiri Bencf0706e822007-05-05 11:45:53 -07001419 if (result)
1420 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001421 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e822007-05-05 11:45:53 -07001422
Jiri Bencf0706e822007-05-05 11:45:53 -07001423 rtnl_unlock();
1424
1425 ieee80211_led_init(local);
1426
1427 return 0;
1428
1429fail_wep:
1430 rate_control_deinitialize(local);
1431fail_rate:
1432 unregister_netdevice(local->mdev);
Pavel Emelyanov339a7c42008-05-04 17:59:30 -07001433 local->mdev = NULL;
Jiri Bencf0706e822007-05-05 11:45:53 -07001434fail_dev:
1435 rtnl_unlock();
1436 sta_info_stop(local);
1437fail_sta_info:
Jiri Bence9f207f2007-05-05 11:46:38 -07001438 debugfs_hw_del(local);
Jiri Bencf0706e822007-05-05 11:45:53 -07001439 destroy_workqueue(local->hw.workqueue);
1440fail_workqueue:
Johannes Berg3e122be2008-07-09 14:40:34 +02001441 if (local->mdev)
1442 free_netdev(local->mdev);
Johannes Berg96d51052008-02-08 09:48:13 +01001443fail_mdev_alloc:
Jiri Bencf0706e822007-05-05 11:45:53 -07001444 wiphy_unregister(local->hw.wiphy);
1445 return result;
1446}
1447EXPORT_SYMBOL(ieee80211_register_hw);
1448
Jiri Bencf0706e822007-05-05 11:45:53 -07001449void ieee80211_unregister_hw(struct ieee80211_hw *hw)
1450{
1451 struct ieee80211_local *local = hw_to_local(hw);
Jiri Bencf0706e822007-05-05 11:45:53 -07001452
1453 tasklet_kill(&local->tx_pending_tasklet);
1454 tasklet_kill(&local->tasklet);
1455
1456 rtnl_lock();
1457
Johannes Berg79010422007-09-18 17:29:21 -04001458 /*
1459 * At this point, interface list manipulations are fine
1460 * because the driver cannot be handing us frames any
1461 * more and the tasklet is killed.
1462 */
Johannes Berg5b2812e2007-09-26 14:27:23 +02001463
Johannes Berg75636522008-07-09 14:40:35 +02001464 /* First, we remove all virtual interfaces. */
1465 ieee80211_remove_interfaces(local);
Johannes Berg5b2812e2007-09-26 14:27:23 +02001466
1467 /* then, finally, remove the master interface */
Johannes Berg3e122be2008-07-09 14:40:34 +02001468 unregister_netdevice(local->mdev);
Jiri Bencf0706e822007-05-05 11:45:53 -07001469
1470 rtnl_unlock();
1471
Johannes Berg3e122be2008-07-09 14:40:34 +02001472 ieee80211_rx_bss_list_deinit(local);
Jiri Bencf0706e822007-05-05 11:45:53 -07001473 ieee80211_clear_tx_pending(local);
1474 sta_info_stop(local);
1475 rate_control_deinitialize(local);
Jiri Bence9f207f2007-05-05 11:46:38 -07001476 debugfs_hw_del(local);
Jiri Bencf0706e822007-05-05 11:45:53 -07001477
Jiri Bencf0706e822007-05-05 11:45:53 -07001478 if (skb_queue_len(&local->skb_queue)
1479 || skb_queue_len(&local->skb_queue_unreliable))
1480 printk(KERN_WARNING "%s: skb_queue not empty\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001481 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e822007-05-05 11:45:53 -07001482 skb_queue_purge(&local->skb_queue);
1483 skb_queue_purge(&local->skb_queue_unreliable);
1484
1485 destroy_workqueue(local->hw.workqueue);
1486 wiphy_unregister(local->hw.wiphy);
1487 ieee80211_wep_free(local);
1488 ieee80211_led_exit(local);
Johannes Berg3e122be2008-07-09 14:40:34 +02001489 free_netdev(local->mdev);
Jiri Bencf0706e822007-05-05 11:45:53 -07001490}
1491EXPORT_SYMBOL(ieee80211_unregister_hw);
1492
1493void ieee80211_free_hw(struct ieee80211_hw *hw)
1494{
1495 struct ieee80211_local *local = hw_to_local(hw);
1496
Jiri Bencf0706e822007-05-05 11:45:53 -07001497 wiphy_free(local->hw.wiphy);
1498}
1499EXPORT_SYMBOL(ieee80211_free_hw);
1500
Jiri Bencf0706e822007-05-05 11:45:53 -07001501static int __init ieee80211_init(void)
1502{
1503 struct sk_buff *skb;
1504 int ret;
1505
Johannes Berge039fa42008-05-15 12:55:29 +02001506 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
1507 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
1508 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
Jiri Bencf0706e822007-05-05 11:45:53 -07001509
Johannes Berg4b475892008-01-02 15:17:03 +01001510 ret = rc80211_pid_init();
Mattias Nisslerad018372007-12-19 01:25:57 +01001511 if (ret)
David S. Miller51cb6db2008-07-15 03:34:57 -07001512 return ret;
Jiri Bencf0706e822007-05-05 11:45:53 -07001513
Jiri Bence9f207f2007-05-05 11:46:38 -07001514 ieee80211_debugfs_netdev_init();
1515
Jiri Bencf0706e822007-05-05 11:45:53 -07001516 return 0;
1517}
1518
Jiri Bencf0706e822007-05-05 11:45:53 -07001519static void __exit ieee80211_exit(void)
1520{
Johannes Berg4b475892008-01-02 15:17:03 +01001521 rc80211_pid_exit();
Johannes Bergac71c692007-10-28 14:17:44 +01001522
Johannes Berg3b967662008-04-08 17:56:52 +02001523 /*
1524 * For key todo, it'll be empty by now but the work
1525 * might still be scheduled.
1526 */
1527 flush_scheduled_work();
1528
Luis Carlos Cobof7a92142008-02-23 15:17:18 +01001529 if (mesh_allocated)
1530 ieee80211s_stop();
Johannes Berg902acc72008-02-23 15:17:19 +01001531
Jiri Bence9f207f2007-05-05 11:46:38 -07001532 ieee80211_debugfs_netdev_exit();
Jiri Bencf0706e822007-05-05 11:45:53 -07001533}
1534
1535
Johannes Bergca9938fe2007-09-11 12:50:32 +02001536subsys_initcall(ieee80211_init);
Jiri Bencf0706e822007-05-05 11:45:53 -07001537module_exit(ieee80211_exit);
1538
1539MODULE_DESCRIPTION("IEEE 802.11 subsystem");
1540MODULE_LICENSE("GPL");