blob: 1033513d3d9ded8b84add745d33bcadcf71829f6 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211
4 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
5 * Copyright (c) 2011, Javier Lopez <jlopex@gmail.com>
6 * Copyright (c) 2016 - 2017 Intel Deutschland GmbH
David Brazdil0f672f62019-12-10 10:32:29 +00007 * Copyright (C) 2018 Intel Corporation
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008 */
9
10/*
11 * TODO:
12 * - Add TSF sync and fix IBSS beacon transmission by adding
13 * competition for "air time" at TBTT
14 * - RX filtering based on filter configuration (data->rx_filter)
15 */
16
17#include <linux/list.h>
18#include <linux/slab.h>
19#include <linux/spinlock.h>
20#include <net/dst.h>
21#include <net/xfrm.h>
22#include <net/mac80211.h>
23#include <net/ieee80211_radiotap.h>
24#include <linux/if_arp.h>
25#include <linux/rtnetlink.h>
26#include <linux/etherdevice.h>
27#include <linux/platform_device.h>
28#include <linux/debugfs.h>
29#include <linux/module.h>
30#include <linux/ktime.h>
31#include <net/genetlink.h>
32#include <net/net_namespace.h>
33#include <net/netns/generic.h>
34#include <linux/rhashtable.h>
35#include <linux/nospec.h>
36#include "mac80211_hwsim.h"
37
38#define WARN_QUEUE 100
39#define MAX_QUEUE 200
40
41MODULE_AUTHOR("Jouni Malinen");
42MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
43MODULE_LICENSE("GPL");
44
45static int radios = 2;
46module_param(radios, int, 0444);
47MODULE_PARM_DESC(radios, "Number of simulated radios");
48
49static int channels = 1;
50module_param(channels, int, 0444);
51MODULE_PARM_DESC(channels, "Number of concurrent channels");
52
53static bool paged_rx = false;
54module_param(paged_rx, bool, 0644);
55MODULE_PARM_DESC(paged_rx, "Use paged SKBs for RX instead of linear ones");
56
57static bool rctbl = false;
58module_param(rctbl, bool, 0444);
59MODULE_PARM_DESC(rctbl, "Handle rate control table");
60
61static bool support_p2p_device = true;
62module_param(support_p2p_device, bool, 0444);
63MODULE_PARM_DESC(support_p2p_device, "Support P2P-Device interface type");
64
65/**
66 * enum hwsim_regtest - the type of regulatory tests we offer
67 *
68 * These are the different values you can use for the regtest
69 * module parameter. This is useful to help test world roaming
70 * and the driver regulatory_hint() call and combinations of these.
71 * If you want to do specific alpha2 regulatory domain tests simply
72 * use the userspace regulatory request as that will be respected as
73 * well without the need of this module parameter. This is designed
74 * only for testing the driver regulatory request, world roaming
75 * and all possible combinations.
76 *
77 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
78 * this is the default value.
79 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
80 * hint, only one driver regulatory hint will be sent as such the
81 * secondary radios are expected to follow.
82 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
83 * request with all radios reporting the same regulatory domain.
84 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
85 * different regulatory domains requests. Expected behaviour is for
86 * an intersection to occur but each device will still use their
87 * respective regulatory requested domains. Subsequent radios will
88 * use the resulting intersection.
89 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish
90 * this by using a custom beacon-capable regulatory domain for the first
91 * radio. All other device world roam.
92 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
93 * domain requests. All radios will adhere to this custom world regulatory
94 * domain.
95 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
96 * domain requests. The first radio will adhere to the first custom world
97 * regulatory domain, the second one to the second custom world regulatory
98 * domain. All other devices will world roam.
99 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
100 * settings, only the first radio will send a regulatory domain request
101 * and use strict settings. The rest of the radios are expected to follow.
102 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
103 * settings. All radios will adhere to this.
104 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
105 * domain settings, combined with secondary driver regulatory domain
106 * settings. The first radio will get a strict regulatory domain setting
107 * using the first driver regulatory request and the second radio will use
108 * non-strict settings using the second driver regulatory request. All
109 * other devices should follow the intersection created between the
110 * first two.
111 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
112 * at least 6 radios for a complete test. We will test in this order:
113 * 1 - driver custom world regulatory domain
114 * 2 - second custom world regulatory domain
115 * 3 - first driver regulatory domain request
116 * 4 - second driver regulatory domain request
117 * 5 - strict regulatory domain settings using the third driver regulatory
118 * domain request
119 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
120 * regulatory requests.
121 */
122enum hwsim_regtest {
123 HWSIM_REGTEST_DISABLED = 0,
124 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
125 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
126 HWSIM_REGTEST_DIFF_COUNTRY = 3,
127 HWSIM_REGTEST_WORLD_ROAM = 4,
128 HWSIM_REGTEST_CUSTOM_WORLD = 5,
129 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
130 HWSIM_REGTEST_STRICT_FOLLOW = 7,
131 HWSIM_REGTEST_STRICT_ALL = 8,
132 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
133 HWSIM_REGTEST_ALL = 10,
134};
135
136/* Set to one of the HWSIM_REGTEST_* values above */
137static int regtest = HWSIM_REGTEST_DISABLED;
138module_param(regtest, int, 0444);
139MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
140
141static const char *hwsim_alpha2s[] = {
142 "FI",
143 "AL",
144 "US",
145 "DE",
146 "JP",
147 "AL",
148};
149
150static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
151 .n_reg_rules = 4,
152 .alpha2 = "99",
153 .reg_rules = {
154 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
155 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
156 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
157 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
158 }
159};
160
161static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
162 .n_reg_rules = 2,
163 .alpha2 = "99",
164 .reg_rules = {
165 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
166 REG_RULE(5725-10, 5850+10, 40, 0, 30,
167 NL80211_RRF_NO_IR),
168 }
169};
170
171static const struct ieee80211_regdomain *hwsim_world_regdom_custom[] = {
172 &hwsim_world_regdom_custom_01,
173 &hwsim_world_regdom_custom_02,
174};
175
176struct hwsim_vif_priv {
177 u32 magic;
178 u8 bssid[ETH_ALEN];
179 bool assoc;
180 bool bcn_en;
181 u16 aid;
182};
183
184#define HWSIM_VIF_MAGIC 0x69537748
185
186static inline void hwsim_check_magic(struct ieee80211_vif *vif)
187{
188 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
189 WARN(vp->magic != HWSIM_VIF_MAGIC,
190 "Invalid VIF (%p) magic %#x, %pM, %d/%d\n",
191 vif, vp->magic, vif->addr, vif->type, vif->p2p);
192}
193
194static inline void hwsim_set_magic(struct ieee80211_vif *vif)
195{
196 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
197 vp->magic = HWSIM_VIF_MAGIC;
198}
199
200static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
201{
202 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
203 vp->magic = 0;
204}
205
206struct hwsim_sta_priv {
207 u32 magic;
208};
209
210#define HWSIM_STA_MAGIC 0x6d537749
211
212static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
213{
214 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
215 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
216}
217
218static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
219{
220 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
221 sp->magic = HWSIM_STA_MAGIC;
222}
223
224static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
225{
226 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
227 sp->magic = 0;
228}
229
230struct hwsim_chanctx_priv {
231 u32 magic;
232};
233
234#define HWSIM_CHANCTX_MAGIC 0x6d53774a
235
236static inline void hwsim_check_chanctx_magic(struct ieee80211_chanctx_conf *c)
237{
238 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
239 WARN_ON(cp->magic != HWSIM_CHANCTX_MAGIC);
240}
241
242static inline void hwsim_set_chanctx_magic(struct ieee80211_chanctx_conf *c)
243{
244 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
245 cp->magic = HWSIM_CHANCTX_MAGIC;
246}
247
248static inline void hwsim_clear_chanctx_magic(struct ieee80211_chanctx_conf *c)
249{
250 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
251 cp->magic = 0;
252}
253
254static unsigned int hwsim_net_id;
255
256static DEFINE_IDA(hwsim_netgroup_ida);
257
258struct hwsim_net {
259 int netgroup;
260 u32 wmediumd;
261};
262
263static inline int hwsim_net_get_netgroup(struct net *net)
264{
265 struct hwsim_net *hwsim_net = net_generic(net, hwsim_net_id);
266
267 return hwsim_net->netgroup;
268}
269
270static inline int hwsim_net_set_netgroup(struct net *net)
271{
272 struct hwsim_net *hwsim_net = net_generic(net, hwsim_net_id);
273
274 hwsim_net->netgroup = ida_simple_get(&hwsim_netgroup_ida,
275 0, 0, GFP_KERNEL);
276 return hwsim_net->netgroup >= 0 ? 0 : -ENOMEM;
277}
278
279static inline u32 hwsim_net_get_wmediumd(struct net *net)
280{
281 struct hwsim_net *hwsim_net = net_generic(net, hwsim_net_id);
282
283 return hwsim_net->wmediumd;
284}
285
286static inline void hwsim_net_set_wmediumd(struct net *net, u32 portid)
287{
288 struct hwsim_net *hwsim_net = net_generic(net, hwsim_net_id);
289
290 hwsim_net->wmediumd = portid;
291}
292
293static struct class *hwsim_class;
294
295static struct net_device *hwsim_mon; /* global monitor netdev */
296
297#define CHAN2G(_freq) { \
298 .band = NL80211_BAND_2GHZ, \
299 .center_freq = (_freq), \
300 .hw_value = (_freq), \
301 .max_power = 20, \
302}
303
304#define CHAN5G(_freq) { \
305 .band = NL80211_BAND_5GHZ, \
306 .center_freq = (_freq), \
307 .hw_value = (_freq), \
308 .max_power = 20, \
309}
310
311static const struct ieee80211_channel hwsim_channels_2ghz[] = {
312 CHAN2G(2412), /* Channel 1 */
313 CHAN2G(2417), /* Channel 2 */
314 CHAN2G(2422), /* Channel 3 */
315 CHAN2G(2427), /* Channel 4 */
316 CHAN2G(2432), /* Channel 5 */
317 CHAN2G(2437), /* Channel 6 */
318 CHAN2G(2442), /* Channel 7 */
319 CHAN2G(2447), /* Channel 8 */
320 CHAN2G(2452), /* Channel 9 */
321 CHAN2G(2457), /* Channel 10 */
322 CHAN2G(2462), /* Channel 11 */
323 CHAN2G(2467), /* Channel 12 */
324 CHAN2G(2472), /* Channel 13 */
325 CHAN2G(2484), /* Channel 14 */
326};
327
328static const struct ieee80211_channel hwsim_channels_5ghz[] = {
329 CHAN5G(5180), /* Channel 36 */
330 CHAN5G(5200), /* Channel 40 */
331 CHAN5G(5220), /* Channel 44 */
332 CHAN5G(5240), /* Channel 48 */
333
334 CHAN5G(5260), /* Channel 52 */
335 CHAN5G(5280), /* Channel 56 */
336 CHAN5G(5300), /* Channel 60 */
337 CHAN5G(5320), /* Channel 64 */
338
339 CHAN5G(5500), /* Channel 100 */
340 CHAN5G(5520), /* Channel 104 */
341 CHAN5G(5540), /* Channel 108 */
342 CHAN5G(5560), /* Channel 112 */
343 CHAN5G(5580), /* Channel 116 */
344 CHAN5G(5600), /* Channel 120 */
345 CHAN5G(5620), /* Channel 124 */
346 CHAN5G(5640), /* Channel 128 */
347 CHAN5G(5660), /* Channel 132 */
348 CHAN5G(5680), /* Channel 136 */
349 CHAN5G(5700), /* Channel 140 */
350
351 CHAN5G(5745), /* Channel 149 */
352 CHAN5G(5765), /* Channel 153 */
353 CHAN5G(5785), /* Channel 157 */
354 CHAN5G(5805), /* Channel 161 */
355 CHAN5G(5825), /* Channel 165 */
356 CHAN5G(5845), /* Channel 169 */
357};
358
359static const struct ieee80211_rate hwsim_rates[] = {
360 { .bitrate = 10 },
361 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
362 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
363 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
364 { .bitrate = 60 },
365 { .bitrate = 90 },
366 { .bitrate = 120 },
367 { .bitrate = 180 },
368 { .bitrate = 240 },
369 { .bitrate = 360 },
370 { .bitrate = 480 },
371 { .bitrate = 540 }
372};
373
David Brazdil0f672f62019-12-10 10:32:29 +0000374static const u32 hwsim_ciphers[] = {
375 WLAN_CIPHER_SUITE_WEP40,
376 WLAN_CIPHER_SUITE_WEP104,
377 WLAN_CIPHER_SUITE_TKIP,
378 WLAN_CIPHER_SUITE_CCMP,
379 WLAN_CIPHER_SUITE_CCMP_256,
380 WLAN_CIPHER_SUITE_GCMP,
381 WLAN_CIPHER_SUITE_GCMP_256,
382 WLAN_CIPHER_SUITE_AES_CMAC,
383 WLAN_CIPHER_SUITE_BIP_CMAC_256,
384 WLAN_CIPHER_SUITE_BIP_GMAC_128,
385 WLAN_CIPHER_SUITE_BIP_GMAC_256,
386};
387
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000388#define OUI_QCA 0x001374
389#define QCA_NL80211_SUBCMD_TEST 1
390enum qca_nl80211_vendor_subcmds {
391 QCA_WLAN_VENDOR_ATTR_TEST = 8,
392 QCA_WLAN_VENDOR_ATTR_MAX = QCA_WLAN_VENDOR_ATTR_TEST
393};
394
395static const struct nla_policy
396hwsim_vendor_test_policy[QCA_WLAN_VENDOR_ATTR_MAX + 1] = {
397 [QCA_WLAN_VENDOR_ATTR_MAX] = { .type = NLA_U32 },
398};
399
400static int mac80211_hwsim_vendor_cmd_test(struct wiphy *wiphy,
401 struct wireless_dev *wdev,
402 const void *data, int data_len)
403{
404 struct sk_buff *skb;
405 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_MAX + 1];
406 int err;
407 u32 val;
408
David Brazdil0f672f62019-12-10 10:32:29 +0000409 err = nla_parse_deprecated(tb, QCA_WLAN_VENDOR_ATTR_MAX, data,
410 data_len, hwsim_vendor_test_policy, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000411 if (err)
412 return err;
413 if (!tb[QCA_WLAN_VENDOR_ATTR_TEST])
414 return -EINVAL;
415 val = nla_get_u32(tb[QCA_WLAN_VENDOR_ATTR_TEST]);
416 wiphy_dbg(wiphy, "%s: test=%u\n", __func__, val);
417
418 /* Send a vendor event as a test. Note that this would not normally be
419 * done within a command handler, but rather, based on some other
420 * trigger. For simplicity, this command is used to trigger the event
421 * here.
422 *
423 * event_idx = 0 (index in mac80211_hwsim_vendor_commands)
424 */
425 skb = cfg80211_vendor_event_alloc(wiphy, wdev, 100, 0, GFP_KERNEL);
426 if (skb) {
427 /* skb_put() or nla_put() will fill up data within
428 * NL80211_ATTR_VENDOR_DATA.
429 */
430
431 /* Add vendor data */
432 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_TEST, val + 1);
433
434 /* Send the event - this will call nla_nest_end() */
435 cfg80211_vendor_event(skb, GFP_KERNEL);
436 }
437
438 /* Send a response to the command */
439 skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, 10);
440 if (!skb)
441 return -ENOMEM;
442
443 /* skb_put() or nla_put() will fill up data within
444 * NL80211_ATTR_VENDOR_DATA
445 */
446 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_TEST, val + 2);
447
448 return cfg80211_vendor_cmd_reply(skb);
449}
450
451static struct wiphy_vendor_command mac80211_hwsim_vendor_commands[] = {
452 {
453 .info = { .vendor_id = OUI_QCA,
454 .subcmd = QCA_NL80211_SUBCMD_TEST },
455 .flags = WIPHY_VENDOR_CMD_NEED_NETDEV,
456 .doit = mac80211_hwsim_vendor_cmd_test,
David Brazdil0f672f62019-12-10 10:32:29 +0000457 .policy = hwsim_vendor_test_policy,
458 .maxattr = QCA_WLAN_VENDOR_ATTR_MAX,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000459 }
460};
461
462/* Advertise support vendor specific events */
463static const struct nl80211_vendor_cmd_info mac80211_hwsim_vendor_events[] = {
464 { .vendor_id = OUI_QCA, .subcmd = 1 },
465};
466
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000467static spinlock_t hwsim_radio_lock;
468static LIST_HEAD(hwsim_radios);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000469static struct rhashtable hwsim_radios_rht;
470static int hwsim_radio_idx;
471static int hwsim_radios_generation = 1;
472
473static struct platform_driver mac80211_hwsim_driver = {
474 .driver = {
475 .name = "mac80211_hwsim",
476 },
477};
478
479struct mac80211_hwsim_data {
480 struct list_head list;
481 struct rhash_head rht;
482 struct ieee80211_hw *hw;
483 struct device *dev;
484 struct ieee80211_supported_band bands[NUM_NL80211_BANDS];
485 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
486 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
487 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
488 struct ieee80211_iface_combination if_combination;
David Brazdil0f672f62019-12-10 10:32:29 +0000489 struct ieee80211_iface_limit if_limits[3];
490 int n_if_limits;
491
492 u32 ciphers[ARRAY_SIZE(hwsim_ciphers)];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000493
494 struct mac_address addresses[2];
495 int channels, idx;
496 bool use_chanctx;
497 bool destroy_on_close;
498 u32 portid;
499 char alpha2[2];
500 const struct ieee80211_regdomain *regd;
501
502 struct ieee80211_channel *tmp_chan;
503 struct ieee80211_channel *roc_chan;
504 u32 roc_duration;
505 struct delayed_work roc_start;
506 struct delayed_work roc_done;
507 struct delayed_work hw_scan;
508 struct cfg80211_scan_request *hw_scan_request;
509 struct ieee80211_vif *hw_scan_vif;
510 int scan_chan_idx;
511 u8 scan_addr[ETH_ALEN];
512 struct {
513 struct ieee80211_channel *channel;
514 unsigned long next_start, start, end;
515 } survey_data[ARRAY_SIZE(hwsim_channels_2ghz) +
516 ARRAY_SIZE(hwsim_channels_5ghz)];
517
518 struct ieee80211_channel *channel;
519 u64 beacon_int /* beacon interval in us */;
520 unsigned int rx_filter;
521 bool started, idle, scanning;
522 struct mutex mutex;
David Brazdil0f672f62019-12-10 10:32:29 +0000523 struct hrtimer beacon_timer;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000524 enum ps_mode {
525 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
526 } ps;
527 bool ps_poll_pending;
528 struct dentry *debugfs;
529
530 uintptr_t pending_cookie;
531 struct sk_buff_head pending; /* packets pending */
532 /*
533 * Only radios in the same group can communicate together (the
534 * channel has to match too). Each bit represents a group. A
535 * radio can be in more than one group.
536 */
537 u64 group;
538
539 /* group shared by radios created in the same netns */
540 int netgroup;
541 /* wmediumd portid responsible for netgroup of this radio */
542 u32 wmediumd;
543
544 /* difference between this hw's clock and the real clock, in usecs */
545 s64 tsf_offset;
546 s64 bcn_delta;
547 /* absolute beacon transmission time. Used to cover up "tx" delay. */
548 u64 abs_bcn_ts;
549
550 /* Stats */
551 u64 tx_pkts;
552 u64 rx_pkts;
553 u64 tx_bytes;
554 u64 rx_bytes;
555 u64 tx_dropped;
556 u64 tx_failed;
557};
558
559static const struct rhashtable_params hwsim_rht_params = {
560 .nelem_hint = 2,
561 .automatic_shrinking = true,
562 .key_len = ETH_ALEN,
563 .key_offset = offsetof(struct mac80211_hwsim_data, addresses[1]),
564 .head_offset = offsetof(struct mac80211_hwsim_data, rht),
565};
566
567struct hwsim_radiotap_hdr {
568 struct ieee80211_radiotap_header hdr;
569 __le64 rt_tsft;
570 u8 rt_flags;
571 u8 rt_rate;
572 __le16 rt_channel;
573 __le16 rt_chbitmask;
574} __packed;
575
576struct hwsim_radiotap_ack_hdr {
577 struct ieee80211_radiotap_header hdr;
578 u8 rt_flags;
579 u8 pad;
580 __le16 rt_channel;
581 __le16 rt_chbitmask;
582} __packed;
583
584/* MAC80211_HWSIM netlink family */
585static struct genl_family hwsim_genl_family;
586
587enum hwsim_multicast_groups {
588 HWSIM_MCGRP_CONFIG,
589};
590
591static const struct genl_multicast_group hwsim_mcgrps[] = {
592 [HWSIM_MCGRP_CONFIG] = { .name = "config", },
593};
594
595/* MAC80211_HWSIM netlink policy */
596
597static const struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
598 [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
599 [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
600 [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
601 .len = IEEE80211_MAX_DATA_LEN },
602 [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 },
603 [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 },
604 [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 },
605 [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC,
606 .len = IEEE80211_TX_MAX_RATES *
607 sizeof(struct hwsim_tx_rate)},
608 [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 },
609 [HWSIM_ATTR_CHANNELS] = { .type = NLA_U32 },
610 [HWSIM_ATTR_RADIO_ID] = { .type = NLA_U32 },
611 [HWSIM_ATTR_REG_HINT_ALPHA2] = { .type = NLA_STRING, .len = 2 },
612 [HWSIM_ATTR_REG_CUSTOM_REG] = { .type = NLA_U32 },
613 [HWSIM_ATTR_REG_STRICT_REG] = { .type = NLA_FLAG },
614 [HWSIM_ATTR_SUPPORT_P2P_DEVICE] = { .type = NLA_FLAG },
615 [HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE] = { .type = NLA_FLAG },
616 [HWSIM_ATTR_RADIO_NAME] = { .type = NLA_STRING },
617 [HWSIM_ATTR_NO_VIF] = { .type = NLA_FLAG },
618 [HWSIM_ATTR_FREQ] = { .type = NLA_U32 },
619 [HWSIM_ATTR_PERM_ADDR] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
David Brazdil0f672f62019-12-10 10:32:29 +0000620 [HWSIM_ATTR_IFTYPE_SUPPORT] = { .type = NLA_U32 },
621 [HWSIM_ATTR_CIPHER_SUPPORT] = { .type = NLA_BINARY },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000622};
623
624static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
625 struct sk_buff *skb,
626 struct ieee80211_channel *chan);
627
628/* sysfs attributes */
629static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
630{
631 struct mac80211_hwsim_data *data = dat;
632 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
633 struct sk_buff *skb;
634 struct ieee80211_pspoll *pspoll;
635
636 if (!vp->assoc)
637 return;
638
639 wiphy_dbg(data->hw->wiphy,
640 "%s: send PS-Poll to %pM for aid %d\n",
641 __func__, vp->bssid, vp->aid);
642
643 skb = dev_alloc_skb(sizeof(*pspoll));
644 if (!skb)
645 return;
646 pspoll = skb_put(skb, sizeof(*pspoll));
647 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
648 IEEE80211_STYPE_PSPOLL |
649 IEEE80211_FCTL_PM);
650 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
651 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
652 memcpy(pspoll->ta, mac, ETH_ALEN);
653
654 rcu_read_lock();
655 mac80211_hwsim_tx_frame(data->hw, skb,
656 rcu_dereference(vif->chanctx_conf)->def.chan);
657 rcu_read_unlock();
658}
659
660static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
661 struct ieee80211_vif *vif, int ps)
662{
663 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
664 struct sk_buff *skb;
665 struct ieee80211_hdr *hdr;
666
667 if (!vp->assoc)
668 return;
669
670 wiphy_dbg(data->hw->wiphy,
671 "%s: send data::nullfunc to %pM ps=%d\n",
672 __func__, vp->bssid, ps);
673
674 skb = dev_alloc_skb(sizeof(*hdr));
675 if (!skb)
676 return;
677 hdr = skb_put(skb, sizeof(*hdr) - ETH_ALEN);
678 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
679 IEEE80211_STYPE_NULLFUNC |
680 IEEE80211_FCTL_TODS |
681 (ps ? IEEE80211_FCTL_PM : 0));
682 hdr->duration_id = cpu_to_le16(0);
683 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
684 memcpy(hdr->addr2, mac, ETH_ALEN);
685 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
686
687 rcu_read_lock();
688 mac80211_hwsim_tx_frame(data->hw, skb,
689 rcu_dereference(vif->chanctx_conf)->def.chan);
690 rcu_read_unlock();
691}
692
693
694static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
695 struct ieee80211_vif *vif)
696{
697 struct mac80211_hwsim_data *data = dat;
698 hwsim_send_nullfunc(data, mac, vif, 1);
699}
700
701static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
702 struct ieee80211_vif *vif)
703{
704 struct mac80211_hwsim_data *data = dat;
705 hwsim_send_nullfunc(data, mac, vif, 0);
706}
707
708static int hwsim_fops_ps_read(void *dat, u64 *val)
709{
710 struct mac80211_hwsim_data *data = dat;
711 *val = data->ps;
712 return 0;
713}
714
715static int hwsim_fops_ps_write(void *dat, u64 val)
716{
717 struct mac80211_hwsim_data *data = dat;
718 enum ps_mode old_ps;
719
720 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
721 val != PS_MANUAL_POLL)
722 return -EINVAL;
723
724 if (val == PS_MANUAL_POLL) {
725 if (data->ps != PS_ENABLED)
726 return -EINVAL;
727 local_bh_disable();
728 ieee80211_iterate_active_interfaces_atomic(
729 data->hw, IEEE80211_IFACE_ITER_NORMAL,
730 hwsim_send_ps_poll, data);
731 local_bh_enable();
732 return 0;
733 }
734 old_ps = data->ps;
735 data->ps = val;
736
737 local_bh_disable();
738 if (old_ps == PS_DISABLED && val != PS_DISABLED) {
739 ieee80211_iterate_active_interfaces_atomic(
740 data->hw, IEEE80211_IFACE_ITER_NORMAL,
741 hwsim_send_nullfunc_ps, data);
742 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
743 ieee80211_iterate_active_interfaces_atomic(
744 data->hw, IEEE80211_IFACE_ITER_NORMAL,
745 hwsim_send_nullfunc_no_ps, data);
746 }
747 local_bh_enable();
748
749 return 0;
750}
751
752DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
753 "%llu\n");
754
755static int hwsim_write_simulate_radar(void *dat, u64 val)
756{
757 struct mac80211_hwsim_data *data = dat;
758
759 ieee80211_radar_detected(data->hw);
760
761 return 0;
762}
763
764DEFINE_SIMPLE_ATTRIBUTE(hwsim_simulate_radar, NULL,
765 hwsim_write_simulate_radar, "%llu\n");
766
767static int hwsim_fops_group_read(void *dat, u64 *val)
768{
769 struct mac80211_hwsim_data *data = dat;
770 *val = data->group;
771 return 0;
772}
773
774static int hwsim_fops_group_write(void *dat, u64 val)
775{
776 struct mac80211_hwsim_data *data = dat;
777 data->group = val;
778 return 0;
779}
780
781DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
782 hwsim_fops_group_read, hwsim_fops_group_write,
783 "%llx\n");
784
785static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
786 struct net_device *dev)
787{
788 /* TODO: allow packet injection */
789 dev_kfree_skb(skb);
790 return NETDEV_TX_OK;
791}
792
793static inline u64 mac80211_hwsim_get_tsf_raw(void)
794{
795 return ktime_to_us(ktime_get_real());
796}
797
798static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data)
799{
800 u64 now = mac80211_hwsim_get_tsf_raw();
801 return cpu_to_le64(now + data->tsf_offset);
802}
803
804static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw,
805 struct ieee80211_vif *vif)
806{
807 struct mac80211_hwsim_data *data = hw->priv;
808 return le64_to_cpu(__mac80211_hwsim_get_tsf(data));
809}
810
811static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw,
812 struct ieee80211_vif *vif, u64 tsf)
813{
814 struct mac80211_hwsim_data *data = hw->priv;
815 u64 now = mac80211_hwsim_get_tsf(hw, vif);
816 u32 bcn_int = data->beacon_int;
817 u64 delta = abs(tsf - now);
818
819 /* adjust after beaconing with new timestamp at old TBTT */
820 if (tsf > now) {
821 data->tsf_offset += delta;
822 data->bcn_delta = do_div(delta, bcn_int);
823 } else {
824 data->tsf_offset -= delta;
825 data->bcn_delta = -(s64)do_div(delta, bcn_int);
826 }
827}
828
829static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
830 struct sk_buff *tx_skb,
831 struct ieee80211_channel *chan)
832{
833 struct mac80211_hwsim_data *data = hw->priv;
834 struct sk_buff *skb;
835 struct hwsim_radiotap_hdr *hdr;
836 u16 flags;
837 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
838 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
839
840 if (WARN_ON(!txrate))
841 return;
842
843 if (!netif_running(hwsim_mon))
844 return;
845
846 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
847 if (skb == NULL)
848 return;
849
850 hdr = skb_push(skb, sizeof(*hdr));
851 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
852 hdr->hdr.it_pad = 0;
853 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
854 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
855 (1 << IEEE80211_RADIOTAP_RATE) |
856 (1 << IEEE80211_RADIOTAP_TSFT) |
857 (1 << IEEE80211_RADIOTAP_CHANNEL));
858 hdr->rt_tsft = __mac80211_hwsim_get_tsf(data);
859 hdr->rt_flags = 0;
860 hdr->rt_rate = txrate->bitrate / 5;
861 hdr->rt_channel = cpu_to_le16(chan->center_freq);
862 flags = IEEE80211_CHAN_2GHZ;
863 if (txrate->flags & IEEE80211_RATE_ERP_G)
864 flags |= IEEE80211_CHAN_OFDM;
865 else
866 flags |= IEEE80211_CHAN_CCK;
867 hdr->rt_chbitmask = cpu_to_le16(flags);
868
869 skb->dev = hwsim_mon;
870 skb_reset_mac_header(skb);
871 skb->ip_summed = CHECKSUM_UNNECESSARY;
872 skb->pkt_type = PACKET_OTHERHOST;
873 skb->protocol = htons(ETH_P_802_2);
874 memset(skb->cb, 0, sizeof(skb->cb));
875 netif_rx(skb);
876}
877
878
879static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan,
880 const u8 *addr)
881{
882 struct sk_buff *skb;
883 struct hwsim_radiotap_ack_hdr *hdr;
884 u16 flags;
885 struct ieee80211_hdr *hdr11;
886
887 if (!netif_running(hwsim_mon))
888 return;
889
890 skb = dev_alloc_skb(100);
891 if (skb == NULL)
892 return;
893
894 hdr = skb_put(skb, sizeof(*hdr));
895 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
896 hdr->hdr.it_pad = 0;
897 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
898 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
899 (1 << IEEE80211_RADIOTAP_CHANNEL));
900 hdr->rt_flags = 0;
901 hdr->pad = 0;
902 hdr->rt_channel = cpu_to_le16(chan->center_freq);
903 flags = IEEE80211_CHAN_2GHZ;
904 hdr->rt_chbitmask = cpu_to_le16(flags);
905
906 hdr11 = skb_put(skb, 10);
907 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
908 IEEE80211_STYPE_ACK);
909 hdr11->duration_id = cpu_to_le16(0);
910 memcpy(hdr11->addr1, addr, ETH_ALEN);
911
912 skb->dev = hwsim_mon;
913 skb_reset_mac_header(skb);
914 skb->ip_summed = CHECKSUM_UNNECESSARY;
915 skb->pkt_type = PACKET_OTHERHOST;
916 skb->protocol = htons(ETH_P_802_2);
917 memset(skb->cb, 0, sizeof(skb->cb));
918 netif_rx(skb);
919}
920
921struct mac80211_hwsim_addr_match_data {
922 u8 addr[ETH_ALEN];
923 bool ret;
924};
925
926static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
927 struct ieee80211_vif *vif)
928{
929 struct mac80211_hwsim_addr_match_data *md = data;
930
931 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
932 md->ret = true;
933}
934
935static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
936 const u8 *addr)
937{
938 struct mac80211_hwsim_addr_match_data md = {
939 .ret = false,
940 };
941
942 if (data->scanning && memcmp(addr, data->scan_addr, ETH_ALEN) == 0)
943 return true;
944
945 memcpy(md.addr, addr, ETH_ALEN);
946
947 ieee80211_iterate_active_interfaces_atomic(data->hw,
948 IEEE80211_IFACE_ITER_NORMAL,
949 mac80211_hwsim_addr_iter,
950 &md);
951
952 return md.ret;
953}
954
955static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
956 struct sk_buff *skb)
957{
958 switch (data->ps) {
959 case PS_DISABLED:
960 return true;
961 case PS_ENABLED:
962 return false;
963 case PS_AUTO_POLL:
964 /* TODO: accept (some) Beacons by default and other frames only
965 * if pending PS-Poll has been sent */
966 return true;
967 case PS_MANUAL_POLL:
968 /* Allow unicast frames to own address if there is a pending
969 * PS-Poll */
970 if (data->ps_poll_pending &&
971 mac80211_hwsim_addr_match(data, skb->data + 4)) {
972 data->ps_poll_pending = false;
973 return true;
974 }
975 return false;
976 }
977
978 return true;
979}
980
981static int hwsim_unicast_netgroup(struct mac80211_hwsim_data *data,
982 struct sk_buff *skb, int portid)
983{
984 struct net *net;
985 bool found = false;
986 int res = -ENOENT;
987
988 rcu_read_lock();
989 for_each_net_rcu(net) {
990 if (data->netgroup == hwsim_net_get_netgroup(net)) {
991 res = genlmsg_unicast(net, skb, portid);
992 found = true;
993 break;
994 }
995 }
996 rcu_read_unlock();
997
998 if (!found)
999 nlmsg_free(skb);
1000
1001 return res;
1002}
1003
1004static inline u16 trans_tx_rate_flags_ieee2hwsim(struct ieee80211_tx_rate *rate)
1005{
1006 u16 result = 0;
1007
1008 if (rate->flags & IEEE80211_TX_RC_USE_RTS_CTS)
1009 result |= MAC80211_HWSIM_TX_RC_USE_RTS_CTS;
1010 if (rate->flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
1011 result |= MAC80211_HWSIM_TX_RC_USE_CTS_PROTECT;
1012 if (rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
1013 result |= MAC80211_HWSIM_TX_RC_USE_SHORT_PREAMBLE;
1014 if (rate->flags & IEEE80211_TX_RC_MCS)
1015 result |= MAC80211_HWSIM_TX_RC_MCS;
1016 if (rate->flags & IEEE80211_TX_RC_GREEN_FIELD)
1017 result |= MAC80211_HWSIM_TX_RC_GREEN_FIELD;
1018 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1019 result |= MAC80211_HWSIM_TX_RC_40_MHZ_WIDTH;
1020 if (rate->flags & IEEE80211_TX_RC_DUP_DATA)
1021 result |= MAC80211_HWSIM_TX_RC_DUP_DATA;
1022 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
1023 result |= MAC80211_HWSIM_TX_RC_SHORT_GI;
1024 if (rate->flags & IEEE80211_TX_RC_VHT_MCS)
1025 result |= MAC80211_HWSIM_TX_RC_VHT_MCS;
1026 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1027 result |= MAC80211_HWSIM_TX_RC_80_MHZ_WIDTH;
1028 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
1029 result |= MAC80211_HWSIM_TX_RC_160_MHZ_WIDTH;
1030
1031 return result;
1032}
1033
1034static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw,
1035 struct sk_buff *my_skb,
1036 int dst_portid)
1037{
1038 struct sk_buff *skb;
1039 struct mac80211_hwsim_data *data = hw->priv;
1040 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data;
1041 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb);
1042 void *msg_head;
1043 unsigned int hwsim_flags = 0;
1044 int i;
1045 struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES];
1046 struct hwsim_tx_rate_flag tx_attempts_flags[IEEE80211_TX_MAX_RATES];
1047 uintptr_t cookie;
1048
1049 if (data->ps != PS_DISABLED)
1050 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1051 /* If the queue contains MAX_QUEUE skb's drop some */
1052 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
1053 /* Droping until WARN_QUEUE level */
1054 while (skb_queue_len(&data->pending) >= WARN_QUEUE) {
1055 ieee80211_free_txskb(hw, skb_dequeue(&data->pending));
1056 data->tx_dropped++;
1057 }
1058 }
1059
1060 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1061 if (skb == NULL)
1062 goto nla_put_failure;
1063
1064 msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
1065 HWSIM_CMD_FRAME);
1066 if (msg_head == NULL) {
1067 pr_debug("mac80211_hwsim: problem with msg_head\n");
1068 goto nla_put_failure;
1069 }
1070
1071 if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER,
1072 ETH_ALEN, data->addresses[1].addr))
1073 goto nla_put_failure;
1074
1075 /* We get the skb->data */
1076 if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data))
1077 goto nla_put_failure;
1078
1079 /* We get the flags for this transmission, and we translate them to
1080 wmediumd flags */
1081
1082 if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
1083 hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS;
1084
1085 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
1086 hwsim_flags |= HWSIM_TX_CTL_NO_ACK;
1087
1088 if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags))
1089 goto nla_put_failure;
1090
1091 if (nla_put_u32(skb, HWSIM_ATTR_FREQ, data->channel->center_freq))
1092 goto nla_put_failure;
1093
1094 /* We get the tx control (rate and retries) info*/
1095
1096 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
1097 tx_attempts[i].idx = info->status.rates[i].idx;
1098 tx_attempts_flags[i].idx = info->status.rates[i].idx;
1099 tx_attempts[i].count = info->status.rates[i].count;
1100 tx_attempts_flags[i].flags =
1101 trans_tx_rate_flags_ieee2hwsim(
1102 &info->status.rates[i]);
1103 }
1104
1105 if (nla_put(skb, HWSIM_ATTR_TX_INFO,
1106 sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES,
1107 tx_attempts))
1108 goto nla_put_failure;
1109
1110 if (nla_put(skb, HWSIM_ATTR_TX_INFO_FLAGS,
1111 sizeof(struct hwsim_tx_rate_flag) * IEEE80211_TX_MAX_RATES,
1112 tx_attempts_flags))
1113 goto nla_put_failure;
1114
1115 /* We create a cookie to identify this skb */
1116 data->pending_cookie++;
1117 cookie = data->pending_cookie;
1118 info->rate_driver_data[0] = (void *)cookie;
1119 if (nla_put_u64_64bit(skb, HWSIM_ATTR_COOKIE, cookie, HWSIM_ATTR_PAD))
1120 goto nla_put_failure;
1121
1122 genlmsg_end(skb, msg_head);
1123 if (hwsim_unicast_netgroup(data, skb, dst_portid))
1124 goto err_free_txskb;
1125
1126 /* Enqueue the packet */
1127 skb_queue_tail(&data->pending, my_skb);
1128 data->tx_pkts++;
1129 data->tx_bytes += my_skb->len;
1130 return;
1131
1132nla_put_failure:
1133 nlmsg_free(skb);
1134err_free_txskb:
1135 pr_debug("mac80211_hwsim: error occurred in %s\n", __func__);
1136 ieee80211_free_txskb(hw, my_skb);
1137 data->tx_failed++;
1138}
1139
1140static bool hwsim_chans_compat(struct ieee80211_channel *c1,
1141 struct ieee80211_channel *c2)
1142{
1143 if (!c1 || !c2)
1144 return false;
1145
1146 return c1->center_freq == c2->center_freq;
1147}
1148
1149struct tx_iter_data {
1150 struct ieee80211_channel *channel;
1151 bool receive;
1152};
1153
1154static void mac80211_hwsim_tx_iter(void *_data, u8 *addr,
1155 struct ieee80211_vif *vif)
1156{
1157 struct tx_iter_data *data = _data;
1158
1159 if (!vif->chanctx_conf)
1160 return;
1161
1162 if (!hwsim_chans_compat(data->channel,
1163 rcu_dereference(vif->chanctx_conf)->def.chan))
1164 return;
1165
1166 data->receive = true;
1167}
1168
1169static void mac80211_hwsim_add_vendor_rtap(struct sk_buff *skb)
1170{
1171 /*
1172 * To enable this code, #define the HWSIM_RADIOTAP_OUI,
1173 * e.g. like this:
1174 * #define HWSIM_RADIOTAP_OUI "\x02\x00\x00"
1175 * (but you should use a valid OUI, not that)
1176 *
1177 * If anyone wants to 'donate' a radiotap OUI/subns code
1178 * please send a patch removing this #ifdef and changing
1179 * the values accordingly.
1180 */
1181#ifdef HWSIM_RADIOTAP_OUI
1182 struct ieee80211_vendor_radiotap *rtap;
1183
1184 /*
1185 * Note that this code requires the headroom in the SKB
1186 * that was allocated earlier.
1187 */
1188 rtap = skb_push(skb, sizeof(*rtap) + 8 + 4);
1189 rtap->oui[0] = HWSIM_RADIOTAP_OUI[0];
1190 rtap->oui[1] = HWSIM_RADIOTAP_OUI[1];
1191 rtap->oui[2] = HWSIM_RADIOTAP_OUI[2];
1192 rtap->subns = 127;
1193
1194 /*
1195 * Radiotap vendor namespaces can (and should) also be
1196 * split into fields by using the standard radiotap
1197 * presence bitmap mechanism. Use just BIT(0) here for
1198 * the presence bitmap.
1199 */
1200 rtap->present = BIT(0);
1201 /* We have 8 bytes of (dummy) data */
1202 rtap->len = 8;
1203 /* For testing, also require it to be aligned */
1204 rtap->align = 8;
1205 /* And also test that padding works, 4 bytes */
1206 rtap->pad = 4;
1207 /* push the data */
1208 memcpy(rtap->data, "ABCDEFGH", 8);
1209 /* make sure to clear padding, mac80211 doesn't */
1210 memset(rtap->data + 8, 0, 4);
1211
1212 IEEE80211_SKB_RXCB(skb)->flag |= RX_FLAG_RADIOTAP_VENDOR_DATA;
1213#endif
1214}
1215
1216static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
1217 struct sk_buff *skb,
1218 struct ieee80211_channel *chan)
1219{
1220 struct mac80211_hwsim_data *data = hw->priv, *data2;
1221 bool ack = false;
1222 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1223 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1224 struct ieee80211_rx_status rx_status;
1225 u64 now;
1226
1227 memset(&rx_status, 0, sizeof(rx_status));
1228 rx_status.flag |= RX_FLAG_MACTIME_START;
1229 rx_status.freq = chan->center_freq;
1230 rx_status.band = chan->band;
1231 if (info->control.rates[0].flags & IEEE80211_TX_RC_VHT_MCS) {
1232 rx_status.rate_idx =
1233 ieee80211_rate_get_vht_mcs(&info->control.rates[0]);
1234 rx_status.nss =
1235 ieee80211_rate_get_vht_nss(&info->control.rates[0]);
1236 rx_status.encoding = RX_ENC_VHT;
1237 } else {
1238 rx_status.rate_idx = info->control.rates[0].idx;
1239 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
1240 rx_status.encoding = RX_ENC_HT;
1241 }
1242 if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1243 rx_status.bw = RATE_INFO_BW_40;
1244 else if (info->control.rates[0].flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1245 rx_status.bw = RATE_INFO_BW_80;
1246 else if (info->control.rates[0].flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
1247 rx_status.bw = RATE_INFO_BW_160;
1248 else
1249 rx_status.bw = RATE_INFO_BW_20;
1250 if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
1251 rx_status.enc_flags |= RX_ENC_FLAG_SHORT_GI;
1252 /* TODO: simulate real signal strength (and optional packet loss) */
1253 rx_status.signal = -50;
1254 if (info->control.vif)
1255 rx_status.signal += info->control.vif->bss_conf.txpower;
1256
1257 if (data->ps != PS_DISABLED)
1258 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1259
1260 /* release the skb's source info */
1261 skb_orphan(skb);
1262 skb_dst_drop(skb);
1263 skb->mark = 0;
David Brazdil0f672f62019-12-10 10:32:29 +00001264 skb_ext_reset(skb);
1265 nf_reset_ct(skb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001266
1267 /*
1268 * Get absolute mactime here so all HWs RX at the "same time", and
1269 * absolute TX time for beacon mactime so the timestamp matches.
1270 * Giving beacons a different mactime than non-beacons looks messy, but
1271 * it helps the Toffset be exact and a ~10us mactime discrepancy
1272 * probably doesn't really matter.
1273 */
1274 if (ieee80211_is_beacon(hdr->frame_control) ||
David Brazdil0f672f62019-12-10 10:32:29 +00001275 ieee80211_is_probe_resp(hdr->frame_control)) {
1276 rx_status.boottime_ns = ktime_get_boottime_ns();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001277 now = data->abs_bcn_ts;
David Brazdil0f672f62019-12-10 10:32:29 +00001278 } else {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001279 now = mac80211_hwsim_get_tsf_raw();
David Brazdil0f672f62019-12-10 10:32:29 +00001280 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001281
1282 /* Copy skb to all enabled radios that are on the current frequency */
1283 spin_lock(&hwsim_radio_lock);
1284 list_for_each_entry(data2, &hwsim_radios, list) {
1285 struct sk_buff *nskb;
1286 struct tx_iter_data tx_iter_data = {
1287 .receive = false,
1288 .channel = chan,
1289 };
1290
1291 if (data == data2)
1292 continue;
1293
1294 if (!data2->started || (data2->idle && !data2->tmp_chan) ||
1295 !hwsim_ps_rx_ok(data2, skb))
1296 continue;
1297
1298 if (!(data->group & data2->group))
1299 continue;
1300
1301 if (data->netgroup != data2->netgroup)
1302 continue;
1303
1304 if (!hwsim_chans_compat(chan, data2->tmp_chan) &&
1305 !hwsim_chans_compat(chan, data2->channel)) {
1306 ieee80211_iterate_active_interfaces_atomic(
1307 data2->hw, IEEE80211_IFACE_ITER_NORMAL,
1308 mac80211_hwsim_tx_iter, &tx_iter_data);
1309 if (!tx_iter_data.receive)
1310 continue;
1311 }
1312
1313 /*
1314 * reserve some space for our vendor and the normal
1315 * radiotap header, since we're copying anyway
1316 */
1317 if (skb->len < PAGE_SIZE && paged_rx) {
1318 struct page *page = alloc_page(GFP_ATOMIC);
1319
1320 if (!page)
1321 continue;
1322
1323 nskb = dev_alloc_skb(128);
1324 if (!nskb) {
1325 __free_page(page);
1326 continue;
1327 }
1328
1329 memcpy(page_address(page), skb->data, skb->len);
1330 skb_add_rx_frag(nskb, 0, page, 0, skb->len, skb->len);
1331 } else {
1332 nskb = skb_copy(skb, GFP_ATOMIC);
1333 if (!nskb)
1334 continue;
1335 }
1336
1337 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
1338 ack = true;
1339
1340 rx_status.mactime = now + data2->tsf_offset;
1341
1342 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
1343
1344 mac80211_hwsim_add_vendor_rtap(nskb);
1345
1346 data2->rx_pkts++;
1347 data2->rx_bytes += nskb->len;
1348 ieee80211_rx_irqsafe(data2->hw, nskb);
1349 }
1350 spin_unlock(&hwsim_radio_lock);
1351
1352 return ack;
1353}
1354
1355static void mac80211_hwsim_tx(struct ieee80211_hw *hw,
1356 struct ieee80211_tx_control *control,
1357 struct sk_buff *skb)
1358{
1359 struct mac80211_hwsim_data *data = hw->priv;
1360 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
1361 struct ieee80211_hdr *hdr = (void *)skb->data;
1362 struct ieee80211_chanctx_conf *chanctx_conf;
1363 struct ieee80211_channel *channel;
1364 bool ack;
1365 u32 _portid;
1366
1367 if (WARN_ON(skb->len < 10)) {
1368 /* Should not happen; just a sanity check for addr1 use */
1369 ieee80211_free_txskb(hw, skb);
1370 return;
1371 }
1372
1373 if (!data->use_chanctx) {
1374 channel = data->channel;
1375 } else if (txi->hw_queue == 4) {
1376 channel = data->tmp_chan;
1377 } else {
1378 chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf);
1379 if (chanctx_conf)
1380 channel = chanctx_conf->def.chan;
1381 else
1382 channel = NULL;
1383 }
1384
1385 if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) {
1386 ieee80211_free_txskb(hw, skb);
1387 return;
1388 }
1389
1390 if (data->idle && !data->tmp_chan) {
1391 wiphy_dbg(hw->wiphy, "Trying to TX when idle - reject\n");
1392 ieee80211_free_txskb(hw, skb);
1393 return;
1394 }
1395
1396 if (txi->control.vif)
1397 hwsim_check_magic(txi->control.vif);
1398 if (control->sta)
1399 hwsim_check_sta_magic(control->sta);
1400
1401 if (ieee80211_hw_check(hw, SUPPORTS_RC_TABLE))
1402 ieee80211_get_tx_rates(txi->control.vif, control->sta, skb,
1403 txi->control.rates,
1404 ARRAY_SIZE(txi->control.rates));
1405
1406 if (skb->len >= 24 + 8 &&
1407 ieee80211_is_probe_resp(hdr->frame_control)) {
1408 /* fake header transmission time */
1409 struct ieee80211_mgmt *mgmt;
1410 struct ieee80211_rate *txrate;
1411 u64 ts;
1412
1413 mgmt = (struct ieee80211_mgmt *)skb->data;
1414 txrate = ieee80211_get_tx_rate(hw, txi);
1415 ts = mac80211_hwsim_get_tsf_raw();
1416 mgmt->u.probe_resp.timestamp =
1417 cpu_to_le64(ts + data->tsf_offset +
1418 24 * 8 * 10 / txrate->bitrate);
1419 }
1420
1421 mac80211_hwsim_monitor_rx(hw, skb, channel);
1422
1423 /* wmediumd mode check */
1424 _portid = READ_ONCE(data->wmediumd);
1425
1426 if (_portid)
1427 return mac80211_hwsim_tx_frame_nl(hw, skb, _portid);
1428
1429 /* NO wmediumd detected, perfect medium simulation */
1430 data->tx_pkts++;
1431 data->tx_bytes += skb->len;
1432 ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel);
1433
1434 if (ack && skb->len >= 16)
1435 mac80211_hwsim_monitor_ack(channel, hdr->addr2);
1436
1437 ieee80211_tx_info_clear_status(txi);
1438
1439 /* frame was transmitted at most favorable rate at first attempt */
1440 txi->control.rates[0].count = 1;
1441 txi->control.rates[1].idx = -1;
1442
1443 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
1444 txi->flags |= IEEE80211_TX_STAT_ACK;
1445 ieee80211_tx_status_irqsafe(hw, skb);
1446}
1447
1448
1449static int mac80211_hwsim_start(struct ieee80211_hw *hw)
1450{
1451 struct mac80211_hwsim_data *data = hw->priv;
1452 wiphy_dbg(hw->wiphy, "%s\n", __func__);
1453 data->started = true;
1454 return 0;
1455}
1456
1457
1458static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
1459{
1460 struct mac80211_hwsim_data *data = hw->priv;
Olivier Deprez0e641232021-09-23 10:07:05 +02001461
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001462 data->started = false;
David Brazdil0f672f62019-12-10 10:32:29 +00001463 hrtimer_cancel(&data->beacon_timer);
Olivier Deprez0e641232021-09-23 10:07:05 +02001464
1465 while (!skb_queue_empty(&data->pending))
1466 ieee80211_free_txskb(hw, skb_dequeue(&data->pending));
1467
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001468 wiphy_dbg(hw->wiphy, "%s\n", __func__);
1469}
1470
1471
1472static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
1473 struct ieee80211_vif *vif)
1474{
1475 wiphy_dbg(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
1476 __func__, ieee80211_vif_type_p2p(vif),
1477 vif->addr);
1478 hwsim_set_magic(vif);
1479
1480 vif->cab_queue = 0;
1481 vif->hw_queue[IEEE80211_AC_VO] = 0;
1482 vif->hw_queue[IEEE80211_AC_VI] = 1;
1483 vif->hw_queue[IEEE80211_AC_BE] = 2;
1484 vif->hw_queue[IEEE80211_AC_BK] = 3;
1485
1486 return 0;
1487}
1488
1489
1490static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
1491 struct ieee80211_vif *vif,
1492 enum nl80211_iftype newtype,
1493 bool newp2p)
1494{
1495 newtype = ieee80211_iftype_p2p(newtype, newp2p);
1496 wiphy_dbg(hw->wiphy,
1497 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
1498 __func__, ieee80211_vif_type_p2p(vif),
1499 newtype, vif->addr);
1500 hwsim_check_magic(vif);
1501
1502 /*
1503 * interface may change from non-AP to AP in
1504 * which case this needs to be set up again
1505 */
1506 vif->cab_queue = 0;
1507
1508 return 0;
1509}
1510
1511static void mac80211_hwsim_remove_interface(
1512 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
1513{
1514 wiphy_dbg(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
1515 __func__, ieee80211_vif_type_p2p(vif),
1516 vif->addr);
1517 hwsim_check_magic(vif);
1518 hwsim_clear_magic(vif);
1519}
1520
1521static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
1522 struct sk_buff *skb,
1523 struct ieee80211_channel *chan)
1524{
1525 struct mac80211_hwsim_data *data = hw->priv;
1526 u32 _pid = READ_ONCE(data->wmediumd);
1527
1528 if (ieee80211_hw_check(hw, SUPPORTS_RC_TABLE)) {
1529 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
1530 ieee80211_get_tx_rates(txi->control.vif, NULL, skb,
1531 txi->control.rates,
1532 ARRAY_SIZE(txi->control.rates));
1533 }
1534
1535 mac80211_hwsim_monitor_rx(hw, skb, chan);
1536
1537 if (_pid)
1538 return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);
1539
1540 mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
1541 dev_kfree_skb(skb);
1542}
1543
1544static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
1545 struct ieee80211_vif *vif)
1546{
1547 struct mac80211_hwsim_data *data = arg;
1548 struct ieee80211_hw *hw = data->hw;
1549 struct ieee80211_tx_info *info;
1550 struct ieee80211_rate *txrate;
1551 struct ieee80211_mgmt *mgmt;
1552 struct sk_buff *skb;
1553
1554 hwsim_check_magic(vif);
1555
1556 if (vif->type != NL80211_IFTYPE_AP &&
1557 vif->type != NL80211_IFTYPE_MESH_POINT &&
1558 vif->type != NL80211_IFTYPE_ADHOC)
1559 return;
1560
1561 skb = ieee80211_beacon_get(hw, vif);
1562 if (skb == NULL)
1563 return;
1564 info = IEEE80211_SKB_CB(skb);
1565 if (ieee80211_hw_check(hw, SUPPORTS_RC_TABLE))
1566 ieee80211_get_tx_rates(vif, NULL, skb,
1567 info->control.rates,
1568 ARRAY_SIZE(info->control.rates));
1569
1570 txrate = ieee80211_get_tx_rate(hw, info);
1571
1572 mgmt = (struct ieee80211_mgmt *) skb->data;
1573 /* fake header transmission time */
1574 data->abs_bcn_ts = mac80211_hwsim_get_tsf_raw();
1575 mgmt->u.beacon.timestamp = cpu_to_le64(data->abs_bcn_ts +
1576 data->tsf_offset +
1577 24 * 8 * 10 / txrate->bitrate);
1578
1579 mac80211_hwsim_tx_frame(hw, skb,
1580 rcu_dereference(vif->chanctx_conf)->def.chan);
1581
1582 if (vif->csa_active && ieee80211_csa_is_complete(vif))
1583 ieee80211_csa_finish(vif);
1584}
1585
1586static enum hrtimer_restart
1587mac80211_hwsim_beacon(struct hrtimer *timer)
1588{
1589 struct mac80211_hwsim_data *data =
David Brazdil0f672f62019-12-10 10:32:29 +00001590 container_of(timer, struct mac80211_hwsim_data, beacon_timer);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001591 struct ieee80211_hw *hw = data->hw;
1592 u64 bcn_int = data->beacon_int;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001593
1594 if (!data->started)
David Brazdil0f672f62019-12-10 10:32:29 +00001595 return HRTIMER_NORESTART;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001596
1597 ieee80211_iterate_active_interfaces_atomic(
1598 hw, IEEE80211_IFACE_ITER_NORMAL,
1599 mac80211_hwsim_beacon_tx, data);
1600
1601 /* beacon at new TBTT + beacon interval */
1602 if (data->bcn_delta) {
1603 bcn_int -= data->bcn_delta;
1604 data->bcn_delta = 0;
1605 }
David Brazdil0f672f62019-12-10 10:32:29 +00001606 hrtimer_forward(&data->beacon_timer, hrtimer_get_expires(timer),
1607 ns_to_ktime(bcn_int * NSEC_PER_USEC));
1608 return HRTIMER_RESTART;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001609}
1610
1611static const char * const hwsim_chanwidths[] = {
1612 [NL80211_CHAN_WIDTH_20_NOHT] = "noht",
1613 [NL80211_CHAN_WIDTH_20] = "ht20",
1614 [NL80211_CHAN_WIDTH_40] = "ht40",
1615 [NL80211_CHAN_WIDTH_80] = "vht80",
1616 [NL80211_CHAN_WIDTH_80P80] = "vht80p80",
1617 [NL80211_CHAN_WIDTH_160] = "vht160",
1618};
1619
1620static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
1621{
1622 struct mac80211_hwsim_data *data = hw->priv;
1623 struct ieee80211_conf *conf = &hw->conf;
1624 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
1625 [IEEE80211_SMPS_AUTOMATIC] = "auto",
1626 [IEEE80211_SMPS_OFF] = "off",
1627 [IEEE80211_SMPS_STATIC] = "static",
1628 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
1629 };
1630 int idx;
1631
1632 if (conf->chandef.chan)
1633 wiphy_dbg(hw->wiphy,
1634 "%s (freq=%d(%d - %d)/%s idle=%d ps=%d smps=%s)\n",
1635 __func__,
1636 conf->chandef.chan->center_freq,
1637 conf->chandef.center_freq1,
1638 conf->chandef.center_freq2,
1639 hwsim_chanwidths[conf->chandef.width],
1640 !!(conf->flags & IEEE80211_CONF_IDLE),
1641 !!(conf->flags & IEEE80211_CONF_PS),
1642 smps_modes[conf->smps_mode]);
1643 else
1644 wiphy_dbg(hw->wiphy,
1645 "%s (freq=0 idle=%d ps=%d smps=%s)\n",
1646 __func__,
1647 !!(conf->flags & IEEE80211_CONF_IDLE),
1648 !!(conf->flags & IEEE80211_CONF_PS),
1649 smps_modes[conf->smps_mode]);
1650
1651 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
1652
1653 WARN_ON(conf->chandef.chan && data->use_chanctx);
1654
1655 mutex_lock(&data->mutex);
1656 if (data->scanning && conf->chandef.chan) {
1657 for (idx = 0; idx < ARRAY_SIZE(data->survey_data); idx++) {
1658 if (data->survey_data[idx].channel == data->channel) {
1659 data->survey_data[idx].start =
1660 data->survey_data[idx].next_start;
1661 data->survey_data[idx].end = jiffies;
1662 break;
1663 }
1664 }
1665
1666 data->channel = conf->chandef.chan;
1667
1668 for (idx = 0; idx < ARRAY_SIZE(data->survey_data); idx++) {
1669 if (data->survey_data[idx].channel &&
1670 data->survey_data[idx].channel != data->channel)
1671 continue;
1672 data->survey_data[idx].channel = data->channel;
1673 data->survey_data[idx].next_start = jiffies;
1674 break;
1675 }
1676 } else {
1677 data->channel = conf->chandef.chan;
1678 }
1679 mutex_unlock(&data->mutex);
1680
1681 if (!data->started || !data->beacon_int)
David Brazdil0f672f62019-12-10 10:32:29 +00001682 hrtimer_cancel(&data->beacon_timer);
1683 else if (!hrtimer_is_queued(&data->beacon_timer)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001684 u64 tsf = mac80211_hwsim_get_tsf(hw, NULL);
1685 u32 bcn_int = data->beacon_int;
1686 u64 until_tbtt = bcn_int - do_div(tsf, bcn_int);
1687
David Brazdil0f672f62019-12-10 10:32:29 +00001688 hrtimer_start(&data->beacon_timer,
1689 ns_to_ktime(until_tbtt * NSEC_PER_USEC),
1690 HRTIMER_MODE_REL_SOFT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001691 }
1692
1693 return 0;
1694}
1695
1696
1697static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
1698 unsigned int changed_flags,
1699 unsigned int *total_flags,u64 multicast)
1700{
1701 struct mac80211_hwsim_data *data = hw->priv;
1702
1703 wiphy_dbg(hw->wiphy, "%s\n", __func__);
1704
1705 data->rx_filter = 0;
1706 if (*total_flags & FIF_ALLMULTI)
1707 data->rx_filter |= FIF_ALLMULTI;
1708
1709 *total_flags = data->rx_filter;
1710}
1711
1712static void mac80211_hwsim_bcn_en_iter(void *data, u8 *mac,
1713 struct ieee80211_vif *vif)
1714{
1715 unsigned int *count = data;
1716 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
1717
1718 if (vp->bcn_en)
1719 (*count)++;
1720}
1721
1722static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
1723 struct ieee80211_vif *vif,
1724 struct ieee80211_bss_conf *info,
1725 u32 changed)
1726{
1727 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
1728 struct mac80211_hwsim_data *data = hw->priv;
1729
1730 hwsim_check_magic(vif);
1731
1732 wiphy_dbg(hw->wiphy, "%s(changed=0x%x vif->addr=%pM)\n",
1733 __func__, changed, vif->addr);
1734
1735 if (changed & BSS_CHANGED_BSSID) {
1736 wiphy_dbg(hw->wiphy, "%s: BSSID changed: %pM\n",
1737 __func__, info->bssid);
1738 memcpy(vp->bssid, info->bssid, ETH_ALEN);
1739 }
1740
1741 if (changed & BSS_CHANGED_ASSOC) {
1742 wiphy_dbg(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
1743 info->assoc, info->aid);
1744 vp->assoc = info->assoc;
1745 vp->aid = info->aid;
1746 }
1747
1748 if (changed & BSS_CHANGED_BEACON_ENABLED) {
1749 wiphy_dbg(hw->wiphy, " BCN EN: %d (BI=%u)\n",
1750 info->enable_beacon, info->beacon_int);
1751 vp->bcn_en = info->enable_beacon;
1752 if (data->started &&
David Brazdil0f672f62019-12-10 10:32:29 +00001753 !hrtimer_is_queued(&data->beacon_timer) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001754 info->enable_beacon) {
1755 u64 tsf, until_tbtt;
1756 u32 bcn_int;
1757 data->beacon_int = info->beacon_int * 1024;
1758 tsf = mac80211_hwsim_get_tsf(hw, vif);
1759 bcn_int = data->beacon_int;
1760 until_tbtt = bcn_int - do_div(tsf, bcn_int);
David Brazdil0f672f62019-12-10 10:32:29 +00001761
1762 hrtimer_start(&data->beacon_timer,
1763 ns_to_ktime(until_tbtt * NSEC_PER_USEC),
1764 HRTIMER_MODE_REL_SOFT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001765 } else if (!info->enable_beacon) {
1766 unsigned int count = 0;
1767 ieee80211_iterate_active_interfaces_atomic(
1768 data->hw, IEEE80211_IFACE_ITER_NORMAL,
1769 mac80211_hwsim_bcn_en_iter, &count);
1770 wiphy_dbg(hw->wiphy, " beaconing vifs remaining: %u",
1771 count);
1772 if (count == 0) {
David Brazdil0f672f62019-12-10 10:32:29 +00001773 hrtimer_cancel(&data->beacon_timer);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001774 data->beacon_int = 0;
1775 }
1776 }
1777 }
1778
1779 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
1780 wiphy_dbg(hw->wiphy, " ERP_CTS_PROT: %d\n",
1781 info->use_cts_prot);
1782 }
1783
1784 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
1785 wiphy_dbg(hw->wiphy, " ERP_PREAMBLE: %d\n",
1786 info->use_short_preamble);
1787 }
1788
1789 if (changed & BSS_CHANGED_ERP_SLOT) {
1790 wiphy_dbg(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
1791 }
1792
1793 if (changed & BSS_CHANGED_HT) {
1794 wiphy_dbg(hw->wiphy, " HT: op_mode=0x%x\n",
1795 info->ht_operation_mode);
1796 }
1797
1798 if (changed & BSS_CHANGED_BASIC_RATES) {
1799 wiphy_dbg(hw->wiphy, " BASIC_RATES: 0x%llx\n",
1800 (unsigned long long) info->basic_rates);
1801 }
1802
1803 if (changed & BSS_CHANGED_TXPOWER)
1804 wiphy_dbg(hw->wiphy, " TX Power: %d dBm\n", info->txpower);
1805}
1806
1807static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
1808 struct ieee80211_vif *vif,
1809 struct ieee80211_sta *sta)
1810{
1811 hwsim_check_magic(vif);
1812 hwsim_set_sta_magic(sta);
1813
1814 return 0;
1815}
1816
1817static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
1818 struct ieee80211_vif *vif,
1819 struct ieee80211_sta *sta)
1820{
1821 hwsim_check_magic(vif);
1822 hwsim_clear_sta_magic(sta);
1823
1824 return 0;
1825}
1826
1827static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
1828 struct ieee80211_vif *vif,
1829 enum sta_notify_cmd cmd,
1830 struct ieee80211_sta *sta)
1831{
1832 hwsim_check_magic(vif);
1833
1834 switch (cmd) {
1835 case STA_NOTIFY_SLEEP:
1836 case STA_NOTIFY_AWAKE:
1837 /* TODO: make good use of these flags */
1838 break;
1839 default:
1840 WARN(1, "Invalid sta notify: %d\n", cmd);
1841 break;
1842 }
1843}
1844
1845static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
1846 struct ieee80211_sta *sta,
1847 bool set)
1848{
1849 hwsim_check_sta_magic(sta);
1850 return 0;
1851}
1852
1853static int mac80211_hwsim_conf_tx(
1854 struct ieee80211_hw *hw,
1855 struct ieee80211_vif *vif, u16 queue,
1856 const struct ieee80211_tx_queue_params *params)
1857{
1858 wiphy_dbg(hw->wiphy,
1859 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
1860 __func__, queue,
1861 params->txop, params->cw_min,
1862 params->cw_max, params->aifs);
1863 return 0;
1864}
1865
1866static int mac80211_hwsim_get_survey(struct ieee80211_hw *hw, int idx,
1867 struct survey_info *survey)
1868{
1869 struct mac80211_hwsim_data *hwsim = hw->priv;
1870
1871 if (idx < 0 || idx >= ARRAY_SIZE(hwsim->survey_data))
1872 return -ENOENT;
1873
1874 mutex_lock(&hwsim->mutex);
1875 survey->channel = hwsim->survey_data[idx].channel;
1876 if (!survey->channel) {
1877 mutex_unlock(&hwsim->mutex);
1878 return -ENOENT;
1879 }
1880
1881 /*
1882 * Magically conjured dummy values --- this is only ok for simulated hardware.
1883 *
1884 * A real driver which cannot determine real values noise MUST NOT
1885 * report any, especially not a magically conjured ones :-)
1886 */
1887 survey->filled = SURVEY_INFO_NOISE_DBM |
1888 SURVEY_INFO_TIME |
1889 SURVEY_INFO_TIME_BUSY;
1890 survey->noise = -92;
1891 survey->time =
1892 jiffies_to_msecs(hwsim->survey_data[idx].end -
1893 hwsim->survey_data[idx].start);
1894 /* report 12.5% of channel time is used */
1895 survey->time_busy = survey->time/8;
1896 mutex_unlock(&hwsim->mutex);
1897
1898 return 0;
1899}
1900
1901#ifdef CONFIG_NL80211_TESTMODE
1902/*
1903 * This section contains example code for using netlink
1904 * attributes with the testmode command in nl80211.
1905 */
1906
1907/* These enums need to be kept in sync with userspace */
1908enum hwsim_testmode_attr {
1909 __HWSIM_TM_ATTR_INVALID = 0,
1910 HWSIM_TM_ATTR_CMD = 1,
1911 HWSIM_TM_ATTR_PS = 2,
1912
1913 /* keep last */
1914 __HWSIM_TM_ATTR_AFTER_LAST,
1915 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
1916};
1917
1918enum hwsim_testmode_cmd {
1919 HWSIM_TM_CMD_SET_PS = 0,
1920 HWSIM_TM_CMD_GET_PS = 1,
1921 HWSIM_TM_CMD_STOP_QUEUES = 2,
1922 HWSIM_TM_CMD_WAKE_QUEUES = 3,
1923};
1924
1925static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
1926 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
1927 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
1928};
1929
1930static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
1931 struct ieee80211_vif *vif,
1932 void *data, int len)
1933{
1934 struct mac80211_hwsim_data *hwsim = hw->priv;
1935 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
1936 struct sk_buff *skb;
1937 int err, ps;
1938
David Brazdil0f672f62019-12-10 10:32:29 +00001939 err = nla_parse_deprecated(tb, HWSIM_TM_ATTR_MAX, data, len,
1940 hwsim_testmode_policy, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001941 if (err)
1942 return err;
1943
1944 if (!tb[HWSIM_TM_ATTR_CMD])
1945 return -EINVAL;
1946
1947 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
1948 case HWSIM_TM_CMD_SET_PS:
1949 if (!tb[HWSIM_TM_ATTR_PS])
1950 return -EINVAL;
1951 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
1952 return hwsim_fops_ps_write(hwsim, ps);
1953 case HWSIM_TM_CMD_GET_PS:
1954 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
1955 nla_total_size(sizeof(u32)));
1956 if (!skb)
1957 return -ENOMEM;
1958 if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps))
1959 goto nla_put_failure;
1960 return cfg80211_testmode_reply(skb);
1961 case HWSIM_TM_CMD_STOP_QUEUES:
1962 ieee80211_stop_queues(hw);
1963 return 0;
1964 case HWSIM_TM_CMD_WAKE_QUEUES:
1965 ieee80211_wake_queues(hw);
1966 return 0;
1967 default:
1968 return -EOPNOTSUPP;
1969 }
1970
1971 nla_put_failure:
1972 kfree_skb(skb);
1973 return -ENOBUFS;
1974}
1975#endif
1976
1977static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
1978 struct ieee80211_vif *vif,
1979 struct ieee80211_ampdu_params *params)
1980{
1981 struct ieee80211_sta *sta = params->sta;
1982 enum ieee80211_ampdu_mlme_action action = params->action;
1983 u16 tid = params->tid;
1984
1985 switch (action) {
1986 case IEEE80211_AMPDU_TX_START:
1987 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1988 break;
1989 case IEEE80211_AMPDU_TX_STOP_CONT:
1990 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1991 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
1992 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1993 break;
1994 case IEEE80211_AMPDU_TX_OPERATIONAL:
1995 break;
1996 case IEEE80211_AMPDU_RX_START:
1997 case IEEE80211_AMPDU_RX_STOP:
1998 break;
1999 default:
2000 return -EOPNOTSUPP;
2001 }
2002
2003 return 0;
2004}
2005
2006static void mac80211_hwsim_flush(struct ieee80211_hw *hw,
2007 struct ieee80211_vif *vif,
2008 u32 queues, bool drop)
2009{
2010 /* Not implemented, queues only on kernel side */
2011}
2012
2013static void hw_scan_work(struct work_struct *work)
2014{
2015 struct mac80211_hwsim_data *hwsim =
2016 container_of(work, struct mac80211_hwsim_data, hw_scan.work);
2017 struct cfg80211_scan_request *req = hwsim->hw_scan_request;
2018 int dwell, i;
2019
2020 mutex_lock(&hwsim->mutex);
2021 if (hwsim->scan_chan_idx >= req->n_channels) {
2022 struct cfg80211_scan_info info = {
2023 .aborted = false,
2024 };
2025
2026 wiphy_dbg(hwsim->hw->wiphy, "hw scan complete\n");
2027 ieee80211_scan_completed(hwsim->hw, &info);
2028 hwsim->hw_scan_request = NULL;
2029 hwsim->hw_scan_vif = NULL;
2030 hwsim->tmp_chan = NULL;
2031 mutex_unlock(&hwsim->mutex);
2032 return;
2033 }
2034
2035 wiphy_dbg(hwsim->hw->wiphy, "hw scan %d MHz\n",
2036 req->channels[hwsim->scan_chan_idx]->center_freq);
2037
2038 hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx];
2039 if (hwsim->tmp_chan->flags & (IEEE80211_CHAN_NO_IR |
2040 IEEE80211_CHAN_RADAR) ||
2041 !req->n_ssids) {
2042 dwell = 120;
2043 } else {
2044 dwell = 30;
2045 /* send probes */
2046 for (i = 0; i < req->n_ssids; i++) {
2047 struct sk_buff *probe;
2048 struct ieee80211_mgmt *mgmt;
2049
2050 probe = ieee80211_probereq_get(hwsim->hw,
2051 hwsim->scan_addr,
2052 req->ssids[i].ssid,
2053 req->ssids[i].ssid_len,
2054 req->ie_len);
2055 if (!probe)
2056 continue;
2057
2058 mgmt = (struct ieee80211_mgmt *) probe->data;
2059 memcpy(mgmt->da, req->bssid, ETH_ALEN);
2060 memcpy(mgmt->bssid, req->bssid, ETH_ALEN);
2061
2062 if (req->ie_len)
2063 skb_put_data(probe, req->ie, req->ie_len);
2064
2065 local_bh_disable();
2066 mac80211_hwsim_tx_frame(hwsim->hw, probe,
2067 hwsim->tmp_chan);
2068 local_bh_enable();
2069 }
2070 }
2071 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan,
2072 msecs_to_jiffies(dwell));
2073 hwsim->survey_data[hwsim->scan_chan_idx].channel = hwsim->tmp_chan;
2074 hwsim->survey_data[hwsim->scan_chan_idx].start = jiffies;
2075 hwsim->survey_data[hwsim->scan_chan_idx].end =
2076 jiffies + msecs_to_jiffies(dwell);
2077 hwsim->scan_chan_idx++;
2078 mutex_unlock(&hwsim->mutex);
2079}
2080
2081static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
2082 struct ieee80211_vif *vif,
2083 struct ieee80211_scan_request *hw_req)
2084{
2085 struct mac80211_hwsim_data *hwsim = hw->priv;
2086 struct cfg80211_scan_request *req = &hw_req->req;
2087
2088 mutex_lock(&hwsim->mutex);
2089 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
2090 mutex_unlock(&hwsim->mutex);
2091 return -EBUSY;
2092 }
2093 hwsim->hw_scan_request = req;
2094 hwsim->hw_scan_vif = vif;
2095 hwsim->scan_chan_idx = 0;
2096 if (req->flags & NL80211_SCAN_FLAG_RANDOM_ADDR)
2097 get_random_mask_addr(hwsim->scan_addr,
2098 hw_req->req.mac_addr,
2099 hw_req->req.mac_addr_mask);
2100 else
2101 memcpy(hwsim->scan_addr, vif->addr, ETH_ALEN);
2102 memset(hwsim->survey_data, 0, sizeof(hwsim->survey_data));
2103 mutex_unlock(&hwsim->mutex);
2104
2105 wiphy_dbg(hw->wiphy, "hwsim hw_scan request\n");
2106
2107 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0);
2108
2109 return 0;
2110}
2111
2112static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw,
2113 struct ieee80211_vif *vif)
2114{
2115 struct mac80211_hwsim_data *hwsim = hw->priv;
2116 struct cfg80211_scan_info info = {
2117 .aborted = true,
2118 };
2119
2120 wiphy_dbg(hw->wiphy, "hwsim cancel_hw_scan\n");
2121
2122 cancel_delayed_work_sync(&hwsim->hw_scan);
2123
2124 mutex_lock(&hwsim->mutex);
2125 ieee80211_scan_completed(hwsim->hw, &info);
2126 hwsim->tmp_chan = NULL;
2127 hwsim->hw_scan_request = NULL;
2128 hwsim->hw_scan_vif = NULL;
2129 mutex_unlock(&hwsim->mutex);
2130}
2131
2132static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw,
2133 struct ieee80211_vif *vif,
2134 const u8 *mac_addr)
2135{
2136 struct mac80211_hwsim_data *hwsim = hw->priv;
2137
2138 mutex_lock(&hwsim->mutex);
2139
2140 if (hwsim->scanning) {
2141 pr_debug("two hwsim sw_scans detected!\n");
2142 goto out;
2143 }
2144
2145 pr_debug("hwsim sw_scan request, prepping stuff\n");
2146
2147 memcpy(hwsim->scan_addr, mac_addr, ETH_ALEN);
2148 hwsim->scanning = true;
2149 memset(hwsim->survey_data, 0, sizeof(hwsim->survey_data));
2150
2151out:
2152 mutex_unlock(&hwsim->mutex);
2153}
2154
2155static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw,
2156 struct ieee80211_vif *vif)
2157{
2158 struct mac80211_hwsim_data *hwsim = hw->priv;
2159
2160 mutex_lock(&hwsim->mutex);
2161
2162 pr_debug("hwsim sw_scan_complete\n");
2163 hwsim->scanning = false;
2164 eth_zero_addr(hwsim->scan_addr);
2165
2166 mutex_unlock(&hwsim->mutex);
2167}
2168
2169static void hw_roc_start(struct work_struct *work)
2170{
2171 struct mac80211_hwsim_data *hwsim =
2172 container_of(work, struct mac80211_hwsim_data, roc_start.work);
2173
2174 mutex_lock(&hwsim->mutex);
2175
2176 wiphy_dbg(hwsim->hw->wiphy, "hwsim ROC begins\n");
2177 hwsim->tmp_chan = hwsim->roc_chan;
2178 ieee80211_ready_on_channel(hwsim->hw);
2179
2180 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->roc_done,
2181 msecs_to_jiffies(hwsim->roc_duration));
2182
2183 mutex_unlock(&hwsim->mutex);
2184}
2185
2186static void hw_roc_done(struct work_struct *work)
2187{
2188 struct mac80211_hwsim_data *hwsim =
2189 container_of(work, struct mac80211_hwsim_data, roc_done.work);
2190
2191 mutex_lock(&hwsim->mutex);
2192 ieee80211_remain_on_channel_expired(hwsim->hw);
2193 hwsim->tmp_chan = NULL;
2194 mutex_unlock(&hwsim->mutex);
2195
2196 wiphy_dbg(hwsim->hw->wiphy, "hwsim ROC expired\n");
2197}
2198
2199static int mac80211_hwsim_roc(struct ieee80211_hw *hw,
2200 struct ieee80211_vif *vif,
2201 struct ieee80211_channel *chan,
2202 int duration,
2203 enum ieee80211_roc_type type)
2204{
2205 struct mac80211_hwsim_data *hwsim = hw->priv;
2206
2207 mutex_lock(&hwsim->mutex);
2208 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
2209 mutex_unlock(&hwsim->mutex);
2210 return -EBUSY;
2211 }
2212
2213 hwsim->roc_chan = chan;
2214 hwsim->roc_duration = duration;
2215 mutex_unlock(&hwsim->mutex);
2216
2217 wiphy_dbg(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n",
2218 chan->center_freq, duration);
2219 ieee80211_queue_delayed_work(hw, &hwsim->roc_start, HZ/50);
2220
2221 return 0;
2222}
2223
David Brazdil0f672f62019-12-10 10:32:29 +00002224static int mac80211_hwsim_croc(struct ieee80211_hw *hw,
2225 struct ieee80211_vif *vif)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002226{
2227 struct mac80211_hwsim_data *hwsim = hw->priv;
2228
2229 cancel_delayed_work_sync(&hwsim->roc_start);
2230 cancel_delayed_work_sync(&hwsim->roc_done);
2231
2232 mutex_lock(&hwsim->mutex);
2233 hwsim->tmp_chan = NULL;
2234 mutex_unlock(&hwsim->mutex);
2235
2236 wiphy_dbg(hw->wiphy, "hwsim ROC canceled\n");
2237
2238 return 0;
2239}
2240
2241static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw,
2242 struct ieee80211_chanctx_conf *ctx)
2243{
2244 hwsim_set_chanctx_magic(ctx);
2245 wiphy_dbg(hw->wiphy,
2246 "add channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
2247 ctx->def.chan->center_freq, ctx->def.width,
2248 ctx->def.center_freq1, ctx->def.center_freq2);
2249 return 0;
2250}
2251
2252static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw,
2253 struct ieee80211_chanctx_conf *ctx)
2254{
2255 wiphy_dbg(hw->wiphy,
2256 "remove channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
2257 ctx->def.chan->center_freq, ctx->def.width,
2258 ctx->def.center_freq1, ctx->def.center_freq2);
2259 hwsim_check_chanctx_magic(ctx);
2260 hwsim_clear_chanctx_magic(ctx);
2261}
2262
2263static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw,
2264 struct ieee80211_chanctx_conf *ctx,
2265 u32 changed)
2266{
2267 hwsim_check_chanctx_magic(ctx);
2268 wiphy_dbg(hw->wiphy,
2269 "change channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
2270 ctx->def.chan->center_freq, ctx->def.width,
2271 ctx->def.center_freq1, ctx->def.center_freq2);
2272}
2273
2274static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw,
2275 struct ieee80211_vif *vif,
2276 struct ieee80211_chanctx_conf *ctx)
2277{
2278 hwsim_check_magic(vif);
2279 hwsim_check_chanctx_magic(ctx);
2280
2281 return 0;
2282}
2283
2284static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw,
2285 struct ieee80211_vif *vif,
2286 struct ieee80211_chanctx_conf *ctx)
2287{
2288 hwsim_check_magic(vif);
2289 hwsim_check_chanctx_magic(ctx);
2290}
2291
2292static const char mac80211_hwsim_gstrings_stats[][ETH_GSTRING_LEN] = {
2293 "tx_pkts_nic",
2294 "tx_bytes_nic",
2295 "rx_pkts_nic",
2296 "rx_bytes_nic",
2297 "d_tx_dropped",
2298 "d_tx_failed",
2299 "d_ps_mode",
2300 "d_group",
2301};
2302
2303#define MAC80211_HWSIM_SSTATS_LEN ARRAY_SIZE(mac80211_hwsim_gstrings_stats)
2304
2305static void mac80211_hwsim_get_et_strings(struct ieee80211_hw *hw,
2306 struct ieee80211_vif *vif,
2307 u32 sset, u8 *data)
2308{
2309 if (sset == ETH_SS_STATS)
2310 memcpy(data, *mac80211_hwsim_gstrings_stats,
2311 sizeof(mac80211_hwsim_gstrings_stats));
2312}
2313
2314static int mac80211_hwsim_get_et_sset_count(struct ieee80211_hw *hw,
2315 struct ieee80211_vif *vif, int sset)
2316{
2317 if (sset == ETH_SS_STATS)
2318 return MAC80211_HWSIM_SSTATS_LEN;
2319 return 0;
2320}
2321
2322static void mac80211_hwsim_get_et_stats(struct ieee80211_hw *hw,
2323 struct ieee80211_vif *vif,
2324 struct ethtool_stats *stats, u64 *data)
2325{
2326 struct mac80211_hwsim_data *ar = hw->priv;
2327 int i = 0;
2328
2329 data[i++] = ar->tx_pkts;
2330 data[i++] = ar->tx_bytes;
2331 data[i++] = ar->rx_pkts;
2332 data[i++] = ar->rx_bytes;
2333 data[i++] = ar->tx_dropped;
2334 data[i++] = ar->tx_failed;
2335 data[i++] = ar->ps;
2336 data[i++] = ar->group;
2337
2338 WARN_ON(i != MAC80211_HWSIM_SSTATS_LEN);
2339}
2340
2341#define HWSIM_COMMON_OPS \
2342 .tx = mac80211_hwsim_tx, \
2343 .start = mac80211_hwsim_start, \
2344 .stop = mac80211_hwsim_stop, \
2345 .add_interface = mac80211_hwsim_add_interface, \
2346 .change_interface = mac80211_hwsim_change_interface, \
2347 .remove_interface = mac80211_hwsim_remove_interface, \
2348 .config = mac80211_hwsim_config, \
2349 .configure_filter = mac80211_hwsim_configure_filter, \
2350 .bss_info_changed = mac80211_hwsim_bss_info_changed, \
2351 .sta_add = mac80211_hwsim_sta_add, \
2352 .sta_remove = mac80211_hwsim_sta_remove, \
2353 .sta_notify = mac80211_hwsim_sta_notify, \
2354 .set_tim = mac80211_hwsim_set_tim, \
2355 .conf_tx = mac80211_hwsim_conf_tx, \
2356 .get_survey = mac80211_hwsim_get_survey, \
2357 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd) \
2358 .ampdu_action = mac80211_hwsim_ampdu_action, \
2359 .flush = mac80211_hwsim_flush, \
2360 .get_tsf = mac80211_hwsim_get_tsf, \
2361 .set_tsf = mac80211_hwsim_set_tsf, \
2362 .get_et_sset_count = mac80211_hwsim_get_et_sset_count, \
2363 .get_et_stats = mac80211_hwsim_get_et_stats, \
2364 .get_et_strings = mac80211_hwsim_get_et_strings,
2365
2366static const struct ieee80211_ops mac80211_hwsim_ops = {
2367 HWSIM_COMMON_OPS
2368 .sw_scan_start = mac80211_hwsim_sw_scan,
2369 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
2370};
2371
2372static const struct ieee80211_ops mac80211_hwsim_mchan_ops = {
2373 HWSIM_COMMON_OPS
2374 .hw_scan = mac80211_hwsim_hw_scan,
2375 .cancel_hw_scan = mac80211_hwsim_cancel_hw_scan,
2376 .sw_scan_start = NULL,
2377 .sw_scan_complete = NULL,
2378 .remain_on_channel = mac80211_hwsim_roc,
2379 .cancel_remain_on_channel = mac80211_hwsim_croc,
2380 .add_chanctx = mac80211_hwsim_add_chanctx,
2381 .remove_chanctx = mac80211_hwsim_remove_chanctx,
2382 .change_chanctx = mac80211_hwsim_change_chanctx,
2383 .assign_vif_chanctx = mac80211_hwsim_assign_vif_chanctx,
2384 .unassign_vif_chanctx = mac80211_hwsim_unassign_vif_chanctx,
2385};
2386
2387struct hwsim_new_radio_params {
2388 unsigned int channels;
2389 const char *reg_alpha2;
2390 const struct ieee80211_regdomain *regd;
2391 bool reg_strict;
2392 bool p2p_device;
2393 bool use_chanctx;
2394 bool destroy_on_close;
2395 const char *hwname;
2396 bool no_vif;
2397 const u8 *perm_addr;
David Brazdil0f672f62019-12-10 10:32:29 +00002398 u32 iftypes;
2399 u32 *ciphers;
2400 u8 n_ciphers;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002401};
2402
2403static void hwsim_mcast_config_msg(struct sk_buff *mcast_skb,
2404 struct genl_info *info)
2405{
2406 if (info)
2407 genl_notify(&hwsim_genl_family, mcast_skb, info,
2408 HWSIM_MCGRP_CONFIG, GFP_KERNEL);
2409 else
2410 genlmsg_multicast(&hwsim_genl_family, mcast_skb, 0,
2411 HWSIM_MCGRP_CONFIG, GFP_KERNEL);
2412}
2413
2414static int append_radio_msg(struct sk_buff *skb, int id,
2415 struct hwsim_new_radio_params *param)
2416{
2417 int ret;
2418
2419 ret = nla_put_u32(skb, HWSIM_ATTR_RADIO_ID, id);
2420 if (ret < 0)
2421 return ret;
2422
2423 if (param->channels) {
2424 ret = nla_put_u32(skb, HWSIM_ATTR_CHANNELS, param->channels);
2425 if (ret < 0)
2426 return ret;
2427 }
2428
2429 if (param->reg_alpha2) {
2430 ret = nla_put(skb, HWSIM_ATTR_REG_HINT_ALPHA2, 2,
2431 param->reg_alpha2);
2432 if (ret < 0)
2433 return ret;
2434 }
2435
2436 if (param->regd) {
2437 int i;
2438
2439 for (i = 0; i < ARRAY_SIZE(hwsim_world_regdom_custom); i++) {
2440 if (hwsim_world_regdom_custom[i] != param->regd)
2441 continue;
2442
2443 ret = nla_put_u32(skb, HWSIM_ATTR_REG_CUSTOM_REG, i);
2444 if (ret < 0)
2445 return ret;
2446 break;
2447 }
2448 }
2449
2450 if (param->reg_strict) {
2451 ret = nla_put_flag(skb, HWSIM_ATTR_REG_STRICT_REG);
2452 if (ret < 0)
2453 return ret;
2454 }
2455
2456 if (param->p2p_device) {
2457 ret = nla_put_flag(skb, HWSIM_ATTR_SUPPORT_P2P_DEVICE);
2458 if (ret < 0)
2459 return ret;
2460 }
2461
2462 if (param->use_chanctx) {
2463 ret = nla_put_flag(skb, HWSIM_ATTR_USE_CHANCTX);
2464 if (ret < 0)
2465 return ret;
2466 }
2467
2468 if (param->hwname) {
2469 ret = nla_put(skb, HWSIM_ATTR_RADIO_NAME,
2470 strlen(param->hwname), param->hwname);
2471 if (ret < 0)
2472 return ret;
2473 }
2474
2475 return 0;
2476}
2477
2478static void hwsim_mcast_new_radio(int id, struct genl_info *info,
2479 struct hwsim_new_radio_params *param)
2480{
2481 struct sk_buff *mcast_skb;
2482 void *data;
2483
2484 mcast_skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
2485 if (!mcast_skb)
2486 return;
2487
2488 data = genlmsg_put(mcast_skb, 0, 0, &hwsim_genl_family, 0,
2489 HWSIM_CMD_NEW_RADIO);
2490 if (!data)
2491 goto out_err;
2492
2493 if (append_radio_msg(mcast_skb, id, param) < 0)
2494 goto out_err;
2495
2496 genlmsg_end(mcast_skb, data);
2497
2498 hwsim_mcast_config_msg(mcast_skb, info);
2499 return;
2500
2501out_err:
2502 nlmsg_free(mcast_skb);
2503}
2504
David Brazdil0f672f62019-12-10 10:32:29 +00002505static const struct ieee80211_sband_iftype_data he_capa_2ghz[] = {
2506 {
2507 /* TODO: should we support other types, e.g., P2P?*/
2508 .types_mask = BIT(NL80211_IFTYPE_STATION) |
2509 BIT(NL80211_IFTYPE_AP),
2510 .he_cap = {
2511 .has_he = true,
2512 .he_cap_elem = {
2513 .mac_cap_info[0] =
2514 IEEE80211_HE_MAC_CAP0_HTC_HE,
2515 .mac_cap_info[1] =
2516 IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US |
2517 IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8,
2518 .mac_cap_info[2] =
2519 IEEE80211_HE_MAC_CAP2_BSR |
2520 IEEE80211_HE_MAC_CAP2_MU_CASCADING |
2521 IEEE80211_HE_MAC_CAP2_ACK_EN,
2522 .mac_cap_info[3] =
2523 IEEE80211_HE_MAC_CAP3_OMI_CONTROL |
2524 IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2,
2525 .mac_cap_info[4] = IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU,
2526 .phy_cap_info[1] =
2527 IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK |
2528 IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A |
2529 IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD |
2530 IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS,
2531 .phy_cap_info[2] =
2532 IEEE80211_HE_PHY_CAP2_NDP_4x_LTF_AND_3_2US |
2533 IEEE80211_HE_PHY_CAP2_STBC_TX_UNDER_80MHZ |
2534 IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ |
2535 IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO |
2536 IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002537
David Brazdil0f672f62019-12-10 10:32:29 +00002538 /* Leave all the other PHY capability bytes
2539 * unset, as DCM, beam forming, RU and PPE
2540 * threshold information are not supported
2541 */
2542 },
2543 .he_mcs_nss_supp = {
2544 .rx_mcs_80 = cpu_to_le16(0xfffa),
2545 .tx_mcs_80 = cpu_to_le16(0xfffa),
2546 .rx_mcs_160 = cpu_to_le16(0xffff),
2547 .tx_mcs_160 = cpu_to_le16(0xffff),
2548 .rx_mcs_80p80 = cpu_to_le16(0xffff),
2549 .tx_mcs_80p80 = cpu_to_le16(0xffff),
2550 },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002551 },
2552 },
David Brazdil0f672f62019-12-10 10:32:29 +00002553#ifdef CONFIG_MAC80211_MESH
2554 {
2555 /* TODO: should we support other types, e.g., IBSS?*/
2556 .types_mask = BIT(NL80211_IFTYPE_MESH_POINT),
2557 .he_cap = {
2558 .has_he = true,
2559 .he_cap_elem = {
2560 .mac_cap_info[0] =
2561 IEEE80211_HE_MAC_CAP0_HTC_HE,
2562 .mac_cap_info[1] =
2563 IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8,
2564 .mac_cap_info[2] =
2565 IEEE80211_HE_MAC_CAP2_ACK_EN,
2566 .mac_cap_info[3] =
2567 IEEE80211_HE_MAC_CAP3_OMI_CONTROL |
2568 IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2,
2569 .mac_cap_info[4] = IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU,
2570 .phy_cap_info[1] =
2571 IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK |
2572 IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A |
2573 IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD |
2574 IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS,
2575 .phy_cap_info[2] = 0,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002576
David Brazdil0f672f62019-12-10 10:32:29 +00002577 /* Leave all the other PHY capability bytes
2578 * unset, as DCM, beam forming, RU and PPE
2579 * threshold information are not supported
2580 */
2581 },
2582 .he_mcs_nss_supp = {
2583 .rx_mcs_80 = cpu_to_le16(0xfffa),
2584 .tx_mcs_80 = cpu_to_le16(0xfffa),
2585 .rx_mcs_160 = cpu_to_le16(0xffff),
2586 .tx_mcs_160 = cpu_to_le16(0xffff),
2587 .rx_mcs_80p80 = cpu_to_le16(0xffff),
2588 .tx_mcs_80p80 = cpu_to_le16(0xffff),
2589 },
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002590 },
2591 },
David Brazdil0f672f62019-12-10 10:32:29 +00002592#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002593};
2594
David Brazdil0f672f62019-12-10 10:32:29 +00002595static const struct ieee80211_sband_iftype_data he_capa_5ghz[] = {
2596 {
2597 /* TODO: should we support other types, e.g., P2P?*/
2598 .types_mask = BIT(NL80211_IFTYPE_STATION) |
2599 BIT(NL80211_IFTYPE_AP),
2600 .he_cap = {
2601 .has_he = true,
2602 .he_cap_elem = {
2603 .mac_cap_info[0] =
2604 IEEE80211_HE_MAC_CAP0_HTC_HE,
2605 .mac_cap_info[1] =
2606 IEEE80211_HE_MAC_CAP1_TF_MAC_PAD_DUR_16US |
2607 IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8,
2608 .mac_cap_info[2] =
2609 IEEE80211_HE_MAC_CAP2_BSR |
2610 IEEE80211_HE_MAC_CAP2_MU_CASCADING |
2611 IEEE80211_HE_MAC_CAP2_ACK_EN,
2612 .mac_cap_info[3] =
2613 IEEE80211_HE_MAC_CAP3_OMI_CONTROL |
2614 IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2,
2615 .mac_cap_info[4] = IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU,
2616 .phy_cap_info[0] =
2617 IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G |
2618 IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G |
2619 IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G,
2620 .phy_cap_info[1] =
2621 IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK |
2622 IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A |
2623 IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD |
2624 IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS,
2625 .phy_cap_info[2] =
2626 IEEE80211_HE_PHY_CAP2_NDP_4x_LTF_AND_3_2US |
2627 IEEE80211_HE_PHY_CAP2_STBC_TX_UNDER_80MHZ |
2628 IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ |
2629 IEEE80211_HE_PHY_CAP2_UL_MU_FULL_MU_MIMO |
2630 IEEE80211_HE_PHY_CAP2_UL_MU_PARTIAL_MU_MIMO,
2631
2632 /* Leave all the other PHY capability bytes
2633 * unset, as DCM, beam forming, RU and PPE
2634 * threshold information are not supported
2635 */
2636 },
2637 .he_mcs_nss_supp = {
2638 .rx_mcs_80 = cpu_to_le16(0xfffa),
2639 .tx_mcs_80 = cpu_to_le16(0xfffa),
2640 .rx_mcs_160 = cpu_to_le16(0xfffa),
2641 .tx_mcs_160 = cpu_to_le16(0xfffa),
2642 .rx_mcs_80p80 = cpu_to_le16(0xfffa),
2643 .tx_mcs_80p80 = cpu_to_le16(0xfffa),
2644 },
2645 },
2646 },
2647#ifdef CONFIG_MAC80211_MESH
2648 {
2649 /* TODO: should we support other types, e.g., IBSS?*/
2650 .types_mask = BIT(NL80211_IFTYPE_MESH_POINT),
2651 .he_cap = {
2652 .has_he = true,
2653 .he_cap_elem = {
2654 .mac_cap_info[0] =
2655 IEEE80211_HE_MAC_CAP0_HTC_HE,
2656 .mac_cap_info[1] =
2657 IEEE80211_HE_MAC_CAP1_MULTI_TID_AGG_RX_QOS_8,
2658 .mac_cap_info[2] =
2659 IEEE80211_HE_MAC_CAP2_ACK_EN,
2660 .mac_cap_info[3] =
2661 IEEE80211_HE_MAC_CAP3_OMI_CONTROL |
2662 IEEE80211_HE_MAC_CAP3_MAX_AMPDU_LEN_EXP_VHT_2,
2663 .mac_cap_info[4] = IEEE80211_HE_MAC_CAP4_AMDSU_IN_AMPDU,
2664 .phy_cap_info[0] =
2665 IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G |
2666 IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G |
2667 IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G,
2668 .phy_cap_info[1] =
2669 IEEE80211_HE_PHY_CAP1_PREAMBLE_PUNC_RX_MASK |
2670 IEEE80211_HE_PHY_CAP1_DEVICE_CLASS_A |
2671 IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD |
2672 IEEE80211_HE_PHY_CAP1_MIDAMBLE_RX_TX_MAX_NSTS,
2673 .phy_cap_info[2] = 0,
2674
2675 /* Leave all the other PHY capability bytes
2676 * unset, as DCM, beam forming, RU and PPE
2677 * threshold information are not supported
2678 */
2679 },
2680 .he_mcs_nss_supp = {
2681 .rx_mcs_80 = cpu_to_le16(0xfffa),
2682 .tx_mcs_80 = cpu_to_le16(0xfffa),
2683 .rx_mcs_160 = cpu_to_le16(0xfffa),
2684 .tx_mcs_160 = cpu_to_le16(0xfffa),
2685 .rx_mcs_80p80 = cpu_to_le16(0xfffa),
2686 .tx_mcs_80p80 = cpu_to_le16(0xfffa),
2687 },
2688 },
2689 },
2690#endif
2691};
2692
2693static void mac80211_hwsim_he_capab(struct ieee80211_supported_band *sband)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002694{
David Brazdil0f672f62019-12-10 10:32:29 +00002695 u16 n_iftype_data;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002696
David Brazdil0f672f62019-12-10 10:32:29 +00002697 if (sband->band == NL80211_BAND_2GHZ) {
2698 n_iftype_data = ARRAY_SIZE(he_capa_2ghz);
2699 sband->iftype_data =
2700 (struct ieee80211_sband_iftype_data *)he_capa_2ghz;
2701 } else if (sband->band == NL80211_BAND_5GHZ) {
2702 n_iftype_data = ARRAY_SIZE(he_capa_5ghz);
2703 sband->iftype_data =
2704 (struct ieee80211_sband_iftype_data *)he_capa_5ghz;
2705 } else {
2706 return;
2707 }
2708
2709 sband->n_iftype_data = n_iftype_data;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002710}
2711
David Brazdil0f672f62019-12-10 10:32:29 +00002712#ifdef CONFIG_MAC80211_MESH
2713#define HWSIM_MESH_BIT BIT(NL80211_IFTYPE_MESH_POINT)
2714#else
2715#define HWSIM_MESH_BIT 0
2716#endif
2717
2718#define HWSIM_DEFAULT_IF_LIMIT \
2719 (BIT(NL80211_IFTYPE_STATION) | \
2720 BIT(NL80211_IFTYPE_P2P_CLIENT) | \
2721 BIT(NL80211_IFTYPE_AP) | \
2722 BIT(NL80211_IFTYPE_P2P_GO) | \
2723 HWSIM_MESH_BIT)
2724
2725#define HWSIM_IFTYPE_SUPPORT_MASK \
2726 (BIT(NL80211_IFTYPE_STATION) | \
2727 BIT(NL80211_IFTYPE_AP) | \
2728 BIT(NL80211_IFTYPE_P2P_CLIENT) | \
2729 BIT(NL80211_IFTYPE_P2P_GO) | \
2730 BIT(NL80211_IFTYPE_ADHOC) | \
2731 BIT(NL80211_IFTYPE_MESH_POINT))
2732
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002733static int mac80211_hwsim_new_radio(struct genl_info *info,
2734 struct hwsim_new_radio_params *param)
2735{
2736 int err;
2737 u8 addr[ETH_ALEN];
2738 struct mac80211_hwsim_data *data;
2739 struct ieee80211_hw *hw;
2740 enum nl80211_band band;
2741 const struct ieee80211_ops *ops = &mac80211_hwsim_ops;
2742 struct net *net;
David Brazdil0f672f62019-12-10 10:32:29 +00002743 int idx, i;
2744 int n_limits = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002745
2746 if (WARN_ON(param->channels > 1 && !param->use_chanctx))
2747 return -EINVAL;
2748
2749 spin_lock_bh(&hwsim_radio_lock);
2750 idx = hwsim_radio_idx++;
2751 spin_unlock_bh(&hwsim_radio_lock);
2752
2753 if (param->use_chanctx)
2754 ops = &mac80211_hwsim_mchan_ops;
2755 hw = ieee80211_alloc_hw_nm(sizeof(*data), ops, param->hwname);
2756 if (!hw) {
2757 pr_debug("mac80211_hwsim: ieee80211_alloc_hw failed\n");
2758 err = -ENOMEM;
2759 goto failed;
2760 }
2761
2762 /* ieee80211_alloc_hw_nm may have used a default name */
2763 param->hwname = wiphy_name(hw->wiphy);
2764
2765 if (info)
2766 net = genl_info_net(info);
2767 else
2768 net = &init_net;
2769 wiphy_net_set(hw->wiphy, net);
2770
2771 data = hw->priv;
2772 data->hw = hw;
2773
2774 data->dev = device_create(hwsim_class, NULL, 0, hw, "hwsim%d", idx);
2775 if (IS_ERR(data->dev)) {
2776 printk(KERN_DEBUG
2777 "mac80211_hwsim: device_create failed (%ld)\n",
2778 PTR_ERR(data->dev));
2779 err = -ENOMEM;
2780 goto failed_drvdata;
2781 }
2782 data->dev->driver = &mac80211_hwsim_driver.driver;
2783 err = device_bind_driver(data->dev);
2784 if (err != 0) {
2785 pr_debug("mac80211_hwsim: device_bind_driver failed (%d)\n",
2786 err);
2787 goto failed_bind;
2788 }
2789
2790 skb_queue_head_init(&data->pending);
2791
2792 SET_IEEE80211_DEV(hw, data->dev);
2793 if (!param->perm_addr) {
2794 eth_zero_addr(addr);
2795 addr[0] = 0x02;
2796 addr[3] = idx >> 8;
2797 addr[4] = idx;
2798 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
2799 /* Why need here second address ? */
2800 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
2801 data->addresses[1].addr[0] |= 0x40;
2802 hw->wiphy->n_addresses = 2;
2803 hw->wiphy->addresses = data->addresses;
2804 /* possible address clash is checked at hash table insertion */
2805 } else {
2806 memcpy(data->addresses[0].addr, param->perm_addr, ETH_ALEN);
2807 /* compatibility with automatically generated mac addr */
2808 memcpy(data->addresses[1].addr, param->perm_addr, ETH_ALEN);
2809 hw->wiphy->n_addresses = 2;
2810 hw->wiphy->addresses = data->addresses;
2811 }
2812
2813 data->channels = param->channels;
2814 data->use_chanctx = param->use_chanctx;
2815 data->idx = idx;
2816 data->destroy_on_close = param->destroy_on_close;
2817 if (info)
2818 data->portid = info->snd_portid;
2819
David Brazdil0f672f62019-12-10 10:32:29 +00002820 /* setup interface limits, only on interface types we support */
2821 if (param->iftypes & BIT(NL80211_IFTYPE_ADHOC)) {
2822 data->if_limits[n_limits].max = 1;
2823 data->if_limits[n_limits].types = BIT(NL80211_IFTYPE_ADHOC);
2824 n_limits++;
2825 }
2826
2827 if (param->iftypes & HWSIM_DEFAULT_IF_LIMIT) {
2828 data->if_limits[n_limits].max = 2048;
2829 /*
2830 * For this case, we may only support a subset of
2831 * HWSIM_DEFAULT_IF_LIMIT, therefore we only want to add the
2832 * bits that both param->iftype & HWSIM_DEFAULT_IF_LIMIT have.
2833 */
2834 data->if_limits[n_limits].types =
2835 HWSIM_DEFAULT_IF_LIMIT & param->iftypes;
2836 n_limits++;
2837 }
2838
2839 if (param->iftypes & BIT(NL80211_IFTYPE_P2P_DEVICE)) {
2840 data->if_limits[n_limits].max = 1;
2841 data->if_limits[n_limits].types =
2842 BIT(NL80211_IFTYPE_P2P_DEVICE);
2843 n_limits++;
2844 }
2845
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002846 if (data->use_chanctx) {
2847 hw->wiphy->max_scan_ssids = 255;
2848 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
2849 hw->wiphy->max_remain_on_channel_duration = 1000;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002850 data->if_combination.radar_detect_widths = 0;
2851 data->if_combination.num_different_channels = data->channels;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002852 } else {
David Brazdil0f672f62019-12-10 10:32:29 +00002853 data->if_combination.num_different_channels = 1;
2854 data->if_combination.radar_detect_widths =
2855 BIT(NL80211_CHAN_WIDTH_20_NOHT) |
2856 BIT(NL80211_CHAN_WIDTH_20) |
2857 BIT(NL80211_CHAN_WIDTH_40) |
2858 BIT(NL80211_CHAN_WIDTH_80) |
2859 BIT(NL80211_CHAN_WIDTH_160);
2860 }
2861
2862 if (!n_limits) {
2863 err = -EINVAL;
2864 goto failed_hw;
2865 }
2866
2867 data->if_combination.max_interfaces = 0;
2868 for (i = 0; i < n_limits; i++)
2869 data->if_combination.max_interfaces +=
2870 data->if_limits[i].max;
2871
2872 data->if_combination.n_limits = n_limits;
2873 data->if_combination.limits = data->if_limits;
2874
2875 /*
2876 * If we actually were asked to support combinations,
2877 * advertise them - if there's only a single thing like
2878 * only IBSS then don't advertise it as combinations.
2879 */
2880 if (data->if_combination.max_interfaces > 1) {
2881 hw->wiphy->iface_combinations = &data->if_combination;
2882 hw->wiphy->n_iface_combinations = 1;
2883 }
2884
2885 if (param->ciphers) {
2886 memcpy(data->ciphers, param->ciphers,
2887 param->n_ciphers * sizeof(u32));
2888 hw->wiphy->cipher_suites = data->ciphers;
2889 hw->wiphy->n_cipher_suites = param->n_ciphers;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002890 }
2891
2892 INIT_DELAYED_WORK(&data->roc_start, hw_roc_start);
2893 INIT_DELAYED_WORK(&data->roc_done, hw_roc_done);
2894 INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work);
2895
2896 hw->queues = 5;
2897 hw->offchannel_tx_hw_queue = 4;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002898
2899 ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
2900 ieee80211_hw_set(hw, CHANCTX_STA_CSA);
2901 ieee80211_hw_set(hw, SUPPORTS_HT_CCK_RATES);
2902 ieee80211_hw_set(hw, QUEUE_CONTROL);
2903 ieee80211_hw_set(hw, WANT_MONITOR_VIF);
2904 ieee80211_hw_set(hw, AMPDU_AGGREGATION);
2905 ieee80211_hw_set(hw, MFP_CAPABLE);
2906 ieee80211_hw_set(hw, SIGNAL_DBM);
2907 ieee80211_hw_set(hw, SUPPORTS_PS);
2908 ieee80211_hw_set(hw, TDLS_WIDER_BW);
2909 if (rctbl)
2910 ieee80211_hw_set(hw, SUPPORTS_RC_TABLE);
David Brazdil0f672f62019-12-10 10:32:29 +00002911 ieee80211_hw_set(hw, SUPPORTS_MULTI_BSSID);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002912
2913 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
2914 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL |
2915 WIPHY_FLAG_AP_UAPSD |
2916 WIPHY_FLAG_HAS_CHANNEL_SWITCH;
2917 hw->wiphy->features |= NL80211_FEATURE_ACTIVE_MONITOR |
2918 NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE |
2919 NL80211_FEATURE_STATIC_SMPS |
2920 NL80211_FEATURE_DYNAMIC_SMPS |
2921 NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR;
2922 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_VHT_IBSS);
2923
David Brazdil0f672f62019-12-10 10:32:29 +00002924 hw->wiphy->interface_modes = param->iftypes;
2925
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002926 /* ask mac80211 to reserve space for magic */
2927 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
2928 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
2929 hw->chanctx_data_size = sizeof(struct hwsim_chanctx_priv);
2930
2931 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
2932 sizeof(hwsim_channels_2ghz));
2933 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
2934 sizeof(hwsim_channels_5ghz));
2935 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
2936
2937 for (band = NL80211_BAND_2GHZ; band < NUM_NL80211_BANDS; band++) {
2938 struct ieee80211_supported_band *sband = &data->bands[band];
2939
2940 sband->band = band;
2941
2942 switch (band) {
2943 case NL80211_BAND_2GHZ:
2944 sband->channels = data->channels_2ghz;
2945 sband->n_channels = ARRAY_SIZE(hwsim_channels_2ghz);
2946 sband->bitrates = data->rates;
2947 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
2948 break;
2949 case NL80211_BAND_5GHZ:
2950 sband->channels = data->channels_5ghz;
2951 sband->n_channels = ARRAY_SIZE(hwsim_channels_5ghz);
2952 sband->bitrates = data->rates + 4;
2953 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
2954
2955 sband->vht_cap.vht_supported = true;
2956 sband->vht_cap.cap =
2957 IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
2958 IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ |
2959 IEEE80211_VHT_CAP_RXLDPC |
2960 IEEE80211_VHT_CAP_SHORT_GI_80 |
2961 IEEE80211_VHT_CAP_SHORT_GI_160 |
2962 IEEE80211_VHT_CAP_TXSTBC |
2963 IEEE80211_VHT_CAP_RXSTBC_4 |
2964 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK;
2965 sband->vht_cap.vht_mcs.rx_mcs_map =
2966 cpu_to_le16(IEEE80211_VHT_MCS_SUPPORT_0_9 << 0 |
2967 IEEE80211_VHT_MCS_SUPPORT_0_9 << 2 |
2968 IEEE80211_VHT_MCS_SUPPORT_0_9 << 4 |
2969 IEEE80211_VHT_MCS_SUPPORT_0_9 << 6 |
2970 IEEE80211_VHT_MCS_SUPPORT_0_9 << 8 |
2971 IEEE80211_VHT_MCS_SUPPORT_0_9 << 10 |
2972 IEEE80211_VHT_MCS_SUPPORT_0_9 << 12 |
2973 IEEE80211_VHT_MCS_SUPPORT_0_9 << 14);
2974 sband->vht_cap.vht_mcs.tx_mcs_map =
2975 sband->vht_cap.vht_mcs.rx_mcs_map;
2976 break;
2977 default:
2978 continue;
2979 }
2980
2981 sband->ht_cap.ht_supported = true;
2982 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
2983 IEEE80211_HT_CAP_GRN_FLD |
2984 IEEE80211_HT_CAP_SGI_20 |
2985 IEEE80211_HT_CAP_SGI_40 |
2986 IEEE80211_HT_CAP_DSSSCCK40;
2987 sband->ht_cap.ampdu_factor = 0x3;
2988 sband->ht_cap.ampdu_density = 0x6;
2989 memset(&sband->ht_cap.mcs, 0,
2990 sizeof(sband->ht_cap.mcs));
2991 sband->ht_cap.mcs.rx_mask[0] = 0xff;
2992 sband->ht_cap.mcs.rx_mask[1] = 0xff;
2993 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2994
David Brazdil0f672f62019-12-10 10:32:29 +00002995 mac80211_hwsim_he_capab(sband);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002996
2997 hw->wiphy->bands[band] = sband;
2998 }
2999
3000 /* By default all radios belong to the first group */
3001 data->group = 1;
3002 mutex_init(&data->mutex);
3003
3004 data->netgroup = hwsim_net_get_netgroup(net);
3005 data->wmediumd = hwsim_net_get_wmediumd(net);
3006
3007 /* Enable frame retransmissions for lossy channels */
3008 hw->max_rates = 4;
3009 hw->max_rate_tries = 11;
3010
3011 hw->wiphy->vendor_commands = mac80211_hwsim_vendor_commands;
3012 hw->wiphy->n_vendor_commands =
3013 ARRAY_SIZE(mac80211_hwsim_vendor_commands);
3014 hw->wiphy->vendor_events = mac80211_hwsim_vendor_events;
3015 hw->wiphy->n_vendor_events = ARRAY_SIZE(mac80211_hwsim_vendor_events);
3016
3017 if (param->reg_strict)
3018 hw->wiphy->regulatory_flags |= REGULATORY_STRICT_REG;
3019 if (param->regd) {
3020 data->regd = param->regd;
3021 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
3022 wiphy_apply_custom_regulatory(hw->wiphy, param->regd);
3023 /* give the regulatory workqueue a chance to run */
3024 schedule_timeout_interruptible(1);
3025 }
3026
3027 if (param->no_vif)
3028 ieee80211_hw_set(hw, NO_AUTO_VIF);
3029
3030 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_CQM_RSSI_LIST);
3031
David Brazdil0f672f62019-12-10 10:32:29 +00003032 hrtimer_init(&data->beacon_timer, CLOCK_MONOTONIC,
3033 HRTIMER_MODE_ABS_SOFT);
3034 data->beacon_timer.function = mac80211_hwsim_beacon;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003035
3036 err = ieee80211_register_hw(hw);
3037 if (err < 0) {
3038 pr_debug("mac80211_hwsim: ieee80211_register_hw failed (%d)\n",
3039 err);
3040 goto failed_hw;
3041 }
3042
3043 wiphy_dbg(hw->wiphy, "hwaddr %pM registered\n", hw->wiphy->perm_addr);
3044
3045 if (param->reg_alpha2) {
3046 data->alpha2[0] = param->reg_alpha2[0];
3047 data->alpha2[1] = param->reg_alpha2[1];
3048 regulatory_hint(hw->wiphy, param->reg_alpha2);
3049 }
3050
3051 data->debugfs = debugfs_create_dir("hwsim", hw->wiphy->debugfsdir);
3052 debugfs_create_file("ps", 0666, data->debugfs, data, &hwsim_fops_ps);
3053 debugfs_create_file("group", 0666, data->debugfs, data,
3054 &hwsim_fops_group);
3055 if (!data->use_chanctx)
3056 debugfs_create_file("dfs_simulate_radar", 0222,
3057 data->debugfs,
3058 data, &hwsim_simulate_radar);
3059
3060 spin_lock_bh(&hwsim_radio_lock);
3061 err = rhashtable_insert_fast(&hwsim_radios_rht, &data->rht,
3062 hwsim_rht_params);
3063 if (err < 0) {
3064 if (info) {
3065 GENL_SET_ERR_MSG(info, "perm addr already present");
3066 NL_SET_BAD_ATTR(info->extack,
3067 info->attrs[HWSIM_ATTR_PERM_ADDR]);
3068 }
3069 spin_unlock_bh(&hwsim_radio_lock);
3070 goto failed_final_insert;
3071 }
3072
3073 list_add_tail(&data->list, &hwsim_radios);
3074 hwsim_radios_generation++;
3075 spin_unlock_bh(&hwsim_radio_lock);
3076
3077 hwsim_mcast_new_radio(idx, info, param);
3078
3079 return idx;
3080
3081failed_final_insert:
3082 debugfs_remove_recursive(data->debugfs);
3083 ieee80211_unregister_hw(data->hw);
3084failed_hw:
3085 device_release_driver(data->dev);
3086failed_bind:
3087 device_unregister(data->dev);
3088failed_drvdata:
3089 ieee80211_free_hw(hw);
3090failed:
3091 return err;
3092}
3093
3094static void hwsim_mcast_del_radio(int id, const char *hwname,
3095 struct genl_info *info)
3096{
3097 struct sk_buff *skb;
3098 void *data;
3099 int ret;
3100
3101 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
3102 if (!skb)
3103 return;
3104
3105 data = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
3106 HWSIM_CMD_DEL_RADIO);
3107 if (!data)
3108 goto error;
3109
3110 ret = nla_put_u32(skb, HWSIM_ATTR_RADIO_ID, id);
3111 if (ret < 0)
3112 goto error;
3113
3114 ret = nla_put(skb, HWSIM_ATTR_RADIO_NAME, strlen(hwname),
3115 hwname);
3116 if (ret < 0)
3117 goto error;
3118
3119 genlmsg_end(skb, data);
3120
3121 hwsim_mcast_config_msg(skb, info);
3122
3123 return;
3124
3125error:
3126 nlmsg_free(skb);
3127}
3128
3129static void mac80211_hwsim_del_radio(struct mac80211_hwsim_data *data,
3130 const char *hwname,
3131 struct genl_info *info)
3132{
3133 hwsim_mcast_del_radio(data->idx, hwname, info);
3134 debugfs_remove_recursive(data->debugfs);
3135 ieee80211_unregister_hw(data->hw);
3136 device_release_driver(data->dev);
3137 device_unregister(data->dev);
3138 ieee80211_free_hw(data->hw);
3139}
3140
3141static int mac80211_hwsim_get_radio(struct sk_buff *skb,
3142 struct mac80211_hwsim_data *data,
3143 u32 portid, u32 seq,
3144 struct netlink_callback *cb, int flags)
3145{
3146 void *hdr;
3147 struct hwsim_new_radio_params param = { };
3148 int res = -EMSGSIZE;
3149
3150 hdr = genlmsg_put(skb, portid, seq, &hwsim_genl_family, flags,
3151 HWSIM_CMD_GET_RADIO);
3152 if (!hdr)
3153 return -EMSGSIZE;
3154
3155 if (cb)
3156 genl_dump_check_consistent(cb, hdr);
3157
3158 if (data->alpha2[0] && data->alpha2[1])
3159 param.reg_alpha2 = data->alpha2;
3160
3161 param.reg_strict = !!(data->hw->wiphy->regulatory_flags &
3162 REGULATORY_STRICT_REG);
3163 param.p2p_device = !!(data->hw->wiphy->interface_modes &
3164 BIT(NL80211_IFTYPE_P2P_DEVICE));
3165 param.use_chanctx = data->use_chanctx;
3166 param.regd = data->regd;
3167 param.channels = data->channels;
3168 param.hwname = wiphy_name(data->hw->wiphy);
3169
3170 res = append_radio_msg(skb, data->idx, &param);
3171 if (res < 0)
3172 goto out_err;
3173
3174 genlmsg_end(skb, hdr);
3175 return 0;
3176
3177out_err:
3178 genlmsg_cancel(skb, hdr);
3179 return res;
3180}
3181
3182static void mac80211_hwsim_free(void)
3183{
3184 struct mac80211_hwsim_data *data;
3185
3186 spin_lock_bh(&hwsim_radio_lock);
3187 while ((data = list_first_entry_or_null(&hwsim_radios,
3188 struct mac80211_hwsim_data,
3189 list))) {
3190 list_del(&data->list);
3191 spin_unlock_bh(&hwsim_radio_lock);
3192 mac80211_hwsim_del_radio(data, wiphy_name(data->hw->wiphy),
3193 NULL);
3194 spin_lock_bh(&hwsim_radio_lock);
3195 }
3196 spin_unlock_bh(&hwsim_radio_lock);
3197 class_destroy(hwsim_class);
3198}
3199
3200static const struct net_device_ops hwsim_netdev_ops = {
3201 .ndo_start_xmit = hwsim_mon_xmit,
3202 .ndo_set_mac_address = eth_mac_addr,
3203 .ndo_validate_addr = eth_validate_addr,
3204};
3205
3206static void hwsim_mon_setup(struct net_device *dev)
3207{
3208 dev->netdev_ops = &hwsim_netdev_ops;
3209 dev->needs_free_netdev = true;
3210 ether_setup(dev);
3211 dev->priv_flags |= IFF_NO_QUEUE;
3212 dev->type = ARPHRD_IEEE80211_RADIOTAP;
3213 eth_zero_addr(dev->dev_addr);
3214 dev->dev_addr[0] = 0x12;
3215}
3216
3217static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr(const u8 *addr)
3218{
3219 return rhashtable_lookup_fast(&hwsim_radios_rht,
3220 addr,
3221 hwsim_rht_params);
3222}
3223
3224static void hwsim_register_wmediumd(struct net *net, u32 portid)
3225{
3226 struct mac80211_hwsim_data *data;
3227
3228 hwsim_net_set_wmediumd(net, portid);
3229
3230 spin_lock_bh(&hwsim_radio_lock);
3231 list_for_each_entry(data, &hwsim_radios, list) {
3232 if (data->netgroup == hwsim_net_get_netgroup(net))
3233 data->wmediumd = portid;
3234 }
3235 spin_unlock_bh(&hwsim_radio_lock);
3236}
3237
3238static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
3239 struct genl_info *info)
3240{
3241
3242 struct ieee80211_hdr *hdr;
3243 struct mac80211_hwsim_data *data2;
3244 struct ieee80211_tx_info *txi;
3245 struct hwsim_tx_rate *tx_attempts;
3246 u64 ret_skb_cookie;
3247 struct sk_buff *skb, *tmp;
3248 const u8 *src;
3249 unsigned int hwsim_flags;
3250 int i;
3251 bool found = false;
3252
3253 if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] ||
3254 !info->attrs[HWSIM_ATTR_FLAGS] ||
3255 !info->attrs[HWSIM_ATTR_COOKIE] ||
3256 !info->attrs[HWSIM_ATTR_SIGNAL] ||
3257 !info->attrs[HWSIM_ATTR_TX_INFO])
3258 goto out;
3259
3260 src = (void *)nla_data(info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]);
3261 hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]);
3262 ret_skb_cookie = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]);
3263
3264 data2 = get_hwsim_data_ref_from_addr(src);
3265 if (!data2)
3266 goto out;
3267
3268 if (hwsim_net_get_netgroup(genl_info_net(info)) != data2->netgroup)
3269 goto out;
3270
3271 if (info->snd_portid != data2->wmediumd)
3272 goto out;
3273
3274 /* look for the skb matching the cookie passed back from user */
3275 skb_queue_walk_safe(&data2->pending, skb, tmp) {
3276 u64 skb_cookie;
3277
3278 txi = IEEE80211_SKB_CB(skb);
3279 skb_cookie = (u64)(uintptr_t)txi->rate_driver_data[0];
3280
3281 if (skb_cookie == ret_skb_cookie) {
3282 skb_unlink(skb, &data2->pending);
3283 found = true;
3284 break;
3285 }
3286 }
3287
3288 /* not found */
3289 if (!found)
3290 goto out;
3291
3292 /* Tx info received because the frame was broadcasted on user space,
3293 so we get all the necessary info: tx attempts and skb control buff */
3294
3295 tx_attempts = (struct hwsim_tx_rate *)nla_data(
3296 info->attrs[HWSIM_ATTR_TX_INFO]);
3297
3298 /* now send back TX status */
3299 txi = IEEE80211_SKB_CB(skb);
3300
3301 ieee80211_tx_info_clear_status(txi);
3302
3303 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
3304 txi->status.rates[i].idx = tx_attempts[i].idx;
3305 txi->status.rates[i].count = tx_attempts[i].count;
3306 }
3307
3308 txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
3309
3310 if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) &&
3311 (hwsim_flags & HWSIM_TX_STAT_ACK)) {
3312 if (skb->len >= 16) {
3313 hdr = (struct ieee80211_hdr *) skb->data;
3314 mac80211_hwsim_monitor_ack(data2->channel,
3315 hdr->addr2);
3316 }
3317 txi->flags |= IEEE80211_TX_STAT_ACK;
3318 }
3319 ieee80211_tx_status_irqsafe(data2->hw, skb);
3320 return 0;
3321out:
3322 return -EINVAL;
3323
3324}
3325
3326static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
3327 struct genl_info *info)
3328{
3329 struct mac80211_hwsim_data *data2;
3330 struct ieee80211_rx_status rx_status;
David Brazdil0f672f62019-12-10 10:32:29 +00003331 struct ieee80211_hdr *hdr;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003332 const u8 *dst;
3333 int frame_data_len;
3334 void *frame_data;
3335 struct sk_buff *skb = NULL;
3336
3337 if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] ||
3338 !info->attrs[HWSIM_ATTR_FRAME] ||
3339 !info->attrs[HWSIM_ATTR_RX_RATE] ||
3340 !info->attrs[HWSIM_ATTR_SIGNAL])
3341 goto out;
3342
3343 dst = (void *)nla_data(info->attrs[HWSIM_ATTR_ADDR_RECEIVER]);
3344 frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]);
3345 frame_data = (void *)nla_data(info->attrs[HWSIM_ATTR_FRAME]);
3346
3347 /* Allocate new skb here */
3348 skb = alloc_skb(frame_data_len, GFP_KERNEL);
3349 if (skb == NULL)
3350 goto err;
3351
3352 if (frame_data_len > IEEE80211_MAX_DATA_LEN)
3353 goto err;
3354
3355 /* Copy the data */
3356 skb_put_data(skb, frame_data, frame_data_len);
3357
3358 data2 = get_hwsim_data_ref_from_addr(dst);
3359 if (!data2)
3360 goto out;
3361
3362 if (hwsim_net_get_netgroup(genl_info_net(info)) != data2->netgroup)
3363 goto out;
3364
3365 if (info->snd_portid != data2->wmediumd)
3366 goto out;
3367
3368 /* check if radio is configured properly */
3369
3370 if (data2->idle || !data2->started)
3371 goto out;
3372
3373 /* A frame is received from user space */
3374 memset(&rx_status, 0, sizeof(rx_status));
3375 if (info->attrs[HWSIM_ATTR_FREQ]) {
3376 /* throw away off-channel packets, but allow both the temporary
3377 * ("hw" scan/remain-on-channel) and regular channel, since the
3378 * internal datapath also allows this
3379 */
3380 mutex_lock(&data2->mutex);
3381 rx_status.freq = nla_get_u32(info->attrs[HWSIM_ATTR_FREQ]);
3382
3383 if (rx_status.freq != data2->channel->center_freq &&
3384 (!data2->tmp_chan ||
3385 rx_status.freq != data2->tmp_chan->center_freq)) {
3386 mutex_unlock(&data2->mutex);
3387 goto out;
3388 }
3389 mutex_unlock(&data2->mutex);
3390 } else {
3391 rx_status.freq = data2->channel->center_freq;
3392 }
3393
3394 rx_status.band = data2->channel->band;
3395 rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
3396 rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
3397
David Brazdil0f672f62019-12-10 10:32:29 +00003398 hdr = (void *)skb->data;
3399
3400 if (ieee80211_is_beacon(hdr->frame_control) ||
3401 ieee80211_is_probe_resp(hdr->frame_control))
3402 rx_status.boottime_ns = ktime_get_boottime_ns();
3403
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003404 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
3405 data2->rx_pkts++;
3406 data2->rx_bytes += skb->len;
3407 ieee80211_rx_irqsafe(data2->hw, skb);
3408
3409 return 0;
3410err:
3411 pr_debug("mac80211_hwsim: error occurred in %s\n", __func__);
3412out:
3413 dev_kfree_skb(skb);
3414 return -EINVAL;
3415}
3416
3417static int hwsim_register_received_nl(struct sk_buff *skb_2,
3418 struct genl_info *info)
3419{
3420 struct net *net = genl_info_net(info);
3421 struct mac80211_hwsim_data *data;
3422 int chans = 1;
3423
3424 spin_lock_bh(&hwsim_radio_lock);
3425 list_for_each_entry(data, &hwsim_radios, list)
3426 chans = max(chans, data->channels);
3427 spin_unlock_bh(&hwsim_radio_lock);
3428
3429 /* In the future we should revise the userspace API and allow it
3430 * to set a flag that it does support multi-channel, then we can
3431 * let this pass conditionally on the flag.
3432 * For current userspace, prohibit it since it won't work right.
3433 */
3434 if (chans > 1)
3435 return -EOPNOTSUPP;
3436
3437 if (hwsim_net_get_wmediumd(net))
3438 return -EBUSY;
3439
3440 hwsim_register_wmediumd(net, info->snd_portid);
3441
3442 pr_debug("mac80211_hwsim: received a REGISTER, "
3443 "switching to wmediumd mode with pid %d\n", info->snd_portid);
3444
3445 return 0;
3446}
3447
David Brazdil0f672f62019-12-10 10:32:29 +00003448/* ensures ciphers only include ciphers listed in 'hwsim_ciphers' array */
3449static bool hwsim_known_ciphers(const u32 *ciphers, int n_ciphers)
3450{
3451 int i;
3452
3453 for (i = 0; i < n_ciphers; i++) {
3454 int j;
3455 int found = 0;
3456
3457 for (j = 0; j < ARRAY_SIZE(hwsim_ciphers); j++) {
3458 if (ciphers[i] == hwsim_ciphers[j]) {
3459 found = 1;
3460 break;
3461 }
3462 }
3463
3464 if (!found)
3465 return false;
3466 }
3467
3468 return true;
3469}
3470
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003471static int hwsim_new_radio_nl(struct sk_buff *msg, struct genl_info *info)
3472{
3473 struct hwsim_new_radio_params param = { 0 };
3474 const char *hwname = NULL;
3475 int ret;
3476
3477 param.reg_strict = info->attrs[HWSIM_ATTR_REG_STRICT_REG];
3478 param.p2p_device = info->attrs[HWSIM_ATTR_SUPPORT_P2P_DEVICE];
3479 param.channels = channels;
3480 param.destroy_on_close =
3481 info->attrs[HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE];
3482
3483 if (info->attrs[HWSIM_ATTR_CHANNELS])
3484 param.channels = nla_get_u32(info->attrs[HWSIM_ATTR_CHANNELS]);
3485
3486 if (param.channels < 1) {
3487 GENL_SET_ERR_MSG(info, "must have at least one channel");
3488 return -EINVAL;
3489 }
3490
3491 if (param.channels > CFG80211_MAX_NUM_DIFFERENT_CHANNELS) {
3492 GENL_SET_ERR_MSG(info, "too many channels specified");
3493 return -EINVAL;
3494 }
3495
3496 if (info->attrs[HWSIM_ATTR_NO_VIF])
3497 param.no_vif = true;
3498
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003499 if (info->attrs[HWSIM_ATTR_USE_CHANCTX])
3500 param.use_chanctx = true;
3501 else
3502 param.use_chanctx = (param.channels > 1);
3503
3504 if (info->attrs[HWSIM_ATTR_REG_HINT_ALPHA2])
3505 param.reg_alpha2 =
3506 nla_data(info->attrs[HWSIM_ATTR_REG_HINT_ALPHA2]);
3507
3508 if (info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]) {
3509 u32 idx = nla_get_u32(info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]);
3510
David Brazdil0f672f62019-12-10 10:32:29 +00003511 if (idx >= ARRAY_SIZE(hwsim_world_regdom_custom))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003512 return -EINVAL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003513
3514 idx = array_index_nospec(idx,
3515 ARRAY_SIZE(hwsim_world_regdom_custom));
3516 param.regd = hwsim_world_regdom_custom[idx];
3517 }
3518
3519 if (info->attrs[HWSIM_ATTR_PERM_ADDR]) {
3520 if (!is_valid_ether_addr(
3521 nla_data(info->attrs[HWSIM_ATTR_PERM_ADDR]))) {
3522 GENL_SET_ERR_MSG(info,"MAC is no valid source addr");
3523 NL_SET_BAD_ATTR(info->extack,
3524 info->attrs[HWSIM_ATTR_PERM_ADDR]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003525 return -EINVAL;
3526 }
3527
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003528 param.perm_addr = nla_data(info->attrs[HWSIM_ATTR_PERM_ADDR]);
3529 }
3530
David Brazdil0f672f62019-12-10 10:32:29 +00003531 if (info->attrs[HWSIM_ATTR_IFTYPE_SUPPORT]) {
3532 param.iftypes =
3533 nla_get_u32(info->attrs[HWSIM_ATTR_IFTYPE_SUPPORT]);
3534
3535 if (param.iftypes & ~HWSIM_IFTYPE_SUPPORT_MASK) {
3536 NL_SET_ERR_MSG_ATTR(info->extack,
3537 info->attrs[HWSIM_ATTR_IFTYPE_SUPPORT],
3538 "cannot support more iftypes than kernel");
3539 return -EINVAL;
3540 }
3541 } else {
3542 param.iftypes = HWSIM_IFTYPE_SUPPORT_MASK;
3543 }
3544
3545 /* ensure both flag and iftype support is honored */
3546 if (param.p2p_device ||
3547 param.iftypes & BIT(NL80211_IFTYPE_P2P_DEVICE)) {
3548 param.iftypes |= BIT(NL80211_IFTYPE_P2P_DEVICE);
3549 param.p2p_device = true;
3550 }
3551
3552 if (info->attrs[HWSIM_ATTR_CIPHER_SUPPORT]) {
3553 u32 len = nla_len(info->attrs[HWSIM_ATTR_CIPHER_SUPPORT]);
3554
3555 param.ciphers =
3556 nla_data(info->attrs[HWSIM_ATTR_CIPHER_SUPPORT]);
3557
3558 if (len % sizeof(u32)) {
3559 NL_SET_ERR_MSG_ATTR(info->extack,
3560 info->attrs[HWSIM_ATTR_CIPHER_SUPPORT],
3561 "bad cipher list length");
3562 return -EINVAL;
3563 }
3564
3565 param.n_ciphers = len / sizeof(u32);
3566
3567 if (param.n_ciphers > ARRAY_SIZE(hwsim_ciphers)) {
3568 NL_SET_ERR_MSG_ATTR(info->extack,
3569 info->attrs[HWSIM_ATTR_CIPHER_SUPPORT],
3570 "too many ciphers specified");
3571 return -EINVAL;
3572 }
3573
3574 if (!hwsim_known_ciphers(param.ciphers, param.n_ciphers)) {
3575 NL_SET_ERR_MSG_ATTR(info->extack,
3576 info->attrs[HWSIM_ATTR_CIPHER_SUPPORT],
3577 "unsupported ciphers specified");
3578 return -EINVAL;
3579 }
3580 }
3581
3582 if (info->attrs[HWSIM_ATTR_RADIO_NAME]) {
Olivier Deprez0e641232021-09-23 10:07:05 +02003583 hwname = kstrndup((char *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME]),
3584 nla_len(info->attrs[HWSIM_ATTR_RADIO_NAME]),
3585 GFP_KERNEL);
David Brazdil0f672f62019-12-10 10:32:29 +00003586 if (!hwname)
3587 return -ENOMEM;
3588 param.hwname = hwname;
3589 }
3590
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003591 ret = mac80211_hwsim_new_radio(info, &param);
3592 kfree(hwname);
3593 return ret;
3594}
3595
3596static int hwsim_del_radio_nl(struct sk_buff *msg, struct genl_info *info)
3597{
3598 struct mac80211_hwsim_data *data;
3599 s64 idx = -1;
3600 const char *hwname = NULL;
3601
3602 if (info->attrs[HWSIM_ATTR_RADIO_ID]) {
3603 idx = nla_get_u32(info->attrs[HWSIM_ATTR_RADIO_ID]);
3604 } else if (info->attrs[HWSIM_ATTR_RADIO_NAME]) {
Olivier Deprez0e641232021-09-23 10:07:05 +02003605 hwname = kstrndup((char *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME]),
3606 nla_len(info->attrs[HWSIM_ATTR_RADIO_NAME]),
3607 GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003608 if (!hwname)
3609 return -ENOMEM;
3610 } else
3611 return -EINVAL;
3612
3613 spin_lock_bh(&hwsim_radio_lock);
3614 list_for_each_entry(data, &hwsim_radios, list) {
3615 if (idx >= 0) {
3616 if (data->idx != idx)
3617 continue;
3618 } else {
3619 if (!hwname ||
3620 strcmp(hwname, wiphy_name(data->hw->wiphy)))
3621 continue;
3622 }
3623
3624 if (!net_eq(wiphy_net(data->hw->wiphy), genl_info_net(info)))
3625 continue;
3626
3627 list_del(&data->list);
3628 rhashtable_remove_fast(&hwsim_radios_rht, &data->rht,
3629 hwsim_rht_params);
3630 hwsim_radios_generation++;
3631 spin_unlock_bh(&hwsim_radio_lock);
3632 mac80211_hwsim_del_radio(data, wiphy_name(data->hw->wiphy),
3633 info);
3634 kfree(hwname);
3635 return 0;
3636 }
3637 spin_unlock_bh(&hwsim_radio_lock);
3638
3639 kfree(hwname);
3640 return -ENODEV;
3641}
3642
3643static int hwsim_get_radio_nl(struct sk_buff *msg, struct genl_info *info)
3644{
3645 struct mac80211_hwsim_data *data;
3646 struct sk_buff *skb;
3647 int idx, res = -ENODEV;
3648
3649 if (!info->attrs[HWSIM_ATTR_RADIO_ID])
3650 return -EINVAL;
3651 idx = nla_get_u32(info->attrs[HWSIM_ATTR_RADIO_ID]);
3652
3653 spin_lock_bh(&hwsim_radio_lock);
3654 list_for_each_entry(data, &hwsim_radios, list) {
3655 if (data->idx != idx)
3656 continue;
3657
3658 if (!net_eq(wiphy_net(data->hw->wiphy), genl_info_net(info)))
3659 continue;
3660
3661 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
3662 if (!skb) {
3663 res = -ENOMEM;
3664 goto out_err;
3665 }
3666
3667 res = mac80211_hwsim_get_radio(skb, data, info->snd_portid,
3668 info->snd_seq, NULL, 0);
3669 if (res < 0) {
3670 nlmsg_free(skb);
3671 goto out_err;
3672 }
3673
David Brazdil0f672f62019-12-10 10:32:29 +00003674 res = genlmsg_reply(skb, info);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003675 break;
3676 }
3677
3678out_err:
3679 spin_unlock_bh(&hwsim_radio_lock);
3680
3681 return res;
3682}
3683
3684static int hwsim_dump_radio_nl(struct sk_buff *skb,
3685 struct netlink_callback *cb)
3686{
3687 int last_idx = cb->args[0] - 1;
3688 struct mac80211_hwsim_data *data = NULL;
3689 int res = 0;
3690 void *hdr;
3691
3692 spin_lock_bh(&hwsim_radio_lock);
3693 cb->seq = hwsim_radios_generation;
3694
3695 if (last_idx >= hwsim_radio_idx-1)
3696 goto done;
3697
3698 list_for_each_entry(data, &hwsim_radios, list) {
3699 if (data->idx <= last_idx)
3700 continue;
3701
3702 if (!net_eq(wiphy_net(data->hw->wiphy), sock_net(skb->sk)))
3703 continue;
3704
3705 res = mac80211_hwsim_get_radio(skb, data,
3706 NETLINK_CB(cb->skb).portid,
3707 cb->nlh->nlmsg_seq, cb,
3708 NLM_F_MULTI);
3709 if (res < 0)
3710 break;
3711
3712 last_idx = data->idx;
3713 }
3714
3715 cb->args[0] = last_idx + 1;
3716
3717 /* list changed, but no new element sent, set interrupted flag */
3718 if (skb->len == 0 && cb->prev_seq && cb->seq != cb->prev_seq) {
3719 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3720 cb->nlh->nlmsg_seq, &hwsim_genl_family,
3721 NLM_F_MULTI, HWSIM_CMD_GET_RADIO);
David Brazdil0f672f62019-12-10 10:32:29 +00003722 if (hdr) {
3723 genl_dump_check_consistent(cb, hdr);
3724 genlmsg_end(skb, hdr);
3725 } else {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003726 res = -EMSGSIZE;
David Brazdil0f672f62019-12-10 10:32:29 +00003727 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003728 }
3729
3730done:
3731 spin_unlock_bh(&hwsim_radio_lock);
3732 return res ?: skb->len;
3733}
3734
3735/* Generic Netlink operations array */
3736static const struct genl_ops hwsim_ops[] = {
3737 {
3738 .cmd = HWSIM_CMD_REGISTER,
David Brazdil0f672f62019-12-10 10:32:29 +00003739 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003740 .doit = hwsim_register_received_nl,
3741 .flags = GENL_UNS_ADMIN_PERM,
3742 },
3743 {
3744 .cmd = HWSIM_CMD_FRAME,
David Brazdil0f672f62019-12-10 10:32:29 +00003745 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003746 .doit = hwsim_cloned_frame_received_nl,
3747 },
3748 {
3749 .cmd = HWSIM_CMD_TX_INFO_FRAME,
David Brazdil0f672f62019-12-10 10:32:29 +00003750 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003751 .doit = hwsim_tx_info_frame_received_nl,
3752 },
3753 {
3754 .cmd = HWSIM_CMD_NEW_RADIO,
David Brazdil0f672f62019-12-10 10:32:29 +00003755 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003756 .doit = hwsim_new_radio_nl,
3757 .flags = GENL_UNS_ADMIN_PERM,
3758 },
3759 {
3760 .cmd = HWSIM_CMD_DEL_RADIO,
David Brazdil0f672f62019-12-10 10:32:29 +00003761 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003762 .doit = hwsim_del_radio_nl,
3763 .flags = GENL_UNS_ADMIN_PERM,
3764 },
3765 {
3766 .cmd = HWSIM_CMD_GET_RADIO,
David Brazdil0f672f62019-12-10 10:32:29 +00003767 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003768 .doit = hwsim_get_radio_nl,
3769 .dumpit = hwsim_dump_radio_nl,
3770 },
3771};
3772
3773static struct genl_family hwsim_genl_family __ro_after_init = {
3774 .name = "MAC80211_HWSIM",
3775 .version = 1,
3776 .maxattr = HWSIM_ATTR_MAX,
David Brazdil0f672f62019-12-10 10:32:29 +00003777 .policy = hwsim_genl_policy,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003778 .netnsok = true,
3779 .module = THIS_MODULE,
3780 .ops = hwsim_ops,
3781 .n_ops = ARRAY_SIZE(hwsim_ops),
3782 .mcgrps = hwsim_mcgrps,
3783 .n_mcgrps = ARRAY_SIZE(hwsim_mcgrps),
3784};
3785
3786static void remove_user_radios(u32 portid)
3787{
3788 struct mac80211_hwsim_data *entry, *tmp;
3789 LIST_HEAD(list);
3790
3791 spin_lock_bh(&hwsim_radio_lock);
3792 list_for_each_entry_safe(entry, tmp, &hwsim_radios, list) {
3793 if (entry->destroy_on_close && entry->portid == portid) {
3794 list_move(&entry->list, &list);
3795 rhashtable_remove_fast(&hwsim_radios_rht, &entry->rht,
3796 hwsim_rht_params);
3797 hwsim_radios_generation++;
3798 }
3799 }
3800 spin_unlock_bh(&hwsim_radio_lock);
3801
3802 list_for_each_entry_safe(entry, tmp, &list, list) {
3803 list_del(&entry->list);
3804 mac80211_hwsim_del_radio(entry, wiphy_name(entry->hw->wiphy),
3805 NULL);
3806 }
3807}
3808
3809static int mac80211_hwsim_netlink_notify(struct notifier_block *nb,
3810 unsigned long state,
3811 void *_notify)
3812{
3813 struct netlink_notify *notify = _notify;
3814
3815 if (state != NETLINK_URELEASE)
3816 return NOTIFY_DONE;
3817
3818 remove_user_radios(notify->portid);
3819
3820 if (notify->portid == hwsim_net_get_wmediumd(notify->net)) {
3821 printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink"
3822 " socket, switching to perfect channel medium\n");
3823 hwsim_register_wmediumd(notify->net, 0);
3824 }
3825 return NOTIFY_DONE;
3826
3827}
3828
3829static struct notifier_block hwsim_netlink_notifier = {
3830 .notifier_call = mac80211_hwsim_netlink_notify,
3831};
3832
3833static int __init hwsim_init_netlink(void)
3834{
3835 int rc;
3836
3837 printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
3838
3839 rc = genl_register_family(&hwsim_genl_family);
3840 if (rc)
3841 goto failure;
3842
3843 rc = netlink_register_notifier(&hwsim_netlink_notifier);
3844 if (rc) {
3845 genl_unregister_family(&hwsim_genl_family);
3846 goto failure;
3847 }
3848
3849 return 0;
3850
3851failure:
3852 pr_debug("mac80211_hwsim: error occurred in %s\n", __func__);
3853 return -EINVAL;
3854}
3855
3856static __net_init int hwsim_init_net(struct net *net)
3857{
3858 return hwsim_net_set_netgroup(net);
3859}
3860
3861static void __net_exit hwsim_exit_net(struct net *net)
3862{
3863 struct mac80211_hwsim_data *data, *tmp;
3864 LIST_HEAD(list);
3865
3866 spin_lock_bh(&hwsim_radio_lock);
3867 list_for_each_entry_safe(data, tmp, &hwsim_radios, list) {
3868 if (!net_eq(wiphy_net(data->hw->wiphy), net))
3869 continue;
3870
3871 /* Radios created in init_net are returned to init_net. */
3872 if (data->netgroup == hwsim_net_get_netgroup(&init_net))
3873 continue;
3874
3875 list_move(&data->list, &list);
3876 rhashtable_remove_fast(&hwsim_radios_rht, &data->rht,
3877 hwsim_rht_params);
3878 hwsim_radios_generation++;
3879 }
3880 spin_unlock_bh(&hwsim_radio_lock);
3881
3882 list_for_each_entry_safe(data, tmp, &list, list) {
3883 list_del(&data->list);
3884 mac80211_hwsim_del_radio(data,
3885 wiphy_name(data->hw->wiphy),
3886 NULL);
3887 }
3888
3889 ida_simple_remove(&hwsim_netgroup_ida, hwsim_net_get_netgroup(net));
3890}
3891
3892static struct pernet_operations hwsim_net_ops = {
3893 .init = hwsim_init_net,
3894 .exit = hwsim_exit_net,
3895 .id = &hwsim_net_id,
3896 .size = sizeof(struct hwsim_net),
3897};
3898
3899static void hwsim_exit_netlink(void)
3900{
3901 /* unregister the notifier */
3902 netlink_unregister_notifier(&hwsim_netlink_notifier);
3903 /* unregister the family */
3904 genl_unregister_family(&hwsim_genl_family);
3905}
3906
3907static int __init init_mac80211_hwsim(void)
3908{
3909 int i, err;
3910
3911 if (radios < 0 || radios > 100)
3912 return -EINVAL;
3913
3914 if (channels < 1)
3915 return -EINVAL;
3916
3917 spin_lock_init(&hwsim_radio_lock);
3918
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003919 err = rhashtable_init(&hwsim_radios_rht, &hwsim_rht_params);
3920 if (err)
David Brazdil0f672f62019-12-10 10:32:29 +00003921 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003922
3923 err = register_pernet_device(&hwsim_net_ops);
3924 if (err)
3925 goto out_free_rht;
3926
3927 err = platform_driver_register(&mac80211_hwsim_driver);
3928 if (err)
3929 goto out_unregister_pernet;
3930
3931 err = hwsim_init_netlink();
3932 if (err)
3933 goto out_unregister_driver;
3934
3935 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
3936 if (IS_ERR(hwsim_class)) {
3937 err = PTR_ERR(hwsim_class);
3938 goto out_exit_netlink;
3939 }
3940
3941 for (i = 0; i < radios; i++) {
3942 struct hwsim_new_radio_params param = { 0 };
3943
3944 param.channels = channels;
3945
3946 switch (regtest) {
3947 case HWSIM_REGTEST_DIFF_COUNTRY:
3948 if (i < ARRAY_SIZE(hwsim_alpha2s))
3949 param.reg_alpha2 = hwsim_alpha2s[i];
3950 break;
3951 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
3952 if (!i)
3953 param.reg_alpha2 = hwsim_alpha2s[0];
3954 break;
3955 case HWSIM_REGTEST_STRICT_ALL:
3956 param.reg_strict = true;
David Brazdil0f672f62019-12-10 10:32:29 +00003957 /* fall through */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003958 case HWSIM_REGTEST_DRIVER_REG_ALL:
3959 param.reg_alpha2 = hwsim_alpha2s[0];
3960 break;
3961 case HWSIM_REGTEST_WORLD_ROAM:
3962 if (i == 0)
3963 param.regd = &hwsim_world_regdom_custom_01;
3964 break;
3965 case HWSIM_REGTEST_CUSTOM_WORLD:
3966 param.regd = &hwsim_world_regdom_custom_01;
3967 break;
3968 case HWSIM_REGTEST_CUSTOM_WORLD_2:
3969 if (i == 0)
3970 param.regd = &hwsim_world_regdom_custom_01;
3971 else if (i == 1)
3972 param.regd = &hwsim_world_regdom_custom_02;
3973 break;
3974 case HWSIM_REGTEST_STRICT_FOLLOW:
3975 if (i == 0) {
3976 param.reg_strict = true;
3977 param.reg_alpha2 = hwsim_alpha2s[0];
3978 }
3979 break;
3980 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
3981 if (i == 0) {
3982 param.reg_strict = true;
3983 param.reg_alpha2 = hwsim_alpha2s[0];
3984 } else if (i == 1) {
3985 param.reg_alpha2 = hwsim_alpha2s[1];
3986 }
3987 break;
3988 case HWSIM_REGTEST_ALL:
3989 switch (i) {
3990 case 0:
3991 param.regd = &hwsim_world_regdom_custom_01;
3992 break;
3993 case 1:
3994 param.regd = &hwsim_world_regdom_custom_02;
3995 break;
3996 case 2:
3997 param.reg_alpha2 = hwsim_alpha2s[0];
3998 break;
3999 case 3:
4000 param.reg_alpha2 = hwsim_alpha2s[1];
4001 break;
4002 case 4:
4003 param.reg_strict = true;
4004 param.reg_alpha2 = hwsim_alpha2s[2];
4005 break;
4006 }
4007 break;
4008 default:
4009 break;
4010 }
4011
4012 param.p2p_device = support_p2p_device;
4013 param.use_chanctx = channels > 1;
David Brazdil0f672f62019-12-10 10:32:29 +00004014 param.iftypes = HWSIM_IFTYPE_SUPPORT_MASK;
4015 if (param.p2p_device)
4016 param.iftypes |= BIT(NL80211_IFTYPE_P2P_DEVICE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004017
4018 err = mac80211_hwsim_new_radio(NULL, &param);
4019 if (err < 0)
4020 goto out_free_radios;
4021 }
4022
4023 hwsim_mon = alloc_netdev(0, "hwsim%d", NET_NAME_UNKNOWN,
4024 hwsim_mon_setup);
4025 if (hwsim_mon == NULL) {
4026 err = -ENOMEM;
4027 goto out_free_radios;
4028 }
4029
4030 rtnl_lock();
4031 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
4032 if (err < 0) {
4033 rtnl_unlock();
David Brazdil0f672f62019-12-10 10:32:29 +00004034 goto out_free_mon;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004035 }
4036
4037 err = register_netdevice(hwsim_mon);
4038 if (err < 0) {
4039 rtnl_unlock();
4040 goto out_free_mon;
4041 }
4042 rtnl_unlock();
4043
4044 return 0;
4045
4046out_free_mon:
4047 free_netdev(hwsim_mon);
4048out_free_radios:
4049 mac80211_hwsim_free();
4050out_exit_netlink:
4051 hwsim_exit_netlink();
4052out_unregister_driver:
4053 platform_driver_unregister(&mac80211_hwsim_driver);
4054out_unregister_pernet:
4055 unregister_pernet_device(&hwsim_net_ops);
4056out_free_rht:
4057 rhashtable_destroy(&hwsim_radios_rht);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004058 return err;
4059}
4060module_init(init_mac80211_hwsim);
4061
4062static void __exit exit_mac80211_hwsim(void)
4063{
4064 pr_debug("mac80211_hwsim: unregister radios\n");
4065
4066 hwsim_exit_netlink();
4067
4068 mac80211_hwsim_free();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004069
4070 rhashtable_destroy(&hwsim_radios_rht);
4071 unregister_netdev(hwsim_mon);
4072 platform_driver_unregister(&mac80211_hwsim_driver);
4073 unregister_pernet_device(&hwsim_net_ops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004074}
4075module_exit(exit_mac80211_hwsim);