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