]> git.ipfire.org Git - people/ms/linux.git/blame - drivers/net/wireless/mac80211_hwsim.c
ath5k: update beacons in AP mode
[people/ms/linux.git] / drivers / net / wireless / mac80211_hwsim.c
CommitLineData
acc1e7a3
JM
1/*
2 * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10/*
11 * TODO:
12 * - IBSS mode simulation (Beacon transmission with competition for "air time")
acc1e7a3
JM
13 * - RX filtering based on filter configuration (data->rx_filter)
14 */
15
0e057d73
JB
16#include <linux/list.h>
17#include <linux/spinlock.h>
acc1e7a3
JM
18#include <net/mac80211.h>
19#include <net/ieee80211_radiotap.h>
20#include <linux/if_arp.h>
21#include <linux/rtnetlink.h>
22#include <linux/etherdevice.h>
fc6971d4 23#include <linux/debugfs.h>
acc1e7a3
JM
24
25MODULE_AUTHOR("Jouni Malinen");
26MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
27MODULE_LICENSE("GPL");
28
29static int radios = 2;
30module_param(radios, int, 0444);
31MODULE_PARM_DESC(radios, "Number of simulated radios");
32
4a5af9c2
LR
33/**
34 * enum hwsim_regtest - the type of regulatory tests we offer
35 *
36 * These are the different values you can use for the regtest
37 * module parameter. This is useful to help test world roaming
38 * and the driver regulatory_hint() call and combinations of these.
39 * If you want to do specific alpha2 regulatory domain tests simply
40 * use the userspace regulatory request as that will be respected as
41 * well without the need of this module parameter. This is designed
42 * only for testing the driver regulatory request, world roaming
43 * and all possible combinations.
44 *
45 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
46 * this is the default value.
47 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
48 * hint, only one driver regulatory hint will be sent as such the
49 * secondary radios are expected to follow.
50 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
51 * request with all radios reporting the same regulatory domain.
52 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
53 * different regulatory domains requests. Expected behaviour is for
54 * an intersection to occur but each device will still use their
55 * respective regulatory requested domains. Subsequent radios will
56 * use the resulting intersection.
57 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We acomplish
58 * this by using a custom beacon-capable regulatory domain for the first
59 * radio. All other device world roam.
60 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
61 * domain requests. All radios will adhere to this custom world regulatory
62 * domain.
63 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
64 * domain requests. The first radio will adhere to the first custom world
65 * regulatory domain, the second one to the second custom world regulatory
66 * domain. All other devices will world roam.
67 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
68 * settings, only the first radio will send a regulatory domain request
69 * and use strict settings. The rest of the radios are expected to follow.
70 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
71 * settings. All radios will adhere to this.
72 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
73 * domain settings, combined with secondary driver regulatory domain
74 * settings. The first radio will get a strict regulatory domain setting
75 * using the first driver regulatory request and the second radio will use
76 * non-strict settings using the second driver regulatory request. All
77 * other devices should follow the intersection created between the
78 * first two.
79 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
80 * at least 6 radios for a complete test. We will test in this order:
81 * 1 - driver custom world regulatory domain
82 * 2 - second custom world regulatory domain
83 * 3 - first driver regulatory domain request
84 * 4 - second driver regulatory domain request
85 * 5 - strict regulatory domain settings using the third driver regulatory
86 * domain request
87 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
88 * regulatory requests.
89 */
90enum hwsim_regtest {
91 HWSIM_REGTEST_DISABLED = 0,
92 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
93 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
94 HWSIM_REGTEST_DIFF_COUNTRY = 3,
95 HWSIM_REGTEST_WORLD_ROAM = 4,
96 HWSIM_REGTEST_CUSTOM_WORLD = 5,
97 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
98 HWSIM_REGTEST_STRICT_FOLLOW = 7,
99 HWSIM_REGTEST_STRICT_ALL = 8,
100 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
101 HWSIM_REGTEST_ALL = 10,
102};
103
104/* Set to one of the HWSIM_REGTEST_* values above */
105static int regtest = HWSIM_REGTEST_DISABLED;
106module_param(regtest, int, 0444);
107MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
108
109static const char *hwsim_alpha2s[] = {
110 "FI",
111 "AL",
112 "US",
113 "DE",
114 "JP",
115 "AL",
116};
117
118static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
119 .n_reg_rules = 4,
120 .alpha2 = "99",
121 .reg_rules = {
122 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
123 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
124 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
125 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
126 }
127};
128
129static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
130 .n_reg_rules = 2,
131 .alpha2 = "99",
132 .reg_rules = {
133 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
134 REG_RULE(5725-10, 5850+10, 40, 0, 30,
135 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
136 }
137};
138
8aa21e6f
JB
139struct hwsim_vif_priv {
140 u32 magic;
fc6971d4
JM
141 u8 bssid[ETH_ALEN];
142 bool assoc;
143 u16 aid;
8aa21e6f
JB
144};
145
146#define HWSIM_VIF_MAGIC 0x69537748
147
148static inline void hwsim_check_magic(struct ieee80211_vif *vif)
149{
150 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
151 WARN_ON(vp->magic != HWSIM_VIF_MAGIC);
152}
153
154static inline void hwsim_set_magic(struct ieee80211_vif *vif)
155{
156 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
157 vp->magic = HWSIM_VIF_MAGIC;
158}
159
160static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
161{
162 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
163 vp->magic = 0;
164}
acc1e7a3 165
81c06523
JB
166struct hwsim_sta_priv {
167 u32 magic;
168};
169
170#define HWSIM_STA_MAGIC 0x6d537748
171
172static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
173{
174 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
5d6924ea 175 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
81c06523
JB
176}
177
178static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
179{
180 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
5d6924ea 181 sp->magic = HWSIM_STA_MAGIC;
81c06523
JB
182}
183
184static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
185{
186 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
187 sp->magic = 0;
188}
189
acc1e7a3
JM
190static struct class *hwsim_class;
191
acc1e7a3
JM
192static struct net_device *hwsim_mon; /* global monitor netdev */
193
22cad735
LR
194#define CHAN2G(_freq) { \
195 .band = IEEE80211_BAND_2GHZ, \
196 .center_freq = (_freq), \
197 .hw_value = (_freq), \
198 .max_power = 20, \
199}
200
201#define CHAN5G(_freq) { \
202 .band = IEEE80211_BAND_5GHZ, \
203 .center_freq = (_freq), \
204 .hw_value = (_freq), \
205 .max_power = 20, \
206}
207
208static const struct ieee80211_channel hwsim_channels_2ghz[] = {
209 CHAN2G(2412), /* Channel 1 */
210 CHAN2G(2417), /* Channel 2 */
211 CHAN2G(2422), /* Channel 3 */
212 CHAN2G(2427), /* Channel 4 */
213 CHAN2G(2432), /* Channel 5 */
214 CHAN2G(2437), /* Channel 6 */
215 CHAN2G(2442), /* Channel 7 */
216 CHAN2G(2447), /* Channel 8 */
217 CHAN2G(2452), /* Channel 9 */
218 CHAN2G(2457), /* Channel 10 */
219 CHAN2G(2462), /* Channel 11 */
220 CHAN2G(2467), /* Channel 12 */
221 CHAN2G(2472), /* Channel 13 */
222 CHAN2G(2484), /* Channel 14 */
223};
acc1e7a3 224
22cad735
LR
225static const struct ieee80211_channel hwsim_channels_5ghz[] = {
226 CHAN5G(5180), /* Channel 36 */
227 CHAN5G(5200), /* Channel 40 */
228 CHAN5G(5220), /* Channel 44 */
229 CHAN5G(5240), /* Channel 48 */
230
231 CHAN5G(5260), /* Channel 52 */
232 CHAN5G(5280), /* Channel 56 */
233 CHAN5G(5300), /* Channel 60 */
234 CHAN5G(5320), /* Channel 64 */
235
236 CHAN5G(5500), /* Channel 100 */
237 CHAN5G(5520), /* Channel 104 */
238 CHAN5G(5540), /* Channel 108 */
239 CHAN5G(5560), /* Channel 112 */
240 CHAN5G(5580), /* Channel 116 */
241 CHAN5G(5600), /* Channel 120 */
242 CHAN5G(5620), /* Channel 124 */
243 CHAN5G(5640), /* Channel 128 */
244 CHAN5G(5660), /* Channel 132 */
245 CHAN5G(5680), /* Channel 136 */
246 CHAN5G(5700), /* Channel 140 */
247
248 CHAN5G(5745), /* Channel 149 */
249 CHAN5G(5765), /* Channel 153 */
250 CHAN5G(5785), /* Channel 157 */
251 CHAN5G(5805), /* Channel 161 */
252 CHAN5G(5825), /* Channel 165 */
acc1e7a3
JM
253};
254
255static const struct ieee80211_rate hwsim_rates[] = {
256 { .bitrate = 10 },
257 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
258 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
259 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
260 { .bitrate = 60 },
261 { .bitrate = 90 },
262 { .bitrate = 120 },
263 { .bitrate = 180 },
264 { .bitrate = 240 },
265 { .bitrate = 360 },
266 { .bitrate = 480 },
267 { .bitrate = 540 }
268};
269
0e057d73
JB
270static spinlock_t hwsim_radio_lock;
271static struct list_head hwsim_radios;
272
acc1e7a3 273struct mac80211_hwsim_data {
0e057d73
JB
274 struct list_head list;
275 struct ieee80211_hw *hw;
acc1e7a3 276 struct device *dev;
22cad735
LR
277 struct ieee80211_supported_band bands[2];
278 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
279 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
acc1e7a3
JM
280 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
281
282 struct ieee80211_channel *channel;
283 int radio_enabled;
284 unsigned long beacon_int; /* in jiffies unit */
285 unsigned int rx_filter;
286 int started;
287 struct timer_list beacon_timer;
fc6971d4
JM
288 enum ps_mode {
289 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
290 } ps;
291 bool ps_poll_pending;
292 struct dentry *debugfs;
293 struct dentry *debugfs_ps;
acc1e7a3
JM
294};
295
296
297struct hwsim_radiotap_hdr {
298 struct ieee80211_radiotap_header hdr;
299 u8 rt_flags;
300 u8 rt_rate;
301 __le16 rt_channel;
302 __le16 rt_chbitmask;
303} __attribute__ ((packed));
304
305
306static int hwsim_mon_xmit(struct sk_buff *skb, struct net_device *dev)
307{
308 /* TODO: allow packet injection */
309 dev_kfree_skb(skb);
310 return 0;
311}
312
313
314static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
315 struct sk_buff *tx_skb)
316{
317 struct mac80211_hwsim_data *data = hw->priv;
318 struct sk_buff *skb;
319 struct hwsim_radiotap_hdr *hdr;
320 u16 flags;
321 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
322 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
323
324 if (!netif_running(hwsim_mon))
325 return;
326
327 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
328 if (skb == NULL)
329 return;
330
331 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
332 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
333 hdr->hdr.it_pad = 0;
334 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
f248f105
JM
335 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
336 (1 << IEEE80211_RADIOTAP_RATE) |
337 (1 << IEEE80211_RADIOTAP_CHANNEL));
acc1e7a3
JM
338 hdr->rt_flags = 0;
339 hdr->rt_rate = txrate->bitrate / 5;
df70b4ac 340 hdr->rt_channel = cpu_to_le16(data->channel->center_freq);
acc1e7a3
JM
341 flags = IEEE80211_CHAN_2GHZ;
342 if (txrate->flags & IEEE80211_RATE_ERP_G)
343 flags |= IEEE80211_CHAN_OFDM;
344 else
345 flags |= IEEE80211_CHAN_CCK;
346 hdr->rt_chbitmask = cpu_to_le16(flags);
347
348 skb->dev = hwsim_mon;
349 skb_set_mac_header(skb, 0);
350 skb->ip_summed = CHECKSUM_UNNECESSARY;
351 skb->pkt_type = PACKET_OTHERHOST;
f248f105 352 skb->protocol = htons(ETH_P_802_2);
acc1e7a3
JM
353 memset(skb->cb, 0, sizeof(skb->cb));
354 netif_rx(skb);
355}
356
357
fc6971d4
JM
358static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
359 struct sk_buff *skb)
360{
361 switch (data->ps) {
362 case PS_DISABLED:
363 return true;
364 case PS_ENABLED:
365 return false;
366 case PS_AUTO_POLL:
367 /* TODO: accept (some) Beacons by default and other frames only
368 * if pending PS-Poll has been sent */
369 return true;
370 case PS_MANUAL_POLL:
371 /* Allow unicast frames to own address if there is a pending
372 * PS-Poll */
373 if (data->ps_poll_pending &&
374 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
375 ETH_ALEN) == 0) {
376 data->ps_poll_pending = false;
377 return true;
378 }
379 return false;
380 }
381
382 return true;
383}
384
385
0e057d73
JB
386static bool mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
387 struct sk_buff *skb)
acc1e7a3 388{
0e057d73
JB
389 struct mac80211_hwsim_data *data = hw->priv, *data2;
390 bool ack = false;
e36cfdc9 391 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
acc1e7a3 392 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
e36cfdc9 393 struct ieee80211_rx_status rx_status;
acc1e7a3
JM
394
395 memset(&rx_status, 0, sizeof(rx_status));
396 /* TODO: set mactime */
397 rx_status.freq = data->channel->center_freq;
398 rx_status.band = data->channel->band;
e6a9854b 399 rx_status.rate_idx = info->control.rates[0].idx;
acc1e7a3
JM
400 /* TODO: simulate signal strength (and optional packet drop) */
401
fc6971d4
JM
402 if (data->ps != PS_DISABLED)
403 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
404
acc1e7a3 405 /* Copy skb to all enabled radios that are on the current frequency */
0e057d73
JB
406 spin_lock(&hwsim_radio_lock);
407 list_for_each_entry(data2, &hwsim_radios, list) {
acc1e7a3
JM
408 struct sk_buff *nskb;
409
0e057d73 410 if (data == data2)
acc1e7a3 411 continue;
0e057d73 412
acc1e7a3 413 if (!data2->started || !data2->radio_enabled ||
fc6971d4 414 !hwsim_ps_rx_ok(data2, skb) ||
acc1e7a3
JM
415 data->channel->center_freq != data2->channel->center_freq)
416 continue;
417
418 nskb = skb_copy(skb, GFP_ATOMIC);
419 if (nskb == NULL)
420 continue;
421
0e057d73 422 if (memcmp(hdr->addr1, data2->hw->wiphy->perm_addr,
acc1e7a3 423 ETH_ALEN) == 0)
0e057d73
JB
424 ack = true;
425 ieee80211_rx_irqsafe(data2->hw, nskb, &rx_status);
acc1e7a3 426 }
0e057d73 427 spin_unlock(&hwsim_radio_lock);
acc1e7a3 428
e36cfdc9
JM
429 return ack;
430}
431
432
433static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
434{
435 struct mac80211_hwsim_data *data = hw->priv;
0e057d73 436 bool ack;
e36cfdc9
JM
437 struct ieee80211_tx_info *txi;
438
439 mac80211_hwsim_monitor_rx(hw, skb);
440
441 if (skb->len < 10) {
442 /* Should not happen; just a sanity check for addr1 use */
443 dev_kfree_skb(skb);
444 return NETDEV_TX_OK;
445 }
446
447 if (!data->radio_enabled) {
448 printk(KERN_DEBUG "%s: dropped TX frame since radio "
449 "disabled\n", wiphy_name(hw->wiphy));
450 dev_kfree_skb(skb);
451 return NETDEV_TX_OK;
452 }
453
454 ack = mac80211_hwsim_tx_frame(hw, skb);
455
acc1e7a3 456 txi = IEEE80211_SKB_CB(skb);
8aa21e6f 457
25d834e1
JB
458 if (txi->control.vif)
459 hwsim_check_magic(txi->control.vif);
81c06523
JB
460 if (txi->control.sta)
461 hwsim_check_sta_magic(txi->control.sta);
8aa21e6f 462
e6a9854b
JB
463 ieee80211_tx_info_clear_status(txi);
464 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
465 txi->flags |= IEEE80211_TX_STAT_ACK;
acc1e7a3
JM
466 ieee80211_tx_status_irqsafe(hw, skb);
467 return NETDEV_TX_OK;
468}
469
470
471static int mac80211_hwsim_start(struct ieee80211_hw *hw)
472{
473 struct mac80211_hwsim_data *data = hw->priv;
474 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
475 data->started = 1;
476 return 0;
477}
478
479
480static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
481{
482 struct mac80211_hwsim_data *data = hw->priv;
483 data->started = 0;
ab1ef980 484 del_timer(&data->beacon_timer);
acc1e7a3
JM
485 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
486}
487
488
489static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
490 struct ieee80211_if_init_conf *conf)
491{
e174961c 492 printk(KERN_DEBUG "%s:%s (type=%d mac_addr=%pM)\n",
acc1e7a3 493 wiphy_name(hw->wiphy), __func__, conf->type,
e174961c 494 conf->mac_addr);
8aa21e6f 495 hwsim_set_magic(conf->vif);
acc1e7a3
JM
496 return 0;
497}
498
499
500static void mac80211_hwsim_remove_interface(
501 struct ieee80211_hw *hw, struct ieee80211_if_init_conf *conf)
502{
e174961c 503 printk(KERN_DEBUG "%s:%s (type=%d mac_addr=%pM)\n",
acc1e7a3 504 wiphy_name(hw->wiphy), __func__, conf->type,
e174961c 505 conf->mac_addr);
8aa21e6f
JB
506 hwsim_check_magic(conf->vif);
507 hwsim_clear_magic(conf->vif);
acc1e7a3
JM
508}
509
510
511static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
512 struct ieee80211_vif *vif)
513{
514 struct ieee80211_hw *hw = arg;
acc1e7a3 515 struct sk_buff *skb;
acc1e7a3
JM
516 struct ieee80211_tx_info *info;
517
8aa21e6f
JB
518 hwsim_check_magic(vif);
519
55b39619
AY
520 if (vif->type != NL80211_IFTYPE_AP &&
521 vif->type != NL80211_IFTYPE_MESH_POINT)
acc1e7a3
JM
522 return;
523
524 skb = ieee80211_beacon_get(hw, vif);
525 if (skb == NULL)
526 return;
527 info = IEEE80211_SKB_CB(skb);
528
529 mac80211_hwsim_monitor_rx(hw, skb);
e36cfdc9 530 mac80211_hwsim_tx_frame(hw, skb);
acc1e7a3
JM
531 dev_kfree_skb(skb);
532}
533
534
535static void mac80211_hwsim_beacon(unsigned long arg)
536{
537 struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
538 struct mac80211_hwsim_data *data = hw->priv;
539
540 if (!data->started || !data->radio_enabled)
541 return;
542
f248f105
JM
543 ieee80211_iterate_active_interfaces_atomic(
544 hw, mac80211_hwsim_beacon_tx, hw);
acc1e7a3
JM
545
546 data->beacon_timer.expires = jiffies + data->beacon_int;
547 add_timer(&data->beacon_timer);
548}
549
550
e8975581 551static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
acc1e7a3
JM
552{
553 struct mac80211_hwsim_data *data = hw->priv;
e8975581 554 struct ieee80211_conf *conf = &hw->conf;
acc1e7a3 555
5cff20e6 556 printk(KERN_DEBUG "%s:%s (freq=%d radio_enabled=%d idle=%d ps=%d)\n",
acc1e7a3 557 wiphy_name(hw->wiphy), __func__,
5cff20e6
JB
558 conf->channel->center_freq, conf->radio_enabled,
559 !!(conf->flags & IEEE80211_CONF_IDLE),
560 !!(conf->flags & IEEE80211_CONF_PS));
acc1e7a3
JM
561
562 data->channel = conf->channel;
563 data->radio_enabled = conf->radio_enabled;
57c4d7b4 564 if (!data->started || !data->radio_enabled || !data->beacon_int)
acc1e7a3
JM
565 del_timer(&data->beacon_timer);
566 else
567 mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
568
569 return 0;
570}
571
572
573static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
574 unsigned int changed_flags,
575 unsigned int *total_flags,
576 int mc_count,
577 struct dev_addr_list *mc_list)
578{
579 struct mac80211_hwsim_data *data = hw->priv;
580
581 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
582
583 data->rx_filter = 0;
584 if (*total_flags & FIF_PROMISC_IN_BSS)
585 data->rx_filter |= FIF_PROMISC_IN_BSS;
586 if (*total_flags & FIF_ALLMULTI)
587 data->rx_filter |= FIF_ALLMULTI;
588
589 *total_flags = data->rx_filter;
590}
591
8aa21e6f
JB
592static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
593 struct ieee80211_vif *vif,
594 struct ieee80211_bss_conf *info,
595 u32 changed)
596{
fc6971d4 597 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
57c4d7b4 598 struct mac80211_hwsim_data *data = hw->priv;
fc6971d4 599
8aa21e6f 600 hwsim_check_magic(vif);
fe63bfa3
JM
601
602 printk(KERN_DEBUG "%s:%s(changed=0x%x)\n",
603 wiphy_name(hw->wiphy), __func__, changed);
604
2d0ddec5
JB
605 if (changed & BSS_CHANGED_BSSID) {
606 printk(KERN_DEBUG "%s:%s: BSSID changed: %pM\n",
607 wiphy_name(hw->wiphy), __func__,
608 info->bssid);
609 memcpy(vp->bssid, info->bssid, ETH_ALEN);
610 }
611
fe63bfa3
JM
612 if (changed & BSS_CHANGED_ASSOC) {
613 printk(KERN_DEBUG " %s: ASSOC: assoc=%d aid=%d\n",
614 wiphy_name(hw->wiphy), info->assoc, info->aid);
fc6971d4
JM
615 vp->assoc = info->assoc;
616 vp->aid = info->aid;
fe63bfa3
JM
617 }
618
57c4d7b4
JB
619 if (changed & BSS_CHANGED_BEACON_INT) {
620 printk(KERN_DEBUG " %s: BCNINT: %d\n",
621 wiphy_name(hw->wiphy), info->beacon_int);
622 data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000;
d91f190c 623 if (WARN_ON(!data->beacon_int))
57c4d7b4
JB
624 data->beacon_int = 1;
625 }
626
fe63bfa3
JM
627 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
628 printk(KERN_DEBUG " %s: ERP_CTS_PROT: %d\n",
629 wiphy_name(hw->wiphy), info->use_cts_prot);
630 }
631
632 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
633 printk(KERN_DEBUG " %s: ERP_PREAMBLE: %d\n",
634 wiphy_name(hw->wiphy), info->use_short_preamble);
635 }
636
637 if (changed & BSS_CHANGED_ERP_SLOT) {
638 printk(KERN_DEBUG " %s: ERP_SLOT: %d\n",
639 wiphy_name(hw->wiphy), info->use_short_slot);
640 }
641
642 if (changed & BSS_CHANGED_HT) {
094d05dc 643 printk(KERN_DEBUG " %s: HT: op_mode=0x%x\n",
fe63bfa3 644 wiphy_name(hw->wiphy),
9ed6bcce 645 info->ht_operation_mode);
fe63bfa3
JM
646 }
647
648 if (changed & BSS_CHANGED_BASIC_RATES) {
649 printk(KERN_DEBUG " %s: BASIC_RATES: 0x%llx\n",
650 wiphy_name(hw->wiphy),
651 (unsigned long long) info->basic_rates);
652 }
8aa21e6f
JB
653}
654
655static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
656 struct ieee80211_vif *vif,
17741cdc
JB
657 enum sta_notify_cmd cmd,
658 struct ieee80211_sta *sta)
8aa21e6f
JB
659{
660 hwsim_check_magic(vif);
81c06523
JB
661 switch (cmd) {
662 case STA_NOTIFY_ADD:
663 hwsim_set_sta_magic(sta);
664 break;
665 case STA_NOTIFY_REMOVE:
666 hwsim_clear_sta_magic(sta);
667 break;
89fad578
CL
668 case STA_NOTIFY_SLEEP:
669 case STA_NOTIFY_AWAKE:
670 /* TODO: make good use of these flags */
671 break;
81c06523
JB
672 }
673}
674
675static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
676 struct ieee80211_sta *sta,
677 bool set)
678{
679 hwsim_check_sta_magic(sta);
680 return 0;
8aa21e6f 681}
acc1e7a3 682
1e898ff8
JM
683static int mac80211_hwsim_conf_tx(
684 struct ieee80211_hw *hw, u16 queue,
685 const struct ieee80211_tx_queue_params *params)
686{
687 printk(KERN_DEBUG "%s:%s (queue=%d txop=%d cw_min=%d cw_max=%d "
688 "aifs=%d)\n",
689 wiphy_name(hw->wiphy), __func__, queue,
690 params->txop, params->cw_min, params->cw_max, params->aifs);
691 return 0;
692}
693
acc1e7a3
JM
694static const struct ieee80211_ops mac80211_hwsim_ops =
695{
696 .tx = mac80211_hwsim_tx,
697 .start = mac80211_hwsim_start,
698 .stop = mac80211_hwsim_stop,
699 .add_interface = mac80211_hwsim_add_interface,
700 .remove_interface = mac80211_hwsim_remove_interface,
701 .config = mac80211_hwsim_config,
702 .configure_filter = mac80211_hwsim_configure_filter,
8aa21e6f
JB
703 .bss_info_changed = mac80211_hwsim_bss_info_changed,
704 .sta_notify = mac80211_hwsim_sta_notify,
81c06523 705 .set_tim = mac80211_hwsim_set_tim,
1e898ff8 706 .conf_tx = mac80211_hwsim_conf_tx,
acc1e7a3
JM
707};
708
709
710static void mac80211_hwsim_free(void)
711{
0e057d73
JB
712 struct list_head tmplist, *i, *tmp;
713 struct mac80211_hwsim_data *data;
714
715 INIT_LIST_HEAD(&tmplist);
716
717 spin_lock_bh(&hwsim_radio_lock);
718 list_for_each_safe(i, tmp, &hwsim_radios)
719 list_move(i, &tmplist);
720 spin_unlock_bh(&hwsim_radio_lock);
721
722 list_for_each_entry(data, &tmplist, list) {
fc6971d4
JM
723 debugfs_remove(data->debugfs_ps);
724 debugfs_remove(data->debugfs);
0e057d73
JB
725 ieee80211_unregister_hw(data->hw);
726 device_unregister(data->dev);
727 ieee80211_free_hw(data->hw);
acc1e7a3 728 }
acc1e7a3
JM
729 class_destroy(hwsim_class);
730}
731
732
733static struct device_driver mac80211_hwsim_driver = {
734 .name = "mac80211_hwsim"
735};
736
98d2faae
SH
737static const struct net_device_ops hwsim_netdev_ops = {
738 .ndo_start_xmit = hwsim_mon_xmit,
739 .ndo_change_mtu = eth_change_mtu,
740 .ndo_set_mac_address = eth_mac_addr,
741 .ndo_validate_addr = eth_validate_addr,
742};
acc1e7a3
JM
743
744static void hwsim_mon_setup(struct net_device *dev)
745{
98d2faae 746 dev->netdev_ops = &hwsim_netdev_ops;
acc1e7a3
JM
747 dev->destructor = free_netdev;
748 ether_setup(dev);
749 dev->tx_queue_len = 0;
750 dev->type = ARPHRD_IEEE80211_RADIOTAP;
751 memset(dev->dev_addr, 0, ETH_ALEN);
752 dev->dev_addr[0] = 0x12;
753}
754
755
fc6971d4
JM
756static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
757{
758 struct mac80211_hwsim_data *data = dat;
759 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
760 DECLARE_MAC_BUF(buf);
761 struct sk_buff *skb;
762 struct ieee80211_pspoll *pspoll;
763
764 if (!vp->assoc)
765 return;
766
b235507c
JL
767 printk(KERN_DEBUG "%s:%s: send PS-Poll to %pM for aid %d\n",
768 wiphy_name(data->hw->wiphy), __func__, vp->bssid, vp->aid);
fc6971d4
JM
769
770 skb = dev_alloc_skb(sizeof(*pspoll));
771 if (!skb)
772 return;
773 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
774 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
775 IEEE80211_STYPE_PSPOLL |
776 IEEE80211_FCTL_PM);
777 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
778 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
779 memcpy(pspoll->ta, mac, ETH_ALEN);
780 if (data->radio_enabled &&
781 !mac80211_hwsim_tx_frame(data->hw, skb))
782 printk(KERN_DEBUG "%s: PS-Poll frame not ack'ed\n", __func__);
783 dev_kfree_skb(skb);
784}
785
786
787static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
788 struct ieee80211_vif *vif, int ps)
789{
790 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
791 DECLARE_MAC_BUF(buf);
792 struct sk_buff *skb;
793 struct ieee80211_hdr *hdr;
794
795 if (!vp->assoc)
796 return;
797
b235507c
JL
798 printk(KERN_DEBUG "%s:%s: send data::nullfunc to %pM ps=%d\n",
799 wiphy_name(data->hw->wiphy), __func__, vp->bssid, ps);
fc6971d4
JM
800
801 skb = dev_alloc_skb(sizeof(*hdr));
802 if (!skb)
803 return;
804 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
805 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
806 IEEE80211_STYPE_NULLFUNC |
807 (ps ? IEEE80211_FCTL_PM : 0));
808 hdr->duration_id = cpu_to_le16(0);
809 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
810 memcpy(hdr->addr2, mac, ETH_ALEN);
811 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
812 if (data->radio_enabled &&
813 !mac80211_hwsim_tx_frame(data->hw, skb))
814 printk(KERN_DEBUG "%s: nullfunc frame not ack'ed\n", __func__);
815 dev_kfree_skb(skb);
816}
817
818
819static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
820 struct ieee80211_vif *vif)
821{
822 struct mac80211_hwsim_data *data = dat;
823 hwsim_send_nullfunc(data, mac, vif, 1);
824}
825
826
827static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
828 struct ieee80211_vif *vif)
829{
830 struct mac80211_hwsim_data *data = dat;
831 hwsim_send_nullfunc(data, mac, vif, 0);
832}
833
834
835static int hwsim_fops_ps_read(void *dat, u64 *val)
836{
837 struct mac80211_hwsim_data *data = dat;
838 *val = data->ps;
839 return 0;
840}
841
842static int hwsim_fops_ps_write(void *dat, u64 val)
843{
844 struct mac80211_hwsim_data *data = dat;
845 enum ps_mode old_ps;
846
847 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
848 val != PS_MANUAL_POLL)
849 return -EINVAL;
850
851 old_ps = data->ps;
852 data->ps = val;
853
854 if (val == PS_MANUAL_POLL) {
855 ieee80211_iterate_active_interfaces(data->hw,
856 hwsim_send_ps_poll, data);
857 data->ps_poll_pending = true;
858 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
859 ieee80211_iterate_active_interfaces(data->hw,
860 hwsim_send_nullfunc_ps,
861 data);
862 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
863 ieee80211_iterate_active_interfaces(data->hw,
864 hwsim_send_nullfunc_no_ps,
865 data);
866 }
867
868 return 0;
869}
870
871DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
872 "%llu\n");
873
874
acc1e7a3
JM
875static int __init init_mac80211_hwsim(void)
876{
877 int i, err = 0;
878 u8 addr[ETH_ALEN];
879 struct mac80211_hwsim_data *data;
880 struct ieee80211_hw *hw;
22cad735 881 enum ieee80211_band band;
acc1e7a3 882
0e057d73 883 if (radios < 1 || radios > 100)
acc1e7a3
JM
884 return -EINVAL;
885
0e057d73
JB
886 spin_lock_init(&hwsim_radio_lock);
887 INIT_LIST_HEAD(&hwsim_radios);
acc1e7a3
JM
888
889 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
0e057d73 890 if (IS_ERR(hwsim_class))
acc1e7a3 891 return PTR_ERR(hwsim_class);
acc1e7a3
JM
892
893 memset(addr, 0, ETH_ALEN);
894 addr[0] = 0x02;
895
0e057d73 896 for (i = 0; i < radios; i++) {
acc1e7a3
JM
897 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
898 i);
899 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
0e057d73 900 if (!hw) {
acc1e7a3
JM
901 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
902 "failed\n");
903 err = -ENOMEM;
904 goto failed;
905 }
acc1e7a3 906 data = hw->priv;
0e057d73
JB
907 data->hw = hw;
908
6e05d6c4
GKH
909 data->dev = device_create(hwsim_class, NULL, 0, hw,
910 "hwsim%d", i);
acc1e7a3 911 if (IS_ERR(data->dev)) {
e800f17c 912 printk(KERN_DEBUG
6e05d6c4 913 "mac80211_hwsim: device_create "
acc1e7a3
JM
914 "failed (%ld)\n", PTR_ERR(data->dev));
915 err = -ENOMEM;
3a33cc10 916 goto failed_drvdata;
acc1e7a3
JM
917 }
918 data->dev->driver = &mac80211_hwsim_driver;
acc1e7a3
JM
919
920 SET_IEEE80211_DEV(hw, data->dev);
921 addr[3] = i >> 8;
922 addr[4] = i;
923 SET_IEEE80211_PERM_ADDR(hw, addr);
924
925 hw->channel_change_time = 1;
87e8b64e 926 hw->queues = 4;
f59ac048
LR
927 hw->wiphy->interface_modes =
928 BIT(NL80211_IFTYPE_STATION) |
55b39619
AY
929 BIT(NL80211_IFTYPE_AP) |
930 BIT(NL80211_IFTYPE_MESH_POINT);
acc1e7a3 931
fa77533e
JM
932 hw->flags = IEEE80211_HW_MFP_CAPABLE;
933
8aa21e6f
JB
934 /* ask mac80211 to reserve space for magic */
935 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
81c06523 936 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
8aa21e6f 937
22cad735
LR
938 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
939 sizeof(hwsim_channels_2ghz));
940 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
941 sizeof(hwsim_channels_5ghz));
acc1e7a3 942 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
22cad735
LR
943
944 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
945 struct ieee80211_supported_band *sband = &data->bands[band];
946 switch (band) {
947 case IEEE80211_BAND_2GHZ:
948 sband->channels = data->channels_2ghz;
949 sband->n_channels =
950 ARRAY_SIZE(hwsim_channels_2ghz);
951 break;
952 case IEEE80211_BAND_5GHZ:
953 sband->channels = data->channels_5ghz;
954 sband->n_channels =
955 ARRAY_SIZE(hwsim_channels_5ghz);
956 break;
957 default:
958 break;
959 }
960
961 sband->bitrates = data->rates;
962 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
963
964 sband->ht_cap.ht_supported = true;
965 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
966 IEEE80211_HT_CAP_GRN_FLD |
967 IEEE80211_HT_CAP_SGI_40 |
968 IEEE80211_HT_CAP_DSSSCCK40;
969 sband->ht_cap.ampdu_factor = 0x3;
970 sband->ht_cap.ampdu_density = 0x6;
971 memset(&sband->ht_cap.mcs, 0,
972 sizeof(sband->ht_cap.mcs));
973 sband->ht_cap.mcs.rx_mask[0] = 0xff;
974 sband->ht_cap.mcs.rx_mask[1] = 0xff;
975 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
976
977 hw->wiphy->bands[band] = sband;
978 }
acc1e7a3 979
4a5af9c2
LR
980 /* Work to be done prior to ieee80211_register_hw() */
981 switch (regtest) {
982 case HWSIM_REGTEST_DISABLED:
983 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
984 case HWSIM_REGTEST_DRIVER_REG_ALL:
985 case HWSIM_REGTEST_DIFF_COUNTRY:
986 /*
987 * Nothing to be done for driver regulatory domain
988 * hints prior to ieee80211_register_hw()
989 */
990 break;
991 case HWSIM_REGTEST_WORLD_ROAM:
992 if (i == 0) {
993 hw->wiphy->custom_regulatory = true;
994 wiphy_apply_custom_regulatory(hw->wiphy,
995 &hwsim_world_regdom_custom_01);
996 }
997 break;
998 case HWSIM_REGTEST_CUSTOM_WORLD:
999 hw->wiphy->custom_regulatory = true;
1000 wiphy_apply_custom_regulatory(hw->wiphy,
1001 &hwsim_world_regdom_custom_01);
1002 break;
1003 case HWSIM_REGTEST_CUSTOM_WORLD_2:
1004 if (i == 0) {
1005 hw->wiphy->custom_regulatory = true;
1006 wiphy_apply_custom_regulatory(hw->wiphy,
1007 &hwsim_world_regdom_custom_01);
1008 } else if (i == 1) {
1009 hw->wiphy->custom_regulatory = true;
1010 wiphy_apply_custom_regulatory(hw->wiphy,
1011 &hwsim_world_regdom_custom_02);
1012 }
1013 break;
1014 case HWSIM_REGTEST_STRICT_ALL:
1015 hw->wiphy->strict_regulatory = true;
1016 break;
1017 case HWSIM_REGTEST_STRICT_FOLLOW:
1018 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
1019 if (i == 0)
1020 hw->wiphy->strict_regulatory = true;
1021 break;
1022 case HWSIM_REGTEST_ALL:
1023 if (i == 0) {
1024 hw->wiphy->custom_regulatory = true;
1025 wiphy_apply_custom_regulatory(hw->wiphy,
1026 &hwsim_world_regdom_custom_01);
1027 } else if (i == 1) {
1028 hw->wiphy->custom_regulatory = true;
1029 wiphy_apply_custom_regulatory(hw->wiphy,
1030 &hwsim_world_regdom_custom_02);
1031 } else if (i == 4)
1032 hw->wiphy->strict_regulatory = true;
1033 break;
1034 default:
1035 break;
1036 }
1037
98dfaa57
LR
1038 /* give the regulatory workqueue a chance to run */
1039 if (regtest)
1040 schedule_timeout_interruptible(1);
acc1e7a3
JM
1041 err = ieee80211_register_hw(hw);
1042 if (err < 0) {
1043 printk(KERN_DEBUG "mac80211_hwsim: "
1044 "ieee80211_register_hw failed (%d)\n", err);
3a33cc10 1045 goto failed_hw;
acc1e7a3
JM
1046 }
1047
4a5af9c2
LR
1048 /* Work to be done after to ieee80211_register_hw() */
1049 switch (regtest) {
1050 case HWSIM_REGTEST_WORLD_ROAM:
1051 case HWSIM_REGTEST_DISABLED:
1052 break;
1053 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
1054 if (!i)
1055 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1056 break;
1057 case HWSIM_REGTEST_DRIVER_REG_ALL:
1058 case HWSIM_REGTEST_STRICT_ALL:
1059 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1060 break;
1061 case HWSIM_REGTEST_DIFF_COUNTRY:
1062 if (i < ARRAY_SIZE(hwsim_alpha2s))
1063 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
1064 break;
1065 case HWSIM_REGTEST_CUSTOM_WORLD:
1066 case HWSIM_REGTEST_CUSTOM_WORLD_2:
1067 /*
1068 * Nothing to be done for custom world regulatory
1069 * domains after to ieee80211_register_hw
1070 */
1071 break;
1072 case HWSIM_REGTEST_STRICT_FOLLOW:
1073 if (i == 0)
1074 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1075 break;
1076 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
1077 if (i == 0)
1078 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1079 else if (i == 1)
1080 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
1081 break;
1082 case HWSIM_REGTEST_ALL:
1083 if (i == 2)
1084 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1085 else if (i == 3)
1086 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
1087 else if (i == 4)
1088 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
1089 break;
1090 default:
1091 break;
1092 }
1093
e174961c 1094 printk(KERN_DEBUG "%s: hwaddr %pM registered\n",
acc1e7a3 1095 wiphy_name(hw->wiphy),
e174961c 1096 hw->wiphy->perm_addr);
acc1e7a3 1097
fc6971d4
JM
1098 data->debugfs = debugfs_create_dir("hwsim",
1099 hw->wiphy->debugfsdir);
1100 data->debugfs_ps = debugfs_create_file("ps", 0666,
1101 data->debugfs, data,
1102 &hwsim_fops_ps);
1103
acc1e7a3
JM
1104 setup_timer(&data->beacon_timer, mac80211_hwsim_beacon,
1105 (unsigned long) hw);
0e057d73
JB
1106
1107 list_add_tail(&data->list, &hwsim_radios);
acc1e7a3
JM
1108 }
1109
1110 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
1111 if (hwsim_mon == NULL)
1112 goto failed;
1113
1114 rtnl_lock();
1115
1116 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
3a33cc10 1117 if (err < 0)
acc1e7a3 1118 goto failed_mon;
3a33cc10 1119
acc1e7a3
JM
1120
1121 err = register_netdevice(hwsim_mon);
1122 if (err < 0)
1123 goto failed_mon;
1124
1125 rtnl_unlock();
1126
1127 return 0;
1128
1129failed_mon:
1130 rtnl_unlock();
1131 free_netdev(hwsim_mon);
3a33cc10
IS
1132 mac80211_hwsim_free();
1133 return err;
acc1e7a3 1134
3a33cc10
IS
1135failed_hw:
1136 device_unregister(data->dev);
1137failed_drvdata:
1138 ieee80211_free_hw(hw);
acc1e7a3
JM
1139failed:
1140 mac80211_hwsim_free();
1141 return err;
1142}
1143
1144
1145static void __exit exit_mac80211_hwsim(void)
1146{
0e057d73 1147 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
acc1e7a3
JM
1148
1149 unregister_netdev(hwsim_mon);
1150 mac80211_hwsim_free();
1151}
1152
1153
1154module_init(init_mac80211_hwsim);
1155module_exit(exit_mac80211_hwsim);