blob: b6e2caa024a7b5c17e0aa83071855c18533e3342 [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>
Jouni Malinenfc6971d2008-10-30 19:59:05 +020028#include <linux/debugfs.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040029#include <linux/module.h>
Javier Cardona2f40b942012-03-05 17:20:37 -080030#include <linux/ktime.h>
Javier Lopez78825132011-06-01 11:26:13 +020031#include <net/genetlink.h>
32#include "mac80211_hwsim.h"
33
34#define WARN_QUEUE 100
35#define MAX_QUEUE 200
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030036
37MODULE_AUTHOR("Jouni Malinen");
38MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
39MODULE_LICENSE("GPL");
40
Eric W. Biederman15e47302012-09-07 20:12:54 +000041static u32 wmediumd_portid;
Johannes Berga1910f92011-12-07 12:35:17 +010042
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030043static int radios = 2;
44module_param(radios, int, 0444);
45MODULE_PARM_DESC(radios, "Number of simulated radios");
46
Johannes Berge8261172012-07-27 19:48:26 +020047static int channels = 1;
48module_param(channels, int, 0444);
49MODULE_PARM_DESC(channels, "Number of concurrent channels");
Johannes Berg69068032010-02-03 10:47:55 +010050
Johannes Berga357d7f2012-12-10 11:57:42 +010051static bool paged_rx = false;
52module_param(paged_rx, bool, 0644);
53MODULE_PARM_DESC(paged_rx, "Use paged SKBs for RX instead of linear ones");
54
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040055/**
56 * enum hwsim_regtest - the type of regulatory tests we offer
57 *
58 * These are the different values you can use for the regtest
59 * module parameter. This is useful to help test world roaming
60 * and the driver regulatory_hint() call and combinations of these.
61 * If you want to do specific alpha2 regulatory domain tests simply
62 * use the userspace regulatory request as that will be respected as
63 * well without the need of this module parameter. This is designed
64 * only for testing the driver regulatory request, world roaming
65 * and all possible combinations.
66 *
67 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
68 * this is the default value.
69 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
70 * hint, only one driver regulatory hint will be sent as such the
71 * secondary radios are expected to follow.
72 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
73 * request with all radios reporting the same regulatory domain.
74 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
75 * different regulatory domains requests. Expected behaviour is for
76 * an intersection to occur but each device will still use their
77 * respective regulatory requested domains. Subsequent radios will
78 * use the resulting intersection.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030079 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040080 * this by using a custom beacon-capable regulatory domain for the first
81 * radio. All other device world roam.
82 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
83 * domain requests. All radios will adhere to this custom world regulatory
84 * domain.
85 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
86 * domain requests. The first radio will adhere to the first custom world
87 * regulatory domain, the second one to the second custom world regulatory
88 * domain. All other devices will world roam.
89 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
90 * settings, only the first radio will send a regulatory domain request
91 * and use strict settings. The rest of the radios are expected to follow.
92 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
93 * settings. All radios will adhere to this.
94 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
95 * domain settings, combined with secondary driver regulatory domain
96 * settings. The first radio will get a strict regulatory domain setting
97 * using the first driver regulatory request and the second radio will use
98 * non-strict settings using the second driver regulatory request. All
99 * other devices should follow the intersection created between the
100 * first two.
101 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
102 * at least 6 radios for a complete test. We will test in this order:
103 * 1 - driver custom world regulatory domain
104 * 2 - second custom world regulatory domain
105 * 3 - first driver regulatory domain request
106 * 4 - second driver regulatory domain request
107 * 5 - strict regulatory domain settings using the third driver regulatory
108 * domain request
109 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
110 * regulatory requests.
111 */
112enum hwsim_regtest {
113 HWSIM_REGTEST_DISABLED = 0,
114 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
115 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
116 HWSIM_REGTEST_DIFF_COUNTRY = 3,
117 HWSIM_REGTEST_WORLD_ROAM = 4,
118 HWSIM_REGTEST_CUSTOM_WORLD = 5,
119 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
120 HWSIM_REGTEST_STRICT_FOLLOW = 7,
121 HWSIM_REGTEST_STRICT_ALL = 8,
122 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
123 HWSIM_REGTEST_ALL = 10,
124};
125
126/* Set to one of the HWSIM_REGTEST_* values above */
127static int regtest = HWSIM_REGTEST_DISABLED;
128module_param(regtest, int, 0444);
129MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
130
131static const char *hwsim_alpha2s[] = {
132 "FI",
133 "AL",
134 "US",
135 "DE",
136 "JP",
137 "AL",
138};
139
140static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
141 .n_reg_rules = 4,
142 .alpha2 = "99",
143 .reg_rules = {
144 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
145 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
146 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
147 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
148 }
149};
150
151static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
152 .n_reg_rules = 2,
153 .alpha2 = "99",
154 .reg_rules = {
155 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
156 REG_RULE(5725-10, 5850+10, 40, 0, 30,
157 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
158 }
159};
160
Johannes Berg8aa21e62008-09-11 02:16:36 +0200161struct hwsim_vif_priv {
162 u32 magic;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200163 u8 bssid[ETH_ALEN];
164 bool assoc;
165 u16 aid;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200166};
167
168#define HWSIM_VIF_MAGIC 0x69537748
169
170static inline void hwsim_check_magic(struct ieee80211_vif *vif)
171{
172 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berge8261172012-07-27 19:48:26 +0200173 WARN(vp->magic != HWSIM_VIF_MAGIC,
174 "Invalid VIF (%p) magic %#x, %pM, %d/%d\n",
175 vif, vp->magic, vif->addr, vif->type, vif->p2p);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200176}
177
178static inline void hwsim_set_magic(struct ieee80211_vif *vif)
179{
180 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
181 vp->magic = HWSIM_VIF_MAGIC;
182}
183
184static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
185{
186 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
187 vp->magic = 0;
188}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300189
Johannes Berg81c06522008-09-11 02:17:01 +0200190struct hwsim_sta_priv {
191 u32 magic;
192};
193
Johannes Berge8261172012-07-27 19:48:26 +0200194#define HWSIM_STA_MAGIC 0x6d537749
Johannes Berg81c06522008-09-11 02:17:01 +0200195
196static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
197{
198 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200199 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
Johannes Berg81c06522008-09-11 02:17:01 +0200200}
201
202static inline void hwsim_set_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 sp->magic = HWSIM_STA_MAGIC;
Johannes Berg81c06522008-09-11 02:17:01 +0200206}
207
208static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
209{
210 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
211 sp->magic = 0;
212}
213
Johannes Berge8261172012-07-27 19:48:26 +0200214struct hwsim_chanctx_priv {
215 u32 magic;
216};
217
218#define HWSIM_CHANCTX_MAGIC 0x6d53774a
219
220static inline void hwsim_check_chanctx_magic(struct ieee80211_chanctx_conf *c)
221{
222 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
223 WARN_ON(cp->magic != HWSIM_CHANCTX_MAGIC);
224}
225
226static inline void hwsim_set_chanctx_magic(struct ieee80211_chanctx_conf *c)
227{
228 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
229 cp->magic = HWSIM_CHANCTX_MAGIC;
230}
231
232static inline void hwsim_clear_chanctx_magic(struct ieee80211_chanctx_conf *c)
233{
234 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
235 cp->magic = 0;
236}
237
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300238static struct class *hwsim_class;
239
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300240static struct net_device *hwsim_mon; /* global monitor netdev */
241
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800242#define CHAN2G(_freq) { \
243 .band = IEEE80211_BAND_2GHZ, \
244 .center_freq = (_freq), \
245 .hw_value = (_freq), \
246 .max_power = 20, \
247}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300248
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800249#define CHAN5G(_freq) { \
250 .band = IEEE80211_BAND_5GHZ, \
251 .center_freq = (_freq), \
252 .hw_value = (_freq), \
253 .max_power = 20, \
254}
255
256static const struct ieee80211_channel hwsim_channels_2ghz[] = {
257 CHAN2G(2412), /* Channel 1 */
258 CHAN2G(2417), /* Channel 2 */
259 CHAN2G(2422), /* Channel 3 */
260 CHAN2G(2427), /* Channel 4 */
261 CHAN2G(2432), /* Channel 5 */
262 CHAN2G(2437), /* Channel 6 */
263 CHAN2G(2442), /* Channel 7 */
264 CHAN2G(2447), /* Channel 8 */
265 CHAN2G(2452), /* Channel 9 */
266 CHAN2G(2457), /* Channel 10 */
267 CHAN2G(2462), /* Channel 11 */
268 CHAN2G(2467), /* Channel 12 */
269 CHAN2G(2472), /* Channel 13 */
270 CHAN2G(2484), /* Channel 14 */
271};
272
273static const struct ieee80211_channel hwsim_channels_5ghz[] = {
274 CHAN5G(5180), /* Channel 36 */
275 CHAN5G(5200), /* Channel 40 */
276 CHAN5G(5220), /* Channel 44 */
277 CHAN5G(5240), /* Channel 48 */
278
279 CHAN5G(5260), /* Channel 52 */
280 CHAN5G(5280), /* Channel 56 */
281 CHAN5G(5300), /* Channel 60 */
282 CHAN5G(5320), /* Channel 64 */
283
284 CHAN5G(5500), /* Channel 100 */
285 CHAN5G(5520), /* Channel 104 */
286 CHAN5G(5540), /* Channel 108 */
287 CHAN5G(5560), /* Channel 112 */
288 CHAN5G(5580), /* Channel 116 */
289 CHAN5G(5600), /* Channel 120 */
290 CHAN5G(5620), /* Channel 124 */
291 CHAN5G(5640), /* Channel 128 */
292 CHAN5G(5660), /* Channel 132 */
293 CHAN5G(5680), /* Channel 136 */
294 CHAN5G(5700), /* Channel 140 */
295
296 CHAN5G(5745), /* Channel 149 */
297 CHAN5G(5765), /* Channel 153 */
298 CHAN5G(5785), /* Channel 157 */
299 CHAN5G(5805), /* Channel 161 */
300 CHAN5G(5825), /* Channel 165 */
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300301};
302
303static const struct ieee80211_rate hwsim_rates[] = {
304 { .bitrate = 10 },
305 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
306 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
307 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
308 { .bitrate = 60 },
309 { .bitrate = 90 },
310 { .bitrate = 120 },
311 { .bitrate = 180 },
312 { .bitrate = 240 },
313 { .bitrate = 360 },
314 { .bitrate = 480 },
315 { .bitrate = 540 }
316};
317
Johannes Berg0e057d732008-09-12 00:39:22 +0200318static spinlock_t hwsim_radio_lock;
319static struct list_head hwsim_radios;
320
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300321struct mac80211_hwsim_data {
Johannes Berg0e057d732008-09-12 00:39:22 +0200322 struct list_head list;
323 struct ieee80211_hw *hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300324 struct device *dev;
Johannes Berg1b083ea2012-07-03 13:14:49 +0200325 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800326 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
327 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300328 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
329
Johannes Bergef15aac2010-01-20 12:02:33 +0100330 struct mac_address addresses[2];
331
Johannes Berge8261172012-07-27 19:48:26 +0200332 struct ieee80211_channel *tmp_chan;
333 struct delayed_work roc_done;
334 struct delayed_work hw_scan;
335 struct cfg80211_scan_request *hw_scan_request;
336 struct ieee80211_vif *hw_scan_vif;
337 int scan_chan_idx;
338
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300339 struct ieee80211_channel *channel;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800340 u64 beacon_int /* beacon interval in us */;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300341 unsigned int rx_filter;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400342 bool started, idle, scanning;
343 struct mutex mutex;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800344 struct tasklet_hrtimer beacon_timer;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200345 enum ps_mode {
346 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
347 } ps;
348 bool ps_poll_pending;
349 struct dentry *debugfs;
350 struct dentry *debugfs_ps;
Daniel Wagner73606d02009-05-18 19:49:25 +0200351
Javier Lopez78825132011-06-01 11:26:13 +0200352 struct sk_buff_head pending; /* packets pending */
Daniel Wagner73606d02009-05-18 19:49:25 +0200353 /*
354 * Only radios in the same group can communicate together (the
355 * channel has to match too). Each bit represents a group. A
356 * radio can be in more then one group.
357 */
358 u64 group;
359 struct dentry *debugfs_group;
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700360
361 int power_level;
Javier Cardona2f40b942012-03-05 17:20:37 -0800362
363 /* difference between this hw's clock and the real clock, in usecs */
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800364 s64 tsf_offset;
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800365 s64 bcn_delta;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300366};
367
368
369struct hwsim_radiotap_hdr {
370 struct ieee80211_radiotap_header hdr;
Javier Cardona2f40b942012-03-05 17:20:37 -0800371 __le64 rt_tsft;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300372 u8 rt_flags;
373 u8 rt_rate;
374 __le16 rt_channel;
375 __le16 rt_chbitmask;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000376} __packed;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300377
Javier Lopez78825132011-06-01 11:26:13 +0200378/* MAC80211_HWSIM netlinf family */
379static struct genl_family hwsim_genl_family = {
380 .id = GENL_ID_GENERATE,
381 .hdrsize = 0,
382 .name = "MAC80211_HWSIM",
383 .version = 1,
384 .maxattr = HWSIM_ATTR_MAX,
385};
386
387/* MAC80211_HWSIM netlink policy */
388
389static struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
390 [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC,
391 .len = 6*sizeof(u8) },
392 [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC,
393 .len = 6*sizeof(u8) },
394 [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
395 .len = IEEE80211_MAX_DATA_LEN },
396 [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 },
397 [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 },
398 [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 },
399 [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC,
400 .len = IEEE80211_TX_MAX_RATES*sizeof(
401 struct hwsim_tx_rate)},
402 [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 },
403};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300404
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000405static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
406 struct net_device *dev)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300407{
408 /* TODO: allow packet injection */
409 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000410 return NETDEV_TX_OK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300411}
412
Javier Cardona2f40b942012-03-05 17:20:37 -0800413static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data)
414{
415 struct timeval tv = ktime_to_timeval(ktime_get_real());
416 u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec;
417 return cpu_to_le64(now + data->tsf_offset);
418}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300419
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800420static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw,
421 struct ieee80211_vif *vif)
422{
423 struct mac80211_hwsim_data *data = hw->priv;
424 return le64_to_cpu(__mac80211_hwsim_get_tsf(data));
425}
426
427static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw,
428 struct ieee80211_vif *vif, u64 tsf)
429{
430 struct mac80211_hwsim_data *data = hw->priv;
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800431 u64 now = mac80211_hwsim_get_tsf(hw, vif);
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800432 u32 bcn_int = data->beacon_int;
Thomas Pedersen45034bf2013-01-02 14:55:16 -0800433 s64 delta = tsf - now;
434
435 data->tsf_offset += delta;
Thomas Pedersenc51f8782013-01-02 14:55:18 -0800436 /* adjust after beaconing with new timestamp at old TBTT */
437 data->bcn_delta = do_div(delta, bcn_int);
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800438}
439
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300440static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200441 struct sk_buff *tx_skb,
442 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300443{
444 struct mac80211_hwsim_data *data = hw->priv;
445 struct sk_buff *skb;
446 struct hwsim_radiotap_hdr *hdr;
447 u16 flags;
448 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
449 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
450
451 if (!netif_running(hwsim_mon))
452 return;
453
454 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
455 if (skb == NULL)
456 return;
457
458 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
459 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
460 hdr->hdr.it_pad = 0;
461 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
Jouni Malinenf248f102008-06-13 19:44:47 +0300462 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
463 (1 << IEEE80211_RADIOTAP_RATE) |
Javier Cardona2f40b942012-03-05 17:20:37 -0800464 (1 << IEEE80211_RADIOTAP_TSFT) |
Jouni Malinenf248f102008-06-13 19:44:47 +0300465 (1 << IEEE80211_RADIOTAP_CHANNEL));
Javier Cardona2f40b942012-03-05 17:20:37 -0800466 hdr->rt_tsft = __mac80211_hwsim_get_tsf(data);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300467 hdr->rt_flags = 0;
468 hdr->rt_rate = txrate->bitrate / 5;
Johannes Berge8261172012-07-27 19:48:26 +0200469 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300470 flags = IEEE80211_CHAN_2GHZ;
471 if (txrate->flags & IEEE80211_RATE_ERP_G)
472 flags |= IEEE80211_CHAN_OFDM;
473 else
474 flags |= IEEE80211_CHAN_CCK;
475 hdr->rt_chbitmask = cpu_to_le16(flags);
476
477 skb->dev = hwsim_mon;
478 skb_set_mac_header(skb, 0);
479 skb->ip_summed = CHECKSUM_UNNECESSARY;
480 skb->pkt_type = PACKET_OTHERHOST;
Jouni Malinenf248f102008-06-13 19:44:47 +0300481 skb->protocol = htons(ETH_P_802_2);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300482 memset(skb->cb, 0, sizeof(skb->cb));
483 netif_rx(skb);
484}
485
486
Johannes Berge8261172012-07-27 19:48:26 +0200487static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan,
488 const u8 *addr)
Jouni Malinen6c085222009-11-01 11:31:45 +0200489{
Jouni Malinen6c085222009-11-01 11:31:45 +0200490 struct sk_buff *skb;
491 struct hwsim_radiotap_hdr *hdr;
492 u16 flags;
493 struct ieee80211_hdr *hdr11;
494
495 if (!netif_running(hwsim_mon))
496 return;
497
498 skb = dev_alloc_skb(100);
499 if (skb == NULL)
500 return;
501
502 hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr));
503 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
504 hdr->hdr.it_pad = 0;
505 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
506 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
507 (1 << IEEE80211_RADIOTAP_CHANNEL));
508 hdr->rt_flags = 0;
509 hdr->rt_rate = 0;
Johannes Berge8261172012-07-27 19:48:26 +0200510 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinen6c085222009-11-01 11:31:45 +0200511 flags = IEEE80211_CHAN_2GHZ;
512 hdr->rt_chbitmask = cpu_to_le16(flags);
513
514 hdr11 = (struct ieee80211_hdr *) skb_put(skb, 10);
515 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
516 IEEE80211_STYPE_ACK);
517 hdr11->duration_id = cpu_to_le16(0);
518 memcpy(hdr11->addr1, addr, ETH_ALEN);
519
520 skb->dev = hwsim_mon;
521 skb_set_mac_header(skb, 0);
522 skb->ip_summed = CHECKSUM_UNNECESSARY;
523 skb->pkt_type = PACKET_OTHERHOST;
524 skb->protocol = htons(ETH_P_802_2);
525 memset(skb->cb, 0, sizeof(skb->cb));
526 netif_rx(skb);
527}
528
529
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200530static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
531 struct sk_buff *skb)
532{
533 switch (data->ps) {
534 case PS_DISABLED:
535 return true;
536 case PS_ENABLED:
537 return false;
538 case PS_AUTO_POLL:
539 /* TODO: accept (some) Beacons by default and other frames only
540 * if pending PS-Poll has been sent */
541 return true;
542 case PS_MANUAL_POLL:
543 /* Allow unicast frames to own address if there is a pending
544 * PS-Poll */
545 if (data->ps_poll_pending &&
546 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
547 ETH_ALEN) == 0) {
548 data->ps_poll_pending = false;
549 return true;
550 }
551 return false;
552 }
553
554 return true;
555}
556
557
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200558struct mac80211_hwsim_addr_match_data {
559 bool ret;
560 const u8 *addr;
561};
562
563static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
564 struct ieee80211_vif *vif)
565{
566 struct mac80211_hwsim_addr_match_data *md = data;
567 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
568 md->ret = true;
569}
570
571
572static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
573 const u8 *addr)
574{
575 struct mac80211_hwsim_addr_match_data md;
576
577 if (memcmp(addr, data->hw->wiphy->perm_addr, ETH_ALEN) == 0)
578 return true;
579
580 md.ret = false;
581 md.addr = addr;
582 ieee80211_iterate_active_interfaces_atomic(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +0100583 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200584 mac80211_hwsim_addr_iter,
585 &md);
586
587 return md.ret;
588}
589
Javier Lopez78825132011-06-01 11:26:13 +0200590static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw,
591 struct sk_buff *my_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000592 int dst_portid)
Javier Lopez78825132011-06-01 11:26:13 +0200593{
594 struct sk_buff *skb;
595 struct mac80211_hwsim_data *data = hw->priv;
596 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data;
597 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb);
598 void *msg_head;
599 unsigned int hwsim_flags = 0;
600 int i;
601 struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES];
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200602
Javier Lopez78825132011-06-01 11:26:13 +0200603 if (data->ps != PS_DISABLED)
604 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
605 /* If the queue contains MAX_QUEUE skb's drop some */
606 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
607 /* Droping until WARN_QUEUE level */
608 while (skb_queue_len(&data->pending) >= WARN_QUEUE)
609 skb_dequeue(&data->pending);
610 }
611
Thomas Graf58050fc2012-06-28 03:57:45 +0000612 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Javier Lopez78825132011-06-01 11:26:13 +0200613 if (skb == NULL)
614 goto nla_put_failure;
615
616 msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
617 HWSIM_CMD_FRAME);
618 if (msg_head == NULL) {
619 printk(KERN_DEBUG "mac80211_hwsim: problem with msg_head\n");
620 goto nla_put_failure;
621 }
622
David S. Miller633c9382012-04-01 21:03:30 -0400623 if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER,
624 sizeof(struct mac_address), data->addresses[1].addr))
625 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200626
627 /* We get the skb->data */
David S. Miller633c9382012-04-01 21:03:30 -0400628 if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data))
629 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200630
631 /* We get the flags for this transmission, and we translate them to
632 wmediumd flags */
633
634 if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
635 hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS;
636
637 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
638 hwsim_flags |= HWSIM_TX_CTL_NO_ACK;
639
David S. Miller633c9382012-04-01 21:03:30 -0400640 if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags))
641 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200642
643 /* We get the tx control (rate and retries) info*/
644
645 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
646 tx_attempts[i].idx = info->status.rates[i].idx;
647 tx_attempts[i].count = info->status.rates[i].count;
648 }
649
David S. Miller633c9382012-04-01 21:03:30 -0400650 if (nla_put(skb, HWSIM_ATTR_TX_INFO,
651 sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES,
652 tx_attempts))
653 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200654
655 /* We create a cookie to identify this skb */
David S. Miller633c9382012-04-01 21:03:30 -0400656 if (nla_put_u64(skb, HWSIM_ATTR_COOKIE, (unsigned long) my_skb))
657 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200658
659 genlmsg_end(skb, msg_head);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000660 genlmsg_unicast(&init_net, skb, dst_portid);
Javier Lopez78825132011-06-01 11:26:13 +0200661
662 /* Enqueue the packet */
663 skb_queue_tail(&data->pending, my_skb);
664 return;
665
666nla_put_failure:
Masanari Iidac3938622012-02-17 23:04:10 +0900667 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +0200668}
669
Johannes Berge8261172012-07-27 19:48:26 +0200670static bool hwsim_chans_compat(struct ieee80211_channel *c1,
671 struct ieee80211_channel *c2)
672{
673 if (!c1 || !c2)
674 return false;
675
676 return c1->center_freq == c2->center_freq;
677}
678
679struct tx_iter_data {
680 struct ieee80211_channel *channel;
681 bool receive;
682};
683
684static void mac80211_hwsim_tx_iter(void *_data, u8 *addr,
685 struct ieee80211_vif *vif)
686{
687 struct tx_iter_data *data = _data;
688
689 if (!vif->chanctx_conf)
690 return;
691
692 if (!hwsim_chans_compat(data->channel,
Johannes Berg4bf88532012-11-09 11:39:59 +0100693 rcu_dereference(vif->chanctx_conf)->def.chan))
Johannes Berge8261172012-07-27 19:48:26 +0200694 return;
695
696 data->receive = true;
697}
698
Javier Lopez78825132011-06-01 11:26:13 +0200699static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200700 struct sk_buff *skb,
701 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300702{
Johannes Berg0e057d732008-09-12 00:39:22 +0200703 struct mac80211_hwsim_data *data = hw->priv, *data2;
704 bool ack = false;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300705 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300706 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300707 struct ieee80211_rx_status rx_status;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700708 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300709
710 memset(&rx_status, 0, sizeof(rx_status));
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800711 rx_status.flag |= RX_FLAG_MACTIME_START;
Johannes Berge8261172012-07-27 19:48:26 +0200712 rx_status.freq = chan->center_freq;
713 rx_status.band = chan->band;
Johannes Berge6a98542008-10-21 12:40:02 +0200714 rx_status.rate_idx = info->control.rates[0].idx;
Jouni Malinen281ed292011-08-06 23:07:00 +0300715 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
716 rx_status.flag |= RX_FLAG_HT;
717 if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
718 rx_status.flag |= RX_FLAG_40MHZ;
719 if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
720 rx_status.flag |= RX_FLAG_SHORT_GI;
Johannes Berg4b14c962009-07-10 16:56:59 +0200721 /* TODO: simulate real signal strength (and optional packet loss) */
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700722 rx_status.signal = data->power_level - 50;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300723
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200724 if (data->ps != PS_DISABLED)
725 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
726
Johannes Berg90e30122009-06-18 14:51:12 +0200727 /* release the skb's source info */
728 skb_orphan(skb);
John W. Linvillec0acf382009-06-30 16:55:52 -0400729 skb_dst_drop(skb);
Johannes Berg90e30122009-06-18 14:51:12 +0200730 skb->mark = 0;
731 secpath_reset(skb);
732 nf_reset(skb);
733
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300734 /* Copy skb to all enabled radios that are on the current frequency */
Johannes Berg0e057d732008-09-12 00:39:22 +0200735 spin_lock(&hwsim_radio_lock);
736 list_for_each_entry(data2, &hwsim_radios, list) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300737 struct sk_buff *nskb;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700738 struct ieee80211_mgmt *mgmt;
Johannes Berge8261172012-07-27 19:48:26 +0200739 struct tx_iter_data tx_iter_data = {
740 .receive = false,
741 .channel = chan,
742 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300743
Johannes Berg0e057d732008-09-12 00:39:22 +0200744 if (data == data2)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300745 continue;
Johannes Berg0e057d732008-09-12 00:39:22 +0200746
Johannes Berge8261172012-07-27 19:48:26 +0200747 if (!data2->started || (data2->idle && !data2->tmp_chan) ||
748 !hwsim_ps_rx_ok(data2, skb))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300749 continue;
750
Johannes Berge8261172012-07-27 19:48:26 +0200751 if (!(data->group & data2->group))
752 continue;
753
754 if (!hwsim_chans_compat(chan, data2->tmp_chan) &&
755 !hwsim_chans_compat(chan, data2->channel)) {
756 ieee80211_iterate_active_interfaces_atomic(
Johannes Berg8b2c9822012-11-06 20:23:30 +0100757 data2->hw, IEEE80211_IFACE_ITER_NORMAL,
758 mac80211_hwsim_tx_iter, &tx_iter_data);
Johannes Berge8261172012-07-27 19:48:26 +0200759 if (!tx_iter_data.receive)
760 continue;
761 }
762
Johannes Berg90b9e4462012-11-16 10:09:08 +0100763 /*
764 * reserve some space for our vendor and the normal
765 * radiotap header, since we're copying anyway
766 */
Johannes Berga357d7f2012-12-10 11:57:42 +0100767 if (skb->len < PAGE_SIZE && paged_rx) {
768 struct page *page = alloc_page(GFP_ATOMIC);
769
770 if (!page)
771 continue;
772
773 nskb = dev_alloc_skb(128);
774 if (!nskb) {
775 __free_page(page);
776 continue;
777 }
778
779 memcpy(page_address(page), skb->data, skb->len);
780 skb_add_rx_frag(nskb, 0, page, 0, skb->len, skb->len);
781 } else {
782 nskb = skb_copy(skb, GFP_ATOMIC);
783 if (!nskb)
784 continue;
785 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300786
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200787 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
Johannes Berg0e057d732008-09-12 00:39:22 +0200788 ack = true;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700789
790 /* set bcn timestamp relative to receiver mactime */
Ashok Nagarajan4e13f092012-03-08 09:27:34 -0800791 rx_status.mactime =
Javier Cardonaf483ad22012-03-31 11:31:30 -0700792 le64_to_cpu(__mac80211_hwsim_get_tsf(data2));
793 mgmt = (struct ieee80211_mgmt *) nskb->data;
794 if (ieee80211_is_beacon(mgmt->frame_control) ||
795 ieee80211_is_probe_resp(mgmt->frame_control))
796 mgmt->u.beacon.timestamp = cpu_to_le64(
797 rx_status.mactime +
Javier Cardonab6ba82c2012-04-12 14:32:21 -0700798 (data->tsf_offset - data2->tsf_offset) +
Javier Cardonaf483ad22012-03-31 11:31:30 -0700799 24 * 8 * 10 / txrate->bitrate);
800
Johannes Berg90b9e4462012-11-16 10:09:08 +0100801#if 0
802 /*
803 * Don't enable this code by default as the OUI 00:00:00
804 * is registered to Xerox so we shouldn't use it here, it
805 * might find its way into pcap files.
806 * Note that this code requires the headroom in the SKB
807 * that was allocated earlier.
808 */
809 rx_status.vendor_radiotap_oui[0] = 0x00;
810 rx_status.vendor_radiotap_oui[1] = 0x00;
811 rx_status.vendor_radiotap_oui[2] = 0x00;
812 rx_status.vendor_radiotap_subns = 127;
813 /*
814 * Radiotap vendor namespaces can (and should) also be
815 * split into fields by using the standard radiotap
816 * presence bitmap mechanism. Use just BIT(0) here for
817 * the presence bitmap.
818 */
819 rx_status.vendor_radiotap_bitmap = BIT(0);
820 /* We have 8 bytes of (dummy) data */
821 rx_status.vendor_radiotap_len = 8;
822 /* For testing, also require it to be aligned */
823 rx_status.vendor_radiotap_align = 8;
824 /* push the data */
825 memcpy(skb_push(nskb, 8), "ABCDEFGH", 8);
826#endif
827
Johannes Bergf1d58c22009-06-17 13:13:00 +0200828 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
829 ieee80211_rx_irqsafe(data2->hw, nskb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300830 }
Johannes Berg0e057d732008-09-12 00:39:22 +0200831 spin_unlock(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300832
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300833 return ack;
834}
835
Thomas Huehn36323f82012-07-23 21:33:42 +0200836static void mac80211_hwsim_tx(struct ieee80211_hw *hw,
837 struct ieee80211_tx_control *control,
838 struct sk_buff *skb)
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300839{
Johannes Berge8261172012-07-27 19:48:26 +0200840 struct mac80211_hwsim_data *data = hw->priv;
841 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
842 struct ieee80211_chanctx_conf *chanctx_conf;
843 struct ieee80211_channel *channel;
Johannes Berg0e057d732008-09-12 00:39:22 +0200844 bool ack;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000845 u32 _portid;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300846
Johannes Berge8261172012-07-27 19:48:26 +0200847 if (WARN_ON(skb->len < 10)) {
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300848 /* Should not happen; just a sanity check for addr1 use */
849 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +0100850 return;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300851 }
852
Johannes Berge8261172012-07-27 19:48:26 +0200853 if (channels == 1) {
854 channel = data->channel;
855 } else if (txi->hw_queue == 4) {
856 channel = data->tmp_chan;
857 } else {
858 chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf);
859 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +0100860 channel = chanctx_conf->def.chan;
Johannes Berge8261172012-07-27 19:48:26 +0200861 else
862 channel = NULL;
863 }
864
865 if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) {
866 dev_kfree_skb(skb);
867 return;
868 }
869
870 if (data->idle && !data->tmp_chan) {
871 wiphy_debug(hw->wiphy, "Trying to TX when idle - reject\n");
872 dev_kfree_skb(skb);
873 return;
874 }
875
876 if (txi->control.vif)
877 hwsim_check_magic(txi->control.vif);
878 if (control->sta)
879 hwsim_check_sta_magic(control->sta);
880
881 txi->rate_driver_data[0] = channel;
882
883 mac80211_hwsim_monitor_rx(hw, skb, channel);
884
Javier Lopez78825132011-06-01 11:26:13 +0200885 /* wmediumd mode check */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000886 _portid = ACCESS_ONCE(wmediumd_portid);
Javier Lopez78825132011-06-01 11:26:13 +0200887
Eric W. Biederman15e47302012-09-07 20:12:54 +0000888 if (_portid)
889 return mac80211_hwsim_tx_frame_nl(hw, skb, _portid);
Javier Lopez78825132011-06-01 11:26:13 +0200890
891 /* NO wmediumd detected, perfect medium simulation */
Johannes Berge8261172012-07-27 19:48:26 +0200892 ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel);
Javier Lopez78825132011-06-01 11:26:13 +0200893
Jouni Malinen6c085222009-11-01 11:31:45 +0200894 if (ack && skb->len >= 16) {
895 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge8261172012-07-27 19:48:26 +0200896 mac80211_hwsim_monitor_ack(channel, hdr->addr2);
Jouni Malinen6c085222009-11-01 11:31:45 +0200897 }
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300898
Johannes Berge6a98542008-10-21 12:40:02 +0200899 ieee80211_tx_info_clear_status(txi);
Javier Cardona2a4ffa42012-05-01 03:01:28 -0700900
901 /* frame was transmitted at most favorable rate at first attempt */
902 txi->control.rates[0].count = 1;
903 txi->control.rates[1].idx = -1;
904
Johannes Berge6a98542008-10-21 12:40:02 +0200905 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
906 txi->flags |= IEEE80211_TX_STAT_ACK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300907 ieee80211_tx_status_irqsafe(hw, skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300908}
909
910
911static int mac80211_hwsim_start(struct ieee80211_hw *hw)
912{
913 struct mac80211_hwsim_data *data = hw->priv;
Joe Perchesc96c31e2010-07-26 14:39:58 -0700914 wiphy_debug(hw->wiphy, "%s\n", __func__);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000915 data->started = true;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300916 return 0;
917}
918
919
920static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
921{
922 struct mac80211_hwsim_data *data = hw->priv;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000923 data->started = false;
Thomas Pedersen01e59e42013-01-02 14:55:17 -0800924 tasklet_hrtimer_cancel(&data->beacon_timer);
Joe Perchesc96c31e2010-07-26 14:39:58 -0700925 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300926}
927
928
929static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100930 struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300931{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700932 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200933 __func__, ieee80211_vif_type_p2p(vif),
934 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100935 hwsim_set_magic(vif);
Johannes Berge8261172012-07-27 19:48:26 +0200936
937 vif->cab_queue = 0;
938 vif->hw_queue[IEEE80211_AC_VO] = 0;
939 vif->hw_queue[IEEE80211_AC_VI] = 1;
940 vif->hw_queue[IEEE80211_AC_BE] = 2;
941 vif->hw_queue[IEEE80211_AC_BK] = 3;
942
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300943 return 0;
944}
945
946
Johannes Bergc35d0272010-08-27 12:35:59 +0200947static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
948 struct ieee80211_vif *vif,
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200949 enum nl80211_iftype newtype,
950 bool newp2p)
Johannes Bergc35d0272010-08-27 12:35:59 +0200951{
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200952 newtype = ieee80211_iftype_p2p(newtype, newp2p);
Johannes Bergc35d0272010-08-27 12:35:59 +0200953 wiphy_debug(hw->wiphy,
954 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200955 __func__, ieee80211_vif_type_p2p(vif),
956 newtype, vif->addr);
Johannes Bergc35d0272010-08-27 12:35:59 +0200957 hwsim_check_magic(vif);
958
959 return 0;
960}
961
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300962static void mac80211_hwsim_remove_interface(
Johannes Berg1ed32e42009-12-23 13:15:45 +0100963 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300964{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700965 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200966 __func__, ieee80211_vif_type_p2p(vif),
967 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100968 hwsim_check_magic(vif);
969 hwsim_clear_magic(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300970}
971
Johannes Berge8261172012-07-27 19:48:26 +0200972static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
973 struct sk_buff *skb,
974 struct ieee80211_channel *chan)
975{
976 u32 _pid = ACCESS_ONCE(wmediumd_portid);
977
978 mac80211_hwsim_monitor_rx(hw, skb, chan);
979
980 if (_pid)
981 return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);
982
983 mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
984 dev_kfree_skb(skb);
985}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300986
987static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
988 struct ieee80211_vif *vif)
989{
990 struct ieee80211_hw *hw = arg;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300991 struct sk_buff *skb;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300992
Johannes Berg8aa21e62008-09-11 02:16:36 +0200993 hwsim_check_magic(vif);
994
Andrey Yurovsky55b39612008-10-31 23:23:35 -0700995 if (vif->type != NL80211_IFTYPE_AP &&
Johannes Berg2b2d7792010-08-17 12:08:07 +0200996 vif->type != NL80211_IFTYPE_MESH_POINT &&
997 vif->type != NL80211_IFTYPE_ADHOC)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300998 return;
999
1000 skb = ieee80211_beacon_get(hw, vif);
1001 if (skb == NULL)
1002 return;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001003
Johannes Berge8261172012-07-27 19:48:26 +02001004 mac80211_hwsim_tx_frame(hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001005 rcu_dereference(vif->chanctx_conf)->def.chan);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001006}
1007
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001008static enum hrtimer_restart
1009mac80211_hwsim_beacon(struct hrtimer *timer)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001010{
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001011 struct mac80211_hwsim_data *data =
1012 container_of(timer, struct mac80211_hwsim_data,
1013 beacon_timer.timer);
1014 struct ieee80211_hw *hw = data->hw;
1015 u64 bcn_int = data->beacon_int;
1016 ktime_t next_bcn;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001017
Johannes Berg4c4c6712009-06-01 14:29:52 +02001018 if (!data->started)
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001019 goto out;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001020
Jouni Malinenf248f102008-06-13 19:44:47 +03001021 ieee80211_iterate_active_interfaces_atomic(
Johannes Berg8b2c9822012-11-06 20:23:30 +01001022 hw, IEEE80211_IFACE_ITER_NORMAL,
1023 mac80211_hwsim_beacon_tx, hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001024
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001025 /* beacon at new TBTT + beacon interval */
1026 if (data->bcn_delta) {
1027 bcn_int -= data->bcn_delta;
1028 data->bcn_delta = 0;
1029 }
1030
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001031 next_bcn = ktime_add(hrtimer_get_expires(timer),
1032 ns_to_ktime(bcn_int * 1000));
1033 tasklet_hrtimer_start(&data->beacon_timer, next_bcn, HRTIMER_MODE_ABS);
1034out:
1035 return HRTIMER_NORESTART;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001036}
1037
Johannes Berg0aaffa92010-05-05 15:28:27 +02001038static const char *hwsim_chantypes[] = {
1039 [NL80211_CHAN_NO_HT] = "noht",
1040 [NL80211_CHAN_HT20] = "ht20",
1041 [NL80211_CHAN_HT40MINUS] = "ht40-",
1042 [NL80211_CHAN_HT40PLUS] = "ht40+",
1043};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001044
Johannes Berge8975582008-10-09 12:18:51 +02001045static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001046{
1047 struct mac80211_hwsim_data *data = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +02001048 struct ieee80211_conf *conf = &hw->conf;
Johannes Berg0f782312009-12-01 13:37:02 +01001049 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
1050 [IEEE80211_SMPS_AUTOMATIC] = "auto",
1051 [IEEE80211_SMPS_OFF] = "off",
1052 [IEEE80211_SMPS_STATIC] = "static",
1053 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
1054 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001055
Joe Perchesc96c31e2010-07-26 14:39:58 -07001056 wiphy_debug(hw->wiphy,
1057 "%s (freq=%d/%s idle=%d ps=%d smps=%s)\n",
1058 __func__,
Johannes Berge8261172012-07-27 19:48:26 +02001059 conf->channel ? conf->channel->center_freq : 0,
Joe Perchesc96c31e2010-07-26 14:39:58 -07001060 hwsim_chantypes[conf->channel_type],
1061 !!(conf->flags & IEEE80211_CONF_IDLE),
1062 !!(conf->flags & IEEE80211_CONF_PS),
1063 smps_modes[conf->smps_mode]);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001064
Jouni Malinen70541832009-11-01 11:30:48 +02001065 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
1066
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001067 data->channel = conf->channel;
Johannes Berge8261172012-07-27 19:48:26 +02001068
1069 WARN_ON(data->channel && channels > 1);
1070
Blaise Gassendbdd7bd12010-10-28 02:01:24 -07001071 data->power_level = conf->power_level;
Johannes Berg4c4c6712009-06-01 14:29:52 +02001072 if (!data->started || !data->beacon_int)
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001073 tasklet_hrtimer_cancel(&data->beacon_timer);
1074 else if (!hrtimer_is_queued(&data->beacon_timer.timer)) {
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001075 u64 tsf = mac80211_hwsim_get_tsf(hw, NULL);
1076 u32 bcn_int = data->beacon_int;
1077 u64 until_tbtt = bcn_int - do_div(tsf, bcn_int);
1078
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001079 tasklet_hrtimer_start(&data->beacon_timer,
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001080 ns_to_ktime(until_tbtt * 1000),
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001081 HRTIMER_MODE_REL);
1082 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001083
1084 return 0;
1085}
1086
1087
1088static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
1089 unsigned int changed_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001090 unsigned int *total_flags,u64 multicast)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001091{
1092 struct mac80211_hwsim_data *data = hw->priv;
1093
Joe Perchesc96c31e2010-07-26 14:39:58 -07001094 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001095
1096 data->rx_filter = 0;
1097 if (*total_flags & FIF_PROMISC_IN_BSS)
1098 data->rx_filter |= FIF_PROMISC_IN_BSS;
1099 if (*total_flags & FIF_ALLMULTI)
1100 data->rx_filter |= FIF_ALLMULTI;
1101
1102 *total_flags = data->rx_filter;
1103}
1104
Johannes Berg8aa21e62008-09-11 02:16:36 +02001105static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
1106 struct ieee80211_vif *vif,
1107 struct ieee80211_bss_conf *info,
1108 u32 changed)
1109{
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001110 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001111 struct mac80211_hwsim_data *data = hw->priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001112
Johannes Berg8aa21e62008-09-11 02:16:36 +02001113 hwsim_check_magic(vif);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001114
Joe Perchesc96c31e2010-07-26 14:39:58 -07001115 wiphy_debug(hw->wiphy, "%s(changed=0x%x)\n", __func__, changed);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001116
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001117 if (changed & BSS_CHANGED_BSSID) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001118 wiphy_debug(hw->wiphy, "%s: BSSID changed: %pM\n",
1119 __func__, info->bssid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001120 memcpy(vp->bssid, info->bssid, ETH_ALEN);
1121 }
1122
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001123 if (changed & BSS_CHANGED_ASSOC) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001124 wiphy_debug(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
1125 info->assoc, info->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001126 vp->assoc = info->assoc;
1127 vp->aid = info->aid;
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001128 }
1129
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001130 if (changed & BSS_CHANGED_BEACON_INT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001131 wiphy_debug(hw->wiphy, " BCNINT: %d\n", info->beacon_int);
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001132 data->beacon_int = info->beacon_int * 1024;
1133 }
1134
1135 if (changed & BSS_CHANGED_BEACON_ENABLED) {
1136 wiphy_debug(hw->wiphy, " BCN EN: %d\n", info->enable_beacon);
1137 if (data->started &&
1138 !hrtimer_is_queued(&data->beacon_timer.timer) &&
1139 info->enable_beacon) {
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001140 u64 tsf, until_tbtt;
1141 u32 bcn_int;
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001142 if (WARN_ON(!data->beacon_int))
1143 data->beacon_int = 1000 * 1024;
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001144 tsf = mac80211_hwsim_get_tsf(hw, vif);
1145 bcn_int = data->beacon_int;
1146 until_tbtt = bcn_int - do_div(tsf, bcn_int);
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001147 tasklet_hrtimer_start(&data->beacon_timer,
Thomas Pedersenc51f8782013-01-02 14:55:18 -08001148 ns_to_ktime(until_tbtt * 1000),
Thomas Pedersen01e59e42013-01-02 14:55:17 -08001149 HRTIMER_MODE_REL);
1150 } else if (!info->enable_beacon)
1151 tasklet_hrtimer_cancel(&data->beacon_timer);
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001152 }
1153
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001154 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001155 wiphy_debug(hw->wiphy, " ERP_CTS_PROT: %d\n",
1156 info->use_cts_prot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001157 }
1158
1159 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001160 wiphy_debug(hw->wiphy, " ERP_PREAMBLE: %d\n",
1161 info->use_short_preamble);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001162 }
1163
1164 if (changed & BSS_CHANGED_ERP_SLOT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001165 wiphy_debug(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001166 }
1167
1168 if (changed & BSS_CHANGED_HT) {
Johannes Berg4bf88532012-11-09 11:39:59 +01001169 wiphy_debug(hw->wiphy, " HT: op_mode=0x%x\n",
1170 info->ht_operation_mode);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001171 }
1172
1173 if (changed & BSS_CHANGED_BASIC_RATES) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001174 wiphy_debug(hw->wiphy, " BASIC_RATES: 0x%llx\n",
1175 (unsigned long long) info->basic_rates);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001176 }
Johannes Bergcbc668a2012-10-24 11:54:31 +02001177
1178 if (changed & BSS_CHANGED_TXPOWER)
1179 wiphy_debug(hw->wiphy, " TX Power: %d dBm\n", info->txpower);
Johannes Berg8aa21e62008-09-11 02:16:36 +02001180}
1181
Johannes Berg1d669cb2010-02-19 19:06:55 +01001182static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
1183 struct ieee80211_vif *vif,
1184 struct ieee80211_sta *sta)
1185{
1186 hwsim_check_magic(vif);
1187 hwsim_set_sta_magic(sta);
1188
1189 return 0;
1190}
1191
1192static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
1193 struct ieee80211_vif *vif,
1194 struct ieee80211_sta *sta)
1195{
1196 hwsim_check_magic(vif);
1197 hwsim_clear_sta_magic(sta);
1198
1199 return 0;
1200}
1201
Johannes Berg8aa21e62008-09-11 02:16:36 +02001202static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
1203 struct ieee80211_vif *vif,
Johannes Berg17741cd2008-09-11 00:02:02 +02001204 enum sta_notify_cmd cmd,
1205 struct ieee80211_sta *sta)
Johannes Berg8aa21e62008-09-11 02:16:36 +02001206{
1207 hwsim_check_magic(vif);
Johannes Berg1d669cb2010-02-19 19:06:55 +01001208
Johannes Berg81c06522008-09-11 02:17:01 +02001209 switch (cmd) {
Christian Lamparter89fad572008-12-09 16:28:06 +01001210 case STA_NOTIFY_SLEEP:
1211 case STA_NOTIFY_AWAKE:
1212 /* TODO: make good use of these flags */
1213 break;
Johannes Berg1d669cb2010-02-19 19:06:55 +01001214 default:
1215 WARN(1, "Invalid sta notify: %d\n", cmd);
1216 break;
Johannes Berg81c06522008-09-11 02:17:01 +02001217 }
1218}
1219
1220static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
1221 struct ieee80211_sta *sta,
1222 bool set)
1223{
1224 hwsim_check_sta_magic(sta);
1225 return 0;
Johannes Berg8aa21e62008-09-11 02:16:36 +02001226}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001227
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001228static int mac80211_hwsim_conf_tx(
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001229 struct ieee80211_hw *hw,
1230 struct ieee80211_vif *vif, u16 queue,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001231 const struct ieee80211_tx_queue_params *params)
1232{
Joe Perchesc96c31e2010-07-26 14:39:58 -07001233 wiphy_debug(hw->wiphy,
1234 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
1235 __func__, queue,
1236 params->txop, params->cw_min,
1237 params->cw_max, params->aifs);
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001238 return 0;
1239}
1240
Holger Schurig12897232010-04-19 10:23:57 +02001241static int mac80211_hwsim_get_survey(
1242 struct ieee80211_hw *hw, int idx,
1243 struct survey_info *survey)
1244{
1245 struct ieee80211_conf *conf = &hw->conf;
1246
Joe Perchesc96c31e2010-07-26 14:39:58 -07001247 wiphy_debug(hw->wiphy, "%s (idx=%d)\n", __func__, idx);
Holger Schurig12897232010-04-19 10:23:57 +02001248
1249 if (idx != 0)
1250 return -ENOENT;
1251
1252 /* Current channel */
1253 survey->channel = conf->channel;
1254
1255 /*
1256 * Magically conjured noise level --- this is only ok for simulated hardware.
1257 *
1258 * A real driver which cannot determine the real channel noise MUST NOT
1259 * report any noise, especially not a magically conjured one :-)
1260 */
1261 survey->filled = SURVEY_INFO_NOISE_DBM;
1262 survey->noise = -92;
1263
1264 return 0;
1265}
1266
Johannes Bergaff89a92009-07-01 21:26:51 +02001267#ifdef CONFIG_NL80211_TESTMODE
1268/*
1269 * This section contains example code for using netlink
1270 * attributes with the testmode command in nl80211.
1271 */
1272
1273/* These enums need to be kept in sync with userspace */
1274enum hwsim_testmode_attr {
1275 __HWSIM_TM_ATTR_INVALID = 0,
1276 HWSIM_TM_ATTR_CMD = 1,
1277 HWSIM_TM_ATTR_PS = 2,
1278
1279 /* keep last */
1280 __HWSIM_TM_ATTR_AFTER_LAST,
1281 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
1282};
1283
1284enum hwsim_testmode_cmd {
1285 HWSIM_TM_CMD_SET_PS = 0,
1286 HWSIM_TM_CMD_GET_PS = 1,
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001287 HWSIM_TM_CMD_STOP_QUEUES = 2,
1288 HWSIM_TM_CMD_WAKE_QUEUES = 3,
Johannes Bergaff89a92009-07-01 21:26:51 +02001289};
1290
1291static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
1292 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
1293 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
1294};
1295
1296static int hwsim_fops_ps_write(void *dat, u64 val);
1297
Johannes Berg5bc38192009-07-07 11:00:55 +02001298static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
1299 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001300{
1301 struct mac80211_hwsim_data *hwsim = hw->priv;
1302 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
1303 struct sk_buff *skb;
1304 int err, ps;
1305
1306 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
1307 hwsim_testmode_policy);
1308 if (err)
1309 return err;
1310
1311 if (!tb[HWSIM_TM_ATTR_CMD])
1312 return -EINVAL;
1313
1314 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
1315 case HWSIM_TM_CMD_SET_PS:
1316 if (!tb[HWSIM_TM_ATTR_PS])
1317 return -EINVAL;
1318 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
1319 return hwsim_fops_ps_write(hwsim, ps);
1320 case HWSIM_TM_CMD_GET_PS:
1321 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
1322 nla_total_size(sizeof(u32)));
1323 if (!skb)
1324 return -ENOMEM;
David S. Miller633c9382012-04-01 21:03:30 -04001325 if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps))
1326 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02001327 return cfg80211_testmode_reply(skb);
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001328 case HWSIM_TM_CMD_STOP_QUEUES:
1329 ieee80211_stop_queues(hw);
1330 return 0;
1331 case HWSIM_TM_CMD_WAKE_QUEUES:
1332 ieee80211_wake_queues(hw);
1333 return 0;
Johannes Bergaff89a92009-07-01 21:26:51 +02001334 default:
1335 return -EOPNOTSUPP;
1336 }
1337
1338 nla_put_failure:
1339 kfree_skb(skb);
1340 return -ENOBUFS;
1341}
1342#endif
1343
Johannes Berg8b73d132009-12-01 14:24:24 +01001344static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
1345 struct ieee80211_vif *vif,
1346 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01001347 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
1348 u8 buf_size)
Johannes Berg8b73d132009-12-01 14:24:24 +01001349{
1350 switch (action) {
1351 case IEEE80211_AMPDU_TX_START:
1352 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1353 break;
Johannes Berg18b559d2012-07-18 13:51:25 +02001354 case IEEE80211_AMPDU_TX_STOP_CONT:
1355 case IEEE80211_AMPDU_TX_STOP_FLUSH:
1356 case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
Johannes Berg8b73d132009-12-01 14:24:24 +01001357 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1358 break;
1359 case IEEE80211_AMPDU_TX_OPERATIONAL:
1360 break;
1361 case IEEE80211_AMPDU_RX_START:
1362 case IEEE80211_AMPDU_RX_STOP:
1363 break;
1364 default:
1365 return -EOPNOTSUPP;
1366 }
1367
1368 return 0;
1369}
1370
Johannes Berga80f7c02009-12-23 13:15:32 +01001371static void mac80211_hwsim_flush(struct ieee80211_hw *hw, bool drop)
1372{
Javier Lopez78825132011-06-01 11:26:13 +02001373 /* Not implemented, queues only on kernel side */
Johannes Berga80f7c02009-12-23 13:15:32 +01001374}
1375
Johannes Berge8261172012-07-27 19:48:26 +02001376static void hw_scan_work(struct work_struct *work)
Johannes Berg69068032010-02-03 10:47:55 +01001377{
Johannes Berge8261172012-07-27 19:48:26 +02001378 struct mac80211_hwsim_data *hwsim =
1379 container_of(work, struct mac80211_hwsim_data, hw_scan.work);
1380 struct cfg80211_scan_request *req = hwsim->hw_scan_request;
1381 int dwell, i;
Johannes Berg69068032010-02-03 10:47:55 +01001382
Johannes Berge8261172012-07-27 19:48:26 +02001383 mutex_lock(&hwsim->mutex);
1384 if (hwsim->scan_chan_idx >= req->n_channels) {
1385 wiphy_debug(hwsim->hw->wiphy, "hw scan complete\n");
1386 ieee80211_scan_completed(hwsim->hw, false);
1387 hwsim->hw_scan_request = NULL;
1388 hwsim->hw_scan_vif = NULL;
1389 hwsim->tmp_chan = NULL;
1390 mutex_unlock(&hwsim->mutex);
1391 return;
1392 }
1393
1394 wiphy_debug(hwsim->hw->wiphy, "hw scan %d MHz\n",
1395 req->channels[hwsim->scan_chan_idx]->center_freq);
1396
1397 hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx];
1398 if (hwsim->tmp_chan->flags & IEEE80211_CHAN_PASSIVE_SCAN ||
1399 !req->n_ssids) {
1400 dwell = 120;
1401 } else {
1402 dwell = 30;
1403 /* send probes */
1404 for (i = 0; i < req->n_ssids; i++) {
1405 struct sk_buff *probe;
1406
1407 probe = ieee80211_probereq_get(hwsim->hw,
1408 hwsim->hw_scan_vif,
1409 req->ssids[i].ssid,
1410 req->ssids[i].ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001411 req->ie_len);
Johannes Berge8261172012-07-27 19:48:26 +02001412 if (!probe)
1413 continue;
Johannes Bergb9a9ada2012-11-29 13:00:10 +01001414
1415 if (req->ie_len)
1416 memcpy(skb_put(probe, req->ie_len), req->ie,
1417 req->ie_len);
1418
Johannes Berge8261172012-07-27 19:48:26 +02001419 local_bh_disable();
1420 mac80211_hwsim_tx_frame(hwsim->hw, probe,
1421 hwsim->tmp_chan);
1422 local_bh_enable();
1423 }
1424 }
1425 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan,
1426 msecs_to_jiffies(dwell));
1427 hwsim->scan_chan_idx++;
1428 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01001429}
1430
1431static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +02001432 struct ieee80211_vif *vif,
Johannes Berg69068032010-02-03 10:47:55 +01001433 struct cfg80211_scan_request *req)
1434{
Johannes Berge8261172012-07-27 19:48:26 +02001435 struct mac80211_hwsim_data *hwsim = hw->priv;
Johannes Berg69068032010-02-03 10:47:55 +01001436
Johannes Berge8261172012-07-27 19:48:26 +02001437 mutex_lock(&hwsim->mutex);
1438 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1439 mutex_unlock(&hwsim->mutex);
1440 return -EBUSY;
1441 }
1442 hwsim->hw_scan_request = req;
1443 hwsim->hw_scan_vif = vif;
1444 hwsim->scan_chan_idx = 0;
1445 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01001446
Johannes Berge8261172012-07-27 19:48:26 +02001447 wiphy_debug(hw->wiphy, "hwsim hw_scan request\n");
Johannes Berg69068032010-02-03 10:47:55 +01001448
Johannes Berge8261172012-07-27 19:48:26 +02001449 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0);
Johannes Berg69068032010-02-03 10:47:55 +01001450
1451 return 0;
1452}
1453
Johannes Berge8261172012-07-27 19:48:26 +02001454static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw,
1455 struct ieee80211_vif *vif)
1456{
1457 struct mac80211_hwsim_data *hwsim = hw->priv;
1458
1459 wiphy_debug(hw->wiphy, "hwsim cancel_hw_scan\n");
1460
1461 cancel_delayed_work_sync(&hwsim->hw_scan);
1462
1463 mutex_lock(&hwsim->mutex);
1464 ieee80211_scan_completed(hwsim->hw, true);
1465 hwsim->tmp_chan = NULL;
1466 hwsim->hw_scan_request = NULL;
1467 hwsim->hw_scan_vif = NULL;
1468 mutex_unlock(&hwsim->mutex);
1469}
1470
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001471static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw)
1472{
1473 struct mac80211_hwsim_data *hwsim = hw->priv;
1474
1475 mutex_lock(&hwsim->mutex);
1476
1477 if (hwsim->scanning) {
1478 printk(KERN_DEBUG "two hwsim sw_scans detected!\n");
1479 goto out;
1480 }
1481
1482 printk(KERN_DEBUG "hwsim sw_scan request, prepping stuff\n");
1483 hwsim->scanning = true;
1484
1485out:
1486 mutex_unlock(&hwsim->mutex);
1487}
1488
1489static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw)
1490{
1491 struct mac80211_hwsim_data *hwsim = hw->priv;
1492
1493 mutex_lock(&hwsim->mutex);
1494
1495 printk(KERN_DEBUG "hwsim sw_scan_complete\n");
Johannes Berg23ff98f2010-05-03 09:21:14 +02001496 hwsim->scanning = false;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001497
1498 mutex_unlock(&hwsim->mutex);
1499}
1500
Johannes Berge8261172012-07-27 19:48:26 +02001501static void hw_roc_done(struct work_struct *work)
1502{
1503 struct mac80211_hwsim_data *hwsim =
1504 container_of(work, struct mac80211_hwsim_data, roc_done.work);
1505
1506 mutex_lock(&hwsim->mutex);
1507 ieee80211_remain_on_channel_expired(hwsim->hw);
1508 hwsim->tmp_chan = NULL;
1509 mutex_unlock(&hwsim->mutex);
1510
1511 wiphy_debug(hwsim->hw->wiphy, "hwsim ROC expired\n");
1512}
1513
1514static int mac80211_hwsim_roc(struct ieee80211_hw *hw,
Eliad Peller49884562012-11-19 17:05:09 +02001515 struct ieee80211_vif *vif,
Johannes Berge8261172012-07-27 19:48:26 +02001516 struct ieee80211_channel *chan,
Johannes Berge8261172012-07-27 19:48:26 +02001517 int duration)
1518{
1519 struct mac80211_hwsim_data *hwsim = hw->priv;
1520
1521 mutex_lock(&hwsim->mutex);
1522 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1523 mutex_unlock(&hwsim->mutex);
1524 return -EBUSY;
1525 }
1526
1527 hwsim->tmp_chan = chan;
1528 mutex_unlock(&hwsim->mutex);
1529
1530 wiphy_debug(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n",
1531 chan->center_freq, duration);
1532
1533 ieee80211_ready_on_channel(hw);
1534
1535 ieee80211_queue_delayed_work(hw, &hwsim->roc_done,
1536 msecs_to_jiffies(duration));
1537 return 0;
1538}
1539
1540static int mac80211_hwsim_croc(struct ieee80211_hw *hw)
1541{
1542 struct mac80211_hwsim_data *hwsim = hw->priv;
1543
1544 cancel_delayed_work_sync(&hwsim->roc_done);
1545
1546 mutex_lock(&hwsim->mutex);
1547 hwsim->tmp_chan = NULL;
1548 mutex_unlock(&hwsim->mutex);
1549
1550 wiphy_debug(hw->wiphy, "hwsim ROC canceled\n");
1551
1552 return 0;
1553}
1554
1555static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw,
1556 struct ieee80211_chanctx_conf *ctx)
1557{
1558 hwsim_set_chanctx_magic(ctx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001559 wiphy_debug(hw->wiphy,
1560 "add channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
1561 ctx->def.chan->center_freq, ctx->def.width,
1562 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02001563 return 0;
1564}
1565
1566static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw,
1567 struct ieee80211_chanctx_conf *ctx)
1568{
Johannes Berg4bf88532012-11-09 11:39:59 +01001569 wiphy_debug(hw->wiphy,
1570 "remove channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
1571 ctx->def.chan->center_freq, ctx->def.width,
1572 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02001573 hwsim_check_chanctx_magic(ctx);
1574 hwsim_clear_chanctx_magic(ctx);
1575}
1576
1577static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw,
1578 struct ieee80211_chanctx_conf *ctx,
1579 u32 changed)
1580{
1581 hwsim_check_chanctx_magic(ctx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001582 wiphy_debug(hw->wiphy,
1583 "change channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n",
1584 ctx->def.chan->center_freq, ctx->def.width,
1585 ctx->def.center_freq1, ctx->def.center_freq2);
Johannes Berge8261172012-07-27 19:48:26 +02001586}
1587
1588static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw,
1589 struct ieee80211_vif *vif,
1590 struct ieee80211_chanctx_conf *ctx)
1591{
1592 hwsim_check_magic(vif);
1593 hwsim_check_chanctx_magic(ctx);
1594
1595 return 0;
1596}
1597
1598static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw,
1599 struct ieee80211_vif *vif,
1600 struct ieee80211_chanctx_conf *ctx)
1601{
1602 hwsim_check_magic(vif);
1603 hwsim_check_chanctx_magic(ctx);
1604}
1605
Johannes Berg69068032010-02-03 10:47:55 +01001606static struct ieee80211_ops mac80211_hwsim_ops =
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001607{
1608 .tx = mac80211_hwsim_tx,
1609 .start = mac80211_hwsim_start,
1610 .stop = mac80211_hwsim_stop,
1611 .add_interface = mac80211_hwsim_add_interface,
Johannes Bergc35d0272010-08-27 12:35:59 +02001612 .change_interface = mac80211_hwsim_change_interface,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001613 .remove_interface = mac80211_hwsim_remove_interface,
1614 .config = mac80211_hwsim_config,
1615 .configure_filter = mac80211_hwsim_configure_filter,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001616 .bss_info_changed = mac80211_hwsim_bss_info_changed,
Johannes Berg1d669cb2010-02-19 19:06:55 +01001617 .sta_add = mac80211_hwsim_sta_add,
1618 .sta_remove = mac80211_hwsim_sta_remove,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001619 .sta_notify = mac80211_hwsim_sta_notify,
Johannes Berg81c06522008-09-11 02:17:01 +02001620 .set_tim = mac80211_hwsim_set_tim,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001621 .conf_tx = mac80211_hwsim_conf_tx,
Holger Schurig12897232010-04-19 10:23:57 +02001622 .get_survey = mac80211_hwsim_get_survey,
Johannes Bergaff89a92009-07-01 21:26:51 +02001623 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd)
Johannes Berg8b73d132009-12-01 14:24:24 +01001624 .ampdu_action = mac80211_hwsim_ampdu_action,
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001625 .sw_scan_start = mac80211_hwsim_sw_scan,
1626 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
Johannes Berga80f7c02009-12-23 13:15:32 +01001627 .flush = mac80211_hwsim_flush,
Javier Cardona12ce8ba2012-03-05 17:20:38 -08001628 .get_tsf = mac80211_hwsim_get_tsf,
1629 .set_tsf = mac80211_hwsim_set_tsf,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001630};
1631
1632
1633static void mac80211_hwsim_free(void)
1634{
Johannes Berg0e057d732008-09-12 00:39:22 +02001635 struct list_head tmplist, *i, *tmp;
Johannes Berge603d9d2009-07-13 13:25:58 +02001636 struct mac80211_hwsim_data *data, *tmpdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001637
Johannes Berg0e057d732008-09-12 00:39:22 +02001638 INIT_LIST_HEAD(&tmplist);
1639
1640 spin_lock_bh(&hwsim_radio_lock);
1641 list_for_each_safe(i, tmp, &hwsim_radios)
1642 list_move(i, &tmplist);
1643 spin_unlock_bh(&hwsim_radio_lock);
1644
Johannes Berge603d9d2009-07-13 13:25:58 +02001645 list_for_each_entry_safe(data, tmpdata, &tmplist, list) {
Daniel Wagner73606d02009-05-18 19:49:25 +02001646 debugfs_remove(data->debugfs_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001647 debugfs_remove(data->debugfs_ps);
1648 debugfs_remove(data->debugfs);
Johannes Berg0e057d732008-09-12 00:39:22 +02001649 ieee80211_unregister_hw(data->hw);
1650 device_unregister(data->dev);
1651 ieee80211_free_hw(data->hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001652 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001653 class_destroy(hwsim_class);
1654}
1655
1656
1657static struct device_driver mac80211_hwsim_driver = {
1658 .name = "mac80211_hwsim"
1659};
1660
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001661static const struct net_device_ops hwsim_netdev_ops = {
1662 .ndo_start_xmit = hwsim_mon_xmit,
1663 .ndo_change_mtu = eth_change_mtu,
1664 .ndo_set_mac_address = eth_mac_addr,
1665 .ndo_validate_addr = eth_validate_addr,
1666};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001667
1668static void hwsim_mon_setup(struct net_device *dev)
1669{
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001670 dev->netdev_ops = &hwsim_netdev_ops;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001671 dev->destructor = free_netdev;
1672 ether_setup(dev);
1673 dev->tx_queue_len = 0;
1674 dev->type = ARPHRD_IEEE80211_RADIOTAP;
1675 memset(dev->dev_addr, 0, ETH_ALEN);
1676 dev->dev_addr[0] = 0x12;
1677}
1678
1679
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001680static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
1681{
1682 struct mac80211_hwsim_data *data = dat;
1683 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001684 struct sk_buff *skb;
1685 struct ieee80211_pspoll *pspoll;
1686
1687 if (!vp->assoc)
1688 return;
1689
Joe Perchesc96c31e2010-07-26 14:39:58 -07001690 wiphy_debug(data->hw->wiphy,
1691 "%s: send PS-Poll to %pM for aid %d\n",
1692 __func__, vp->bssid, vp->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001693
1694 skb = dev_alloc_skb(sizeof(*pspoll));
1695 if (!skb)
1696 return;
1697 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
1698 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
1699 IEEE80211_STYPE_PSPOLL |
1700 IEEE80211_FCTL_PM);
1701 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
1702 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
1703 memcpy(pspoll->ta, mac, ETH_ALEN);
Javier Lopez78825132011-06-01 11:26:13 +02001704
Johannes Berge8261172012-07-27 19:48:26 +02001705 rcu_read_lock();
1706 mac80211_hwsim_tx_frame(data->hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001707 rcu_dereference(vif->chanctx_conf)->def.chan);
Johannes Berge8261172012-07-27 19:48:26 +02001708 rcu_read_unlock();
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001709}
1710
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001711static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
1712 struct ieee80211_vif *vif, int ps)
1713{
1714 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001715 struct sk_buff *skb;
1716 struct ieee80211_hdr *hdr;
1717
1718 if (!vp->assoc)
1719 return;
1720
Joe Perchesc96c31e2010-07-26 14:39:58 -07001721 wiphy_debug(data->hw->wiphy,
1722 "%s: send data::nullfunc to %pM ps=%d\n",
1723 __func__, vp->bssid, ps);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001724
1725 skb = dev_alloc_skb(sizeof(*hdr));
1726 if (!skb)
1727 return;
1728 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
1729 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1730 IEEE80211_STYPE_NULLFUNC |
1731 (ps ? IEEE80211_FCTL_PM : 0));
1732 hdr->duration_id = cpu_to_le16(0);
1733 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
1734 memcpy(hdr->addr2, mac, ETH_ALEN);
1735 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
Javier Lopez78825132011-06-01 11:26:13 +02001736
Johannes Berge8261172012-07-27 19:48:26 +02001737 rcu_read_lock();
1738 mac80211_hwsim_tx_frame(data->hw, skb,
Johannes Berg4bf88532012-11-09 11:39:59 +01001739 rcu_dereference(vif->chanctx_conf)->def.chan);
Johannes Berge8261172012-07-27 19:48:26 +02001740 rcu_read_unlock();
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001741}
1742
1743
1744static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
1745 struct ieee80211_vif *vif)
1746{
1747 struct mac80211_hwsim_data *data = dat;
1748 hwsim_send_nullfunc(data, mac, vif, 1);
1749}
1750
1751
1752static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
1753 struct ieee80211_vif *vif)
1754{
1755 struct mac80211_hwsim_data *data = dat;
1756 hwsim_send_nullfunc(data, mac, vif, 0);
1757}
1758
1759
1760static int hwsim_fops_ps_read(void *dat, u64 *val)
1761{
1762 struct mac80211_hwsim_data *data = dat;
1763 *val = data->ps;
1764 return 0;
1765}
1766
1767static int hwsim_fops_ps_write(void *dat, u64 val)
1768{
1769 struct mac80211_hwsim_data *data = dat;
1770 enum ps_mode old_ps;
1771
1772 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
1773 val != PS_MANUAL_POLL)
1774 return -EINVAL;
1775
1776 old_ps = data->ps;
1777 data->ps = val;
1778
1779 if (val == PS_MANUAL_POLL) {
1780 ieee80211_iterate_active_interfaces(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +01001781 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001782 hwsim_send_ps_poll, data);
1783 data->ps_poll_pending = true;
1784 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
1785 ieee80211_iterate_active_interfaces(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +01001786 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001787 hwsim_send_nullfunc_ps,
1788 data);
1789 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
1790 ieee80211_iterate_active_interfaces(data->hw,
Johannes Berg8b2c9822012-11-06 20:23:30 +01001791 IEEE80211_IFACE_ITER_NORMAL,
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001792 hwsim_send_nullfunc_no_ps,
1793 data);
1794 }
1795
1796 return 0;
1797}
1798
1799DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
1800 "%llu\n");
1801
1802
Daniel Wagner73606d02009-05-18 19:49:25 +02001803static int hwsim_fops_group_read(void *dat, u64 *val)
1804{
1805 struct mac80211_hwsim_data *data = dat;
1806 *val = data->group;
1807 return 0;
1808}
1809
1810static int hwsim_fops_group_write(void *dat, u64 val)
1811{
1812 struct mac80211_hwsim_data *data = dat;
1813 data->group = val;
1814 return 0;
1815}
1816
1817DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
1818 hwsim_fops_group_read, hwsim_fops_group_write,
1819 "%llx\n");
1820
Javier Cardonaf483ad22012-03-31 11:31:30 -07001821static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr(
Javier Lopez78825132011-06-01 11:26:13 +02001822 struct mac_address *addr)
1823{
1824 struct mac80211_hwsim_data *data;
1825 bool _found = false;
1826
1827 spin_lock_bh(&hwsim_radio_lock);
1828 list_for_each_entry(data, &hwsim_radios, list) {
1829 if (memcmp(data->addresses[1].addr, addr,
1830 sizeof(struct mac_address)) == 0) {
1831 _found = true;
1832 break;
1833 }
1834 }
1835 spin_unlock_bh(&hwsim_radio_lock);
1836
1837 if (!_found)
1838 return NULL;
1839
1840 return data;
1841}
1842
1843static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
1844 struct genl_info *info)
1845{
1846
1847 struct ieee80211_hdr *hdr;
1848 struct mac80211_hwsim_data *data2;
1849 struct ieee80211_tx_info *txi;
1850 struct hwsim_tx_rate *tx_attempts;
Johannes Bergd0f718c2012-06-25 14:46:44 +02001851 unsigned long ret_skb_ptr;
Javier Lopez78825132011-06-01 11:26:13 +02001852 struct sk_buff *skb, *tmp;
1853 struct mac_address *src;
1854 unsigned int hwsim_flags;
1855
1856 int i;
1857 bool found = false;
1858
1859 if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] ||
1860 !info->attrs[HWSIM_ATTR_FLAGS] ||
1861 !info->attrs[HWSIM_ATTR_COOKIE] ||
1862 !info->attrs[HWSIM_ATTR_TX_INFO])
1863 goto out;
1864
1865 src = (struct mac_address *)nla_data(
1866 info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]);
1867 hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]);
1868
Johannes Bergd0f718c2012-06-25 14:46:44 +02001869 ret_skb_ptr = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]);
Javier Lopez78825132011-06-01 11:26:13 +02001870
1871 data2 = get_hwsim_data_ref_from_addr(src);
1872
1873 if (data2 == NULL)
1874 goto out;
1875
1876 /* look for the skb matching the cookie passed back from user */
1877 skb_queue_walk_safe(&data2->pending, skb, tmp) {
Johannes Bergd0f718c2012-06-25 14:46:44 +02001878 if ((unsigned long)skb == ret_skb_ptr) {
Javier Lopez78825132011-06-01 11:26:13 +02001879 skb_unlink(skb, &data2->pending);
1880 found = true;
1881 break;
1882 }
1883 }
1884
1885 /* not found */
1886 if (!found)
1887 goto out;
1888
1889 /* Tx info received because the frame was broadcasted on user space,
1890 so we get all the necessary info: tx attempts and skb control buff */
1891
1892 tx_attempts = (struct hwsim_tx_rate *)nla_data(
1893 info->attrs[HWSIM_ATTR_TX_INFO]);
1894
1895 /* now send back TX status */
1896 txi = IEEE80211_SKB_CB(skb);
1897
Javier Lopez78825132011-06-01 11:26:13 +02001898 ieee80211_tx_info_clear_status(txi);
1899
1900 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
1901 txi->status.rates[i].idx = tx_attempts[i].idx;
1902 txi->status.rates[i].count = tx_attempts[i].count;
1903 /*txi->status.rates[i].flags = 0;*/
1904 }
1905
1906 txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1907
1908 if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) &&
1909 (hwsim_flags & HWSIM_TX_STAT_ACK)) {
1910 if (skb->len >= 16) {
1911 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge8261172012-07-27 19:48:26 +02001912 mac80211_hwsim_monitor_ack(txi->rate_driver_data[0],
1913 hdr->addr2);
Javier Lopez78825132011-06-01 11:26:13 +02001914 }
Qasim Javed06cf5c42012-06-05 01:25:44 -05001915 txi->flags |= IEEE80211_TX_STAT_ACK;
Javier Lopez78825132011-06-01 11:26:13 +02001916 }
1917 ieee80211_tx_status_irqsafe(data2->hw, skb);
1918 return 0;
1919out:
1920 return -EINVAL;
1921
1922}
1923
1924static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
1925 struct genl_info *info)
1926{
1927
Johannes Berge8261172012-07-27 19:48:26 +02001928 struct mac80211_hwsim_data *data2;
Javier Lopez78825132011-06-01 11:26:13 +02001929 struct ieee80211_rx_status rx_status;
1930 struct mac_address *dst;
1931 int frame_data_len;
1932 char *frame_data;
1933 struct sk_buff *skb = NULL;
1934
1935 if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] ||
Johannes Berge8261172012-07-27 19:48:26 +02001936 !info->attrs[HWSIM_ATTR_FRAME] ||
1937 !info->attrs[HWSIM_ATTR_RX_RATE] ||
1938 !info->attrs[HWSIM_ATTR_SIGNAL])
Javier Lopez78825132011-06-01 11:26:13 +02001939 goto out;
1940
1941 dst = (struct mac_address *)nla_data(
1942 info->attrs[HWSIM_ATTR_ADDR_RECEIVER]);
1943
1944 frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]);
1945 frame_data = (char *)nla_data(info->attrs[HWSIM_ATTR_FRAME]);
1946
1947 /* Allocate new skb here */
1948 skb = alloc_skb(frame_data_len, GFP_KERNEL);
1949 if (skb == NULL)
1950 goto err;
1951
1952 if (frame_data_len <= IEEE80211_MAX_DATA_LEN) {
1953 /* Copy the data */
1954 memcpy(skb_put(skb, frame_data_len), frame_data,
1955 frame_data_len);
1956 } else
1957 goto err;
1958
1959 data2 = get_hwsim_data_ref_from_addr(dst);
1960
1961 if (data2 == NULL)
1962 goto out;
1963
1964 /* check if radio is configured properly */
1965
Johannes Berge8261172012-07-27 19:48:26 +02001966 if (data2->idle || !data2->started)
Javier Lopez78825132011-06-01 11:26:13 +02001967 goto out;
1968
1969 /*A frame is received from user space*/
1970 memset(&rx_status, 0, sizeof(rx_status));
1971 rx_status.freq = data2->channel->center_freq;
1972 rx_status.band = data2->channel->band;
1973 rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
1974 rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1975
1976 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
1977 ieee80211_rx_irqsafe(data2->hw, skb);
1978
1979 return 0;
1980err:
Masanari Iidac3938622012-02-17 23:04:10 +09001981 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02001982 goto out;
1983out:
1984 dev_kfree_skb(skb);
1985 return -EINVAL;
1986}
1987
1988static int hwsim_register_received_nl(struct sk_buff *skb_2,
1989 struct genl_info *info)
1990{
1991 if (info == NULL)
1992 goto out;
1993
Eric W. Biederman15e47302012-09-07 20:12:54 +00001994 wmediumd_portid = info->snd_portid;
Javier Lopez78825132011-06-01 11:26:13 +02001995
1996 printk(KERN_DEBUG "mac80211_hwsim: received a REGISTER, "
Eric W. Biederman15e47302012-09-07 20:12:54 +00001997 "switching to wmediumd mode with pid %d\n", info->snd_portid);
Javier Lopez78825132011-06-01 11:26:13 +02001998
1999 return 0;
2000out:
Masanari Iidac3938622012-02-17 23:04:10 +09002001 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02002002 return -EINVAL;
2003}
2004
2005/* Generic Netlink operations array */
2006static struct genl_ops hwsim_ops[] = {
2007 {
2008 .cmd = HWSIM_CMD_REGISTER,
2009 .policy = hwsim_genl_policy,
2010 .doit = hwsim_register_received_nl,
2011 .flags = GENL_ADMIN_PERM,
2012 },
2013 {
2014 .cmd = HWSIM_CMD_FRAME,
2015 .policy = hwsim_genl_policy,
2016 .doit = hwsim_cloned_frame_received_nl,
2017 },
2018 {
2019 .cmd = HWSIM_CMD_TX_INFO_FRAME,
2020 .policy = hwsim_genl_policy,
2021 .doit = hwsim_tx_info_frame_received_nl,
2022 },
2023};
2024
2025static int mac80211_hwsim_netlink_notify(struct notifier_block *nb,
2026 unsigned long state,
2027 void *_notify)
2028{
2029 struct netlink_notify *notify = _notify;
2030
2031 if (state != NETLINK_URELEASE)
2032 return NOTIFY_DONE;
2033
Eric W. Biederman15e47302012-09-07 20:12:54 +00002034 if (notify->portid == wmediumd_portid) {
Javier Lopez78825132011-06-01 11:26:13 +02002035 printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink"
2036 " socket, switching to perfect channel medium\n");
Eric W. Biederman15e47302012-09-07 20:12:54 +00002037 wmediumd_portid = 0;
Javier Lopez78825132011-06-01 11:26:13 +02002038 }
2039 return NOTIFY_DONE;
2040
2041}
2042
2043static struct notifier_block hwsim_netlink_notifier = {
2044 .notifier_call = mac80211_hwsim_netlink_notify,
2045};
2046
2047static int hwsim_init_netlink(void)
2048{
2049 int rc;
Johannes Berge8261172012-07-27 19:48:26 +02002050
2051 /* userspace test API hasn't been adjusted for multi-channel */
2052 if (channels > 1)
2053 return 0;
2054
Javier Lopez78825132011-06-01 11:26:13 +02002055 printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
2056
Javier Lopez78825132011-06-01 11:26:13 +02002057 rc = genl_register_family_with_ops(&hwsim_genl_family,
2058 hwsim_ops, ARRAY_SIZE(hwsim_ops));
2059 if (rc)
2060 goto failure;
2061
2062 rc = netlink_register_notifier(&hwsim_netlink_notifier);
2063 if (rc)
2064 goto failure;
2065
2066 return 0;
2067
2068failure:
Masanari Iidac3938622012-02-17 23:04:10 +09002069 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02002070 return -EINVAL;
2071}
2072
2073static void hwsim_exit_netlink(void)
2074{
2075 int ret;
2076
Johannes Berge8261172012-07-27 19:48:26 +02002077 /* userspace test API hasn't been adjusted for multi-channel */
2078 if (channels > 1)
2079 return;
2080
Javier Lopez78825132011-06-01 11:26:13 +02002081 printk(KERN_INFO "mac80211_hwsim: closing netlink\n");
2082 /* unregister the notifier */
2083 netlink_unregister_notifier(&hwsim_netlink_notifier);
2084 /* unregister the family */
2085 ret = genl_unregister_family(&hwsim_genl_family);
2086 if (ret)
2087 printk(KERN_DEBUG "mac80211_hwsim: "
2088 "unregister family %i\n", ret);
2089}
2090
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002091static const struct ieee80211_iface_limit hwsim_if_limits[] = {
2092 { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
2093 { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) |
2094 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2095#ifdef CONFIG_MAC80211_MESH
2096 BIT(NL80211_IFTYPE_MESH_POINT) |
2097#endif
2098 BIT(NL80211_IFTYPE_AP) |
2099 BIT(NL80211_IFTYPE_P2P_GO) },
Johannes Berg8b3d1cc2012-06-19 17:29:29 +02002100 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) },
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002101};
2102
Johannes Berge8261172012-07-27 19:48:26 +02002103static struct ieee80211_iface_combination hwsim_if_comb = {
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002104 .limits = hwsim_if_limits,
2105 .n_limits = ARRAY_SIZE(hwsim_if_limits),
2106 .max_interfaces = 2048,
2107 .num_different_channels = 1,
2108};
2109
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002110static int __init init_mac80211_hwsim(void)
2111{
2112 int i, err = 0;
2113 u8 addr[ETH_ALEN];
2114 struct mac80211_hwsim_data *data;
2115 struct ieee80211_hw *hw;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002116 enum ieee80211_band band;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002117
Johannes Berg0e057d732008-09-12 00:39:22 +02002118 if (radios < 1 || radios > 100)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002119 return -EINVAL;
2120
Johannes Berge8261172012-07-27 19:48:26 +02002121 if (channels < 1)
2122 return -EINVAL;
2123
2124 if (channels > 1) {
2125 hwsim_if_comb.num_different_channels = channels;
Johannes Berg69068032010-02-03 10:47:55 +01002126 mac80211_hwsim_ops.hw_scan = mac80211_hwsim_hw_scan;
Johannes Berge8261172012-07-27 19:48:26 +02002127 mac80211_hwsim_ops.cancel_hw_scan =
2128 mac80211_hwsim_cancel_hw_scan;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002129 mac80211_hwsim_ops.sw_scan_start = NULL;
2130 mac80211_hwsim_ops.sw_scan_complete = NULL;
Johannes Berge8261172012-07-27 19:48:26 +02002131 mac80211_hwsim_ops.remain_on_channel =
2132 mac80211_hwsim_roc;
2133 mac80211_hwsim_ops.cancel_remain_on_channel =
2134 mac80211_hwsim_croc;
2135 mac80211_hwsim_ops.add_chanctx =
2136 mac80211_hwsim_add_chanctx;
2137 mac80211_hwsim_ops.remove_chanctx =
2138 mac80211_hwsim_remove_chanctx;
2139 mac80211_hwsim_ops.change_chanctx =
2140 mac80211_hwsim_change_chanctx;
2141 mac80211_hwsim_ops.assign_vif_chanctx =
2142 mac80211_hwsim_assign_vif_chanctx;
2143 mac80211_hwsim_ops.unassign_vif_chanctx =
2144 mac80211_hwsim_unassign_vif_chanctx;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002145 }
Johannes Berg69068032010-02-03 10:47:55 +01002146
Johannes Berg0e057d732008-09-12 00:39:22 +02002147 spin_lock_init(&hwsim_radio_lock);
2148 INIT_LIST_HEAD(&hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002149
2150 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
Johannes Berg0e057d732008-09-12 00:39:22 +02002151 if (IS_ERR(hwsim_class))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002152 return PTR_ERR(hwsim_class);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002153
2154 memset(addr, 0, ETH_ALEN);
2155 addr[0] = 0x02;
2156
Johannes Berg0e057d732008-09-12 00:39:22 +02002157 for (i = 0; i < radios; i++) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002158 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
2159 i);
2160 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
Johannes Berg0e057d732008-09-12 00:39:22 +02002161 if (!hw) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002162 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
2163 "failed\n");
2164 err = -ENOMEM;
2165 goto failed;
2166 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002167 data = hw->priv;
Johannes Berg0e057d732008-09-12 00:39:22 +02002168 data->hw = hw;
2169
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07002170 data->dev = device_create(hwsim_class, NULL, 0, hw,
2171 "hwsim%d", i);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002172 if (IS_ERR(data->dev)) {
Stephen Rothwelle800f172008-06-16 15:35:10 +10002173 printk(KERN_DEBUG
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07002174 "mac80211_hwsim: device_create "
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002175 "failed (%ld)\n", PTR_ERR(data->dev));
2176 err = -ENOMEM;
Ian Schram3a33cc12008-07-21 13:19:35 -07002177 goto failed_drvdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002178 }
2179 data->dev->driver = &mac80211_hwsim_driver;
Javier Lopez78825132011-06-01 11:26:13 +02002180 skb_queue_head_init(&data->pending);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002181
2182 SET_IEEE80211_DEV(hw, data->dev);
2183 addr[3] = i >> 8;
2184 addr[4] = i;
Johannes Bergef15aac2010-01-20 12:02:33 +01002185 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
2186 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
2187 data->addresses[1].addr[0] |= 0x40;
2188 hw->wiphy->n_addresses = 2;
2189 hw->wiphy->addresses = data->addresses;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002190
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002191 hw->wiphy->iface_combinations = &hwsim_if_comb;
2192 hw->wiphy->n_iface_combinations = 1;
2193
Johannes Berge8261172012-07-27 19:48:26 +02002194 if (channels > 1) {
Johannes Berg8223d2f2010-06-18 12:31:56 +02002195 hw->wiphy->max_scan_ssids = 255;
2196 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
Johannes Berge8261172012-07-27 19:48:26 +02002197 hw->wiphy->max_remain_on_channel_duration = 1000;
Johannes Berg8223d2f2010-06-18 12:31:56 +02002198 }
2199
Johannes Berge8261172012-07-27 19:48:26 +02002200 INIT_DELAYED_WORK(&data->roc_done, hw_roc_done);
2201 INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work);
2202
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002203 hw->channel_change_time = 1;
Johannes Berge8261172012-07-27 19:48:26 +02002204 hw->queues = 5;
2205 hw->offchannel_tx_hw_queue = 4;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07002206 hw->wiphy->interface_modes =
2207 BIT(NL80211_IFTYPE_STATION) |
Andrey Yurovsky55b39612008-10-31 23:23:35 -07002208 BIT(NL80211_IFTYPE_AP) |
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002209 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2210 BIT(NL80211_IFTYPE_P2P_GO) |
Johannes Berg2b2d7792010-08-17 12:08:07 +02002211 BIT(NL80211_IFTYPE_ADHOC) |
Johannes Berg8b3d1cc2012-06-19 17:29:29 +02002212 BIT(NL80211_IFTYPE_MESH_POINT) |
2213 BIT(NL80211_IFTYPE_P2P_DEVICE);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002214
Johannes Berg4b14c962009-07-10 16:56:59 +02002215 hw->flags = IEEE80211_HW_MFP_CAPABLE |
Johannes Berg0f782312009-12-01 13:37:02 +01002216 IEEE80211_HW_SIGNAL_DBM |
2217 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
Johannes Berga75b4362010-05-01 18:53:51 +02002218 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02002219 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berge8261172012-07-27 19:48:26 +02002220 IEEE80211_HW_WANT_MONITOR_VIF |
2221 IEEE80211_HW_QUEUE_CONTROL;
Jouni Malinenfa775332009-01-08 13:32:14 +02002222
Johannes Berg81ddbb52012-03-26 18:47:18 +02002223 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
2224 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
Jouni Malinen43bc3e82011-10-23 22:45:27 +03002225
Johannes Berg8aa21e62008-09-11 02:16:36 +02002226 /* ask mac80211 to reserve space for magic */
2227 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
Johannes Berg81c06522008-09-11 02:17:01 +02002228 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
Johannes Berg8aa21e62008-09-11 02:16:36 +02002229
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002230 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
2231 sizeof(hwsim_channels_2ghz));
2232 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
2233 sizeof(hwsim_channels_5ghz));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002234 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002235
2236 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
2237 struct ieee80211_supported_band *sband = &data->bands[band];
2238 switch (band) {
2239 case IEEE80211_BAND_2GHZ:
2240 sband->channels = data->channels_2ghz;
2241 sband->n_channels =
2242 ARRAY_SIZE(hwsim_channels_2ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01002243 sband->bitrates = data->rates;
2244 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002245 break;
2246 case IEEE80211_BAND_5GHZ:
2247 sband->channels = data->channels_5ghz;
2248 sband->n_channels =
2249 ARRAY_SIZE(hwsim_channels_5ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01002250 sband->bitrates = data->rates + 4;
2251 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002252 break;
2253 default:
Johannes Berg1b083ea2012-07-03 13:14:49 +02002254 continue;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002255 }
2256
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002257 sband->ht_cap.ht_supported = true;
2258 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
2259 IEEE80211_HT_CAP_GRN_FLD |
2260 IEEE80211_HT_CAP_SGI_40 |
2261 IEEE80211_HT_CAP_DSSSCCK40;
2262 sband->ht_cap.ampdu_factor = 0x3;
2263 sband->ht_cap.ampdu_density = 0x6;
2264 memset(&sband->ht_cap.mcs, 0,
2265 sizeof(sband->ht_cap.mcs));
2266 sband->ht_cap.mcs.rx_mask[0] = 0xff;
2267 sband->ht_cap.mcs.rx_mask[1] = 0xff;
2268 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2269
2270 hw->wiphy->bands[band] = sband;
Johannes Bergb2960052012-11-12 11:51:50 +01002271
2272 if (channels == 1)
2273 continue;
2274
2275 sband->vht_cap.vht_supported = true;
2276 sband->vht_cap.cap =
2277 IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
2278 IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ |
2279 IEEE80211_VHT_CAP_RXLDPC |
2280 IEEE80211_VHT_CAP_SHORT_GI_80 |
2281 IEEE80211_VHT_CAP_SHORT_GI_160 |
2282 IEEE80211_VHT_CAP_TXSTBC |
2283 IEEE80211_VHT_CAP_RXSTBC_1 |
2284 IEEE80211_VHT_CAP_RXSTBC_2 |
2285 IEEE80211_VHT_CAP_RXSTBC_3 |
2286 IEEE80211_VHT_CAP_RXSTBC_4 |
Johannes Berg01331042012-12-05 16:45:31 +01002287 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK;
Johannes Bergb2960052012-11-12 11:51:50 +01002288 sband->vht_cap.vht_mcs.rx_mcs_map =
2289 cpu_to_le16(IEEE80211_VHT_MCS_SUPPORT_0_8 << 0 |
2290 IEEE80211_VHT_MCS_SUPPORT_0_8 << 2 |
2291 IEEE80211_VHT_MCS_SUPPORT_0_9 << 4 |
2292 IEEE80211_VHT_MCS_SUPPORT_0_8 << 6 |
2293 IEEE80211_VHT_MCS_SUPPORT_0_8 << 8 |
2294 IEEE80211_VHT_MCS_SUPPORT_0_9 << 10 |
2295 IEEE80211_VHT_MCS_SUPPORT_0_9 << 12 |
2296 IEEE80211_VHT_MCS_SUPPORT_0_8 << 14);
2297 sband->vht_cap.vht_mcs.tx_mcs_map =
2298 sband->vht_cap.vht_mcs.rx_mcs_map;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002299 }
Daniel Wagner73606d02009-05-18 19:49:25 +02002300 /* By default all radios are belonging to the first group */
2301 data->group = 1;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002302 mutex_init(&data->mutex);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002303
Javier Lopez78825132011-06-01 11:26:13 +02002304 /* Enable frame retransmissions for lossy channels */
2305 hw->max_rates = 4;
2306 hw->max_rate_tries = 11;
2307
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002308 /* Work to be done prior to ieee80211_register_hw() */
2309 switch (regtest) {
2310 case HWSIM_REGTEST_DISABLED:
2311 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2312 case HWSIM_REGTEST_DRIVER_REG_ALL:
2313 case HWSIM_REGTEST_DIFF_COUNTRY:
2314 /*
2315 * Nothing to be done for driver regulatory domain
2316 * hints prior to ieee80211_register_hw()
2317 */
2318 break;
2319 case HWSIM_REGTEST_WORLD_ROAM:
2320 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002321 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002322 wiphy_apply_custom_regulatory(hw->wiphy,
2323 &hwsim_world_regdom_custom_01);
2324 }
2325 break;
2326 case HWSIM_REGTEST_CUSTOM_WORLD:
Johannes Berg5be83de2009-11-19 00:56:28 +01002327 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002328 wiphy_apply_custom_regulatory(hw->wiphy,
2329 &hwsim_world_regdom_custom_01);
2330 break;
2331 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2332 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002333 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002334 wiphy_apply_custom_regulatory(hw->wiphy,
2335 &hwsim_world_regdom_custom_01);
2336 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002337 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002338 wiphy_apply_custom_regulatory(hw->wiphy,
2339 &hwsim_world_regdom_custom_02);
2340 }
2341 break;
2342 case HWSIM_REGTEST_STRICT_ALL:
Johannes Berg5be83de2009-11-19 00:56:28 +01002343 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002344 break;
2345 case HWSIM_REGTEST_STRICT_FOLLOW:
2346 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2347 if (i == 0)
Johannes Berg5be83de2009-11-19 00:56:28 +01002348 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002349 break;
2350 case HWSIM_REGTEST_ALL:
2351 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002352 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002353 wiphy_apply_custom_regulatory(hw->wiphy,
2354 &hwsim_world_regdom_custom_01);
2355 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002356 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002357 wiphy_apply_custom_regulatory(hw->wiphy,
2358 &hwsim_world_regdom_custom_02);
2359 } else if (i == 4)
Johannes Berg5be83de2009-11-19 00:56:28 +01002360 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002361 break;
2362 default:
2363 break;
2364 }
2365
Luis R. Rodriguez98dfaa52009-03-20 23:46:11 -04002366 /* give the regulatory workqueue a chance to run */
2367 if (regtest)
2368 schedule_timeout_interruptible(1);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002369 err = ieee80211_register_hw(hw);
2370 if (err < 0) {
2371 printk(KERN_DEBUG "mac80211_hwsim: "
2372 "ieee80211_register_hw failed (%d)\n", err);
Ian Schram3a33cc12008-07-21 13:19:35 -07002373 goto failed_hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002374 }
2375
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002376 /* Work to be done after to ieee80211_register_hw() */
2377 switch (regtest) {
2378 case HWSIM_REGTEST_WORLD_ROAM:
2379 case HWSIM_REGTEST_DISABLED:
2380 break;
2381 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2382 if (!i)
2383 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2384 break;
2385 case HWSIM_REGTEST_DRIVER_REG_ALL:
2386 case HWSIM_REGTEST_STRICT_ALL:
2387 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2388 break;
2389 case HWSIM_REGTEST_DIFF_COUNTRY:
2390 if (i < ARRAY_SIZE(hwsim_alpha2s))
2391 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
2392 break;
2393 case HWSIM_REGTEST_CUSTOM_WORLD:
2394 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2395 /*
2396 * Nothing to be done for custom world regulatory
2397 * domains after to ieee80211_register_hw
2398 */
2399 break;
2400 case HWSIM_REGTEST_STRICT_FOLLOW:
2401 if (i == 0)
2402 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2403 break;
2404 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2405 if (i == 0)
2406 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2407 else if (i == 1)
2408 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2409 break;
2410 case HWSIM_REGTEST_ALL:
2411 if (i == 2)
2412 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2413 else if (i == 3)
2414 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2415 else if (i == 4)
2416 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
2417 break;
2418 default:
2419 break;
2420 }
2421
Joe Perchesc96c31e2010-07-26 14:39:58 -07002422 wiphy_debug(hw->wiphy, "hwaddr %pm registered\n",
2423 hw->wiphy->perm_addr);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002424
Jouni Malinenfc6971d2008-10-30 19:59:05 +02002425 data->debugfs = debugfs_create_dir("hwsim",
2426 hw->wiphy->debugfsdir);
2427 data->debugfs_ps = debugfs_create_file("ps", 0666,
2428 data->debugfs, data,
2429 &hwsim_fops_ps);
Daniel Wagner73606d02009-05-18 19:49:25 +02002430 data->debugfs_group = debugfs_create_file("group", 0666,
2431 data->debugfs, data,
2432 &hwsim_fops_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02002433
Thomas Pedersen01e59e42013-01-02 14:55:17 -08002434 tasklet_hrtimer_init(&data->beacon_timer,
2435 mac80211_hwsim_beacon,
2436 CLOCK_REALTIME, HRTIMER_MODE_ABS);
Johannes Berg0e057d732008-09-12 00:39:22 +02002437
2438 list_add_tail(&data->list, &hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002439 }
2440
2441 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
2442 if (hwsim_mon == NULL)
2443 goto failed;
2444
Javier Lopez78825132011-06-01 11:26:13 +02002445 rtnl_lock();
2446
2447 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
Ian Schram3a33cc12008-07-21 13:19:35 -07002448 if (err < 0)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002449 goto failed_mon;
Ian Schram3a33cc12008-07-21 13:19:35 -07002450
Javier Lopez78825132011-06-01 11:26:13 +02002451
2452 err = register_netdevice(hwsim_mon);
2453 if (err < 0)
2454 goto failed_mon;
2455
2456 rtnl_unlock();
2457
2458 err = hwsim_init_netlink();
2459 if (err < 0)
2460 goto failed_nl;
2461
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002462 return 0;
2463
Javier Lopez78825132011-06-01 11:26:13 +02002464failed_nl:
2465 printk(KERN_DEBUG "mac_80211_hwsim: failed initializing netlink\n");
2466 return err;
2467
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002468failed_mon:
2469 rtnl_unlock();
2470 free_netdev(hwsim_mon);
Ian Schram3a33cc12008-07-21 13:19:35 -07002471 mac80211_hwsim_free();
2472 return err;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002473
Ian Schram3a33cc12008-07-21 13:19:35 -07002474failed_hw:
2475 device_unregister(data->dev);
2476failed_drvdata:
2477 ieee80211_free_hw(hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002478failed:
2479 mac80211_hwsim_free();
2480 return err;
2481}
Johannes Bergf8fffc72012-07-27 15:16:02 +02002482module_init(init_mac80211_hwsim);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002483
2484static void __exit exit_mac80211_hwsim(void)
2485{
Johannes Berg0e057d732008-09-12 00:39:22 +02002486 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002487
Javier Lopez78825132011-06-01 11:26:13 +02002488 hwsim_exit_netlink();
2489
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002490 mac80211_hwsim_free();
Johannes Berg5d416352009-07-13 13:04:30 +02002491 unregister_netdev(hwsim_mon);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002492}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002493module_exit(exit_mac80211_hwsim);