]> git.ipfire.org Git - people/ms/linux.git/blame - drivers/net/wireless/mac80211_hwsim.c
mac80211: introduce IEEE80211_NUM_TIDS and use it
[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>
7882513b 4 * Copyright (c) 2011, Javier Lopez <jlopex@gmail.com>
acc1e7a3
JM
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/*
12 * TODO:
2b2d7795
JB
13 * - Add TSF sync and fix IBSS beacon transmission by adding
14 * competition for "air time" at TBTT
acc1e7a3
JM
15 * - RX filtering based on filter configuration (data->rx_filter)
16 */
17
0e057d73 18#include <linux/list.h>
5a0e3ad6 19#include <linux/slab.h>
0e057d73 20#include <linux/spinlock.h>
90e3012e
JB
21#include <net/dst.h>
22#include <net/xfrm.h>
acc1e7a3
JM
23#include <net/mac80211.h>
24#include <net/ieee80211_radiotap.h>
25#include <linux/if_arp.h>
26#include <linux/rtnetlink.h>
27#include <linux/etherdevice.h>
fc6971d4 28#include <linux/debugfs.h>
9d9779e7 29#include <linux/module.h>
2f40b940 30#include <linux/ktime.h>
7882513b
JL
31#include <net/genetlink.h>
32#include "mac80211_hwsim.h"
33
34#define WARN_QUEUE 100
35#define MAX_QUEUE 200
acc1e7a3
JM
36
37MODULE_AUTHOR("Jouni Malinen");
38MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
39MODULE_LICENSE("GPL");
40
15e47304 41static u32 wmediumd_portid;
a1910f9c 42
acc1e7a3
JM
43static int radios = 2;
44module_param(radios, int, 0444);
45MODULE_PARM_DESC(radios, "Number of simulated radios");
46
e8261171
JB
47static int channels = 1;
48module_param(channels, int, 0444);
49MODULE_PARM_DESC(channels, "Number of concurrent channels");
69068036 50
4a5af9c2
LR
51/**
52 * enum hwsim_regtest - the type of regulatory tests we offer
53 *
54 * These are the different values you can use for the regtest
55 * module parameter. This is useful to help test world roaming
56 * and the driver regulatory_hint() call and combinations of these.
57 * If you want to do specific alpha2 regulatory domain tests simply
58 * use the userspace regulatory request as that will be respected as
59 * well without the need of this module parameter. This is designed
60 * only for testing the driver regulatory request, world roaming
61 * and all possible combinations.
62 *
63 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
64 * this is the default value.
65 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
66 * hint, only one driver regulatory hint will be sent as such the
67 * secondary radios are expected to follow.
68 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
69 * request with all radios reporting the same regulatory domain.
70 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
71 * different regulatory domains requests. Expected behaviour is for
72 * an intersection to occur but each device will still use their
73 * respective regulatory requested domains. Subsequent radios will
74 * use the resulting intersection.
25985edc 75 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish
4a5af9c2
LR
76 * this by using a custom beacon-capable regulatory domain for the first
77 * radio. All other device world roam.
78 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
79 * domain requests. All radios will adhere to this custom world regulatory
80 * domain.
81 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
82 * domain requests. The first radio will adhere to the first custom world
83 * regulatory domain, the second one to the second custom world regulatory
84 * domain. All other devices will world roam.
85 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
86 * settings, only the first radio will send a regulatory domain request
87 * and use strict settings. The rest of the radios are expected to follow.
88 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
89 * settings. All radios will adhere to this.
90 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
91 * domain settings, combined with secondary driver regulatory domain
92 * settings. The first radio will get a strict regulatory domain setting
93 * using the first driver regulatory request and the second radio will use
94 * non-strict settings using the second driver regulatory request. All
95 * other devices should follow the intersection created between the
96 * first two.
97 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
98 * at least 6 radios for a complete test. We will test in this order:
99 * 1 - driver custom world regulatory domain
100 * 2 - second custom world regulatory domain
101 * 3 - first driver regulatory domain request
102 * 4 - second driver regulatory domain request
103 * 5 - strict regulatory domain settings using the third driver regulatory
104 * domain request
105 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
106 * regulatory requests.
107 */
108enum hwsim_regtest {
109 HWSIM_REGTEST_DISABLED = 0,
110 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
111 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
112 HWSIM_REGTEST_DIFF_COUNTRY = 3,
113 HWSIM_REGTEST_WORLD_ROAM = 4,
114 HWSIM_REGTEST_CUSTOM_WORLD = 5,
115 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
116 HWSIM_REGTEST_STRICT_FOLLOW = 7,
117 HWSIM_REGTEST_STRICT_ALL = 8,
118 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
119 HWSIM_REGTEST_ALL = 10,
120};
121
122/* Set to one of the HWSIM_REGTEST_* values above */
123static int regtest = HWSIM_REGTEST_DISABLED;
124module_param(regtest, int, 0444);
125MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
126
127static const char *hwsim_alpha2s[] = {
128 "FI",
129 "AL",
130 "US",
131 "DE",
132 "JP",
133 "AL",
134};
135
136static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
137 .n_reg_rules = 4,
138 .alpha2 = "99",
139 .reg_rules = {
140 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
141 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
142 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
143 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
144 }
145};
146
147static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
148 .n_reg_rules = 2,
149 .alpha2 = "99",
150 .reg_rules = {
151 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
152 REG_RULE(5725-10, 5850+10, 40, 0, 30,
153 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
154 }
155};
156
8aa21e6f
JB
157struct hwsim_vif_priv {
158 u32 magic;
fc6971d4
JM
159 u8 bssid[ETH_ALEN];
160 bool assoc;
161 u16 aid;
8aa21e6f
JB
162};
163
164#define HWSIM_VIF_MAGIC 0x69537748
165
166static inline void hwsim_check_magic(struct ieee80211_vif *vif)
167{
168 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
e8261171
JB
169 WARN(vp->magic != HWSIM_VIF_MAGIC,
170 "Invalid VIF (%p) magic %#x, %pM, %d/%d\n",
171 vif, vp->magic, vif->addr, vif->type, vif->p2p);
8aa21e6f
JB
172}
173
174static inline void hwsim_set_magic(struct ieee80211_vif *vif)
175{
176 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
177 vp->magic = HWSIM_VIF_MAGIC;
178}
179
180static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
181{
182 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
183 vp->magic = 0;
184}
acc1e7a3 185
81c06523
JB
186struct hwsim_sta_priv {
187 u32 magic;
188};
189
e8261171 190#define HWSIM_STA_MAGIC 0x6d537749
81c06523
JB
191
192static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
193{
194 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
5d6924ea 195 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
81c06523
JB
196}
197
198static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
199{
200 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
5d6924ea 201 sp->magic = HWSIM_STA_MAGIC;
81c06523
JB
202}
203
204static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
205{
206 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
207 sp->magic = 0;
208}
209
e8261171
JB
210struct hwsim_chanctx_priv {
211 u32 magic;
212};
213
214#define HWSIM_CHANCTX_MAGIC 0x6d53774a
215
216static inline void hwsim_check_chanctx_magic(struct ieee80211_chanctx_conf *c)
217{
218 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
219 WARN_ON(cp->magic != HWSIM_CHANCTX_MAGIC);
220}
221
222static inline void hwsim_set_chanctx_magic(struct ieee80211_chanctx_conf *c)
223{
224 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
225 cp->magic = HWSIM_CHANCTX_MAGIC;
226}
227
228static inline void hwsim_clear_chanctx_magic(struct ieee80211_chanctx_conf *c)
229{
230 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
231 cp->magic = 0;
232}
233
acc1e7a3
JM
234static struct class *hwsim_class;
235
acc1e7a3
JM
236static struct net_device *hwsim_mon; /* global monitor netdev */
237
22cad735
LR
238#define CHAN2G(_freq) { \
239 .band = IEEE80211_BAND_2GHZ, \
240 .center_freq = (_freq), \
241 .hw_value = (_freq), \
242 .max_power = 20, \
243}
244
245#define CHAN5G(_freq) { \
246 .band = IEEE80211_BAND_5GHZ, \
247 .center_freq = (_freq), \
248 .hw_value = (_freq), \
249 .max_power = 20, \
250}
251
252static const struct ieee80211_channel hwsim_channels_2ghz[] = {
253 CHAN2G(2412), /* Channel 1 */
254 CHAN2G(2417), /* Channel 2 */
255 CHAN2G(2422), /* Channel 3 */
256 CHAN2G(2427), /* Channel 4 */
257 CHAN2G(2432), /* Channel 5 */
258 CHAN2G(2437), /* Channel 6 */
259 CHAN2G(2442), /* Channel 7 */
260 CHAN2G(2447), /* Channel 8 */
261 CHAN2G(2452), /* Channel 9 */
262 CHAN2G(2457), /* Channel 10 */
263 CHAN2G(2462), /* Channel 11 */
264 CHAN2G(2467), /* Channel 12 */
265 CHAN2G(2472), /* Channel 13 */
266 CHAN2G(2484), /* Channel 14 */
267};
acc1e7a3 268
22cad735
LR
269static const struct ieee80211_channel hwsim_channels_5ghz[] = {
270 CHAN5G(5180), /* Channel 36 */
271 CHAN5G(5200), /* Channel 40 */
272 CHAN5G(5220), /* Channel 44 */
273 CHAN5G(5240), /* Channel 48 */
274
275 CHAN5G(5260), /* Channel 52 */
276 CHAN5G(5280), /* Channel 56 */
277 CHAN5G(5300), /* Channel 60 */
278 CHAN5G(5320), /* Channel 64 */
279
280 CHAN5G(5500), /* Channel 100 */
281 CHAN5G(5520), /* Channel 104 */
282 CHAN5G(5540), /* Channel 108 */
283 CHAN5G(5560), /* Channel 112 */
284 CHAN5G(5580), /* Channel 116 */
285 CHAN5G(5600), /* Channel 120 */
286 CHAN5G(5620), /* Channel 124 */
287 CHAN5G(5640), /* Channel 128 */
288 CHAN5G(5660), /* Channel 132 */
289 CHAN5G(5680), /* Channel 136 */
290 CHAN5G(5700), /* Channel 140 */
291
292 CHAN5G(5745), /* Channel 149 */
293 CHAN5G(5765), /* Channel 153 */
294 CHAN5G(5785), /* Channel 157 */
295 CHAN5G(5805), /* Channel 161 */
296 CHAN5G(5825), /* Channel 165 */
acc1e7a3
JM
297};
298
299static const struct ieee80211_rate hwsim_rates[] = {
300 { .bitrate = 10 },
301 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
302 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
303 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
304 { .bitrate = 60 },
305 { .bitrate = 90 },
306 { .bitrate = 120 },
307 { .bitrate = 180 },
308 { .bitrate = 240 },
309 { .bitrate = 360 },
310 { .bitrate = 480 },
311 { .bitrate = 540 }
312};
313
0e057d73
JB
314static spinlock_t hwsim_radio_lock;
315static struct list_head hwsim_radios;
316
acc1e7a3 317struct mac80211_hwsim_data {
0e057d73
JB
318 struct list_head list;
319 struct ieee80211_hw *hw;
acc1e7a3 320 struct device *dev;
1b083ea4 321 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
22cad735
LR
322 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
323 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
acc1e7a3
JM
324 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
325
ef15aac6
JB
326 struct mac_address addresses[2];
327
e8261171
JB
328 struct ieee80211_channel *tmp_chan;
329 struct delayed_work roc_done;
330 struct delayed_work hw_scan;
331 struct cfg80211_scan_request *hw_scan_request;
332 struct ieee80211_vif *hw_scan_vif;
333 int scan_chan_idx;
334
acc1e7a3 335 struct ieee80211_channel *channel;
acc1e7a3
JM
336 unsigned long beacon_int; /* in jiffies unit */
337 unsigned int rx_filter;
f74cb0f7
LR
338 bool started, idle, scanning;
339 struct mutex mutex;
acc1e7a3 340 struct timer_list beacon_timer;
fc6971d4
JM
341 enum ps_mode {
342 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
343 } ps;
344 bool ps_poll_pending;
345 struct dentry *debugfs;
346 struct dentry *debugfs_ps;
73606d00 347
7882513b 348 struct sk_buff_head pending; /* packets pending */
73606d00
DW
349 /*
350 * Only radios in the same group can communicate together (the
351 * channel has to match too). Each bit represents a group. A
352 * radio can be in more then one group.
353 */
354 u64 group;
355 struct dentry *debugfs_group;
bdd7bd16
BG
356
357 int power_level;
2f40b940
JC
358
359 /* difference between this hw's clock and the real clock, in usecs */
360 u64 tsf_offset;
acc1e7a3
JM
361};
362
363
364struct hwsim_radiotap_hdr {
365 struct ieee80211_radiotap_header hdr;
2f40b940 366 __le64 rt_tsft;
acc1e7a3
JM
367 u8 rt_flags;
368 u8 rt_rate;
369 __le16 rt_channel;
370 __le16 rt_chbitmask;
ba2d3587 371} __packed;
acc1e7a3 372
7882513b
JL
373/* MAC80211_HWSIM netlinf family */
374static struct genl_family hwsim_genl_family = {
375 .id = GENL_ID_GENERATE,
376 .hdrsize = 0,
377 .name = "MAC80211_HWSIM",
378 .version = 1,
379 .maxattr = HWSIM_ATTR_MAX,
380};
381
382/* MAC80211_HWSIM netlink policy */
383
384static struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
385 [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC,
386 .len = 6*sizeof(u8) },
387 [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC,
388 .len = 6*sizeof(u8) },
389 [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
390 .len = IEEE80211_MAX_DATA_LEN },
391 [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 },
392 [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 },
393 [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 },
394 [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC,
395 .len = IEEE80211_TX_MAX_RATES*sizeof(
396 struct hwsim_tx_rate)},
397 [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 },
398};
acc1e7a3 399
d0cf9c0d
SH
400static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
401 struct net_device *dev)
acc1e7a3
JM
402{
403 /* TODO: allow packet injection */
404 dev_kfree_skb(skb);
6ed10654 405 return NETDEV_TX_OK;
acc1e7a3
JM
406}
407
2f40b940
JC
408static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data)
409{
410 struct timeval tv = ktime_to_timeval(ktime_get_real());
411 u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec;
412 return cpu_to_le64(now + data->tsf_offset);
413}
acc1e7a3 414
12ce8ba3
JC
415static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw,
416 struct ieee80211_vif *vif)
417{
418 struct mac80211_hwsim_data *data = hw->priv;
419 return le64_to_cpu(__mac80211_hwsim_get_tsf(data));
420}
421
422static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw,
423 struct ieee80211_vif *vif, u64 tsf)
424{
425 struct mac80211_hwsim_data *data = hw->priv;
426 struct timeval tv = ktime_to_timeval(ktime_get_real());
427 u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec;
428 data->tsf_offset = tsf - now;
429}
430
acc1e7a3 431static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
e8261171
JB
432 struct sk_buff *tx_skb,
433 struct ieee80211_channel *chan)
acc1e7a3
JM
434{
435 struct mac80211_hwsim_data *data = hw->priv;
436 struct sk_buff *skb;
437 struct hwsim_radiotap_hdr *hdr;
438 u16 flags;
439 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
440 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
441
442 if (!netif_running(hwsim_mon))
443 return;
444
445 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
446 if (skb == NULL)
447 return;
448
449 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
450 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
451 hdr->hdr.it_pad = 0;
452 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
f248f105
JM
453 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
454 (1 << IEEE80211_RADIOTAP_RATE) |
2f40b940 455 (1 << IEEE80211_RADIOTAP_TSFT) |
f248f105 456 (1 << IEEE80211_RADIOTAP_CHANNEL));
2f40b940 457 hdr->rt_tsft = __mac80211_hwsim_get_tsf(data);
acc1e7a3
JM
458 hdr->rt_flags = 0;
459 hdr->rt_rate = txrate->bitrate / 5;
e8261171 460 hdr->rt_channel = cpu_to_le16(chan->center_freq);
acc1e7a3
JM
461 flags = IEEE80211_CHAN_2GHZ;
462 if (txrate->flags & IEEE80211_RATE_ERP_G)
463 flags |= IEEE80211_CHAN_OFDM;
464 else
465 flags |= IEEE80211_CHAN_CCK;
466 hdr->rt_chbitmask = cpu_to_le16(flags);
467
468 skb->dev = hwsim_mon;
469 skb_set_mac_header(skb, 0);
470 skb->ip_summed = CHECKSUM_UNNECESSARY;
471 skb->pkt_type = PACKET_OTHERHOST;
f248f105 472 skb->protocol = htons(ETH_P_802_2);
acc1e7a3
JM
473 memset(skb->cb, 0, sizeof(skb->cb));
474 netif_rx(skb);
475}
476
477
e8261171
JB
478static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan,
479 const u8 *addr)
6c085227 480{
6c085227
JM
481 struct sk_buff *skb;
482 struct hwsim_radiotap_hdr *hdr;
483 u16 flags;
484 struct ieee80211_hdr *hdr11;
485
486 if (!netif_running(hwsim_mon))
487 return;
488
489 skb = dev_alloc_skb(100);
490 if (skb == NULL)
491 return;
492
493 hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr));
494 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
495 hdr->hdr.it_pad = 0;
496 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
497 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
498 (1 << IEEE80211_RADIOTAP_CHANNEL));
499 hdr->rt_flags = 0;
500 hdr->rt_rate = 0;
e8261171 501 hdr->rt_channel = cpu_to_le16(chan->center_freq);
6c085227
JM
502 flags = IEEE80211_CHAN_2GHZ;
503 hdr->rt_chbitmask = cpu_to_le16(flags);
504
505 hdr11 = (struct ieee80211_hdr *) skb_put(skb, 10);
506 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
507 IEEE80211_STYPE_ACK);
508 hdr11->duration_id = cpu_to_le16(0);
509 memcpy(hdr11->addr1, addr, ETH_ALEN);
510
511 skb->dev = hwsim_mon;
512 skb_set_mac_header(skb, 0);
513 skb->ip_summed = CHECKSUM_UNNECESSARY;
514 skb->pkt_type = PACKET_OTHERHOST;
515 skb->protocol = htons(ETH_P_802_2);
516 memset(skb->cb, 0, sizeof(skb->cb));
517 netif_rx(skb);
518}
519
520
fc6971d4
JM
521static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
522 struct sk_buff *skb)
523{
524 switch (data->ps) {
525 case PS_DISABLED:
526 return true;
527 case PS_ENABLED:
528 return false;
529 case PS_AUTO_POLL:
530 /* TODO: accept (some) Beacons by default and other frames only
531 * if pending PS-Poll has been sent */
532 return true;
533 case PS_MANUAL_POLL:
534 /* Allow unicast frames to own address if there is a pending
535 * PS-Poll */
536 if (data->ps_poll_pending &&
537 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
538 ETH_ALEN) == 0) {
539 data->ps_poll_pending = false;
540 return true;
541 }
542 return false;
543 }
544
545 return true;
546}
547
548
265dc7f0
JM
549struct mac80211_hwsim_addr_match_data {
550 bool ret;
551 const u8 *addr;
552};
553
554static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
555 struct ieee80211_vif *vif)
556{
557 struct mac80211_hwsim_addr_match_data *md = data;
558 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
559 md->ret = true;
560}
561
562
563static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
564 const u8 *addr)
565{
566 struct mac80211_hwsim_addr_match_data md;
567
568 if (memcmp(addr, data->hw->wiphy->perm_addr, ETH_ALEN) == 0)
569 return true;
570
571 md.ret = false;
572 md.addr = addr;
573 ieee80211_iterate_active_interfaces_atomic(data->hw,
8b2c9824 574 IEEE80211_IFACE_ITER_NORMAL,
265dc7f0
JM
575 mac80211_hwsim_addr_iter,
576 &md);
577
578 return md.ret;
579}
580
7882513b
JL
581static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw,
582 struct sk_buff *my_skb,
15e47304 583 int dst_portid)
7882513b
JL
584{
585 struct sk_buff *skb;
586 struct mac80211_hwsim_data *data = hw->priv;
587 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data;
588 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb);
589 void *msg_head;
590 unsigned int hwsim_flags = 0;
591 int i;
592 struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES];
593
7882513b
JL
594 if (data->ps != PS_DISABLED)
595 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
596 /* If the queue contains MAX_QUEUE skb's drop some */
597 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
598 /* Droping until WARN_QUEUE level */
599 while (skb_queue_len(&data->pending) >= WARN_QUEUE)
600 skb_dequeue(&data->pending);
601 }
602
58050fce 603 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC);
7882513b
JL
604 if (skb == NULL)
605 goto nla_put_failure;
606
607 msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
608 HWSIM_CMD_FRAME);
609 if (msg_head == NULL) {
610 printk(KERN_DEBUG "mac80211_hwsim: problem with msg_head\n");
611 goto nla_put_failure;
612 }
613
633c9389
DM
614 if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER,
615 sizeof(struct mac_address), data->addresses[1].addr))
616 goto nla_put_failure;
265dc7f0 617
7882513b 618 /* We get the skb->data */
633c9389
DM
619 if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data))
620 goto nla_put_failure;
7882513b
JL
621
622 /* We get the flags for this transmission, and we translate them to
623 wmediumd flags */
624
625 if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
626 hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS;
627
628 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
629 hwsim_flags |= HWSIM_TX_CTL_NO_ACK;
630
633c9389
DM
631 if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags))
632 goto nla_put_failure;
7882513b
JL
633
634 /* We get the tx control (rate and retries) info*/
635
636 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
637 tx_attempts[i].idx = info->status.rates[i].idx;
638 tx_attempts[i].count = info->status.rates[i].count;
639 }
640
633c9389
DM
641 if (nla_put(skb, HWSIM_ATTR_TX_INFO,
642 sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES,
643 tx_attempts))
644 goto nla_put_failure;
7882513b
JL
645
646 /* We create a cookie to identify this skb */
633c9389
DM
647 if (nla_put_u64(skb, HWSIM_ATTR_COOKIE, (unsigned long) my_skb))
648 goto nla_put_failure;
7882513b
JL
649
650 genlmsg_end(skb, msg_head);
15e47304 651 genlmsg_unicast(&init_net, skb, dst_portid);
7882513b
JL
652
653 /* Enqueue the packet */
654 skb_queue_tail(&data->pending, my_skb);
655 return;
656
657nla_put_failure:
c393862f 658 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
7882513b
JL
659}
660
e8261171
JB
661static bool hwsim_chans_compat(struct ieee80211_channel *c1,
662 struct ieee80211_channel *c2)
663{
664 if (!c1 || !c2)
665 return false;
666
667 return c1->center_freq == c2->center_freq;
668}
669
670struct tx_iter_data {
671 struct ieee80211_channel *channel;
672 bool receive;
673};
674
675static void mac80211_hwsim_tx_iter(void *_data, u8 *addr,
676 struct ieee80211_vif *vif)
677{
678 struct tx_iter_data *data = _data;
679
680 if (!vif->chanctx_conf)
681 return;
682
683 if (!hwsim_chans_compat(data->channel,
684 rcu_dereference(vif->chanctx_conf)->channel))
685 return;
686
687 data->receive = true;
688}
689
7882513b 690static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
e8261171
JB
691 struct sk_buff *skb,
692 struct ieee80211_channel *chan)
acc1e7a3 693{
0e057d73
JB
694 struct mac80211_hwsim_data *data = hw->priv, *data2;
695 bool ack = false;
e36cfdc9 696 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
acc1e7a3 697 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
e36cfdc9 698 struct ieee80211_rx_status rx_status;
f483ad25 699 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
acc1e7a3
JM
700
701 memset(&rx_status, 0, sizeof(rx_status));
f4bda337 702 rx_status.flag |= RX_FLAG_MACTIME_START;
e8261171
JB
703 rx_status.freq = chan->center_freq;
704 rx_status.band = chan->band;
e6a9854b 705 rx_status.rate_idx = info->control.rates[0].idx;
281ed297
JM
706 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
707 rx_status.flag |= RX_FLAG_HT;
708 if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
709 rx_status.flag |= RX_FLAG_40MHZ;
710 if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
711 rx_status.flag |= RX_FLAG_SHORT_GI;
4b14c96d 712 /* TODO: simulate real signal strength (and optional packet loss) */
bdd7bd16 713 rx_status.signal = data->power_level - 50;
acc1e7a3 714
fc6971d4
JM
715 if (data->ps != PS_DISABLED)
716 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
717
90e3012e
JB
718 /* release the skb's source info */
719 skb_orphan(skb);
c0acf38e 720 skb_dst_drop(skb);
90e3012e
JB
721 skb->mark = 0;
722 secpath_reset(skb);
723 nf_reset(skb);
724
acc1e7a3 725 /* Copy skb to all enabled radios that are on the current frequency */
0e057d73
JB
726 spin_lock(&hwsim_radio_lock);
727 list_for_each_entry(data2, &hwsim_radios, list) {
acc1e7a3 728 struct sk_buff *nskb;
f483ad25 729 struct ieee80211_mgmt *mgmt;
e8261171
JB
730 struct tx_iter_data tx_iter_data = {
731 .receive = false,
732 .channel = chan,
733 };
acc1e7a3 734
0e057d73 735 if (data == data2)
acc1e7a3 736 continue;
0e057d73 737
e8261171
JB
738 if (!data2->started || (data2->idle && !data2->tmp_chan) ||
739 !hwsim_ps_rx_ok(data2, skb))
acc1e7a3
JM
740 continue;
741
e8261171
JB
742 if (!(data->group & data2->group))
743 continue;
744
745 if (!hwsim_chans_compat(chan, data2->tmp_chan) &&
746 !hwsim_chans_compat(chan, data2->channel)) {
747 ieee80211_iterate_active_interfaces_atomic(
8b2c9824
JB
748 data2->hw, IEEE80211_IFACE_ITER_NORMAL,
749 mac80211_hwsim_tx_iter, &tx_iter_data);
e8261171
JB
750 if (!tx_iter_data.receive)
751 continue;
752 }
753
acc1e7a3
JM
754 nskb = skb_copy(skb, GFP_ATOMIC);
755 if (nskb == NULL)
756 continue;
757
265dc7f0 758 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
0e057d73 759 ack = true;
f483ad25
JC
760
761 /* set bcn timestamp relative to receiver mactime */
4e13f092 762 rx_status.mactime =
f483ad25
JC
763 le64_to_cpu(__mac80211_hwsim_get_tsf(data2));
764 mgmt = (struct ieee80211_mgmt *) nskb->data;
765 if (ieee80211_is_beacon(mgmt->frame_control) ||
766 ieee80211_is_probe_resp(mgmt->frame_control))
767 mgmt->u.beacon.timestamp = cpu_to_le64(
768 rx_status.mactime +
b6ba82c8 769 (data->tsf_offset - data2->tsf_offset) +
f483ad25
JC
770 24 * 8 * 10 / txrate->bitrate);
771
f1d58c25
JB
772 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
773 ieee80211_rx_irqsafe(data2->hw, nskb);
acc1e7a3 774 }
0e057d73 775 spin_unlock(&hwsim_radio_lock);
acc1e7a3 776
e36cfdc9
JM
777 return ack;
778}
779
36323f81
TH
780static void mac80211_hwsim_tx(struct ieee80211_hw *hw,
781 struct ieee80211_tx_control *control,
782 struct sk_buff *skb)
e36cfdc9 783{
e8261171
JB
784 struct mac80211_hwsim_data *data = hw->priv;
785 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
786 struct ieee80211_chanctx_conf *chanctx_conf;
787 struct ieee80211_channel *channel;
0e057d73 788 bool ack;
15e47304 789 u32 _portid;
e36cfdc9 790
e8261171 791 if (WARN_ON(skb->len < 10)) {
e36cfdc9
JM
792 /* Should not happen; just a sanity check for addr1 use */
793 dev_kfree_skb(skb);
7bb45683 794 return;
e36cfdc9
JM
795 }
796
e8261171
JB
797 if (channels == 1) {
798 channel = data->channel;
799 } else if (txi->hw_queue == 4) {
800 channel = data->tmp_chan;
801 } else {
802 chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf);
803 if (chanctx_conf)
804 channel = chanctx_conf->channel;
805 else
806 channel = NULL;
807 }
808
809 if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) {
810 dev_kfree_skb(skb);
811 return;
812 }
813
814 if (data->idle && !data->tmp_chan) {
815 wiphy_debug(hw->wiphy, "Trying to TX when idle - reject\n");
816 dev_kfree_skb(skb);
817 return;
818 }
819
820 if (txi->control.vif)
821 hwsim_check_magic(txi->control.vif);
822 if (control->sta)
823 hwsim_check_sta_magic(control->sta);
824
825 txi->rate_driver_data[0] = channel;
826
827 mac80211_hwsim_monitor_rx(hw, skb, channel);
828
7882513b 829 /* wmediumd mode check */
15e47304 830 _portid = ACCESS_ONCE(wmediumd_portid);
7882513b 831
15e47304
EB
832 if (_portid)
833 return mac80211_hwsim_tx_frame_nl(hw, skb, _portid);
7882513b
JL
834
835 /* NO wmediumd detected, perfect medium simulation */
e8261171 836 ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel);
7882513b 837
6c085227
JM
838 if (ack && skb->len >= 16) {
839 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
e8261171 840 mac80211_hwsim_monitor_ack(channel, hdr->addr2);
6c085227 841 }
e36cfdc9 842
e6a9854b 843 ieee80211_tx_info_clear_status(txi);
2a4ffa4c
JC
844
845 /* frame was transmitted at most favorable rate at first attempt */
846 txi->control.rates[0].count = 1;
847 txi->control.rates[1].idx = -1;
848
e6a9854b
JB
849 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
850 txi->flags |= IEEE80211_TX_STAT_ACK;
acc1e7a3 851 ieee80211_tx_status_irqsafe(hw, skb);
acc1e7a3
JM
852}
853
854
855static int mac80211_hwsim_start(struct ieee80211_hw *hw)
856{
857 struct mac80211_hwsim_data *data = hw->priv;
c96c31e4 858 wiphy_debug(hw->wiphy, "%s\n", __func__);
3db1cd5c 859 data->started = true;
acc1e7a3
JM
860 return 0;
861}
862
863
864static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
865{
866 struct mac80211_hwsim_data *data = hw->priv;
3db1cd5c 867 data->started = false;
ab1ef980 868 del_timer(&data->beacon_timer);
c96c31e4 869 wiphy_debug(hw->wiphy, "%s\n", __func__);
acc1e7a3
JM
870}
871
872
873static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
1ed32e4f 874 struct ieee80211_vif *vif)
acc1e7a3 875{
c96c31e4 876 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
2ca27bcf
JB
877 __func__, ieee80211_vif_type_p2p(vif),
878 vif->addr);
1ed32e4f 879 hwsim_set_magic(vif);
e8261171
JB
880
881 vif->cab_queue = 0;
882 vif->hw_queue[IEEE80211_AC_VO] = 0;
883 vif->hw_queue[IEEE80211_AC_VI] = 1;
884 vif->hw_queue[IEEE80211_AC_BE] = 2;
885 vif->hw_queue[IEEE80211_AC_BK] = 3;
886
acc1e7a3
JM
887 return 0;
888}
889
890
c35d0270
JB
891static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
892 struct ieee80211_vif *vif,
2ca27bcf
JB
893 enum nl80211_iftype newtype,
894 bool newp2p)
c35d0270 895{
2ca27bcf 896 newtype = ieee80211_iftype_p2p(newtype, newp2p);
c35d0270
JB
897 wiphy_debug(hw->wiphy,
898 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
2ca27bcf
JB
899 __func__, ieee80211_vif_type_p2p(vif),
900 newtype, vif->addr);
c35d0270
JB
901 hwsim_check_magic(vif);
902
903 return 0;
904}
905
acc1e7a3 906static void mac80211_hwsim_remove_interface(
1ed32e4f 907 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
acc1e7a3 908{
c96c31e4 909 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
2ca27bcf
JB
910 __func__, ieee80211_vif_type_p2p(vif),
911 vif->addr);
1ed32e4f
JB
912 hwsim_check_magic(vif);
913 hwsim_clear_magic(vif);
acc1e7a3
JM
914}
915
e8261171
JB
916static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
917 struct sk_buff *skb,
918 struct ieee80211_channel *chan)
919{
920 u32 _pid = ACCESS_ONCE(wmediumd_portid);
921
922 mac80211_hwsim_monitor_rx(hw, skb, chan);
923
924 if (_pid)
925 return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);
926
927 mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
928 dev_kfree_skb(skb);
929}
acc1e7a3
JM
930
931static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
932 struct ieee80211_vif *vif)
933{
934 struct ieee80211_hw *hw = arg;
acc1e7a3 935 struct sk_buff *skb;
acc1e7a3 936
8aa21e6f
JB
937 hwsim_check_magic(vif);
938
55b39619 939 if (vif->type != NL80211_IFTYPE_AP &&
2b2d7795
JB
940 vif->type != NL80211_IFTYPE_MESH_POINT &&
941 vif->type != NL80211_IFTYPE_ADHOC)
acc1e7a3
JM
942 return;
943
944 skb = ieee80211_beacon_get(hw, vif);
945 if (skb == NULL)
946 return;
7882513b 947
e8261171
JB
948 mac80211_hwsim_tx_frame(hw, skb,
949 rcu_dereference(vif->chanctx_conf)->channel);
acc1e7a3
JM
950}
951
952
953static void mac80211_hwsim_beacon(unsigned long arg)
954{
955 struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
956 struct mac80211_hwsim_data *data = hw->priv;
957
4c4c671a 958 if (!data->started)
acc1e7a3
JM
959 return;
960
f248f105 961 ieee80211_iterate_active_interfaces_atomic(
8b2c9824
JB
962 hw, IEEE80211_IFACE_ITER_NORMAL,
963 mac80211_hwsim_beacon_tx, hw);
acc1e7a3
JM
964
965 data->beacon_timer.expires = jiffies + data->beacon_int;
966 add_timer(&data->beacon_timer);
967}
968
0aaffa9b
JB
969static const char *hwsim_chantypes[] = {
970 [NL80211_CHAN_NO_HT] = "noht",
971 [NL80211_CHAN_HT20] = "ht20",
972 [NL80211_CHAN_HT40MINUS] = "ht40-",
973 [NL80211_CHAN_HT40PLUS] = "ht40+",
974};
acc1e7a3 975
e8975581 976static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
acc1e7a3
JM
977{
978 struct mac80211_hwsim_data *data = hw->priv;
e8975581 979 struct ieee80211_conf *conf = &hw->conf;
0f78231b
JB
980 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
981 [IEEE80211_SMPS_AUTOMATIC] = "auto",
982 [IEEE80211_SMPS_OFF] = "off",
983 [IEEE80211_SMPS_STATIC] = "static",
984 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
985 };
986
c96c31e4
JP
987 wiphy_debug(hw->wiphy,
988 "%s (freq=%d/%s idle=%d ps=%d smps=%s)\n",
989 __func__,
e8261171 990 conf->channel ? conf->channel->center_freq : 0,
c96c31e4
JP
991 hwsim_chantypes[conf->channel_type],
992 !!(conf->flags & IEEE80211_CONF_IDLE),
993 !!(conf->flags & IEEE80211_CONF_PS),
994 smps_modes[conf->smps_mode]);
acc1e7a3 995
70541839
JM
996 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
997
acc1e7a3 998 data->channel = conf->channel;
e8261171
JB
999
1000 WARN_ON(data->channel && channels > 1);
1001
bdd7bd16 1002 data->power_level = conf->power_level;
4c4c671a 1003 if (!data->started || !data->beacon_int)
acc1e7a3
JM
1004 del_timer(&data->beacon_timer);
1005 else
1006 mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
1007
1008 return 0;
1009}
1010
1011
1012static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
1013 unsigned int changed_flags,
3ac64bee 1014 unsigned int *total_flags,u64 multicast)
acc1e7a3
JM
1015{
1016 struct mac80211_hwsim_data *data = hw->priv;
1017
c96c31e4 1018 wiphy_debug(hw->wiphy, "%s\n", __func__);
acc1e7a3
JM
1019
1020 data->rx_filter = 0;
1021 if (*total_flags & FIF_PROMISC_IN_BSS)
1022 data->rx_filter |= FIF_PROMISC_IN_BSS;
1023 if (*total_flags & FIF_ALLMULTI)
1024 data->rx_filter |= FIF_ALLMULTI;
1025
1026 *total_flags = data->rx_filter;
1027}
1028
8aa21e6f
JB
1029static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
1030 struct ieee80211_vif *vif,
1031 struct ieee80211_bss_conf *info,
1032 u32 changed)
1033{
fc6971d4 1034 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
57c4d7b4 1035 struct mac80211_hwsim_data *data = hw->priv;
fc6971d4 1036
8aa21e6f 1037 hwsim_check_magic(vif);
fe63bfa3 1038
c96c31e4 1039 wiphy_debug(hw->wiphy, "%s(changed=0x%x)\n", __func__, changed);
fe63bfa3 1040
2d0ddec5 1041 if (changed & BSS_CHANGED_BSSID) {
c96c31e4
JP
1042 wiphy_debug(hw->wiphy, "%s: BSSID changed: %pM\n",
1043 __func__, info->bssid);
2d0ddec5
JB
1044 memcpy(vp->bssid, info->bssid, ETH_ALEN);
1045 }
1046
fe63bfa3 1047 if (changed & BSS_CHANGED_ASSOC) {
c96c31e4
JP
1048 wiphy_debug(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
1049 info->assoc, info->aid);
fc6971d4
JM
1050 vp->assoc = info->assoc;
1051 vp->aid = info->aid;
fe63bfa3
JM
1052 }
1053
57c4d7b4 1054 if (changed & BSS_CHANGED_BEACON_INT) {
c96c31e4 1055 wiphy_debug(hw->wiphy, " BCNINT: %d\n", info->beacon_int);
57c4d7b4 1056 data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000;
d91f190c 1057 if (WARN_ON(!data->beacon_int))
57c4d7b4 1058 data->beacon_int = 1;
ffed1307
JM
1059 if (data->started)
1060 mod_timer(&data->beacon_timer,
1061 jiffies + data->beacon_int);
57c4d7b4
JB
1062 }
1063
fe63bfa3 1064 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
c96c31e4
JP
1065 wiphy_debug(hw->wiphy, " ERP_CTS_PROT: %d\n",
1066 info->use_cts_prot);
fe63bfa3
JM
1067 }
1068
1069 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
c96c31e4
JP
1070 wiphy_debug(hw->wiphy, " ERP_PREAMBLE: %d\n",
1071 info->use_short_preamble);
fe63bfa3
JM
1072 }
1073
1074 if (changed & BSS_CHANGED_ERP_SLOT) {
c96c31e4 1075 wiphy_debug(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
fe63bfa3
JM
1076 }
1077
1078 if (changed & BSS_CHANGED_HT) {
c96c31e4
JP
1079 wiphy_debug(hw->wiphy, " HT: op_mode=0x%x, chantype=%s\n",
1080 info->ht_operation_mode,
1081 hwsim_chantypes[info->channel_type]);
fe63bfa3
JM
1082 }
1083
1084 if (changed & BSS_CHANGED_BASIC_RATES) {
c96c31e4
JP
1085 wiphy_debug(hw->wiphy, " BASIC_RATES: 0x%llx\n",
1086 (unsigned long long) info->basic_rates);
fe63bfa3 1087 }
cbc668a7
JB
1088
1089 if (changed & BSS_CHANGED_TXPOWER)
1090 wiphy_debug(hw->wiphy, " TX Power: %d dBm\n", info->txpower);
8aa21e6f
JB
1091}
1092
1d669cbf
JB
1093static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
1094 struct ieee80211_vif *vif,
1095 struct ieee80211_sta *sta)
1096{
1097 hwsim_check_magic(vif);
1098 hwsim_set_sta_magic(sta);
1099
1100 return 0;
1101}
1102
1103static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
1104 struct ieee80211_vif *vif,
1105 struct ieee80211_sta *sta)
1106{
1107 hwsim_check_magic(vif);
1108 hwsim_clear_sta_magic(sta);
1109
1110 return 0;
1111}
1112
8aa21e6f
JB
1113static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
1114 struct ieee80211_vif *vif,
17741cdc
JB
1115 enum sta_notify_cmd cmd,
1116 struct ieee80211_sta *sta)
8aa21e6f
JB
1117{
1118 hwsim_check_magic(vif);
1d669cbf 1119
81c06523 1120 switch (cmd) {
89fad578
CL
1121 case STA_NOTIFY_SLEEP:
1122 case STA_NOTIFY_AWAKE:
1123 /* TODO: make good use of these flags */
1124 break;
1d669cbf
JB
1125 default:
1126 WARN(1, "Invalid sta notify: %d\n", cmd);
1127 break;
81c06523
JB
1128 }
1129}
1130
1131static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
1132 struct ieee80211_sta *sta,
1133 bool set)
1134{
1135 hwsim_check_sta_magic(sta);
1136 return 0;
8aa21e6f 1137}
acc1e7a3 1138
1e898ff8 1139static int mac80211_hwsim_conf_tx(
8a3a3c85
EP
1140 struct ieee80211_hw *hw,
1141 struct ieee80211_vif *vif, u16 queue,
1e898ff8
JM
1142 const struct ieee80211_tx_queue_params *params)
1143{
c96c31e4
JP
1144 wiphy_debug(hw->wiphy,
1145 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
1146 __func__, queue,
1147 params->txop, params->cw_min,
1148 params->cw_max, params->aifs);
1e898ff8
JM
1149 return 0;
1150}
1151
1289723e
HS
1152static int mac80211_hwsim_get_survey(
1153 struct ieee80211_hw *hw, int idx,
1154 struct survey_info *survey)
1155{
1156 struct ieee80211_conf *conf = &hw->conf;
1157
c96c31e4 1158 wiphy_debug(hw->wiphy, "%s (idx=%d)\n", __func__, idx);
1289723e
HS
1159
1160 if (idx != 0)
1161 return -ENOENT;
1162
1163 /* Current channel */
1164 survey->channel = conf->channel;
1165
1166 /*
1167 * Magically conjured noise level --- this is only ok for simulated hardware.
1168 *
1169 * A real driver which cannot determine the real channel noise MUST NOT
1170 * report any noise, especially not a magically conjured one :-)
1171 */
1172 survey->filled = SURVEY_INFO_NOISE_DBM;
1173 survey->noise = -92;
1174
1175 return 0;
1176}
1177
aff89a9b
JB
1178#ifdef CONFIG_NL80211_TESTMODE
1179/*
1180 * This section contains example code for using netlink
1181 * attributes with the testmode command in nl80211.
1182 */
1183
1184/* These enums need to be kept in sync with userspace */
1185enum hwsim_testmode_attr {
1186 __HWSIM_TM_ATTR_INVALID = 0,
1187 HWSIM_TM_ATTR_CMD = 1,
1188 HWSIM_TM_ATTR_PS = 2,
1189
1190 /* keep last */
1191 __HWSIM_TM_ATTR_AFTER_LAST,
1192 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
1193};
1194
1195enum hwsim_testmode_cmd {
1196 HWSIM_TM_CMD_SET_PS = 0,
1197 HWSIM_TM_CMD_GET_PS = 1,
4d6d0ae2
JB
1198 HWSIM_TM_CMD_STOP_QUEUES = 2,
1199 HWSIM_TM_CMD_WAKE_QUEUES = 3,
aff89a9b
JB
1200};
1201
1202static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
1203 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
1204 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
1205};
1206
1207static int hwsim_fops_ps_write(void *dat, u64 val);
1208
5bc38193
JB
1209static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
1210 void *data, int len)
aff89a9b
JB
1211{
1212 struct mac80211_hwsim_data *hwsim = hw->priv;
1213 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
1214 struct sk_buff *skb;
1215 int err, ps;
1216
1217 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
1218 hwsim_testmode_policy);
1219 if (err)
1220 return err;
1221
1222 if (!tb[HWSIM_TM_ATTR_CMD])
1223 return -EINVAL;
1224
1225 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
1226 case HWSIM_TM_CMD_SET_PS:
1227 if (!tb[HWSIM_TM_ATTR_PS])
1228 return -EINVAL;
1229 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
1230 return hwsim_fops_ps_write(hwsim, ps);
1231 case HWSIM_TM_CMD_GET_PS:
1232 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
1233 nla_total_size(sizeof(u32)));
1234 if (!skb)
1235 return -ENOMEM;
633c9389
DM
1236 if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps))
1237 goto nla_put_failure;
aff89a9b 1238 return cfg80211_testmode_reply(skb);
4d6d0ae2
JB
1239 case HWSIM_TM_CMD_STOP_QUEUES:
1240 ieee80211_stop_queues(hw);
1241 return 0;
1242 case HWSIM_TM_CMD_WAKE_QUEUES:
1243 ieee80211_wake_queues(hw);
1244 return 0;
aff89a9b
JB
1245 default:
1246 return -EOPNOTSUPP;
1247 }
1248
1249 nla_put_failure:
1250 kfree_skb(skb);
1251 return -ENOBUFS;
1252}
1253#endif
1254
8b73d13a
JB
1255static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
1256 struct ieee80211_vif *vif,
1257 enum ieee80211_ampdu_mlme_action action,
0b01f030
JB
1258 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
1259 u8 buf_size)
8b73d13a
JB
1260{
1261 switch (action) {
1262 case IEEE80211_AMPDU_TX_START:
1263 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1264 break;
1265 case IEEE80211_AMPDU_TX_STOP:
1266 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1267 break;
1268 case IEEE80211_AMPDU_TX_OPERATIONAL:
1269 break;
1270 case IEEE80211_AMPDU_RX_START:
1271 case IEEE80211_AMPDU_RX_STOP:
1272 break;
1273 default:
1274 return -EOPNOTSUPP;
1275 }
1276
1277 return 0;
1278}
1279
a80f7c0b
JB
1280static void mac80211_hwsim_flush(struct ieee80211_hw *hw, bool drop)
1281{
7882513b 1282 /* Not implemented, queues only on kernel side */
a80f7c0b
JB
1283}
1284
e8261171 1285static void hw_scan_work(struct work_struct *work)
69068036 1286{
e8261171
JB
1287 struct mac80211_hwsim_data *hwsim =
1288 container_of(work, struct mac80211_hwsim_data, hw_scan.work);
1289 struct cfg80211_scan_request *req = hwsim->hw_scan_request;
1290 int dwell, i;
69068036 1291
e8261171
JB
1292 mutex_lock(&hwsim->mutex);
1293 if (hwsim->scan_chan_idx >= req->n_channels) {
1294 wiphy_debug(hwsim->hw->wiphy, "hw scan complete\n");
1295 ieee80211_scan_completed(hwsim->hw, false);
1296 hwsim->hw_scan_request = NULL;
1297 hwsim->hw_scan_vif = NULL;
1298 hwsim->tmp_chan = NULL;
1299 mutex_unlock(&hwsim->mutex);
1300 return;
1301 }
1302
1303 wiphy_debug(hwsim->hw->wiphy, "hw scan %d MHz\n",
1304 req->channels[hwsim->scan_chan_idx]->center_freq);
1305
1306 hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx];
1307 if (hwsim->tmp_chan->flags & IEEE80211_CHAN_PASSIVE_SCAN ||
1308 !req->n_ssids) {
1309 dwell = 120;
1310 } else {
1311 dwell = 30;
1312 /* send probes */
1313 for (i = 0; i < req->n_ssids; i++) {
1314 struct sk_buff *probe;
1315
1316 probe = ieee80211_probereq_get(hwsim->hw,
1317 hwsim->hw_scan_vif,
1318 req->ssids[i].ssid,
1319 req->ssids[i].ssid_len,
1320 req->ie, req->ie_len);
1321 if (!probe)
1322 continue;
1323 local_bh_disable();
1324 mac80211_hwsim_tx_frame(hwsim->hw, probe,
1325 hwsim->tmp_chan);
1326 local_bh_enable();
1327 }
1328 }
1329 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan,
1330 msecs_to_jiffies(dwell));
1331 hwsim->scan_chan_idx++;
1332 mutex_unlock(&hwsim->mutex);
69068036
JB
1333}
1334
1335static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
a060bbfe 1336 struct ieee80211_vif *vif,
69068036
JB
1337 struct cfg80211_scan_request *req)
1338{
e8261171 1339 struct mac80211_hwsim_data *hwsim = hw->priv;
69068036
JB
1340 int i;
1341
e8261171
JB
1342 mutex_lock(&hwsim->mutex);
1343 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1344 mutex_unlock(&hwsim->mutex);
1345 return -EBUSY;
1346 }
1347 hwsim->hw_scan_request = req;
1348 hwsim->hw_scan_vif = vif;
1349 hwsim->scan_chan_idx = 0;
1350 mutex_unlock(&hwsim->mutex);
69068036 1351
e8261171 1352 wiphy_debug(hw->wiphy, "hwsim hw_scan request\n");
69068036 1353 for (i = 0; i < req->n_channels; i++)
f74cb0f7 1354 printk(KERN_DEBUG "hwsim hw_scan freq %d\n",
69068036 1355 req->channels[i]->center_freq);
8ee31080
JB
1356 print_hex_dump(KERN_DEBUG, "scan IEs: ", DUMP_PREFIX_OFFSET,
1357 16, 1, req->ie, req->ie_len, 1);
69068036 1358
e8261171 1359 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0);
69068036
JB
1360
1361 return 0;
1362}
1363
e8261171
JB
1364static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw,
1365 struct ieee80211_vif *vif)
1366{
1367 struct mac80211_hwsim_data *hwsim = hw->priv;
1368
1369 wiphy_debug(hw->wiphy, "hwsim cancel_hw_scan\n");
1370
1371 cancel_delayed_work_sync(&hwsim->hw_scan);
1372
1373 mutex_lock(&hwsim->mutex);
1374 ieee80211_scan_completed(hwsim->hw, true);
1375 hwsim->tmp_chan = NULL;
1376 hwsim->hw_scan_request = NULL;
1377 hwsim->hw_scan_vif = NULL;
1378 mutex_unlock(&hwsim->mutex);
1379}
1380
f74cb0f7
LR
1381static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw)
1382{
1383 struct mac80211_hwsim_data *hwsim = hw->priv;
1384
1385 mutex_lock(&hwsim->mutex);
1386
1387 if (hwsim->scanning) {
1388 printk(KERN_DEBUG "two hwsim sw_scans detected!\n");
1389 goto out;
1390 }
1391
1392 printk(KERN_DEBUG "hwsim sw_scan request, prepping stuff\n");
1393 hwsim->scanning = true;
1394
1395out:
1396 mutex_unlock(&hwsim->mutex);
1397}
1398
1399static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw)
1400{
1401 struct mac80211_hwsim_data *hwsim = hw->priv;
1402
1403 mutex_lock(&hwsim->mutex);
1404
1405 printk(KERN_DEBUG "hwsim sw_scan_complete\n");
23ff98fc 1406 hwsim->scanning = false;
f74cb0f7
LR
1407
1408 mutex_unlock(&hwsim->mutex);
1409}
1410
e8261171
JB
1411static void hw_roc_done(struct work_struct *work)
1412{
1413 struct mac80211_hwsim_data *hwsim =
1414 container_of(work, struct mac80211_hwsim_data, roc_done.work);
1415
1416 mutex_lock(&hwsim->mutex);
1417 ieee80211_remain_on_channel_expired(hwsim->hw);
1418 hwsim->tmp_chan = NULL;
1419 mutex_unlock(&hwsim->mutex);
1420
1421 wiphy_debug(hwsim->hw->wiphy, "hwsim ROC expired\n");
1422}
1423
1424static int mac80211_hwsim_roc(struct ieee80211_hw *hw,
1425 struct ieee80211_channel *chan,
1426 enum nl80211_channel_type channel_type,
1427 int duration)
1428{
1429 struct mac80211_hwsim_data *hwsim = hw->priv;
1430
1431 mutex_lock(&hwsim->mutex);
1432 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1433 mutex_unlock(&hwsim->mutex);
1434 return -EBUSY;
1435 }
1436
1437 hwsim->tmp_chan = chan;
1438 mutex_unlock(&hwsim->mutex);
1439
1440 wiphy_debug(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n",
1441 chan->center_freq, duration);
1442
1443 ieee80211_ready_on_channel(hw);
1444
1445 ieee80211_queue_delayed_work(hw, &hwsim->roc_done,
1446 msecs_to_jiffies(duration));
1447 return 0;
1448}
1449
1450static int mac80211_hwsim_croc(struct ieee80211_hw *hw)
1451{
1452 struct mac80211_hwsim_data *hwsim = hw->priv;
1453
1454 cancel_delayed_work_sync(&hwsim->roc_done);
1455
1456 mutex_lock(&hwsim->mutex);
1457 hwsim->tmp_chan = NULL;
1458 mutex_unlock(&hwsim->mutex);
1459
1460 wiphy_debug(hw->wiphy, "hwsim ROC canceled\n");
1461
1462 return 0;
1463}
1464
1465static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw,
1466 struct ieee80211_chanctx_conf *ctx)
1467{
1468 hwsim_set_chanctx_magic(ctx);
1469 wiphy_debug(hw->wiphy, "add channel context %d MHz/%d\n",
1470 ctx->channel->center_freq, ctx->channel_type);
1471 return 0;
1472}
1473
1474static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw,
1475 struct ieee80211_chanctx_conf *ctx)
1476{
1477 wiphy_debug(hw->wiphy, "remove channel context %d MHz/%d\n",
1478 ctx->channel->center_freq, ctx->channel_type);
1479 hwsim_check_chanctx_magic(ctx);
1480 hwsim_clear_chanctx_magic(ctx);
1481}
1482
1483static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw,
1484 struct ieee80211_chanctx_conf *ctx,
1485 u32 changed)
1486{
1487 hwsim_check_chanctx_magic(ctx);
1488 wiphy_debug(hw->wiphy, "change channel context %#x (%d MHz/%d)\n",
1489 changed, ctx->channel->center_freq, ctx->channel_type);
1490}
1491
1492static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw,
1493 struct ieee80211_vif *vif,
1494 struct ieee80211_chanctx_conf *ctx)
1495{
1496 hwsim_check_magic(vif);
1497 hwsim_check_chanctx_magic(ctx);
1498
1499 return 0;
1500}
1501
1502static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw,
1503 struct ieee80211_vif *vif,
1504 struct ieee80211_chanctx_conf *ctx)
1505{
1506 hwsim_check_magic(vif);
1507 hwsim_check_chanctx_magic(ctx);
1508}
1509
69068036 1510static struct ieee80211_ops mac80211_hwsim_ops =
acc1e7a3
JM
1511{
1512 .tx = mac80211_hwsim_tx,
1513 .start = mac80211_hwsim_start,
1514 .stop = mac80211_hwsim_stop,
1515 .add_interface = mac80211_hwsim_add_interface,
c35d0270 1516 .change_interface = mac80211_hwsim_change_interface,
acc1e7a3
JM
1517 .remove_interface = mac80211_hwsim_remove_interface,
1518 .config = mac80211_hwsim_config,
1519 .configure_filter = mac80211_hwsim_configure_filter,
8aa21e6f 1520 .bss_info_changed = mac80211_hwsim_bss_info_changed,
1d669cbf
JB
1521 .sta_add = mac80211_hwsim_sta_add,
1522 .sta_remove = mac80211_hwsim_sta_remove,
8aa21e6f 1523 .sta_notify = mac80211_hwsim_sta_notify,
81c06523 1524 .set_tim = mac80211_hwsim_set_tim,
1e898ff8 1525 .conf_tx = mac80211_hwsim_conf_tx,
1289723e 1526 .get_survey = mac80211_hwsim_get_survey,
aff89a9b 1527 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd)
8b73d13a 1528 .ampdu_action = mac80211_hwsim_ampdu_action,
f74cb0f7
LR
1529 .sw_scan_start = mac80211_hwsim_sw_scan,
1530 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
a80f7c0b 1531 .flush = mac80211_hwsim_flush,
12ce8ba3
JC
1532 .get_tsf = mac80211_hwsim_get_tsf,
1533 .set_tsf = mac80211_hwsim_set_tsf,
acc1e7a3
JM
1534};
1535
1536
1537static void mac80211_hwsim_free(void)
1538{
0e057d73 1539 struct list_head tmplist, *i, *tmp;
e603d9d8 1540 struct mac80211_hwsim_data *data, *tmpdata;
0e057d73
JB
1541
1542 INIT_LIST_HEAD(&tmplist);
1543
1544 spin_lock_bh(&hwsim_radio_lock);
1545 list_for_each_safe(i, tmp, &hwsim_radios)
1546 list_move(i, &tmplist);
1547 spin_unlock_bh(&hwsim_radio_lock);
1548
e603d9d8 1549 list_for_each_entry_safe(data, tmpdata, &tmplist, list) {
73606d00 1550 debugfs_remove(data->debugfs_group);
fc6971d4
JM
1551 debugfs_remove(data->debugfs_ps);
1552 debugfs_remove(data->debugfs);
0e057d73
JB
1553 ieee80211_unregister_hw(data->hw);
1554 device_unregister(data->dev);
1555 ieee80211_free_hw(data->hw);
acc1e7a3 1556 }
acc1e7a3
JM
1557 class_destroy(hwsim_class);
1558}
1559
1560
1561static struct device_driver mac80211_hwsim_driver = {
1562 .name = "mac80211_hwsim"
1563};
1564
98d2faae
SH
1565static const struct net_device_ops hwsim_netdev_ops = {
1566 .ndo_start_xmit = hwsim_mon_xmit,
1567 .ndo_change_mtu = eth_change_mtu,
1568 .ndo_set_mac_address = eth_mac_addr,
1569 .ndo_validate_addr = eth_validate_addr,
1570};
acc1e7a3
JM
1571
1572static void hwsim_mon_setup(struct net_device *dev)
1573{
98d2faae 1574 dev->netdev_ops = &hwsim_netdev_ops;
acc1e7a3
JM
1575 dev->destructor = free_netdev;
1576 ether_setup(dev);
1577 dev->tx_queue_len = 0;
1578 dev->type = ARPHRD_IEEE80211_RADIOTAP;
1579 memset(dev->dev_addr, 0, ETH_ALEN);
1580 dev->dev_addr[0] = 0x12;
1581}
1582
1583
fc6971d4
JM
1584static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
1585{
1586 struct mac80211_hwsim_data *data = dat;
1587 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
fc6971d4
JM
1588 struct sk_buff *skb;
1589 struct ieee80211_pspoll *pspoll;
1590
1591 if (!vp->assoc)
1592 return;
1593
c96c31e4
JP
1594 wiphy_debug(data->hw->wiphy,
1595 "%s: send PS-Poll to %pM for aid %d\n",
1596 __func__, vp->bssid, vp->aid);
fc6971d4
JM
1597
1598 skb = dev_alloc_skb(sizeof(*pspoll));
1599 if (!skb)
1600 return;
1601 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
1602 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
1603 IEEE80211_STYPE_PSPOLL |
1604 IEEE80211_FCTL_PM);
1605 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
1606 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
1607 memcpy(pspoll->ta, mac, ETH_ALEN);
7882513b 1608
e8261171
JB
1609 rcu_read_lock();
1610 mac80211_hwsim_tx_frame(data->hw, skb,
1611 rcu_dereference(vif->chanctx_conf)->channel);
1612 rcu_read_unlock();
fc6971d4
JM
1613}
1614
fc6971d4
JM
1615static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
1616 struct ieee80211_vif *vif, int ps)
1617{
1618 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
fc6971d4
JM
1619 struct sk_buff *skb;
1620 struct ieee80211_hdr *hdr;
1621
1622 if (!vp->assoc)
1623 return;
1624
c96c31e4
JP
1625 wiphy_debug(data->hw->wiphy,
1626 "%s: send data::nullfunc to %pM ps=%d\n",
1627 __func__, vp->bssid, ps);
fc6971d4
JM
1628
1629 skb = dev_alloc_skb(sizeof(*hdr));
1630 if (!skb)
1631 return;
1632 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
1633 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1634 IEEE80211_STYPE_NULLFUNC |
1635 (ps ? IEEE80211_FCTL_PM : 0));
1636 hdr->duration_id = cpu_to_le16(0);
1637 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
1638 memcpy(hdr->addr2, mac, ETH_ALEN);
1639 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
7882513b 1640
e8261171
JB
1641 rcu_read_lock();
1642 mac80211_hwsim_tx_frame(data->hw, skb,
1643 rcu_dereference(vif->chanctx_conf)->channel);
1644 rcu_read_unlock();
fc6971d4
JM
1645}
1646
1647
1648static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
1649 struct ieee80211_vif *vif)
1650{
1651 struct mac80211_hwsim_data *data = dat;
1652 hwsim_send_nullfunc(data, mac, vif, 1);
1653}
1654
1655
1656static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
1657 struct ieee80211_vif *vif)
1658{
1659 struct mac80211_hwsim_data *data = dat;
1660 hwsim_send_nullfunc(data, mac, vif, 0);
1661}
1662
1663
1664static int hwsim_fops_ps_read(void *dat, u64 *val)
1665{
1666 struct mac80211_hwsim_data *data = dat;
1667 *val = data->ps;
1668 return 0;
1669}
1670
1671static int hwsim_fops_ps_write(void *dat, u64 val)
1672{
1673 struct mac80211_hwsim_data *data = dat;
1674 enum ps_mode old_ps;
1675
1676 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
1677 val != PS_MANUAL_POLL)
1678 return -EINVAL;
1679
1680 old_ps = data->ps;
1681 data->ps = val;
1682
1683 if (val == PS_MANUAL_POLL) {
1684 ieee80211_iterate_active_interfaces(data->hw,
8b2c9824 1685 IEEE80211_IFACE_ITER_NORMAL,
fc6971d4
JM
1686 hwsim_send_ps_poll, data);
1687 data->ps_poll_pending = true;
1688 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
1689 ieee80211_iterate_active_interfaces(data->hw,
8b2c9824 1690 IEEE80211_IFACE_ITER_NORMAL,
fc6971d4
JM
1691 hwsim_send_nullfunc_ps,
1692 data);
1693 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
1694 ieee80211_iterate_active_interfaces(data->hw,
8b2c9824 1695 IEEE80211_IFACE_ITER_NORMAL,
fc6971d4
JM
1696 hwsim_send_nullfunc_no_ps,
1697 data);
1698 }
1699
1700 return 0;
1701}
1702
1703DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
1704 "%llu\n");
1705
1706
73606d00
DW
1707static int hwsim_fops_group_read(void *dat, u64 *val)
1708{
1709 struct mac80211_hwsim_data *data = dat;
1710 *val = data->group;
1711 return 0;
1712}
1713
1714static int hwsim_fops_group_write(void *dat, u64 val)
1715{
1716 struct mac80211_hwsim_data *data = dat;
1717 data->group = val;
1718 return 0;
1719}
1720
1721DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
1722 hwsim_fops_group_read, hwsim_fops_group_write,
1723 "%llx\n");
1724
f483ad25 1725static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr(
7882513b
JL
1726 struct mac_address *addr)
1727{
1728 struct mac80211_hwsim_data *data;
1729 bool _found = false;
1730
1731 spin_lock_bh(&hwsim_radio_lock);
1732 list_for_each_entry(data, &hwsim_radios, list) {
1733 if (memcmp(data->addresses[1].addr, addr,
1734 sizeof(struct mac_address)) == 0) {
1735 _found = true;
1736 break;
1737 }
1738 }
1739 spin_unlock_bh(&hwsim_radio_lock);
1740
1741 if (!_found)
1742 return NULL;
1743
1744 return data;
1745}
1746
1747static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
1748 struct genl_info *info)
1749{
1750
1751 struct ieee80211_hdr *hdr;
1752 struct mac80211_hwsim_data *data2;
1753 struct ieee80211_tx_info *txi;
1754 struct hwsim_tx_rate *tx_attempts;
d0f718c1 1755 unsigned long ret_skb_ptr;
7882513b
JL
1756 struct sk_buff *skb, *tmp;
1757 struct mac_address *src;
1758 unsigned int hwsim_flags;
1759
1760 int i;
1761 bool found = false;
1762
1763 if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] ||
1764 !info->attrs[HWSIM_ATTR_FLAGS] ||
1765 !info->attrs[HWSIM_ATTR_COOKIE] ||
1766 !info->attrs[HWSIM_ATTR_TX_INFO])
1767 goto out;
1768
1769 src = (struct mac_address *)nla_data(
1770 info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]);
1771 hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]);
1772
d0f718c1 1773 ret_skb_ptr = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]);
7882513b
JL
1774
1775 data2 = get_hwsim_data_ref_from_addr(src);
1776
1777 if (data2 == NULL)
1778 goto out;
1779
1780 /* look for the skb matching the cookie passed back from user */
1781 skb_queue_walk_safe(&data2->pending, skb, tmp) {
d0f718c1 1782 if ((unsigned long)skb == ret_skb_ptr) {
7882513b
JL
1783 skb_unlink(skb, &data2->pending);
1784 found = true;
1785 break;
1786 }
1787 }
1788
1789 /* not found */
1790 if (!found)
1791 goto out;
1792
1793 /* Tx info received because the frame was broadcasted on user space,
1794 so we get all the necessary info: tx attempts and skb control buff */
1795
1796 tx_attempts = (struct hwsim_tx_rate *)nla_data(
1797 info->attrs[HWSIM_ATTR_TX_INFO]);
1798
1799 /* now send back TX status */
1800 txi = IEEE80211_SKB_CB(skb);
1801
7882513b
JL
1802 ieee80211_tx_info_clear_status(txi);
1803
1804 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
1805 txi->status.rates[i].idx = tx_attempts[i].idx;
1806 txi->status.rates[i].count = tx_attempts[i].count;
1807 /*txi->status.rates[i].flags = 0;*/
1808 }
1809
1810 txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1811
1812 if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) &&
1813 (hwsim_flags & HWSIM_TX_STAT_ACK)) {
1814 if (skb->len >= 16) {
1815 hdr = (struct ieee80211_hdr *) skb->data;
e8261171
JB
1816 mac80211_hwsim_monitor_ack(txi->rate_driver_data[0],
1817 hdr->addr2);
7882513b 1818 }
06cf5c4c 1819 txi->flags |= IEEE80211_TX_STAT_ACK;
7882513b
JL
1820 }
1821 ieee80211_tx_status_irqsafe(data2->hw, skb);
1822 return 0;
1823out:
1824 return -EINVAL;
1825
1826}
1827
1828static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
1829 struct genl_info *info)
1830{
1831
e8261171 1832 struct mac80211_hwsim_data *data2;
7882513b
JL
1833 struct ieee80211_rx_status rx_status;
1834 struct mac_address *dst;
1835 int frame_data_len;
1836 char *frame_data;
1837 struct sk_buff *skb = NULL;
1838
1839 if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] ||
e8261171
JB
1840 !info->attrs[HWSIM_ATTR_FRAME] ||
1841 !info->attrs[HWSIM_ATTR_RX_RATE] ||
1842 !info->attrs[HWSIM_ATTR_SIGNAL])
7882513b
JL
1843 goto out;
1844
1845 dst = (struct mac_address *)nla_data(
1846 info->attrs[HWSIM_ATTR_ADDR_RECEIVER]);
1847
1848 frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]);
1849 frame_data = (char *)nla_data(info->attrs[HWSIM_ATTR_FRAME]);
1850
1851 /* Allocate new skb here */
1852 skb = alloc_skb(frame_data_len, GFP_KERNEL);
1853 if (skb == NULL)
1854 goto err;
1855
1856 if (frame_data_len <= IEEE80211_MAX_DATA_LEN) {
1857 /* Copy the data */
1858 memcpy(skb_put(skb, frame_data_len), frame_data,
1859 frame_data_len);
1860 } else
1861 goto err;
1862
1863 data2 = get_hwsim_data_ref_from_addr(dst);
1864
1865 if (data2 == NULL)
1866 goto out;
1867
1868 /* check if radio is configured properly */
1869
e8261171 1870 if (data2->idle || !data2->started)
7882513b
JL
1871 goto out;
1872
1873 /*A frame is received from user space*/
1874 memset(&rx_status, 0, sizeof(rx_status));
1875 rx_status.freq = data2->channel->center_freq;
1876 rx_status.band = data2->channel->band;
1877 rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
1878 rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1879
1880 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
1881 ieee80211_rx_irqsafe(data2->hw, skb);
1882
1883 return 0;
1884err:
c393862f 1885 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
7882513b
JL
1886 goto out;
1887out:
1888 dev_kfree_skb(skb);
1889 return -EINVAL;
1890}
1891
1892static int hwsim_register_received_nl(struct sk_buff *skb_2,
1893 struct genl_info *info)
1894{
1895 if (info == NULL)
1896 goto out;
1897
15e47304 1898 wmediumd_portid = info->snd_portid;
7882513b
JL
1899
1900 printk(KERN_DEBUG "mac80211_hwsim: received a REGISTER, "
15e47304 1901 "switching to wmediumd mode with pid %d\n", info->snd_portid);
7882513b
JL
1902
1903 return 0;
1904out:
c393862f 1905 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
7882513b
JL
1906 return -EINVAL;
1907}
1908
1909/* Generic Netlink operations array */
1910static struct genl_ops hwsim_ops[] = {
1911 {
1912 .cmd = HWSIM_CMD_REGISTER,
1913 .policy = hwsim_genl_policy,
1914 .doit = hwsim_register_received_nl,
1915 .flags = GENL_ADMIN_PERM,
1916 },
1917 {
1918 .cmd = HWSIM_CMD_FRAME,
1919 .policy = hwsim_genl_policy,
1920 .doit = hwsim_cloned_frame_received_nl,
1921 },
1922 {
1923 .cmd = HWSIM_CMD_TX_INFO_FRAME,
1924 .policy = hwsim_genl_policy,
1925 .doit = hwsim_tx_info_frame_received_nl,
1926 },
1927};
1928
1929static int mac80211_hwsim_netlink_notify(struct notifier_block *nb,
1930 unsigned long state,
1931 void *_notify)
1932{
1933 struct netlink_notify *notify = _notify;
1934
1935 if (state != NETLINK_URELEASE)
1936 return NOTIFY_DONE;
1937
15e47304 1938 if (notify->portid == wmediumd_portid) {
7882513b
JL
1939 printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink"
1940 " socket, switching to perfect channel medium\n");
15e47304 1941 wmediumd_portid = 0;
7882513b
JL
1942 }
1943 return NOTIFY_DONE;
1944
1945}
1946
1947static struct notifier_block hwsim_netlink_notifier = {
1948 .notifier_call = mac80211_hwsim_netlink_notify,
1949};
1950
1951static int hwsim_init_netlink(void)
1952{
1953 int rc;
e8261171
JB
1954
1955 /* userspace test API hasn't been adjusted for multi-channel */
1956 if (channels > 1)
1957 return 0;
1958
7882513b
JL
1959 printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
1960
7882513b
JL
1961 rc = genl_register_family_with_ops(&hwsim_genl_family,
1962 hwsim_ops, ARRAY_SIZE(hwsim_ops));
1963 if (rc)
1964 goto failure;
1965
1966 rc = netlink_register_notifier(&hwsim_netlink_notifier);
1967 if (rc)
1968 goto failure;
1969
1970 return 0;
1971
1972failure:
c393862f 1973 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
7882513b
JL
1974 return -EINVAL;
1975}
1976
1977static void hwsim_exit_netlink(void)
1978{
1979 int ret;
1980
e8261171
JB
1981 /* userspace test API hasn't been adjusted for multi-channel */
1982 if (channels > 1)
1983 return;
1984
7882513b
JL
1985 printk(KERN_INFO "mac80211_hwsim: closing netlink\n");
1986 /* unregister the notifier */
1987 netlink_unregister_notifier(&hwsim_netlink_notifier);
1988 /* unregister the family */
1989 ret = genl_unregister_family(&hwsim_genl_family);
1990 if (ret)
1991 printk(KERN_DEBUG "mac80211_hwsim: "
1992 "unregister family %i\n", ret);
1993}
1994
1ae2fc25
JB
1995static const struct ieee80211_iface_limit hwsim_if_limits[] = {
1996 { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
1997 { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) |
1998 BIT(NL80211_IFTYPE_P2P_CLIENT) |
1999#ifdef CONFIG_MAC80211_MESH
2000 BIT(NL80211_IFTYPE_MESH_POINT) |
2001#endif
2002 BIT(NL80211_IFTYPE_AP) |
2003 BIT(NL80211_IFTYPE_P2P_GO) },
8b3d1cc2 2004 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) },
1ae2fc25
JB
2005};
2006
e8261171 2007static struct ieee80211_iface_combination hwsim_if_comb = {
1ae2fc25
JB
2008 .limits = hwsim_if_limits,
2009 .n_limits = ARRAY_SIZE(hwsim_if_limits),
2010 .max_interfaces = 2048,
2011 .num_different_channels = 1,
2012};
2013
acc1e7a3
JM
2014static int __init init_mac80211_hwsim(void)
2015{
2016 int i, err = 0;
2017 u8 addr[ETH_ALEN];
2018 struct mac80211_hwsim_data *data;
2019 struct ieee80211_hw *hw;
22cad735 2020 enum ieee80211_band band;
acc1e7a3 2021
0e057d73 2022 if (radios < 1 || radios > 100)
acc1e7a3
JM
2023 return -EINVAL;
2024
e8261171
JB
2025 if (channels < 1)
2026 return -EINVAL;
2027
2028 if (channels > 1) {
2029 hwsim_if_comb.num_different_channels = channels;
69068036 2030 mac80211_hwsim_ops.hw_scan = mac80211_hwsim_hw_scan;
e8261171
JB
2031 mac80211_hwsim_ops.cancel_hw_scan =
2032 mac80211_hwsim_cancel_hw_scan;
f74cb0f7
LR
2033 mac80211_hwsim_ops.sw_scan_start = NULL;
2034 mac80211_hwsim_ops.sw_scan_complete = NULL;
e8261171
JB
2035 mac80211_hwsim_ops.remain_on_channel =
2036 mac80211_hwsim_roc;
2037 mac80211_hwsim_ops.cancel_remain_on_channel =
2038 mac80211_hwsim_croc;
2039 mac80211_hwsim_ops.add_chanctx =
2040 mac80211_hwsim_add_chanctx;
2041 mac80211_hwsim_ops.remove_chanctx =
2042 mac80211_hwsim_remove_chanctx;
2043 mac80211_hwsim_ops.change_chanctx =
2044 mac80211_hwsim_change_chanctx;
2045 mac80211_hwsim_ops.assign_vif_chanctx =
2046 mac80211_hwsim_assign_vif_chanctx;
2047 mac80211_hwsim_ops.unassign_vif_chanctx =
2048 mac80211_hwsim_unassign_vif_chanctx;
f74cb0f7 2049 }
69068036 2050
0e057d73
JB
2051 spin_lock_init(&hwsim_radio_lock);
2052 INIT_LIST_HEAD(&hwsim_radios);
acc1e7a3
JM
2053
2054 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
0e057d73 2055 if (IS_ERR(hwsim_class))
acc1e7a3 2056 return PTR_ERR(hwsim_class);
acc1e7a3
JM
2057
2058 memset(addr, 0, ETH_ALEN);
2059 addr[0] = 0x02;
2060
0e057d73 2061 for (i = 0; i < radios; i++) {
acc1e7a3
JM
2062 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
2063 i);
2064 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
0e057d73 2065 if (!hw) {
acc1e7a3
JM
2066 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
2067 "failed\n");
2068 err = -ENOMEM;
2069 goto failed;
2070 }
acc1e7a3 2071 data = hw->priv;
0e057d73
JB
2072 data->hw = hw;
2073
6e05d6c4
GKH
2074 data->dev = device_create(hwsim_class, NULL, 0, hw,
2075 "hwsim%d", i);
acc1e7a3 2076 if (IS_ERR(data->dev)) {
e800f17c 2077 printk(KERN_DEBUG
6e05d6c4 2078 "mac80211_hwsim: device_create "
acc1e7a3
JM
2079 "failed (%ld)\n", PTR_ERR(data->dev));
2080 err = -ENOMEM;
3a33cc10 2081 goto failed_drvdata;
acc1e7a3
JM
2082 }
2083 data->dev->driver = &mac80211_hwsim_driver;
7882513b 2084 skb_queue_head_init(&data->pending);
acc1e7a3
JM
2085
2086 SET_IEEE80211_DEV(hw, data->dev);
2087 addr[3] = i >> 8;
2088 addr[4] = i;
ef15aac6
JB
2089 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
2090 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
2091 data->addresses[1].addr[0] |= 0x40;
2092 hw->wiphy->n_addresses = 2;
2093 hw->wiphy->addresses = data->addresses;
acc1e7a3 2094
1ae2fc25
JB
2095 hw->wiphy->iface_combinations = &hwsim_if_comb;
2096 hw->wiphy->n_iface_combinations = 1;
2097
e8261171 2098 if (channels > 1) {
8223d2f5
JB
2099 hw->wiphy->max_scan_ssids = 255;
2100 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
e8261171 2101 hw->wiphy->max_remain_on_channel_duration = 1000;
8223d2f5
JB
2102 }
2103
e8261171
JB
2104 INIT_DELAYED_WORK(&data->roc_done, hw_roc_done);
2105 INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work);
2106
acc1e7a3 2107 hw->channel_change_time = 1;
e8261171
JB
2108 hw->queues = 5;
2109 hw->offchannel_tx_hw_queue = 4;
f59ac048
LR
2110 hw->wiphy->interface_modes =
2111 BIT(NL80211_IFTYPE_STATION) |
55b39619 2112 BIT(NL80211_IFTYPE_AP) |
2ca27bcf
JB
2113 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2114 BIT(NL80211_IFTYPE_P2P_GO) |
2b2d7795 2115 BIT(NL80211_IFTYPE_ADHOC) |
8b3d1cc2
JB
2116 BIT(NL80211_IFTYPE_MESH_POINT) |
2117 BIT(NL80211_IFTYPE_P2P_DEVICE);
acc1e7a3 2118
4b14c96d 2119 hw->flags = IEEE80211_HW_MFP_CAPABLE |
0f78231b
JB
2120 IEEE80211_HW_SIGNAL_DBM |
2121 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
a75b4363 2122 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
4b6f1dd6 2123 IEEE80211_HW_AMPDU_AGGREGATION |
e8261171
JB
2124 IEEE80211_HW_WANT_MONITOR_VIF |
2125 IEEE80211_HW_QUEUE_CONTROL;
fa77533e 2126
81ddbb5c
JB
2127 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
2128 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
43bc3e89 2129
8aa21e6f
JB
2130 /* ask mac80211 to reserve space for magic */
2131 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
81c06523 2132 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
8aa21e6f 2133
22cad735
LR
2134 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
2135 sizeof(hwsim_channels_2ghz));
2136 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
2137 sizeof(hwsim_channels_5ghz));
acc1e7a3 2138 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
22cad735
LR
2139
2140 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
2141 struct ieee80211_supported_band *sband = &data->bands[band];
2142 switch (band) {
2143 case IEEE80211_BAND_2GHZ:
2144 sband->channels = data->channels_2ghz;
2145 sband->n_channels =
2146 ARRAY_SIZE(hwsim_channels_2ghz);
d130eb49
JB
2147 sband->bitrates = data->rates;
2148 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
22cad735
LR
2149 break;
2150 case IEEE80211_BAND_5GHZ:
2151 sband->channels = data->channels_5ghz;
2152 sband->n_channels =
2153 ARRAY_SIZE(hwsim_channels_5ghz);
d130eb49
JB
2154 sband->bitrates = data->rates + 4;
2155 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
22cad735
LR
2156 break;
2157 default:
1b083ea4 2158 continue;
22cad735
LR
2159 }
2160
22cad735
LR
2161 sband->ht_cap.ht_supported = true;
2162 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
2163 IEEE80211_HT_CAP_GRN_FLD |
2164 IEEE80211_HT_CAP_SGI_40 |
2165 IEEE80211_HT_CAP_DSSSCCK40;
2166 sband->ht_cap.ampdu_factor = 0x3;
2167 sband->ht_cap.ampdu_density = 0x6;
2168 memset(&sband->ht_cap.mcs, 0,
2169 sizeof(sband->ht_cap.mcs));
2170 sband->ht_cap.mcs.rx_mask[0] = 0xff;
2171 sband->ht_cap.mcs.rx_mask[1] = 0xff;
2172 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2173
2174 hw->wiphy->bands[band] = sband;
2175 }
73606d00
DW
2176 /* By default all radios are belonging to the first group */
2177 data->group = 1;
f74cb0f7 2178 mutex_init(&data->mutex);
acc1e7a3 2179
7882513b
JL
2180 /* Enable frame retransmissions for lossy channels */
2181 hw->max_rates = 4;
2182 hw->max_rate_tries = 11;
2183
4a5af9c2
LR
2184 /* Work to be done prior to ieee80211_register_hw() */
2185 switch (regtest) {
2186 case HWSIM_REGTEST_DISABLED:
2187 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2188 case HWSIM_REGTEST_DRIVER_REG_ALL:
2189 case HWSIM_REGTEST_DIFF_COUNTRY:
2190 /*
2191 * Nothing to be done for driver regulatory domain
2192 * hints prior to ieee80211_register_hw()
2193 */
2194 break;
2195 case HWSIM_REGTEST_WORLD_ROAM:
2196 if (i == 0) {
5be83de5 2197 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
4a5af9c2
LR
2198 wiphy_apply_custom_regulatory(hw->wiphy,
2199 &hwsim_world_regdom_custom_01);
2200 }
2201 break;
2202 case HWSIM_REGTEST_CUSTOM_WORLD:
5be83de5 2203 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
4a5af9c2
LR
2204 wiphy_apply_custom_regulatory(hw->wiphy,
2205 &hwsim_world_regdom_custom_01);
2206 break;
2207 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2208 if (i == 0) {
5be83de5 2209 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
4a5af9c2
LR
2210 wiphy_apply_custom_regulatory(hw->wiphy,
2211 &hwsim_world_regdom_custom_01);
2212 } else if (i == 1) {
5be83de5 2213 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
4a5af9c2
LR
2214 wiphy_apply_custom_regulatory(hw->wiphy,
2215 &hwsim_world_regdom_custom_02);
2216 }
2217 break;
2218 case HWSIM_REGTEST_STRICT_ALL:
5be83de5 2219 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
4a5af9c2
LR
2220 break;
2221 case HWSIM_REGTEST_STRICT_FOLLOW:
2222 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2223 if (i == 0)
5be83de5 2224 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
4a5af9c2
LR
2225 break;
2226 case HWSIM_REGTEST_ALL:
2227 if (i == 0) {
5be83de5 2228 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
4a5af9c2
LR
2229 wiphy_apply_custom_regulatory(hw->wiphy,
2230 &hwsim_world_regdom_custom_01);
2231 } else if (i == 1) {
5be83de5 2232 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
4a5af9c2
LR
2233 wiphy_apply_custom_regulatory(hw->wiphy,
2234 &hwsim_world_regdom_custom_02);
2235 } else if (i == 4)
5be83de5 2236 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
4a5af9c2
LR
2237 break;
2238 default:
2239 break;
2240 }
2241
98dfaa57
LR
2242 /* give the regulatory workqueue a chance to run */
2243 if (regtest)
2244 schedule_timeout_interruptible(1);
acc1e7a3
JM
2245 err = ieee80211_register_hw(hw);
2246 if (err < 0) {
2247 printk(KERN_DEBUG "mac80211_hwsim: "
2248 "ieee80211_register_hw failed (%d)\n", err);
3a33cc10 2249 goto failed_hw;
acc1e7a3
JM
2250 }
2251
4a5af9c2
LR
2252 /* Work to be done after to ieee80211_register_hw() */
2253 switch (regtest) {
2254 case HWSIM_REGTEST_WORLD_ROAM:
2255 case HWSIM_REGTEST_DISABLED:
2256 break;
2257 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2258 if (!i)
2259 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2260 break;
2261 case HWSIM_REGTEST_DRIVER_REG_ALL:
2262 case HWSIM_REGTEST_STRICT_ALL:
2263 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2264 break;
2265 case HWSIM_REGTEST_DIFF_COUNTRY:
2266 if (i < ARRAY_SIZE(hwsim_alpha2s))
2267 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
2268 break;
2269 case HWSIM_REGTEST_CUSTOM_WORLD:
2270 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2271 /*
2272 * Nothing to be done for custom world regulatory
2273 * domains after to ieee80211_register_hw
2274 */
2275 break;
2276 case HWSIM_REGTEST_STRICT_FOLLOW:
2277 if (i == 0)
2278 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2279 break;
2280 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2281 if (i == 0)
2282 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2283 else if (i == 1)
2284 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2285 break;
2286 case HWSIM_REGTEST_ALL:
2287 if (i == 2)
2288 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2289 else if (i == 3)
2290 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2291 else if (i == 4)
2292 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
2293 break;
2294 default:
2295 break;
2296 }
2297
c96c31e4
JP
2298 wiphy_debug(hw->wiphy, "hwaddr %pm registered\n",
2299 hw->wiphy->perm_addr);
acc1e7a3 2300
fc6971d4
JM
2301 data->debugfs = debugfs_create_dir("hwsim",
2302 hw->wiphy->debugfsdir);
2303 data->debugfs_ps = debugfs_create_file("ps", 0666,
2304 data->debugfs, data,
2305 &hwsim_fops_ps);
73606d00
DW
2306 data->debugfs_group = debugfs_create_file("group", 0666,
2307 data->debugfs, data,
2308 &hwsim_fops_group);
fc6971d4 2309
acc1e7a3
JM
2310 setup_timer(&data->beacon_timer, mac80211_hwsim_beacon,
2311 (unsigned long) hw);
0e057d73
JB
2312
2313 list_add_tail(&data->list, &hwsim_radios);
acc1e7a3
JM
2314 }
2315
2316 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
2317 if (hwsim_mon == NULL)
2318 goto failed;
2319
7882513b
JL
2320 rtnl_lock();
2321
2322 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
3a33cc10 2323 if (err < 0)
acc1e7a3 2324 goto failed_mon;
3a33cc10 2325
7882513b
JL
2326
2327 err = register_netdevice(hwsim_mon);
2328 if (err < 0)
2329 goto failed_mon;
2330
2331 rtnl_unlock();
2332
2333 err = hwsim_init_netlink();
2334 if (err < 0)
2335 goto failed_nl;
2336
acc1e7a3
JM
2337 return 0;
2338
7882513b
JL
2339failed_nl:
2340 printk(KERN_DEBUG "mac_80211_hwsim: failed initializing netlink\n");
2341 return err;
2342
acc1e7a3
JM
2343failed_mon:
2344 rtnl_unlock();
2345 free_netdev(hwsim_mon);
3a33cc10
IS
2346 mac80211_hwsim_free();
2347 return err;
acc1e7a3 2348
3a33cc10
IS
2349failed_hw:
2350 device_unregister(data->dev);
2351failed_drvdata:
2352 ieee80211_free_hw(hw);
acc1e7a3
JM
2353failed:
2354 mac80211_hwsim_free();
2355 return err;
2356}
f8fffc7e 2357module_init(init_mac80211_hwsim);
acc1e7a3
JM
2358
2359static void __exit exit_mac80211_hwsim(void)
2360{
0e057d73 2361 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
acc1e7a3 2362
7882513b
JL
2363 hwsim_exit_netlink();
2364
acc1e7a3 2365 mac80211_hwsim_free();
5d416351 2366 unregister_netdev(hwsim_mon);
acc1e7a3 2367}
acc1e7a3 2368module_exit(exit_mac80211_hwsim);