blob: 7d0b460868f91024c7faac67ae00301cbf2ca01e [file] [log] [blame]
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001/*
2 * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
Javier Lopez78825132011-06-01 11:26:13 +02004 * Copyright (c) 2011, Javier Lopez <jlopex@gmail.com>
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11/*
12 * TODO:
Johannes Berg2b2d7792010-08-17 12:08:07 +020013 * - Add TSF sync and fix IBSS beacon transmission by adding
14 * competition for "air time" at TBTT
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030015 * - RX filtering based on filter configuration (data->rx_filter)
16 */
17
Johannes Berg0e057d732008-09-12 00:39:22 +020018#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Johannes Berg0e057d732008-09-12 00:39:22 +020020#include <linux/spinlock.h>
Johannes Berg90e30122009-06-18 14:51:12 +020021#include <net/dst.h>
22#include <net/xfrm.h>
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030023#include <net/mac80211.h>
24#include <net/ieee80211_radiotap.h>
25#include <linux/if_arp.h>
26#include <linux/rtnetlink.h>
27#include <linux/etherdevice.h>
Martin Pitt9ea927742013-04-08 11:30:01 +020028#include <linux/platform_device.h>
Jouni Malinenfc6971d2008-10-30 19:59:05 +020029#include <linux/debugfs.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040030#include <linux/module.h>
Javier Cardona2f40b942012-03-05 17:20:37 -080031#include <linux/ktime.h>
Javier Lopez78825132011-06-01 11:26:13 +020032#include <net/genetlink.h>
Martin Willi100cb9f2016-05-09 18:33:59 +020033#include <net/net_namespace.h>
34#include <net/netns/generic.h>
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +010035#include <linux/rhashtable.h>
Javier Lopez78825132011-06-01 11:26:13 +020036#include "mac80211_hwsim.h"
37
38#define WARN_QUEUE 100
39#define MAX_QUEUE 200
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030040
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
Johannes Berge8261172012-07-27 19:48:26 +020049static int channels = 1;
50module_param(channels, int, 0444);
51MODULE_PARM_DESC(channels, "Number of concurrent channels");
Johannes Berg69068032010-02-03 10:47:55 +010052
Johannes Berga357d7f2012-12-10 11:57:42 +010053static 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
Karl Beldan1eb32172013-04-19 14:44:52 +020057static bool rctbl = false;
58module_param(rctbl, bool, 0444);
59MODULE_PARM_DESC(rctbl, "Handle rate control table");
60
Johannes Berg8c66a3d2014-01-10 20:07:49 +010061static bool support_p2p_device = true;
62module_param(support_p2p_device, bool, 0444);
63MODULE_PARM_DESC(support_p2p_device, "Support P2P-Device interface type");
64
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040065/**
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.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030089 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040090 * 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,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200167 NL80211_RRF_NO_IR),
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -0400168 }
169};
170
Johannes Berg26b0e412014-01-10 13:37:38 +0100171static const struct ieee80211_regdomain *hwsim_world_regdom_custom[] = {
172 &hwsim_world_regdom_custom_01,
173 &hwsim_world_regdom_custom_02,
174};
175
Johannes Berg8aa21e62008-09-11 02:16:36 +0200176struct hwsim_vif_priv {
177 u32 magic;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200178 u8 bssid[ETH_ALEN];
179 bool assoc;
Jouni Malinen0bb861e2013-10-22 14:11:17 +0300180 bool bcn_en;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200181 u16 aid;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200182};
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;
Johannes Berge8261172012-07-27 19:48:26 +0200189 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);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200192}
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}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300205
Johannes Berg81c06522008-09-11 02:17:01 +0200206struct hwsim_sta_priv {
207 u32 magic;
208};
209
Johannes Berge8261172012-07-27 19:48:26 +0200210#define HWSIM_STA_MAGIC 0x6d537749
Johannes Berg81c06522008-09-11 02:17:01 +0200211
212static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
213{
214 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200215 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
Johannes Berg81c06522008-09-11 02:17:01 +0200216}
217
218static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
219{
220 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200221 sp->magic = HWSIM_STA_MAGIC;
Johannes Berg81c06522008-09-11 02:17:01 +0200222}
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
Johannes Berge8261172012-07-27 19:48:26 +0200230struct 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
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +0300254static unsigned int hwsim_net_id;
Martin Willi100cb9f2016-05-09 18:33:59 +0200255
Matthew Wilcox60a05272018-04-10 16:36:33 -0700256static DEFINE_IDA(hwsim_netgroup_ida);
Martin Willi100cb9f2016-05-09 18:33:59 +0200257
258struct hwsim_net {
259 int netgroup;
Martin Willif21e4d82016-05-14 10:34:44 +0200260 u32 wmediumd;
Martin Willi100cb9f2016-05-09 18:33:59 +0200261};
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
Kirill Tkhai03695542018-03-01 14:30:09 +0300270static inline int hwsim_net_set_netgroup(struct net *net)
Martin Willi100cb9f2016-05-09 18:33:59 +0200271{
272 struct hwsim_net *hwsim_net = net_generic(net, hwsim_net_id);
273
Kirill Tkhai03695542018-03-01 14:30:09 +0300274 hwsim_net->netgroup = ida_simple_get(&hwsim_netgroup_ida,
275 0, 0, GFP_KERNEL);
276 return hwsim_net->netgroup >= 0 ? 0 : -ENOMEM;
Martin Willi100cb9f2016-05-09 18:33:59 +0200277}
278
Martin Willif21e4d82016-05-14 10:34:44 +0200279static 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
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300293static struct class *hwsim_class;
294
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300295static struct net_device *hwsim_mon; /* global monitor netdev */
296
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800297#define CHAN2G(_freq) { \
Johannes Berg57fbcce2016-04-12 15:56:15 +0200298 .band = NL80211_BAND_2GHZ, \
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800299 .center_freq = (_freq), \
300 .hw_value = (_freq), \
301 .max_power = 20, \
302}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300303
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800304#define CHAN5G(_freq) { \
Johannes Berg57fbcce2016-04-12 15:56:15 +0200305 .band = NL80211_BAND_5GHZ, \
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800306 .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 */
Jouni Malinen85bbd802017-03-06 11:56:06 +0200356 CHAN5G(5845), /* Channel 169 */
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300357};
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
Jouni Malinend5d011b2015-02-26 15:26:54 +0200374#define OUI_QCA 0x001374
375#define QCA_NL80211_SUBCMD_TEST 1
376enum qca_nl80211_vendor_subcmds {
377 QCA_WLAN_VENDOR_ATTR_TEST = 8,
378 QCA_WLAN_VENDOR_ATTR_MAX = QCA_WLAN_VENDOR_ATTR_TEST
379};
380
381static const struct nla_policy
382hwsim_vendor_test_policy[QCA_WLAN_VENDOR_ATTR_MAX + 1] = {
383 [QCA_WLAN_VENDOR_ATTR_MAX] = { .type = NLA_U32 },
384};
385
386static int mac80211_hwsim_vendor_cmd_test(struct wiphy *wiphy,
387 struct wireless_dev *wdev,
388 const void *data, int data_len)
389{
390 struct sk_buff *skb;
391 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_MAX + 1];
392 int err;
393 u32 val;
394
395 err = nla_parse(tb, QCA_WLAN_VENDOR_ATTR_MAX, data, data_len,
Johannes Bergfceb6432017-04-12 14:34:07 +0200396 hwsim_vendor_test_policy, NULL);
Jouni Malinend5d011b2015-02-26 15:26:54 +0200397 if (err)
398 return err;
399 if (!tb[QCA_WLAN_VENDOR_ATTR_TEST])
400 return -EINVAL;
401 val = nla_get_u32(tb[QCA_WLAN_VENDOR_ATTR_TEST]);
Lubomir Rintel62b093b2017-09-18 15:56:51 +0200402 wiphy_dbg(wiphy, "%s: test=%u\n", __func__, val);
Jouni Malinend5d011b2015-02-26 15:26:54 +0200403
404 /* Send a vendor event as a test. Note that this would not normally be
405 * done within a command handler, but rather, based on some other
406 * trigger. For simplicity, this command is used to trigger the event
407 * here.
408 *
409 * event_idx = 0 (index in mac80211_hwsim_vendor_commands)
410 */
411 skb = cfg80211_vendor_event_alloc(wiphy, wdev, 100, 0, GFP_KERNEL);
412 if (skb) {
413 /* skb_put() or nla_put() will fill up data within
414 * NL80211_ATTR_VENDOR_DATA.
415 */
416
417 /* Add vendor data */
418 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_TEST, val + 1);
419
420 /* Send the event - this will call nla_nest_end() */
421 cfg80211_vendor_event(skb, GFP_KERNEL);
422 }
423
424 /* Send a response to the command */
425 skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, 10);
426 if (!skb)
427 return -ENOMEM;
428
429 /* skb_put() or nla_put() will fill up data within
430 * NL80211_ATTR_VENDOR_DATA
431 */
432 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_TEST, val + 2);
433
434 return cfg80211_vendor_cmd_reply(skb);
435}
436
437static struct wiphy_vendor_command mac80211_hwsim_vendor_commands[] = {
438 {
439 .info = { .vendor_id = OUI_QCA,
440 .subcmd = QCA_NL80211_SUBCMD_TEST },
441 .flags = WIPHY_VENDOR_CMD_NEED_NETDEV,
442 .doit = mac80211_hwsim_vendor_cmd_test,
443 }
444};
445
446/* Advertise support vendor specific events */
447static const struct nl80211_vendor_cmd_info mac80211_hwsim_vendor_events[] = {
448 { .vendor_id = OUI_QCA, .subcmd = 1 },
449};
450
Johannes Bergde0421d2014-01-06 23:12:12 +0100451static const struct ieee80211_iface_limit hwsim_if_limits[] = {
452 { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
453 { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) |
454 BIT(NL80211_IFTYPE_P2P_CLIENT) |
455#ifdef CONFIG_MAC80211_MESH
456 BIT(NL80211_IFTYPE_MESH_POINT) |
457#endif
458 BIT(NL80211_IFTYPE_AP) |
459 BIT(NL80211_IFTYPE_P2P_GO) },
Johannes Berg8c66a3d2014-01-10 20:07:49 +0100460 /* must be last, see hwsim_if_comb */
461 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) }
Johannes Bergde0421d2014-01-06 23:12:12 +0100462};
463
Johannes Bergde0421d2014-01-06 23:12:12 +0100464static const struct ieee80211_iface_combination hwsim_if_comb[] = {
465 {
466 .limits = hwsim_if_limits,
Johannes Berg8c66a3d2014-01-10 20:07:49 +0100467 /* remove the last entry which is P2P_DEVICE */
468 .n_limits = ARRAY_SIZE(hwsim_if_limits) - 1,
469 .max_interfaces = 2048,
470 .num_different_channels = 1,
Johannes Berg8c66a3d2014-01-10 20:07:49 +0100471 .radar_detect_widths = BIT(NL80211_CHAN_WIDTH_20_NOHT) |
472 BIT(NL80211_CHAN_WIDTH_20) |
473 BIT(NL80211_CHAN_WIDTH_40) |
474 BIT(NL80211_CHAN_WIDTH_80) |
475 BIT(NL80211_CHAN_WIDTH_160),
Ilan Peerf7736f52016-07-05 15:23:09 +0300476 },
Johannes Berg8c66a3d2014-01-10 20:07:49 +0100477};
478
479static const struct ieee80211_iface_combination hwsim_if_comb_p2p_dev[] = {
480 {
481 .limits = hwsim_if_limits,
Johannes Bergde0421d2014-01-06 23:12:12 +0100482 .n_limits = ARRAY_SIZE(hwsim_if_limits),
483 .max_interfaces = 2048,
484 .num_different_channels = 1,
Johannes Bergde0421d2014-01-06 23:12:12 +0100485 .radar_detect_widths = BIT(NL80211_CHAN_WIDTH_20_NOHT) |
486 BIT(NL80211_CHAN_WIDTH_20) |
487 BIT(NL80211_CHAN_WIDTH_40) |
488 BIT(NL80211_CHAN_WIDTH_80) |
489 BIT(NL80211_CHAN_WIDTH_160),
Ilan Peerf7736f52016-07-05 15:23:09 +0300490 },
Johannes Bergde0421d2014-01-06 23:12:12 +0100491};
492
Johannes Berg0e057d732008-09-12 00:39:22 +0200493static spinlock_t hwsim_radio_lock;
Johannes Bergb59abfb2016-09-15 16:30:03 +0300494static LIST_HEAD(hwsim_radios);
Benjamin Beichlerb71d8562018-01-10 17:42:51 +0100495static struct workqueue_struct *hwsim_wq;
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +0100496static struct rhashtable hwsim_radios_rht;
Johannes Berg2d689922014-01-06 22:56:30 +0100497static int hwsim_radio_idx;
Benjamin Beichler63356982018-01-22 18:04:37 +0100498static int hwsim_radios_generation = 1;
Johannes Berg0e057d732008-09-12 00:39:22 +0200499
Johannes Bergde0421d2014-01-06 23:12:12 +0100500static struct platform_driver mac80211_hwsim_driver = {
501 .driver = {
502 .name = "mac80211_hwsim",
Johannes Bergde0421d2014-01-06 23:12:12 +0100503 },
504};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300505
506struct mac80211_hwsim_data {
Johannes Berg0e057d732008-09-12 00:39:22 +0200507 struct list_head list;
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +0100508 struct rhash_head rht;
Johannes Berg0e057d732008-09-12 00:39:22 +0200509 struct ieee80211_hw *hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300510 struct device *dev;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200511 struct ieee80211_supported_band bands[NUM_NL80211_BANDS];
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800512 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
513 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300514 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
Johannes Berg38ed5042014-01-06 22:11:06 +0100515 struct ieee80211_iface_combination if_combination;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300516
Johannes Bergef15aac2010-01-20 12:02:33 +0100517 struct mac_address addresses[2];
Johannes Bergbc791092014-01-06 23:29:20 +0100518 int channels, idx;
Luciano Coelho361c3e02014-02-10 15:23:03 +0200519 bool use_chanctx;
Jukka Rissanene9ed49b2014-10-09 15:27:51 +0300520 bool destroy_on_close;
521 struct work_struct destroy_work;
522 u32 portid;
Patrik Flykt93d638d2014-11-12 16:42:40 +0200523 char alpha2[2];
524 const struct ieee80211_regdomain *regd;
Johannes Bergef15aac2010-01-20 12:02:33 +0100525
Johannes Berge8261172012-07-27 19:48:26 +0200526 struct ieee80211_channel *tmp_chan;
Johannes Berg661ef472015-11-24 18:29:45 +0100527 struct ieee80211_channel *roc_chan;
528 u32 roc_duration;
529 struct delayed_work roc_start;
Johannes Berge8261172012-07-27 19:48:26 +0200530 struct delayed_work roc_done;
531 struct delayed_work hw_scan;
532 struct cfg80211_scan_request *hw_scan_request;
533 struct ieee80211_vif *hw_scan_vif;
534 int scan_chan_idx;
Johannes Berg339467b2014-06-12 22:41:00 +0200535 u8 scan_addr[ETH_ALEN];
Johannes Berg7f813ce2013-11-06 10:37:34 +0100536 struct {
537 struct ieee80211_channel *channel;
538 unsigned long next_start, start, end;
539 } survey_data[ARRAY_SIZE(hwsim_channels_2ghz) +
540 ARRAY_SIZE(hwsim_channels_5ghz)];
Johannes Berge8261172012-07-27 19:48:26 +0200541
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300542 struct ieee80211_channel *channel;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800543 u64 beacon_int /* beacon interval in us */;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300544 unsigned int rx_filter;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400545 bool started, idle, scanning;
546 struct mutex mutex;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800547 struct tasklet_hrtimer beacon_timer;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200548 enum ps_mode {
549 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
550 } ps;
551 bool ps_poll_pending;
552 struct dentry *debugfs;
Daniel Wagner73606d02009-05-18 19:49:25 +0200553
Johannes Berg959eb2f2015-11-06 11:57:23 +0100554 uintptr_t pending_cookie;
Javier Lopez78825132011-06-01 11:26:13 +0200555 struct sk_buff_head pending; /* packets pending */
Daniel Wagner73606d02009-05-18 19:49:25 +0200556 /*
557 * Only radios in the same group can communicate together (the
558 * channel has to match too). Each bit represents a group. A
Ben Greear9ebac152014-09-25 14:22:20 -0700559 * radio can be in more than one group.
Daniel Wagner73606d02009-05-18 19:49:25 +0200560 */
561 u64 group;
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700562
Martin Willi100cb9f2016-05-09 18:33:59 +0200563 /* group shared by radios created in the same netns */
564 int netgroup;
Martin Willif21e4d82016-05-14 10:34:44 +0200565 /* wmediumd portid responsible for netgroup of this radio */
566 u32 wmediumd;
Martin Willi100cb9f2016-05-09 18:33:59 +0200567
Javier Cardona2f40b942012-03-05 17:20:37 -0800568 /* difference between this hw's clock and the real clock, in usecs */
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800569 s64 tsf_offset;
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800570 s64 bcn_delta;
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800571 /* absolute beacon transmission time. Used to cover up "tx" delay. */
572 u64 abs_bcn_ts;
Ben Greear2155c3f2014-10-22 12:22:58 -0700573
574 /* Stats */
575 u64 tx_pkts;
576 u64 rx_pkts;
577 u64 tx_bytes;
578 u64 rx_bytes;
579 u64 tx_dropped;
580 u64 tx_failed;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300581};
582
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +0100583static const struct rhashtable_params hwsim_rht_params = {
584 .nelem_hint = 2,
585 .automatic_shrinking = true,
586 .key_len = ETH_ALEN,
587 .key_offset = offsetof(struct mac80211_hwsim_data, addresses[1]),
588 .head_offset = offsetof(struct mac80211_hwsim_data, rht),
589};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300590
591struct hwsim_radiotap_hdr {
592 struct ieee80211_radiotap_header hdr;
Javier Cardona2f40b942012-03-05 17:20:37 -0800593 __le64 rt_tsft;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300594 u8 rt_flags;
595 u8 rt_rate;
596 __le16 rt_channel;
597 __le16 rt_chbitmask;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000598} __packed;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300599
Jouni Malinen76a56eb2013-11-02 15:57:36 +0200600struct hwsim_radiotap_ack_hdr {
601 struct ieee80211_radiotap_header hdr;
602 u8 rt_flags;
603 u8 pad;
604 __le16 rt_channel;
605 __le16 rt_chbitmask;
606} __packed;
607
Johannes Berg489111e2016-10-24 14:40:03 +0200608/* MAC80211_HWSIM netlink family */
609static struct genl_family hwsim_genl_family;
Javier Lopez78825132011-06-01 11:26:13 +0200610
Jukka Rissanen62759362014-10-31 14:48:47 +0200611enum hwsim_multicast_groups {
612 HWSIM_MCGRP_CONFIG,
613};
614
615static const struct genl_multicast_group hwsim_mcgrps[] = {
616 [HWSIM_MCGRP_CONFIG] = { .name = "config", },
617};
618
Javier Lopez78825132011-06-01 11:26:13 +0200619/* MAC80211_HWSIM netlink policy */
620
Johannes Berg205d2422014-01-21 00:06:29 +0100621static const struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
Johannes Berg9ddd12a2014-01-06 23:03:02 +0100622 [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
623 [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
Javier Lopez78825132011-06-01 11:26:13 +0200624 [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
625 .len = IEEE80211_MAX_DATA_LEN },
626 [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 },
627 [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 },
628 [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 },
629 [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC,
Johannes Berg9ddd12a2014-01-06 23:03:02 +0100630 .len = IEEE80211_TX_MAX_RATES *
631 sizeof(struct hwsim_tx_rate)},
Javier Lopez78825132011-06-01 11:26:13 +0200632 [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 },
Johannes Bergbc791092014-01-06 23:29:20 +0100633 [HWSIM_ATTR_CHANNELS] = { .type = NLA_U32 },
634 [HWSIM_ATTR_RADIO_ID] = { .type = NLA_U32 },
Johannes Berg26b0e412014-01-10 13:37:38 +0100635 [HWSIM_ATTR_REG_HINT_ALPHA2] = { .type = NLA_STRING, .len = 2 },
636 [HWSIM_ATTR_REG_CUSTOM_REG] = { .type = NLA_U32 },
637 [HWSIM_ATTR_REG_STRICT_REG] = { .type = NLA_FLAG },
Johannes Berg8c66a3d2014-01-10 20:07:49 +0100638 [HWSIM_ATTR_SUPPORT_P2P_DEVICE] = { .type = NLA_FLAG },
Jukka Rissanene9ed49b2014-10-09 15:27:51 +0300639 [HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE] = { .type = NLA_FLAG },
Johannes Bergde29eda2014-10-31 09:25:43 +0100640 [HWSIM_ATTR_RADIO_NAME] = { .type = NLA_STRING },
641 [HWSIM_ATTR_NO_VIF] = { .type = NLA_FLAG },
642 [HWSIM_ATTR_FREQ] = { .type = NLA_U32 },
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +0100643 [HWSIM_ATTR_PERM_ADDR] = { .type = NLA_UNSPEC, .len = ETH_ALEN },
Javier Lopez78825132011-06-01 11:26:13 +0200644};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300645
Johannes Bergde0421d2014-01-06 23:12:12 +0100646static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
647 struct sk_buff *skb,
648 struct ieee80211_channel *chan);
649
650/* sysfs attributes */
651static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
652{
653 struct mac80211_hwsim_data *data = dat;
654 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
655 struct sk_buff *skb;
656 struct ieee80211_pspoll *pspoll;
657
658 if (!vp->assoc)
659 return;
660
Lubomir Rintel62b093b2017-09-18 15:56:51 +0200661 wiphy_dbg(data->hw->wiphy,
662 "%s: send PS-Poll to %pM for aid %d\n",
663 __func__, vp->bssid, vp->aid);
Johannes Bergde0421d2014-01-06 23:12:12 +0100664
665 skb = dev_alloc_skb(sizeof(*pspoll));
666 if (!skb)
667 return;
Johannes Berg4df864c2017-06-16 14:29:21 +0200668 pspoll = skb_put(skb, sizeof(*pspoll));
Johannes Bergde0421d2014-01-06 23:12:12 +0100669 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
670 IEEE80211_STYPE_PSPOLL |
671 IEEE80211_FCTL_PM);
672 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
673 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
674 memcpy(pspoll->ta, mac, ETH_ALEN);
675
676 rcu_read_lock();
677 mac80211_hwsim_tx_frame(data->hw, skb,
678 rcu_dereference(vif->chanctx_conf)->def.chan);
679 rcu_read_unlock();
680}
681
682static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
683 struct ieee80211_vif *vif, int ps)
684{
685 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
686 struct sk_buff *skb;
687 struct ieee80211_hdr *hdr;
688
689 if (!vp->assoc)
690 return;
691
Lubomir Rintel62b093b2017-09-18 15:56:51 +0200692 wiphy_dbg(data->hw->wiphy,
693 "%s: send data::nullfunc to %pM ps=%d\n",
694 __func__, vp->bssid, ps);
Johannes Bergde0421d2014-01-06 23:12:12 +0100695
696 skb = dev_alloc_skb(sizeof(*hdr));
697 if (!skb)
698 return;
Johannes Berg4df864c2017-06-16 14:29:21 +0200699 hdr = skb_put(skb, sizeof(*hdr) - ETH_ALEN);
Johannes Bergde0421d2014-01-06 23:12:12 +0100700 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
701 IEEE80211_STYPE_NULLFUNC |
Adiel Alonib65c7b82017-12-18 12:14:04 +0200702 IEEE80211_FCTL_TODS |
Johannes Bergde0421d2014-01-06 23:12:12 +0100703 (ps ? IEEE80211_FCTL_PM : 0));
704 hdr->duration_id = cpu_to_le16(0);
705 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
706 memcpy(hdr->addr2, mac, ETH_ALEN);
707 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
708
709 rcu_read_lock();
710 mac80211_hwsim_tx_frame(data->hw, skb,
711 rcu_dereference(vif->chanctx_conf)->def.chan);
712 rcu_read_unlock();
713}
714
715
716static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
717 struct ieee80211_vif *vif)
718{
719 struct mac80211_hwsim_data *data = dat;
720 hwsim_send_nullfunc(data, mac, vif, 1);
721}
722
723static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
724 struct ieee80211_vif *vif)
725{
726 struct mac80211_hwsim_data *data = dat;
727 hwsim_send_nullfunc(data, mac, vif, 0);
728}
729
730static int hwsim_fops_ps_read(void *dat, u64 *val)
731{
732 struct mac80211_hwsim_data *data = dat;
733 *val = data->ps;
734 return 0;
735}
736
737static int hwsim_fops_ps_write(void *dat, u64 val)
738{
739 struct mac80211_hwsim_data *data = dat;
740 enum ps_mode old_ps;
741
742 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
743 val != PS_MANUAL_POLL)
744 return -EINVAL;
745
Adiel Alonie16ea4b2017-12-01 13:50:53 +0200746 if (val == PS_MANUAL_POLL) {
747 if (data->ps != PS_ENABLED)
748 return -EINVAL;
749 local_bh_disable();
750 ieee80211_iterate_active_interfaces_atomic(
751 data->hw, IEEE80211_IFACE_ITER_NORMAL,
752 hwsim_send_ps_poll, data);
753 local_bh_enable();
754 return 0;
755 }
Johannes Bergde0421d2014-01-06 23:12:12 +0100756 old_ps = data->ps;
757 data->ps = val;
758
Johannes Berga809ca52015-01-09 11:29:50 +0100759 local_bh_disable();
Adiel Alonie16ea4b2017-12-01 13:50:53 +0200760 if (old_ps == PS_DISABLED && val != PS_DISABLED) {
Johannes Berga809ca52015-01-09 11:29:50 +0100761 ieee80211_iterate_active_interfaces_atomic(
762 data->hw, IEEE80211_IFACE_ITER_NORMAL,
763 hwsim_send_nullfunc_ps, data);
Johannes Bergde0421d2014-01-06 23:12:12 +0100764 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
Johannes Berga809ca52015-01-09 11:29:50 +0100765 ieee80211_iterate_active_interfaces_atomic(
766 data->hw, IEEE80211_IFACE_ITER_NORMAL,
767 hwsim_send_nullfunc_no_ps, data);
Johannes Bergde0421d2014-01-06 23:12:12 +0100768 }
Johannes Berga809ca52015-01-09 11:29:50 +0100769 local_bh_enable();
Johannes Bergde0421d2014-01-06 23:12:12 +0100770
771 return 0;
772}
773
774DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
775 "%llu\n");
776
777static int hwsim_write_simulate_radar(void *dat, u64 val)
778{
779 struct mac80211_hwsim_data *data = dat;
780
781 ieee80211_radar_detected(data->hw);
782
783 return 0;
784}
785
786DEFINE_SIMPLE_ATTRIBUTE(hwsim_simulate_radar, NULL,
787 hwsim_write_simulate_radar, "%llu\n");
788
789static int hwsim_fops_group_read(void *dat, u64 *val)
790{
791 struct mac80211_hwsim_data *data = dat;
792 *val = data->group;
793 return 0;
794}
795
796static int hwsim_fops_group_write(void *dat, u64 val)
797{
798 struct mac80211_hwsim_data *data = dat;
799 data->group = val;
800 return 0;
801}
802
803DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
804 hwsim_fops_group_read, hwsim_fops_group_write,
805 "%llx\n");
806
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000807static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
808 struct net_device *dev)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300809{
810 /* TODO: allow packet injection */
811 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000812 return NETDEV_TX_OK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300813}
814
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800815static inline u64 mac80211_hwsim_get_tsf_raw(void)
816{
817 return ktime_to_us(ktime_get_real());
818}
819
Javier Cardona2f40b942012-03-05 17:20:37 -0800820static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data)
821{
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800822 u64 now = mac80211_hwsim_get_tsf_raw();
Javier Cardona2f40b942012-03-05 17:20:37 -0800823 return cpu_to_le64(now + data->tsf_offset);
824}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300825
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800826static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw,
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800827 struct ieee80211_vif *vif)
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800828{
829 struct mac80211_hwsim_data *data = hw->priv;
830 return le64_to_cpu(__mac80211_hwsim_get_tsf(data));
831}
832
833static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw,
834 struct ieee80211_vif *vif, u64 tsf)
835{
836 struct mac80211_hwsim_data *data = hw->priv;
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800837 u64 now = mac80211_hwsim_get_tsf(hw, vif);
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800838 u32 bcn_int = data->beacon_int;
Andrew Morton79211c82015-11-09 14:58:13 -0800839 u64 delta = abs(tsf - now);
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800840
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800841 /* adjust after beaconing with new timestamp at old TBTT */
Andrew Bresticker5d26b502014-07-22 14:43:51 -0700842 if (tsf > now) {
843 data->tsf_offset += delta;
844 data->bcn_delta = do_div(delta, bcn_int);
845 } else {
846 data->tsf_offset -= delta;
Benjamin Beichler4fb7f8a2016-11-11 17:37:56 +0100847 data->bcn_delta = -(s64)do_div(delta, bcn_int);
Andrew Bresticker5d26b502014-07-22 14:43:51 -0700848 }
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800849}
850
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300851static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200852 struct sk_buff *tx_skb,
853 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300854{
855 struct mac80211_hwsim_data *data = hw->priv;
856 struct sk_buff *skb;
857 struct hwsim_radiotap_hdr *hdr;
858 u16 flags;
859 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
860 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
861
Amit Khatri89f44d82015-11-30 12:46:52 +0530862 if (WARN_ON(!txrate))
863 return;
864
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300865 if (!netif_running(hwsim_mon))
866 return;
867
868 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
869 if (skb == NULL)
870 return;
871
Johannes Bergd58ff352017-06-16 14:29:23 +0200872 hdr = skb_push(skb, sizeof(*hdr));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300873 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
874 hdr->hdr.it_pad = 0;
875 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
Jouni Malinenf248f102008-06-13 19:44:47 +0300876 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
877 (1 << IEEE80211_RADIOTAP_RATE) |
Javier Cardona2f40b942012-03-05 17:20:37 -0800878 (1 << IEEE80211_RADIOTAP_TSFT) |
Jouni Malinenf248f102008-06-13 19:44:47 +0300879 (1 << IEEE80211_RADIOTAP_CHANNEL));
Javier Cardona2f40b942012-03-05 17:20:37 -0800880 hdr->rt_tsft = __mac80211_hwsim_get_tsf(data);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300881 hdr->rt_flags = 0;
882 hdr->rt_rate = txrate->bitrate / 5;
Johannes Berge8261172012-07-27 19:48:26 +0200883 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300884 flags = IEEE80211_CHAN_2GHZ;
885 if (txrate->flags & IEEE80211_RATE_ERP_G)
886 flags |= IEEE80211_CHAN_OFDM;
887 else
888 flags |= IEEE80211_CHAN_CCK;
889 hdr->rt_chbitmask = cpu_to_le16(flags);
890
891 skb->dev = hwsim_mon;
Zhang Shengju6b163a82016-03-03 01:16:55 +0000892 skb_reset_mac_header(skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300893 skb->ip_summed = CHECKSUM_UNNECESSARY;
894 skb->pkt_type = PACKET_OTHERHOST;
Jouni Malinenf248f102008-06-13 19:44:47 +0300895 skb->protocol = htons(ETH_P_802_2);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300896 memset(skb->cb, 0, sizeof(skb->cb));
897 netif_rx(skb);
898}
899
900
Johannes Berge8261172012-07-27 19:48:26 +0200901static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan,
902 const u8 *addr)
Jouni Malinen6c085222009-11-01 11:31:45 +0200903{
Jouni Malinen6c085222009-11-01 11:31:45 +0200904 struct sk_buff *skb;
Jouni Malinen76a56eb2013-11-02 15:57:36 +0200905 struct hwsim_radiotap_ack_hdr *hdr;
Jouni Malinen6c085222009-11-01 11:31:45 +0200906 u16 flags;
907 struct ieee80211_hdr *hdr11;
908
909 if (!netif_running(hwsim_mon))
910 return;
911
912 skb = dev_alloc_skb(100);
913 if (skb == NULL)
914 return;
915
Johannes Berg4df864c2017-06-16 14:29:21 +0200916 hdr = skb_put(skb, sizeof(*hdr));
Jouni Malinen6c085222009-11-01 11:31:45 +0200917 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
918 hdr->hdr.it_pad = 0;
919 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
920 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
921 (1 << IEEE80211_RADIOTAP_CHANNEL));
922 hdr->rt_flags = 0;
Jouni Malinen76a56eb2013-11-02 15:57:36 +0200923 hdr->pad = 0;
Johannes Berge8261172012-07-27 19:48:26 +0200924 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinen6c085222009-11-01 11:31:45 +0200925 flags = IEEE80211_CHAN_2GHZ;
926 hdr->rt_chbitmask = cpu_to_le16(flags);
927
Johannes Berg4df864c2017-06-16 14:29:21 +0200928 hdr11 = skb_put(skb, 10);
Jouni Malinen6c085222009-11-01 11:31:45 +0200929 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
930 IEEE80211_STYPE_ACK);
931 hdr11->duration_id = cpu_to_le16(0);
932 memcpy(hdr11->addr1, addr, ETH_ALEN);
933
934 skb->dev = hwsim_mon;
Zhang Shengju6b163a82016-03-03 01:16:55 +0000935 skb_reset_mac_header(skb);
Jouni Malinen6c085222009-11-01 11:31:45 +0200936 skb->ip_summed = CHECKSUM_UNNECESSARY;
937 skb->pkt_type = PACKET_OTHERHOST;
938 skb->protocol = htons(ETH_P_802_2);
939 memset(skb->cb, 0, sizeof(skb->cb));
940 netif_rx(skb);
941}
942
Johannes Berg3283e2862014-06-12 22:34:49 +0200943struct mac80211_hwsim_addr_match_data {
944 u8 addr[ETH_ALEN];
945 bool ret;
946};
947
948static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
949 struct ieee80211_vif *vif)
950{
951 struct mac80211_hwsim_addr_match_data *md = data;
952
953 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
954 md->ret = true;
955}
956
957static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
958 const u8 *addr)
959{
960 struct mac80211_hwsim_addr_match_data md = {
961 .ret = false,
962 };
963
Johannes Berg339467b2014-06-12 22:41:00 +0200964 if (data->scanning && memcmp(addr, data->scan_addr, ETH_ALEN) == 0)
965 return true;
966
Johannes Berg3283e2862014-06-12 22:34:49 +0200967 memcpy(md.addr, addr, ETH_ALEN);
968
969 ieee80211_iterate_active_interfaces_atomic(data->hw,
970 IEEE80211_IFACE_ITER_NORMAL,
971 mac80211_hwsim_addr_iter,
972 &md);
973
974 return md.ret;
975}
Jouni Malinen6c085222009-11-01 11:31:45 +0200976
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200977static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
978 struct sk_buff *skb)
979{
980 switch (data->ps) {
981 case PS_DISABLED:
982 return true;
983 case PS_ENABLED:
984 return false;
985 case PS_AUTO_POLL:
986 /* TODO: accept (some) Beacons by default and other frames only
987 * if pending PS-Poll has been sent */
988 return true;
989 case PS_MANUAL_POLL:
990 /* Allow unicast frames to own address if there is a pending
991 * PS-Poll */
992 if (data->ps_poll_pending &&
Johannes Berg3283e2862014-06-12 22:34:49 +0200993 mac80211_hwsim_addr_match(data, skb->data + 4)) {
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200994 data->ps_poll_pending = false;
995 return true;
996 }
997 return false;
998 }
999
1000 return true;
1001}
1002
Martin Willif21e4d82016-05-14 10:34:44 +02001003static int hwsim_unicast_netgroup(struct mac80211_hwsim_data *data,
1004 struct sk_buff *skb, int portid)
1005{
1006 struct net *net;
1007 bool found = false;
1008 int res = -ENOENT;
1009
1010 rcu_read_lock();
1011 for_each_net_rcu(net) {
1012 if (data->netgroup == hwsim_net_get_netgroup(net)) {
1013 res = genlmsg_unicast(net, skb, portid);
1014 found = true;
1015 break;
1016 }
1017 }
1018 rcu_read_unlock();
1019
1020 if (!found)
1021 nlmsg_free(skb);
1022
1023 return res;
1024}
1025
Benjamin Beichler6e3d6ca12018-01-10 17:42:55 +01001026static inline u16 trans_tx_rate_flags_ieee2hwsim(struct ieee80211_tx_rate *rate)
1027{
1028 u16 result = 0;
1029
1030 if (rate->flags & IEEE80211_TX_RC_USE_RTS_CTS)
1031 result |= MAC80211_HWSIM_TX_RC_USE_RTS_CTS;
1032 if (rate->flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
1033 result |= MAC80211_HWSIM_TX_RC_USE_CTS_PROTECT;
1034 if (rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
1035 result |= MAC80211_HWSIM_TX_RC_USE_SHORT_PREAMBLE;
1036 if (rate->flags & IEEE80211_TX_RC_MCS)
1037 result |= MAC80211_HWSIM_TX_RC_MCS;
1038 if (rate->flags & IEEE80211_TX_RC_GREEN_FIELD)
1039 result |= MAC80211_HWSIM_TX_RC_GREEN_FIELD;
1040 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
1041 result |= MAC80211_HWSIM_TX_RC_40_MHZ_WIDTH;
1042 if (rate->flags & IEEE80211_TX_RC_DUP_DATA)
1043 result |= MAC80211_HWSIM_TX_RC_DUP_DATA;
1044 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
1045 result |= MAC80211_HWSIM_TX_RC_SHORT_GI;
1046 if (rate->flags & IEEE80211_TX_RC_VHT_MCS)
1047 result |= MAC80211_HWSIM_TX_RC_VHT_MCS;
1048 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1049 result |= MAC80211_HWSIM_TX_RC_80_MHZ_WIDTH;
1050 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
1051 result |= MAC80211_HWSIM_TX_RC_160_MHZ_WIDTH;
1052
1053 return result;
1054}
1055
Javier Lopez78825132011-06-01 11:26:13 +02001056static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw,
1057 struct sk_buff *my_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001058 int dst_portid)
Javier Lopez78825132011-06-01 11:26:13 +02001059{
1060 struct sk_buff *skb;
1061 struct mac80211_hwsim_data *data = hw->priv;
1062 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data;
1063 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb);
1064 void *msg_head;
1065 unsigned int hwsim_flags = 0;
1066 int i;
1067 struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES];
Benjamin Beichler6e3d6ca12018-01-10 17:42:55 +01001068 struct hwsim_tx_rate_flag tx_attempts_flags[IEEE80211_TX_MAX_RATES];
Johannes Berg959eb2f2015-11-06 11:57:23 +01001069 uintptr_t cookie;
Jouni Malinen265dc7f2009-12-04 19:10:34 +02001070
Javier Lopez78825132011-06-01 11:26:13 +02001071 if (data->ps != PS_DISABLED)
1072 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1073 /* If the queue contains MAX_QUEUE skb's drop some */
1074 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
1075 /* Droping until WARN_QUEUE level */
Ben Greear2155c3f2014-10-22 12:22:58 -07001076 while (skb_queue_len(&data->pending) >= WARN_QUEUE) {
Ben Greearb7bc9672014-09-25 14:22:18 -07001077 ieee80211_free_txskb(hw, skb_dequeue(&data->pending));
Ben Greear2155c3f2014-10-22 12:22:58 -07001078 data->tx_dropped++;
1079 }
Javier Lopez78825132011-06-01 11:26:13 +02001080 }
1081
Thomas Graf58050fc2012-06-28 03:57:45 +00001082 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Javier Lopez78825132011-06-01 11:26:13 +02001083 if (skb == NULL)
1084 goto nla_put_failure;
1085
1086 msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
1087 HWSIM_CMD_FRAME);
1088 if (msg_head == NULL) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001089 pr_debug("mac80211_hwsim: problem with msg_head\n");
Javier Lopez78825132011-06-01 11:26:13 +02001090 goto nla_put_failure;
1091 }
1092
Bob Copeland354210f2015-12-19 09:59:37 -05001093 if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER,
1094 ETH_ALEN, data->addresses[1].addr))
David S. Miller633c9382012-04-01 21:03:30 -04001095 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +02001096
1097 /* We get the skb->data */
David S. Miller633c9382012-04-01 21:03:30 -04001098 if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data))
1099 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +02001100
1101 /* We get the flags for this transmission, and we translate them to
1102 wmediumd flags */
1103
1104 if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
1105 hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS;
1106
1107 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
1108 hwsim_flags |= HWSIM_TX_CTL_NO_ACK;
1109
David S. Miller633c9382012-04-01 21:03:30 -04001110 if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags))
1111 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +02001112
Ben Greear4f86ed82014-10-27 15:04:46 -07001113 if (nla_put_u32(skb, HWSIM_ATTR_FREQ, data->channel->center_freq))
1114 goto nla_put_failure;
1115
Javier Lopez78825132011-06-01 11:26:13 +02001116 /* We get the tx control (rate and retries) info*/
1117
1118 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
1119 tx_attempts[i].idx = info->status.rates[i].idx;
Benjamin Beichler6e3d6ca12018-01-10 17:42:55 +01001120 tx_attempts_flags[i].idx = info->status.rates[i].idx;
Javier Lopez78825132011-06-01 11:26:13 +02001121 tx_attempts[i].count = info->status.rates[i].count;
Benjamin Beichler6e3d6ca12018-01-10 17:42:55 +01001122 tx_attempts_flags[i].flags =
1123 trans_tx_rate_flags_ieee2hwsim(
1124 &info->status.rates[i]);
Javier Lopez78825132011-06-01 11:26:13 +02001125 }
1126
David S. Miller633c9382012-04-01 21:03:30 -04001127 if (nla_put(skb, HWSIM_ATTR_TX_INFO,
1128 sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES,
1129 tx_attempts))
1130 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +02001131
Benjamin Beichler6e3d6ca12018-01-10 17:42:55 +01001132 if (nla_put(skb, HWSIM_ATTR_TX_INFO_FLAGS,
1133 sizeof(struct hwsim_tx_rate_flag) * IEEE80211_TX_MAX_RATES,
1134 tx_attempts_flags))
1135 goto nla_put_failure;
1136
Javier Lopez78825132011-06-01 11:26:13 +02001137 /* We create a cookie to identify this skb */
Johannes Berg959eb2f2015-11-06 11:57:23 +01001138 data->pending_cookie++;
1139 cookie = data->pending_cookie;
1140 info->rate_driver_data[0] = (void *)cookie;
Nicolas Dichtel08f4cbb2016-04-26 10:06:12 +02001141 if (nla_put_u64_64bit(skb, HWSIM_ATTR_COOKIE, cookie, HWSIM_ATTR_PAD))
David S. Miller633c9382012-04-01 21:03:30 -04001142 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +02001143
1144 genlmsg_end(skb, msg_head);
Martin Willif21e4d82016-05-14 10:34:44 +02001145 if (hwsim_unicast_netgroup(data, skb, dst_portid))
Bob Copelandf2831e22015-02-05 08:45:43 -05001146 goto err_free_txskb;
Javier Lopez78825132011-06-01 11:26:13 +02001147
1148 /* Enqueue the packet */
1149 skb_queue_tail(&data->pending, my_skb);
Ben Greear2155c3f2014-10-22 12:22:58 -07001150 data->tx_pkts++;
1151 data->tx_bytes += my_skb->len;
Javier Lopez78825132011-06-01 11:26:13 +02001152 return;
1153
1154nla_put_failure:
Bob Copelandf2831e22015-02-05 08:45:43 -05001155 nlmsg_free(skb);
1156err_free_txskb:
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001157 pr_debug("mac80211_hwsim: error occurred in %s\n", __func__);
Ben Greearb7bc9672014-09-25 14:22:18 -07001158 ieee80211_free_txskb(hw, my_skb);
Ben Greear2155c3f2014-10-22 12:22:58 -07001159 data->tx_failed++;
Javier Lopez78825132011-06-01 11:26:13 +02001160}
1161
Johannes Berge8261172012-07-27 19:48:26 +02001162static bool hwsim_chans_compat(struct ieee80211_channel *c1,
1163 struct ieee80211_channel *c2)
1164{
1165 if (!c1 || !c2)
1166 return false;
1167
1168 return c1->center_freq == c2->center_freq;
1169}
1170
1171struct tx_iter_data {
1172 struct ieee80211_channel *channel;
1173 bool receive;
1174};
1175
1176static void mac80211_hwsim_tx_iter(void *_data, u8 *addr,
1177 struct ieee80211_vif *vif)
1178{
1179 struct tx_iter_data *data = _data;
1180
1181 if (!vif->chanctx_conf)
1182 return;
1183
1184 if (!hwsim_chans_compat(data->channel,
Johannes Berg4bf88532012-11-09 11:39:59 +01001185 rcu_dereference(vif->chanctx_conf)->def.chan))
Johannes Berge8261172012-07-27 19:48:26 +02001186 return;
1187
1188 data->receive = true;
1189}
1190
Johannes Berg1f7bba72014-11-06 22:56:36 +01001191static void mac80211_hwsim_add_vendor_rtap(struct sk_buff *skb)
1192{
1193 /*
1194 * To enable this code, #define the HWSIM_RADIOTAP_OUI,
1195 * e.g. like this:
1196 * #define HWSIM_RADIOTAP_OUI "\x02\x00\x00"
1197 * (but you should use a valid OUI, not that)
1198 *
1199 * If anyone wants to 'donate' a radiotap OUI/subns code
1200 * please send a patch removing this #ifdef and changing
1201 * the values accordingly.
1202 */
1203#ifdef HWSIM_RADIOTAP_OUI
1204 struct ieee80211_vendor_radiotap *rtap;
1205
1206 /*
1207 * Note that this code requires the headroom in the SKB
1208 * that was allocated earlier.
1209 */
Johannes Bergd58ff352017-06-16 14:29:23 +02001210 rtap = skb_push(skb, sizeof(*rtap) + 8 + 4);
Johannes Berg1f7bba72014-11-06 22:56:36 +01001211 rtap->oui[0] = HWSIM_RADIOTAP_OUI[0];
1212 rtap->oui[1] = HWSIM_RADIOTAP_OUI[1];
1213 rtap->oui[2] = HWSIM_RADIOTAP_OUI[2];
1214 rtap->subns = 127;
1215
1216 /*
1217 * Radiotap vendor namespaces can (and should) also be
1218 * split into fields by using the standard radiotap
1219 * presence bitmap mechanism. Use just BIT(0) here for
1220 * the presence bitmap.
1221 */
1222 rtap->present = BIT(0);
1223 /* We have 8 bytes of (dummy) data */
1224 rtap->len = 8;
1225 /* For testing, also require it to be aligned */
1226 rtap->align = 8;
1227 /* And also test that padding works, 4 bytes */
1228 rtap->pad = 4;
1229 /* push the data */
1230 memcpy(rtap->data, "ABCDEFGH", 8);
1231 /* make sure to clear padding, mac80211 doesn't */
1232 memset(rtap->data + 8, 0, 4);
1233
1234 IEEE80211_SKB_RXCB(skb)->flag |= RX_FLAG_RADIOTAP_VENDOR_DATA;
1235#endif
1236}
1237
Javier Lopez78825132011-06-01 11:26:13 +02001238static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +02001239 struct sk_buff *skb,
1240 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001241{
Johannes Berg0e057d732008-09-12 00:39:22 +02001242 struct mac80211_hwsim_data *data = hw->priv, *data2;
1243 bool ack = false;
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001244 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001245 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001246 struct ieee80211_rx_status rx_status;
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001247 u64 now;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001248
1249 memset(&rx_status, 0, sizeof(rx_status));
Thomas Pedersenf4bda332012-11-13 10:46:27 -08001250 rx_status.flag |= RX_FLAG_MACTIME_START;
Johannes Berge8261172012-07-27 19:48:26 +02001251 rx_status.freq = chan->center_freq;
1252 rx_status.band = chan->band;
Karl Beldandad63302013-04-15 17:09:30 +02001253 if (info->control.rates[0].flags & IEEE80211_TX_RC_VHT_MCS) {
1254 rx_status.rate_idx =
1255 ieee80211_rate_get_vht_mcs(&info->control.rates[0]);
Johannes Berg8613c942017-04-26 13:51:41 +02001256 rx_status.nss =
Karl Beldandad63302013-04-15 17:09:30 +02001257 ieee80211_rate_get_vht_nss(&info->control.rates[0]);
Johannes Bergda6a4352017-04-26 12:14:59 +02001258 rx_status.encoding = RX_ENC_VHT;
Karl Beldandad63302013-04-15 17:09:30 +02001259 } else {
1260 rx_status.rate_idx = info->control.rates[0].idx;
1261 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
Johannes Bergda6a4352017-04-26 12:14:59 +02001262 rx_status.encoding = RX_ENC_HT;
Karl Beldandad63302013-04-15 17:09:30 +02001263 }
Jouni Malinen281ed292011-08-06 23:07:00 +03001264 if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Johannes Berg2f242bf2017-05-05 11:53:19 +02001265 rx_status.bw = RATE_INFO_BW_40;
1266 else if (info->control.rates[0].flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
1267 rx_status.bw = RATE_INFO_BW_80;
1268 else if (info->control.rates[0].flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
1269 rx_status.bw = RATE_INFO_BW_160;
1270 else
1271 rx_status.bw = RATE_INFO_BW_20;
Jouni Malinen281ed292011-08-06 23:07:00 +03001272 if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
Johannes Berg7fdd69c2017-04-26 11:13:00 +02001273 rx_status.enc_flags |= RX_ENC_FLAG_SHORT_GI;
Johannes Berg4b14c962009-07-10 16:56:59 +02001274 /* TODO: simulate real signal strength (and optional packet loss) */
Johannes Berg1d5e9f82017-04-13 10:31:16 +02001275 rx_status.signal = -50;
1276 if (info->control.vif)
1277 rx_status.signal += info->control.vif->bss_conf.txpower;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001278
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001279 if (data->ps != PS_DISABLED)
1280 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1281
Johannes Berg90e30122009-06-18 14:51:12 +02001282 /* release the skb's source info */
1283 skb_orphan(skb);
John W. Linvillec0acf382009-06-30 16:55:52 -04001284 skb_dst_drop(skb);
Johannes Berg90e30122009-06-18 14:51:12 +02001285 skb->mark = 0;
1286 secpath_reset(skb);
1287 nf_reset(skb);
1288
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001289 /*
1290 * Get absolute mactime here so all HWs RX at the "same time", and
1291 * absolute TX time for beacon mactime so the timestamp matches.
1292 * Giving beacons a different mactime than non-beacons looks messy, but
1293 * it helps the Toffset be exact and a ~10us mactime discrepancy
1294 * probably doesn't really matter.
1295 */
1296 if (ieee80211_is_beacon(hdr->frame_control) ||
1297 ieee80211_is_probe_resp(hdr->frame_control))
1298 now = data->abs_bcn_ts;
1299 else
1300 now = mac80211_hwsim_get_tsf_raw();
1301
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001302 /* Copy skb to all enabled radios that are on the current frequency */
Johannes Berg0e057d732008-09-12 00:39:22 +02001303 spin_lock(&hwsim_radio_lock);
1304 list_for_each_entry(data2, &hwsim_radios, list) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001305 struct sk_buff *nskb;
Johannes Berge8261172012-07-27 19:48:26 +02001306 struct tx_iter_data tx_iter_data = {
1307 .receive = false,
1308 .channel = chan,
1309 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001310
Johannes Berg0e057d732008-09-12 00:39:22 +02001311 if (data == data2)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001312 continue;
Johannes Berg0e057d732008-09-12 00:39:22 +02001313
Johannes Berge8261172012-07-27 19:48:26 +02001314 if (!data2->started || (data2->idle && !data2->tmp_chan) ||
1315 !hwsim_ps_rx_ok(data2, skb))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001316 continue;
1317
Johannes Berge8261172012-07-27 19:48:26 +02001318 if (!(data->group & data2->group))
1319 continue;
1320
Martin Willi100cb9f2016-05-09 18:33:59 +02001321 if (data->netgroup != data2->netgroup)
1322 continue;
1323
Johannes Berge8261172012-07-27 19:48:26 +02001324 if (!hwsim_chans_compat(chan, data2->tmp_chan) &&
1325 !hwsim_chans_compat(chan, data2->channel)) {
1326 ieee80211_iterate_active_interfaces_atomic(
Johannes Berg8b2c9822012-11-06 20:23:30 +01001327 data2->hw, IEEE80211_IFACE_ITER_NORMAL,
1328 mac80211_hwsim_tx_iter, &tx_iter_data);
Johannes Berge8261172012-07-27 19:48:26 +02001329 if (!tx_iter_data.receive)
1330 continue;
1331 }
1332
Johannes Berg90b9e4462012-11-16 10:09:08 +01001333 /*
1334 * reserve some space for our vendor and the normal
1335 * radiotap header, since we're copying anyway
1336 */
Johannes Berga357d7f2012-12-10 11:57:42 +01001337 if (skb->len < PAGE_SIZE && paged_rx) {
1338 struct page *page = alloc_page(GFP_ATOMIC);
1339
1340 if (!page)
1341 continue;
1342
1343 nskb = dev_alloc_skb(128);
1344 if (!nskb) {
1345 __free_page(page);
1346 continue;
1347 }
1348
1349 memcpy(page_address(page), skb->data, skb->len);
1350 skb_add_rx_frag(nskb, 0, page, 0, skb->len, skb->len);
1351 } else {
1352 nskb = skb_copy(skb, GFP_ATOMIC);
1353 if (!nskb)
1354 continue;
1355 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001356
Jouni Malinen265dc7f2009-12-04 19:10:34 +02001357 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
Johannes Berg0e057d732008-09-12 00:39:22 +02001358 ack = true;
Javier Cardonaf483ad22012-03-31 11:31:30 -07001359
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001360 rx_status.mactime = now + data2->tsf_offset;
Johannes Berg90b9e4462012-11-16 10:09:08 +01001361
Johannes Bergf1d58c22009-06-17 13:13:00 +02001362 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
Johannes Berg1f7bba72014-11-06 22:56:36 +01001363
1364 mac80211_hwsim_add_vendor_rtap(nskb);
1365
Ben Greear2155c3f2014-10-22 12:22:58 -07001366 data2->rx_pkts++;
1367 data2->rx_bytes += nskb->len;
Johannes Bergf1d58c22009-06-17 13:13:00 +02001368 ieee80211_rx_irqsafe(data2->hw, nskb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001369 }
Johannes Berg0e057d732008-09-12 00:39:22 +02001370 spin_unlock(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001371
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001372 return ack;
1373}
1374
Thomas Huehn36323f82012-07-23 21:33:42 +02001375static void mac80211_hwsim_tx(struct ieee80211_hw *hw,
1376 struct ieee80211_tx_control *control,
1377 struct sk_buff *skb)
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001378{
Johannes Berge8261172012-07-27 19:48:26 +02001379 struct mac80211_hwsim_data *data = hw->priv;
1380 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
Jouni Malinen732b5392015-11-26 20:50:12 +02001381 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Berge8261172012-07-27 19:48:26 +02001382 struct ieee80211_chanctx_conf *chanctx_conf;
1383 struct ieee80211_channel *channel;
Johannes Berg0e057d732008-09-12 00:39:22 +02001384 bool ack;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001385 u32 _portid;
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001386
Johannes Berge8261172012-07-27 19:48:26 +02001387 if (WARN_ON(skb->len < 10)) {
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001388 /* Should not happen; just a sanity check for addr1 use */
Johannes Bergfe0f3cd2013-07-14 23:37:14 +03001389 ieee80211_free_txskb(hw, skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001390 return;
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001391 }
1392
Luciano Coelho361c3e02014-02-10 15:23:03 +02001393 if (!data->use_chanctx) {
Johannes Berge8261172012-07-27 19:48:26 +02001394 channel = data->channel;
1395 } else if (txi->hw_queue == 4) {
1396 channel = data->tmp_chan;
1397 } else {
1398 chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf);
1399 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +01001400 channel = chanctx_conf->def.chan;
Johannes Berge8261172012-07-27 19:48:26 +02001401 else
1402 channel = NULL;
1403 }
1404
1405 if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) {
Johannes Bergfe0f3cd2013-07-14 23:37:14 +03001406 ieee80211_free_txskb(hw, skb);
Johannes Berge8261172012-07-27 19:48:26 +02001407 return;
1408 }
1409
1410 if (data->idle && !data->tmp_chan) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001411 wiphy_dbg(hw->wiphy, "Trying to TX when idle - reject\n");
Johannes Bergfe0f3cd2013-07-14 23:37:14 +03001412 ieee80211_free_txskb(hw, skb);
Johannes Berge8261172012-07-27 19:48:26 +02001413 return;
1414 }
1415
1416 if (txi->control.vif)
1417 hwsim_check_magic(txi->control.vif);
1418 if (control->sta)
1419 hwsim_check_sta_magic(control->sta);
1420
Johannes Berg30686bf2015-06-02 21:39:54 +02001421 if (ieee80211_hw_check(hw, SUPPORTS_RC_TABLE))
Karl Beldan1eb32172013-04-19 14:44:52 +02001422 ieee80211_get_tx_rates(txi->control.vif, control->sta, skb,
1423 txi->control.rates,
1424 ARRAY_SIZE(txi->control.rates));
Johannes Berge8261172012-07-27 19:48:26 +02001425
Jouni Malinen732b5392015-11-26 20:50:12 +02001426 if (skb->len >= 24 + 8 &&
1427 ieee80211_is_probe_resp(hdr->frame_control)) {
1428 /* fake header transmission time */
1429 struct ieee80211_mgmt *mgmt;
1430 struct ieee80211_rate *txrate;
1431 u64 ts;
1432
1433 mgmt = (struct ieee80211_mgmt *)skb->data;
1434 txrate = ieee80211_get_tx_rate(hw, txi);
1435 ts = mac80211_hwsim_get_tsf_raw();
1436 mgmt->u.probe_resp.timestamp =
1437 cpu_to_le64(ts + data->tsf_offset +
1438 24 * 8 * 10 / txrate->bitrate);
1439 }
1440
Johannes Berge8261172012-07-27 19:48:26 +02001441 mac80211_hwsim_monitor_rx(hw, skb, channel);
1442
Javier Lopez78825132011-06-01 11:26:13 +02001443 /* wmediumd mode check */
Mark Rutland6aa7de02017-10-23 14:07:29 -07001444 _portid = READ_ONCE(data->wmediumd);
Javier Lopez78825132011-06-01 11:26:13 +02001445
Eric W. Biederman15e47302012-09-07 20:12:54 +00001446 if (_portid)
1447 return mac80211_hwsim_tx_frame_nl(hw, skb, _portid);
Javier Lopez78825132011-06-01 11:26:13 +02001448
1449 /* NO wmediumd detected, perfect medium simulation */
Ben Greear2155c3f2014-10-22 12:22:58 -07001450 data->tx_pkts++;
1451 data->tx_bytes += skb->len;
Johannes Berge8261172012-07-27 19:48:26 +02001452 ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel);
Javier Lopez78825132011-06-01 11:26:13 +02001453
Johannes Bergf06b7ab2016-01-13 14:21:01 +01001454 if (ack && skb->len >= 16)
Johannes Berge8261172012-07-27 19:48:26 +02001455 mac80211_hwsim_monitor_ack(channel, hdr->addr2);
Jouni Malinene36cfdc2008-06-13 19:44:48 +03001456
Johannes Berge6a98542008-10-21 12:40:02 +02001457 ieee80211_tx_info_clear_status(txi);
Javier Cardona2a4ffa42012-05-01 03:01:28 -07001458
1459 /* frame was transmitted at most favorable rate at first attempt */
1460 txi->control.rates[0].count = 1;
1461 txi->control.rates[1].idx = -1;
1462
Johannes Berge6a98542008-10-21 12:40:02 +02001463 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
1464 txi->flags |= IEEE80211_TX_STAT_ACK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001465 ieee80211_tx_status_irqsafe(hw, skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001466}
1467
1468
1469static int mac80211_hwsim_start(struct ieee80211_hw *hw)
1470{
1471 struct mac80211_hwsim_data *data = hw->priv;
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001472 wiphy_dbg(hw->wiphy, "%s\n", __func__);
Rusty Russell3db1cd52011-12-19 13:56:45 +00001473 data->started = true;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001474 return 0;
1475}
1476
1477
1478static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
1479{
1480 struct mac80211_hwsim_data *data = hw->priv;
Rusty Russell3db1cd52011-12-19 13:56:45 +00001481 data->started = false;
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001482 tasklet_hrtimer_cancel(&data->beacon_timer);
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001483 wiphy_dbg(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001484}
1485
1486
1487static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +01001488 struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001489{
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001490 wiphy_dbg(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
1491 __func__, ieee80211_vif_type_p2p(vif),
1492 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +01001493 hwsim_set_magic(vif);
Johannes Berge8261172012-07-27 19:48:26 +02001494
1495 vif->cab_queue = 0;
1496 vif->hw_queue[IEEE80211_AC_VO] = 0;
1497 vif->hw_queue[IEEE80211_AC_VI] = 1;
1498 vif->hw_queue[IEEE80211_AC_BE] = 2;
1499 vif->hw_queue[IEEE80211_AC_BK] = 3;
1500
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001501 return 0;
1502}
1503
1504
Johannes Bergc35d0272010-08-27 12:35:59 +02001505static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
1506 struct ieee80211_vif *vif,
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001507 enum nl80211_iftype newtype,
1508 bool newp2p)
Johannes Bergc35d0272010-08-27 12:35:59 +02001509{
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001510 newtype = ieee80211_iftype_p2p(newtype, newp2p);
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001511 wiphy_dbg(hw->wiphy,
1512 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
1513 __func__, ieee80211_vif_type_p2p(vif),
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001514 newtype, vif->addr);
Johannes Bergc35d0272010-08-27 12:35:59 +02001515 hwsim_check_magic(vif);
1516
Johannes Berg3eb92f62013-03-18 22:13:18 +01001517 /*
1518 * interface may change from non-AP to AP in
1519 * which case this needs to be set up again
1520 */
1521 vif->cab_queue = 0;
1522
Johannes Bergc35d0272010-08-27 12:35:59 +02001523 return 0;
1524}
1525
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001526static void mac80211_hwsim_remove_interface(
Johannes Berg1ed32e42009-12-23 13:15:45 +01001527 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001528{
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001529 wiphy_dbg(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
1530 __func__, ieee80211_vif_type_p2p(vif),
1531 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +01001532 hwsim_check_magic(vif);
1533 hwsim_clear_magic(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001534}
1535
Johannes Berge8261172012-07-27 19:48:26 +02001536static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
1537 struct sk_buff *skb,
1538 struct ieee80211_channel *chan)
1539{
Martin Willif21e4d82016-05-14 10:34:44 +02001540 struct mac80211_hwsim_data *data = hw->priv;
Mark Rutland6aa7de02017-10-23 14:07:29 -07001541 u32 _pid = READ_ONCE(data->wmediumd);
Johannes Berge8261172012-07-27 19:48:26 +02001542
Johannes Berg30686bf2015-06-02 21:39:54 +02001543 if (ieee80211_hw_check(hw, SUPPORTS_RC_TABLE)) {
Karl Beldan1eb32172013-04-19 14:44:52 +02001544 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
1545 ieee80211_get_tx_rates(txi->control.vif, NULL, skb,
1546 txi->control.rates,
1547 ARRAY_SIZE(txi->control.rates));
1548 }
1549
Johannes Berge8261172012-07-27 19:48:26 +02001550 mac80211_hwsim_monitor_rx(hw, skb, chan);
1551
1552 if (_pid)
1553 return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);
1554
1555 mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
1556 dev_kfree_skb(skb);
1557}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001558
1559static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
1560 struct ieee80211_vif *vif)
1561{
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001562 struct mac80211_hwsim_data *data = arg;
1563 struct ieee80211_hw *hw = data->hw;
1564 struct ieee80211_tx_info *info;
1565 struct ieee80211_rate *txrate;
1566 struct ieee80211_mgmt *mgmt;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001567 struct sk_buff *skb;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001568
Johannes Berg8aa21e62008-09-11 02:16:36 +02001569 hwsim_check_magic(vif);
1570
Andrey Yurovsky55b39612008-10-31 23:23:35 -07001571 if (vif->type != NL80211_IFTYPE_AP &&
Johannes Berg2b2d7792010-08-17 12:08:07 +02001572 vif->type != NL80211_IFTYPE_MESH_POINT &&
1573 vif->type != NL80211_IFTYPE_ADHOC)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001574 return;
1575
1576 skb = ieee80211_beacon_get(hw, vif);
1577 if (skb == NULL)
1578 return;
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001579 info = IEEE80211_SKB_CB(skb);
Johannes Berg30686bf2015-06-02 21:39:54 +02001580 if (ieee80211_hw_check(hw, SUPPORTS_RC_TABLE))
Karl Beldan1eb32172013-04-19 14:44:52 +02001581 ieee80211_get_tx_rates(vif, NULL, skb,
1582 info->control.rates,
1583 ARRAY_SIZE(info->control.rates));
1584
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001585 txrate = ieee80211_get_tx_rate(hw, info);
1586
1587 mgmt = (struct ieee80211_mgmt *) skb->data;
1588 /* fake header transmission time */
1589 data->abs_bcn_ts = mac80211_hwsim_get_tsf_raw();
1590 mgmt->u.beacon.timestamp = cpu_to_le64(data->abs_bcn_ts +
1591 data->tsf_offset +
1592 24 * 8 * 10 / txrate->bitrate);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001593
Johannes Berge8261172012-07-27 19:48:26 +02001594 mac80211_hwsim_tx_frame(hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001595 rcu_dereference(vif->chanctx_conf)->def.chan);
Andrei Otcheretianski0037db62013-11-18 09:46:24 +02001596
1597 if (vif->csa_active && ieee80211_csa_is_complete(vif))
1598 ieee80211_csa_finish(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001599}
1600
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001601static enum hrtimer_restart
1602mac80211_hwsim_beacon(struct hrtimer *timer)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001603{
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001604 struct mac80211_hwsim_data *data =
1605 container_of(timer, struct mac80211_hwsim_data,
1606 beacon_timer.timer);
1607 struct ieee80211_hw *hw = data->hw;
1608 u64 bcn_int = data->beacon_int;
1609 ktime_t next_bcn;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001610
Johannes Berg4c4c6712009-06-01 14:29:52 +02001611 if (!data->started)
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001612 goto out;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001613
Jouni Malinenf248f102008-06-13 19:44:47 +03001614 ieee80211_iterate_active_interfaces_atomic(
Johannes Berg8b2c9822012-11-06 20:23:30 +01001615 hw, IEEE80211_IFACE_ITER_NORMAL,
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001616 mac80211_hwsim_beacon_tx, data);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001617
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001618 /* beacon at new TBTT + beacon interval */
1619 if (data->bcn_delta) {
1620 bcn_int -= data->bcn_delta;
1621 data->bcn_delta = 0;
1622 }
1623
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001624 next_bcn = ktime_add(hrtimer_get_expires(timer),
1625 ns_to_ktime(bcn_int * 1000));
1626 tasklet_hrtimer_start(&data->beacon_timer, next_bcn, HRTIMER_MODE_ABS);
1627out:
1628 return HRTIMER_NORESTART;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001629}
1630
Karl Beldan675a0b02013-03-25 16:26:57 +01001631static const char * const hwsim_chanwidths[] = {
1632 [NL80211_CHAN_WIDTH_20_NOHT] = "noht",
1633 [NL80211_CHAN_WIDTH_20] = "ht20",
1634 [NL80211_CHAN_WIDTH_40] = "ht40",
1635 [NL80211_CHAN_WIDTH_80] = "vht80",
1636 [NL80211_CHAN_WIDTH_80P80] = "vht80p80",
1637 [NL80211_CHAN_WIDTH_160] = "vht160",
Johannes Berg0aaffa92010-05-05 15:28:27 +02001638};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001639
Johannes Berge8975582008-10-09 12:18:51 +02001640static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001641{
1642 struct mac80211_hwsim_data *data = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02001643 struct ieee80211_conf *conf = &hw->conf;
Johannes Berg0f782312009-12-01 13:37:02 +01001644 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
1645 [IEEE80211_SMPS_AUTOMATIC] = "auto",
1646 [IEEE80211_SMPS_OFF] = "off",
1647 [IEEE80211_SMPS_STATIC] = "static",
1648 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
1649 };
Johannes Berg7f813ce2013-11-06 10:37:34 +01001650 int idx;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001651
Karl Beldan675a0b02013-03-25 16:26:57 +01001652 if (conf->chandef.chan)
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001653 wiphy_dbg(hw->wiphy,
1654 "%s (freq=%d(%d - %d)/%s idle=%d ps=%d smps=%s)\n",
1655 __func__,
1656 conf->chandef.chan->center_freq,
1657 conf->chandef.center_freq1,
1658 conf->chandef.center_freq2,
1659 hwsim_chanwidths[conf->chandef.width],
1660 !!(conf->flags & IEEE80211_CONF_IDLE),
1661 !!(conf->flags & IEEE80211_CONF_PS),
1662 smps_modes[conf->smps_mode]);
Karl Beldan675a0b02013-03-25 16:26:57 +01001663 else
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001664 wiphy_dbg(hw->wiphy,
1665 "%s (freq=0 idle=%d ps=%d smps=%s)\n",
1666 __func__,
1667 !!(conf->flags & IEEE80211_CONF_IDLE),
1668 !!(conf->flags & IEEE80211_CONF_PS),
1669 smps_modes[conf->smps_mode]);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001670
Jouni Malinen70541832009-11-01 11:30:48 +02001671 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
1672
Johannes Berg7f813ce2013-11-06 10:37:34 +01001673 WARN_ON(conf->chandef.chan && data->use_chanctx);
Johannes Berge8261172012-07-27 19:48:26 +02001674
Johannes Berg7f813ce2013-11-06 10:37:34 +01001675 mutex_lock(&data->mutex);
1676 if (data->scanning && conf->chandef.chan) {
1677 for (idx = 0; idx < ARRAY_SIZE(data->survey_data); idx++) {
1678 if (data->survey_data[idx].channel == data->channel) {
1679 data->survey_data[idx].start =
1680 data->survey_data[idx].next_start;
1681 data->survey_data[idx].end = jiffies;
1682 break;
1683 }
1684 }
Johannes Berge8261172012-07-27 19:48:26 +02001685
Johannes Berg7f813ce2013-11-06 10:37:34 +01001686 data->channel = conf->chandef.chan;
1687
1688 for (idx = 0; idx < ARRAY_SIZE(data->survey_data); idx++) {
1689 if (data->survey_data[idx].channel &&
1690 data->survey_data[idx].channel != data->channel)
1691 continue;
1692 data->survey_data[idx].channel = data->channel;
1693 data->survey_data[idx].next_start = jiffies;
1694 break;
1695 }
1696 } else {
1697 data->channel = conf->chandef.chan;
1698 }
1699 mutex_unlock(&data->mutex);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001700
Johannes Berg4c4c6712009-06-01 14:29:52 +02001701 if (!data->started || !data->beacon_int)
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001702 tasklet_hrtimer_cancel(&data->beacon_timer);
1703 else if (!hrtimer_is_queued(&data->beacon_timer.timer)) {
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001704 u64 tsf = mac80211_hwsim_get_tsf(hw, NULL);
1705 u32 bcn_int = data->beacon_int;
1706 u64 until_tbtt = bcn_int - do_div(tsf, bcn_int);
1707
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001708 tasklet_hrtimer_start(&data->beacon_timer,
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001709 ns_to_ktime(until_tbtt * 1000),
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001710 HRTIMER_MODE_REL);
1711 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001712
1713 return 0;
1714}
1715
1716
1717static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
1718 unsigned int changed_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001719 unsigned int *total_flags,u64 multicast)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001720{
1721 struct mac80211_hwsim_data *data = hw->priv;
1722
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001723 wiphy_dbg(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001724
1725 data->rx_filter = 0;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001726 if (*total_flags & FIF_ALLMULTI)
1727 data->rx_filter |= FIF_ALLMULTI;
1728
1729 *total_flags = data->rx_filter;
1730}
1731
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001732static void mac80211_hwsim_bcn_en_iter(void *data, u8 *mac,
1733 struct ieee80211_vif *vif)
1734{
1735 unsigned int *count = data;
1736 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
1737
1738 if (vp->bcn_en)
1739 (*count)++;
1740}
1741
Johannes Berg8aa21e62008-09-11 02:16:36 +02001742static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
1743 struct ieee80211_vif *vif,
1744 struct ieee80211_bss_conf *info,
1745 u32 changed)
1746{
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001747 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001748 struct mac80211_hwsim_data *data = hw->priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001749
Johannes Berg8aa21e62008-09-11 02:16:36 +02001750 hwsim_check_magic(vif);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001751
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001752 wiphy_dbg(hw->wiphy, "%s(changed=0x%x vif->addr=%pM)\n",
1753 __func__, changed, vif->addr);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001754
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001755 if (changed & BSS_CHANGED_BSSID) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001756 wiphy_dbg(hw->wiphy, "%s: BSSID changed: %pM\n",
1757 __func__, info->bssid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001758 memcpy(vp->bssid, info->bssid, ETH_ALEN);
1759 }
1760
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001761 if (changed & BSS_CHANGED_ASSOC) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001762 wiphy_dbg(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
1763 info->assoc, info->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001764 vp->assoc = info->assoc;
1765 vp->aid = info->aid;
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001766 }
1767
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001768 if (changed & BSS_CHANGED_BEACON_ENABLED) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001769 wiphy_dbg(hw->wiphy, " BCN EN: %d (BI=%u)\n",
1770 info->enable_beacon, info->beacon_int);
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001771 vp->bcn_en = info->enable_beacon;
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001772 if (data->started &&
1773 !hrtimer_is_queued(&data->beacon_timer.timer) &&
1774 info->enable_beacon) {
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001775 u64 tsf, until_tbtt;
1776 u32 bcn_int;
Johannes Berg56067622015-03-03 22:09:05 +01001777 data->beacon_int = info->beacon_int * 1024;
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001778 tsf = mac80211_hwsim_get_tsf(hw, vif);
1779 bcn_int = data->beacon_int;
1780 until_tbtt = bcn_int - do_div(tsf, bcn_int);
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001781 tasklet_hrtimer_start(&data->beacon_timer,
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001782 ns_to_ktime(until_tbtt * 1000),
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001783 HRTIMER_MODE_REL);
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001784 } else if (!info->enable_beacon) {
1785 unsigned int count = 0;
Jouni Malinencdb1b802013-11-06 12:06:30 +02001786 ieee80211_iterate_active_interfaces_atomic(
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001787 data->hw, IEEE80211_IFACE_ITER_NORMAL,
1788 mac80211_hwsim_bcn_en_iter, &count);
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001789 wiphy_dbg(hw->wiphy, " beaconing vifs remaining: %u",
1790 count);
Johannes Berg56067622015-03-03 22:09:05 +01001791 if (count == 0) {
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001792 tasklet_hrtimer_cancel(&data->beacon_timer);
Johannes Berg56067622015-03-03 22:09:05 +01001793 data->beacon_int = 0;
1794 }
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001795 }
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001796 }
1797
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001798 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001799 wiphy_dbg(hw->wiphy, " ERP_CTS_PROT: %d\n",
1800 info->use_cts_prot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001801 }
1802
1803 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001804 wiphy_dbg(hw->wiphy, " ERP_PREAMBLE: %d\n",
1805 info->use_short_preamble);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001806 }
1807
1808 if (changed & BSS_CHANGED_ERP_SLOT) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001809 wiphy_dbg(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001810 }
1811
1812 if (changed & BSS_CHANGED_HT) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001813 wiphy_dbg(hw->wiphy, " HT: op_mode=0x%x\n",
1814 info->ht_operation_mode);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001815 }
1816
1817 if (changed & BSS_CHANGED_BASIC_RATES) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001818 wiphy_dbg(hw->wiphy, " BASIC_RATES: 0x%llx\n",
1819 (unsigned long long) info->basic_rates);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001820 }
Johannes Bergcbc668a2012-10-24 11:54:31 +02001821
1822 if (changed & BSS_CHANGED_TXPOWER)
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001823 wiphy_dbg(hw->wiphy, " TX Power: %d dBm\n", info->txpower);
Johannes Berg8aa21e62008-09-11 02:16:36 +02001824}
1825
Johannes Berg1d669cb2010-02-19 19:06:55 +01001826static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
1827 struct ieee80211_vif *vif,
1828 struct ieee80211_sta *sta)
1829{
1830 hwsim_check_magic(vif);
1831 hwsim_set_sta_magic(sta);
1832
1833 return 0;
1834}
1835
1836static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
1837 struct ieee80211_vif *vif,
1838 struct ieee80211_sta *sta)
1839{
1840 hwsim_check_magic(vif);
1841 hwsim_clear_sta_magic(sta);
1842
1843 return 0;
1844}
1845
Johannes Berg8aa21e62008-09-11 02:16:36 +02001846static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
1847 struct ieee80211_vif *vif,
Johannes Berg17741cd2008-09-11 00:02:02 +02001848 enum sta_notify_cmd cmd,
1849 struct ieee80211_sta *sta)
Johannes Berg8aa21e62008-09-11 02:16:36 +02001850{
1851 hwsim_check_magic(vif);
Johannes Berg1d669cb2010-02-19 19:06:55 +01001852
Johannes Berg81c06522008-09-11 02:17:01 +02001853 switch (cmd) {
Christian Lamparter89fad572008-12-09 16:28:06 +01001854 case STA_NOTIFY_SLEEP:
1855 case STA_NOTIFY_AWAKE:
1856 /* TODO: make good use of these flags */
1857 break;
Johannes Berg1d669cb2010-02-19 19:06:55 +01001858 default:
1859 WARN(1, "Invalid sta notify: %d\n", cmd);
1860 break;
Johannes Berg81c06522008-09-11 02:17:01 +02001861 }
1862}
1863
1864static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
1865 struct ieee80211_sta *sta,
1866 bool set)
1867{
1868 hwsim_check_sta_magic(sta);
1869 return 0;
Johannes Berg8aa21e62008-09-11 02:16:36 +02001870}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001871
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001872static int mac80211_hwsim_conf_tx(
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001873 struct ieee80211_hw *hw,
1874 struct ieee80211_vif *vif, u16 queue,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001875 const struct ieee80211_tx_queue_params *params)
1876{
Lubomir Rintel62b093b2017-09-18 15:56:51 +02001877 wiphy_dbg(hw->wiphy,
1878 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
1879 __func__, queue,
1880 params->txop, params->cw_min,
1881 params->cw_max, params->aifs);
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001882 return 0;
1883}
1884
Johannes Berg7f813ce2013-11-06 10:37:34 +01001885static int mac80211_hwsim_get_survey(struct ieee80211_hw *hw, int idx,
1886 struct survey_info *survey)
Holger Schurig12897232010-04-19 10:23:57 +02001887{
Johannes Berg7f813ce2013-11-06 10:37:34 +01001888 struct mac80211_hwsim_data *hwsim = hw->priv;
Holger Schurig12897232010-04-19 10:23:57 +02001889
Johannes Berg7f813ce2013-11-06 10:37:34 +01001890 if (idx < 0 || idx >= ARRAY_SIZE(hwsim->survey_data))
Holger Schurig12897232010-04-19 10:23:57 +02001891 return -ENOENT;
1892
Johannes Berg7f813ce2013-11-06 10:37:34 +01001893 mutex_lock(&hwsim->mutex);
1894 survey->channel = hwsim->survey_data[idx].channel;
1895 if (!survey->channel) {
1896 mutex_unlock(&hwsim->mutex);
1897 return -ENOENT;
1898 }
Holger Schurig12897232010-04-19 10:23:57 +02001899
1900 /*
Johannes Berg7f813ce2013-11-06 10:37:34 +01001901 * Magically conjured dummy values --- this is only ok for simulated hardware.
Holger Schurig12897232010-04-19 10:23:57 +02001902 *
Johannes Berg7f813ce2013-11-06 10:37:34 +01001903 * A real driver which cannot determine real values noise MUST NOT
1904 * report any, especially not a magically conjured ones :-)
Holger Schurig12897232010-04-19 10:23:57 +02001905 */
Johannes Berg7f813ce2013-11-06 10:37:34 +01001906 survey->filled = SURVEY_INFO_NOISE_DBM |
1907 SURVEY_INFO_TIME |
1908 SURVEY_INFO_TIME_BUSY;
Holger Schurig12897232010-04-19 10:23:57 +02001909 survey->noise = -92;
Johannes Berg7f813ce2013-11-06 10:37:34 +01001910 survey->time =
1911 jiffies_to_msecs(hwsim->survey_data[idx].end -
1912 hwsim->survey_data[idx].start);
1913 /* report 12.5% of channel time is used */
1914 survey->time_busy = survey->time/8;
1915 mutex_unlock(&hwsim->mutex);
Holger Schurig12897232010-04-19 10:23:57 +02001916
1917 return 0;
1918}
1919
Johannes Bergaff89a92009-07-01 21:26:51 +02001920#ifdef CONFIG_NL80211_TESTMODE
1921/*
1922 * This section contains example code for using netlink
1923 * attributes with the testmode command in nl80211.
1924 */
1925
1926/* These enums need to be kept in sync with userspace */
1927enum hwsim_testmode_attr {
1928 __HWSIM_TM_ATTR_INVALID = 0,
1929 HWSIM_TM_ATTR_CMD = 1,
1930 HWSIM_TM_ATTR_PS = 2,
1931
1932 /* keep last */
1933 __HWSIM_TM_ATTR_AFTER_LAST,
1934 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
1935};
1936
1937enum hwsim_testmode_cmd {
1938 HWSIM_TM_CMD_SET_PS = 0,
1939 HWSIM_TM_CMD_GET_PS = 1,
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001940 HWSIM_TM_CMD_STOP_QUEUES = 2,
1941 HWSIM_TM_CMD_WAKE_QUEUES = 3,
Johannes Bergaff89a92009-07-01 21:26:51 +02001942};
1943
1944static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
1945 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
1946 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
1947};
1948
Johannes Berg5bc38192009-07-07 11:00:55 +02001949static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
David Spinadel52981cd2013-07-31 18:06:22 +03001950 struct ieee80211_vif *vif,
Johannes Berg5bc38192009-07-07 11:00:55 +02001951 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001952{
1953 struct mac80211_hwsim_data *hwsim = hw->priv;
1954 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
1955 struct sk_buff *skb;
1956 int err, ps;
1957
1958 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
Johannes Bergfceb6432017-04-12 14:34:07 +02001959 hwsim_testmode_policy, NULL);
Johannes Bergaff89a92009-07-01 21:26:51 +02001960 if (err)
1961 return err;
1962
1963 if (!tb[HWSIM_TM_ATTR_CMD])
1964 return -EINVAL;
1965
1966 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
1967 case HWSIM_TM_CMD_SET_PS:
1968 if (!tb[HWSIM_TM_ATTR_PS])
1969 return -EINVAL;
1970 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
1971 return hwsim_fops_ps_write(hwsim, ps);
1972 case HWSIM_TM_CMD_GET_PS:
1973 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
1974 nla_total_size(sizeof(u32)));
1975 if (!skb)
1976 return -ENOMEM;
David S. Miller633c9382012-04-01 21:03:30 -04001977 if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps))
1978 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02001979 return cfg80211_testmode_reply(skb);
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001980 case HWSIM_TM_CMD_STOP_QUEUES:
1981 ieee80211_stop_queues(hw);
1982 return 0;
1983 case HWSIM_TM_CMD_WAKE_QUEUES:
1984 ieee80211_wake_queues(hw);
1985 return 0;
Johannes Bergaff89a92009-07-01 21:26:51 +02001986 default:
1987 return -EOPNOTSUPP;
1988 }
1989
1990 nla_put_failure:
1991 kfree_skb(skb);
1992 return -ENOBUFS;
1993}
1994#endif
1995
Johannes Berg8b73d132009-12-01 14:24:24 +01001996static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
1997 struct ieee80211_vif *vif,
Sara Sharon50ea05e2015-12-30 16:06:04 +02001998 struct ieee80211_ampdu_params *params)
Johannes Berg8b73d132009-12-01 14:24:24 +01001999{
Sara Sharon50ea05e2015-12-30 16:06:04 +02002000 struct ieee80211_sta *sta = params->sta;
2001 enum ieee80211_ampdu_mlme_action action = params->action;
2002 u16 tid = params->tid;
2003
Johannes Berg8b73d132009-12-01 14:24:24 +01002004 switch (action) {
2005 case IEEE80211_AMPDU_TX_START:
2006 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2007 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02002008 case IEEE80211_AMPDU_TX_STOP_CONT:
2009 case IEEE80211_AMPDU_TX_STOP_FLUSH:
2010 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Johannes Berg8b73d132009-12-01 14:24:24 +01002011 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
2012 break;
2013 case IEEE80211_AMPDU_TX_OPERATIONAL:
2014 break;
2015 case IEEE80211_AMPDU_RX_START:
2016 case IEEE80211_AMPDU_RX_STOP:
2017 break;
2018 default:
2019 return -EOPNOTSUPP;
2020 }
2021
2022 return 0;
2023}
2024
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +02002025static void mac80211_hwsim_flush(struct ieee80211_hw *hw,
2026 struct ieee80211_vif *vif,
2027 u32 queues, bool drop)
Johannes Berga80f7c02009-12-23 13:15:32 +01002028{
Javier Lopez78825132011-06-01 11:26:13 +02002029 /* Not implemented, queues only on kernel side */
Johannes Berga80f7c02009-12-23 13:15:32 +01002030}
2031
Johannes Berge8261172012-07-27 19:48:26 +02002032static void hw_scan_work(struct work_struct *work)
Johannes Berg69068032010-02-03 10:47:55 +01002033{
Johannes Berge8261172012-07-27 19:48:26 +02002034 struct mac80211_hwsim_data *hwsim =
2035 container_of(work, struct mac80211_hwsim_data, hw_scan.work);
2036 struct cfg80211_scan_request *req = hwsim->hw_scan_request;
2037 int dwell, i;
Johannes Berg69068032010-02-03 10:47:55 +01002038
Johannes Berge8261172012-07-27 19:48:26 +02002039 mutex_lock(&hwsim->mutex);
2040 if (hwsim->scan_chan_idx >= req->n_channels) {
Avraham Stern7947d3e2016-07-05 15:23:12 +03002041 struct cfg80211_scan_info info = {
2042 .aborted = false,
2043 };
2044
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002045 wiphy_dbg(hwsim->hw->wiphy, "hw scan complete\n");
Avraham Stern7947d3e2016-07-05 15:23:12 +03002046 ieee80211_scan_completed(hwsim->hw, &info);
Johannes Berge8261172012-07-27 19:48:26 +02002047 hwsim->hw_scan_request = NULL;
2048 hwsim->hw_scan_vif = NULL;
2049 hwsim->tmp_chan = NULL;
2050 mutex_unlock(&hwsim->mutex);
2051 return;
2052 }
2053
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002054 wiphy_dbg(hwsim->hw->wiphy, "hw scan %d MHz\n",
2055 req->channels[hwsim->scan_chan_idx]->center_freq);
Johannes Berge8261172012-07-27 19:48:26 +02002056
2057 hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx];
Johannes Berga8e828d2015-11-26 17:59:27 +01002058 if (hwsim->tmp_chan->flags & (IEEE80211_CHAN_NO_IR |
2059 IEEE80211_CHAN_RADAR) ||
Johannes Berge8261172012-07-27 19:48:26 +02002060 !req->n_ssids) {
2061 dwell = 120;
2062 } else {
2063 dwell = 30;
2064 /* send probes */
2065 for (i = 0; i < req->n_ssids; i++) {
2066 struct sk_buff *probe;
Jouni Malinen12880d12016-02-26 22:12:49 +02002067 struct ieee80211_mgmt *mgmt;
Johannes Berge8261172012-07-27 19:48:26 +02002068
2069 probe = ieee80211_probereq_get(hwsim->hw,
Johannes Berg339467b2014-06-12 22:41:00 +02002070 hwsim->scan_addr,
Johannes Berge8261172012-07-27 19:48:26 +02002071 req->ssids[i].ssid,
2072 req->ssids[i].ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002073 req->ie_len);
Johannes Berge8261172012-07-27 19:48:26 +02002074 if (!probe)
2075 continue;
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002076
Jouni Malinen12880d12016-02-26 22:12:49 +02002077 mgmt = (struct ieee80211_mgmt *) probe->data;
2078 memcpy(mgmt->da, req->bssid, ETH_ALEN);
2079 memcpy(mgmt->bssid, req->bssid, ETH_ALEN);
2080
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002081 if (req->ie_len)
Johannes Berg59ae1d12017-06-16 14:29:20 +02002082 skb_put_data(probe, req->ie, req->ie_len);
Johannes Bergb9a9ada2012-11-29 13:00:10 +01002083
Johannes Berge8261172012-07-27 19:48:26 +02002084 local_bh_disable();
2085 mac80211_hwsim_tx_frame(hwsim->hw, probe,
2086 hwsim->tmp_chan);
2087 local_bh_enable();
2088 }
2089 }
2090 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan,
2091 msecs_to_jiffies(dwell));
Johannes Berg7f813ce2013-11-06 10:37:34 +01002092 hwsim->survey_data[hwsim->scan_chan_idx].channel = hwsim->tmp_chan;
2093 hwsim->survey_data[hwsim->scan_chan_idx].start = jiffies;
2094 hwsim->survey_data[hwsim->scan_chan_idx].end =
2095 jiffies + msecs_to_jiffies(dwell);
Johannes Berge8261172012-07-27 19:48:26 +02002096 hwsim->scan_chan_idx++;
2097 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01002098}
2099
2100static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +02002101 struct ieee80211_vif *vif,
David Spinadelc56ef672014-02-05 15:21:13 +02002102 struct ieee80211_scan_request *hw_req)
Johannes Berg69068032010-02-03 10:47:55 +01002103{
Johannes Berge8261172012-07-27 19:48:26 +02002104 struct mac80211_hwsim_data *hwsim = hw->priv;
David Spinadelc56ef672014-02-05 15:21:13 +02002105 struct cfg80211_scan_request *req = &hw_req->req;
Johannes Berg69068032010-02-03 10:47:55 +01002106
Johannes Berge8261172012-07-27 19:48:26 +02002107 mutex_lock(&hwsim->mutex);
2108 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
2109 mutex_unlock(&hwsim->mutex);
2110 return -EBUSY;
2111 }
2112 hwsim->hw_scan_request = req;
2113 hwsim->hw_scan_vif = vif;
2114 hwsim->scan_chan_idx = 0;
Johannes Berg339467b2014-06-12 22:41:00 +02002115 if (req->flags & NL80211_SCAN_FLAG_RANDOM_ADDR)
2116 get_random_mask_addr(hwsim->scan_addr,
2117 hw_req->req.mac_addr,
2118 hw_req->req.mac_addr_mask);
2119 else
2120 memcpy(hwsim->scan_addr, vif->addr, ETH_ALEN);
Johannes Berg7f813ce2013-11-06 10:37:34 +01002121 memset(hwsim->survey_data, 0, sizeof(hwsim->survey_data));
Johannes Berge8261172012-07-27 19:48:26 +02002122 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01002123
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002124 wiphy_dbg(hw->wiphy, "hwsim hw_scan request\n");
Johannes Berg69068032010-02-03 10:47:55 +01002125
Johannes Berge8261172012-07-27 19:48:26 +02002126 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0);
Johannes Berg69068032010-02-03 10:47:55 +01002127
2128 return 0;
2129}
2130
Johannes Berge8261172012-07-27 19:48:26 +02002131static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw,
2132 struct ieee80211_vif *vif)
2133{
2134 struct mac80211_hwsim_data *hwsim = hw->priv;
Avraham Stern7947d3e2016-07-05 15:23:12 +03002135 struct cfg80211_scan_info info = {
2136 .aborted = true,
2137 };
Johannes Berge8261172012-07-27 19:48:26 +02002138
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002139 wiphy_dbg(hw->wiphy, "hwsim cancel_hw_scan\n");
Johannes Berge8261172012-07-27 19:48:26 +02002140
2141 cancel_delayed_work_sync(&hwsim->hw_scan);
2142
2143 mutex_lock(&hwsim->mutex);
Avraham Stern7947d3e2016-07-05 15:23:12 +03002144 ieee80211_scan_completed(hwsim->hw, &info);
Johannes Berge8261172012-07-27 19:48:26 +02002145 hwsim->tmp_chan = NULL;
2146 hwsim->hw_scan_request = NULL;
2147 hwsim->hw_scan_vif = NULL;
2148 mutex_unlock(&hwsim->mutex);
2149}
2150
Johannes Berga344d672014-06-12 22:24:31 +02002151static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw,
2152 struct ieee80211_vif *vif,
2153 const u8 *mac_addr)
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002154{
2155 struct mac80211_hwsim_data *hwsim = hw->priv;
2156
2157 mutex_lock(&hwsim->mutex);
2158
2159 if (hwsim->scanning) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002160 pr_debug("two hwsim sw_scans detected!\n");
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002161 goto out;
2162 }
2163
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002164 pr_debug("hwsim sw_scan request, prepping stuff\n");
Johannes Berg339467b2014-06-12 22:41:00 +02002165
2166 memcpy(hwsim->scan_addr, mac_addr, ETH_ALEN);
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002167 hwsim->scanning = true;
Johannes Berg7f813ce2013-11-06 10:37:34 +01002168 memset(hwsim->survey_data, 0, sizeof(hwsim->survey_data));
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002169
2170out:
2171 mutex_unlock(&hwsim->mutex);
2172}
2173
Johannes Berga344d672014-06-12 22:24:31 +02002174static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw,
2175 struct ieee80211_vif *vif)
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002176{
2177 struct mac80211_hwsim_data *hwsim = hw->priv;
2178
2179 mutex_lock(&hwsim->mutex);
2180
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002181 pr_debug("hwsim sw_scan_complete\n");
Johannes Berg23ff98f2010-05-03 09:21:14 +02002182 hwsim->scanning = false;
Joe Perches93803b32015-03-02 19:54:49 -08002183 eth_zero_addr(hwsim->scan_addr);
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002184
2185 mutex_unlock(&hwsim->mutex);
2186}
2187
Johannes Berg661ef472015-11-24 18:29:45 +01002188static void hw_roc_start(struct work_struct *work)
2189{
2190 struct mac80211_hwsim_data *hwsim =
2191 container_of(work, struct mac80211_hwsim_data, roc_start.work);
2192
2193 mutex_lock(&hwsim->mutex);
2194
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002195 wiphy_dbg(hwsim->hw->wiphy, "hwsim ROC begins\n");
Johannes Berg661ef472015-11-24 18:29:45 +01002196 hwsim->tmp_chan = hwsim->roc_chan;
2197 ieee80211_ready_on_channel(hwsim->hw);
2198
2199 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->roc_done,
2200 msecs_to_jiffies(hwsim->roc_duration));
2201
2202 mutex_unlock(&hwsim->mutex);
2203}
2204
Johannes Berge8261172012-07-27 19:48:26 +02002205static void hw_roc_done(struct work_struct *work)
2206{
2207 struct mac80211_hwsim_data *hwsim =
2208 container_of(work, struct mac80211_hwsim_data, roc_done.work);
2209
2210 mutex_lock(&hwsim->mutex);
2211 ieee80211_remain_on_channel_expired(hwsim->hw);
2212 hwsim->tmp_chan = NULL;
2213 mutex_unlock(&hwsim->mutex);
2214
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002215 wiphy_dbg(hwsim->hw->wiphy, "hwsim ROC expired\n");
Johannes Berge8261172012-07-27 19:48:26 +02002216}
2217
2218static int mac80211_hwsim_roc(struct ieee80211_hw *hw,
Eliad Peller49884562012-11-19 17:05:09 +02002219 struct ieee80211_vif *vif,
Johannes Berge8261172012-07-27 19:48:26 +02002220 struct ieee80211_channel *chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002221 int duration,
2222 enum ieee80211_roc_type type)
Johannes Berge8261172012-07-27 19:48:26 +02002223{
2224 struct mac80211_hwsim_data *hwsim = hw->priv;
2225
2226 mutex_lock(&hwsim->mutex);
2227 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
2228 mutex_unlock(&hwsim->mutex);
2229 return -EBUSY;
2230 }
2231
Johannes Berg661ef472015-11-24 18:29:45 +01002232 hwsim->roc_chan = chan;
2233 hwsim->roc_duration = duration;
Johannes Berge8261172012-07-27 19:48:26 +02002234 mutex_unlock(&hwsim->mutex);
2235
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002236 wiphy_dbg(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n",
2237 chan->center_freq, duration);
Johannes Berg661ef472015-11-24 18:29:45 +01002238 ieee80211_queue_delayed_work(hw, &hwsim->roc_start, HZ/50);
Johannes Berge8261172012-07-27 19:48:26 +02002239
Johannes Berge8261172012-07-27 19:48:26 +02002240 return 0;
2241}
2242
2243static int mac80211_hwsim_croc(struct ieee80211_hw *hw)
2244{
2245 struct mac80211_hwsim_data *hwsim = hw->priv;
2246
Johannes Berg661ef472015-11-24 18:29:45 +01002247 cancel_delayed_work_sync(&hwsim->roc_start);
Johannes Berge8261172012-07-27 19:48:26 +02002248 cancel_delayed_work_sync(&hwsim->roc_done);
2249
2250 mutex_lock(&hwsim->mutex);
2251 hwsim->tmp_chan = NULL;
2252 mutex_unlock(&hwsim->mutex);
2253
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002254 wiphy_dbg(hw->wiphy, "hwsim ROC canceled\n");
Johannes Berge8261172012-07-27 19:48:26 +02002255
2256 return 0;
2257}
2258
2259static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw,
2260 struct ieee80211_chanctx_conf *ctx)
2261{
2262 hwsim_set_chanctx_magic(ctx);
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002263 wiphy_dbg(hw->wiphy,
2264 "add channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
2265 ctx->def.chan->center_freq, ctx->def.width,
2266 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02002267 return 0;
2268}
2269
2270static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw,
2271 struct ieee80211_chanctx_conf *ctx)
2272{
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002273 wiphy_dbg(hw->wiphy,
2274 "remove channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
2275 ctx->def.chan->center_freq, ctx->def.width,
2276 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02002277 hwsim_check_chanctx_magic(ctx);
2278 hwsim_clear_chanctx_magic(ctx);
2279}
2280
2281static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw,
2282 struct ieee80211_chanctx_conf *ctx,
2283 u32 changed)
2284{
2285 hwsim_check_chanctx_magic(ctx);
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002286 wiphy_dbg(hw->wiphy,
2287 "change channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
2288 ctx->def.chan->center_freq, ctx->def.width,
2289 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02002290}
2291
2292static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw,
2293 struct ieee80211_vif *vif,
2294 struct ieee80211_chanctx_conf *ctx)
2295{
2296 hwsim_check_magic(vif);
2297 hwsim_check_chanctx_magic(ctx);
2298
2299 return 0;
2300}
2301
2302static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw,
2303 struct ieee80211_vif *vif,
2304 struct ieee80211_chanctx_conf *ctx)
2305{
2306 hwsim_check_magic(vif);
2307 hwsim_check_chanctx_magic(ctx);
2308}
2309
Ben Greear2155c3f2014-10-22 12:22:58 -07002310static const char mac80211_hwsim_gstrings_stats[][ETH_GSTRING_LEN] = {
2311 "tx_pkts_nic",
2312 "tx_bytes_nic",
2313 "rx_pkts_nic",
2314 "rx_bytes_nic",
2315 "d_tx_dropped",
2316 "d_tx_failed",
2317 "d_ps_mode",
2318 "d_group",
Ben Greear2155c3f2014-10-22 12:22:58 -07002319};
2320
2321#define MAC80211_HWSIM_SSTATS_LEN ARRAY_SIZE(mac80211_hwsim_gstrings_stats)
2322
2323static void mac80211_hwsim_get_et_strings(struct ieee80211_hw *hw,
2324 struct ieee80211_vif *vif,
2325 u32 sset, u8 *data)
2326{
2327 if (sset == ETH_SS_STATS)
2328 memcpy(data, *mac80211_hwsim_gstrings_stats,
2329 sizeof(mac80211_hwsim_gstrings_stats));
2330}
2331
2332static int mac80211_hwsim_get_et_sset_count(struct ieee80211_hw *hw,
2333 struct ieee80211_vif *vif, int sset)
2334{
2335 if (sset == ETH_SS_STATS)
2336 return MAC80211_HWSIM_SSTATS_LEN;
2337 return 0;
2338}
2339
2340static void mac80211_hwsim_get_et_stats(struct ieee80211_hw *hw,
2341 struct ieee80211_vif *vif,
2342 struct ethtool_stats *stats, u64 *data)
2343{
2344 struct mac80211_hwsim_data *ar = hw->priv;
2345 int i = 0;
2346
2347 data[i++] = ar->tx_pkts;
2348 data[i++] = ar->tx_bytes;
2349 data[i++] = ar->rx_pkts;
2350 data[i++] = ar->rx_bytes;
2351 data[i++] = ar->tx_dropped;
2352 data[i++] = ar->tx_failed;
2353 data[i++] = ar->ps;
2354 data[i++] = ar->group;
Ben Greear2155c3f2014-10-22 12:22:58 -07002355
2356 WARN_ON(i != MAC80211_HWSIM_SSTATS_LEN);
2357}
2358
Johannes Berg246ad562016-10-10 12:09:52 +02002359#define HWSIM_COMMON_OPS \
2360 .tx = mac80211_hwsim_tx, \
2361 .start = mac80211_hwsim_start, \
2362 .stop = mac80211_hwsim_stop, \
2363 .add_interface = mac80211_hwsim_add_interface, \
2364 .change_interface = mac80211_hwsim_change_interface, \
2365 .remove_interface = mac80211_hwsim_remove_interface, \
2366 .config = mac80211_hwsim_config, \
2367 .configure_filter = mac80211_hwsim_configure_filter, \
2368 .bss_info_changed = mac80211_hwsim_bss_info_changed, \
2369 .sta_add = mac80211_hwsim_sta_add, \
2370 .sta_remove = mac80211_hwsim_sta_remove, \
2371 .sta_notify = mac80211_hwsim_sta_notify, \
2372 .set_tim = mac80211_hwsim_set_tim, \
2373 .conf_tx = mac80211_hwsim_conf_tx, \
2374 .get_survey = mac80211_hwsim_get_survey, \
2375 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd) \
2376 .ampdu_action = mac80211_hwsim_ampdu_action, \
2377 .flush = mac80211_hwsim_flush, \
2378 .get_tsf = mac80211_hwsim_get_tsf, \
2379 .set_tsf = mac80211_hwsim_set_tsf, \
2380 .get_et_sset_count = mac80211_hwsim_get_et_sset_count, \
2381 .get_et_stats = mac80211_hwsim_get_et_stats, \
2382 .get_et_strings = mac80211_hwsim_get_et_strings,
2383
Johannes Berg38ed5042014-01-06 22:11:06 +01002384static const struct ieee80211_ops mac80211_hwsim_ops = {
Johannes Berg246ad562016-10-10 12:09:52 +02002385 HWSIM_COMMON_OPS
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002386 .sw_scan_start = mac80211_hwsim_sw_scan,
2387 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002388};
2389
Johannes Berg246ad562016-10-10 12:09:52 +02002390static const struct ieee80211_ops mac80211_hwsim_mchan_ops = {
2391 HWSIM_COMMON_OPS
2392 .hw_scan = mac80211_hwsim_hw_scan,
2393 .cancel_hw_scan = mac80211_hwsim_cancel_hw_scan,
2394 .sw_scan_start = NULL,
2395 .sw_scan_complete = NULL,
2396 .remain_on_channel = mac80211_hwsim_roc,
2397 .cancel_remain_on_channel = mac80211_hwsim_croc,
2398 .add_chanctx = mac80211_hwsim_add_chanctx,
2399 .remove_chanctx = mac80211_hwsim_remove_chanctx,
2400 .change_chanctx = mac80211_hwsim_change_chanctx,
2401 .assign_vif_chanctx = mac80211_hwsim_assign_vif_chanctx,
2402 .unassign_vif_chanctx = mac80211_hwsim_unassign_vif_chanctx,
2403};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002404
Jukka Rissanen62759362014-10-31 14:48:47 +02002405struct hwsim_new_radio_params {
2406 unsigned int channels;
2407 const char *reg_alpha2;
2408 const struct ieee80211_regdomain *regd;
2409 bool reg_strict;
2410 bool p2p_device;
2411 bool use_chanctx;
2412 bool destroy_on_close;
2413 const char *hwname;
2414 bool no_vif;
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +01002415 const u8 *perm_addr;
Jukka Rissanen62759362014-10-31 14:48:47 +02002416};
2417
2418static void hwsim_mcast_config_msg(struct sk_buff *mcast_skb,
2419 struct genl_info *info)
2420{
2421 if (info)
Jiri Benc92c14d92015-09-22 18:56:43 +02002422 genl_notify(&hwsim_genl_family, mcast_skb, info,
2423 HWSIM_MCGRP_CONFIG, GFP_KERNEL);
Jukka Rissanen62759362014-10-31 14:48:47 +02002424 else
2425 genlmsg_multicast(&hwsim_genl_family, mcast_skb, 0,
2426 HWSIM_MCGRP_CONFIG, GFP_KERNEL);
2427}
2428
Patrik Flyktc4499812014-11-12 16:42:39 +02002429static int append_radio_msg(struct sk_buff *skb, int id,
2430 struct hwsim_new_radio_params *param)
Jukka Rissanen62759362014-10-31 14:48:47 +02002431{
Jukka Rissanen62759362014-10-31 14:48:47 +02002432 int ret;
2433
Jukka Rissanen62759362014-10-31 14:48:47 +02002434 ret = nla_put_u32(skb, HWSIM_ATTR_RADIO_ID, id);
2435 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002436 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002437
2438 if (param->channels) {
2439 ret = nla_put_u32(skb, HWSIM_ATTR_CHANNELS, param->channels);
2440 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002441 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002442 }
2443
2444 if (param->reg_alpha2) {
2445 ret = nla_put(skb, HWSIM_ATTR_REG_HINT_ALPHA2, 2,
2446 param->reg_alpha2);
2447 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002448 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002449 }
2450
2451 if (param->regd) {
2452 int i;
2453
Johannes Berg58757552014-12-22 12:51:25 +01002454 for (i = 0; i < ARRAY_SIZE(hwsim_world_regdom_custom); i++) {
2455 if (hwsim_world_regdom_custom[i] != param->regd)
2456 continue;
Jukka Rissanen62759362014-10-31 14:48:47 +02002457
Jukka Rissanen62759362014-10-31 14:48:47 +02002458 ret = nla_put_u32(skb, HWSIM_ATTR_REG_CUSTOM_REG, i);
2459 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002460 return ret;
Johannes Berg58757552014-12-22 12:51:25 +01002461 break;
Jukka Rissanen62759362014-10-31 14:48:47 +02002462 }
2463 }
2464
2465 if (param->reg_strict) {
2466 ret = nla_put_flag(skb, HWSIM_ATTR_REG_STRICT_REG);
2467 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002468 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002469 }
2470
2471 if (param->p2p_device) {
2472 ret = nla_put_flag(skb, HWSIM_ATTR_SUPPORT_P2P_DEVICE);
2473 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002474 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002475 }
2476
2477 if (param->use_chanctx) {
2478 ret = nla_put_flag(skb, HWSIM_ATTR_USE_CHANCTX);
2479 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002480 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002481 }
2482
2483 if (param->hwname) {
2484 ret = nla_put(skb, HWSIM_ATTR_RADIO_NAME,
2485 strlen(param->hwname), param->hwname);
2486 if (ret < 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002487 return ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02002488 }
2489
Patrik Flyktc4499812014-11-12 16:42:39 +02002490 return 0;
Jukka Rissanen62759362014-10-31 14:48:47 +02002491}
2492
Patrik Flyktc4499812014-11-12 16:42:39 +02002493static void hwsim_mcast_new_radio(int id, struct genl_info *info,
Jukka Rissanen62759362014-10-31 14:48:47 +02002494 struct hwsim_new_radio_params *param)
2495{
2496 struct sk_buff *mcast_skb;
Patrik Flyktc4499812014-11-12 16:42:39 +02002497 void *data;
Jukka Rissanen62759362014-10-31 14:48:47 +02002498
Patrik Flyktc4499812014-11-12 16:42:39 +02002499 mcast_skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
Jukka Rissanen62759362014-10-31 14:48:47 +02002500 if (!mcast_skb)
2501 return;
2502
Patrik Flyktc4499812014-11-12 16:42:39 +02002503 data = genlmsg_put(mcast_skb, 0, 0, &hwsim_genl_family, 0,
2504 HWSIM_CMD_NEW_RADIO);
2505 if (!data)
2506 goto out_err;
2507
2508 if (append_radio_msg(mcast_skb, id, param) < 0)
2509 goto out_err;
2510
2511 genlmsg_end(mcast_skb, data);
2512
Jukka Rissanen62759362014-10-31 14:48:47 +02002513 hwsim_mcast_config_msg(mcast_skb, info);
Patrik Flyktc4499812014-11-12 16:42:39 +02002514 return;
2515
2516out_err:
Patrik Flyktc4499812014-11-12 16:42:39 +02002517 nlmsg_free(mcast_skb);
Jukka Rissanen62759362014-10-31 14:48:47 +02002518}
2519
2520static int mac80211_hwsim_new_radio(struct genl_info *info,
2521 struct hwsim_new_radio_params *param)
Johannes Bergde0421d2014-01-06 23:12:12 +01002522{
2523 int err;
2524 u8 addr[ETH_ALEN];
2525 struct mac80211_hwsim_data *data;
2526 struct ieee80211_hw *hw;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002527 enum nl80211_band band;
Johannes Bergde0421d2014-01-06 23:12:12 +01002528 const struct ieee80211_ops *ops = &mac80211_hwsim_ops;
Martin Willi100cb9f2016-05-09 18:33:59 +02002529 struct net *net;
Johannes Bergde0421d2014-01-06 23:12:12 +01002530 int idx;
2531
Jukka Rissanen62759362014-10-31 14:48:47 +02002532 if (WARN_ON(param->channels > 1 && !param->use_chanctx))
Luciano Coelho361c3e02014-02-10 15:23:03 +02002533 return -EINVAL;
2534
Johannes Bergde0421d2014-01-06 23:12:12 +01002535 spin_lock_bh(&hwsim_radio_lock);
2536 idx = hwsim_radio_idx++;
2537 spin_unlock_bh(&hwsim_radio_lock);
2538
Jukka Rissanen62759362014-10-31 14:48:47 +02002539 if (param->use_chanctx)
Johannes Bergde0421d2014-01-06 23:12:12 +01002540 ops = &mac80211_hwsim_mchan_ops;
Jukka Rissanen62759362014-10-31 14:48:47 +02002541 hw = ieee80211_alloc_hw_nm(sizeof(*data), ops, param->hwname);
Johannes Bergde0421d2014-01-06 23:12:12 +01002542 if (!hw) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002543 pr_debug("mac80211_hwsim: ieee80211_alloc_hw failed\n");
Johannes Bergde0421d2014-01-06 23:12:12 +01002544 err = -ENOMEM;
2545 goto failed;
2546 }
Martin Willi100cb9f2016-05-09 18:33:59 +02002547
Andrew Zaborowskif7d3b4f2017-02-23 13:02:10 +01002548 /* ieee80211_alloc_hw_nm may have used a default name */
2549 param->hwname = wiphy_name(hw->wiphy);
2550
Martin Willi100cb9f2016-05-09 18:33:59 +02002551 if (info)
2552 net = genl_info_net(info);
2553 else
2554 net = &init_net;
2555 wiphy_net_set(hw->wiphy, net);
2556
Johannes Bergde0421d2014-01-06 23:12:12 +01002557 data = hw->priv;
2558 data->hw = hw;
2559
2560 data->dev = device_create(hwsim_class, NULL, 0, hw, "hwsim%d", idx);
2561 if (IS_ERR(data->dev)) {
2562 printk(KERN_DEBUG
2563 "mac80211_hwsim: device_create failed (%ld)\n",
2564 PTR_ERR(data->dev));
2565 err = -ENOMEM;
2566 goto failed_drvdata;
2567 }
2568 data->dev->driver = &mac80211_hwsim_driver.driver;
2569 err = device_bind_driver(data->dev);
2570 if (err != 0) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002571 pr_debug("mac80211_hwsim: device_bind_driver failed (%d)\n",
Johannes Bergde0421d2014-01-06 23:12:12 +01002572 err);
Junjie Mao805dbe12014-10-28 09:31:47 +08002573 goto failed_bind;
Johannes Bergde0421d2014-01-06 23:12:12 +01002574 }
2575
2576 skb_queue_head_init(&data->pending);
2577
2578 SET_IEEE80211_DEV(hw, data->dev);
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +01002579 if (!param->perm_addr) {
2580 eth_zero_addr(addr);
2581 addr[0] = 0x02;
2582 addr[3] = idx >> 8;
2583 addr[4] = idx;
2584 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
2585 /* Why need here second address ? */
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +01002586 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
Johannes Berg796e1112018-03-21 09:07:02 +01002587 data->addresses[1].addr[0] |= 0x40;
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +01002588 hw->wiphy->n_addresses = 2;
2589 hw->wiphy->addresses = data->addresses;
2590 /* possible address clash is checked at hash table insertion */
2591 } else {
2592 memcpy(data->addresses[0].addr, param->perm_addr, ETH_ALEN);
2593 /* compatibility with automatically generated mac addr */
2594 memcpy(data->addresses[1].addr, param->perm_addr, ETH_ALEN);
2595 hw->wiphy->n_addresses = 2;
2596 hw->wiphy->addresses = data->addresses;
2597 }
Johannes Bergde0421d2014-01-06 23:12:12 +01002598
Jukka Rissanen62759362014-10-31 14:48:47 +02002599 data->channels = param->channels;
2600 data->use_chanctx = param->use_chanctx;
Johannes Bergbc791092014-01-06 23:29:20 +01002601 data->idx = idx;
Jukka Rissanen62759362014-10-31 14:48:47 +02002602 data->destroy_on_close = param->destroy_on_close;
2603 if (info)
2604 data->portid = info->snd_portid;
Johannes Bergde0421d2014-01-06 23:12:12 +01002605
Luciano Coelho361c3e02014-02-10 15:23:03 +02002606 if (data->use_chanctx) {
Johannes Bergde0421d2014-01-06 23:12:12 +01002607 hw->wiphy->max_scan_ssids = 255;
2608 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
2609 hw->wiphy->max_remain_on_channel_duration = 1000;
Johannes Bergde0421d2014-01-06 23:12:12 +01002610 hw->wiphy->iface_combinations = &data->if_combination;
Jukka Rissanen62759362014-10-31 14:48:47 +02002611 if (param->p2p_device)
Johannes Berg8c66a3d2014-01-10 20:07:49 +01002612 data->if_combination = hwsim_if_comb_p2p_dev[0];
2613 else
2614 data->if_combination = hwsim_if_comb[0];
Ilan Peerf7736f52016-07-05 15:23:09 +03002615 hw->wiphy->n_iface_combinations = 1;
2616 /* For channels > 1 DFS is not allowed */
2617 data->if_combination.radar_detect_widths = 0;
Johannes Bergb59ec8d2014-02-07 10:44:50 +01002618 data->if_combination.num_different_channels = data->channels;
Jukka Rissanen62759362014-10-31 14:48:47 +02002619 } else if (param->p2p_device) {
Johannes Berg8c66a3d2014-01-10 20:07:49 +01002620 hw->wiphy->iface_combinations = hwsim_if_comb_p2p_dev;
2621 hw->wiphy->n_iface_combinations =
2622 ARRAY_SIZE(hwsim_if_comb_p2p_dev);
Johannes Bergde0421d2014-01-06 23:12:12 +01002623 } else {
2624 hw->wiphy->iface_combinations = hwsim_if_comb;
2625 hw->wiphy->n_iface_combinations = ARRAY_SIZE(hwsim_if_comb);
2626 }
2627
Johannes Berg661ef472015-11-24 18:29:45 +01002628 INIT_DELAYED_WORK(&data->roc_start, hw_roc_start);
Johannes Bergde0421d2014-01-06 23:12:12 +01002629 INIT_DELAYED_WORK(&data->roc_done, hw_roc_done);
2630 INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work);
2631
2632 hw->queues = 5;
2633 hw->offchannel_tx_hw_queue = 4;
2634 hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
2635 BIT(NL80211_IFTYPE_AP) |
2636 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2637 BIT(NL80211_IFTYPE_P2P_GO) |
2638 BIT(NL80211_IFTYPE_ADHOC) |
Johannes Berg8c66a3d2014-01-10 20:07:49 +01002639 BIT(NL80211_IFTYPE_MESH_POINT);
2640
Jukka Rissanen62759362014-10-31 14:48:47 +02002641 if (param->p2p_device)
Johannes Berg8c66a3d2014-01-10 20:07:49 +01002642 hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_P2P_DEVICE);
Johannes Bergde0421d2014-01-06 23:12:12 +01002643
Johannes Berg30686bf2015-06-02 21:39:54 +02002644 ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
2645 ieee80211_hw_set(hw, CHANCTX_STA_CSA);
2646 ieee80211_hw_set(hw, SUPPORTS_HT_CCK_RATES);
2647 ieee80211_hw_set(hw, QUEUE_CONTROL);
2648 ieee80211_hw_set(hw, WANT_MONITOR_VIF);
2649 ieee80211_hw_set(hw, AMPDU_AGGREGATION);
2650 ieee80211_hw_set(hw, MFP_CAPABLE);
2651 ieee80211_hw_set(hw, SIGNAL_DBM);
Bjoern Johanssone4a2eb82018-04-11 11:41:56 -07002652 ieee80211_hw_set(hw, SUPPORTS_PS);
Johannes Berg33c2f532015-06-17 13:07:14 +02002653 ieee80211_hw_set(hw, TDLS_WIDER_BW);
Johannes Bergde0421d2014-01-06 23:12:12 +01002654 if (rctbl)
Johannes Berg30686bf2015-06-02 21:39:54 +02002655 ieee80211_hw_set(hw, SUPPORTS_RC_TABLE);
Johannes Bergde0421d2014-01-06 23:12:12 +01002656
2657 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
2658 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL |
Andrei Otcheretianski0037db62013-11-18 09:46:24 +02002659 WIPHY_FLAG_AP_UAPSD |
2660 WIPHY_FLAG_HAS_CHANNEL_SWITCH;
Eliad Peller0d8614b2014-09-10 14:07:36 +03002661 hw->wiphy->features |= NL80211_FEATURE_ACTIVE_MONITOR |
2662 NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE |
2663 NL80211_FEATURE_STATIC_SMPS |
Johannes Berg339467b2014-06-12 22:41:00 +02002664 NL80211_FEATURE_DYNAMIC_SMPS |
2665 NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR;
Jouni Malinen00eeccc2015-11-26 20:51:04 +02002666 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_VHT_IBSS);
Johannes Bergde0421d2014-01-06 23:12:12 +01002667
2668 /* ask mac80211 to reserve space for magic */
2669 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
2670 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
2671 hw->chanctx_data_size = sizeof(struct hwsim_chanctx_priv);
2672
2673 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
2674 sizeof(hwsim_channels_2ghz));
2675 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
2676 sizeof(hwsim_channels_5ghz));
2677 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
2678
Johannes Berg57fbcce2016-04-12 15:56:15 +02002679 for (band = NL80211_BAND_2GHZ; band < NUM_NL80211_BANDS; band++) {
Johannes Bergde0421d2014-01-06 23:12:12 +01002680 struct ieee80211_supported_band *sband = &data->bands[band];
2681 switch (band) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02002682 case NL80211_BAND_2GHZ:
Johannes Bergde0421d2014-01-06 23:12:12 +01002683 sband->channels = data->channels_2ghz;
2684 sband->n_channels = ARRAY_SIZE(hwsim_channels_2ghz);
2685 sband->bitrates = data->rates;
2686 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
2687 break;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002688 case NL80211_BAND_5GHZ:
Johannes Bergde0421d2014-01-06 23:12:12 +01002689 sband->channels = data->channels_5ghz;
2690 sband->n_channels = ARRAY_SIZE(hwsim_channels_5ghz);
2691 sband->bitrates = data->rates + 4;
2692 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
Ilan Peerf33f8482015-04-07 19:05:21 +03002693
2694 sband->vht_cap.vht_supported = true;
2695 sband->vht_cap.cap =
2696 IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
2697 IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ |
2698 IEEE80211_VHT_CAP_RXLDPC |
2699 IEEE80211_VHT_CAP_SHORT_GI_80 |
2700 IEEE80211_VHT_CAP_SHORT_GI_160 |
2701 IEEE80211_VHT_CAP_TXSTBC |
Ilan Peerf33f8482015-04-07 19:05:21 +03002702 IEEE80211_VHT_CAP_RXSTBC_4 |
2703 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK;
2704 sband->vht_cap.vht_mcs.rx_mcs_map =
Ilan Peer8aca9b22015-04-07 19:05:22 +03002705 cpu_to_le16(IEEE80211_VHT_MCS_SUPPORT_0_9 << 0 |
2706 IEEE80211_VHT_MCS_SUPPORT_0_9 << 2 |
Ilan Peerf33f8482015-04-07 19:05:21 +03002707 IEEE80211_VHT_MCS_SUPPORT_0_9 << 4 |
Ilan Peer8aca9b22015-04-07 19:05:22 +03002708 IEEE80211_VHT_MCS_SUPPORT_0_9 << 6 |
2709 IEEE80211_VHT_MCS_SUPPORT_0_9 << 8 |
Ilan Peerf33f8482015-04-07 19:05:21 +03002710 IEEE80211_VHT_MCS_SUPPORT_0_9 << 10 |
2711 IEEE80211_VHT_MCS_SUPPORT_0_9 << 12 |
Ilan Peer8aca9b22015-04-07 19:05:22 +03002712 IEEE80211_VHT_MCS_SUPPORT_0_9 << 14);
Ilan Peerf33f8482015-04-07 19:05:21 +03002713 sband->vht_cap.vht_mcs.tx_mcs_map =
2714 sband->vht_cap.vht_mcs.rx_mcs_map;
Johannes Bergde0421d2014-01-06 23:12:12 +01002715 break;
2716 default:
2717 continue;
2718 }
2719
2720 sband->ht_cap.ht_supported = true;
2721 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
2722 IEEE80211_HT_CAP_GRN_FLD |
Ben Greeare49786d2014-10-24 11:12:08 -07002723 IEEE80211_HT_CAP_SGI_20 |
Johannes Bergde0421d2014-01-06 23:12:12 +01002724 IEEE80211_HT_CAP_SGI_40 |
2725 IEEE80211_HT_CAP_DSSSCCK40;
2726 sband->ht_cap.ampdu_factor = 0x3;
2727 sband->ht_cap.ampdu_density = 0x6;
2728 memset(&sband->ht_cap.mcs, 0,
2729 sizeof(sband->ht_cap.mcs));
2730 sband->ht_cap.mcs.rx_mask[0] = 0xff;
2731 sband->ht_cap.mcs.rx_mask[1] = 0xff;
2732 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2733
2734 hw->wiphy->bands[band] = sband;
Johannes Bergde0421d2014-01-06 23:12:12 +01002735 }
2736
2737 /* By default all radios belong to the first group */
2738 data->group = 1;
2739 mutex_init(&data->mutex);
2740
Martin Willi100cb9f2016-05-09 18:33:59 +02002741 data->netgroup = hwsim_net_get_netgroup(net);
Andrew Zaborowski4ea5aca2018-03-21 08:05:18 +01002742 data->wmediumd = hwsim_net_get_wmediumd(net);
Martin Willi100cb9f2016-05-09 18:33:59 +02002743
Johannes Bergde0421d2014-01-06 23:12:12 +01002744 /* Enable frame retransmissions for lossy channels */
2745 hw->max_rates = 4;
2746 hw->max_rate_tries = 11;
2747
Jouni Malinend5d011b2015-02-26 15:26:54 +02002748 hw->wiphy->vendor_commands = mac80211_hwsim_vendor_commands;
2749 hw->wiphy->n_vendor_commands =
2750 ARRAY_SIZE(mac80211_hwsim_vendor_commands);
2751 hw->wiphy->vendor_events = mac80211_hwsim_vendor_events;
2752 hw->wiphy->n_vendor_events = ARRAY_SIZE(mac80211_hwsim_vendor_events);
2753
Jukka Rissanen62759362014-10-31 14:48:47 +02002754 if (param->reg_strict)
Johannes Berg26b0e412014-01-10 13:37:38 +01002755 hw->wiphy->regulatory_flags |= REGULATORY_STRICT_REG;
Jukka Rissanen62759362014-10-31 14:48:47 +02002756 if (param->regd) {
Patrik Flykt93d638d2014-11-12 16:42:40 +02002757 data->regd = param->regd;
Johannes Berg26b0e412014-01-10 13:37:38 +01002758 hw->wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG;
Jukka Rissanen62759362014-10-31 14:48:47 +02002759 wiphy_apply_custom_regulatory(hw->wiphy, param->regd);
Johannes Berg26b0e412014-01-10 13:37:38 +01002760 /* give the regulatory workqueue a chance to run */
2761 schedule_timeout_interruptible(1);
2762 }
2763
Jukka Rissanen62759362014-10-31 14:48:47 +02002764 if (param->no_vif)
Johannes Berg30686bf2015-06-02 21:39:54 +02002765 ieee80211_hw_set(hw, NO_AUTO_VIF);
Ben Greear9a0cb892014-10-22 12:23:04 -07002766
Andrew Zaborowskiae44b502017-02-10 04:50:23 +01002767 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_CQM_RSSI_LIST);
2768
Johannes Bergde0421d2014-01-06 23:12:12 +01002769 err = ieee80211_register_hw(hw);
2770 if (err < 0) {
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002771 pr_debug("mac80211_hwsim: ieee80211_register_hw failed (%d)\n",
Johannes Bergde0421d2014-01-06 23:12:12 +01002772 err);
2773 goto failed_hw;
2774 }
2775
Lubomir Rintel62b093b2017-09-18 15:56:51 +02002776 wiphy_dbg(hw->wiphy, "hwaddr %pM registered\n", hw->wiphy->perm_addr);
Johannes Bergde0421d2014-01-06 23:12:12 +01002777
Patrik Flykt93d638d2014-11-12 16:42:40 +02002778 if (param->reg_alpha2) {
2779 data->alpha2[0] = param->reg_alpha2[0];
2780 data->alpha2[1] = param->reg_alpha2[1];
Jukka Rissanen62759362014-10-31 14:48:47 +02002781 regulatory_hint(hw->wiphy, param->reg_alpha2);
Patrik Flykt93d638d2014-11-12 16:42:40 +02002782 }
Johannes Berg26b0e412014-01-10 13:37:38 +01002783
Johannes Bergde0421d2014-01-06 23:12:12 +01002784 data->debugfs = debugfs_create_dir("hwsim", hw->wiphy->debugfsdir);
2785 debugfs_create_file("ps", 0666, data->debugfs, data, &hwsim_fops_ps);
2786 debugfs_create_file("group", 0666, data->debugfs, data,
2787 &hwsim_fops_group);
Luciano Coelho361c3e02014-02-10 15:23:03 +02002788 if (!data->use_chanctx)
Johannes Bergde0421d2014-01-06 23:12:12 +01002789 debugfs_create_file("dfs_simulate_radar", 0222,
2790 data->debugfs,
2791 data, &hwsim_simulate_radar);
2792
2793 tasklet_hrtimer_init(&data->beacon_timer,
2794 mac80211_hwsim_beacon,
Thomas Gleixner8fbcfeb2017-02-25 10:27:37 +00002795 CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
Johannes Bergde0421d2014-01-06 23:12:12 +01002796
2797 spin_lock_bh(&hwsim_radio_lock);
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01002798 err = rhashtable_insert_fast(&hwsim_radios_rht, &data->rht,
2799 hwsim_rht_params);
2800 if (err < 0) {
Benjamin Beichler301b0402018-01-22 18:04:36 +01002801 if (info) {
2802 GENL_SET_ERR_MSG(info, "perm addr already present");
2803 NL_SET_BAD_ATTR(info->extack,
2804 info->attrs[HWSIM_ATTR_PERM_ADDR]);
2805 }
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01002806 spin_unlock_bh(&hwsim_radio_lock);
2807 goto failed_final_insert;
2808 }
2809
Johannes Bergde0421d2014-01-06 23:12:12 +01002810 list_add_tail(&data->list, &hwsim_radios);
Benjamin Beichler63356982018-01-22 18:04:37 +01002811 hwsim_radios_generation++;
Johannes Bergde0421d2014-01-06 23:12:12 +01002812 spin_unlock_bh(&hwsim_radio_lock);
2813
Jukka Rissanen62759362014-10-31 14:48:47 +02002814 if (idx > 0)
Patrik Flyktc4499812014-11-12 16:42:39 +02002815 hwsim_mcast_new_radio(idx, info, param);
Jukka Rissanen62759362014-10-31 14:48:47 +02002816
Johannes Bergbc791092014-01-06 23:29:20 +01002817 return idx;
Johannes Bergde0421d2014-01-06 23:12:12 +01002818
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01002819failed_final_insert:
2820 debugfs_remove_recursive(data->debugfs);
2821 ieee80211_unregister_hw(data->hw);
Johannes Bergde0421d2014-01-06 23:12:12 +01002822failed_hw:
Junjie Mao805dbe12014-10-28 09:31:47 +08002823 device_release_driver(data->dev);
2824failed_bind:
Johannes Bergde0421d2014-01-06 23:12:12 +01002825 device_unregister(data->dev);
2826failed_drvdata:
2827 ieee80211_free_hw(hw);
2828failed:
2829 return err;
2830}
2831
Jukka Rissanen579a05f2014-10-31 14:48:48 +02002832static void hwsim_mcast_del_radio(int id, const char *hwname,
2833 struct genl_info *info)
Johannes Berge4afb602014-01-06 22:43:11 +01002834{
Jukka Rissanen579a05f2014-10-31 14:48:48 +02002835 struct sk_buff *skb;
2836 void *data;
2837 int ret;
2838
2839 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
2840 if (!skb)
2841 return;
2842
2843 data = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
2844 HWSIM_CMD_DEL_RADIO);
2845 if (!data)
2846 goto error;
2847
2848 ret = nla_put_u32(skb, HWSIM_ATTR_RADIO_ID, id);
2849 if (ret < 0)
2850 goto error;
2851
Jukka Rissanenb9995f82014-11-14 13:16:34 +02002852 ret = nla_put(skb, HWSIM_ATTR_RADIO_NAME, strlen(hwname),
2853 hwname);
2854 if (ret < 0)
2855 goto error;
Jukka Rissanen579a05f2014-10-31 14:48:48 +02002856
2857 genlmsg_end(skb, data);
2858
2859 hwsim_mcast_config_msg(skb, info);
2860
2861 return;
2862
2863error:
2864 nlmsg_free(skb);
2865}
2866
2867static void mac80211_hwsim_del_radio(struct mac80211_hwsim_data *data,
2868 const char *hwname,
2869 struct genl_info *info)
2870{
2871 hwsim_mcast_del_radio(data->idx, hwname, info);
Johannes Berge4afb602014-01-06 22:43:11 +01002872 debugfs_remove_recursive(data->debugfs);
2873 ieee80211_unregister_hw(data->hw);
2874 device_release_driver(data->dev);
2875 device_unregister(data->dev);
2876 ieee80211_free_hw(data->hw);
2877}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002878
Patrik Flykt93d638d2014-11-12 16:42:40 +02002879static int mac80211_hwsim_get_radio(struct sk_buff *skb,
2880 struct mac80211_hwsim_data *data,
2881 u32 portid, u32 seq,
2882 struct netlink_callback *cb, int flags)
2883{
2884 void *hdr;
2885 struct hwsim_new_radio_params param = { };
2886 int res = -EMSGSIZE;
2887
2888 hdr = genlmsg_put(skb, portid, seq, &hwsim_genl_family, flags,
2889 HWSIM_CMD_GET_RADIO);
2890 if (!hdr)
2891 return -EMSGSIZE;
2892
2893 if (cb)
Michal Kubecek0a833c22017-11-15 13:09:32 +01002894 genl_dump_check_consistent(cb, hdr);
Patrik Flykt93d638d2014-11-12 16:42:40 +02002895
Patrik Flyktb0ad5e82014-11-21 15:08:02 +02002896 if (data->alpha2[0] && data->alpha2[1])
2897 param.reg_alpha2 = data->alpha2;
2898
Patrik Flykt93d638d2014-11-12 16:42:40 +02002899 param.reg_strict = !!(data->hw->wiphy->regulatory_flags &
2900 REGULATORY_STRICT_REG);
2901 param.p2p_device = !!(data->hw->wiphy->interface_modes &
2902 BIT(NL80211_IFTYPE_P2P_DEVICE));
2903 param.use_chanctx = data->use_chanctx;
2904 param.regd = data->regd;
2905 param.channels = data->channels;
2906 param.hwname = wiphy_name(data->hw->wiphy);
2907
2908 res = append_radio_msg(skb, data->idx, &param);
2909 if (res < 0)
2910 goto out_err;
2911
Johannes Berg053c0952015-01-16 22:09:00 +01002912 genlmsg_end(skb, hdr);
2913 return 0;
Patrik Flykt93d638d2014-11-12 16:42:40 +02002914
2915out_err:
2916 genlmsg_cancel(skb, hdr);
2917 return res;
2918}
2919
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002920static void mac80211_hwsim_free(void)
2921{
Johannes Berge4afb602014-01-06 22:43:11 +01002922 struct mac80211_hwsim_data *data;
Johannes Berg0e057d732008-09-12 00:39:22 +02002923
2924 spin_lock_bh(&hwsim_radio_lock);
Johannes Berge4afb602014-01-06 22:43:11 +01002925 while ((data = list_first_entry_or_null(&hwsim_radios,
2926 struct mac80211_hwsim_data,
2927 list))) {
2928 list_del(&data->list);
2929 spin_unlock_bh(&hwsim_radio_lock);
Jukka Rissanenb9995f82014-11-14 13:16:34 +02002930 mac80211_hwsim_del_radio(data, wiphy_name(data->hw->wiphy),
2931 NULL);
Johannes Berge4afb602014-01-06 22:43:11 +01002932 spin_lock_bh(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002933 }
Johannes Berge4afb602014-01-06 22:43:11 +01002934 spin_unlock_bh(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002935 class_destroy(hwsim_class);
2936}
2937
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00002938static const struct net_device_ops hwsim_netdev_ops = {
2939 .ndo_start_xmit = hwsim_mon_xmit,
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00002940 .ndo_set_mac_address = eth_mac_addr,
2941 .ndo_validate_addr = eth_validate_addr,
2942};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002943
2944static void hwsim_mon_setup(struct net_device *dev)
2945{
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00002946 dev->netdev_ops = &hwsim_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04002947 dev->needs_free_netdev = true;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002948 ether_setup(dev);
Phil Sutter3db6da12015-08-18 10:30:43 +02002949 dev->priv_flags |= IFF_NO_QUEUE;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002950 dev->type = ARPHRD_IEEE80211_RADIOTAP;
Joe Perches93803b32015-03-02 19:54:49 -08002951 eth_zero_addr(dev->dev_addr);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002952 dev->dev_addr[0] = 0x12;
2953}
2954
Johannes Berg9ddd12a2014-01-06 23:03:02 +01002955static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr(const u8 *addr)
Javier Lopez78825132011-06-01 11:26:13 +02002956{
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01002957 return rhashtable_lookup_fast(&hwsim_radios_rht,
2958 addr,
2959 hwsim_rht_params);
Javier Lopez78825132011-06-01 11:26:13 +02002960}
2961
Martin Willif21e4d82016-05-14 10:34:44 +02002962static void hwsim_register_wmediumd(struct net *net, u32 portid)
2963{
2964 struct mac80211_hwsim_data *data;
2965
2966 hwsim_net_set_wmediumd(net, portid);
2967
2968 spin_lock_bh(&hwsim_radio_lock);
2969 list_for_each_entry(data, &hwsim_radios, list) {
2970 if (data->netgroup == hwsim_net_get_netgroup(net))
2971 data->wmediumd = portid;
2972 }
2973 spin_unlock_bh(&hwsim_radio_lock);
2974}
2975
Javier Lopez78825132011-06-01 11:26:13 +02002976static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
2977 struct genl_info *info)
2978{
2979
2980 struct ieee80211_hdr *hdr;
2981 struct mac80211_hwsim_data *data2;
2982 struct ieee80211_tx_info *txi;
2983 struct hwsim_tx_rate *tx_attempts;
Johannes Berg959eb2f2015-11-06 11:57:23 +01002984 u64 ret_skb_cookie;
Javier Lopez78825132011-06-01 11:26:13 +02002985 struct sk_buff *skb, *tmp;
Johannes Berg9ddd12a2014-01-06 23:03:02 +01002986 const u8 *src;
Javier Lopez78825132011-06-01 11:26:13 +02002987 unsigned int hwsim_flags;
Javier Lopez78825132011-06-01 11:26:13 +02002988 int i;
2989 bool found = false;
2990
2991 if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] ||
Johannes Berg9ddd12a2014-01-06 23:03:02 +01002992 !info->attrs[HWSIM_ATTR_FLAGS] ||
2993 !info->attrs[HWSIM_ATTR_COOKIE] ||
Martin Willi62397da2016-05-13 12:41:48 +02002994 !info->attrs[HWSIM_ATTR_SIGNAL] ||
Johannes Berg9ddd12a2014-01-06 23:03:02 +01002995 !info->attrs[HWSIM_ATTR_TX_INFO])
Javier Lopez78825132011-06-01 11:26:13 +02002996 goto out;
2997
Johannes Berg9ddd12a2014-01-06 23:03:02 +01002998 src = (void *)nla_data(info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]);
Javier Lopez78825132011-06-01 11:26:13 +02002999 hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]);
Johannes Berg959eb2f2015-11-06 11:57:23 +01003000 ret_skb_cookie = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]);
Javier Lopez78825132011-06-01 11:26:13 +02003001
3002 data2 = get_hwsim_data_ref_from_addr(src);
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003003 if (!data2)
Javier Lopez78825132011-06-01 11:26:13 +02003004 goto out;
3005
Martin Willif21e4d82016-05-14 10:34:44 +02003006 if (hwsim_net_get_netgroup(genl_info_net(info)) != data2->netgroup)
3007 goto out;
3008
3009 if (info->snd_portid != data2->wmediumd)
3010 goto out;
3011
Javier Lopez78825132011-06-01 11:26:13 +02003012 /* look for the skb matching the cookie passed back from user */
3013 skb_queue_walk_safe(&data2->pending, skb, tmp) {
Johannes Berg959eb2f2015-11-06 11:57:23 +01003014 u64 skb_cookie;
3015
3016 txi = IEEE80211_SKB_CB(skb);
3017 skb_cookie = (u64)(uintptr_t)txi->rate_driver_data[0];
3018
3019 if (skb_cookie == ret_skb_cookie) {
Javier Lopez78825132011-06-01 11:26:13 +02003020 skb_unlink(skb, &data2->pending);
3021 found = true;
3022 break;
3023 }
3024 }
3025
3026 /* not found */
3027 if (!found)
3028 goto out;
3029
3030 /* Tx info received because the frame was broadcasted on user space,
3031 so we get all the necessary info: tx attempts and skb control buff */
3032
3033 tx_attempts = (struct hwsim_tx_rate *)nla_data(
3034 info->attrs[HWSIM_ATTR_TX_INFO]);
3035
3036 /* now send back TX status */
3037 txi = IEEE80211_SKB_CB(skb);
3038
Javier Lopez78825132011-06-01 11:26:13 +02003039 ieee80211_tx_info_clear_status(txi);
3040
3041 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
3042 txi->status.rates[i].idx = tx_attempts[i].idx;
3043 txi->status.rates[i].count = tx_attempts[i].count;
Javier Lopez78825132011-06-01 11:26:13 +02003044 }
3045
3046 txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
3047
3048 if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) &&
3049 (hwsim_flags & HWSIM_TX_STAT_ACK)) {
3050 if (skb->len >= 16) {
3051 hdr = (struct ieee80211_hdr *) skb->data;
Javier Lopezc0e30762013-12-16 10:01:07 -08003052 mac80211_hwsim_monitor_ack(data2->channel,
Johannes Berge8261172012-07-27 19:48:26 +02003053 hdr->addr2);
Javier Lopez78825132011-06-01 11:26:13 +02003054 }
Qasim Javed06cf5c42012-06-05 01:25:44 -05003055 txi->flags |= IEEE80211_TX_STAT_ACK;
Javier Lopez78825132011-06-01 11:26:13 +02003056 }
3057 ieee80211_tx_status_irqsafe(data2->hw, skb);
3058 return 0;
3059out:
3060 return -EINVAL;
3061
3062}
3063
3064static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
3065 struct genl_info *info)
3066{
Johannes Berge8261172012-07-27 19:48:26 +02003067 struct mac80211_hwsim_data *data2;
Javier Lopez78825132011-06-01 11:26:13 +02003068 struct ieee80211_rx_status rx_status;
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003069 const u8 *dst;
Javier Lopez78825132011-06-01 11:26:13 +02003070 int frame_data_len;
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003071 void *frame_data;
Javier Lopez78825132011-06-01 11:26:13 +02003072 struct sk_buff *skb = NULL;
3073
3074 if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] ||
Johannes Berge8261172012-07-27 19:48:26 +02003075 !info->attrs[HWSIM_ATTR_FRAME] ||
3076 !info->attrs[HWSIM_ATTR_RX_RATE] ||
3077 !info->attrs[HWSIM_ATTR_SIGNAL])
Javier Lopez78825132011-06-01 11:26:13 +02003078 goto out;
3079
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003080 dst = (void *)nla_data(info->attrs[HWSIM_ATTR_ADDR_RECEIVER]);
Javier Lopez78825132011-06-01 11:26:13 +02003081 frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]);
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003082 frame_data = (void *)nla_data(info->attrs[HWSIM_ATTR_FRAME]);
Javier Lopez78825132011-06-01 11:26:13 +02003083
3084 /* Allocate new skb here */
3085 skb = alloc_skb(frame_data_len, GFP_KERNEL);
3086 if (skb == NULL)
3087 goto err;
3088
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003089 if (frame_data_len > IEEE80211_MAX_DATA_LEN)
Javier Lopez78825132011-06-01 11:26:13 +02003090 goto err;
3091
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003092 /* Copy the data */
Johannes Berg59ae1d12017-06-16 14:29:20 +02003093 skb_put_data(skb, frame_data, frame_data_len);
Javier Lopez78825132011-06-01 11:26:13 +02003094
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003095 data2 = get_hwsim_data_ref_from_addr(dst);
3096 if (!data2)
Javier Lopez78825132011-06-01 11:26:13 +02003097 goto out;
3098
Martin Willif21e4d82016-05-14 10:34:44 +02003099 if (hwsim_net_get_netgroup(genl_info_net(info)) != data2->netgroup)
3100 goto out;
3101
3102 if (info->snd_portid != data2->wmediumd)
3103 goto out;
3104
Javier Lopez78825132011-06-01 11:26:13 +02003105 /* check if radio is configured properly */
3106
Johannes Berge8261172012-07-27 19:48:26 +02003107 if (data2->idle || !data2->started)
Javier Lopez78825132011-06-01 11:26:13 +02003108 goto out;
3109
Johannes Berg9ddd12a2014-01-06 23:03:02 +01003110 /* A frame is received from user space */
Javier Lopez78825132011-06-01 11:26:13 +02003111 memset(&rx_status, 0, sizeof(rx_status));
Adam Welle641cf2a2015-12-01 17:13:52 -05003112 if (info->attrs[HWSIM_ATTR_FREQ]) {
3113 /* throw away off-channel packets, but allow both the temporary
3114 * ("hw" scan/remain-on-channel) and regular channel, since the
3115 * internal datapath also allows this
3116 */
3117 mutex_lock(&data2->mutex);
3118 rx_status.freq = nla_get_u32(info->attrs[HWSIM_ATTR_FREQ]);
3119
3120 if (rx_status.freq != data2->channel->center_freq &&
3121 (!data2->tmp_chan ||
3122 rx_status.freq != data2->tmp_chan->center_freq)) {
3123 mutex_unlock(&data2->mutex);
3124 goto out;
3125 }
3126 mutex_unlock(&data2->mutex);
3127 } else {
3128 rx_status.freq = data2->channel->center_freq;
3129 }
3130
Javier Lopez78825132011-06-01 11:26:13 +02003131 rx_status.band = data2->channel->band;
3132 rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
3133 rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
3134
3135 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
Ben Greear2155c3f2014-10-22 12:22:58 -07003136 data2->rx_pkts++;
3137 data2->rx_bytes += skb->len;
Javier Lopez78825132011-06-01 11:26:13 +02003138 ieee80211_rx_irqsafe(data2->hw, skb);
3139
3140 return 0;
3141err:
Lubomir Rintel62b093b2017-09-18 15:56:51 +02003142 pr_debug("mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02003143out:
3144 dev_kfree_skb(skb);
3145 return -EINVAL;
3146}
3147
3148static int hwsim_register_received_nl(struct sk_buff *skb_2,
3149 struct genl_info *info)
3150{
Martin Willif21e4d82016-05-14 10:34:44 +02003151 struct net *net = genl_info_net(info);
Johannes Bergc5ac0852014-01-07 23:28:08 +01003152 struct mac80211_hwsim_data *data;
3153 int chans = 1;
3154
3155 spin_lock_bh(&hwsim_radio_lock);
3156 list_for_each_entry(data, &hwsim_radios, list)
3157 chans = max(chans, data->channels);
3158 spin_unlock_bh(&hwsim_radio_lock);
3159
3160 /* In the future we should revise the userspace API and allow it
3161 * to set a flag that it does support multi-channel, then we can
3162 * let this pass conditionally on the flag.
3163 * For current userspace, prohibit it since it won't work right.
3164 */
3165 if (chans > 1)
3166 return -EOPNOTSUPP;
3167
Martin Willif21e4d82016-05-14 10:34:44 +02003168 if (hwsim_net_get_wmediumd(net))
Johannes Berg85ca8fc2014-01-07 23:21:34 +01003169 return -EBUSY;
Javier Lopez78825132011-06-01 11:26:13 +02003170
Martin Willif21e4d82016-05-14 10:34:44 +02003171 hwsim_register_wmediumd(net, info->snd_portid);
Javier Lopez78825132011-06-01 11:26:13 +02003172
Lubomir Rintel62b093b2017-09-18 15:56:51 +02003173 pr_debug("mac80211_hwsim: received a REGISTER, "
Eric W. Biederman15e47302012-09-07 20:12:54 +00003174 "switching to wmediumd mode with pid %d\n", info->snd_portid);
Javier Lopez78825132011-06-01 11:26:13 +02003175
3176 return 0;
Javier Lopez78825132011-06-01 11:26:13 +02003177}
3178
Jukka Rissanen62759362014-10-31 14:48:47 +02003179static int hwsim_new_radio_nl(struct sk_buff *msg, struct genl_info *info)
Johannes Bergbc791092014-01-06 23:29:20 +01003180{
Jukka Rissanen62759362014-10-31 14:48:47 +02003181 struct hwsim_new_radio_params param = { 0 };
Johannes Bergff4dd732017-02-27 17:15:28 +01003182 const char *hwname = NULL;
Ben Hutchings67bd5232017-11-10 18:48:50 +00003183 int ret;
Jukka Rissanen62759362014-10-31 14:48:47 +02003184
3185 param.reg_strict = info->attrs[HWSIM_ATTR_REG_STRICT_REG];
3186 param.p2p_device = info->attrs[HWSIM_ATTR_SUPPORT_P2P_DEVICE];
3187 param.channels = channels;
3188 param.destroy_on_close =
3189 info->attrs[HWSIM_ATTR_DESTROY_RADIO_ON_CLOSE];
Johannes Bergbc791092014-01-06 23:29:20 +01003190
3191 if (info->attrs[HWSIM_ATTR_CHANNELS])
Jukka Rissanen62759362014-10-31 14:48:47 +02003192 param.channels = nla_get_u32(info->attrs[HWSIM_ATTR_CHANNELS]);
Johannes Bergbc791092014-01-06 23:29:20 +01003193
Johannes Berg48400432018-08-15 18:17:03 +02003194 if (param.channels < 1) {
3195 GENL_SET_ERR_MSG(info, "must have at least one channel");
3196 return -EINVAL;
3197 }
3198
Johannes Berg51a1aaa2018-01-15 09:32:36 +01003199 if (param.channels > CFG80211_MAX_NUM_DIFFERENT_CHANNELS) {
3200 GENL_SET_ERR_MSG(info, "too many channels specified");
3201 return -EINVAL;
3202 }
3203
Ben Greear9a0cb892014-10-22 12:23:04 -07003204 if (info->attrs[HWSIM_ATTR_NO_VIF])
Jukka Rissanen62759362014-10-31 14:48:47 +02003205 param.no_vif = true;
Ben Greear9a0cb892014-10-22 12:23:04 -07003206
Johannes Bergff4dd732017-02-27 17:15:28 +01003207 if (info->attrs[HWSIM_ATTR_RADIO_NAME]) {
3208 hwname = kasprintf(GFP_KERNEL, "%.*s",
3209 nla_len(info->attrs[HWSIM_ATTR_RADIO_NAME]),
3210 (char *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME]));
3211 if (!hwname)
3212 return -ENOMEM;
3213 param.hwname = hwname;
3214 }
Ben Greear5cd89262014-10-22 12:23:02 -07003215
Luciano Coelho361c3e02014-02-10 15:23:03 +02003216 if (info->attrs[HWSIM_ATTR_USE_CHANCTX])
Jukka Rissanen62759362014-10-31 14:48:47 +02003217 param.use_chanctx = true;
Luciano Coelho361c3e02014-02-10 15:23:03 +02003218 else
Jukka Rissanen62759362014-10-31 14:48:47 +02003219 param.use_chanctx = (param.channels > 1);
Luciano Coelho361c3e02014-02-10 15:23:03 +02003220
Johannes Berg26b0e412014-01-10 13:37:38 +01003221 if (info->attrs[HWSIM_ATTR_REG_HINT_ALPHA2])
Jukka Rissanen62759362014-10-31 14:48:47 +02003222 param.reg_alpha2 =
3223 nla_data(info->attrs[HWSIM_ATTR_REG_HINT_ALPHA2]);
Johannes Berg26b0e412014-01-10 13:37:38 +01003224
3225 if (info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]) {
3226 u32 idx = nla_get_u32(info->attrs[HWSIM_ATTR_REG_CUSTOM_REG]);
3227
weiyongjun (A)0ddcff42018-01-18 02:23:34 +00003228 if (idx >= ARRAY_SIZE(hwsim_world_regdom_custom)) {
3229 kfree(hwname);
Johannes Berg26b0e412014-01-10 13:37:38 +01003230 return -EINVAL;
weiyongjun (A)0ddcff42018-01-18 02:23:34 +00003231 }
Jukka Rissanen62759362014-10-31 14:48:47 +02003232 param.regd = hwsim_world_regdom_custom[idx];
Johannes Berg26b0e412014-01-10 13:37:38 +01003233 }
3234
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +01003235 if (info->attrs[HWSIM_ATTR_PERM_ADDR]) {
3236 if (!is_valid_ether_addr(
3237 nla_data(info->attrs[HWSIM_ATTR_PERM_ADDR]))) {
3238 GENL_SET_ERR_MSG(info,"MAC is no valid source addr");
3239 NL_SET_BAD_ATTR(info->extack,
3240 info->attrs[HWSIM_ATTR_PERM_ADDR]);
YueHaibinge8f90c72018-04-24 11:08:35 +08003241 kfree(hwname);
Benjamin Beichlercb1a5ba2018-01-22 18:04:35 +01003242 return -EINVAL;
3243 }
3244
3245
3246 param.perm_addr = nla_data(info->attrs[HWSIM_ATTR_PERM_ADDR]);
3247 }
3248
Ben Hutchings67bd5232017-11-10 18:48:50 +00003249 ret = mac80211_hwsim_new_radio(info, &param);
3250 kfree(hwname);
3251 return ret;
Johannes Bergbc791092014-01-06 23:29:20 +01003252}
3253
Jukka Rissanen579a05f2014-10-31 14:48:48 +02003254static int hwsim_del_radio_nl(struct sk_buff *msg, struct genl_info *info)
Johannes Bergbc791092014-01-06 23:29:20 +01003255{
3256 struct mac80211_hwsim_data *data;
Ben Greear8cdd9e1c2014-10-22 12:22:59 -07003257 s64 idx = -1;
3258 const char *hwname = NULL;
Johannes Bergbc791092014-01-06 23:29:20 +01003259
Johannes Bergff4dd732017-02-27 17:15:28 +01003260 if (info->attrs[HWSIM_ATTR_RADIO_ID]) {
Ben Greear8cdd9e1c2014-10-22 12:22:59 -07003261 idx = nla_get_u32(info->attrs[HWSIM_ATTR_RADIO_ID]);
Johannes Bergff4dd732017-02-27 17:15:28 +01003262 } else if (info->attrs[HWSIM_ATTR_RADIO_NAME]) {
3263 hwname = kasprintf(GFP_KERNEL, "%.*s",
3264 nla_len(info->attrs[HWSIM_ATTR_RADIO_NAME]),
3265 (char *)nla_data(info->attrs[HWSIM_ATTR_RADIO_NAME]));
3266 if (!hwname)
3267 return -ENOMEM;
3268 } else
Johannes Bergbc791092014-01-06 23:29:20 +01003269 return -EINVAL;
Johannes Bergbc791092014-01-06 23:29:20 +01003270
3271 spin_lock_bh(&hwsim_radio_lock);
3272 list_for_each_entry(data, &hwsim_radios, list) {
Ben Greear8cdd9e1c2014-10-22 12:22:59 -07003273 if (idx >= 0) {
3274 if (data->idx != idx)
3275 continue;
3276 } else {
Johannes Bergff4dd732017-02-27 17:15:28 +01003277 if (!hwname ||
3278 strcmp(hwname, wiphy_name(data->hw->wiphy)))
Ben Greear8cdd9e1c2014-10-22 12:22:59 -07003279 continue;
3280 }
3281
Martin Willi100cb9f2016-05-09 18:33:59 +02003282 if (!net_eq(wiphy_net(data->hw->wiphy), genl_info_net(info)))
3283 continue;
3284
Johannes Bergbc791092014-01-06 23:29:20 +01003285 list_del(&data->list);
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01003286 rhashtable_remove_fast(&hwsim_radios_rht, &data->rht,
3287 hwsim_rht_params);
Benjamin Beichler63356982018-01-22 18:04:37 +01003288 hwsim_radios_generation++;
Johannes Bergbc791092014-01-06 23:29:20 +01003289 spin_unlock_bh(&hwsim_radio_lock);
Jukka Rissanenb9995f82014-11-14 13:16:34 +02003290 mac80211_hwsim_del_radio(data, wiphy_name(data->hw->wiphy),
3291 info);
Johannes Bergff4dd732017-02-27 17:15:28 +01003292 kfree(hwname);
Johannes Bergbc791092014-01-06 23:29:20 +01003293 return 0;
3294 }
3295 spin_unlock_bh(&hwsim_radio_lock);
3296
Johannes Bergff4dd732017-02-27 17:15:28 +01003297 kfree(hwname);
Johannes Bergbc791092014-01-06 23:29:20 +01003298 return -ENODEV;
Javier Lopez78825132011-06-01 11:26:13 +02003299}
3300
Patrik Flykt93d638d2014-11-12 16:42:40 +02003301static int hwsim_get_radio_nl(struct sk_buff *msg, struct genl_info *info)
3302{
3303 struct mac80211_hwsim_data *data;
3304 struct sk_buff *skb;
3305 int idx, res = -ENODEV;
3306
3307 if (!info->attrs[HWSIM_ATTR_RADIO_ID])
3308 return -EINVAL;
3309 idx = nla_get_u32(info->attrs[HWSIM_ATTR_RADIO_ID]);
3310
3311 spin_lock_bh(&hwsim_radio_lock);
3312 list_for_each_entry(data, &hwsim_radios, list) {
3313 if (data->idx != idx)
3314 continue;
3315
Martin Willi100cb9f2016-05-09 18:33:59 +02003316 if (!net_eq(wiphy_net(data->hw->wiphy), genl_info_net(info)))
3317 continue;
3318
Jia-Ju Bai162bd5e2017-12-12 17:26:36 +08003319 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Patrik Flykt93d638d2014-11-12 16:42:40 +02003320 if (!skb) {
3321 res = -ENOMEM;
3322 goto out_err;
3323 }
3324
3325 res = mac80211_hwsim_get_radio(skb, data, info->snd_portid,
3326 info->snd_seq, NULL, 0);
3327 if (res < 0) {
3328 nlmsg_free(skb);
3329 goto out_err;
3330 }
3331
3332 genlmsg_reply(skb, info);
3333 break;
3334 }
3335
3336out_err:
3337 spin_unlock_bh(&hwsim_radio_lock);
3338
3339 return res;
3340}
3341
3342static int hwsim_dump_radio_nl(struct sk_buff *skb,
3343 struct netlink_callback *cb)
3344{
Andrew Zaborowskifed48252018-05-22 02:43:56 +02003345 int last_idx = cb->args[0] - 1;
Patrik Flykt93d638d2014-11-12 16:42:40 +02003346 struct mac80211_hwsim_data *data = NULL;
Benjamin Beichler63356982018-01-22 18:04:37 +01003347 int res = 0;
3348 void *hdr;
Patrik Flykt93d638d2014-11-12 16:42:40 +02003349
3350 spin_lock_bh(&hwsim_radio_lock);
Benjamin Beichler63356982018-01-22 18:04:37 +01003351 cb->seq = hwsim_radios_generation;
Patrik Flykt93d638d2014-11-12 16:42:40 +02003352
Benjamin Beichler63356982018-01-22 18:04:37 +01003353 if (last_idx >= hwsim_radio_idx-1)
Patrik Flykt93d638d2014-11-12 16:42:40 +02003354 goto done;
3355
3356 list_for_each_entry(data, &hwsim_radios, list) {
Benjamin Beichler63356982018-01-22 18:04:37 +01003357 if (data->idx <= last_idx)
Patrik Flykt93d638d2014-11-12 16:42:40 +02003358 continue;
3359
Martin Willi100cb9f2016-05-09 18:33:59 +02003360 if (!net_eq(wiphy_net(data->hw->wiphy), sock_net(skb->sk)))
3361 continue;
3362
Patrik Flykt93d638d2014-11-12 16:42:40 +02003363 res = mac80211_hwsim_get_radio(skb, data,
3364 NETLINK_CB(cb->skb).portid,
3365 cb->nlh->nlmsg_seq, cb,
3366 NLM_F_MULTI);
3367 if (res < 0)
3368 break;
3369
Benjamin Beichler63356982018-01-22 18:04:37 +01003370 last_idx = data->idx;
Patrik Flykt93d638d2014-11-12 16:42:40 +02003371 }
3372
Andrew Zaborowskifed48252018-05-22 02:43:56 +02003373 cb->args[0] = last_idx + 1;
Benjamin Beichler63356982018-01-22 18:04:37 +01003374
3375 /* list changed, but no new element sent, set interrupted flag */
3376 if (skb->len == 0 && cb->prev_seq && cb->seq != cb->prev_seq) {
3377 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3378 cb->nlh->nlmsg_seq, &hwsim_genl_family,
3379 NLM_F_MULTI, HWSIM_CMD_GET_RADIO);
3380 if (!hdr)
3381 res = -EMSGSIZE;
3382 genl_dump_check_consistent(cb, hdr);
3383 genlmsg_end(skb, hdr);
3384 }
Patrik Flykt93d638d2014-11-12 16:42:40 +02003385
3386done:
3387 spin_unlock_bh(&hwsim_radio_lock);
Benjamin Beichler63356982018-01-22 18:04:37 +01003388 return res ?: skb->len;
Patrik Flykt93d638d2014-11-12 16:42:40 +02003389}
3390
Javier Lopez78825132011-06-01 11:26:13 +02003391/* Generic Netlink operations array */
Johannes Berg4534de82013-11-14 17:14:46 +01003392static const struct genl_ops hwsim_ops[] = {
Javier Lopez78825132011-06-01 11:26:13 +02003393 {
3394 .cmd = HWSIM_CMD_REGISTER,
3395 .policy = hwsim_genl_policy,
3396 .doit = hwsim_register_received_nl,
Martin Willif21e4d82016-05-14 10:34:44 +02003397 .flags = GENL_UNS_ADMIN_PERM,
Javier Lopez78825132011-06-01 11:26:13 +02003398 },
3399 {
3400 .cmd = HWSIM_CMD_FRAME,
3401 .policy = hwsim_genl_policy,
3402 .doit = hwsim_cloned_frame_received_nl,
3403 },
3404 {
3405 .cmd = HWSIM_CMD_TX_INFO_FRAME,
3406 .policy = hwsim_genl_policy,
3407 .doit = hwsim_tx_info_frame_received_nl,
3408 },
Johannes Bergbc791092014-01-06 23:29:20 +01003409 {
Jukka Rissanen62759362014-10-31 14:48:47 +02003410 .cmd = HWSIM_CMD_NEW_RADIO,
Johannes Bergbc791092014-01-06 23:29:20 +01003411 .policy = hwsim_genl_policy,
Jukka Rissanen62759362014-10-31 14:48:47 +02003412 .doit = hwsim_new_radio_nl,
Martin Willi100cb9f2016-05-09 18:33:59 +02003413 .flags = GENL_UNS_ADMIN_PERM,
Johannes Bergbc791092014-01-06 23:29:20 +01003414 },
3415 {
Jukka Rissanen579a05f2014-10-31 14:48:48 +02003416 .cmd = HWSIM_CMD_DEL_RADIO,
Johannes Bergbc791092014-01-06 23:29:20 +01003417 .policy = hwsim_genl_policy,
Jukka Rissanen579a05f2014-10-31 14:48:48 +02003418 .doit = hwsim_del_radio_nl,
Martin Willi100cb9f2016-05-09 18:33:59 +02003419 .flags = GENL_UNS_ADMIN_PERM,
Johannes Bergbc791092014-01-06 23:29:20 +01003420 },
Patrik Flykt93d638d2014-11-12 16:42:40 +02003421 {
3422 .cmd = HWSIM_CMD_GET_RADIO,
3423 .policy = hwsim_genl_policy,
3424 .doit = hwsim_get_radio_nl,
3425 .dumpit = hwsim_dump_radio_nl,
3426 },
Javier Lopez78825132011-06-01 11:26:13 +02003427};
3428
Johannes Berg56989f62016-10-24 14:40:05 +02003429static struct genl_family hwsim_genl_family __ro_after_init = {
Johannes Berg489111e2016-10-24 14:40:03 +02003430 .name = "MAC80211_HWSIM",
3431 .version = 1,
3432 .maxattr = HWSIM_ATTR_MAX,
3433 .netnsok = true,
3434 .module = THIS_MODULE,
3435 .ops = hwsim_ops,
3436 .n_ops = ARRAY_SIZE(hwsim_ops),
3437 .mcgrps = hwsim_mcgrps,
3438 .n_mcgrps = ARRAY_SIZE(hwsim_mcgrps),
3439};
3440
Jukka Rissanene9ed49b2014-10-09 15:27:51 +03003441static void destroy_radio(struct work_struct *work)
3442{
3443 struct mac80211_hwsim_data *data =
3444 container_of(work, struct mac80211_hwsim_data, destroy_work);
3445
Benjamin Beichler63356982018-01-22 18:04:37 +01003446 hwsim_radios_generation++;
Jukka Rissanenb9995f82014-11-14 13:16:34 +02003447 mac80211_hwsim_del_radio(data, wiphy_name(data->hw->wiphy), NULL);
Jukka Rissanene9ed49b2014-10-09 15:27:51 +03003448}
3449
3450static void remove_user_radios(u32 portid)
3451{
3452 struct mac80211_hwsim_data *entry, *tmp;
3453
3454 spin_lock_bh(&hwsim_radio_lock);
3455 list_for_each_entry_safe(entry, tmp, &hwsim_radios, list) {
3456 if (entry->destroy_on_close && entry->portid == portid) {
3457 list_del(&entry->list);
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01003458 rhashtable_remove_fast(&hwsim_radios_rht, &entry->rht,
3459 hwsim_rht_params);
Jukka Rissanene9ed49b2014-10-09 15:27:51 +03003460 INIT_WORK(&entry->destroy_work, destroy_radio);
Benjamin Beichlerb71d8562018-01-10 17:42:51 +01003461 queue_work(hwsim_wq, &entry->destroy_work);
Jukka Rissanene9ed49b2014-10-09 15:27:51 +03003462 }
3463 }
3464 spin_unlock_bh(&hwsim_radio_lock);
3465}
3466
Javier Lopez78825132011-06-01 11:26:13 +02003467static int mac80211_hwsim_netlink_notify(struct notifier_block *nb,
3468 unsigned long state,
3469 void *_notify)
3470{
3471 struct netlink_notify *notify = _notify;
3472
3473 if (state != NETLINK_URELEASE)
3474 return NOTIFY_DONE;
3475
Jukka Rissanene9ed49b2014-10-09 15:27:51 +03003476 remove_user_radios(notify->portid);
3477
Martin Willif21e4d82016-05-14 10:34:44 +02003478 if (notify->portid == hwsim_net_get_wmediumd(notify->net)) {
Javier Lopez78825132011-06-01 11:26:13 +02003479 printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink"
3480 " socket, switching to perfect channel medium\n");
Martin Willif21e4d82016-05-14 10:34:44 +02003481 hwsim_register_wmediumd(notify->net, 0);
Javier Lopez78825132011-06-01 11:26:13 +02003482 }
3483 return NOTIFY_DONE;
3484
3485}
3486
3487static struct notifier_block hwsim_netlink_notifier = {
3488 .notifier_call = mac80211_hwsim_netlink_notify,
3489};
3490
Johannes Berg56989f62016-10-24 14:40:05 +02003491static int __init hwsim_init_netlink(void)
Javier Lopez78825132011-06-01 11:26:13 +02003492{
3493 int rc;
Johannes Berge8261172012-07-27 19:48:26 +02003494
Javier Lopez78825132011-06-01 11:26:13 +02003495 printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
3496
Johannes Berg489111e2016-10-24 14:40:03 +02003497 rc = genl_register_family(&hwsim_genl_family);
Javier Lopez78825132011-06-01 11:26:13 +02003498 if (rc)
3499 goto failure;
3500
3501 rc = netlink_register_notifier(&hwsim_netlink_notifier);
Su Kang Yin2459cd82015-08-07 16:54:10 +08003502 if (rc) {
3503 genl_unregister_family(&hwsim_genl_family);
Javier Lopez78825132011-06-01 11:26:13 +02003504 goto failure;
Su Kang Yin2459cd82015-08-07 16:54:10 +08003505 }
Javier Lopez78825132011-06-01 11:26:13 +02003506
3507 return 0;
3508
3509failure:
Lubomir Rintel62b093b2017-09-18 15:56:51 +02003510 pr_debug("mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02003511 return -EINVAL;
3512}
3513
Martin Willi100cb9f2016-05-09 18:33:59 +02003514static __net_init int hwsim_init_net(struct net *net)
3515{
Kirill Tkhai03695542018-03-01 14:30:09 +03003516 return hwsim_net_set_netgroup(net);
Martin Willi100cb9f2016-05-09 18:33:59 +02003517}
3518
3519static void __net_exit hwsim_exit_net(struct net *net)
3520{
3521 struct mac80211_hwsim_data *data, *tmp;
3522
3523 spin_lock_bh(&hwsim_radio_lock);
3524 list_for_each_entry_safe(data, tmp, &hwsim_radios, list) {
3525 if (!net_eq(wiphy_net(data->hw->wiphy), net))
3526 continue;
3527
3528 /* Radios created in init_net are returned to init_net. */
3529 if (data->netgroup == hwsim_net_get_netgroup(&init_net))
3530 continue;
3531
3532 list_del(&data->list);
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01003533 rhashtable_remove_fast(&hwsim_radios_rht, &data->rht,
3534 hwsim_rht_params);
Benjamin Beichler8cfd36a2018-03-07 18:11:07 +01003535 hwsim_radios_generation++;
3536 spin_unlock_bh(&hwsim_radio_lock);
3537 mac80211_hwsim_del_radio(data,
3538 wiphy_name(data->hw->wiphy),
3539 NULL);
3540 spin_lock_bh(&hwsim_radio_lock);
Martin Willi100cb9f2016-05-09 18:33:59 +02003541 }
3542 spin_unlock_bh(&hwsim_radio_lock);
Kirill Tkhai03695542018-03-01 14:30:09 +03003543
3544 ida_simple_remove(&hwsim_netgroup_ida, hwsim_net_get_netgroup(net));
Martin Willi100cb9f2016-05-09 18:33:59 +02003545}
3546
3547static struct pernet_operations hwsim_net_ops = {
3548 .init = hwsim_init_net,
3549 .exit = hwsim_exit_net,
3550 .id = &hwsim_net_id,
3551 .size = sizeof(struct hwsim_net),
3552};
3553
Javier Lopez78825132011-06-01 11:26:13 +02003554static void hwsim_exit_netlink(void)
3555{
Javier Lopez78825132011-06-01 11:26:13 +02003556 /* unregister the notifier */
3557 netlink_unregister_notifier(&hwsim_netlink_notifier);
3558 /* unregister the family */
Johannes Bergcf7a6b22014-01-06 21:55:14 +01003559 genl_unregister_family(&hwsim_genl_family);
Javier Lopez78825132011-06-01 11:26:13 +02003560}
3561
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003562static int __init init_mac80211_hwsim(void)
3563{
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003564 int i, err;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003565
Johannes Bergbc791092014-01-06 23:29:20 +01003566 if (radios < 0 || radios > 100)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003567 return -EINVAL;
3568
Johannes Berge8261172012-07-27 19:48:26 +02003569 if (channels < 1)
3570 return -EINVAL;
3571
Johannes Berg0e057d732008-09-12 00:39:22 +02003572 spin_lock_init(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003573
Johannes Bergce162bf2018-01-24 08:40:51 +01003574 hwsim_wq = alloc_workqueue("hwsim_wq", 0, 0);
Benjamin Beichlerb71d8562018-01-10 17:42:51 +01003575 if (!hwsim_wq)
3576 return -ENOMEM;
Johannes Berg3f61b7a2018-05-29 12:04:51 +02003577
3578 err = rhashtable_init(&hwsim_radios_rht, &hwsim_rht_params);
3579 if (err)
3580 goto out_free_wq;
Benjamin Beichlerb71d8562018-01-10 17:42:51 +01003581
Martin Willi100cb9f2016-05-09 18:33:59 +02003582 err = register_pernet_device(&hwsim_net_ops);
Martin Pitt9ea927742013-04-08 11:30:01 +02003583 if (err)
Johannes Berg3f61b7a2018-05-29 12:04:51 +02003584 goto out_free_rht;
Martin Pitt9ea927742013-04-08 11:30:01 +02003585
Martin Willi100cb9f2016-05-09 18:33:59 +02003586 err = platform_driver_register(&mac80211_hwsim_driver);
3587 if (err)
3588 goto out_unregister_pernet;
3589
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003590 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
Martin Pitt9ea927742013-04-08 11:30:01 +02003591 if (IS_ERR(hwsim_class)) {
3592 err = PTR_ERR(hwsim_class);
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003593 goto out_unregister_driver;
Martin Pitt9ea927742013-04-08 11:30:01 +02003594 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003595
Jukka Rissanen62759362014-10-31 14:48:47 +02003596 err = hwsim_init_netlink();
3597 if (err < 0)
3598 goto out_unregister_driver;
3599
Johannes Berg0e057d732008-09-12 00:39:22 +02003600 for (i = 0; i < radios; i++) {
Jukka Rissanen62759362014-10-31 14:48:47 +02003601 struct hwsim_new_radio_params param = { 0 };
3602
3603 param.channels = channels;
Johannes Berg0e057d732008-09-12 00:39:22 +02003604
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003605 switch (regtest) {
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003606 case HWSIM_REGTEST_DIFF_COUNTRY:
Johannes Berg26b0e412014-01-10 13:37:38 +01003607 if (i < ARRAY_SIZE(hwsim_alpha2s))
Jukka Rissanen62759362014-10-31 14:48:47 +02003608 param.reg_alpha2 = hwsim_alpha2s[i];
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003609 break;
3610 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
3611 if (!i)
Jukka Rissanen62759362014-10-31 14:48:47 +02003612 param.reg_alpha2 = hwsim_alpha2s[0];
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003613 break;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003614 case HWSIM_REGTEST_STRICT_ALL:
Jukka Rissanen62759362014-10-31 14:48:47 +02003615 param.reg_strict = true;
Johannes Berg26b0e412014-01-10 13:37:38 +01003616 case HWSIM_REGTEST_DRIVER_REG_ALL:
Jukka Rissanen62759362014-10-31 14:48:47 +02003617 param.reg_alpha2 = hwsim_alpha2s[0];
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003618 break;
Johannes Berg26b0e412014-01-10 13:37:38 +01003619 case HWSIM_REGTEST_WORLD_ROAM:
3620 if (i == 0)
Jukka Rissanen62759362014-10-31 14:48:47 +02003621 param.regd = &hwsim_world_regdom_custom_01;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003622 break;
3623 case HWSIM_REGTEST_CUSTOM_WORLD:
Jukka Rissanen62759362014-10-31 14:48:47 +02003624 param.regd = &hwsim_world_regdom_custom_01;
Johannes Berg26b0e412014-01-10 13:37:38 +01003625 break;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003626 case HWSIM_REGTEST_CUSTOM_WORLD_2:
Johannes Berg26b0e412014-01-10 13:37:38 +01003627 if (i == 0)
Jukka Rissanen62759362014-10-31 14:48:47 +02003628 param.regd = &hwsim_world_regdom_custom_01;
Johannes Berg26b0e412014-01-10 13:37:38 +01003629 else if (i == 1)
Jukka Rissanen62759362014-10-31 14:48:47 +02003630 param.regd = &hwsim_world_regdom_custom_02;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003631 break;
3632 case HWSIM_REGTEST_STRICT_FOLLOW:
Johannes Berg26b0e412014-01-10 13:37:38 +01003633 if (i == 0) {
Jukka Rissanen62759362014-10-31 14:48:47 +02003634 param.reg_strict = true;
3635 param.reg_alpha2 = hwsim_alpha2s[0];
Johannes Berg26b0e412014-01-10 13:37:38 +01003636 }
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003637 break;
3638 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
Johannes Berg26b0e412014-01-10 13:37:38 +01003639 if (i == 0) {
Jukka Rissanen62759362014-10-31 14:48:47 +02003640 param.reg_strict = true;
3641 param.reg_alpha2 = hwsim_alpha2s[0];
Johannes Berg26b0e412014-01-10 13:37:38 +01003642 } else if (i == 1) {
Jukka Rissanen62759362014-10-31 14:48:47 +02003643 param.reg_alpha2 = hwsim_alpha2s[1];
Johannes Berg26b0e412014-01-10 13:37:38 +01003644 }
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003645 break;
3646 case HWSIM_REGTEST_ALL:
Johannes Berg26b0e412014-01-10 13:37:38 +01003647 switch (i) {
3648 case 0:
Jukka Rissanen62759362014-10-31 14:48:47 +02003649 param.regd = &hwsim_world_regdom_custom_01;
Johannes Berg26b0e412014-01-10 13:37:38 +01003650 break;
3651 case 1:
Jukka Rissanen62759362014-10-31 14:48:47 +02003652 param.regd = &hwsim_world_regdom_custom_02;
Johannes Berg26b0e412014-01-10 13:37:38 +01003653 break;
3654 case 2:
Jukka Rissanen62759362014-10-31 14:48:47 +02003655 param.reg_alpha2 = hwsim_alpha2s[0];
Johannes Berg26b0e412014-01-10 13:37:38 +01003656 break;
3657 case 3:
Jukka Rissanen62759362014-10-31 14:48:47 +02003658 param.reg_alpha2 = hwsim_alpha2s[1];
Johannes Berg26b0e412014-01-10 13:37:38 +01003659 break;
3660 case 4:
Jukka Rissanen62759362014-10-31 14:48:47 +02003661 param.reg_strict = true;
3662 param.reg_alpha2 = hwsim_alpha2s[2];
Johannes Berg26b0e412014-01-10 13:37:38 +01003663 break;
3664 }
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04003665 break;
3666 default:
3667 break;
3668 }
3669
Jukka Rissanen62759362014-10-31 14:48:47 +02003670 param.p2p_device = support_p2p_device;
3671 param.use_chanctx = channels > 1;
3672
3673 err = mac80211_hwsim_new_radio(NULL, &param);
Johannes Bergbc791092014-01-06 23:29:20 +01003674 if (err < 0)
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003675 goto out_free_radios;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003676 }
3677
Tom Gundersenc835a672014-07-14 16:37:24 +02003678 hwsim_mon = alloc_netdev(0, "hwsim%d", NET_NAME_UNKNOWN,
3679 hwsim_mon_setup);
Wei Yongjunbcdd8222013-08-26 15:32:58 +08003680 if (hwsim_mon == NULL) {
3681 err = -ENOMEM;
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003682 goto out_free_radios;
Wei Yongjunbcdd8222013-08-26 15:32:58 +08003683 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003684
Javier Lopez78825132011-06-01 11:26:13 +02003685 rtnl_lock();
Javier Lopez78825132011-06-01 11:26:13 +02003686 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003687 if (err < 0) {
3688 rtnl_unlock();
3689 goto out_free_radios;
3690 }
Javier Lopez78825132011-06-01 11:26:13 +02003691
3692 err = register_netdevice(hwsim_mon);
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003693 if (err < 0) {
3694 rtnl_unlock();
3695 goto out_free_mon;
3696 }
Javier Lopez78825132011-06-01 11:26:13 +02003697 rtnl_unlock();
3698
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003699 return 0;
3700
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003701out_free_mon:
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003702 free_netdev(hwsim_mon);
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003703out_free_radios:
Ian Schram3a33cc12008-07-21 13:19:35 -07003704 mac80211_hwsim_free();
Johannes Bergf39c2bf2014-01-06 22:39:27 +01003705out_unregister_driver:
Sasha Levinc07fe5a2013-04-24 00:40:05 -04003706 platform_driver_unregister(&mac80211_hwsim_driver);
Martin Willi100cb9f2016-05-09 18:33:59 +02003707out_unregister_pernet:
3708 unregister_pernet_device(&hwsim_net_ops);
Johannes Berg3f61b7a2018-05-29 12:04:51 +02003709out_free_rht:
3710 rhashtable_destroy(&hwsim_radios_rht);
3711out_free_wq:
3712 destroy_workqueue(hwsim_wq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003713 return err;
3714}
Johannes Bergf8fffc72012-07-27 15:16:02 +02003715module_init(init_mac80211_hwsim);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003716
3717static void __exit exit_mac80211_hwsim(void)
3718{
Lubomir Rintel62b093b2017-09-18 15:56:51 +02003719 pr_debug("mac80211_hwsim: unregister radios\n");
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003720
Javier Lopez78825132011-06-01 11:26:13 +02003721 hwsim_exit_netlink();
3722
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003723 mac80211_hwsim_free();
Benjamin Beichlerb71d8562018-01-10 17:42:51 +01003724 flush_workqueue(hwsim_wq);
3725
Benjamin Beichlerc6509cc2018-01-10 17:42:52 +01003726 rhashtable_destroy(&hwsim_radios_rht);
Johannes Berg5d416352009-07-13 13:04:30 +02003727 unregister_netdev(hwsim_mon);
Sasha Levinc07fe5a2013-04-24 00:40:05 -04003728 platform_driver_unregister(&mac80211_hwsim_driver);
Martin Willi100cb9f2016-05-09 18:33:59 +02003729 unregister_pernet_device(&hwsim_net_ops);
Benjamin Beichlerb71d8562018-01-10 17:42:51 +01003730 destroy_workqueue(hwsim_wq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003731}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03003732module_exit(exit_mac80211_hwsim);