blob: 6a7f4fae18c2841291d368be769e9ba0cb2c422a [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:
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++;
Johannes Berg5825fe102008-09-09 12:56:01 +0200402 if (need_hw_reconfig) {
Michael Bueschceffefd2008-02-10 14:16:52 +0100403 ieee80211_hw_config(local);
Johannes Berg5825fe102008-09-09 12:56:01 +0200404 /*
405 * set default queue parameters so drivers don't
406 * need to initialise the hardware if the hardware
407 * doesn't start up with sane defaults
408 */
409 ieee80211_set_wmm_default(sdata);
410 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200411
Jan Niehusmann64f851e2008-03-23 20:23:56 +0100412 /*
413 * ieee80211_sta_work is disabled while network interface
414 * is down. Therefore, some configuration changes may not
415 * yet be effective. Trigger execution of ieee80211_sta_work
416 * to fix this.
417 */
Johannes Berg988c0f72008-04-17 19:21:22 +0200418 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
419 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Jan Niehusmann64f851e2008-03-23 20:23:56 +0100420 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
421 queue_work(local->hw.workqueue, &ifsta->work);
422 }
423
David S. Miller51cb6db2008-07-15 03:34:57 -0700424 netif_tx_start_all_queues(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400425
Johannes Bergb2c258f2007-07-27 15:43:23 +0200426 return 0;
Johannes Berg636c5d42008-04-24 14:18:37 +0200427 err_del_interface:
428 local->ops->remove_interface(local_to_hw(local), &conf);
429 err_stop:
430 if (!local->open_count && local->ops->stop)
431 local->ops->stop(local_to_hw(local));
Johannes Berg3e122be2008-07-09 14:40:34 +0200432 err_del_bss:
433 sdata->bss = NULL;
434 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
435 list_del(&sdata->u.vlan.list);
Johannes Berg636c5d42008-04-24 14:18:37 +0200436 return res;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200437}
438
Johannes Berg4150c572007-09-17 01:29:23 -0400439static int ieee80211_stop(struct net_device *dev)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200440{
Johannes Berg44213b52008-02-25 16:27:49 +0100441 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
442 struct ieee80211_local *local = sdata->local;
Johannes Berg4150c572007-09-17 01:29:23 -0400443 struct ieee80211_if_init_conf conf;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200444 struct sta_info *sta;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200445
Johannes Berg44213b52008-02-25 16:27:49 +0100446 /*
447 * Stop TX on this interface first.
448 */
David S. Miller51cb6db2008-07-15 03:34:57 -0700449 netif_tx_stop_all_queues(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400450
Johannes Berg44213b52008-02-25 16:27:49 +0100451 /*
452 * Now delete all active aggregation sessions.
453 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100454 rcu_read_lock();
455
456 list_for_each_entry_rcu(sta, &local->sta_list, list) {
457 if (sta->sdata == sdata)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200458 ieee80211_sta_tear_down_BA_sessions(sdata, sta->addr);
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200459 }
460
Johannes Bergd0709a62008-02-25 16:27:46 +0100461 rcu_read_unlock();
462
Johannes Berg44213b52008-02-25 16:27:49 +0100463 /*
464 * Remove all stations associated with this interface.
465 *
466 * This must be done before calling ops->remove_interface()
467 * because otherwise we can later invoke ops->sta_notify()
468 * whenever the STAs are removed, and that invalidates driver
469 * assumptions about always getting a vif pointer that is valid
470 * (because if we remove a STA after ops->remove_interface()
471 * the driver will have removed the vif info already!)
472 *
473 * We could relax this and only unlink the stations from the
474 * hash table and list but keep them on a per-sdata list that
475 * will be inserted back again when the interface is brought
476 * up again, but I don't currently see a use case for that,
477 * except with WDS which gets a STA entry created when it is
478 * brought up.
479 */
480 sta_info_flush(local, sdata);
Johannes Berg4150c572007-09-17 01:29:23 -0400481
Johannes Bergc1428b32007-11-16 02:54:53 +0100482 /*
483 * Don't count this interface for promisc/allmulti while it
484 * is down. dev_mc_unsync() will invoke set_multicast_list
485 * on the master interface which will sync these down to the
486 * hardware as filter flags.
487 */
488 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
489 atomic_dec(&local->iff_allmultis);
490
491 if (sdata->flags & IEEE80211_SDATA_PROMISC)
492 atomic_dec(&local->iff_promiscs);
493
Johannes Berg4150c572007-09-17 01:29:23 -0400494 dev_mc_unsync(local->mdev, dev);
495
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100496 /* APs need special treatment */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100497 if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400498 struct ieee80211_sub_if_data *vlan, *tmp;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100499 struct beacon_data *old_beacon = sdata->u.ap.beacon;
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400500
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100501 /* remove beacon */
502 rcu_assign_pointer(sdata->u.ap.beacon, NULL);
503 synchronize_rcu();
504 kfree(old_beacon);
505
506 /* down all dependent devices, that is VLANs */
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400507 list_for_each_entry_safe(vlan, tmp, &sdata->u.ap.vlans,
508 u.vlan.list)
509 dev_close(vlan->dev);
510 WARN_ON(!list_empty(&sdata->u.ap.vlans));
511 }
512
Johannes Berg4150c572007-09-17 01:29:23 -0400513 local->open_count--;
514
Johannes Berg51fb61e2007-12-19 01:31:27 +0100515 switch (sdata->vif.type) {
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400516 case IEEE80211_IF_TYPE_VLAN:
517 list_del(&sdata->u.vlan.list);
Johannes Berg0ec3ca42007-09-17 01:29:24 -0400518 /* no need to tell driver */
519 break;
Johannes Berg4150c572007-09-17 01:29:23 -0400520 case IEEE80211_IF_TYPE_MNTR:
Michael Wu3d30d942008-01-31 19:48:27 +0100521 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
522 local->cooked_mntrs--;
523 break;
524 }
525
Johannes Berg4150c572007-09-17 01:29:23 -0400526 local->monitors--;
Michael Wu8cc9a732008-01-31 19:48:23 +0100527 if (local->monitors == 0)
Michael Wu8b393f12007-11-28 01:57:08 -0500528 local->hw.conf.flags &= ~IEEE80211_CONF_RADIOTAP;
Michael Wu8cc9a732008-01-31 19:48:23 +0100529
530 if (sdata->u.mntr_flags & MONITOR_FLAG_FCSFAIL)
531 local->fif_fcsfail--;
532 if (sdata->u.mntr_flags & MONITOR_FLAG_PLCPFAIL)
533 local->fif_plcpfail--;
534 if (sdata->u.mntr_flags & MONITOR_FLAG_CONTROL)
535 local->fif_control--;
536 if (sdata->u.mntr_flags & MONITOR_FLAG_OTHER_BSS)
537 local->fif_other_bss--;
538
David S. Millerb9e40852008-07-15 00:15:08 -0700539 netif_addr_lock_bh(local->mdev);
Michael Wu8cc9a732008-01-31 19:48:23 +0100540 ieee80211_configure_filter(local);
David S. Millerb9e40852008-07-15 00:15:08 -0700541 netif_addr_unlock_bh(local->mdev);
Johannes Berg4150c572007-09-17 01:29:23 -0400542 break;
Luis Carlos Cobof7a92142008-02-23 15:17:18 +0100543 case IEEE80211_IF_TYPE_MESH_POINT:
Luis Carlos Cobo8dbc1722008-08-06 13:17:54 +0200544 /* allmulti is always set on mesh ifaces */
545 atomic_dec(&local->iff_allmultis);
546 /* fall through */
Johannes Bergb2c258f2007-07-27 15:43:23 +0200547 case IEEE80211_IF_TYPE_STA:
548 case IEEE80211_IF_TYPE_IBSS:
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300549 sdata->u.sta.state = IEEE80211_STA_MLME_DISABLED;
Assaf Kraussad81b2f2008-06-04 20:27:59 +0300550 memset(sdata->u.sta.bssid, 0, ETH_ALEN);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200551 del_timer_sync(&sdata->u.sta.timer);
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400552 /*
Johannes Berg79010422007-09-18 17:29:21 -0400553 * When we get here, the interface is marked down.
554 * Call synchronize_rcu() to wait for the RX path
555 * should it be using the interface and enqueuing
556 * frames at this very time on another CPU.
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400557 */
Johannes Berg79010422007-09-18 17:29:21 -0400558 synchronize_rcu();
Johannes Bergb2c258f2007-07-27 15:43:23 +0200559 skb_queue_purge(&sdata->u.sta.skb_queue);
Johannes Berg2a8a9a82007-08-28 17:01:52 -0400560
Johannes Berg491775a2008-09-08 17:44:23 +0200561 if (local->scan_sdata == sdata) {
Zhu Yiece8edd2007-11-22 10:53:21 +0800562 if (!local->ops->hw_scan) {
563 local->sta_sw_scanning = 0;
564 cancel_delayed_work(&local->scan_work);
565 } else
566 local->sta_hw_scanning = 0;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200567 }
Zhu Yiece8edd2007-11-22 10:53:21 +0800568
Zhu Yia10605e2007-11-22 11:10:22 +0800569 sdata->u.sta.flags &= ~IEEE80211_STA_PRIVACY_INVOKED;
570 kfree(sdata->u.sta.extra_ie);
571 sdata->u.sta.extra_ie = NULL;
572 sdata->u.sta.extra_ie_len = 0;
Johannes Berg4150c572007-09-17 01:29:23 -0400573 /* fall through */
574 default:
Johannes Berg32bfd352007-12-19 01:31:26 +0100575 conf.vif = &sdata->vif;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100576 conf.type = sdata->vif.type;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200577 conf.mac_addr = dev->dev_addr;
Johannes Berg4150c572007-09-17 01:29:23 -0400578 /* disable all keys for as long as this netdev is down */
579 ieee80211_disable_keys(sdata);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200580 local->ops->remove_interface(local_to_hw(local), &conf);
581 }
582
Johannes Berg3e122be2008-07-09 14:40:34 +0200583 sdata->bss = NULL;
584
Johannes Berg4150c572007-09-17 01:29:23 -0400585 if (local->open_count == 0) {
586 if (netif_running(local->mdev))
587 dev_close(local->mdev);
588
Johannes Berg4150c572007-09-17 01:29:23 -0400589 if (local->ops->stop)
590 local->ops->stop(local_to_hw(local));
591
Ivo van Doorncdcb0062008-01-07 19:45:24 +0100592 ieee80211_led_radio(local, 0);
593
Ivo van Doornea0c9252008-07-03 19:02:44 +0200594 flush_workqueue(local->hw.workqueue);
595
Johannes Berg4150c572007-09-17 01:29:23 -0400596 tasklet_disable(&local->tx_pending_tasklet);
597 tasklet_disable(&local->tasklet);
598 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200599
600 return 0;
601}
602
Johannes Bergb2c258f2007-07-27 15:43:23 +0200603static void ieee80211_set_multicast_list(struct net_device *dev)
604{
605 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
606 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg4150c572007-09-17 01:29:23 -0400607 int allmulti, promisc, sdata_allmulti, sdata_promisc;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200608
Johannes Berg4150c572007-09-17 01:29:23 -0400609 allmulti = !!(dev->flags & IFF_ALLMULTI);
610 promisc = !!(dev->flags & IFF_PROMISC);
Johannes Bergb52f2192007-11-16 01:49:11 +0100611 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
612 sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
Johannes Berg4150c572007-09-17 01:29:23 -0400613
614 if (allmulti != sdata_allmulti) {
615 if (dev->flags & IFF_ALLMULTI)
Johannes Berg53918992007-09-26 15:19:47 +0200616 atomic_inc(&local->iff_allmultis);
Johannes Berg4150c572007-09-17 01:29:23 -0400617 else
Johannes Berg53918992007-09-26 15:19:47 +0200618 atomic_dec(&local->iff_allmultis);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400619 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200620 }
Johannes Berg4150c572007-09-17 01:29:23 -0400621
622 if (promisc != sdata_promisc) {
623 if (dev->flags & IFF_PROMISC)
Johannes Berg53918992007-09-26 15:19:47 +0200624 atomic_inc(&local->iff_promiscs);
Johannes Berg4150c572007-09-17 01:29:23 -0400625 else
Johannes Berg53918992007-09-26 15:19:47 +0200626 atomic_dec(&local->iff_promiscs);
Jiri Slaby13262ff2007-08-28 17:01:54 -0400627 sdata->flags ^= IEEE80211_SDATA_PROMISC;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200628 }
Johannes Berg4150c572007-09-17 01:29:23 -0400629
630 dev_mc_sync(local->mdev, dev);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200631}
632
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700633static const struct header_ops ieee80211_header_ops = {
634 .create = eth_header,
635 .parse = header_parse_80211,
636 .rebuild = eth_rebuild_header,
637 .cache = eth_header_cache,
638 .cache_update = eth_header_cache_update,
639};
640
Johannes Bergb2c258f2007-07-27 15:43:23 +0200641void ieee80211_if_setup(struct net_device *dev)
642{
643 ether_setup(dev);
644 dev->hard_start_xmit = ieee80211_subif_start_xmit;
645 dev->wireless_handlers = &ieee80211_iw_handler_def;
646 dev->set_multicast_list = ieee80211_set_multicast_list;
647 dev->change_mtu = ieee80211_change_mtu;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200648 dev->open = ieee80211_open;
649 dev->stop = ieee80211_stop;
Johannes Berg75636522008-07-09 14:40:35 +0200650 dev->destructor = free_netdev;
Luis Carlos Cobobdbe8192008-08-14 10:40:48 -0700651 /* we will validate the address ourselves in ->open */
652 dev->validate_addr = NULL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200653}
654
Johannes Bergb2c258f2007-07-27 15:43:23 +0200655/* everything else */
656
Johannes Berg9d139c82008-07-09 14:40:37 +0200657int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200658{
Johannes Berg9d139c82008-07-09 14:40:37 +0200659 struct ieee80211_local *local = sdata->local;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200660 struct ieee80211_if_conf conf;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200661
Johannes Berg9d139c82008-07-09 14:40:37 +0200662 if (WARN_ON(!netif_running(sdata->dev)))
663 return 0;
664
665 if (!local->ops->config_interface)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200666 return 0;
667
668 memset(&conf, 0, sizeof(conf));
Johannes Berg9d139c82008-07-09 14:40:37 +0200669 conf.changed = changed;
670
Johannes Berg51fb61e2007-12-19 01:31:27 +0100671 if (sdata->vif.type == IEEE80211_IF_TYPE_STA ||
672 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Johannes Berg4150c572007-09-17 01:29:23 -0400673 conf.bssid = sdata->u.sta.bssid;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200674 conf.ssid = sdata->u.sta.ssid;
675 conf.ssid_len = sdata->u.sta.ssid_len;
Johannes Berg51fb61e2007-12-19 01:31:27 +0100676 } else if (sdata->vif.type == IEEE80211_IF_TYPE_AP) {
Johannes Berg9d139c82008-07-09 14:40:37 +0200677 conf.bssid = sdata->dev->dev_addr;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200678 conf.ssid = sdata->u.ap.ssid;
679 conf.ssid_len = sdata->u.ap.ssid_len;
Johannes Berg9d139c82008-07-09 14:40:37 +0200680 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
681 u8 zero[ETH_ALEN] = { 0 };
682 conf.bssid = zero;
683 conf.ssid = zero;
684 conf.ssid_len = 0;
685 } else {
686 WARN_ON(1);
687 return -EINVAL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200688 }
Johannes Berg9d139c82008-07-09 14:40:37 +0200689
690 if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID)))
691 return -EINVAL;
692
693 if (WARN_ON(!conf.ssid && (changed & IEEE80211_IFCC_SSID)))
694 return -EINVAL;
695
Johannes Bergb2c258f2007-07-27 15:43:23 +0200696 return local->ops->config_interface(local_to_hw(local),
Johannes Berg32bfd352007-12-19 01:31:26 +0100697 &sdata->vif, &conf);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200698}
699
Johannes Bergb2c258f2007-07-27 15:43:23 +0200700int ieee80211_hw_config(struct ieee80211_local *local)
701{
Johannes Bergb2c258f2007-07-27 15:43:23 +0200702 struct ieee80211_channel *chan;
703 int ret = 0;
704
Johannes Berg8318d782008-01-24 19:38:38 +0100705 if (local->sta_sw_scanning)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200706 chan = local->scan_channel;
Johannes Berg8318d782008-01-24 19:38:38 +0100707 else
Johannes Bergb2c258f2007-07-27 15:43:23 +0200708 chan = local->oper_channel;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200709
Johannes Berg8318d782008-01-24 19:38:38 +0100710 local->hw.conf.channel = chan;
711
712 if (!local->hw.conf.power_level)
713 local->hw.conf.power_level = chan->max_power;
714 else
715 local->hw.conf.power_level = min(chan->max_power,
716 local->hw.conf.power_level);
717
718 local->hw.conf.max_antenna_gain = chan->max_antenna_gain;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200719
720#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg8318d782008-01-24 19:38:38 +0100721 printk(KERN_DEBUG "%s: HW CONFIG: freq=%d\n",
722 wiphy_name(local->hw.wiphy), chan->center_freq);
723#endif
Johannes Bergb2c258f2007-07-27 15:43:23 +0200724
Michael Bueschf7c4dae2007-09-24 18:41:49 +0200725 if (local->open_count)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200726 ret = local->ops->config(local_to_hw(local), &local->hw.conf);
727
728 return ret;
729}
730
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200731/**
Tomas Winkler38668c02008-03-28 16:33:32 -0700732 * ieee80211_handle_ht should be used only after legacy configuration
733 * has been determined namely band, as ht configuration depends upon
734 * the hardware's HT abilities for a _specific_ band.
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200735 */
Tomas Winkler38668c02008-03-28 16:33:32 -0700736u32 ieee80211_handle_ht(struct ieee80211_local *local, int enable_ht,
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200737 struct ieee80211_ht_info *req_ht_cap,
738 struct ieee80211_ht_bss_info *req_bss_cap)
739{
740 struct ieee80211_conf *conf = &local->hw.conf;
Johannes Berg8318d782008-01-24 19:38:38 +0100741 struct ieee80211_supported_band *sband;
Tomas Winkler38668c02008-03-28 16:33:32 -0700742 struct ieee80211_ht_info ht_conf;
743 struct ieee80211_ht_bss_info ht_bss_conf;
Tomas Winkler38668c02008-03-28 16:33:32 -0700744 u32 changed = 0;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800745 int i;
746 u8 max_tx_streams = IEEE80211_HT_CAP_MAX_STREAMS;
747 u8 tx_mcs_set_cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200748
Johannes Berg8318d782008-01-24 19:38:38 +0100749 sband = local->hw.wiphy->bands[conf->channel->band];
750
Tomas Winkler38668c02008-03-28 16:33:32 -0700751 memset(&ht_conf, 0, sizeof(struct ieee80211_ht_info));
752 memset(&ht_bss_conf, 0, sizeof(struct ieee80211_ht_bss_info));
753
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800754 /* HT is not supported */
755 if (!sband->ht_info.ht_supported) {
756 conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE;
757 goto out;
758 }
Tomas Winkler38668c02008-03-28 16:33:32 -0700759
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800760 /* disable HT */
761 if (!enable_ht) {
Tomas Winkler38668c02008-03-28 16:33:32 -0700762 if (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE)
763 changed |= BSS_CHANGED_HT;
764 conf->flags &= ~IEEE80211_CONF_SUPPORT_HT_MODE;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800765 conf->ht_conf.ht_supported = 0;
766 goto out;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200767 }
768
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800769
770 if (!(conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE))
771 changed |= BSS_CHANGED_HT;
772
773 conf->flags |= IEEE80211_CONF_SUPPORT_HT_MODE;
774 ht_conf.ht_supported = 1;
775
776 ht_conf.cap = req_ht_cap->cap & sband->ht_info.cap;
Tomas Winkler00c5ae22008-09-03 11:26:42 +0800777 ht_conf.cap &= ~(IEEE80211_HT_CAP_SM_PS);
778 ht_conf.cap |= sband->ht_info.cap & IEEE80211_HT_CAP_SM_PS;
Ron Rindjunskyedcdf8b2008-05-15 13:53:55 +0800779 ht_bss_conf.primary_channel = req_bss_cap->primary_channel;
780 ht_bss_conf.bss_cap = req_bss_cap->bss_cap;
781 ht_bss_conf.bss_op_mode = req_bss_cap->bss_op_mode;
782
783 ht_conf.ampdu_factor = req_ht_cap->ampdu_factor;
784 ht_conf.ampdu_density = req_ht_cap->ampdu_density;
785
786 /* Bits 96-100 */
787 tx_mcs_set_cap = sband->ht_info.supp_mcs_set[12];
788
789 /* configure suppoerted Tx MCS according to requested MCS
790 * (based in most cases on Rx capabilities of peer) and self
791 * Tx MCS capabilities (as defined by low level driver HW
792 * Tx capabilities) */
793 if (!(tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_DEFINED))
794 goto check_changed;
795
796 /* Counting from 0 therfore + 1 */
797 if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_RX_DIFF)
798 max_tx_streams = ((tx_mcs_set_cap &
799 IEEE80211_HT_CAP_MCS_TX_STREAMS) >> 2) + 1;
800
801 for (i = 0; i < max_tx_streams; 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
806 if (tx_mcs_set_cap & IEEE80211_HT_CAP_MCS_TX_UEQM)
807 for (i = IEEE80211_SUPP_MCS_SET_UEQM;
808 i < IEEE80211_SUPP_MCS_SET_LEN; i++)
809 ht_conf.supp_mcs_set[i] =
810 sband->ht_info.supp_mcs_set[i] &
811 req_ht_cap->supp_mcs_set[i];
812
813check_changed:
814 /* if bss configuration changed store the new one */
815 if (memcmp(&conf->ht_conf, &ht_conf, sizeof(ht_conf)) ||
816 memcmp(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf))) {
817 changed |= BSS_CHANGED_HT;
818 memcpy(&conf->ht_conf, &ht_conf, sizeof(ht_conf));
819 memcpy(&conf->ht_bss_conf, &ht_bss_conf, sizeof(ht_bss_conf));
820 }
821out:
Tomas Winkler38668c02008-03-28 16:33:32 -0700822 return changed;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +0200823}
824
Johannes Berg471b3ef2007-12-28 14:32:58 +0100825void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
826 u32 changed)
Daniel Draked9430a32007-07-27 15:43:24 +0200827{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100828 struct ieee80211_local *local = sdata->local;
829
830 if (!changed)
831 return;
832
833 if (local->ops->bss_info_changed)
834 local->ops->bss_info_changed(local_to_hw(local),
835 &sdata->vif,
836 &sdata->bss_conf,
837 changed);
Daniel Draked9430a32007-07-27 15:43:24 +0200838}
839
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200840u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
Daniel Draked9430a32007-07-27 15:43:24 +0200841{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100842 sdata->bss_conf.use_cts_prot = 0;
843 sdata->bss_conf.use_short_preamble = 0;
Tomas Winklerfc32f922008-07-03 01:27:13 +0300844 return BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_ERP_PREAMBLE;
Daniel Draked9430a32007-07-27 15:43:24 +0200845}
846
Jiri Bencf0706e82007-05-05 11:45:53 -0700847void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +0200848 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700849{
850 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200851 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700852 int tmp;
853
854 skb->dev = local->mdev;
Jiri Bencf0706e82007-05-05 11:45:53 -0700855 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
Johannes Berge039fa42008-05-15 12:55:29 +0200856 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
Jiri Bencf0706e82007-05-05 11:45:53 -0700857 &local->skb_queue : &local->skb_queue_unreliable, skb);
858 tmp = skb_queue_len(&local->skb_queue) +
859 skb_queue_len(&local->skb_queue_unreliable);
860 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
861 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700862 dev_kfree_skb_irq(skb);
863 tmp--;
864 I802_DEBUG_INC(local->tx_status_drop);
865 }
866 tasklet_schedule(&local->tasklet);
867}
868EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
869
870static void ieee80211_tasklet_handler(unsigned long data)
871{
872 struct ieee80211_local *local = (struct ieee80211_local *) data;
873 struct sk_buff *skb;
874 struct ieee80211_rx_status rx_status;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200875 struct ieee80211_ra_tid *ra_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700876
877 while ((skb = skb_dequeue(&local->skb_queue)) ||
878 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
879 switch (skb->pkt_type) {
880 case IEEE80211_RX_MSG:
881 /* status is in skb->cb */
882 memcpy(&rx_status, skb->cb, sizeof(rx_status));
Johannes Berg51fb61e2007-12-19 01:31:27 +0100883 /* Clear skb->pkt_type in order to not confuse kernel
Jiri Bencf0706e82007-05-05 11:45:53 -0700884 * netstack. */
885 skb->pkt_type = 0;
886 __ieee80211_rx(local_to_hw(local), skb, &rx_status);
887 break;
888 case IEEE80211_TX_STATUS_MSG:
Jiri Bencf0706e82007-05-05 11:45:53 -0700889 skb->pkt_type = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200890 ieee80211_tx_status(local_to_hw(local), skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700891 break;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200892 case IEEE80211_DELBA_MSG:
893 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
894 ieee80211_stop_tx_ba_cb(local_to_hw(local),
895 ra_tid->ra, ra_tid->tid);
896 dev_kfree_skb(skb);
897 break;
898 case IEEE80211_ADDBA_MSG:
899 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
900 ieee80211_start_tx_ba_cb(local_to_hw(local),
901 ra_tid->ra, ra_tid->tid);
902 dev_kfree_skb(skb);
903 break ;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200904 default:
905 WARN_ON(1);
Jiri Bencf0706e82007-05-05 11:45:53 -0700906 dev_kfree_skb(skb);
907 break;
908 }
909 }
910}
911
Jiri Bencf0706e82007-05-05 11:45:53 -0700912/* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
913 * make a prepared TX frame (one that has been given to hw) to look like brand
914 * new IEEE 802.11 frame that is ready to go through TX processing again.
Johannes Bergd0f09802008-07-29 11:32:07 +0200915 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700916static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
917 struct ieee80211_key *key,
Johannes Berge039fa42008-05-15 12:55:29 +0200918 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700919{
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700920 unsigned int hdrlen, iv_len, mic_len;
921 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700922
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700923 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700924
925 if (!key)
926 goto no_key;
927
Johannes Berg8f20fc22007-08-28 17:01:54 -0400928 switch (key->conf.alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700929 case ALG_WEP:
930 iv_len = WEP_IV_LEN;
931 mic_len = WEP_ICV_LEN;
932 break;
933 case ALG_TKIP:
934 iv_len = TKIP_IV_LEN;
935 mic_len = TKIP_ICV_LEN;
936 break;
937 case ALG_CCMP:
938 iv_len = CCMP_HDR_LEN;
939 mic_len = CCMP_MIC_LEN;
940 break;
941 default:
942 goto no_key;
943 }
944
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700945 if (skb->len >= hdrlen + mic_len &&
Johannes Berg11a843b2007-08-28 17:01:55 -0400946 !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Jiri Bencf0706e82007-05-05 11:45:53 -0700947 skb_trim(skb, skb->len - mic_len);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700948 if (skb->len >= hdrlen + iv_len) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700949 memmove(skb->data + iv_len, skb->data, hdrlen);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700950 hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700951 }
952
953no_key:
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700954 if (ieee80211_is_data_qos(hdr->frame_control)) {
955 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
956 memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data,
957 hdrlen - IEEE80211_QOS_CTL_LEN);
958 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700959 }
960}
961
Johannes Bergd46e1442008-02-20 23:59:33 +0100962static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
963 struct sta_info *sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200964 struct sk_buff *skb)
Johannes Bergd46e1442008-02-20 23:59:33 +0100965{
Johannes Berge039fa42008-05-15 12:55:29 +0200966 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
967
Johannes Bergd46e1442008-02-20 23:59:33 +0100968 sta->tx_filtered_count++;
969
970 /*
971 * Clear the TX filter mask for this STA when sending the next
972 * packet. If the STA went to power save mode, this will happen
Yi Zhuf6d97102008-05-27 17:50:50 +0300973 * when it wakes up for the next time.
Johannes Bergd46e1442008-02-20 23:59:33 +0100974 */
Johannes Berg07346f812008-05-03 01:02:02 +0200975 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
Johannes Bergd46e1442008-02-20 23:59:33 +0100976
977 /*
978 * This code races in the following way:
979 *
980 * (1) STA sends frame indicating it will go to sleep and does so
981 * (2) hardware/firmware adds STA to filter list, passes frame up
982 * (3) hardware/firmware processes TX fifo and suppresses a frame
983 * (4) we get TX status before having processed the frame and
984 * knowing that the STA has gone to sleep.
985 *
986 * This is actually quite unlikely even when both those events are
987 * processed from interrupts coming in quickly after one another or
988 * even at the same time because we queue both TX status events and
989 * RX frames to be processed by a tasklet and process them in the
990 * same order that they were received or TX status last. Hence, there
991 * is no race as long as the frame RX is processed before the next TX
992 * status, which drivers can ensure, see below.
993 *
994 * Note that this can only happen if the hardware or firmware can
995 * actually add STAs to the filter list, if this is done by the
996 * driver in response to set_tim() (which will only reduce the race
997 * this whole filtering tries to solve, not completely solve it)
998 * this situation cannot happen.
999 *
1000 * To completely solve this race drivers need to make sure that they
1001 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
1002 * functions and
1003 * (b) always process RX events before TX status events if ordering
1004 * can be unknown, for example with different interrupt status
1005 * bits.
1006 */
Johannes Berg07346f812008-05-03 01:02:02 +02001007 if (test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Bergd46e1442008-02-20 23:59:33 +01001008 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
Johannes Berge039fa42008-05-15 12:55:29 +02001009 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +01001010 skb_queue_tail(&sta->tx_filtered, skb);
1011 return;
1012 }
1013
Johannes Berg07346f812008-05-03 01:02:02 +02001014 if (!test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Berge039fa42008-05-15 12:55:29 +02001015 !(info->flags & IEEE80211_TX_CTL_REQUEUE)) {
Johannes Bergd46e1442008-02-20 23:59:33 +01001016 /* Software retry the packet once */
Johannes Berge039fa42008-05-15 12:55:29 +02001017 info->flags |= IEEE80211_TX_CTL_REQUEUE;
1018 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +01001019 dev_queue_xmit(skb);
1020 return;
1021 }
1022
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001023#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergd46e1442008-02-20 23:59:33 +01001024 if (net_ratelimit())
1025 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
1026 "queue_len=%d PS=%d @%lu\n",
1027 wiphy_name(local->hw.wiphy),
1028 skb_queue_len(&sta->tx_filtered),
Johannes Berg07346f812008-05-03 01:02:02 +02001029 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001030#endif
Johannes Bergd46e1442008-02-20 23:59:33 +01001031 dev_kfree_skb(skb);
1032}
1033
Johannes Berge039fa42008-05-15 12:55:29 +02001034void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001035{
1036 struct sk_buff *skb2;
1037 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1038 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +02001039 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -07001040 u16 frag, type;
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001041 __le16 fc;
Johannes Bergb306f452007-07-10 19:32:08 +02001042 struct ieee80211_tx_status_rtap_hdr *rthdr;
1043 struct ieee80211_sub_if_data *sdata;
Michael Wu3d30d942008-01-31 19:48:27 +01001044 struct net_device *prev_dev = NULL;
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001045 struct sta_info *sta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001046
Johannes Bergd0709a62008-02-25 16:27:46 +01001047 rcu_read_lock();
1048
Johannes Berge039fa42008-05-15 12:55:29 +02001049 if (info->status.excessive_retries) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001050 sta = sta_info_get(local, hdr->addr1);
1051 if (sta) {
Johannes Berg07346f812008-05-03 01:02:02 +02001052 if (test_sta_flags(sta, WLAN_STA_PS)) {
Johannes Bergd46e1442008-02-20 23:59:33 +01001053 /*
1054 * The STA is in power save mode, so assume
Jiri Bencf0706e82007-05-05 11:45:53 -07001055 * that this TX packet failed because of that.
1056 */
Johannes Berge039fa42008-05-15 12:55:29 +02001057 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001058 rcu_read_unlock();
Johannes Bergd46e1442008-02-20 23:59:33 +01001059 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001060 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001061 }
1062 }
1063
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001064 fc = hdr->frame_control;
1065
1066 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
1067 (ieee80211_is_data_qos(fc))) {
1068 u16 tid, ssn;
1069 u8 *qc;
1070 sta = sta_info_get(local, hdr->addr1);
1071 if (sta) {
1072 qc = ieee80211_get_qos_ctl(hdr);
1073 tid = qc[0] & 0xf;
1074 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
1075 & IEEE80211_SCTL_SEQ);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001076 ieee80211_send_bar(sta->sdata, hdr->addr1,
Ron Rindjunsky429a3802008-07-01 14:16:03 +03001077 tid, ssn);
1078 }
1079 }
1080
Johannes Berge039fa42008-05-15 12:55:29 +02001081 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001082 sta = sta_info_get(local, hdr->addr1);
1083 if (sta) {
Johannes Berge039fa42008-05-15 12:55:29 +02001084 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +01001085 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001086 return;
1087 }
Mattias Nissler1abbe492007-12-20 13:50:07 +01001088 } else
Johannes Berge039fa42008-05-15 12:55:29 +02001089 rate_control_tx_status(local->mdev, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -07001090
Johannes Bergd0709a62008-02-25 16:27:46 +01001091 rcu_read_unlock();
1092
Jiri Bencf0706e82007-05-05 11:45:53 -07001093 ieee80211_led_tx(local, 0);
1094
1095 /* SNMP counters
1096 * Fragments are passed to low-level drivers as separate skbs, so these
1097 * are actually fragments, not frames. Update frame counters only for
1098 * the first fragment of the frame. */
1099
1100 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
1101 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
1102
Johannes Berge039fa42008-05-15 12:55:29 +02001103 if (info->flags & IEEE80211_TX_STAT_ACK) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001104 if (frag == 0) {
1105 local->dot11TransmittedFrameCount++;
1106 if (is_multicast_ether_addr(hdr->addr1))
1107 local->dot11MulticastTransmittedFrameCount++;
Johannes Berge039fa42008-05-15 12:55:29 +02001108 if (info->status.retry_count > 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001109 local->dot11RetryCount++;
Johannes Berge039fa42008-05-15 12:55:29 +02001110 if (info->status.retry_count > 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001111 local->dot11MultipleRetryCount++;
1112 }
1113
1114 /* This counter shall be incremented for an acknowledged MPDU
1115 * with an individual address in the address 1 field or an MPDU
1116 * with a multicast address in the address 1 field of type Data
1117 * or Management. */
1118 if (!is_multicast_ether_addr(hdr->addr1) ||
1119 type == IEEE80211_FTYPE_DATA ||
1120 type == IEEE80211_FTYPE_MGMT)
1121 local->dot11TransmittedFragmentCount++;
1122 } else {
1123 if (frag == 0)
1124 local->dot11FailedCount++;
1125 }
1126
Johannes Bergb306f452007-07-10 19:32:08 +02001127 /* this was a transmitted frame, but now we want to reuse it */
1128 skb_orphan(skb);
1129
Michael Wu3d30d942008-01-31 19:48:27 +01001130 /*
1131 * This is a bit racy but we can avoid a lot of work
1132 * with this test...
1133 */
1134 if (!local->monitors && !local->cooked_mntrs) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001135 dev_kfree_skb(skb);
1136 return;
1137 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001138
Johannes Bergb306f452007-07-10 19:32:08 +02001139 /* send frame to monitor interfaces now */
1140
1141 if (skb_headroom(skb) < sizeof(*rthdr)) {
1142 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
1143 dev_kfree_skb(skb);
1144 return;
1145 }
1146
Johannes Berg988c0f72008-04-17 19:21:22 +02001147 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
Johannes Bergb306f452007-07-10 19:32:08 +02001148 skb_push(skb, sizeof(*rthdr));
1149
1150 memset(rthdr, 0, sizeof(*rthdr));
1151 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1152 rthdr->hdr.it_present =
1153 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
1154 (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
1155
Johannes Berge039fa42008-05-15 12:55:29 +02001156 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
Johannes Bergb306f452007-07-10 19:32:08 +02001157 !is_multicast_ether_addr(hdr->addr1))
1158 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
1159
Johannes Berge039fa42008-05-15 12:55:29 +02001160 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) &&
1161 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT))
Johannes Bergb306f452007-07-10 19:32:08 +02001162 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
Johannes Berge039fa42008-05-15 12:55:29 +02001163 else if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS)
Johannes Bergb306f452007-07-10 19:32:08 +02001164 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
1165
Johannes Berge039fa42008-05-15 12:55:29 +02001166 rthdr->data_retries = info->status.retry_count;
Johannes Bergb306f452007-07-10 19:32:08 +02001167
Michael Wu3d30d942008-01-31 19:48:27 +01001168 /* XXX: is this sufficient for BPF? */
1169 skb_set_mac_header(skb, 0);
1170 skb->ip_summed = CHECKSUM_UNNECESSARY;
1171 skb->pkt_type = PACKET_OTHERHOST;
1172 skb->protocol = htons(ETH_P_802_2);
1173 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergb306f452007-07-10 19:32:08 +02001174
Michael Wu3d30d942008-01-31 19:48:27 +01001175 rcu_read_lock();
1176 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg51fb61e2007-12-19 01:31:27 +01001177 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR) {
Johannes Bergb306f452007-07-10 19:32:08 +02001178 if (!netif_running(sdata->dev))
1179 continue;
Michael Wu3d30d942008-01-31 19:48:27 +01001180
1181 if (prev_dev) {
Johannes Berg79010422007-09-18 17:29:21 -04001182 skb2 = skb_clone(skb, GFP_ATOMIC);
Michael Wu3d30d942008-01-31 19:48:27 +01001183 if (skb2) {
1184 skb2->dev = prev_dev;
1185 netif_rx(skb2);
1186 }
1187 }
1188
1189 prev_dev = sdata->dev;
Johannes Bergb306f452007-07-10 19:32:08 +02001190 }
1191 }
Michael Wu3d30d942008-01-31 19:48:27 +01001192 if (prev_dev) {
1193 skb->dev = prev_dev;
1194 netif_rx(skb);
1195 skb = NULL;
1196 }
Johannes Berg79010422007-09-18 17:29:21 -04001197 rcu_read_unlock();
Michael Wu3d30d942008-01-31 19:48:27 +01001198 dev_kfree_skb(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -07001199}
1200EXPORT_SYMBOL(ieee80211_tx_status);
1201
Jiri Bencf0706e82007-05-05 11:45:53 -07001202struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
1203 const struct ieee80211_ops *ops)
1204{
Jiri Bencf0706e82007-05-05 11:45:53 -07001205 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001206 int priv_size;
1207 struct wiphy *wiphy;
1208
1209 /* Ensure 32-byte alignment of our private data and hw private data.
1210 * We use the wiphy priv data for both our ieee80211_local and for
1211 * the driver's private data
1212 *
1213 * In memory it'll be like this:
1214 *
1215 * +-------------------------+
1216 * | struct wiphy |
1217 * +-------------------------+
1218 * | struct ieee80211_local |
1219 * +-------------------------+
1220 * | driver's private data |
1221 * +-------------------------+
1222 *
1223 */
1224 priv_size = ((sizeof(struct ieee80211_local) +
1225 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
1226 priv_data_len;
1227
1228 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
1229
1230 if (!wiphy)
1231 return NULL;
1232
1233 wiphy->privid = mac80211_wiphy_privid;
1234
1235 local = wiphy_priv(wiphy);
1236 local->hw.wiphy = wiphy;
1237
1238 local->hw.priv = (char *)local +
1239 ((sizeof(struct ieee80211_local) +
1240 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
1241
Johannes Berg4480f15c2007-07-10 19:32:10 +02001242 BUG_ON(!ops->tx);
Johannes Berg4150c572007-09-17 01:29:23 -04001243 BUG_ON(!ops->start);
1244 BUG_ON(!ops->stop);
Johannes Berg4480f15c2007-07-10 19:32:10 +02001245 BUG_ON(!ops->config);
1246 BUG_ON(!ops->add_interface);
Johannes Berg4150c572007-09-17 01:29:23 -04001247 BUG_ON(!ops->remove_interface);
1248 BUG_ON(!ops->configure_filter);
Jiri Bencf0706e82007-05-05 11:45:53 -07001249 local->ops = ops;
1250
Jiri Bencf0706e82007-05-05 11:45:53 -07001251 local->hw.queues = 1; /* default */
1252
Jiri Bencf0706e82007-05-05 11:45:53 -07001253 local->bridge_packets = 1;
1254
1255 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
1256 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
1257 local->short_retry_limit = 7;
1258 local->long_retry_limit = 4;
1259 local->hw.conf.radio_enabled = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001260
Johannes Berg79010422007-09-18 17:29:21 -04001261 INIT_LIST_HEAD(&local->interfaces);
Jiri Bencf0706e82007-05-05 11:45:53 -07001262
Johannes Bergb16bd152008-04-11 21:40:35 +02001263 spin_lock_init(&local->key_lock);
1264
Jiri Bencf0706e82007-05-05 11:45:53 -07001265 INIT_DELAYED_WORK(&local->scan_work, ieee80211_sta_scan_work);
Jiri Bencf0706e82007-05-05 11:45:53 -07001266
1267 sta_info_init(local);
1268
Jiri Bencf0706e82007-05-05 11:45:53 -07001269 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
1270 (unsigned long)local);
1271 tasklet_disable(&local->tx_pending_tasklet);
1272
1273 tasklet_init(&local->tasklet,
1274 ieee80211_tasklet_handler,
1275 (unsigned long) local);
1276 tasklet_disable(&local->tasklet);
1277
1278 skb_queue_head_init(&local->skb_queue);
1279 skb_queue_head_init(&local->skb_queue_unreliable);
1280
1281 return local_to_hw(local);
1282}
1283EXPORT_SYMBOL(ieee80211_alloc_hw);
1284
1285int ieee80211_register_hw(struct ieee80211_hw *hw)
1286{
1287 struct ieee80211_local *local = hw_to_local(hw);
1288 const char *name;
1289 int result;
Johannes Berg8318d782008-01-24 19:38:38 +01001290 enum ieee80211_band band;
Johannes Berg96d51052008-02-08 09:48:13 +01001291 struct net_device *mdev;
Johannes Berg3e122be2008-07-09 14:40:34 +02001292 struct wireless_dev *mwdev;
Johannes Berg8318d782008-01-24 19:38:38 +01001293
1294 /*
1295 * generic code guarantees at least one band,
1296 * set this very early because much code assumes
1297 * that hw.conf.channel is assigned
1298 */
1299 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
1300 struct ieee80211_supported_band *sband;
1301
1302 sband = local->hw.wiphy->bands[band];
1303 if (sband) {
1304 /* init channel we're on */
1305 local->hw.conf.channel =
1306 local->oper_channel =
1307 local->scan_channel = &sband->channels[0];
1308 break;
1309 }
1310 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001311
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001312 /* if low-level driver supports AP, we also support VLAN */
1313 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
1314 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
1315
1316 /* mac80211 always supports monitor */
1317 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
1318
Jiri Bencf0706e82007-05-05 11:45:53 -07001319 result = wiphy_register(local->hw.wiphy);
1320 if (result < 0)
1321 return result;
1322
Johannes Berge2530082008-05-17 00:57:14 +02001323 /*
1324 * We use the number of queues for feature tests (QoS, HT) internally
1325 * so restrict them appropriately.
1326 */
Johannes Berge2530082008-05-17 00:57:14 +02001327 if (hw->queues > IEEE80211_MAX_QUEUES)
1328 hw->queues = IEEE80211_MAX_QUEUES;
1329 if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES)
1330 hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES;
1331 if (hw->queues < 4)
1332 hw->ampdu_queues = 0;
Johannes Berge2530082008-05-17 00:57:14 +02001333
Johannes Berg3e122be2008-07-09 14:40:34 +02001334 mdev = alloc_netdev_mq(sizeof(struct wireless_dev),
Johannes Berge2530082008-05-17 00:57:14 +02001335 "wmaster%d", ether_setup,
1336 ieee80211_num_queues(hw));
Johannes Berg96d51052008-02-08 09:48:13 +01001337 if (!mdev)
1338 goto fail_mdev_alloc;
1339
Johannes Berg3e122be2008-07-09 14:40:34 +02001340 mwdev = netdev_priv(mdev);
1341 mdev->ieee80211_ptr = mwdev;
1342 mwdev->wiphy = local->hw.wiphy;
Johannes Berg96d51052008-02-08 09:48:13 +01001343
1344 local->mdev = mdev;
1345
Johannes Berg3e122be2008-07-09 14:40:34 +02001346 ieee80211_rx_bss_list_init(local);
Johannes Berg96d51052008-02-08 09:48:13 +01001347
1348 mdev->hard_start_xmit = ieee80211_master_start_xmit;
1349 mdev->open = ieee80211_master_open;
1350 mdev->stop = ieee80211_master_stop;
1351 mdev->type = ARPHRD_IEEE80211;
1352 mdev->header_ops = &ieee80211_header_ops;
1353 mdev->set_multicast_list = ieee80211_master_set_multicast_list;
1354
Jiri Bencf0706e82007-05-05 11:45:53 -07001355 name = wiphy_dev(local->hw.wiphy)->driver->name;
Johannes Berg59959a62008-06-26 19:59:56 +02001356 local->hw.workqueue = create_freezeable_workqueue(name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001357 if (!local->hw.workqueue) {
1358 result = -ENOMEM;
1359 goto fail_workqueue;
1360 }
1361
Johannes Bergb306f452007-07-10 19:32:08 +02001362 /*
1363 * The hardware needs headroom for sending the frame,
1364 * and we need some headroom for passing the frame to monitor
1365 * interfaces, but never both at the same time.
1366 */
Jiri Benc33ccad32007-07-18 17:10:44 +02001367 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
1368 sizeof(struct ieee80211_tx_status_rtap_hdr));
Johannes Bergb306f452007-07-10 19:32:08 +02001369
Jiri Bence9f207f2007-05-05 11:46:38 -07001370 debugfs_hw_add(local);
1371
Tomas Winklerdc0ae302008-06-12 22:38:37 +03001372 if (local->hw.conf.beacon_int < 10)
1373 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07001374
Tomas Winklerea95bba2008-07-18 13:53:00 +08001375 if (local->hw.max_listen_interval == 0)
1376 local->hw.max_listen_interval = 1;
1377
1378 local->hw.conf.listen_interval = local->hw.max_listen_interval;
1379
Bruno Randolf566bfe52008-05-08 19:15:40 +02001380 local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
1381 IEEE80211_HW_SIGNAL_DB |
1382 IEEE80211_HW_SIGNAL_DBM) ?
Jiri Bencf0706e82007-05-05 11:45:53 -07001383 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001384 local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
Jiri Bencf0706e82007-05-05 11:45:53 -07001385 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001386 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
Jiri Bencf0706e82007-05-05 11:45:53 -07001387 local->wstats_flags |= IW_QUAL_DBM;
1388
1389 result = sta_info_start(local);
1390 if (result < 0)
1391 goto fail_sta_info;
1392
1393 rtnl_lock();
1394 result = dev_alloc_name(local->mdev, local->mdev->name);
1395 if (result < 0)
1396 goto fail_dev;
1397
1398 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1399 SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
1400
1401 result = register_netdevice(local->mdev);
1402 if (result < 0)
1403 goto fail_dev;
1404
Johannes Berg830f9032007-10-28 14:51:05 +01001405 result = ieee80211_init_rate_ctrl_alg(local,
1406 hw->rate_control_algorithm);
Jiri Bencf0706e82007-05-05 11:45:53 -07001407 if (result < 0) {
1408 printk(KERN_DEBUG "%s: Failed to initialize rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001409 "algorithm\n", wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001410 goto fail_rate;
1411 }
1412
1413 result = ieee80211_wep_init(local);
1414
1415 if (result < 0) {
Jeremy Fitzhardinge023a04b2008-07-14 12:52:08 -07001416 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
1417 wiphy_name(local->hw.wiphy), result);
Jiri Bencf0706e82007-05-05 11:45:53 -07001418 goto fail_wep;
1419 }
1420
David S. Miller51cb6db2008-07-15 03:34:57 -07001421 local->mdev->select_queue = ieee80211_select_queue;
Jiri Bencf0706e82007-05-05 11:45:53 -07001422
1423 /* add one default STA interface */
Johannes Berg3e122be2008-07-09 14:40:34 +02001424 result = ieee80211_if_add(local, "wlan%d", NULL,
Luis Carlos Coboee385852008-02-23 15:17:11 +01001425 IEEE80211_IF_TYPE_STA, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001426 if (result)
1427 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001428 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001429
Jiri Bencf0706e82007-05-05 11:45:53 -07001430 rtnl_unlock();
1431
1432 ieee80211_led_init(local);
1433
1434 return 0;
1435
1436fail_wep:
1437 rate_control_deinitialize(local);
1438fail_rate:
1439 unregister_netdevice(local->mdev);
Pavel Emelyanov339a7c42008-05-04 17:59:30 -07001440 local->mdev = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001441fail_dev:
1442 rtnl_unlock();
1443 sta_info_stop(local);
1444fail_sta_info:
Jiri Bence9f207f2007-05-05 11:46:38 -07001445 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -07001446 destroy_workqueue(local->hw.workqueue);
1447fail_workqueue:
Johannes Berg3e122be2008-07-09 14:40:34 +02001448 if (local->mdev)
1449 free_netdev(local->mdev);
Johannes Berg96d51052008-02-08 09:48:13 +01001450fail_mdev_alloc:
Jiri Bencf0706e82007-05-05 11:45:53 -07001451 wiphy_unregister(local->hw.wiphy);
1452 return result;
1453}
1454EXPORT_SYMBOL(ieee80211_register_hw);
1455
Jiri Bencf0706e82007-05-05 11:45:53 -07001456void ieee80211_unregister_hw(struct ieee80211_hw *hw)
1457{
1458 struct ieee80211_local *local = hw_to_local(hw);
Jiri Bencf0706e82007-05-05 11:45:53 -07001459
1460 tasklet_kill(&local->tx_pending_tasklet);
1461 tasklet_kill(&local->tasklet);
1462
1463 rtnl_lock();
1464
Johannes Berg79010422007-09-18 17:29:21 -04001465 /*
1466 * At this point, interface list manipulations are fine
1467 * because the driver cannot be handing us frames any
1468 * more and the tasklet is killed.
1469 */
Johannes Berg5b2812e2007-09-26 14:27:23 +02001470
Johannes Berg75636522008-07-09 14:40:35 +02001471 /* First, we remove all virtual interfaces. */
1472 ieee80211_remove_interfaces(local);
Johannes Berg5b2812e2007-09-26 14:27:23 +02001473
1474 /* then, finally, remove the master interface */
Johannes Berg3e122be2008-07-09 14:40:34 +02001475 unregister_netdevice(local->mdev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001476
1477 rtnl_unlock();
1478
Johannes Berg3e122be2008-07-09 14:40:34 +02001479 ieee80211_rx_bss_list_deinit(local);
Jiri Bencf0706e82007-05-05 11:45:53 -07001480 ieee80211_clear_tx_pending(local);
1481 sta_info_stop(local);
1482 rate_control_deinitialize(local);
Jiri Bence9f207f2007-05-05 11:46:38 -07001483 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -07001484
Jiri Bencf0706e82007-05-05 11:45:53 -07001485 if (skb_queue_len(&local->skb_queue)
1486 || skb_queue_len(&local->skb_queue_unreliable))
1487 printk(KERN_WARNING "%s: skb_queue not empty\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001488 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001489 skb_queue_purge(&local->skb_queue);
1490 skb_queue_purge(&local->skb_queue_unreliable);
1491
1492 destroy_workqueue(local->hw.workqueue);
1493 wiphy_unregister(local->hw.wiphy);
1494 ieee80211_wep_free(local);
1495 ieee80211_led_exit(local);
Johannes Berg3e122be2008-07-09 14:40:34 +02001496 free_netdev(local->mdev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001497}
1498EXPORT_SYMBOL(ieee80211_unregister_hw);
1499
1500void ieee80211_free_hw(struct ieee80211_hw *hw)
1501{
1502 struct ieee80211_local *local = hw_to_local(hw);
1503
Jiri Bencf0706e82007-05-05 11:45:53 -07001504 wiphy_free(local->hw.wiphy);
1505}
1506EXPORT_SYMBOL(ieee80211_free_hw);
1507
Jiri Bencf0706e82007-05-05 11:45:53 -07001508static int __init ieee80211_init(void)
1509{
1510 struct sk_buff *skb;
1511 int ret;
1512
Johannes Berge039fa42008-05-15 12:55:29 +02001513 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
1514 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
1515 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
Jiri Bencf0706e82007-05-05 11:45:53 -07001516
Johannes Berg4b475892008-01-02 15:17:03 +01001517 ret = rc80211_pid_init();
Mattias Nisslerad018372007-12-19 01:25:57 +01001518 if (ret)
David S. Miller51cb6db2008-07-15 03:34:57 -07001519 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07001520
Jiri Bence9f207f2007-05-05 11:46:38 -07001521 ieee80211_debugfs_netdev_init();
1522
Jiri Bencf0706e82007-05-05 11:45:53 -07001523 return 0;
1524}
1525
Jiri Bencf0706e82007-05-05 11:45:53 -07001526static void __exit ieee80211_exit(void)
1527{
Johannes Berg4b475892008-01-02 15:17:03 +01001528 rc80211_pid_exit();
Johannes Bergac71c692007-10-28 14:17:44 +01001529
Johannes Berg3b967662008-04-08 17:56:52 +02001530 /*
1531 * For key todo, it'll be empty by now but the work
1532 * might still be scheduled.
1533 */
1534 flush_scheduled_work();
1535
Luis Carlos Cobof7a92142008-02-23 15:17:18 +01001536 if (mesh_allocated)
1537 ieee80211s_stop();
Johannes Berg902acc72008-02-23 15:17:19 +01001538
Jiri Bence9f207f2007-05-05 11:46:38 -07001539 ieee80211_debugfs_netdev_exit();
Jiri Bencf0706e82007-05-05 11:45:53 -07001540}
1541
1542
Johannes Bergca9938f2007-09-11 12:50:32 +02001543subsys_initcall(ieee80211_init);
Jiri Bencf0706e82007-05-05 11:45:53 -07001544module_exit(ieee80211_exit);
1545
1546MODULE_DESCRIPTION("IEEE 802.11 subsystem");
1547MODULE_LICENSE("GPL");