blob: 76b362ed76bd3ad8c8c7b3ea54a2b11ad65b744b [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>
33#include "mac80211_hwsim.h"
34
35#define WARN_QUEUE 100
36#define MAX_QUEUE 200
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030037
38MODULE_AUTHOR("Jouni Malinen");
39MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
40MODULE_LICENSE("GPL");
41
Eric W. Biederman15e47302012-09-07 20:12:54 +000042static u32 wmediumd_portid;
Johannes Berga1910f92011-12-07 12:35:17 +010043
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030044static int radios = 2;
45module_param(radios, int, 0444);
46MODULE_PARM_DESC(radios, "Number of simulated radios");
47
Johannes Berge8261172012-07-27 19:48:26 +020048static int channels = 1;
49module_param(channels, int, 0444);
50MODULE_PARM_DESC(channels, "Number of concurrent channels");
Johannes Berg69068032010-02-03 10:47:55 +010051
Johannes Berga357d7f2012-12-10 11:57:42 +010052static bool paged_rx = false;
53module_param(paged_rx, bool, 0644);
54MODULE_PARM_DESC(paged_rx, "Use paged SKBs for RX instead of linear ones");
55
Karl Beldan1eb32172013-04-19 14:44:52 +020056static bool rctbl = false;
57module_param(rctbl, bool, 0444);
58MODULE_PARM_DESC(rctbl, "Handle rate control table");
59
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040060/**
61 * enum hwsim_regtest - the type of regulatory tests we offer
62 *
63 * These are the different values you can use for the regtest
64 * module parameter. This is useful to help test world roaming
65 * and the driver regulatory_hint() call and combinations of these.
66 * If you want to do specific alpha2 regulatory domain tests simply
67 * use the userspace regulatory request as that will be respected as
68 * well without the need of this module parameter. This is designed
69 * only for testing the driver regulatory request, world roaming
70 * and all possible combinations.
71 *
72 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
73 * this is the default value.
74 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
75 * hint, only one driver regulatory hint will be sent as such the
76 * secondary radios are expected to follow.
77 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
78 * request with all radios reporting the same regulatory domain.
79 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
80 * different regulatory domains requests. Expected behaviour is for
81 * an intersection to occur but each device will still use their
82 * respective regulatory requested domains. Subsequent radios will
83 * use the resulting intersection.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030084 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040085 * this by using a custom beacon-capable regulatory domain for the first
86 * radio. All other device world roam.
87 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
88 * domain requests. All radios will adhere to this custom world regulatory
89 * domain.
90 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
91 * domain requests. The first radio will adhere to the first custom world
92 * regulatory domain, the second one to the second custom world regulatory
93 * domain. All other devices will world roam.
94 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
95 * settings, only the first radio will send a regulatory domain request
96 * and use strict settings. The rest of the radios are expected to follow.
97 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
98 * settings. All radios will adhere to this.
99 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
100 * domain settings, combined with secondary driver regulatory domain
101 * settings. The first radio will get a strict regulatory domain setting
102 * using the first driver regulatory request and the second radio will use
103 * non-strict settings using the second driver regulatory request. All
104 * other devices should follow the intersection created between the
105 * first two.
106 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
107 * at least 6 radios for a complete test. We will test in this order:
108 * 1 - driver custom world regulatory domain
109 * 2 - second custom world regulatory domain
110 * 3 - first driver regulatory domain request
111 * 4 - second driver regulatory domain request
112 * 5 - strict regulatory domain settings using the third driver regulatory
113 * domain request
114 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
115 * regulatory requests.
116 */
117enum hwsim_regtest {
118 HWSIM_REGTEST_DISABLED = 0,
119 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
120 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
121 HWSIM_REGTEST_DIFF_COUNTRY = 3,
122 HWSIM_REGTEST_WORLD_ROAM = 4,
123 HWSIM_REGTEST_CUSTOM_WORLD = 5,
124 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
125 HWSIM_REGTEST_STRICT_FOLLOW = 7,
126 HWSIM_REGTEST_STRICT_ALL = 8,
127 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
128 HWSIM_REGTEST_ALL = 10,
129};
130
131/* Set to one of the HWSIM_REGTEST_* values above */
132static int regtest = HWSIM_REGTEST_DISABLED;
133module_param(regtest, int, 0444);
134MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
135
136static const char *hwsim_alpha2s[] = {
137 "FI",
138 "AL",
139 "US",
140 "DE",
141 "JP",
142 "AL",
143};
144
145static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
146 .n_reg_rules = 4,
147 .alpha2 = "99",
148 .reg_rules = {
149 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
150 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
151 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
152 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
153 }
154};
155
156static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
157 .n_reg_rules = 2,
158 .alpha2 = "99",
159 .reg_rules = {
160 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
161 REG_RULE(5725-10, 5850+10, 40, 0, 30,
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200162 NL80211_RRF_NO_IR),
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -0400163 }
164};
165
Johannes Berg8aa21e62008-09-11 02:16:36 +0200166struct hwsim_vif_priv {
167 u32 magic;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200168 u8 bssid[ETH_ALEN];
169 bool assoc;
Jouni Malinen0bb861e2013-10-22 14:11:17 +0300170 bool bcn_en;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200171 u16 aid;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200172};
173
174#define HWSIM_VIF_MAGIC 0x69537748
175
176static inline void hwsim_check_magic(struct ieee80211_vif *vif)
177{
178 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berge8261172012-07-27 19:48:26 +0200179 WARN(vp->magic != HWSIM_VIF_MAGIC,
180 "Invalid VIF (%p) magic %#x, %pM, %d/%d\n",
181 vif, vp->magic, vif->addr, vif->type, vif->p2p);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200182}
183
184static inline void hwsim_set_magic(struct ieee80211_vif *vif)
185{
186 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
187 vp->magic = HWSIM_VIF_MAGIC;
188}
189
190static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
191{
192 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
193 vp->magic = 0;
194}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300195
Johannes Berg81c06522008-09-11 02:17:01 +0200196struct hwsim_sta_priv {
197 u32 magic;
198};
199
Johannes Berge8261172012-07-27 19:48:26 +0200200#define HWSIM_STA_MAGIC 0x6d537749
Johannes Berg81c06522008-09-11 02:17:01 +0200201
202static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
203{
204 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200205 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
Johannes Berg81c06522008-09-11 02:17:01 +0200206}
207
208static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
209{
210 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200211 sp->magic = HWSIM_STA_MAGIC;
Johannes Berg81c06522008-09-11 02:17:01 +0200212}
213
214static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
215{
216 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
217 sp->magic = 0;
218}
219
Johannes Berge8261172012-07-27 19:48:26 +0200220struct hwsim_chanctx_priv {
221 u32 magic;
222};
223
224#define HWSIM_CHANCTX_MAGIC 0x6d53774a
225
226static inline void hwsim_check_chanctx_magic(struct ieee80211_chanctx_conf *c)
227{
228 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
229 WARN_ON(cp->magic != HWSIM_CHANCTX_MAGIC);
230}
231
232static inline void hwsim_set_chanctx_magic(struct ieee80211_chanctx_conf *c)
233{
234 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
235 cp->magic = HWSIM_CHANCTX_MAGIC;
236}
237
238static inline void hwsim_clear_chanctx_magic(struct ieee80211_chanctx_conf *c)
239{
240 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
241 cp->magic = 0;
242}
243
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300244static struct class *hwsim_class;
245
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300246static struct net_device *hwsim_mon; /* global monitor netdev */
247
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800248#define CHAN2G(_freq) { \
249 .band = IEEE80211_BAND_2GHZ, \
250 .center_freq = (_freq), \
251 .hw_value = (_freq), \
252 .max_power = 20, \
253}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300254
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800255#define CHAN5G(_freq) { \
256 .band = IEEE80211_BAND_5GHZ, \
257 .center_freq = (_freq), \
258 .hw_value = (_freq), \
259 .max_power = 20, \
260}
261
262static const struct ieee80211_channel hwsim_channels_2ghz[] = {
263 CHAN2G(2412), /* Channel 1 */
264 CHAN2G(2417), /* Channel 2 */
265 CHAN2G(2422), /* Channel 3 */
266 CHAN2G(2427), /* Channel 4 */
267 CHAN2G(2432), /* Channel 5 */
268 CHAN2G(2437), /* Channel 6 */
269 CHAN2G(2442), /* Channel 7 */
270 CHAN2G(2447), /* Channel 8 */
271 CHAN2G(2452), /* Channel 9 */
272 CHAN2G(2457), /* Channel 10 */
273 CHAN2G(2462), /* Channel 11 */
274 CHAN2G(2467), /* Channel 12 */
275 CHAN2G(2472), /* Channel 13 */
276 CHAN2G(2484), /* Channel 14 */
277};
278
279static const struct ieee80211_channel hwsim_channels_5ghz[] = {
280 CHAN5G(5180), /* Channel 36 */
281 CHAN5G(5200), /* Channel 40 */
282 CHAN5G(5220), /* Channel 44 */
283 CHAN5G(5240), /* Channel 48 */
284
285 CHAN5G(5260), /* Channel 52 */
286 CHAN5G(5280), /* Channel 56 */
287 CHAN5G(5300), /* Channel 60 */
288 CHAN5G(5320), /* Channel 64 */
289
290 CHAN5G(5500), /* Channel 100 */
291 CHAN5G(5520), /* Channel 104 */
292 CHAN5G(5540), /* Channel 108 */
293 CHAN5G(5560), /* Channel 112 */
294 CHAN5G(5580), /* Channel 116 */
295 CHAN5G(5600), /* Channel 120 */
296 CHAN5G(5620), /* Channel 124 */
297 CHAN5G(5640), /* Channel 128 */
298 CHAN5G(5660), /* Channel 132 */
299 CHAN5G(5680), /* Channel 136 */
300 CHAN5G(5700), /* Channel 140 */
301
302 CHAN5G(5745), /* Channel 149 */
303 CHAN5G(5765), /* Channel 153 */
304 CHAN5G(5785), /* Channel 157 */
305 CHAN5G(5805), /* Channel 161 */
306 CHAN5G(5825), /* Channel 165 */
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300307};
308
309static const struct ieee80211_rate hwsim_rates[] = {
310 { .bitrate = 10 },
311 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
312 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
313 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
314 { .bitrate = 60 },
315 { .bitrate = 90 },
316 { .bitrate = 120 },
317 { .bitrate = 180 },
318 { .bitrate = 240 },
319 { .bitrate = 360 },
320 { .bitrate = 480 },
321 { .bitrate = 540 }
322};
323
Johannes Berg0e057d732008-09-12 00:39:22 +0200324static spinlock_t hwsim_radio_lock;
325static struct list_head hwsim_radios;
326
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300327struct mac80211_hwsim_data {
Johannes Berg0e057d732008-09-12 00:39:22 +0200328 struct list_head list;
329 struct ieee80211_hw *hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300330 struct device *dev;
Johannes Berg1b083ea2012-07-03 13:14:49 +0200331 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800332 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
333 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300334 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
335
Johannes Bergef15aac2010-01-20 12:02:33 +0100336 struct mac_address addresses[2];
337
Johannes Berge8261172012-07-27 19:48:26 +0200338 struct ieee80211_channel *tmp_chan;
339 struct delayed_work roc_done;
340 struct delayed_work hw_scan;
341 struct cfg80211_scan_request *hw_scan_request;
342 struct ieee80211_vif *hw_scan_vif;
343 int scan_chan_idx;
344
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300345 struct ieee80211_channel *channel;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800346 u64 beacon_int /* beacon interval in us */;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300347 unsigned int rx_filter;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400348 bool started, idle, scanning;
349 struct mutex mutex;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800350 struct tasklet_hrtimer beacon_timer;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200351 enum ps_mode {
352 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
353 } ps;
354 bool ps_poll_pending;
355 struct dentry *debugfs;
Daniel Wagner73606d02009-05-18 19:49:25 +0200356
Javier Lopez78825132011-06-01 11:26:13 +0200357 struct sk_buff_head pending; /* packets pending */
Daniel Wagner73606d02009-05-18 19:49:25 +0200358 /*
359 * Only radios in the same group can communicate together (the
360 * channel has to match too). Each bit represents a group. A
361 * radio can be in more then one group.
362 */
363 u64 group;
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700364
365 int power_level;
Javier Cardona2f40b942012-03-05 17:20:37 -0800366
367 /* difference between this hw's clock and the real clock, in usecs */
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800368 s64 tsf_offset;
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800369 s64 bcn_delta;
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800370 /* absolute beacon transmission time. Used to cover up "tx" delay. */
371 u64 abs_bcn_ts;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300372};
373
374
375struct hwsim_radiotap_hdr {
376 struct ieee80211_radiotap_header hdr;
Javier Cardona2f40b942012-03-05 17:20:37 -0800377 __le64 rt_tsft;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300378 u8 rt_flags;
379 u8 rt_rate;
380 __le16 rt_channel;
381 __le16 rt_chbitmask;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000382} __packed;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300383
Javier Lopez78825132011-06-01 11:26:13 +0200384/* MAC80211_HWSIM netlinf family */
385static struct genl_family hwsim_genl_family = {
386 .id = GENL_ID_GENERATE,
387 .hdrsize = 0,
388 .name = "MAC80211_HWSIM",
389 .version = 1,
390 .maxattr = HWSIM_ATTR_MAX,
391};
392
393/* MAC80211_HWSIM netlink policy */
394
395static struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
396 [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC,
397 .len = 6*sizeof(u8) },
398 [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC,
399 .len = 6*sizeof(u8) },
400 [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
401 .len = IEEE80211_MAX_DATA_LEN },
402 [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 },
403 [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 },
404 [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 },
405 [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC,
406 .len = IEEE80211_TX_MAX_RATES*sizeof(
407 struct hwsim_tx_rate)},
408 [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 },
409};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300410
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000411static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
412 struct net_device *dev)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300413{
414 /* TODO: allow packet injection */
415 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000416 return NETDEV_TX_OK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300417}
418
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800419static inline u64 mac80211_hwsim_get_tsf_raw(void)
420{
421 return ktime_to_us(ktime_get_real());
422}
423
Javier Cardona2f40b942012-03-05 17:20:37 -0800424static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data)
425{
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800426 u64 now = mac80211_hwsim_get_tsf_raw();
Javier Cardona2f40b942012-03-05 17:20:37 -0800427 return cpu_to_le64(now + data->tsf_offset);
428}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300429
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800430static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw,
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800431 struct ieee80211_vif *vif)
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800432{
433 struct mac80211_hwsim_data *data = hw->priv;
434 return le64_to_cpu(__mac80211_hwsim_get_tsf(data));
435}
436
437static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw,
438 struct ieee80211_vif *vif, u64 tsf)
439{
440 struct mac80211_hwsim_data *data = hw->priv;
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800441 u64 now = mac80211_hwsim_get_tsf(hw, vif);
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800442 u32 bcn_int = data->beacon_int;
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800443 s64 delta = tsf - now;
444
445 data->tsf_offset += delta;
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800446 /* adjust after beaconing with new timestamp at old TBTT */
447 data->bcn_delta = do_div(delta, bcn_int);
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800448}
449
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300450static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200451 struct sk_buff *tx_skb,
452 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300453{
454 struct mac80211_hwsim_data *data = hw->priv;
455 struct sk_buff *skb;
456 struct hwsim_radiotap_hdr *hdr;
457 u16 flags;
458 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
459 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
460
461 if (!netif_running(hwsim_mon))
462 return;
463
464 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
465 if (skb == NULL)
466 return;
467
468 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
469 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
470 hdr->hdr.it_pad = 0;
471 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
Jouni Malinenf248f102008-06-13 19:44:47 +0300472 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
473 (1 << IEEE80211_RADIOTAP_RATE) |
Javier Cardona2f40b942012-03-05 17:20:37 -0800474 (1 << IEEE80211_RADIOTAP_TSFT) |
Jouni Malinenf248f102008-06-13 19:44:47 +0300475 (1 << IEEE80211_RADIOTAP_CHANNEL));
Javier Cardona2f40b942012-03-05 17:20:37 -0800476 hdr->rt_tsft = __mac80211_hwsim_get_tsf(data);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300477 hdr->rt_flags = 0;
478 hdr->rt_rate = txrate->bitrate / 5;
Johannes Berge8261172012-07-27 19:48:26 +0200479 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300480 flags = IEEE80211_CHAN_2GHZ;
481 if (txrate->flags & IEEE80211_RATE_ERP_G)
482 flags |= IEEE80211_CHAN_OFDM;
483 else
484 flags |= IEEE80211_CHAN_CCK;
485 hdr->rt_chbitmask = cpu_to_le16(flags);
486
487 skb->dev = hwsim_mon;
488 skb_set_mac_header(skb, 0);
489 skb->ip_summed = CHECKSUM_UNNECESSARY;
490 skb->pkt_type = PACKET_OTHERHOST;
Jouni Malinenf248f102008-06-13 19:44:47 +0300491 skb->protocol = htons(ETH_P_802_2);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300492 memset(skb->cb, 0, sizeof(skb->cb));
493 netif_rx(skb);
494}
495
496
Johannes Berge8261172012-07-27 19:48:26 +0200497static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan,
498 const u8 *addr)
Jouni Malinen6c085222009-11-01 11:31:45 +0200499{
Jouni Malinen6c085222009-11-01 11:31:45 +0200500 struct sk_buff *skb;
501 struct hwsim_radiotap_hdr *hdr;
502 u16 flags;
503 struct ieee80211_hdr *hdr11;
504
505 if (!netif_running(hwsim_mon))
506 return;
507
508 skb = dev_alloc_skb(100);
509 if (skb == NULL)
510 return;
511
512 hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr));
513 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
514 hdr->hdr.it_pad = 0;
515 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
516 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
517 (1 << IEEE80211_RADIOTAP_CHANNEL));
518 hdr->rt_flags = 0;
519 hdr->rt_rate = 0;
Johannes Berge8261172012-07-27 19:48:26 +0200520 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinen6c085222009-11-01 11:31:45 +0200521 flags = IEEE80211_CHAN_2GHZ;
522 hdr->rt_chbitmask = cpu_to_le16(flags);
523
524 hdr11 = (struct ieee80211_hdr *) skb_put(skb, 10);
525 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
526 IEEE80211_STYPE_ACK);
527 hdr11->duration_id = cpu_to_le16(0);
528 memcpy(hdr11->addr1, addr, ETH_ALEN);
529
530 skb->dev = hwsim_mon;
531 skb_set_mac_header(skb, 0);
532 skb->ip_summed = CHECKSUM_UNNECESSARY;
533 skb->pkt_type = PACKET_OTHERHOST;
534 skb->protocol = htons(ETH_P_802_2);
535 memset(skb->cb, 0, sizeof(skb->cb));
536 netif_rx(skb);
537}
538
539
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200540static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
541 struct sk_buff *skb)
542{
543 switch (data->ps) {
544 case PS_DISABLED:
545 return true;
546 case PS_ENABLED:
547 return false;
548 case PS_AUTO_POLL:
549 /* TODO: accept (some) Beacons by default and other frames only
550 * if pending PS-Poll has been sent */
551 return true;
552 case PS_MANUAL_POLL:
553 /* Allow unicast frames to own address if there is a pending
554 * PS-Poll */
555 if (data->ps_poll_pending &&
556 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
557 ETH_ALEN) == 0) {
558 data->ps_poll_pending = false;
559 return true;
560 }
561 return false;
562 }
563
564 return true;
565}
566
567
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200568struct mac80211_hwsim_addr_match_data {
569 bool ret;
570 const u8 *addr;
571};
572
573static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
574 struct ieee80211_vif *vif)
575{
576 struct mac80211_hwsim_addr_match_data *md = data;
577 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
578 md->ret = true;
579}
580
581
582static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
583 const u8 *addr)
584{
585 struct mac80211_hwsim_addr_match_data md;
586
587 if (memcmp(addr, data->hw->wiphy->perm_addr, ETH_ALEN) == 0)
588 return true;
589
590 md.ret = false;
591 md.addr = addr;
592 ieee80211_iterate_active_interfaces_atomic(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +0100593 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200594 mac80211_hwsim_addr_iter,
595 &md);
596
597 return md.ret;
598}
599
Javier Lopez78825132011-06-01 11:26:13 +0200600static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw,
601 struct sk_buff *my_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000602 int dst_portid)
Javier Lopez78825132011-06-01 11:26:13 +0200603{
604 struct sk_buff *skb;
605 struct mac80211_hwsim_data *data = hw->priv;
606 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data;
607 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb);
608 void *msg_head;
609 unsigned int hwsim_flags = 0;
610 int i;
611 struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES];
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200612
Javier Lopez78825132011-06-01 11:26:13 +0200613 if (data->ps != PS_DISABLED)
614 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
615 /* If the queue contains MAX_QUEUE skb's drop some */
616 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
617 /* Droping until WARN_QUEUE level */
618 while (skb_queue_len(&data->pending) >= WARN_QUEUE)
619 skb_dequeue(&data->pending);
620 }
621
Thomas Graf58050fc2012-06-28 03:57:45 +0000622 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Javier Lopez78825132011-06-01 11:26:13 +0200623 if (skb == NULL)
624 goto nla_put_failure;
625
626 msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
627 HWSIM_CMD_FRAME);
628 if (msg_head == NULL) {
629 printk(KERN_DEBUG "mac80211_hwsim: problem with msg_head\n");
630 goto nla_put_failure;
631 }
632
David S. Miller633c9382012-04-01 21:03:30 -0400633 if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER,
634 sizeof(struct mac_address), data->addresses[1].addr))
635 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200636
637 /* We get the skb->data */
David S. Miller633c9382012-04-01 21:03:30 -0400638 if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data))
639 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200640
641 /* We get the flags for this transmission, and we translate them to
642 wmediumd flags */
643
644 if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
645 hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS;
646
647 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
648 hwsim_flags |= HWSIM_TX_CTL_NO_ACK;
649
David S. Miller633c9382012-04-01 21:03:30 -0400650 if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags))
651 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200652
653 /* We get the tx control (rate and retries) info*/
654
655 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
656 tx_attempts[i].idx = info->status.rates[i].idx;
657 tx_attempts[i].count = info->status.rates[i].count;
658 }
659
David S. Miller633c9382012-04-01 21:03:30 -0400660 if (nla_put(skb, HWSIM_ATTR_TX_INFO,
661 sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES,
662 tx_attempts))
663 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200664
665 /* We create a cookie to identify this skb */
David S. Miller633c9382012-04-01 21:03:30 -0400666 if (nla_put_u64(skb, HWSIM_ATTR_COOKIE, (unsigned long) my_skb))
667 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200668
669 genlmsg_end(skb, msg_head);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000670 genlmsg_unicast(&init_net, skb, dst_portid);
Javier Lopez78825132011-06-01 11:26:13 +0200671
672 /* Enqueue the packet */
673 skb_queue_tail(&data->pending, my_skb);
674 return;
675
676nla_put_failure:
Masanari Iidac3938622012-02-17 23:04:10 +0900677 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +0200678}
679
Johannes Berge8261172012-07-27 19:48:26 +0200680static bool hwsim_chans_compat(struct ieee80211_channel *c1,
681 struct ieee80211_channel *c2)
682{
683 if (!c1 || !c2)
684 return false;
685
686 return c1->center_freq == c2->center_freq;
687}
688
689struct tx_iter_data {
690 struct ieee80211_channel *channel;
691 bool receive;
692};
693
694static void mac80211_hwsim_tx_iter(void *_data, u8 *addr,
695 struct ieee80211_vif *vif)
696{
697 struct tx_iter_data *data = _data;
698
699 if (!vif->chanctx_conf)
700 return;
701
702 if (!hwsim_chans_compat(data->channel,
Johannes Berg4bf88532012-11-09 11:39:59 +0100703 rcu_dereference(vif->chanctx_conf)->def.chan))
Johannes Berge8261172012-07-27 19:48:26 +0200704 return;
705
706 data->receive = true;
707}
708
Javier Lopez78825132011-06-01 11:26:13 +0200709static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200710 struct sk_buff *skb,
711 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300712{
Johannes Berg0e057d732008-09-12 00:39:22 +0200713 struct mac80211_hwsim_data *data = hw->priv, *data2;
714 bool ack = false;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300715 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300716 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300717 struct ieee80211_rx_status rx_status;
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800718 u64 now;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300719
720 memset(&rx_status, 0, sizeof(rx_status));
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800721 rx_status.flag |= RX_FLAG_MACTIME_START;
Johannes Berge8261172012-07-27 19:48:26 +0200722 rx_status.freq = chan->center_freq;
723 rx_status.band = chan->band;
Karl Beldandad63302013-04-15 17:09:30 +0200724 if (info->control.rates[0].flags & IEEE80211_TX_RC_VHT_MCS) {
725 rx_status.rate_idx =
726 ieee80211_rate_get_vht_mcs(&info->control.rates[0]);
727 rx_status.vht_nss =
728 ieee80211_rate_get_vht_nss(&info->control.rates[0]);
729 rx_status.flag |= RX_FLAG_VHT;
730 } else {
731 rx_status.rate_idx = info->control.rates[0].idx;
732 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
733 rx_status.flag |= RX_FLAG_HT;
734 }
Jouni Malinen281ed292011-08-06 23:07:00 +0300735 if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
736 rx_status.flag |= RX_FLAG_40MHZ;
737 if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
738 rx_status.flag |= RX_FLAG_SHORT_GI;
Johannes Berg4b14c962009-07-10 16:56:59 +0200739 /* TODO: simulate real signal strength (and optional packet loss) */
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700740 rx_status.signal = data->power_level - 50;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300741
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200742 if (data->ps != PS_DISABLED)
743 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
744
Johannes Berg90e30122009-06-18 14:51:12 +0200745 /* release the skb's source info */
746 skb_orphan(skb);
John W. Linvillec0acf382009-06-30 16:55:52 -0400747 skb_dst_drop(skb);
Johannes Berg90e30122009-06-18 14:51:12 +0200748 skb->mark = 0;
749 secpath_reset(skb);
750 nf_reset(skb);
751
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800752 /*
753 * Get absolute mactime here so all HWs RX at the "same time", and
754 * absolute TX time for beacon mactime so the timestamp matches.
755 * Giving beacons a different mactime than non-beacons looks messy, but
756 * it helps the Toffset be exact and a ~10us mactime discrepancy
757 * probably doesn't really matter.
758 */
759 if (ieee80211_is_beacon(hdr->frame_control) ||
760 ieee80211_is_probe_resp(hdr->frame_control))
761 now = data->abs_bcn_ts;
762 else
763 now = mac80211_hwsim_get_tsf_raw();
764
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300765 /* Copy skb to all enabled radios that are on the current frequency */
Johannes Berg0e057d732008-09-12 00:39:22 +0200766 spin_lock(&hwsim_radio_lock);
767 list_for_each_entry(data2, &hwsim_radios, list) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300768 struct sk_buff *nskb;
Johannes Berge8261172012-07-27 19:48:26 +0200769 struct tx_iter_data tx_iter_data = {
770 .receive = false,
771 .channel = chan,
772 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300773
Johannes Berg0e057d732008-09-12 00:39:22 +0200774 if (data == data2)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300775 continue;
Johannes Berg0e057d732008-09-12 00:39:22 +0200776
Johannes Berge8261172012-07-27 19:48:26 +0200777 if (!data2->started || (data2->idle && !data2->tmp_chan) ||
778 !hwsim_ps_rx_ok(data2, skb))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300779 continue;
780
Johannes Berge8261172012-07-27 19:48:26 +0200781 if (!(data->group & data2->group))
782 continue;
783
784 if (!hwsim_chans_compat(chan, data2->tmp_chan) &&
785 !hwsim_chans_compat(chan, data2->channel)) {
786 ieee80211_iterate_active_interfaces_atomic(
Johannes Berg8b2c9822012-11-06 20:23:30 +0100787 data2->hw, IEEE80211_IFACE_ITER_NORMAL,
788 mac80211_hwsim_tx_iter, &tx_iter_data);
Johannes Berge8261172012-07-27 19:48:26 +0200789 if (!tx_iter_data.receive)
790 continue;
791 }
792
Johannes Berg90b9e4462012-11-16 10:09:08 +0100793 /*
794 * reserve some space for our vendor and the normal
795 * radiotap header, since we're copying anyway
796 */
Johannes Berga357d7f2012-12-10 11:57:42 +0100797 if (skb->len < PAGE_SIZE && paged_rx) {
798 struct page *page = alloc_page(GFP_ATOMIC);
799
800 if (!page)
801 continue;
802
803 nskb = dev_alloc_skb(128);
804 if (!nskb) {
805 __free_page(page);
806 continue;
807 }
808
809 memcpy(page_address(page), skb->data, skb->len);
810 skb_add_rx_frag(nskb, 0, page, 0, skb->len, skb->len);
811 } else {
812 nskb = skb_copy(skb, GFP_ATOMIC);
813 if (!nskb)
814 continue;
815 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300816
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200817 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
Johannes Berg0e057d732008-09-12 00:39:22 +0200818 ack = true;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700819
Thomas Pedersenb66851c2013-01-07 14:48:07 -0800820 rx_status.mactime = now + data2->tsf_offset;
Johannes Berg90b9e4462012-11-16 10:09:08 +0100821#if 0
822 /*
823 * Don't enable this code by default as the OUI 00:00:00
824 * is registered to Xerox so we shouldn't use it here, it
825 * might find its way into pcap files.
826 * Note that this code requires the headroom in the SKB
827 * that was allocated earlier.
828 */
829 rx_status.vendor_radiotap_oui[0] = 0x00;
830 rx_status.vendor_radiotap_oui[1] = 0x00;
831 rx_status.vendor_radiotap_oui[2] = 0x00;
832 rx_status.vendor_radiotap_subns = 127;
833 /*
834 * Radiotap vendor namespaces can (and should) also be
835 * split into fields by using the standard radiotap
836 * presence bitmap mechanism. Use just BIT(0) here for
837 * the presence bitmap.
838 */
839 rx_status.vendor_radiotap_bitmap = BIT(0);
840 /* We have 8 bytes of (dummy) data */
841 rx_status.vendor_radiotap_len = 8;
842 /* For testing, also require it to be aligned */
843 rx_status.vendor_radiotap_align = 8;
844 /* push the data */
845 memcpy(skb_push(nskb, 8), "ABCDEFGH", 8);
846#endif
847
Johannes Bergf1d58c22009-06-17 13:13:00 +0200848 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
849 ieee80211_rx_irqsafe(data2->hw, nskb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300850 }
Johannes Berg0e057d732008-09-12 00:39:22 +0200851 spin_unlock(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300852
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300853 return ack;
854}
855
Thomas Huehn36323f82012-07-23 21:33:42 +0200856static void mac80211_hwsim_tx(struct ieee80211_hw *hw,
857 struct ieee80211_tx_control *control,
858 struct sk_buff *skb)
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300859{
Johannes Berge8261172012-07-27 19:48:26 +0200860 struct mac80211_hwsim_data *data = hw->priv;
861 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
862 struct ieee80211_chanctx_conf *chanctx_conf;
863 struct ieee80211_channel *channel;
Johannes Berg0e057d732008-09-12 00:39:22 +0200864 bool ack;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000865 u32 _portid;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300866
Johannes Berge8261172012-07-27 19:48:26 +0200867 if (WARN_ON(skb->len < 10)) {
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300868 /* Should not happen; just a sanity check for addr1 use */
Johannes Bergfe0f3cd2013-07-14 23:37:14 +0300869 ieee80211_free_txskb(hw, skb);
Johannes Berg7bb45682011-02-24 14:42:06 +0100870 return;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300871 }
872
Johannes Berge8261172012-07-27 19:48:26 +0200873 if (channels == 1) {
874 channel = data->channel;
875 } else if (txi->hw_queue == 4) {
876 channel = data->tmp_chan;
877 } else {
878 chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf);
879 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +0100880 channel = chanctx_conf->def.chan;
Johannes Berge8261172012-07-27 19:48:26 +0200881 else
882 channel = NULL;
883 }
884
885 if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) {
Johannes Bergfe0f3cd2013-07-14 23:37:14 +0300886 ieee80211_free_txskb(hw, skb);
Johannes Berge8261172012-07-27 19:48:26 +0200887 return;
888 }
889
890 if (data->idle && !data->tmp_chan) {
891 wiphy_debug(hw->wiphy, "Trying to TX when idle - reject\n");
Johannes Bergfe0f3cd2013-07-14 23:37:14 +0300892 ieee80211_free_txskb(hw, skb);
Johannes Berge8261172012-07-27 19:48:26 +0200893 return;
894 }
895
896 if (txi->control.vif)
897 hwsim_check_magic(txi->control.vif);
898 if (control->sta)
899 hwsim_check_sta_magic(control->sta);
900
Karl Beldan1eb32172013-04-19 14:44:52 +0200901 if (rctbl)
902 ieee80211_get_tx_rates(txi->control.vif, control->sta, skb,
903 txi->control.rates,
904 ARRAY_SIZE(txi->control.rates));
Johannes Berge8261172012-07-27 19:48:26 +0200905
Karl Beldan1eb32172013-04-19 14:44:52 +0200906 txi->rate_driver_data[0] = channel;
Johannes Berge8261172012-07-27 19:48:26 +0200907 mac80211_hwsim_monitor_rx(hw, skb, channel);
908
Javier Lopez78825132011-06-01 11:26:13 +0200909 /* wmediumd mode check */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000910 _portid = ACCESS_ONCE(wmediumd_portid);
Javier Lopez78825132011-06-01 11:26:13 +0200911
Eric W. Biederman15e47302012-09-07 20:12:54 +0000912 if (_portid)
913 return mac80211_hwsim_tx_frame_nl(hw, skb, _portid);
Javier Lopez78825132011-06-01 11:26:13 +0200914
915 /* NO wmediumd detected, perfect medium simulation */
Johannes Berge8261172012-07-27 19:48:26 +0200916 ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel);
Javier Lopez78825132011-06-01 11:26:13 +0200917
Jouni Malinen6c085222009-11-01 11:31:45 +0200918 if (ack && skb->len >= 16) {
919 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge8261172012-07-27 19:48:26 +0200920 mac80211_hwsim_monitor_ack(channel, hdr->addr2);
Jouni Malinen6c085222009-11-01 11:31:45 +0200921 }
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300922
Johannes Berge6a98542008-10-21 12:40:02 +0200923 ieee80211_tx_info_clear_status(txi);
Javier Cardona2a4ffa42012-05-01 03:01:28 -0700924
925 /* frame was transmitted at most favorable rate at first attempt */
926 txi->control.rates[0].count = 1;
927 txi->control.rates[1].idx = -1;
928
Johannes Berge6a98542008-10-21 12:40:02 +0200929 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
930 txi->flags |= IEEE80211_TX_STAT_ACK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300931 ieee80211_tx_status_irqsafe(hw, skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300932}
933
934
935static int mac80211_hwsim_start(struct ieee80211_hw *hw)
936{
937 struct mac80211_hwsim_data *data = hw->priv;
Joe Perchesc96c31e2010-07-26 14:39:58 -0700938 wiphy_debug(hw->wiphy, "%s\n", __func__);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000939 data->started = true;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300940 return 0;
941}
942
943
944static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
945{
946 struct mac80211_hwsim_data *data = hw->priv;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000947 data->started = false;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800948 tasklet_hrtimer_cancel(&data->beacon_timer);
Joe Perchesc96c31e2010-07-26 14:39:58 -0700949 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300950}
951
952
953static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100954 struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300955{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700956 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200957 __func__, ieee80211_vif_type_p2p(vif),
958 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100959 hwsim_set_magic(vif);
Johannes Berge8261172012-07-27 19:48:26 +0200960
961 vif->cab_queue = 0;
962 vif->hw_queue[IEEE80211_AC_VO] = 0;
963 vif->hw_queue[IEEE80211_AC_VI] = 1;
964 vif->hw_queue[IEEE80211_AC_BE] = 2;
965 vif->hw_queue[IEEE80211_AC_BK] = 3;
966
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300967 return 0;
968}
969
970
Johannes Bergc35d0272010-08-27 12:35:59 +0200971static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
972 struct ieee80211_vif *vif,
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200973 enum nl80211_iftype newtype,
974 bool newp2p)
Johannes Bergc35d0272010-08-27 12:35:59 +0200975{
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200976 newtype = ieee80211_iftype_p2p(newtype, newp2p);
Johannes Bergc35d0272010-08-27 12:35:59 +0200977 wiphy_debug(hw->wiphy,
978 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200979 __func__, ieee80211_vif_type_p2p(vif),
980 newtype, vif->addr);
Johannes Bergc35d0272010-08-27 12:35:59 +0200981 hwsim_check_magic(vif);
982
Johannes Berg3eb92f62013-03-18 22:13:18 +0100983 /*
984 * interface may change from non-AP to AP in
985 * which case this needs to be set up again
986 */
987 vif->cab_queue = 0;
988
Johannes Bergc35d0272010-08-27 12:35:59 +0200989 return 0;
990}
991
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300992static void mac80211_hwsim_remove_interface(
Johannes Berg1ed32e42009-12-23 13:15:45 +0100993 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300994{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700995 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200996 __func__, ieee80211_vif_type_p2p(vif),
997 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100998 hwsim_check_magic(vif);
999 hwsim_clear_magic(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001000}
1001
Johannes Berge8261172012-07-27 19:48:26 +02001002static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
1003 struct sk_buff *skb,
1004 struct ieee80211_channel *chan)
1005{
1006 u32 _pid = ACCESS_ONCE(wmediumd_portid);
1007
Karl Beldan1eb32172013-04-19 14:44:52 +02001008 if (rctbl) {
1009 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
1010 ieee80211_get_tx_rates(txi->control.vif, NULL, skb,
1011 txi->control.rates,
1012 ARRAY_SIZE(txi->control.rates));
1013 }
1014
Johannes Berge8261172012-07-27 19:48:26 +02001015 mac80211_hwsim_monitor_rx(hw, skb, chan);
1016
1017 if (_pid)
1018 return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);
1019
1020 mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
1021 dev_kfree_skb(skb);
1022}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001023
1024static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
1025 struct ieee80211_vif *vif)
1026{
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001027 struct mac80211_hwsim_data *data = arg;
1028 struct ieee80211_hw *hw = data->hw;
1029 struct ieee80211_tx_info *info;
1030 struct ieee80211_rate *txrate;
1031 struct ieee80211_mgmt *mgmt;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001032 struct sk_buff *skb;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001033
Johannes Berg8aa21e62008-09-11 02:16:36 +02001034 hwsim_check_magic(vif);
1035
Andrey Yurovsky55b39612008-10-31 23:23:35 -07001036 if (vif->type != NL80211_IFTYPE_AP &&
Johannes Berg2b2d7792010-08-17 12:08:07 +02001037 vif->type != NL80211_IFTYPE_MESH_POINT &&
1038 vif->type != NL80211_IFTYPE_ADHOC)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001039 return;
1040
1041 skb = ieee80211_beacon_get(hw, vif);
1042 if (skb == NULL)
1043 return;
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001044 info = IEEE80211_SKB_CB(skb);
Karl Beldan1eb32172013-04-19 14:44:52 +02001045 if (rctbl)
1046 ieee80211_get_tx_rates(vif, NULL, skb,
1047 info->control.rates,
1048 ARRAY_SIZE(info->control.rates));
1049
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001050 txrate = ieee80211_get_tx_rate(hw, info);
1051
1052 mgmt = (struct ieee80211_mgmt *) skb->data;
1053 /* fake header transmission time */
1054 data->abs_bcn_ts = mac80211_hwsim_get_tsf_raw();
1055 mgmt->u.beacon.timestamp = cpu_to_le64(data->abs_bcn_ts +
1056 data->tsf_offset +
1057 24 * 8 * 10 / txrate->bitrate);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001058
Johannes Berge8261172012-07-27 19:48:26 +02001059 mac80211_hwsim_tx_frame(hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001060 rcu_dereference(vif->chanctx_conf)->def.chan);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001061}
1062
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001063static enum hrtimer_restart
1064mac80211_hwsim_beacon(struct hrtimer *timer)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001065{
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001066 struct mac80211_hwsim_data *data =
1067 container_of(timer, struct mac80211_hwsim_data,
1068 beacon_timer.timer);
1069 struct ieee80211_hw *hw = data->hw;
1070 u64 bcn_int = data->beacon_int;
1071 ktime_t next_bcn;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001072
Johannes Berg4c4c6712009-06-01 14:29:52 +02001073 if (!data->started)
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001074 goto out;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001075
Jouni Malinenf248f102008-06-13 19:44:47 +03001076 ieee80211_iterate_active_interfaces_atomic(
Johannes Berg8b2c9822012-11-06 20:23:30 +01001077 hw, IEEE80211_IFACE_ITER_NORMAL,
Thomas Pedersenb66851c2013-01-07 14:48:07 -08001078 mac80211_hwsim_beacon_tx, data);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001079
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001080 /* beacon at new TBTT + beacon interval */
1081 if (data->bcn_delta) {
1082 bcn_int -= data->bcn_delta;
1083 data->bcn_delta = 0;
1084 }
1085
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001086 next_bcn = ktime_add(hrtimer_get_expires(timer),
1087 ns_to_ktime(bcn_int * 1000));
1088 tasklet_hrtimer_start(&data->beacon_timer, next_bcn, HRTIMER_MODE_ABS);
1089out:
1090 return HRTIMER_NORESTART;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001091}
1092
Karl Beldan675a0b02013-03-25 16:26:57 +01001093static const char * const hwsim_chanwidths[] = {
1094 [NL80211_CHAN_WIDTH_20_NOHT] = "noht",
1095 [NL80211_CHAN_WIDTH_20] = "ht20",
1096 [NL80211_CHAN_WIDTH_40] = "ht40",
1097 [NL80211_CHAN_WIDTH_80] = "vht80",
1098 [NL80211_CHAN_WIDTH_80P80] = "vht80p80",
1099 [NL80211_CHAN_WIDTH_160] = "vht160",
Johannes Berg0aaffa92010-05-05 15:28:27 +02001100};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001101
Johannes Berge8975582008-10-09 12:18:51 +02001102static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001103{
1104 struct mac80211_hwsim_data *data = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02001105 struct ieee80211_conf *conf = &hw->conf;
Johannes Berg0f782312009-12-01 13:37:02 +01001106 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
1107 [IEEE80211_SMPS_AUTOMATIC] = "auto",
1108 [IEEE80211_SMPS_OFF] = "off",
1109 [IEEE80211_SMPS_STATIC] = "static",
1110 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
1111 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001112
Karl Beldan675a0b02013-03-25 16:26:57 +01001113 if (conf->chandef.chan)
1114 wiphy_debug(hw->wiphy,
1115 "%s (freq=%d(%d - %d)/%s idle=%d ps=%d smps=%s)\n",
1116 __func__,
1117 conf->chandef.chan->center_freq,
1118 conf->chandef.center_freq1,
1119 conf->chandef.center_freq2,
1120 hwsim_chanwidths[conf->chandef.width],
1121 !!(conf->flags & IEEE80211_CONF_IDLE),
1122 !!(conf->flags & IEEE80211_CONF_PS),
1123 smps_modes[conf->smps_mode]);
1124 else
1125 wiphy_debug(hw->wiphy,
1126 "%s (freq=0 idle=%d ps=%d smps=%s)\n",
1127 __func__,
1128 !!(conf->flags & IEEE80211_CONF_IDLE),
1129 !!(conf->flags & IEEE80211_CONF_PS),
1130 smps_modes[conf->smps_mode]);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001131
Jouni Malinen70541832009-11-01 11:30:48 +02001132 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
1133
Karl Beldan675a0b02013-03-25 16:26:57 +01001134 data->channel = conf->chandef.chan;
Johannes Berge8261172012-07-27 19:48:26 +02001135
1136 WARN_ON(data->channel && channels > 1);
1137
Blaise Gassendbdd7bd12010-10-28 02:01:24 -07001138 data->power_level = conf->power_level;
Johannes Berg4c4c6712009-06-01 14:29:52 +02001139 if (!data->started || !data->beacon_int)
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001140 tasklet_hrtimer_cancel(&data->beacon_timer);
1141 else if (!hrtimer_is_queued(&data->beacon_timer.timer)) {
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001142 u64 tsf = mac80211_hwsim_get_tsf(hw, NULL);
1143 u32 bcn_int = data->beacon_int;
1144 u64 until_tbtt = bcn_int - do_div(tsf, bcn_int);
1145
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001146 tasklet_hrtimer_start(&data->beacon_timer,
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001147 ns_to_ktime(until_tbtt * 1000),
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001148 HRTIMER_MODE_REL);
1149 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001150
1151 return 0;
1152}
1153
1154
1155static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
1156 unsigned int changed_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001157 unsigned int *total_flags,u64 multicast)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001158{
1159 struct mac80211_hwsim_data *data = hw->priv;
1160
Joe Perchesc96c31e2010-07-26 14:39:58 -07001161 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001162
1163 data->rx_filter = 0;
1164 if (*total_flags & FIF_PROMISC_IN_BSS)
1165 data->rx_filter |= FIF_PROMISC_IN_BSS;
1166 if (*total_flags & FIF_ALLMULTI)
1167 data->rx_filter |= FIF_ALLMULTI;
1168
1169 *total_flags = data->rx_filter;
1170}
1171
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001172static void mac80211_hwsim_bcn_en_iter(void *data, u8 *mac,
1173 struct ieee80211_vif *vif)
1174{
1175 unsigned int *count = data;
1176 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
1177
1178 if (vp->bcn_en)
1179 (*count)++;
1180}
1181
Johannes Berg8aa21e62008-09-11 02:16:36 +02001182static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
1183 struct ieee80211_vif *vif,
1184 struct ieee80211_bss_conf *info,
1185 u32 changed)
1186{
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001187 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001188 struct mac80211_hwsim_data *data = hw->priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001189
Johannes Berg8aa21e62008-09-11 02:16:36 +02001190 hwsim_check_magic(vif);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001191
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001192 wiphy_debug(hw->wiphy, "%s(changed=0x%x vif->addr=%pM)\n",
1193 __func__, changed, vif->addr);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001194
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001195 if (changed & BSS_CHANGED_BSSID) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001196 wiphy_debug(hw->wiphy, "%s: BSSID changed: %pM\n",
1197 __func__, info->bssid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001198 memcpy(vp->bssid, info->bssid, ETH_ALEN);
1199 }
1200
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001201 if (changed & BSS_CHANGED_ASSOC) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001202 wiphy_debug(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
1203 info->assoc, info->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001204 vp->assoc = info->assoc;
1205 vp->aid = info->aid;
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001206 }
1207
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001208 if (changed & BSS_CHANGED_BEACON_INT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001209 wiphy_debug(hw->wiphy, " BCNINT: %d\n", info->beacon_int);
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001210 data->beacon_int = info->beacon_int * 1024;
1211 }
1212
1213 if (changed & BSS_CHANGED_BEACON_ENABLED) {
1214 wiphy_debug(hw->wiphy, " BCN EN: %d\n", info->enable_beacon);
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001215 vp->bcn_en = info->enable_beacon;
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001216 if (data->started &&
1217 !hrtimer_is_queued(&data->beacon_timer.timer) &&
1218 info->enable_beacon) {
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001219 u64 tsf, until_tbtt;
1220 u32 bcn_int;
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001221 if (WARN_ON(!data->beacon_int))
1222 data->beacon_int = 1000 * 1024;
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001223 tsf = mac80211_hwsim_get_tsf(hw, vif);
1224 bcn_int = data->beacon_int;
1225 until_tbtt = bcn_int - do_div(tsf, bcn_int);
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001226 tasklet_hrtimer_start(&data->beacon_timer,
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001227 ns_to_ktime(until_tbtt * 1000),
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001228 HRTIMER_MODE_REL);
Jouni Malinen0bb861e2013-10-22 14:11:17 +03001229 } else if (!info->enable_beacon) {
1230 unsigned int count = 0;
1231 ieee80211_iterate_active_interfaces(
1232 data->hw, IEEE80211_IFACE_ITER_NORMAL,
1233 mac80211_hwsim_bcn_en_iter, &count);
1234 wiphy_debug(hw->wiphy, " beaconing vifs remaining: %u",
1235 count);
1236 if (count == 0)
1237 tasklet_hrtimer_cancel(&data->beacon_timer);
1238 }
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001239 }
1240
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001241 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001242 wiphy_debug(hw->wiphy, " ERP_CTS_PROT: %d\n",
1243 info->use_cts_prot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001244 }
1245
1246 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001247 wiphy_debug(hw->wiphy, " ERP_PREAMBLE: %d\n",
1248 info->use_short_preamble);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001249 }
1250
1251 if (changed & BSS_CHANGED_ERP_SLOT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001252 wiphy_debug(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001253 }
1254
1255 if (changed & BSS_CHANGED_HT) {
Johannes Berg4bf88532012-11-09 11:39:59 +01001256 wiphy_debug(hw->wiphy, " HT: op_mode=0x%x\n",
1257 info->ht_operation_mode);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001258 }
1259
1260 if (changed & BSS_CHANGED_BASIC_RATES) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001261 wiphy_debug(hw->wiphy, " BASIC_RATES: 0x%llx\n",
1262 (unsigned long long) info->basic_rates);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001263 }
Johannes Bergcbc668a2012-10-24 11:54:31 +02001264
1265 if (changed & BSS_CHANGED_TXPOWER)
1266 wiphy_debug(hw->wiphy, " TX Power: %d dBm\n", info->txpower);
Johannes Berg8aa21e62008-09-11 02:16:36 +02001267}
1268
Johannes Berg1d669cb2010-02-19 19:06:55 +01001269static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
1270 struct ieee80211_vif *vif,
1271 struct ieee80211_sta *sta)
1272{
1273 hwsim_check_magic(vif);
1274 hwsim_set_sta_magic(sta);
1275
1276 return 0;
1277}
1278
1279static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
1280 struct ieee80211_vif *vif,
1281 struct ieee80211_sta *sta)
1282{
1283 hwsim_check_magic(vif);
1284 hwsim_clear_sta_magic(sta);
1285
1286 return 0;
1287}
1288
Johannes Berg8aa21e62008-09-11 02:16:36 +02001289static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
1290 struct ieee80211_vif *vif,
Johannes Berg17741cd2008-09-11 00:02:02 +02001291 enum sta_notify_cmd cmd,
1292 struct ieee80211_sta *sta)
Johannes Berg8aa21e62008-09-11 02:16:36 +02001293{
1294 hwsim_check_magic(vif);
Johannes Berg1d669cb2010-02-19 19:06:55 +01001295
Johannes Berg81c06522008-09-11 02:17:01 +02001296 switch (cmd) {
Christian Lamparter89fad572008-12-09 16:28:06 +01001297 case STA_NOTIFY_SLEEP:
1298 case STA_NOTIFY_AWAKE:
1299 /* TODO: make good use of these flags */
1300 break;
Johannes Berg1d669cb2010-02-19 19:06:55 +01001301 default:
1302 WARN(1, "Invalid sta notify: %d\n", cmd);
1303 break;
Johannes Berg81c06522008-09-11 02:17:01 +02001304 }
1305}
1306
1307static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
1308 struct ieee80211_sta *sta,
1309 bool set)
1310{
1311 hwsim_check_sta_magic(sta);
1312 return 0;
Johannes Berg8aa21e62008-09-11 02:16:36 +02001313}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001314
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001315static int mac80211_hwsim_conf_tx(
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001316 struct ieee80211_hw *hw,
1317 struct ieee80211_vif *vif, u16 queue,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001318 const struct ieee80211_tx_queue_params *params)
1319{
Joe Perchesc96c31e2010-07-26 14:39:58 -07001320 wiphy_debug(hw->wiphy,
1321 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
1322 __func__, queue,
1323 params->txop, params->cw_min,
1324 params->cw_max, params->aifs);
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001325 return 0;
1326}
1327
Holger Schurig12897232010-04-19 10:23:57 +02001328static int mac80211_hwsim_get_survey(
1329 struct ieee80211_hw *hw, int idx,
1330 struct survey_info *survey)
1331{
1332 struct ieee80211_conf *conf = &hw->conf;
1333
Joe Perchesc96c31e2010-07-26 14:39:58 -07001334 wiphy_debug(hw->wiphy, "%s (idx=%d)\n", __func__, idx);
Holger Schurig12897232010-04-19 10:23:57 +02001335
1336 if (idx != 0)
1337 return -ENOENT;
1338
1339 /* Current channel */
Karl Beldan675a0b02013-03-25 16:26:57 +01001340 survey->channel = conf->chandef.chan;
Holger Schurig12897232010-04-19 10:23:57 +02001341
1342 /*
1343 * Magically conjured noise level --- this is only ok for simulated hardware.
1344 *
1345 * A real driver which cannot determine the real channel noise MUST NOT
1346 * report any noise, especially not a magically conjured one :-)
1347 */
1348 survey->filled = SURVEY_INFO_NOISE_DBM;
1349 survey->noise = -92;
1350
1351 return 0;
1352}
1353
Johannes Bergaff89a92009-07-01 21:26:51 +02001354#ifdef CONFIG_NL80211_TESTMODE
1355/*
1356 * This section contains example code for using netlink
1357 * attributes with the testmode command in nl80211.
1358 */
1359
1360/* These enums need to be kept in sync with userspace */
1361enum hwsim_testmode_attr {
1362 __HWSIM_TM_ATTR_INVALID = 0,
1363 HWSIM_TM_ATTR_CMD = 1,
1364 HWSIM_TM_ATTR_PS = 2,
1365
1366 /* keep last */
1367 __HWSIM_TM_ATTR_AFTER_LAST,
1368 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
1369};
1370
1371enum hwsim_testmode_cmd {
1372 HWSIM_TM_CMD_SET_PS = 0,
1373 HWSIM_TM_CMD_GET_PS = 1,
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001374 HWSIM_TM_CMD_STOP_QUEUES = 2,
1375 HWSIM_TM_CMD_WAKE_QUEUES = 3,
Johannes Bergaff89a92009-07-01 21:26:51 +02001376};
1377
1378static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
1379 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
1380 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
1381};
1382
1383static int hwsim_fops_ps_write(void *dat, u64 val);
1384
Johannes Berg5bc38192009-07-07 11:00:55 +02001385static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
David Spinadel52981cd2013-07-31 18:06:22 +03001386 struct ieee80211_vif *vif,
Johannes Berg5bc38192009-07-07 11:00:55 +02001387 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001388{
1389 struct mac80211_hwsim_data *hwsim = hw->priv;
1390 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
1391 struct sk_buff *skb;
1392 int err, ps;
1393
1394 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
1395 hwsim_testmode_policy);
1396 if (err)
1397 return err;
1398
1399 if (!tb[HWSIM_TM_ATTR_CMD])
1400 return -EINVAL;
1401
1402 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
1403 case HWSIM_TM_CMD_SET_PS:
1404 if (!tb[HWSIM_TM_ATTR_PS])
1405 return -EINVAL;
1406 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
1407 return hwsim_fops_ps_write(hwsim, ps);
1408 case HWSIM_TM_CMD_GET_PS:
1409 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
1410 nla_total_size(sizeof(u32)));
1411 if (!skb)
1412 return -ENOMEM;
David S. Miller633c9382012-04-01 21:03:30 -04001413 if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps))
1414 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02001415 return cfg80211_testmode_reply(skb);
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001416 case HWSIM_TM_CMD_STOP_QUEUES:
1417 ieee80211_stop_queues(hw);
1418 return 0;
1419 case HWSIM_TM_CMD_WAKE_QUEUES:
1420 ieee80211_wake_queues(hw);
1421 return 0;
Johannes Bergaff89a92009-07-01 21:26:51 +02001422 default:
1423 return -EOPNOTSUPP;
1424 }
1425
1426 nla_put_failure:
1427 kfree_skb(skb);
1428 return -ENOBUFS;
1429}
1430#endif
1431
Johannes Berg8b73d132009-12-01 14:24:24 +01001432static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
1433 struct ieee80211_vif *vif,
1434 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01001435 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
1436 u8 buf_size)
Johannes Berg8b73d132009-12-01 14:24:24 +01001437{
1438 switch (action) {
1439 case IEEE80211_AMPDU_TX_START:
1440 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1441 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001442 case IEEE80211_AMPDU_TX_STOP_CONT:
1443 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1444 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Johannes Berg8b73d132009-12-01 14:24:24 +01001445 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1446 break;
1447 case IEEE80211_AMPDU_TX_OPERATIONAL:
1448 break;
1449 case IEEE80211_AMPDU_RX_START:
1450 case IEEE80211_AMPDU_RX_STOP:
1451 break;
1452 default:
1453 return -EOPNOTSUPP;
1454 }
1455
1456 return 0;
1457}
1458
Johannes Berg39ecc012013-02-13 12:11:00 +01001459static void mac80211_hwsim_flush(struct ieee80211_hw *hw, u32 queues, bool drop)
Johannes Berga80f7c02009-12-23 13:15:32 +01001460{
Javier Lopez78825132011-06-01 11:26:13 +02001461 /* Not implemented, queues only on kernel side */
Johannes Berga80f7c02009-12-23 13:15:32 +01001462}
1463
Johannes Berge8261172012-07-27 19:48:26 +02001464static void hw_scan_work(struct work_struct *work)
Johannes Berg69068032010-02-03 10:47:55 +01001465{
Johannes Berge8261172012-07-27 19:48:26 +02001466 struct mac80211_hwsim_data *hwsim =
1467 container_of(work, struct mac80211_hwsim_data, hw_scan.work);
1468 struct cfg80211_scan_request *req = hwsim->hw_scan_request;
1469 int dwell, i;
Johannes Berg69068032010-02-03 10:47:55 +01001470
Johannes Berge8261172012-07-27 19:48:26 +02001471 mutex_lock(&hwsim->mutex);
1472 if (hwsim->scan_chan_idx >= req->n_channels) {
1473 wiphy_debug(hwsim->hw->wiphy, "hw scan complete\n");
1474 ieee80211_scan_completed(hwsim->hw, false);
1475 hwsim->hw_scan_request = NULL;
1476 hwsim->hw_scan_vif = NULL;
1477 hwsim->tmp_chan = NULL;
1478 mutex_unlock(&hwsim->mutex);
1479 return;
1480 }
1481
1482 wiphy_debug(hwsim->hw->wiphy, "hw scan %d MHz\n",
1483 req->channels[hwsim->scan_chan_idx]->center_freq);
1484
1485 hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx];
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +02001486 if (hwsim->tmp_chan->flags & IEEE80211_CHAN_NO_IR ||
Johannes Berge8261172012-07-27 19:48:26 +02001487 !req->n_ssids) {
1488 dwell = 120;
1489 } else {
1490 dwell = 30;
1491 /* send probes */
1492 for (i = 0; i < req->n_ssids; i++) {
1493 struct sk_buff *probe;
1494
1495 probe = ieee80211_probereq_get(hwsim->hw,
1496 hwsim->hw_scan_vif,
1497 req->ssids[i].ssid,
1498 req->ssids[i].ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001499 req->ie_len);
Johannes Berge8261172012-07-27 19:48:26 +02001500 if (!probe)
1501 continue;
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001502
1503 if (req->ie_len)
1504 memcpy(skb_put(probe, req->ie_len), req->ie,
1505 req->ie_len);
1506
Johannes Berge8261172012-07-27 19:48:26 +02001507 local_bh_disable();
1508 mac80211_hwsim_tx_frame(hwsim->hw, probe,
1509 hwsim->tmp_chan);
1510 local_bh_enable();
1511 }
1512 }
1513 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan,
1514 msecs_to_jiffies(dwell));
1515 hwsim->scan_chan_idx++;
1516 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01001517}
1518
1519static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +02001520 struct ieee80211_vif *vif,
Johannes Berg69068032010-02-03 10:47:55 +01001521 struct cfg80211_scan_request *req)
1522{
Johannes Berge8261172012-07-27 19:48:26 +02001523 struct mac80211_hwsim_data *hwsim = hw->priv;
Johannes Berg69068032010-02-03 10:47:55 +01001524
Johannes Berge8261172012-07-27 19:48:26 +02001525 mutex_lock(&hwsim->mutex);
1526 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1527 mutex_unlock(&hwsim->mutex);
1528 return -EBUSY;
1529 }
1530 hwsim->hw_scan_request = req;
1531 hwsim->hw_scan_vif = vif;
1532 hwsim->scan_chan_idx = 0;
1533 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01001534
Johannes Berge8261172012-07-27 19:48:26 +02001535 wiphy_debug(hw->wiphy, "hwsim hw_scan request\n");
Johannes Berg69068032010-02-03 10:47:55 +01001536
Johannes Berge8261172012-07-27 19:48:26 +02001537 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0);
Johannes Berg69068032010-02-03 10:47:55 +01001538
1539 return 0;
1540}
1541
Johannes Berge8261172012-07-27 19:48:26 +02001542static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw,
1543 struct ieee80211_vif *vif)
1544{
1545 struct mac80211_hwsim_data *hwsim = hw->priv;
1546
1547 wiphy_debug(hw->wiphy, "hwsim cancel_hw_scan\n");
1548
1549 cancel_delayed_work_sync(&hwsim->hw_scan);
1550
1551 mutex_lock(&hwsim->mutex);
1552 ieee80211_scan_completed(hwsim->hw, true);
1553 hwsim->tmp_chan = NULL;
1554 hwsim->hw_scan_request = NULL;
1555 hwsim->hw_scan_vif = NULL;
1556 mutex_unlock(&hwsim->mutex);
1557}
1558
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001559static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw)
1560{
1561 struct mac80211_hwsim_data *hwsim = hw->priv;
1562
1563 mutex_lock(&hwsim->mutex);
1564
1565 if (hwsim->scanning) {
1566 printk(KERN_DEBUG "two hwsim sw_scans detected!\n");
1567 goto out;
1568 }
1569
1570 printk(KERN_DEBUG "hwsim sw_scan request, prepping stuff\n");
1571 hwsim->scanning = true;
1572
1573out:
1574 mutex_unlock(&hwsim->mutex);
1575}
1576
1577static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw)
1578{
1579 struct mac80211_hwsim_data *hwsim = hw->priv;
1580
1581 mutex_lock(&hwsim->mutex);
1582
1583 printk(KERN_DEBUG "hwsim sw_scan_complete\n");
Johannes Berg23ff98f2010-05-03 09:21:14 +02001584 hwsim->scanning = false;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001585
1586 mutex_unlock(&hwsim->mutex);
1587}
1588
Johannes Berge8261172012-07-27 19:48:26 +02001589static void hw_roc_done(struct work_struct *work)
1590{
1591 struct mac80211_hwsim_data *hwsim =
1592 container_of(work, struct mac80211_hwsim_data, roc_done.work);
1593
1594 mutex_lock(&hwsim->mutex);
1595 ieee80211_remain_on_channel_expired(hwsim->hw);
1596 hwsim->tmp_chan = NULL;
1597 mutex_unlock(&hwsim->mutex);
1598
1599 wiphy_debug(hwsim->hw->wiphy, "hwsim ROC expired\n");
1600}
1601
1602static int mac80211_hwsim_roc(struct ieee80211_hw *hw,
Eliad Peller49884562012-11-19 17:05:09 +02001603 struct ieee80211_vif *vif,
Johannes Berge8261172012-07-27 19:48:26 +02001604 struct ieee80211_channel *chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02001605 int duration,
1606 enum ieee80211_roc_type type)
Johannes Berge8261172012-07-27 19:48:26 +02001607{
1608 struct mac80211_hwsim_data *hwsim = hw->priv;
1609
1610 mutex_lock(&hwsim->mutex);
1611 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1612 mutex_unlock(&hwsim->mutex);
1613 return -EBUSY;
1614 }
1615
1616 hwsim->tmp_chan = chan;
1617 mutex_unlock(&hwsim->mutex);
1618
1619 wiphy_debug(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n",
1620 chan->center_freq, duration);
1621
1622 ieee80211_ready_on_channel(hw);
1623
1624 ieee80211_queue_delayed_work(hw, &hwsim->roc_done,
1625 msecs_to_jiffies(duration));
1626 return 0;
1627}
1628
1629static int mac80211_hwsim_croc(struct ieee80211_hw *hw)
1630{
1631 struct mac80211_hwsim_data *hwsim = hw->priv;
1632
1633 cancel_delayed_work_sync(&hwsim->roc_done);
1634
1635 mutex_lock(&hwsim->mutex);
1636 hwsim->tmp_chan = NULL;
1637 mutex_unlock(&hwsim->mutex);
1638
1639 wiphy_debug(hw->wiphy, "hwsim ROC canceled\n");
1640
1641 return 0;
1642}
1643
1644static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw,
1645 struct ieee80211_chanctx_conf *ctx)
1646{
1647 hwsim_set_chanctx_magic(ctx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001648 wiphy_debug(hw->wiphy,
1649 "add channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
1650 ctx->def.chan->center_freq, ctx->def.width,
1651 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02001652 return 0;
1653}
1654
1655static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw,
1656 struct ieee80211_chanctx_conf *ctx)
1657{
Johannes Berg4bf88532012-11-09 11:39:59 +01001658 wiphy_debug(hw->wiphy,
1659 "remove channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
1660 ctx->def.chan->center_freq, ctx->def.width,
1661 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02001662 hwsim_check_chanctx_magic(ctx);
1663 hwsim_clear_chanctx_magic(ctx);
1664}
1665
1666static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw,
1667 struct ieee80211_chanctx_conf *ctx,
1668 u32 changed)
1669{
1670 hwsim_check_chanctx_magic(ctx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001671 wiphy_debug(hw->wiphy,
1672 "change channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
1673 ctx->def.chan->center_freq, ctx->def.width,
1674 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02001675}
1676
1677static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw,
1678 struct ieee80211_vif *vif,
1679 struct ieee80211_chanctx_conf *ctx)
1680{
1681 hwsim_check_magic(vif);
1682 hwsim_check_chanctx_magic(ctx);
1683
1684 return 0;
1685}
1686
1687static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw,
1688 struct ieee80211_vif *vif,
1689 struct ieee80211_chanctx_conf *ctx)
1690{
1691 hwsim_check_magic(vif);
1692 hwsim_check_chanctx_magic(ctx);
1693}
1694
Johannes Berg69068032010-02-03 10:47:55 +01001695static struct ieee80211_ops mac80211_hwsim_ops =
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001696{
1697 .tx = mac80211_hwsim_tx,
1698 .start = mac80211_hwsim_start,
1699 .stop = mac80211_hwsim_stop,
1700 .add_interface = mac80211_hwsim_add_interface,
Johannes Bergc35d0272010-08-27 12:35:59 +02001701 .change_interface = mac80211_hwsim_change_interface,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001702 .remove_interface = mac80211_hwsim_remove_interface,
1703 .config = mac80211_hwsim_config,
1704 .configure_filter = mac80211_hwsim_configure_filter,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001705 .bss_info_changed = mac80211_hwsim_bss_info_changed,
Johannes Berg1d669cb2010-02-19 19:06:55 +01001706 .sta_add = mac80211_hwsim_sta_add,
1707 .sta_remove = mac80211_hwsim_sta_remove,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001708 .sta_notify = mac80211_hwsim_sta_notify,
Johannes Berg81c06522008-09-11 02:17:01 +02001709 .set_tim = mac80211_hwsim_set_tim,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001710 .conf_tx = mac80211_hwsim_conf_tx,
Holger Schurig12897232010-04-19 10:23:57 +02001711 .get_survey = mac80211_hwsim_get_survey,
Johannes Bergaff89a92009-07-01 21:26:51 +02001712 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd)
Johannes Berg8b73d132009-12-01 14:24:24 +01001713 .ampdu_action = mac80211_hwsim_ampdu_action,
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001714 .sw_scan_start = mac80211_hwsim_sw_scan,
1715 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
Johannes Berga80f7c02009-12-23 13:15:32 +01001716 .flush = mac80211_hwsim_flush,
Javier Cardona12ce8ba2012-03-05 17:20:38 -08001717 .get_tsf = mac80211_hwsim_get_tsf,
1718 .set_tsf = mac80211_hwsim_set_tsf,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001719};
1720
1721
1722static void mac80211_hwsim_free(void)
1723{
Johannes Berg0e057d732008-09-12 00:39:22 +02001724 struct list_head tmplist, *i, *tmp;
Johannes Berge603d9d2009-07-13 13:25:58 +02001725 struct mac80211_hwsim_data *data, *tmpdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001726
Johannes Berg0e057d732008-09-12 00:39:22 +02001727 INIT_LIST_HEAD(&tmplist);
1728
1729 spin_lock_bh(&hwsim_radio_lock);
1730 list_for_each_safe(i, tmp, &hwsim_radios)
1731 list_move(i, &tmplist);
1732 spin_unlock_bh(&hwsim_radio_lock);
1733
Johannes Berge603d9d2009-07-13 13:25:58 +02001734 list_for_each_entry_safe(data, tmpdata, &tmplist, list) {
Janusz Dziedzic70526e52013-11-01 20:35:58 +01001735 debugfs_remove_recursive(data->debugfs);
Johannes Berg0e057d732008-09-12 00:39:22 +02001736 ieee80211_unregister_hw(data->hw);
Martin Pitt9ea927742013-04-08 11:30:01 +02001737 device_release_driver(data->dev);
Johannes Berg0e057d732008-09-12 00:39:22 +02001738 device_unregister(data->dev);
1739 ieee80211_free_hw(data->hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001740 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001741 class_destroy(hwsim_class);
1742}
1743
Sasha Levinc07fe5a2013-04-24 00:40:05 -04001744static struct platform_driver mac80211_hwsim_driver = {
1745 .driver = {
1746 .name = "mac80211_hwsim",
1747 .owner = THIS_MODULE,
1748 },
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001749};
1750
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001751static const struct net_device_ops hwsim_netdev_ops = {
1752 .ndo_start_xmit = hwsim_mon_xmit,
1753 .ndo_change_mtu = eth_change_mtu,
1754 .ndo_set_mac_address = eth_mac_addr,
1755 .ndo_validate_addr = eth_validate_addr,
1756};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001757
1758static void hwsim_mon_setup(struct net_device *dev)
1759{
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001760 dev->netdev_ops = &hwsim_netdev_ops;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001761 dev->destructor = free_netdev;
1762 ether_setup(dev);
1763 dev->tx_queue_len = 0;
1764 dev->type = ARPHRD_IEEE80211_RADIOTAP;
1765 memset(dev->dev_addr, 0, ETH_ALEN);
1766 dev->dev_addr[0] = 0x12;
1767}
1768
1769
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001770static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
1771{
1772 struct mac80211_hwsim_data *data = dat;
1773 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001774 struct sk_buff *skb;
1775 struct ieee80211_pspoll *pspoll;
1776
1777 if (!vp->assoc)
1778 return;
1779
Joe Perchesc96c31e2010-07-26 14:39:58 -07001780 wiphy_debug(data->hw->wiphy,
1781 "%s: send PS-Poll to %pM for aid %d\n",
1782 __func__, vp->bssid, vp->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001783
1784 skb = dev_alloc_skb(sizeof(*pspoll));
1785 if (!skb)
1786 return;
1787 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
1788 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
1789 IEEE80211_STYPE_PSPOLL |
1790 IEEE80211_FCTL_PM);
1791 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
1792 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
1793 memcpy(pspoll->ta, mac, ETH_ALEN);
Javier Lopez78825132011-06-01 11:26:13 +02001794
Johannes Berge8261172012-07-27 19:48:26 +02001795 rcu_read_lock();
1796 mac80211_hwsim_tx_frame(data->hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001797 rcu_dereference(vif->chanctx_conf)->def.chan);
Johannes Berge8261172012-07-27 19:48:26 +02001798 rcu_read_unlock();
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001799}
1800
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001801static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
1802 struct ieee80211_vif *vif, int ps)
1803{
1804 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001805 struct sk_buff *skb;
1806 struct ieee80211_hdr *hdr;
1807
1808 if (!vp->assoc)
1809 return;
1810
Joe Perchesc96c31e2010-07-26 14:39:58 -07001811 wiphy_debug(data->hw->wiphy,
1812 "%s: send data::nullfunc to %pM ps=%d\n",
1813 __func__, vp->bssid, ps);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001814
1815 skb = dev_alloc_skb(sizeof(*hdr));
1816 if (!skb)
1817 return;
1818 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
1819 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1820 IEEE80211_STYPE_NULLFUNC |
1821 (ps ? IEEE80211_FCTL_PM : 0));
1822 hdr->duration_id = cpu_to_le16(0);
1823 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
1824 memcpy(hdr->addr2, mac, ETH_ALEN);
1825 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
Javier Lopez78825132011-06-01 11:26:13 +02001826
Johannes Berge8261172012-07-27 19:48:26 +02001827 rcu_read_lock();
1828 mac80211_hwsim_tx_frame(data->hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001829 rcu_dereference(vif->chanctx_conf)->def.chan);
Johannes Berge8261172012-07-27 19:48:26 +02001830 rcu_read_unlock();
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001831}
1832
1833
1834static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
1835 struct ieee80211_vif *vif)
1836{
1837 struct mac80211_hwsim_data *data = dat;
1838 hwsim_send_nullfunc(data, mac, vif, 1);
1839}
1840
1841
1842static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
1843 struct ieee80211_vif *vif)
1844{
1845 struct mac80211_hwsim_data *data = dat;
1846 hwsim_send_nullfunc(data, mac, vif, 0);
1847}
1848
1849
1850static int hwsim_fops_ps_read(void *dat, u64 *val)
1851{
1852 struct mac80211_hwsim_data *data = dat;
1853 *val = data->ps;
1854 return 0;
1855}
1856
1857static int hwsim_fops_ps_write(void *dat, u64 val)
1858{
1859 struct mac80211_hwsim_data *data = dat;
1860 enum ps_mode old_ps;
1861
1862 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
1863 val != PS_MANUAL_POLL)
1864 return -EINVAL;
1865
1866 old_ps = data->ps;
1867 data->ps = val;
1868
1869 if (val == PS_MANUAL_POLL) {
1870 ieee80211_iterate_active_interfaces(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +01001871 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001872 hwsim_send_ps_poll, data);
1873 data->ps_poll_pending = true;
1874 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
1875 ieee80211_iterate_active_interfaces(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +01001876 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001877 hwsim_send_nullfunc_ps,
1878 data);
1879 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
1880 ieee80211_iterate_active_interfaces(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +01001881 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001882 hwsim_send_nullfunc_no_ps,
1883 data);
1884 }
1885
1886 return 0;
1887}
1888
1889DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
1890 "%llu\n");
1891
1892
Daniel Wagner73606d02009-05-18 19:49:25 +02001893static int hwsim_fops_group_read(void *dat, u64 *val)
1894{
1895 struct mac80211_hwsim_data *data = dat;
1896 *val = data->group;
1897 return 0;
1898}
1899
1900static int hwsim_fops_group_write(void *dat, u64 val)
1901{
1902 struct mac80211_hwsim_data *data = dat;
1903 data->group = val;
1904 return 0;
1905}
1906
1907DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
1908 hwsim_fops_group_read, hwsim_fops_group_write,
1909 "%llx\n");
1910
Javier Cardonaf483ad22012-03-31 11:31:30 -07001911static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr(
Javier Lopez78825132011-06-01 11:26:13 +02001912 struct mac_address *addr)
1913{
1914 struct mac80211_hwsim_data *data;
1915 bool _found = false;
1916
1917 spin_lock_bh(&hwsim_radio_lock);
1918 list_for_each_entry(data, &hwsim_radios, list) {
1919 if (memcmp(data->addresses[1].addr, addr,
1920 sizeof(struct mac_address)) == 0) {
1921 _found = true;
1922 break;
1923 }
1924 }
1925 spin_unlock_bh(&hwsim_radio_lock);
1926
1927 if (!_found)
1928 return NULL;
1929
1930 return data;
1931}
1932
1933static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
1934 struct genl_info *info)
1935{
1936
1937 struct ieee80211_hdr *hdr;
1938 struct mac80211_hwsim_data *data2;
1939 struct ieee80211_tx_info *txi;
1940 struct hwsim_tx_rate *tx_attempts;
Johannes Bergd0f718c2012-06-25 14:46:44 +02001941 unsigned long ret_skb_ptr;
Javier Lopez78825132011-06-01 11:26:13 +02001942 struct sk_buff *skb, *tmp;
1943 struct mac_address *src;
1944 unsigned int hwsim_flags;
1945
1946 int i;
1947 bool found = false;
1948
1949 if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] ||
1950 !info->attrs[HWSIM_ATTR_FLAGS] ||
1951 !info->attrs[HWSIM_ATTR_COOKIE] ||
1952 !info->attrs[HWSIM_ATTR_TX_INFO])
1953 goto out;
1954
1955 src = (struct mac_address *)nla_data(
1956 info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]);
1957 hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]);
1958
Johannes Bergd0f718c2012-06-25 14:46:44 +02001959 ret_skb_ptr = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]);
Javier Lopez78825132011-06-01 11:26:13 +02001960
1961 data2 = get_hwsim_data_ref_from_addr(src);
1962
1963 if (data2 == NULL)
1964 goto out;
1965
1966 /* look for the skb matching the cookie passed back from user */
1967 skb_queue_walk_safe(&data2->pending, skb, tmp) {
Johannes Bergd0f718c2012-06-25 14:46:44 +02001968 if ((unsigned long)skb == ret_skb_ptr) {
Javier Lopez78825132011-06-01 11:26:13 +02001969 skb_unlink(skb, &data2->pending);
1970 found = true;
1971 break;
1972 }
1973 }
1974
1975 /* not found */
1976 if (!found)
1977 goto out;
1978
1979 /* Tx info received because the frame was broadcasted on user space,
1980 so we get all the necessary info: tx attempts and skb control buff */
1981
1982 tx_attempts = (struct hwsim_tx_rate *)nla_data(
1983 info->attrs[HWSIM_ATTR_TX_INFO]);
1984
1985 /* now send back TX status */
1986 txi = IEEE80211_SKB_CB(skb);
1987
Javier Lopez78825132011-06-01 11:26:13 +02001988 ieee80211_tx_info_clear_status(txi);
1989
1990 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
1991 txi->status.rates[i].idx = tx_attempts[i].idx;
1992 txi->status.rates[i].count = tx_attempts[i].count;
1993 /*txi->status.rates[i].flags = 0;*/
1994 }
1995
1996 txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1997
1998 if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) &&
1999 (hwsim_flags & HWSIM_TX_STAT_ACK)) {
2000 if (skb->len >= 16) {
2001 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge8261172012-07-27 19:48:26 +02002002 mac80211_hwsim_monitor_ack(txi->rate_driver_data[0],
2003 hdr->addr2);
Javier Lopez78825132011-06-01 11:26:13 +02002004 }
Qasim Javed06cf5c42012-06-05 01:25:44 -05002005 txi->flags |= IEEE80211_TX_STAT_ACK;
Javier Lopez78825132011-06-01 11:26:13 +02002006 }
2007 ieee80211_tx_status_irqsafe(data2->hw, skb);
2008 return 0;
2009out:
2010 return -EINVAL;
2011
2012}
2013
2014static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
2015 struct genl_info *info)
2016{
2017
Johannes Berge8261172012-07-27 19:48:26 +02002018 struct mac80211_hwsim_data *data2;
Javier Lopez78825132011-06-01 11:26:13 +02002019 struct ieee80211_rx_status rx_status;
2020 struct mac_address *dst;
2021 int frame_data_len;
2022 char *frame_data;
2023 struct sk_buff *skb = NULL;
2024
2025 if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] ||
Johannes Berge8261172012-07-27 19:48:26 +02002026 !info->attrs[HWSIM_ATTR_FRAME] ||
2027 !info->attrs[HWSIM_ATTR_RX_RATE] ||
2028 !info->attrs[HWSIM_ATTR_SIGNAL])
Javier Lopez78825132011-06-01 11:26:13 +02002029 goto out;
2030
2031 dst = (struct mac_address *)nla_data(
2032 info->attrs[HWSIM_ATTR_ADDR_RECEIVER]);
2033
2034 frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]);
2035 frame_data = (char *)nla_data(info->attrs[HWSIM_ATTR_FRAME]);
2036
2037 /* Allocate new skb here */
2038 skb = alloc_skb(frame_data_len, GFP_KERNEL);
2039 if (skb == NULL)
2040 goto err;
2041
2042 if (frame_data_len <= IEEE80211_MAX_DATA_LEN) {
2043 /* Copy the data */
2044 memcpy(skb_put(skb, frame_data_len), frame_data,
2045 frame_data_len);
2046 } else
2047 goto err;
2048
2049 data2 = get_hwsim_data_ref_from_addr(dst);
2050
2051 if (data2 == NULL)
2052 goto out;
2053
2054 /* check if radio is configured properly */
2055
Johannes Berge8261172012-07-27 19:48:26 +02002056 if (data2->idle || !data2->started)
Javier Lopez78825132011-06-01 11:26:13 +02002057 goto out;
2058
2059 /*A frame is received from user space*/
2060 memset(&rx_status, 0, sizeof(rx_status));
2061 rx_status.freq = data2->channel->center_freq;
2062 rx_status.band = data2->channel->band;
2063 rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
2064 rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
2065
2066 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
2067 ieee80211_rx_irqsafe(data2->hw, skb);
2068
2069 return 0;
2070err:
Masanari Iidac3938622012-02-17 23:04:10 +09002071 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02002072 goto out;
2073out:
2074 dev_kfree_skb(skb);
2075 return -EINVAL;
2076}
2077
2078static int hwsim_register_received_nl(struct sk_buff *skb_2,
2079 struct genl_info *info)
2080{
2081 if (info == NULL)
2082 goto out;
2083
Eric W. Biederman15e47302012-09-07 20:12:54 +00002084 wmediumd_portid = info->snd_portid;
Javier Lopez78825132011-06-01 11:26:13 +02002085
2086 printk(KERN_DEBUG "mac80211_hwsim: received a REGISTER, "
Eric W. Biederman15e47302012-09-07 20:12:54 +00002087 "switching to wmediumd mode with pid %d\n", info->snd_portid);
Javier Lopez78825132011-06-01 11:26:13 +02002088
2089 return 0;
2090out:
Masanari Iidac3938622012-02-17 23:04:10 +09002091 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02002092 return -EINVAL;
2093}
2094
2095/* Generic Netlink operations array */
2096static struct genl_ops hwsim_ops[] = {
2097 {
2098 .cmd = HWSIM_CMD_REGISTER,
2099 .policy = hwsim_genl_policy,
2100 .doit = hwsim_register_received_nl,
2101 .flags = GENL_ADMIN_PERM,
2102 },
2103 {
2104 .cmd = HWSIM_CMD_FRAME,
2105 .policy = hwsim_genl_policy,
2106 .doit = hwsim_cloned_frame_received_nl,
2107 },
2108 {
2109 .cmd = HWSIM_CMD_TX_INFO_FRAME,
2110 .policy = hwsim_genl_policy,
2111 .doit = hwsim_tx_info_frame_received_nl,
2112 },
2113};
2114
2115static int mac80211_hwsim_netlink_notify(struct notifier_block *nb,
2116 unsigned long state,
2117 void *_notify)
2118{
2119 struct netlink_notify *notify = _notify;
2120
2121 if (state != NETLINK_URELEASE)
2122 return NOTIFY_DONE;
2123
Eric W. Biederman15e47302012-09-07 20:12:54 +00002124 if (notify->portid == wmediumd_portid) {
Javier Lopez78825132011-06-01 11:26:13 +02002125 printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink"
2126 " socket, switching to perfect channel medium\n");
Eric W. Biederman15e47302012-09-07 20:12:54 +00002127 wmediumd_portid = 0;
Javier Lopez78825132011-06-01 11:26:13 +02002128 }
2129 return NOTIFY_DONE;
2130
2131}
2132
2133static struct notifier_block hwsim_netlink_notifier = {
2134 .notifier_call = mac80211_hwsim_netlink_notify,
2135};
2136
2137static int hwsim_init_netlink(void)
2138{
2139 int rc;
Johannes Berge8261172012-07-27 19:48:26 +02002140
2141 /* userspace test API hasn't been adjusted for multi-channel */
2142 if (channels > 1)
2143 return 0;
2144
Javier Lopez78825132011-06-01 11:26:13 +02002145 printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
2146
Javier Lopez78825132011-06-01 11:26:13 +02002147 rc = genl_register_family_with_ops(&hwsim_genl_family,
2148 hwsim_ops, ARRAY_SIZE(hwsim_ops));
2149 if (rc)
2150 goto failure;
2151
2152 rc = netlink_register_notifier(&hwsim_netlink_notifier);
2153 if (rc)
2154 goto failure;
2155
2156 return 0;
2157
2158failure:
Masanari Iidac3938622012-02-17 23:04:10 +09002159 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02002160 return -EINVAL;
2161}
2162
2163static void hwsim_exit_netlink(void)
2164{
2165 int ret;
2166
Johannes Berge8261172012-07-27 19:48:26 +02002167 /* userspace test API hasn't been adjusted for multi-channel */
2168 if (channels > 1)
2169 return;
2170
Javier Lopez78825132011-06-01 11:26:13 +02002171 printk(KERN_INFO "mac80211_hwsim: closing netlink\n");
2172 /* unregister the notifier */
2173 netlink_unregister_notifier(&hwsim_netlink_notifier);
2174 /* unregister the family */
2175 ret = genl_unregister_family(&hwsim_genl_family);
2176 if (ret)
2177 printk(KERN_DEBUG "mac80211_hwsim: "
2178 "unregister family %i\n", ret);
2179}
2180
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002181static const struct ieee80211_iface_limit hwsim_if_limits[] = {
2182 { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
2183 { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) |
2184 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2185#ifdef CONFIG_MAC80211_MESH
2186 BIT(NL80211_IFTYPE_MESH_POINT) |
2187#endif
2188 BIT(NL80211_IFTYPE_AP) |
2189 BIT(NL80211_IFTYPE_P2P_GO) },
Johannes Berg8b3d1cc2012-06-19 17:29:29 +02002190 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) },
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002191};
2192
Johannes Berge8261172012-07-27 19:48:26 +02002193static struct ieee80211_iface_combination hwsim_if_comb = {
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002194 .limits = hwsim_if_limits,
2195 .n_limits = ARRAY_SIZE(hwsim_if_limits),
2196 .max_interfaces = 2048,
2197 .num_different_channels = 1,
2198};
2199
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002200static int __init init_mac80211_hwsim(void)
2201{
2202 int i, err = 0;
2203 u8 addr[ETH_ALEN];
2204 struct mac80211_hwsim_data *data;
2205 struct ieee80211_hw *hw;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002206 enum ieee80211_band band;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002207
Johannes Berg0e057d732008-09-12 00:39:22 +02002208 if (radios < 1 || radios > 100)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002209 return -EINVAL;
2210
Johannes Berge8261172012-07-27 19:48:26 +02002211 if (channels < 1)
2212 return -EINVAL;
2213
2214 if (channels > 1) {
2215 hwsim_if_comb.num_different_channels = channels;
Johannes Berg69068032010-02-03 10:47:55 +01002216 mac80211_hwsim_ops.hw_scan = mac80211_hwsim_hw_scan;
Johannes Berge8261172012-07-27 19:48:26 +02002217 mac80211_hwsim_ops.cancel_hw_scan =
2218 mac80211_hwsim_cancel_hw_scan;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002219 mac80211_hwsim_ops.sw_scan_start = NULL;
2220 mac80211_hwsim_ops.sw_scan_complete = NULL;
Johannes Berge8261172012-07-27 19:48:26 +02002221 mac80211_hwsim_ops.remain_on_channel =
2222 mac80211_hwsim_roc;
2223 mac80211_hwsim_ops.cancel_remain_on_channel =
2224 mac80211_hwsim_croc;
2225 mac80211_hwsim_ops.add_chanctx =
2226 mac80211_hwsim_add_chanctx;
2227 mac80211_hwsim_ops.remove_chanctx =
2228 mac80211_hwsim_remove_chanctx;
2229 mac80211_hwsim_ops.change_chanctx =
2230 mac80211_hwsim_change_chanctx;
2231 mac80211_hwsim_ops.assign_vif_chanctx =
2232 mac80211_hwsim_assign_vif_chanctx;
2233 mac80211_hwsim_ops.unassign_vif_chanctx =
2234 mac80211_hwsim_unassign_vif_chanctx;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002235 }
Johannes Berg69068032010-02-03 10:47:55 +01002236
Johannes Berg0e057d732008-09-12 00:39:22 +02002237 spin_lock_init(&hwsim_radio_lock);
2238 INIT_LIST_HEAD(&hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002239
Sasha Levinc07fe5a2013-04-24 00:40:05 -04002240 err = platform_driver_register(&mac80211_hwsim_driver);
Martin Pitt9ea927742013-04-08 11:30:01 +02002241 if (err)
2242 return err;
2243
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002244 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
Martin Pitt9ea927742013-04-08 11:30:01 +02002245 if (IS_ERR(hwsim_class)) {
2246 err = PTR_ERR(hwsim_class);
2247 goto failed_unregister_driver;
2248 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002249
2250 memset(addr, 0, ETH_ALEN);
2251 addr[0] = 0x02;
2252
Johannes Berg0e057d732008-09-12 00:39:22 +02002253 for (i = 0; i < radios; i++) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002254 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
2255 i);
2256 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
Johannes Berg0e057d732008-09-12 00:39:22 +02002257 if (!hw) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002258 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
2259 "failed\n");
2260 err = -ENOMEM;
2261 goto failed;
2262 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002263 data = hw->priv;
Johannes Berg0e057d732008-09-12 00:39:22 +02002264 data->hw = hw;
2265
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07002266 data->dev = device_create(hwsim_class, NULL, 0, hw,
2267 "hwsim%d", i);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002268 if (IS_ERR(data->dev)) {
Stephen Rothwelle800f172008-06-16 15:35:10 +10002269 printk(KERN_DEBUG
Martin Pitt9ea927742013-04-08 11:30:01 +02002270 "mac80211_hwsim: device_create failed (%ld)\n",
2271 PTR_ERR(data->dev));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002272 err = -ENOMEM;
Ian Schram3a33cc12008-07-21 13:19:35 -07002273 goto failed_drvdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002274 }
Sasha Levinc07fe5a2013-04-24 00:40:05 -04002275 data->dev->driver = &mac80211_hwsim_driver.driver;
Martin Pitt9ea927742013-04-08 11:30:01 +02002276 err = device_bind_driver(data->dev);
2277 if (err != 0) {
2278 printk(KERN_DEBUG
2279 "mac80211_hwsim: device_bind_driver failed (%d)\n",
2280 err);
2281 goto failed_hw;
2282 }
2283
Javier Lopez78825132011-06-01 11:26:13 +02002284 skb_queue_head_init(&data->pending);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002285
2286 SET_IEEE80211_DEV(hw, data->dev);
2287 addr[3] = i >> 8;
2288 addr[4] = i;
Johannes Bergef15aac2010-01-20 12:02:33 +01002289 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
2290 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
2291 data->addresses[1].addr[0] |= 0x40;
2292 hw->wiphy->n_addresses = 2;
2293 hw->wiphy->addresses = data->addresses;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002294
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002295 hw->wiphy->iface_combinations = &hwsim_if_comb;
2296 hw->wiphy->n_iface_combinations = 1;
2297
Johannes Berge8261172012-07-27 19:48:26 +02002298 if (channels > 1) {
Johannes Berg8223d2f2010-06-18 12:31:56 +02002299 hw->wiphy->max_scan_ssids = 255;
2300 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
Johannes Berge8261172012-07-27 19:48:26 +02002301 hw->wiphy->max_remain_on_channel_duration = 1000;
Johannes Berg8223d2f2010-06-18 12:31:56 +02002302 }
2303
Johannes Berge8261172012-07-27 19:48:26 +02002304 INIT_DELAYED_WORK(&data->roc_done, hw_roc_done);
2305 INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work);
2306
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002307 hw->channel_change_time = 1;
Johannes Berge8261172012-07-27 19:48:26 +02002308 hw->queues = 5;
2309 hw->offchannel_tx_hw_queue = 4;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07002310 hw->wiphy->interface_modes =
2311 BIT(NL80211_IFTYPE_STATION) |
Andrey Yurovsky55b39612008-10-31 23:23:35 -07002312 BIT(NL80211_IFTYPE_AP) |
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002313 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2314 BIT(NL80211_IFTYPE_P2P_GO) |
Johannes Berg2b2d7792010-08-17 12:08:07 +02002315 BIT(NL80211_IFTYPE_ADHOC) |
Johannes Berg8b3d1cc2012-06-19 17:29:29 +02002316 BIT(NL80211_IFTYPE_MESH_POINT) |
2317 BIT(NL80211_IFTYPE_P2P_DEVICE);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002318
Johannes Berg4b14c962009-07-10 16:56:59 +02002319 hw->flags = IEEE80211_HW_MFP_CAPABLE |
Johannes Berg0f782312009-12-01 13:37:02 +01002320 IEEE80211_HW_SIGNAL_DBM |
2321 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
Johannes Berga75b4362010-05-01 18:53:51 +02002322 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02002323 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berge8261172012-07-27 19:48:26 +02002324 IEEE80211_HW_WANT_MONITOR_VIF |
2325 IEEE80211_HW_QUEUE_CONTROL;
Karl Beldan1eb32172013-04-19 14:44:52 +02002326 if (rctbl)
2327 hw->flags |= IEEE80211_HW_SUPPORTS_RC_TABLE;
Jouni Malinenfa775332009-01-08 13:32:14 +02002328
Johannes Berg81ddbb52012-03-26 18:47:18 +02002329 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
Johannes Berg2f5286e2013-07-14 23:38:33 +03002330 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL |
2331 WIPHY_FLAG_AP_UAPSD;
Johannes Berg5fd91aa2013-07-14 23:42:08 +03002332 hw->wiphy->features |= NL80211_FEATURE_ACTIVE_MONITOR;
Jouni Malinen43bc3e82011-10-23 22:45:27 +03002333
Johannes Berg8aa21e62008-09-11 02:16:36 +02002334 /* ask mac80211 to reserve space for magic */
2335 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
Johannes Berg81c06522008-09-11 02:17:01 +02002336 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
Karl Beldan93c78c52013-02-15 00:03:14 +01002337 hw->chanctx_data_size = sizeof(struct hwsim_chanctx_priv);
Johannes Berg8aa21e62008-09-11 02:16:36 +02002338
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002339 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
2340 sizeof(hwsim_channels_2ghz));
2341 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
2342 sizeof(hwsim_channels_5ghz));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002343 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002344
2345 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
2346 struct ieee80211_supported_band *sband = &data->bands[band];
2347 switch (band) {
2348 case IEEE80211_BAND_2GHZ:
2349 sband->channels = data->channels_2ghz;
2350 sband->n_channels =
2351 ARRAY_SIZE(hwsim_channels_2ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01002352 sband->bitrates = data->rates;
2353 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002354 break;
2355 case IEEE80211_BAND_5GHZ:
2356 sband->channels = data->channels_5ghz;
2357 sband->n_channels =
2358 ARRAY_SIZE(hwsim_channels_5ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01002359 sband->bitrates = data->rates + 4;
2360 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002361 break;
2362 default:
Johannes Berg1b083ea2012-07-03 13:14:49 +02002363 continue;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002364 }
2365
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002366 sband->ht_cap.ht_supported = true;
2367 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
2368 IEEE80211_HT_CAP_GRN_FLD |
2369 IEEE80211_HT_CAP_SGI_40 |
2370 IEEE80211_HT_CAP_DSSSCCK40;
2371 sband->ht_cap.ampdu_factor = 0x3;
2372 sband->ht_cap.ampdu_density = 0x6;
2373 memset(&sband->ht_cap.mcs, 0,
2374 sizeof(sband->ht_cap.mcs));
2375 sband->ht_cap.mcs.rx_mask[0] = 0xff;
2376 sband->ht_cap.mcs.rx_mask[1] = 0xff;
2377 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2378
2379 hw->wiphy->bands[band] = sband;
Johannes Bergb2960052012-11-12 11:51:50 +01002380
Johannes Bergb2960052012-11-12 11:51:50 +01002381 sband->vht_cap.vht_supported = true;
2382 sband->vht_cap.cap =
2383 IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
2384 IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ |
2385 IEEE80211_VHT_CAP_RXLDPC |
2386 IEEE80211_VHT_CAP_SHORT_GI_80 |
2387 IEEE80211_VHT_CAP_SHORT_GI_160 |
2388 IEEE80211_VHT_CAP_TXSTBC |
2389 IEEE80211_VHT_CAP_RXSTBC_1 |
2390 IEEE80211_VHT_CAP_RXSTBC_2 |
2391 IEEE80211_VHT_CAP_RXSTBC_3 |
2392 IEEE80211_VHT_CAP_RXSTBC_4 |
Johannes Berg01331042012-12-05 16:45:31 +01002393 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK;
Johannes Bergb2960052012-11-12 11:51:50 +01002394 sband->vht_cap.vht_mcs.rx_mcs_map =
2395 cpu_to_le16(IEEE80211_VHT_MCS_SUPPORT_0_8 << 0 |
2396 IEEE80211_VHT_MCS_SUPPORT_0_8 << 2 |
2397 IEEE80211_VHT_MCS_SUPPORT_0_9 << 4 |
2398 IEEE80211_VHT_MCS_SUPPORT_0_8 << 6 |
2399 IEEE80211_VHT_MCS_SUPPORT_0_8 << 8 |
2400 IEEE80211_VHT_MCS_SUPPORT_0_9 << 10 |
2401 IEEE80211_VHT_MCS_SUPPORT_0_9 << 12 |
2402 IEEE80211_VHT_MCS_SUPPORT_0_8 << 14);
2403 sband->vht_cap.vht_mcs.tx_mcs_map =
2404 sband->vht_cap.vht_mcs.rx_mcs_map;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002405 }
Daniel Wagner73606d02009-05-18 19:49:25 +02002406 /* By default all radios are belonging to the first group */
2407 data->group = 1;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002408 mutex_init(&data->mutex);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002409
Javier Lopez78825132011-06-01 11:26:13 +02002410 /* Enable frame retransmissions for lossy channels */
2411 hw->max_rates = 4;
2412 hw->max_rate_tries = 11;
2413
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002414 /* Work to be done prior to ieee80211_register_hw() */
2415 switch (regtest) {
2416 case HWSIM_REGTEST_DISABLED:
2417 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2418 case HWSIM_REGTEST_DRIVER_REG_ALL:
2419 case HWSIM_REGTEST_DIFF_COUNTRY:
2420 /*
2421 * Nothing to be done for driver regulatory domain
2422 * hints prior to ieee80211_register_hw()
2423 */
2424 break;
2425 case HWSIM_REGTEST_WORLD_ROAM:
2426 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002427 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002428 wiphy_apply_custom_regulatory(hw->wiphy,
2429 &hwsim_world_regdom_custom_01);
2430 }
2431 break;
2432 case HWSIM_REGTEST_CUSTOM_WORLD:
Johannes Berg5be83de2009-11-19 00:56:28 +01002433 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002434 wiphy_apply_custom_regulatory(hw->wiphy,
2435 &hwsim_world_regdom_custom_01);
2436 break;
2437 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2438 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002439 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002440 wiphy_apply_custom_regulatory(hw->wiphy,
2441 &hwsim_world_regdom_custom_01);
2442 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002443 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002444 wiphy_apply_custom_regulatory(hw->wiphy,
2445 &hwsim_world_regdom_custom_02);
2446 }
2447 break;
2448 case HWSIM_REGTEST_STRICT_ALL:
Johannes Berg5be83de2009-11-19 00:56:28 +01002449 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002450 break;
2451 case HWSIM_REGTEST_STRICT_FOLLOW:
2452 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2453 if (i == 0)
Johannes Berg5be83de2009-11-19 00:56:28 +01002454 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002455 break;
2456 case HWSIM_REGTEST_ALL:
2457 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002458 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002459 wiphy_apply_custom_regulatory(hw->wiphy,
2460 &hwsim_world_regdom_custom_01);
2461 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002462 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002463 wiphy_apply_custom_regulatory(hw->wiphy,
2464 &hwsim_world_regdom_custom_02);
2465 } else if (i == 4)
Johannes Berg5be83de2009-11-19 00:56:28 +01002466 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002467 break;
2468 default:
2469 break;
2470 }
2471
Luis R. Rodriguez98dfaa52009-03-20 23:46:11 -04002472 /* give the regulatory workqueue a chance to run */
2473 if (regtest)
2474 schedule_timeout_interruptible(1);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002475 err = ieee80211_register_hw(hw);
2476 if (err < 0) {
2477 printk(KERN_DEBUG "mac80211_hwsim: "
2478 "ieee80211_register_hw failed (%d)\n", err);
Ian Schram3a33cc12008-07-21 13:19:35 -07002479 goto failed_hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002480 }
2481
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002482 /* Work to be done after to ieee80211_register_hw() */
2483 switch (regtest) {
2484 case HWSIM_REGTEST_WORLD_ROAM:
2485 case HWSIM_REGTEST_DISABLED:
2486 break;
2487 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2488 if (!i)
2489 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2490 break;
2491 case HWSIM_REGTEST_DRIVER_REG_ALL:
2492 case HWSIM_REGTEST_STRICT_ALL:
2493 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2494 break;
2495 case HWSIM_REGTEST_DIFF_COUNTRY:
2496 if (i < ARRAY_SIZE(hwsim_alpha2s))
2497 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
2498 break;
2499 case HWSIM_REGTEST_CUSTOM_WORLD:
2500 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2501 /*
2502 * Nothing to be done for custom world regulatory
2503 * domains after to ieee80211_register_hw
2504 */
2505 break;
2506 case HWSIM_REGTEST_STRICT_FOLLOW:
2507 if (i == 0)
2508 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2509 break;
2510 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2511 if (i == 0)
2512 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2513 else if (i == 1)
2514 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2515 break;
2516 case HWSIM_REGTEST_ALL:
2517 if (i == 2)
2518 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2519 else if (i == 3)
2520 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2521 else if (i == 4)
2522 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
2523 break;
2524 default:
2525 break;
2526 }
2527
Joe Perchesc96c31e2010-07-26 14:39:58 -07002528 wiphy_debug(hw->wiphy, "hwaddr %pm registered\n",
2529 hw->wiphy->perm_addr);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002530
Jouni Malinenfc6971d2008-10-30 19:59:05 +02002531 data->debugfs = debugfs_create_dir("hwsim",
2532 hw->wiphy->debugfsdir);
Janusz Dziedzic70526e52013-11-01 20:35:58 +01002533 debugfs_create_file("ps", 0666, data->debugfs, data,
2534 &hwsim_fops_ps);
2535 debugfs_create_file("group", 0666, data->debugfs, data,
2536 &hwsim_fops_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02002537
Thomas Pedersen01e59e42013-01-02 14:55:17 -08002538 tasklet_hrtimer_init(&data->beacon_timer,
2539 mac80211_hwsim_beacon,
2540 CLOCK_REALTIME, HRTIMER_MODE_ABS);
Johannes Berg0e057d732008-09-12 00:39:22 +02002541
2542 list_add_tail(&data->list, &hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002543 }
2544
2545 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
Wei Yongjunbcdd8222013-08-26 15:32:58 +08002546 if (hwsim_mon == NULL) {
2547 err = -ENOMEM;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002548 goto failed;
Wei Yongjunbcdd8222013-08-26 15:32:58 +08002549 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002550
Javier Lopez78825132011-06-01 11:26:13 +02002551 rtnl_lock();
2552
2553 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
Ian Schram3a33cc12008-07-21 13:19:35 -07002554 if (err < 0)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002555 goto failed_mon;
Ian Schram3a33cc12008-07-21 13:19:35 -07002556
Javier Lopez78825132011-06-01 11:26:13 +02002557
2558 err = register_netdevice(hwsim_mon);
2559 if (err < 0)
2560 goto failed_mon;
2561
2562 rtnl_unlock();
2563
2564 err = hwsim_init_netlink();
2565 if (err < 0)
2566 goto failed_nl;
2567
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002568 return 0;
2569
Javier Lopez78825132011-06-01 11:26:13 +02002570failed_nl:
2571 printk(KERN_DEBUG "mac_80211_hwsim: failed initializing netlink\n");
2572 return err;
2573
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002574failed_mon:
2575 rtnl_unlock();
2576 free_netdev(hwsim_mon);
Ian Schram3a33cc12008-07-21 13:19:35 -07002577 mac80211_hwsim_free();
2578 return err;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002579
Ian Schram3a33cc12008-07-21 13:19:35 -07002580failed_hw:
2581 device_unregister(data->dev);
2582failed_drvdata:
2583 ieee80211_free_hw(hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002584failed:
2585 mac80211_hwsim_free();
Martin Pitt9ea927742013-04-08 11:30:01 +02002586failed_unregister_driver:
Sasha Levinc07fe5a2013-04-24 00:40:05 -04002587 platform_driver_unregister(&mac80211_hwsim_driver);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002588 return err;
2589}
Johannes Bergf8fffc72012-07-27 15:16:02 +02002590module_init(init_mac80211_hwsim);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002591
2592static void __exit exit_mac80211_hwsim(void)
2593{
Johannes Berg0e057d732008-09-12 00:39:22 +02002594 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002595
Javier Lopez78825132011-06-01 11:26:13 +02002596 hwsim_exit_netlink();
2597
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002598 mac80211_hwsim_free();
Johannes Berg5d416352009-07-13 13:04:30 +02002599 unregister_netdev(hwsim_mon);
Sasha Levinc07fe5a2013-04-24 00:40:05 -04002600 platform_driver_unregister(&mac80211_hwsim_driver);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002601}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002602module_exit(exit_mac80211_hwsim);