blob: 9b4f76718db72f1b2a5d31e5cf625351506534bf [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
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040051/**
52 * enum hwsim_regtest - the type of regulatory tests we offer
53 *
54 * These are the different values you can use for the regtest
55 * module parameter. This is useful to help test world roaming
56 * and the driver regulatory_hint() call and combinations of these.
57 * If you want to do specific alpha2 regulatory domain tests simply
58 * use the userspace regulatory request as that will be respected as
59 * well without the need of this module parameter. This is designed
60 * only for testing the driver regulatory request, world roaming
61 * and all possible combinations.
62 *
63 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
64 * this is the default value.
65 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
66 * hint, only one driver regulatory hint will be sent as such the
67 * secondary radios are expected to follow.
68 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
69 * request with all radios reporting the same regulatory domain.
70 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
71 * different regulatory domains requests. Expected behaviour is for
72 * an intersection to occur but each device will still use their
73 * respective regulatory requested domains. Subsequent radios will
74 * use the resulting intersection.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030075 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040076 * this by using a custom beacon-capable regulatory domain for the first
77 * radio. All other device world roam.
78 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
79 * domain requests. All radios will adhere to this custom world regulatory
80 * domain.
81 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
82 * domain requests. The first radio will adhere to the first custom world
83 * regulatory domain, the second one to the second custom world regulatory
84 * domain. All other devices will world roam.
85 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
86 * settings, only the first radio will send a regulatory domain request
87 * and use strict settings. The rest of the radios are expected to follow.
88 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
89 * settings. All radios will adhere to this.
90 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
91 * domain settings, combined with secondary driver regulatory domain
92 * settings. The first radio will get a strict regulatory domain setting
93 * using the first driver regulatory request and the second radio will use
94 * non-strict settings using the second driver regulatory request. All
95 * other devices should follow the intersection created between the
96 * first two.
97 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
98 * at least 6 radios for a complete test. We will test in this order:
99 * 1 - driver custom world regulatory domain
100 * 2 - second custom world regulatory domain
101 * 3 - first driver regulatory domain request
102 * 4 - second driver regulatory domain request
103 * 5 - strict regulatory domain settings using the third driver regulatory
104 * domain request
105 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
106 * regulatory requests.
107 */
108enum hwsim_regtest {
109 HWSIM_REGTEST_DISABLED = 0,
110 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
111 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
112 HWSIM_REGTEST_DIFF_COUNTRY = 3,
113 HWSIM_REGTEST_WORLD_ROAM = 4,
114 HWSIM_REGTEST_CUSTOM_WORLD = 5,
115 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
116 HWSIM_REGTEST_STRICT_FOLLOW = 7,
117 HWSIM_REGTEST_STRICT_ALL = 8,
118 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
119 HWSIM_REGTEST_ALL = 10,
120};
121
122/* Set to one of the HWSIM_REGTEST_* values above */
123static int regtest = HWSIM_REGTEST_DISABLED;
124module_param(regtest, int, 0444);
125MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
126
127static const char *hwsim_alpha2s[] = {
128 "FI",
129 "AL",
130 "US",
131 "DE",
132 "JP",
133 "AL",
134};
135
136static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
137 .n_reg_rules = 4,
138 .alpha2 = "99",
139 .reg_rules = {
140 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
141 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
142 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
143 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
144 }
145};
146
147static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
148 .n_reg_rules = 2,
149 .alpha2 = "99",
150 .reg_rules = {
151 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
152 REG_RULE(5725-10, 5850+10, 40, 0, 30,
153 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
154 }
155};
156
Johannes Berg8aa21e62008-09-11 02:16:36 +0200157struct hwsim_vif_priv {
158 u32 magic;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200159 u8 bssid[ETH_ALEN];
160 bool assoc;
161 u16 aid;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200162};
163
164#define HWSIM_VIF_MAGIC 0x69537748
165
166static inline void hwsim_check_magic(struct ieee80211_vif *vif)
167{
168 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berge8261172012-07-27 19:48:26 +0200169 WARN(vp->magic != HWSIM_VIF_MAGIC,
170 "Invalid VIF (%p) magic %#x, %pM, %d/%d\n",
171 vif, vp->magic, vif->addr, vif->type, vif->p2p);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200172}
173
174static inline void hwsim_set_magic(struct ieee80211_vif *vif)
175{
176 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
177 vp->magic = HWSIM_VIF_MAGIC;
178}
179
180static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
181{
182 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
183 vp->magic = 0;
184}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300185
Johannes Berg81c06522008-09-11 02:17:01 +0200186struct hwsim_sta_priv {
187 u32 magic;
188};
189
Johannes Berge8261172012-07-27 19:48:26 +0200190#define HWSIM_STA_MAGIC 0x6d537749
Johannes Berg81c06522008-09-11 02:17:01 +0200191
192static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
193{
194 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200195 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
Johannes Berg81c06522008-09-11 02:17:01 +0200196}
197
198static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
199{
200 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200201 sp->magic = HWSIM_STA_MAGIC;
Johannes Berg81c06522008-09-11 02:17:01 +0200202}
203
204static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
205{
206 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
207 sp->magic = 0;
208}
209
Johannes Berge8261172012-07-27 19:48:26 +0200210struct hwsim_chanctx_priv {
211 u32 magic;
212};
213
214#define HWSIM_CHANCTX_MAGIC 0x6d53774a
215
216static inline void hwsim_check_chanctx_magic(struct ieee80211_chanctx_conf *c)
217{
218 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
219 WARN_ON(cp->magic != HWSIM_CHANCTX_MAGIC);
220}
221
222static inline void hwsim_set_chanctx_magic(struct ieee80211_chanctx_conf *c)
223{
224 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
225 cp->magic = HWSIM_CHANCTX_MAGIC;
226}
227
228static inline void hwsim_clear_chanctx_magic(struct ieee80211_chanctx_conf *c)
229{
230 struct hwsim_chanctx_priv *cp = (void *)c->drv_priv;
231 cp->magic = 0;
232}
233
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300234static struct class *hwsim_class;
235
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300236static struct net_device *hwsim_mon; /* global monitor netdev */
237
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800238#define CHAN2G(_freq) { \
239 .band = IEEE80211_BAND_2GHZ, \
240 .center_freq = (_freq), \
241 .hw_value = (_freq), \
242 .max_power = 20, \
243}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300244
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800245#define CHAN5G(_freq) { \
246 .band = IEEE80211_BAND_5GHZ, \
247 .center_freq = (_freq), \
248 .hw_value = (_freq), \
249 .max_power = 20, \
250}
251
252static const struct ieee80211_channel hwsim_channels_2ghz[] = {
253 CHAN2G(2412), /* Channel 1 */
254 CHAN2G(2417), /* Channel 2 */
255 CHAN2G(2422), /* Channel 3 */
256 CHAN2G(2427), /* Channel 4 */
257 CHAN2G(2432), /* Channel 5 */
258 CHAN2G(2437), /* Channel 6 */
259 CHAN2G(2442), /* Channel 7 */
260 CHAN2G(2447), /* Channel 8 */
261 CHAN2G(2452), /* Channel 9 */
262 CHAN2G(2457), /* Channel 10 */
263 CHAN2G(2462), /* Channel 11 */
264 CHAN2G(2467), /* Channel 12 */
265 CHAN2G(2472), /* Channel 13 */
266 CHAN2G(2484), /* Channel 14 */
267};
268
269static const struct ieee80211_channel hwsim_channels_5ghz[] = {
270 CHAN5G(5180), /* Channel 36 */
271 CHAN5G(5200), /* Channel 40 */
272 CHAN5G(5220), /* Channel 44 */
273 CHAN5G(5240), /* Channel 48 */
274
275 CHAN5G(5260), /* Channel 52 */
276 CHAN5G(5280), /* Channel 56 */
277 CHAN5G(5300), /* Channel 60 */
278 CHAN5G(5320), /* Channel 64 */
279
280 CHAN5G(5500), /* Channel 100 */
281 CHAN5G(5520), /* Channel 104 */
282 CHAN5G(5540), /* Channel 108 */
283 CHAN5G(5560), /* Channel 112 */
284 CHAN5G(5580), /* Channel 116 */
285 CHAN5G(5600), /* Channel 120 */
286 CHAN5G(5620), /* Channel 124 */
287 CHAN5G(5640), /* Channel 128 */
288 CHAN5G(5660), /* Channel 132 */
289 CHAN5G(5680), /* Channel 136 */
290 CHAN5G(5700), /* Channel 140 */
291
292 CHAN5G(5745), /* Channel 149 */
293 CHAN5G(5765), /* Channel 153 */
294 CHAN5G(5785), /* Channel 157 */
295 CHAN5G(5805), /* Channel 161 */
296 CHAN5G(5825), /* Channel 165 */
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300297};
298
299static const struct ieee80211_rate hwsim_rates[] = {
300 { .bitrate = 10 },
301 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
302 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
303 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
304 { .bitrate = 60 },
305 { .bitrate = 90 },
306 { .bitrate = 120 },
307 { .bitrate = 180 },
308 { .bitrate = 240 },
309 { .bitrate = 360 },
310 { .bitrate = 480 },
311 { .bitrate = 540 }
312};
313
Johannes Berg0e057d732008-09-12 00:39:22 +0200314static spinlock_t hwsim_radio_lock;
315static struct list_head hwsim_radios;
316
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300317struct mac80211_hwsim_data {
Johannes Berg0e057d732008-09-12 00:39:22 +0200318 struct list_head list;
319 struct ieee80211_hw *hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300320 struct device *dev;
Johannes Berg1b083ea2012-07-03 13:14:49 +0200321 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800322 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
323 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300324 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
325
Johannes Bergef15aac2010-01-20 12:02:33 +0100326 struct mac_address addresses[2];
327
Johannes Berge8261172012-07-27 19:48:26 +0200328 struct ieee80211_channel *tmp_chan;
329 struct delayed_work roc_done;
330 struct delayed_work hw_scan;
331 struct cfg80211_scan_request *hw_scan_request;
332 struct ieee80211_vif *hw_scan_vif;
333 int scan_chan_idx;
334
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300335 struct ieee80211_channel *channel;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300336 unsigned long beacon_int; /* in jiffies unit */
337 unsigned int rx_filter;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400338 bool started, idle, scanning;
339 struct mutex mutex;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300340 struct timer_list beacon_timer;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200341 enum ps_mode {
342 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
343 } ps;
344 bool ps_poll_pending;
345 struct dentry *debugfs;
346 struct dentry *debugfs_ps;
Daniel Wagner73606d02009-05-18 19:49:25 +0200347
Javier Lopez78825132011-06-01 11:26:13 +0200348 struct sk_buff_head pending; /* packets pending */
Daniel Wagner73606d02009-05-18 19:49:25 +0200349 /*
350 * Only radios in the same group can communicate together (the
351 * channel has to match too). Each bit represents a group. A
352 * radio can be in more then one group.
353 */
354 u64 group;
355 struct dentry *debugfs_group;
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700356
357 int power_level;
Javier Cardona2f40b942012-03-05 17:20:37 -0800358
359 /* difference between this hw's clock and the real clock, in usecs */
360 u64 tsf_offset;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300361};
362
363
364struct hwsim_radiotap_hdr {
365 struct ieee80211_radiotap_header hdr;
Javier Cardona2f40b942012-03-05 17:20:37 -0800366 __le64 rt_tsft;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300367 u8 rt_flags;
368 u8 rt_rate;
369 __le16 rt_channel;
370 __le16 rt_chbitmask;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000371} __packed;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300372
Javier Lopez78825132011-06-01 11:26:13 +0200373/* MAC80211_HWSIM netlinf family */
374static struct genl_family hwsim_genl_family = {
375 .id = GENL_ID_GENERATE,
376 .hdrsize = 0,
377 .name = "MAC80211_HWSIM",
378 .version = 1,
379 .maxattr = HWSIM_ATTR_MAX,
380};
381
382/* MAC80211_HWSIM netlink policy */
383
384static struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = {
385 [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC,
386 .len = 6*sizeof(u8) },
387 [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC,
388 .len = 6*sizeof(u8) },
389 [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY,
390 .len = IEEE80211_MAX_DATA_LEN },
391 [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 },
392 [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 },
393 [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 },
394 [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC,
395 .len = IEEE80211_TX_MAX_RATES*sizeof(
396 struct hwsim_tx_rate)},
397 [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 },
398};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300399
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000400static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
401 struct net_device *dev)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300402{
403 /* TODO: allow packet injection */
404 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000405 return NETDEV_TX_OK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300406}
407
Javier Cardona2f40b942012-03-05 17:20:37 -0800408static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data)
409{
410 struct timeval tv = ktime_to_timeval(ktime_get_real());
411 u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec;
412 return cpu_to_le64(now + data->tsf_offset);
413}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300414
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800415static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw,
416 struct ieee80211_vif *vif)
417{
418 struct mac80211_hwsim_data *data = hw->priv;
419 return le64_to_cpu(__mac80211_hwsim_get_tsf(data));
420}
421
422static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw,
423 struct ieee80211_vif *vif, u64 tsf)
424{
425 struct mac80211_hwsim_data *data = hw->priv;
426 struct timeval tv = ktime_to_timeval(ktime_get_real());
427 u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec;
428 data->tsf_offset = tsf - now;
429}
430
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300431static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200432 struct sk_buff *tx_skb,
433 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300434{
435 struct mac80211_hwsim_data *data = hw->priv;
436 struct sk_buff *skb;
437 struct hwsim_radiotap_hdr *hdr;
438 u16 flags;
439 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
440 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
441
442 if (!netif_running(hwsim_mon))
443 return;
444
445 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
446 if (skb == NULL)
447 return;
448
449 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
450 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
451 hdr->hdr.it_pad = 0;
452 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
Jouni Malinenf248f102008-06-13 19:44:47 +0300453 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
454 (1 << IEEE80211_RADIOTAP_RATE) |
Javier Cardona2f40b942012-03-05 17:20:37 -0800455 (1 << IEEE80211_RADIOTAP_TSFT) |
Jouni Malinenf248f102008-06-13 19:44:47 +0300456 (1 << IEEE80211_RADIOTAP_CHANNEL));
Javier Cardona2f40b942012-03-05 17:20:37 -0800457 hdr->rt_tsft = __mac80211_hwsim_get_tsf(data);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300458 hdr->rt_flags = 0;
459 hdr->rt_rate = txrate->bitrate / 5;
Johannes Berge8261172012-07-27 19:48:26 +0200460 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300461 flags = IEEE80211_CHAN_2GHZ;
462 if (txrate->flags & IEEE80211_RATE_ERP_G)
463 flags |= IEEE80211_CHAN_OFDM;
464 else
465 flags |= IEEE80211_CHAN_CCK;
466 hdr->rt_chbitmask = cpu_to_le16(flags);
467
468 skb->dev = hwsim_mon;
469 skb_set_mac_header(skb, 0);
470 skb->ip_summed = CHECKSUM_UNNECESSARY;
471 skb->pkt_type = PACKET_OTHERHOST;
Jouni Malinenf248f102008-06-13 19:44:47 +0300472 skb->protocol = htons(ETH_P_802_2);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300473 memset(skb->cb, 0, sizeof(skb->cb));
474 netif_rx(skb);
475}
476
477
Johannes Berge8261172012-07-27 19:48:26 +0200478static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan,
479 const u8 *addr)
Jouni Malinen6c085222009-11-01 11:31:45 +0200480{
Jouni Malinen6c085222009-11-01 11:31:45 +0200481 struct sk_buff *skb;
482 struct hwsim_radiotap_hdr *hdr;
483 u16 flags;
484 struct ieee80211_hdr *hdr11;
485
486 if (!netif_running(hwsim_mon))
487 return;
488
489 skb = dev_alloc_skb(100);
490 if (skb == NULL)
491 return;
492
493 hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr));
494 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
495 hdr->hdr.it_pad = 0;
496 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
497 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
498 (1 << IEEE80211_RADIOTAP_CHANNEL));
499 hdr->rt_flags = 0;
500 hdr->rt_rate = 0;
Johannes Berge8261172012-07-27 19:48:26 +0200501 hdr->rt_channel = cpu_to_le16(chan->center_freq);
Jouni Malinen6c085222009-11-01 11:31:45 +0200502 flags = IEEE80211_CHAN_2GHZ;
503 hdr->rt_chbitmask = cpu_to_le16(flags);
504
505 hdr11 = (struct ieee80211_hdr *) skb_put(skb, 10);
506 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
507 IEEE80211_STYPE_ACK);
508 hdr11->duration_id = cpu_to_le16(0);
509 memcpy(hdr11->addr1, addr, ETH_ALEN);
510
511 skb->dev = hwsim_mon;
512 skb_set_mac_header(skb, 0);
513 skb->ip_summed = CHECKSUM_UNNECESSARY;
514 skb->pkt_type = PACKET_OTHERHOST;
515 skb->protocol = htons(ETH_P_802_2);
516 memset(skb->cb, 0, sizeof(skb->cb));
517 netif_rx(skb);
518}
519
520
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200521static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
522 struct sk_buff *skb)
523{
524 switch (data->ps) {
525 case PS_DISABLED:
526 return true;
527 case PS_ENABLED:
528 return false;
529 case PS_AUTO_POLL:
530 /* TODO: accept (some) Beacons by default and other frames only
531 * if pending PS-Poll has been sent */
532 return true;
533 case PS_MANUAL_POLL:
534 /* Allow unicast frames to own address if there is a pending
535 * PS-Poll */
536 if (data->ps_poll_pending &&
537 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
538 ETH_ALEN) == 0) {
539 data->ps_poll_pending = false;
540 return true;
541 }
542 return false;
543 }
544
545 return true;
546}
547
548
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200549struct mac80211_hwsim_addr_match_data {
550 bool ret;
551 const u8 *addr;
552};
553
554static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
555 struct ieee80211_vif *vif)
556{
557 struct mac80211_hwsim_addr_match_data *md = data;
558 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
559 md->ret = true;
560}
561
562
563static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
564 const u8 *addr)
565{
566 struct mac80211_hwsim_addr_match_data md;
567
568 if (memcmp(addr, data->hw->wiphy->perm_addr, ETH_ALEN) == 0)
569 return true;
570
571 md.ret = false;
572 md.addr = addr;
573 ieee80211_iterate_active_interfaces_atomic(data->hw,
574 mac80211_hwsim_addr_iter,
575 &md);
576
577 return md.ret;
578}
579
Javier Lopez78825132011-06-01 11:26:13 +0200580static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw,
581 struct sk_buff *my_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000582 int dst_portid)
Javier Lopez78825132011-06-01 11:26:13 +0200583{
584 struct sk_buff *skb;
585 struct mac80211_hwsim_data *data = hw->priv;
586 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data;
587 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb);
588 void *msg_head;
589 unsigned int hwsim_flags = 0;
590 int i;
591 struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES];
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200592
Javier Lopez78825132011-06-01 11:26:13 +0200593 if (data->ps != PS_DISABLED)
594 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
595 /* If the queue contains MAX_QUEUE skb's drop some */
596 if (skb_queue_len(&data->pending) >= MAX_QUEUE) {
597 /* Droping until WARN_QUEUE level */
598 while (skb_queue_len(&data->pending) >= WARN_QUEUE)
599 skb_dequeue(&data->pending);
600 }
601
Thomas Graf58050fc2012-06-28 03:57:45 +0000602 skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Javier Lopez78825132011-06-01 11:26:13 +0200603 if (skb == NULL)
604 goto nla_put_failure;
605
606 msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0,
607 HWSIM_CMD_FRAME);
608 if (msg_head == NULL) {
609 printk(KERN_DEBUG "mac80211_hwsim: problem with msg_head\n");
610 goto nla_put_failure;
611 }
612
David S. Miller633c9382012-04-01 21:03:30 -0400613 if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER,
614 sizeof(struct mac_address), data->addresses[1].addr))
615 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200616
617 /* We get the skb->data */
David S. Miller633c9382012-04-01 21:03:30 -0400618 if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data))
619 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200620
621 /* We get the flags for this transmission, and we translate them to
622 wmediumd flags */
623
624 if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
625 hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS;
626
627 if (info->flags & IEEE80211_TX_CTL_NO_ACK)
628 hwsim_flags |= HWSIM_TX_CTL_NO_ACK;
629
David S. Miller633c9382012-04-01 21:03:30 -0400630 if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags))
631 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200632
633 /* We get the tx control (rate and retries) info*/
634
635 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
636 tx_attempts[i].idx = info->status.rates[i].idx;
637 tx_attempts[i].count = info->status.rates[i].count;
638 }
639
David S. Miller633c9382012-04-01 21:03:30 -0400640 if (nla_put(skb, HWSIM_ATTR_TX_INFO,
641 sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES,
642 tx_attempts))
643 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200644
645 /* We create a cookie to identify this skb */
David S. Miller633c9382012-04-01 21:03:30 -0400646 if (nla_put_u64(skb, HWSIM_ATTR_COOKIE, (unsigned long) my_skb))
647 goto nla_put_failure;
Javier Lopez78825132011-06-01 11:26:13 +0200648
649 genlmsg_end(skb, msg_head);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000650 genlmsg_unicast(&init_net, skb, dst_portid);
Javier Lopez78825132011-06-01 11:26:13 +0200651
652 /* Enqueue the packet */
653 skb_queue_tail(&data->pending, my_skb);
654 return;
655
656nla_put_failure:
Masanari Iidac3938622012-02-17 23:04:10 +0900657 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +0200658}
659
Johannes Berge8261172012-07-27 19:48:26 +0200660static bool hwsim_chans_compat(struct ieee80211_channel *c1,
661 struct ieee80211_channel *c2)
662{
663 if (!c1 || !c2)
664 return false;
665
666 return c1->center_freq == c2->center_freq;
667}
668
669struct tx_iter_data {
670 struct ieee80211_channel *channel;
671 bool receive;
672};
673
674static void mac80211_hwsim_tx_iter(void *_data, u8 *addr,
675 struct ieee80211_vif *vif)
676{
677 struct tx_iter_data *data = _data;
678
679 if (!vif->chanctx_conf)
680 return;
681
682 if (!hwsim_chans_compat(data->channel,
683 rcu_dereference(vif->chanctx_conf)->channel))
684 return;
685
686 data->receive = true;
687}
688
Javier Lopez78825132011-06-01 11:26:13 +0200689static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
Johannes Berge8261172012-07-27 19:48:26 +0200690 struct sk_buff *skb,
691 struct ieee80211_channel *chan)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300692{
Johannes Berg0e057d732008-09-12 00:39:22 +0200693 struct mac80211_hwsim_data *data = hw->priv, *data2;
694 bool ack = false;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300695 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300696 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300697 struct ieee80211_rx_status rx_status;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700698 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300699
700 memset(&rx_status, 0, sizeof(rx_status));
Javier Cardona2f40b942012-03-05 17:20:37 -0800701 rx_status.flag |= RX_FLAG_MACTIME_MPDU;
Johannes Berge8261172012-07-27 19:48:26 +0200702 rx_status.freq = chan->center_freq;
703 rx_status.band = chan->band;
Johannes Berge6a98542008-10-21 12:40:02 +0200704 rx_status.rate_idx = info->control.rates[0].idx;
Jouni Malinen281ed292011-08-06 23:07:00 +0300705 if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS)
706 rx_status.flag |= RX_FLAG_HT;
707 if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
708 rx_status.flag |= RX_FLAG_40MHZ;
709 if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)
710 rx_status.flag |= RX_FLAG_SHORT_GI;
Johannes Berg4b14c962009-07-10 16:56:59 +0200711 /* TODO: simulate real signal strength (and optional packet loss) */
Blaise Gassendbdd7bd12010-10-28 02:01:24 -0700712 rx_status.signal = data->power_level - 50;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300713
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200714 if (data->ps != PS_DISABLED)
715 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
716
Johannes Berg90e30122009-06-18 14:51:12 +0200717 /* release the skb's source info */
718 skb_orphan(skb);
John W. Linvillec0acf382009-06-30 16:55:52 -0400719 skb_dst_drop(skb);
Johannes Berg90e30122009-06-18 14:51:12 +0200720 skb->mark = 0;
721 secpath_reset(skb);
722 nf_reset(skb);
723
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300724 /* Copy skb to all enabled radios that are on the current frequency */
Johannes Berg0e057d732008-09-12 00:39:22 +0200725 spin_lock(&hwsim_radio_lock);
726 list_for_each_entry(data2, &hwsim_radios, list) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300727 struct sk_buff *nskb;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700728 struct ieee80211_mgmt *mgmt;
Johannes Berge8261172012-07-27 19:48:26 +0200729 struct tx_iter_data tx_iter_data = {
730 .receive = false,
731 .channel = chan,
732 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300733
Johannes Berg0e057d732008-09-12 00:39:22 +0200734 if (data == data2)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300735 continue;
Johannes Berg0e057d732008-09-12 00:39:22 +0200736
Johannes Berge8261172012-07-27 19:48:26 +0200737 if (!data2->started || (data2->idle && !data2->tmp_chan) ||
738 !hwsim_ps_rx_ok(data2, skb))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300739 continue;
740
Johannes Berge8261172012-07-27 19:48:26 +0200741 if (!(data->group & data2->group))
742 continue;
743
744 if (!hwsim_chans_compat(chan, data2->tmp_chan) &&
745 !hwsim_chans_compat(chan, data2->channel)) {
746 ieee80211_iterate_active_interfaces_atomic(
747 data2->hw, mac80211_hwsim_tx_iter,
748 &tx_iter_data);
749 if (!tx_iter_data.receive)
750 continue;
751 }
752
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300753 nskb = skb_copy(skb, GFP_ATOMIC);
754 if (nskb == NULL)
755 continue;
756
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200757 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
Johannes Berg0e057d732008-09-12 00:39:22 +0200758 ack = true;
Javier Cardonaf483ad22012-03-31 11:31:30 -0700759
760 /* set bcn timestamp relative to receiver mactime */
Ashok Nagarajan4e13f092012-03-08 09:27:34 -0800761 rx_status.mactime =
Javier Cardonaf483ad22012-03-31 11:31:30 -0700762 le64_to_cpu(__mac80211_hwsim_get_tsf(data2));
763 mgmt = (struct ieee80211_mgmt *) nskb->data;
764 if (ieee80211_is_beacon(mgmt->frame_control) ||
765 ieee80211_is_probe_resp(mgmt->frame_control))
766 mgmt->u.beacon.timestamp = cpu_to_le64(
767 rx_status.mactime +
Javier Cardonab6ba82c2012-04-12 14:32:21 -0700768 (data->tsf_offset - data2->tsf_offset) +
Javier Cardonaf483ad22012-03-31 11:31:30 -0700769 24 * 8 * 10 / txrate->bitrate);
770
Johannes Bergf1d58c22009-06-17 13:13:00 +0200771 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
772 ieee80211_rx_irqsafe(data2->hw, nskb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300773 }
Johannes Berg0e057d732008-09-12 00:39:22 +0200774 spin_unlock(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300775
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300776 return ack;
777}
778
Thomas Huehn36323f82012-07-23 21:33:42 +0200779static void mac80211_hwsim_tx(struct ieee80211_hw *hw,
780 struct ieee80211_tx_control *control,
781 struct sk_buff *skb)
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300782{
Johannes Berge8261172012-07-27 19:48:26 +0200783 struct mac80211_hwsim_data *data = hw->priv;
784 struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb);
785 struct ieee80211_chanctx_conf *chanctx_conf;
786 struct ieee80211_channel *channel;
Johannes Berg0e057d732008-09-12 00:39:22 +0200787 bool ack;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000788 u32 _portid;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300789
Johannes Berge8261172012-07-27 19:48:26 +0200790 if (WARN_ON(skb->len < 10)) {
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300791 /* Should not happen; just a sanity check for addr1 use */
792 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +0100793 return;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300794 }
795
Johannes Berge8261172012-07-27 19:48:26 +0200796 if (channels == 1) {
797 channel = data->channel;
798 } else if (txi->hw_queue == 4) {
799 channel = data->tmp_chan;
800 } else {
801 chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf);
802 if (chanctx_conf)
803 channel = chanctx_conf->channel;
804 else
805 channel = NULL;
806 }
807
808 if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) {
809 dev_kfree_skb(skb);
810 return;
811 }
812
813 if (data->idle && !data->tmp_chan) {
814 wiphy_debug(hw->wiphy, "Trying to TX when idle - reject\n");
815 dev_kfree_skb(skb);
816 return;
817 }
818
819 if (txi->control.vif)
820 hwsim_check_magic(txi->control.vif);
821 if (control->sta)
822 hwsim_check_sta_magic(control->sta);
823
824 txi->rate_driver_data[0] = channel;
825
826 mac80211_hwsim_monitor_rx(hw, skb, channel);
827
Javier Lopez78825132011-06-01 11:26:13 +0200828 /* wmediumd mode check */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000829 _portid = ACCESS_ONCE(wmediumd_portid);
Javier Lopez78825132011-06-01 11:26:13 +0200830
Eric W. Biederman15e47302012-09-07 20:12:54 +0000831 if (_portid)
832 return mac80211_hwsim_tx_frame_nl(hw, skb, _portid);
Javier Lopez78825132011-06-01 11:26:13 +0200833
834 /* NO wmediumd detected, perfect medium simulation */
Johannes Berge8261172012-07-27 19:48:26 +0200835 ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel);
Javier Lopez78825132011-06-01 11:26:13 +0200836
Jouni Malinen6c085222009-11-01 11:31:45 +0200837 if (ack && skb->len >= 16) {
838 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge8261172012-07-27 19:48:26 +0200839 mac80211_hwsim_monitor_ack(channel, hdr->addr2);
Jouni Malinen6c085222009-11-01 11:31:45 +0200840 }
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300841
Johannes Berge6a98542008-10-21 12:40:02 +0200842 ieee80211_tx_info_clear_status(txi);
Javier Cardona2a4ffa42012-05-01 03:01:28 -0700843
844 /* frame was transmitted at most favorable rate at first attempt */
845 txi->control.rates[0].count = 1;
846 txi->control.rates[1].idx = -1;
847
Johannes Berge6a98542008-10-21 12:40:02 +0200848 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
849 txi->flags |= IEEE80211_TX_STAT_ACK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300850 ieee80211_tx_status_irqsafe(hw, skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300851}
852
853
854static int mac80211_hwsim_start(struct ieee80211_hw *hw)
855{
856 struct mac80211_hwsim_data *data = hw->priv;
Joe Perchesc96c31e2010-07-26 14:39:58 -0700857 wiphy_debug(hw->wiphy, "%s\n", __func__);
Rusty Russell3db1cd52011-12-19 13:56:45 +0000858 data->started = true;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300859 return 0;
860}
861
862
863static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
864{
865 struct mac80211_hwsim_data *data = hw->priv;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000866 data->started = false;
Jouni Malinenab1ef982008-10-30 16:59:25 +0200867 del_timer(&data->beacon_timer);
Joe Perchesc96c31e2010-07-26 14:39:58 -0700868 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300869}
870
871
872static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100873 struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300874{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700875 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200876 __func__, ieee80211_vif_type_p2p(vif),
877 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100878 hwsim_set_magic(vif);
Johannes Berge8261172012-07-27 19:48:26 +0200879
880 vif->cab_queue = 0;
881 vif->hw_queue[IEEE80211_AC_VO] = 0;
882 vif->hw_queue[IEEE80211_AC_VI] = 1;
883 vif->hw_queue[IEEE80211_AC_BE] = 2;
884 vif->hw_queue[IEEE80211_AC_BK] = 3;
885
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300886 return 0;
887}
888
889
Johannes Bergc35d0272010-08-27 12:35:59 +0200890static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
891 struct ieee80211_vif *vif,
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200892 enum nl80211_iftype newtype,
893 bool newp2p)
Johannes Bergc35d0272010-08-27 12:35:59 +0200894{
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200895 newtype = ieee80211_iftype_p2p(newtype, newp2p);
Johannes Bergc35d0272010-08-27 12:35:59 +0200896 wiphy_debug(hw->wiphy,
897 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200898 __func__, ieee80211_vif_type_p2p(vif),
899 newtype, vif->addr);
Johannes Bergc35d0272010-08-27 12:35:59 +0200900 hwsim_check_magic(vif);
901
902 return 0;
903}
904
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300905static void mac80211_hwsim_remove_interface(
Johannes Berg1ed32e42009-12-23 13:15:45 +0100906 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300907{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700908 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200909 __func__, ieee80211_vif_type_p2p(vif),
910 vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100911 hwsim_check_magic(vif);
912 hwsim_clear_magic(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300913}
914
Johannes Berge8261172012-07-27 19:48:26 +0200915static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
916 struct sk_buff *skb,
917 struct ieee80211_channel *chan)
918{
919 u32 _pid = ACCESS_ONCE(wmediumd_portid);
920
921 mac80211_hwsim_monitor_rx(hw, skb, chan);
922
923 if (_pid)
924 return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);
925
926 mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
927 dev_kfree_skb(skb);
928}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300929
930static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
931 struct ieee80211_vif *vif)
932{
933 struct ieee80211_hw *hw = arg;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300934 struct sk_buff *skb;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300935
Johannes Berg8aa21e62008-09-11 02:16:36 +0200936 hwsim_check_magic(vif);
937
Andrey Yurovsky55b39612008-10-31 23:23:35 -0700938 if (vif->type != NL80211_IFTYPE_AP &&
Johannes Berg2b2d7792010-08-17 12:08:07 +0200939 vif->type != NL80211_IFTYPE_MESH_POINT &&
940 vif->type != NL80211_IFTYPE_ADHOC)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300941 return;
942
943 skb = ieee80211_beacon_get(hw, vif);
944 if (skb == NULL)
945 return;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300946
Johannes Berge8261172012-07-27 19:48:26 +0200947 mac80211_hwsim_tx_frame(hw, skb,
948 rcu_dereference(vif->chanctx_conf)->channel);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300949}
950
951
952static void mac80211_hwsim_beacon(unsigned long arg)
953{
954 struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
955 struct mac80211_hwsim_data *data = hw->priv;
956
Johannes Berg4c4c6712009-06-01 14:29:52 +0200957 if (!data->started)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300958 return;
959
Jouni Malinenf248f102008-06-13 19:44:47 +0300960 ieee80211_iterate_active_interfaces_atomic(
961 hw, mac80211_hwsim_beacon_tx, hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300962
963 data->beacon_timer.expires = jiffies + data->beacon_int;
964 add_timer(&data->beacon_timer);
965}
966
Johannes Berg0aaffa92010-05-05 15:28:27 +0200967static const char *hwsim_chantypes[] = {
968 [NL80211_CHAN_NO_HT] = "noht",
969 [NL80211_CHAN_HT20] = "ht20",
970 [NL80211_CHAN_HT40MINUS] = "ht40-",
971 [NL80211_CHAN_HT40PLUS] = "ht40+",
972};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300973
Johannes Berge8975582008-10-09 12:18:51 +0200974static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300975{
976 struct mac80211_hwsim_data *data = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +0200977 struct ieee80211_conf *conf = &hw->conf;
Johannes Berg0f782312009-12-01 13:37:02 +0100978 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
979 [IEEE80211_SMPS_AUTOMATIC] = "auto",
980 [IEEE80211_SMPS_OFF] = "off",
981 [IEEE80211_SMPS_STATIC] = "static",
982 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
983 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300984
Joe Perchesc96c31e2010-07-26 14:39:58 -0700985 wiphy_debug(hw->wiphy,
986 "%s (freq=%d/%s idle=%d ps=%d smps=%s)\n",
987 __func__,
Johannes Berge8261172012-07-27 19:48:26 +0200988 conf->channel ? conf->channel->center_freq : 0,
Joe Perchesc96c31e2010-07-26 14:39:58 -0700989 hwsim_chantypes[conf->channel_type],
990 !!(conf->flags & IEEE80211_CONF_IDLE),
991 !!(conf->flags & IEEE80211_CONF_PS),
992 smps_modes[conf->smps_mode]);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300993
Jouni Malinen70541832009-11-01 11:30:48 +0200994 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
995
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300996 data->channel = conf->channel;
Johannes Berge8261172012-07-27 19:48:26 +0200997
998 WARN_ON(data->channel && channels > 1);
999
Blaise Gassendbdd7bd12010-10-28 02:01:24 -07001000 data->power_level = conf->power_level;
Johannes Berg4c4c6712009-06-01 14:29:52 +02001001 if (!data->started || !data->beacon_int)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001002 del_timer(&data->beacon_timer);
1003 else
1004 mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
1005
1006 return 0;
1007}
1008
1009
1010static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
1011 unsigned int changed_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +02001012 unsigned int *total_flags,u64 multicast)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001013{
1014 struct mac80211_hwsim_data *data = hw->priv;
1015
Joe Perchesc96c31e2010-07-26 14:39:58 -07001016 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001017
1018 data->rx_filter = 0;
1019 if (*total_flags & FIF_PROMISC_IN_BSS)
1020 data->rx_filter |= FIF_PROMISC_IN_BSS;
1021 if (*total_flags & FIF_ALLMULTI)
1022 data->rx_filter |= FIF_ALLMULTI;
1023
1024 *total_flags = data->rx_filter;
1025}
1026
Johannes Berg8aa21e62008-09-11 02:16:36 +02001027static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
1028 struct ieee80211_vif *vif,
1029 struct ieee80211_bss_conf *info,
1030 u32 changed)
1031{
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001032 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001033 struct mac80211_hwsim_data *data = hw->priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001034
Johannes Berg8aa21e62008-09-11 02:16:36 +02001035 hwsim_check_magic(vif);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001036
Joe Perchesc96c31e2010-07-26 14:39:58 -07001037 wiphy_debug(hw->wiphy, "%s(changed=0x%x)\n", __func__, changed);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001038
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001039 if (changed & BSS_CHANGED_BSSID) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001040 wiphy_debug(hw->wiphy, "%s: BSSID changed: %pM\n",
1041 __func__, info->bssid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001042 memcpy(vp->bssid, info->bssid, ETH_ALEN);
1043 }
1044
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001045 if (changed & BSS_CHANGED_ASSOC) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001046 wiphy_debug(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
1047 info->assoc, info->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001048 vp->assoc = info->assoc;
1049 vp->aid = info->aid;
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001050 }
1051
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001052 if (changed & BSS_CHANGED_BEACON_INT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001053 wiphy_debug(hw->wiphy, " BCNINT: %d\n", info->beacon_int);
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001054 data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000;
Johannes Bergd91f1902009-04-24 15:13:54 +02001055 if (WARN_ON(!data->beacon_int))
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001056 data->beacon_int = 1;
Jouni Malinenffed1302009-09-26 22:30:15 +03001057 if (data->started)
1058 mod_timer(&data->beacon_timer,
1059 jiffies + data->beacon_int);
Johannes Berg57c4d7b2009-04-23 16:10:04 +02001060 }
1061
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001062 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001063 wiphy_debug(hw->wiphy, " ERP_CTS_PROT: %d\n",
1064 info->use_cts_prot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001065 }
1066
1067 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001068 wiphy_debug(hw->wiphy, " ERP_PREAMBLE: %d\n",
1069 info->use_short_preamble);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001070 }
1071
1072 if (changed & BSS_CHANGED_ERP_SLOT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001073 wiphy_debug(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001074 }
1075
1076 if (changed & BSS_CHANGED_HT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001077 wiphy_debug(hw->wiphy, " HT: op_mode=0x%x, chantype=%s\n",
1078 info->ht_operation_mode,
1079 hwsim_chantypes[info->channel_type]);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001080 }
1081
1082 if (changed & BSS_CHANGED_BASIC_RATES) {
Joe Perchesc96c31e2010-07-26 14:39:58 -07001083 wiphy_debug(hw->wiphy, " BASIC_RATES: 0x%llx\n",
1084 (unsigned long long) info->basic_rates);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +02001085 }
Johannes Bergcbc668a2012-10-24 11:54:31 +02001086
1087 if (changed & BSS_CHANGED_TXPOWER)
1088 wiphy_debug(hw->wiphy, " TX Power: %d dBm\n", info->txpower);
Johannes Berg8aa21e62008-09-11 02:16:36 +02001089}
1090
Johannes Berg1d669cb2010-02-19 19:06:55 +01001091static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
1092 struct ieee80211_vif *vif,
1093 struct ieee80211_sta *sta)
1094{
1095 hwsim_check_magic(vif);
1096 hwsim_set_sta_magic(sta);
1097
1098 return 0;
1099}
1100
1101static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
1102 struct ieee80211_vif *vif,
1103 struct ieee80211_sta *sta)
1104{
1105 hwsim_check_magic(vif);
1106 hwsim_clear_sta_magic(sta);
1107
1108 return 0;
1109}
1110
Johannes Berg8aa21e62008-09-11 02:16:36 +02001111static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
1112 struct ieee80211_vif *vif,
Johannes Berg17741cd2008-09-11 00:02:02 +02001113 enum sta_notify_cmd cmd,
1114 struct ieee80211_sta *sta)
Johannes Berg8aa21e62008-09-11 02:16:36 +02001115{
1116 hwsim_check_magic(vif);
Johannes Berg1d669cb2010-02-19 19:06:55 +01001117
Johannes Berg81c06522008-09-11 02:17:01 +02001118 switch (cmd) {
Christian Lamparter89fad572008-12-09 16:28:06 +01001119 case STA_NOTIFY_SLEEP:
1120 case STA_NOTIFY_AWAKE:
1121 /* TODO: make good use of these flags */
1122 break;
Johannes Berg1d669cb2010-02-19 19:06:55 +01001123 default:
1124 WARN(1, "Invalid sta notify: %d\n", cmd);
1125 break;
Johannes Berg81c06522008-09-11 02:17:01 +02001126 }
1127}
1128
1129static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
1130 struct ieee80211_sta *sta,
1131 bool set)
1132{
1133 hwsim_check_sta_magic(sta);
1134 return 0;
Johannes Berg8aa21e62008-09-11 02:16:36 +02001135}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001136
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001137static int mac80211_hwsim_conf_tx(
Eliad Peller8a3a3c82011-10-02 10:15:52 +02001138 struct ieee80211_hw *hw,
1139 struct ieee80211_vif *vif, u16 queue,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001140 const struct ieee80211_tx_queue_params *params)
1141{
Joe Perchesc96c31e2010-07-26 14:39:58 -07001142 wiphy_debug(hw->wiphy,
1143 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
1144 __func__, queue,
1145 params->txop, params->cw_min,
1146 params->cw_max, params->aifs);
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001147 return 0;
1148}
1149
Holger Schurig12897232010-04-19 10:23:57 +02001150static int mac80211_hwsim_get_survey(
1151 struct ieee80211_hw *hw, int idx,
1152 struct survey_info *survey)
1153{
1154 struct ieee80211_conf *conf = &hw->conf;
1155
Joe Perchesc96c31e2010-07-26 14:39:58 -07001156 wiphy_debug(hw->wiphy, "%s (idx=%d)\n", __func__, idx);
Holger Schurig12897232010-04-19 10:23:57 +02001157
1158 if (idx != 0)
1159 return -ENOENT;
1160
1161 /* Current channel */
1162 survey->channel = conf->channel;
1163
1164 /*
1165 * Magically conjured noise level --- this is only ok for simulated hardware.
1166 *
1167 * A real driver which cannot determine the real channel noise MUST NOT
1168 * report any noise, especially not a magically conjured one :-)
1169 */
1170 survey->filled = SURVEY_INFO_NOISE_DBM;
1171 survey->noise = -92;
1172
1173 return 0;
1174}
1175
Johannes Bergaff89a92009-07-01 21:26:51 +02001176#ifdef CONFIG_NL80211_TESTMODE
1177/*
1178 * This section contains example code for using netlink
1179 * attributes with the testmode command in nl80211.
1180 */
1181
1182/* These enums need to be kept in sync with userspace */
1183enum hwsim_testmode_attr {
1184 __HWSIM_TM_ATTR_INVALID = 0,
1185 HWSIM_TM_ATTR_CMD = 1,
1186 HWSIM_TM_ATTR_PS = 2,
1187
1188 /* keep last */
1189 __HWSIM_TM_ATTR_AFTER_LAST,
1190 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
1191};
1192
1193enum hwsim_testmode_cmd {
1194 HWSIM_TM_CMD_SET_PS = 0,
1195 HWSIM_TM_CMD_GET_PS = 1,
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001196 HWSIM_TM_CMD_STOP_QUEUES = 2,
1197 HWSIM_TM_CMD_WAKE_QUEUES = 3,
Johannes Bergaff89a92009-07-01 21:26:51 +02001198};
1199
1200static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
1201 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
1202 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
1203};
1204
1205static int hwsim_fops_ps_write(void *dat, u64 val);
1206
Johannes Berg5bc38192009-07-07 11:00:55 +02001207static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
1208 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02001209{
1210 struct mac80211_hwsim_data *hwsim = hw->priv;
1211 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
1212 struct sk_buff *skb;
1213 int err, ps;
1214
1215 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
1216 hwsim_testmode_policy);
1217 if (err)
1218 return err;
1219
1220 if (!tb[HWSIM_TM_ATTR_CMD])
1221 return -EINVAL;
1222
1223 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
1224 case HWSIM_TM_CMD_SET_PS:
1225 if (!tb[HWSIM_TM_ATTR_PS])
1226 return -EINVAL;
1227 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
1228 return hwsim_fops_ps_write(hwsim, ps);
1229 case HWSIM_TM_CMD_GET_PS:
1230 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
1231 nla_total_size(sizeof(u32)));
1232 if (!skb)
1233 return -ENOMEM;
David S. Miller633c9382012-04-01 21:03:30 -04001234 if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps))
1235 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02001236 return cfg80211_testmode_reply(skb);
Johannes Berg4d6d0ae2012-07-04 12:58:40 +02001237 case HWSIM_TM_CMD_STOP_QUEUES:
1238 ieee80211_stop_queues(hw);
1239 return 0;
1240 case HWSIM_TM_CMD_WAKE_QUEUES:
1241 ieee80211_wake_queues(hw);
1242 return 0;
Johannes Bergaff89a92009-07-01 21:26:51 +02001243 default:
1244 return -EOPNOTSUPP;
1245 }
1246
1247 nla_put_failure:
1248 kfree_skb(skb);
1249 return -ENOBUFS;
1250}
1251#endif
1252
Johannes Berg8b73d132009-12-01 14:24:24 +01001253static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
1254 struct ieee80211_vif *vif,
1255 enum ieee80211_ampdu_mlme_action action,
Johannes Berg0b01f032011-01-18 13:51:05 +01001256 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
1257 u8 buf_size)
Johannes Berg8b73d132009-12-01 14:24:24 +01001258{
1259 switch (action) {
1260 case IEEE80211_AMPDU_TX_START:
1261 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1262 break;
1263 case IEEE80211_AMPDU_TX_STOP:
1264 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1265 break;
1266 case IEEE80211_AMPDU_TX_OPERATIONAL:
1267 break;
1268 case IEEE80211_AMPDU_RX_START:
1269 case IEEE80211_AMPDU_RX_STOP:
1270 break;
1271 default:
1272 return -EOPNOTSUPP;
1273 }
1274
1275 return 0;
1276}
1277
Johannes Berga80f7c02009-12-23 13:15:32 +01001278static void mac80211_hwsim_flush(struct ieee80211_hw *hw, bool drop)
1279{
Javier Lopez78825132011-06-01 11:26:13 +02001280 /* Not implemented, queues only on kernel side */
Johannes Berga80f7c02009-12-23 13:15:32 +01001281}
1282
Johannes Berge8261172012-07-27 19:48:26 +02001283static void hw_scan_work(struct work_struct *work)
Johannes Berg69068032010-02-03 10:47:55 +01001284{
Johannes Berge8261172012-07-27 19:48:26 +02001285 struct mac80211_hwsim_data *hwsim =
1286 container_of(work, struct mac80211_hwsim_data, hw_scan.work);
1287 struct cfg80211_scan_request *req = hwsim->hw_scan_request;
1288 int dwell, i;
Johannes Berg69068032010-02-03 10:47:55 +01001289
Johannes Berge8261172012-07-27 19:48:26 +02001290 mutex_lock(&hwsim->mutex);
1291 if (hwsim->scan_chan_idx >= req->n_channels) {
1292 wiphy_debug(hwsim->hw->wiphy, "hw scan complete\n");
1293 ieee80211_scan_completed(hwsim->hw, false);
1294 hwsim->hw_scan_request = NULL;
1295 hwsim->hw_scan_vif = NULL;
1296 hwsim->tmp_chan = NULL;
1297 mutex_unlock(&hwsim->mutex);
1298 return;
1299 }
1300
1301 wiphy_debug(hwsim->hw->wiphy, "hw scan %d MHz\n",
1302 req->channels[hwsim->scan_chan_idx]->center_freq);
1303
1304 hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx];
1305 if (hwsim->tmp_chan->flags & IEEE80211_CHAN_PASSIVE_SCAN ||
1306 !req->n_ssids) {
1307 dwell = 120;
1308 } else {
1309 dwell = 30;
1310 /* send probes */
1311 for (i = 0; i < req->n_ssids; i++) {
1312 struct sk_buff *probe;
1313
1314 probe = ieee80211_probereq_get(hwsim->hw,
1315 hwsim->hw_scan_vif,
1316 req->ssids[i].ssid,
1317 req->ssids[i].ssid_len,
1318 req->ie, req->ie_len);
1319 if (!probe)
1320 continue;
1321 local_bh_disable();
1322 mac80211_hwsim_tx_frame(hwsim->hw, probe,
1323 hwsim->tmp_chan);
1324 local_bh_enable();
1325 }
1326 }
1327 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan,
1328 msecs_to_jiffies(dwell));
1329 hwsim->scan_chan_idx++;
1330 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01001331}
1332
1333static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +02001334 struct ieee80211_vif *vif,
Johannes Berg69068032010-02-03 10:47:55 +01001335 struct cfg80211_scan_request *req)
1336{
Johannes Berge8261172012-07-27 19:48:26 +02001337 struct mac80211_hwsim_data *hwsim = hw->priv;
Johannes Berg69068032010-02-03 10:47:55 +01001338 int i;
1339
Johannes Berge8261172012-07-27 19:48:26 +02001340 mutex_lock(&hwsim->mutex);
1341 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1342 mutex_unlock(&hwsim->mutex);
1343 return -EBUSY;
1344 }
1345 hwsim->hw_scan_request = req;
1346 hwsim->hw_scan_vif = vif;
1347 hwsim->scan_chan_idx = 0;
1348 mutex_unlock(&hwsim->mutex);
Johannes Berg69068032010-02-03 10:47:55 +01001349
Johannes Berge8261172012-07-27 19:48:26 +02001350 wiphy_debug(hw->wiphy, "hwsim hw_scan request\n");
Johannes Berg69068032010-02-03 10:47:55 +01001351 for (i = 0; i < req->n_channels; i++)
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001352 printk(KERN_DEBUG "hwsim hw_scan freq %d\n",
Johannes Berg69068032010-02-03 10:47:55 +01001353 req->channels[i]->center_freq);
Johannes Berg8ee31082011-06-22 16:43:48 +02001354 print_hex_dump(KERN_DEBUG, "scan IEs: ", DUMP_PREFIX_OFFSET,
1355 16, 1, req->ie, req->ie_len, 1);
Johannes Berg69068032010-02-03 10:47:55 +01001356
Johannes Berge8261172012-07-27 19:48:26 +02001357 ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0);
Johannes Berg69068032010-02-03 10:47:55 +01001358
1359 return 0;
1360}
1361
Johannes Berge8261172012-07-27 19:48:26 +02001362static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw,
1363 struct ieee80211_vif *vif)
1364{
1365 struct mac80211_hwsim_data *hwsim = hw->priv;
1366
1367 wiphy_debug(hw->wiphy, "hwsim cancel_hw_scan\n");
1368
1369 cancel_delayed_work_sync(&hwsim->hw_scan);
1370
1371 mutex_lock(&hwsim->mutex);
1372 ieee80211_scan_completed(hwsim->hw, true);
1373 hwsim->tmp_chan = NULL;
1374 hwsim->hw_scan_request = NULL;
1375 hwsim->hw_scan_vif = NULL;
1376 mutex_unlock(&hwsim->mutex);
1377}
1378
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001379static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw)
1380{
1381 struct mac80211_hwsim_data *hwsim = hw->priv;
1382
1383 mutex_lock(&hwsim->mutex);
1384
1385 if (hwsim->scanning) {
1386 printk(KERN_DEBUG "two hwsim sw_scans detected!\n");
1387 goto out;
1388 }
1389
1390 printk(KERN_DEBUG "hwsim sw_scan request, prepping stuff\n");
1391 hwsim->scanning = true;
1392
1393out:
1394 mutex_unlock(&hwsim->mutex);
1395}
1396
1397static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw)
1398{
1399 struct mac80211_hwsim_data *hwsim = hw->priv;
1400
1401 mutex_lock(&hwsim->mutex);
1402
1403 printk(KERN_DEBUG "hwsim sw_scan_complete\n");
Johannes Berg23ff98f2010-05-03 09:21:14 +02001404 hwsim->scanning = false;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001405
1406 mutex_unlock(&hwsim->mutex);
1407}
1408
Johannes Berge8261172012-07-27 19:48:26 +02001409static void hw_roc_done(struct work_struct *work)
1410{
1411 struct mac80211_hwsim_data *hwsim =
1412 container_of(work, struct mac80211_hwsim_data, roc_done.work);
1413
1414 mutex_lock(&hwsim->mutex);
1415 ieee80211_remain_on_channel_expired(hwsim->hw);
1416 hwsim->tmp_chan = NULL;
1417 mutex_unlock(&hwsim->mutex);
1418
1419 wiphy_debug(hwsim->hw->wiphy, "hwsim ROC expired\n");
1420}
1421
1422static int mac80211_hwsim_roc(struct ieee80211_hw *hw,
1423 struct ieee80211_channel *chan,
1424 enum nl80211_channel_type channel_type,
1425 int duration)
1426{
1427 struct mac80211_hwsim_data *hwsim = hw->priv;
1428
1429 mutex_lock(&hwsim->mutex);
1430 if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) {
1431 mutex_unlock(&hwsim->mutex);
1432 return -EBUSY;
1433 }
1434
1435 hwsim->tmp_chan = chan;
1436 mutex_unlock(&hwsim->mutex);
1437
1438 wiphy_debug(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n",
1439 chan->center_freq, duration);
1440
1441 ieee80211_ready_on_channel(hw);
1442
1443 ieee80211_queue_delayed_work(hw, &hwsim->roc_done,
1444 msecs_to_jiffies(duration));
1445 return 0;
1446}
1447
1448static int mac80211_hwsim_croc(struct ieee80211_hw *hw)
1449{
1450 struct mac80211_hwsim_data *hwsim = hw->priv;
1451
1452 cancel_delayed_work_sync(&hwsim->roc_done);
1453
1454 mutex_lock(&hwsim->mutex);
1455 hwsim->tmp_chan = NULL;
1456 mutex_unlock(&hwsim->mutex);
1457
1458 wiphy_debug(hw->wiphy, "hwsim ROC canceled\n");
1459
1460 return 0;
1461}
1462
1463static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw,
1464 struct ieee80211_chanctx_conf *ctx)
1465{
1466 hwsim_set_chanctx_magic(ctx);
1467 wiphy_debug(hw->wiphy, "add channel context %d MHz/%d\n",
1468 ctx->channel->center_freq, ctx->channel_type);
1469 return 0;
1470}
1471
1472static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw,
1473 struct ieee80211_chanctx_conf *ctx)
1474{
1475 wiphy_debug(hw->wiphy, "remove channel context %d MHz/%d\n",
1476 ctx->channel->center_freq, ctx->channel_type);
1477 hwsim_check_chanctx_magic(ctx);
1478 hwsim_clear_chanctx_magic(ctx);
1479}
1480
1481static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw,
1482 struct ieee80211_chanctx_conf *ctx,
1483 u32 changed)
1484{
1485 hwsim_check_chanctx_magic(ctx);
1486 wiphy_debug(hw->wiphy, "change channel context %#x (%d MHz/%d)\n",
1487 changed, ctx->channel->center_freq, ctx->channel_type);
1488}
1489
1490static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw,
1491 struct ieee80211_vif *vif,
1492 struct ieee80211_chanctx_conf *ctx)
1493{
1494 hwsim_check_magic(vif);
1495 hwsim_check_chanctx_magic(ctx);
1496
1497 return 0;
1498}
1499
1500static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw,
1501 struct ieee80211_vif *vif,
1502 struct ieee80211_chanctx_conf *ctx)
1503{
1504 hwsim_check_magic(vif);
1505 hwsim_check_chanctx_magic(ctx);
1506}
1507
Johannes Berg69068032010-02-03 10:47:55 +01001508static struct ieee80211_ops mac80211_hwsim_ops =
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001509{
1510 .tx = mac80211_hwsim_tx,
1511 .start = mac80211_hwsim_start,
1512 .stop = mac80211_hwsim_stop,
1513 .add_interface = mac80211_hwsim_add_interface,
Johannes Bergc35d0272010-08-27 12:35:59 +02001514 .change_interface = mac80211_hwsim_change_interface,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001515 .remove_interface = mac80211_hwsim_remove_interface,
1516 .config = mac80211_hwsim_config,
1517 .configure_filter = mac80211_hwsim_configure_filter,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001518 .bss_info_changed = mac80211_hwsim_bss_info_changed,
Johannes Berg1d669cb2010-02-19 19:06:55 +01001519 .sta_add = mac80211_hwsim_sta_add,
1520 .sta_remove = mac80211_hwsim_sta_remove,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001521 .sta_notify = mac80211_hwsim_sta_notify,
Johannes Berg81c06522008-09-11 02:17:01 +02001522 .set_tim = mac80211_hwsim_set_tim,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001523 .conf_tx = mac80211_hwsim_conf_tx,
Holger Schurig12897232010-04-19 10:23:57 +02001524 .get_survey = mac80211_hwsim_get_survey,
Johannes Bergaff89a92009-07-01 21:26:51 +02001525 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd)
Johannes Berg8b73d132009-12-01 14:24:24 +01001526 .ampdu_action = mac80211_hwsim_ampdu_action,
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001527 .sw_scan_start = mac80211_hwsim_sw_scan,
1528 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
Johannes Berga80f7c02009-12-23 13:15:32 +01001529 .flush = mac80211_hwsim_flush,
Javier Cardona12ce8ba2012-03-05 17:20:38 -08001530 .get_tsf = mac80211_hwsim_get_tsf,
1531 .set_tsf = mac80211_hwsim_set_tsf,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001532};
1533
1534
1535static void mac80211_hwsim_free(void)
1536{
Johannes Berg0e057d732008-09-12 00:39:22 +02001537 struct list_head tmplist, *i, *tmp;
Johannes Berge603d9d2009-07-13 13:25:58 +02001538 struct mac80211_hwsim_data *data, *tmpdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001539
Johannes Berg0e057d732008-09-12 00:39:22 +02001540 INIT_LIST_HEAD(&tmplist);
1541
1542 spin_lock_bh(&hwsim_radio_lock);
1543 list_for_each_safe(i, tmp, &hwsim_radios)
1544 list_move(i, &tmplist);
1545 spin_unlock_bh(&hwsim_radio_lock);
1546
Johannes Berge603d9d2009-07-13 13:25:58 +02001547 list_for_each_entry_safe(data, tmpdata, &tmplist, list) {
Daniel Wagner73606d02009-05-18 19:49:25 +02001548 debugfs_remove(data->debugfs_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001549 debugfs_remove(data->debugfs_ps);
1550 debugfs_remove(data->debugfs);
Johannes Berg0e057d732008-09-12 00:39:22 +02001551 ieee80211_unregister_hw(data->hw);
1552 device_unregister(data->dev);
1553 ieee80211_free_hw(data->hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001554 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001555 class_destroy(hwsim_class);
1556}
1557
1558
1559static struct device_driver mac80211_hwsim_driver = {
1560 .name = "mac80211_hwsim"
1561};
1562
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001563static const struct net_device_ops hwsim_netdev_ops = {
1564 .ndo_start_xmit = hwsim_mon_xmit,
1565 .ndo_change_mtu = eth_change_mtu,
1566 .ndo_set_mac_address = eth_mac_addr,
1567 .ndo_validate_addr = eth_validate_addr,
1568};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001569
1570static void hwsim_mon_setup(struct net_device *dev)
1571{
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001572 dev->netdev_ops = &hwsim_netdev_ops;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001573 dev->destructor = free_netdev;
1574 ether_setup(dev);
1575 dev->tx_queue_len = 0;
1576 dev->type = ARPHRD_IEEE80211_RADIOTAP;
1577 memset(dev->dev_addr, 0, ETH_ALEN);
1578 dev->dev_addr[0] = 0x12;
1579}
1580
1581
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001582static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
1583{
1584 struct mac80211_hwsim_data *data = dat;
1585 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001586 struct sk_buff *skb;
1587 struct ieee80211_pspoll *pspoll;
1588
1589 if (!vp->assoc)
1590 return;
1591
Joe Perchesc96c31e2010-07-26 14:39:58 -07001592 wiphy_debug(data->hw->wiphy,
1593 "%s: send PS-Poll to %pM for aid %d\n",
1594 __func__, vp->bssid, vp->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001595
1596 skb = dev_alloc_skb(sizeof(*pspoll));
1597 if (!skb)
1598 return;
1599 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
1600 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
1601 IEEE80211_STYPE_PSPOLL |
1602 IEEE80211_FCTL_PM);
1603 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
1604 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
1605 memcpy(pspoll->ta, mac, ETH_ALEN);
Javier Lopez78825132011-06-01 11:26:13 +02001606
Johannes Berge8261172012-07-27 19:48:26 +02001607 rcu_read_lock();
1608 mac80211_hwsim_tx_frame(data->hw, skb,
1609 rcu_dereference(vif->chanctx_conf)->channel);
1610 rcu_read_unlock();
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001611}
1612
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001613static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
1614 struct ieee80211_vif *vif, int ps)
1615{
1616 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001617 struct sk_buff *skb;
1618 struct ieee80211_hdr *hdr;
1619
1620 if (!vp->assoc)
1621 return;
1622
Joe Perchesc96c31e2010-07-26 14:39:58 -07001623 wiphy_debug(data->hw->wiphy,
1624 "%s: send data::nullfunc to %pM ps=%d\n",
1625 __func__, vp->bssid, ps);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001626
1627 skb = dev_alloc_skb(sizeof(*hdr));
1628 if (!skb)
1629 return;
1630 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
1631 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1632 IEEE80211_STYPE_NULLFUNC |
1633 (ps ? IEEE80211_FCTL_PM : 0));
1634 hdr->duration_id = cpu_to_le16(0);
1635 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
1636 memcpy(hdr->addr2, mac, ETH_ALEN);
1637 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
Javier Lopez78825132011-06-01 11:26:13 +02001638
Johannes Berge8261172012-07-27 19:48:26 +02001639 rcu_read_lock();
1640 mac80211_hwsim_tx_frame(data->hw, skb,
1641 rcu_dereference(vif->chanctx_conf)->channel);
1642 rcu_read_unlock();
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001643}
1644
1645
1646static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
1647 struct ieee80211_vif *vif)
1648{
1649 struct mac80211_hwsim_data *data = dat;
1650 hwsim_send_nullfunc(data, mac, vif, 1);
1651}
1652
1653
1654static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
1655 struct ieee80211_vif *vif)
1656{
1657 struct mac80211_hwsim_data *data = dat;
1658 hwsim_send_nullfunc(data, mac, vif, 0);
1659}
1660
1661
1662static int hwsim_fops_ps_read(void *dat, u64 *val)
1663{
1664 struct mac80211_hwsim_data *data = dat;
1665 *val = data->ps;
1666 return 0;
1667}
1668
1669static int hwsim_fops_ps_write(void *dat, u64 val)
1670{
1671 struct mac80211_hwsim_data *data = dat;
1672 enum ps_mode old_ps;
1673
1674 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
1675 val != PS_MANUAL_POLL)
1676 return -EINVAL;
1677
1678 old_ps = data->ps;
1679 data->ps = val;
1680
1681 if (val == PS_MANUAL_POLL) {
1682 ieee80211_iterate_active_interfaces(data->hw,
1683 hwsim_send_ps_poll, data);
1684 data->ps_poll_pending = true;
1685 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
1686 ieee80211_iterate_active_interfaces(data->hw,
1687 hwsim_send_nullfunc_ps,
1688 data);
1689 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
1690 ieee80211_iterate_active_interfaces(data->hw,
1691 hwsim_send_nullfunc_no_ps,
1692 data);
1693 }
1694
1695 return 0;
1696}
1697
1698DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
1699 "%llu\n");
1700
1701
Daniel Wagner73606d02009-05-18 19:49:25 +02001702static int hwsim_fops_group_read(void *dat, u64 *val)
1703{
1704 struct mac80211_hwsim_data *data = dat;
1705 *val = data->group;
1706 return 0;
1707}
1708
1709static int hwsim_fops_group_write(void *dat, u64 val)
1710{
1711 struct mac80211_hwsim_data *data = dat;
1712 data->group = val;
1713 return 0;
1714}
1715
1716DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
1717 hwsim_fops_group_read, hwsim_fops_group_write,
1718 "%llx\n");
1719
Javier Cardonaf483ad22012-03-31 11:31:30 -07001720static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr(
Javier Lopez78825132011-06-01 11:26:13 +02001721 struct mac_address *addr)
1722{
1723 struct mac80211_hwsim_data *data;
1724 bool _found = false;
1725
1726 spin_lock_bh(&hwsim_radio_lock);
1727 list_for_each_entry(data, &hwsim_radios, list) {
1728 if (memcmp(data->addresses[1].addr, addr,
1729 sizeof(struct mac_address)) == 0) {
1730 _found = true;
1731 break;
1732 }
1733 }
1734 spin_unlock_bh(&hwsim_radio_lock);
1735
1736 if (!_found)
1737 return NULL;
1738
1739 return data;
1740}
1741
1742static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
1743 struct genl_info *info)
1744{
1745
1746 struct ieee80211_hdr *hdr;
1747 struct mac80211_hwsim_data *data2;
1748 struct ieee80211_tx_info *txi;
1749 struct hwsim_tx_rate *tx_attempts;
Johannes Bergd0f718c2012-06-25 14:46:44 +02001750 unsigned long ret_skb_ptr;
Javier Lopez78825132011-06-01 11:26:13 +02001751 struct sk_buff *skb, *tmp;
1752 struct mac_address *src;
1753 unsigned int hwsim_flags;
1754
1755 int i;
1756 bool found = false;
1757
1758 if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] ||
1759 !info->attrs[HWSIM_ATTR_FLAGS] ||
1760 !info->attrs[HWSIM_ATTR_COOKIE] ||
1761 !info->attrs[HWSIM_ATTR_TX_INFO])
1762 goto out;
1763
1764 src = (struct mac_address *)nla_data(
1765 info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]);
1766 hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]);
1767
Johannes Bergd0f718c2012-06-25 14:46:44 +02001768 ret_skb_ptr = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]);
Javier Lopez78825132011-06-01 11:26:13 +02001769
1770 data2 = get_hwsim_data_ref_from_addr(src);
1771
1772 if (data2 == NULL)
1773 goto out;
1774
1775 /* look for the skb matching the cookie passed back from user */
1776 skb_queue_walk_safe(&data2->pending, skb, tmp) {
Johannes Bergd0f718c2012-06-25 14:46:44 +02001777 if ((unsigned long)skb == ret_skb_ptr) {
Javier Lopez78825132011-06-01 11:26:13 +02001778 skb_unlink(skb, &data2->pending);
1779 found = true;
1780 break;
1781 }
1782 }
1783
1784 /* not found */
1785 if (!found)
1786 goto out;
1787
1788 /* Tx info received because the frame was broadcasted on user space,
1789 so we get all the necessary info: tx attempts and skb control buff */
1790
1791 tx_attempts = (struct hwsim_tx_rate *)nla_data(
1792 info->attrs[HWSIM_ATTR_TX_INFO]);
1793
1794 /* now send back TX status */
1795 txi = IEEE80211_SKB_CB(skb);
1796
Javier Lopez78825132011-06-01 11:26:13 +02001797 ieee80211_tx_info_clear_status(txi);
1798
1799 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
1800 txi->status.rates[i].idx = tx_attempts[i].idx;
1801 txi->status.rates[i].count = tx_attempts[i].count;
1802 /*txi->status.rates[i].flags = 0;*/
1803 }
1804
1805 txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1806
1807 if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) &&
1808 (hwsim_flags & HWSIM_TX_STAT_ACK)) {
1809 if (skb->len >= 16) {
1810 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge8261172012-07-27 19:48:26 +02001811 mac80211_hwsim_monitor_ack(txi->rate_driver_data[0],
1812 hdr->addr2);
Javier Lopez78825132011-06-01 11:26:13 +02001813 }
Qasim Javed06cf5c42012-06-05 01:25:44 -05001814 txi->flags |= IEEE80211_TX_STAT_ACK;
Javier Lopez78825132011-06-01 11:26:13 +02001815 }
1816 ieee80211_tx_status_irqsafe(data2->hw, skb);
1817 return 0;
1818out:
1819 return -EINVAL;
1820
1821}
1822
1823static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
1824 struct genl_info *info)
1825{
1826
Johannes Berge8261172012-07-27 19:48:26 +02001827 struct mac80211_hwsim_data *data2;
Javier Lopez78825132011-06-01 11:26:13 +02001828 struct ieee80211_rx_status rx_status;
1829 struct mac_address *dst;
1830 int frame_data_len;
1831 char *frame_data;
1832 struct sk_buff *skb = NULL;
1833
1834 if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] ||
Johannes Berge8261172012-07-27 19:48:26 +02001835 !info->attrs[HWSIM_ATTR_FRAME] ||
1836 !info->attrs[HWSIM_ATTR_RX_RATE] ||
1837 !info->attrs[HWSIM_ATTR_SIGNAL])
Javier Lopez78825132011-06-01 11:26:13 +02001838 goto out;
1839
1840 dst = (struct mac_address *)nla_data(
1841 info->attrs[HWSIM_ATTR_ADDR_RECEIVER]);
1842
1843 frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]);
1844 frame_data = (char *)nla_data(info->attrs[HWSIM_ATTR_FRAME]);
1845
1846 /* Allocate new skb here */
1847 skb = alloc_skb(frame_data_len, GFP_KERNEL);
1848 if (skb == NULL)
1849 goto err;
1850
1851 if (frame_data_len <= IEEE80211_MAX_DATA_LEN) {
1852 /* Copy the data */
1853 memcpy(skb_put(skb, frame_data_len), frame_data,
1854 frame_data_len);
1855 } else
1856 goto err;
1857
1858 data2 = get_hwsim_data_ref_from_addr(dst);
1859
1860 if (data2 == NULL)
1861 goto out;
1862
1863 /* check if radio is configured properly */
1864
Johannes Berge8261172012-07-27 19:48:26 +02001865 if (data2->idle || !data2->started)
Javier Lopez78825132011-06-01 11:26:13 +02001866 goto out;
1867
1868 /*A frame is received from user space*/
1869 memset(&rx_status, 0, sizeof(rx_status));
1870 rx_status.freq = data2->channel->center_freq;
1871 rx_status.band = data2->channel->band;
1872 rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
1873 rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
1874
1875 memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status));
1876 ieee80211_rx_irqsafe(data2->hw, skb);
1877
1878 return 0;
1879err:
Masanari Iidac3938622012-02-17 23:04:10 +09001880 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02001881 goto out;
1882out:
1883 dev_kfree_skb(skb);
1884 return -EINVAL;
1885}
1886
1887static int hwsim_register_received_nl(struct sk_buff *skb_2,
1888 struct genl_info *info)
1889{
1890 if (info == NULL)
1891 goto out;
1892
Eric W. Biederman15e47302012-09-07 20:12:54 +00001893 wmediumd_portid = info->snd_portid;
Javier Lopez78825132011-06-01 11:26:13 +02001894
1895 printk(KERN_DEBUG "mac80211_hwsim: received a REGISTER, "
Eric W. Biederman15e47302012-09-07 20:12:54 +00001896 "switching to wmediumd mode with pid %d\n", info->snd_portid);
Javier Lopez78825132011-06-01 11:26:13 +02001897
1898 return 0;
1899out:
Masanari Iidac3938622012-02-17 23:04:10 +09001900 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02001901 return -EINVAL;
1902}
1903
1904/* Generic Netlink operations array */
1905static struct genl_ops hwsim_ops[] = {
1906 {
1907 .cmd = HWSIM_CMD_REGISTER,
1908 .policy = hwsim_genl_policy,
1909 .doit = hwsim_register_received_nl,
1910 .flags = GENL_ADMIN_PERM,
1911 },
1912 {
1913 .cmd = HWSIM_CMD_FRAME,
1914 .policy = hwsim_genl_policy,
1915 .doit = hwsim_cloned_frame_received_nl,
1916 },
1917 {
1918 .cmd = HWSIM_CMD_TX_INFO_FRAME,
1919 .policy = hwsim_genl_policy,
1920 .doit = hwsim_tx_info_frame_received_nl,
1921 },
1922};
1923
1924static int mac80211_hwsim_netlink_notify(struct notifier_block *nb,
1925 unsigned long state,
1926 void *_notify)
1927{
1928 struct netlink_notify *notify = _notify;
1929
1930 if (state != NETLINK_URELEASE)
1931 return NOTIFY_DONE;
1932
Eric W. Biederman15e47302012-09-07 20:12:54 +00001933 if (notify->portid == wmediumd_portid) {
Javier Lopez78825132011-06-01 11:26:13 +02001934 printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink"
1935 " socket, switching to perfect channel medium\n");
Eric W. Biederman15e47302012-09-07 20:12:54 +00001936 wmediumd_portid = 0;
Javier Lopez78825132011-06-01 11:26:13 +02001937 }
1938 return NOTIFY_DONE;
1939
1940}
1941
1942static struct notifier_block hwsim_netlink_notifier = {
1943 .notifier_call = mac80211_hwsim_netlink_notify,
1944};
1945
1946static int hwsim_init_netlink(void)
1947{
1948 int rc;
Johannes Berge8261172012-07-27 19:48:26 +02001949
1950 /* userspace test API hasn't been adjusted for multi-channel */
1951 if (channels > 1)
1952 return 0;
1953
Javier Lopez78825132011-06-01 11:26:13 +02001954 printk(KERN_INFO "mac80211_hwsim: initializing netlink\n");
1955
Javier Lopez78825132011-06-01 11:26:13 +02001956 rc = genl_register_family_with_ops(&hwsim_genl_family,
1957 hwsim_ops, ARRAY_SIZE(hwsim_ops));
1958 if (rc)
1959 goto failure;
1960
1961 rc = netlink_register_notifier(&hwsim_netlink_notifier);
1962 if (rc)
1963 goto failure;
1964
1965 return 0;
1966
1967failure:
Masanari Iidac3938622012-02-17 23:04:10 +09001968 printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__);
Javier Lopez78825132011-06-01 11:26:13 +02001969 return -EINVAL;
1970}
1971
1972static void hwsim_exit_netlink(void)
1973{
1974 int ret;
1975
Johannes Berge8261172012-07-27 19:48:26 +02001976 /* userspace test API hasn't been adjusted for multi-channel */
1977 if (channels > 1)
1978 return;
1979
Javier Lopez78825132011-06-01 11:26:13 +02001980 printk(KERN_INFO "mac80211_hwsim: closing netlink\n");
1981 /* unregister the notifier */
1982 netlink_unregister_notifier(&hwsim_netlink_notifier);
1983 /* unregister the family */
1984 ret = genl_unregister_family(&hwsim_genl_family);
1985 if (ret)
1986 printk(KERN_DEBUG "mac80211_hwsim: "
1987 "unregister family %i\n", ret);
1988}
1989
Johannes Berg1ae2fc22012-05-30 14:59:36 +02001990static const struct ieee80211_iface_limit hwsim_if_limits[] = {
1991 { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
1992 { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) |
1993 BIT(NL80211_IFTYPE_P2P_CLIENT) |
1994#ifdef CONFIG_MAC80211_MESH
1995 BIT(NL80211_IFTYPE_MESH_POINT) |
1996#endif
1997 BIT(NL80211_IFTYPE_AP) |
1998 BIT(NL80211_IFTYPE_P2P_GO) },
Johannes Berg8b3d1cc2012-06-19 17:29:29 +02001999 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) },
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002000};
2001
Johannes Berge8261172012-07-27 19:48:26 +02002002static struct ieee80211_iface_combination hwsim_if_comb = {
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002003 .limits = hwsim_if_limits,
2004 .n_limits = ARRAY_SIZE(hwsim_if_limits),
2005 .max_interfaces = 2048,
2006 .num_different_channels = 1,
2007};
2008
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002009static int __init init_mac80211_hwsim(void)
2010{
2011 int i, err = 0;
2012 u8 addr[ETH_ALEN];
2013 struct mac80211_hwsim_data *data;
2014 struct ieee80211_hw *hw;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002015 enum ieee80211_band band;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002016
Johannes Berg0e057d732008-09-12 00:39:22 +02002017 if (radios < 1 || radios > 100)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002018 return -EINVAL;
2019
Johannes Berge8261172012-07-27 19:48:26 +02002020 if (channels < 1)
2021 return -EINVAL;
2022
2023 if (channels > 1) {
2024 hwsim_if_comb.num_different_channels = channels;
Johannes Berg69068032010-02-03 10:47:55 +01002025 mac80211_hwsim_ops.hw_scan = mac80211_hwsim_hw_scan;
Johannes Berge8261172012-07-27 19:48:26 +02002026 mac80211_hwsim_ops.cancel_hw_scan =
2027 mac80211_hwsim_cancel_hw_scan;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002028 mac80211_hwsim_ops.sw_scan_start = NULL;
2029 mac80211_hwsim_ops.sw_scan_complete = NULL;
Johannes Berge8261172012-07-27 19:48:26 +02002030 mac80211_hwsim_ops.remain_on_channel =
2031 mac80211_hwsim_roc;
2032 mac80211_hwsim_ops.cancel_remain_on_channel =
2033 mac80211_hwsim_croc;
2034 mac80211_hwsim_ops.add_chanctx =
2035 mac80211_hwsim_add_chanctx;
2036 mac80211_hwsim_ops.remove_chanctx =
2037 mac80211_hwsim_remove_chanctx;
2038 mac80211_hwsim_ops.change_chanctx =
2039 mac80211_hwsim_change_chanctx;
2040 mac80211_hwsim_ops.assign_vif_chanctx =
2041 mac80211_hwsim_assign_vif_chanctx;
2042 mac80211_hwsim_ops.unassign_vif_chanctx =
2043 mac80211_hwsim_unassign_vif_chanctx;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002044 }
Johannes Berg69068032010-02-03 10:47:55 +01002045
Johannes Berg0e057d732008-09-12 00:39:22 +02002046 spin_lock_init(&hwsim_radio_lock);
2047 INIT_LIST_HEAD(&hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002048
2049 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
Johannes Berg0e057d732008-09-12 00:39:22 +02002050 if (IS_ERR(hwsim_class))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002051 return PTR_ERR(hwsim_class);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002052
2053 memset(addr, 0, ETH_ALEN);
2054 addr[0] = 0x02;
2055
Johannes Berg0e057d732008-09-12 00:39:22 +02002056 for (i = 0; i < radios; i++) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002057 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
2058 i);
2059 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
Johannes Berg0e057d732008-09-12 00:39:22 +02002060 if (!hw) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002061 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
2062 "failed\n");
2063 err = -ENOMEM;
2064 goto failed;
2065 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002066 data = hw->priv;
Johannes Berg0e057d732008-09-12 00:39:22 +02002067 data->hw = hw;
2068
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07002069 data->dev = device_create(hwsim_class, NULL, 0, hw,
2070 "hwsim%d", i);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002071 if (IS_ERR(data->dev)) {
Stephen Rothwelle800f172008-06-16 15:35:10 +10002072 printk(KERN_DEBUG
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07002073 "mac80211_hwsim: device_create "
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002074 "failed (%ld)\n", PTR_ERR(data->dev));
2075 err = -ENOMEM;
Ian Schram3a33cc12008-07-21 13:19:35 -07002076 goto failed_drvdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002077 }
2078 data->dev->driver = &mac80211_hwsim_driver;
Javier Lopez78825132011-06-01 11:26:13 +02002079 skb_queue_head_init(&data->pending);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002080
2081 SET_IEEE80211_DEV(hw, data->dev);
2082 addr[3] = i >> 8;
2083 addr[4] = i;
Johannes Bergef15aac2010-01-20 12:02:33 +01002084 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
2085 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
2086 data->addresses[1].addr[0] |= 0x40;
2087 hw->wiphy->n_addresses = 2;
2088 hw->wiphy->addresses = data->addresses;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002089
Johannes Berg1ae2fc22012-05-30 14:59:36 +02002090 hw->wiphy->iface_combinations = &hwsim_if_comb;
2091 hw->wiphy->n_iface_combinations = 1;
2092
Johannes Berge8261172012-07-27 19:48:26 +02002093 if (channels > 1) {
Johannes Berg8223d2f2010-06-18 12:31:56 +02002094 hw->wiphy->max_scan_ssids = 255;
2095 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
Johannes Berge8261172012-07-27 19:48:26 +02002096 hw->wiphy->max_remain_on_channel_duration = 1000;
Johannes Berg8223d2f2010-06-18 12:31:56 +02002097 }
2098
Johannes Berge8261172012-07-27 19:48:26 +02002099 INIT_DELAYED_WORK(&data->roc_done, hw_roc_done);
2100 INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work);
2101
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002102 hw->channel_change_time = 1;
Johannes Berge8261172012-07-27 19:48:26 +02002103 hw->queues = 5;
2104 hw->offchannel_tx_hw_queue = 4;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07002105 hw->wiphy->interface_modes =
2106 BIT(NL80211_IFTYPE_STATION) |
Andrey Yurovsky55b39612008-10-31 23:23:35 -07002107 BIT(NL80211_IFTYPE_AP) |
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002108 BIT(NL80211_IFTYPE_P2P_CLIENT) |
2109 BIT(NL80211_IFTYPE_P2P_GO) |
Johannes Berg2b2d7792010-08-17 12:08:07 +02002110 BIT(NL80211_IFTYPE_ADHOC) |
Johannes Berg8b3d1cc2012-06-19 17:29:29 +02002111 BIT(NL80211_IFTYPE_MESH_POINT) |
2112 BIT(NL80211_IFTYPE_P2P_DEVICE);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002113
Johannes Berg4b14c962009-07-10 16:56:59 +02002114 hw->flags = IEEE80211_HW_MFP_CAPABLE |
Johannes Berg0f782312009-12-01 13:37:02 +01002115 IEEE80211_HW_SIGNAL_DBM |
2116 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
Johannes Berga75b4362010-05-01 18:53:51 +02002117 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02002118 IEEE80211_HW_AMPDU_AGGREGATION |
Johannes Berge8261172012-07-27 19:48:26 +02002119 IEEE80211_HW_WANT_MONITOR_VIF |
2120 IEEE80211_HW_QUEUE_CONTROL;
Jouni Malinenfa775332009-01-08 13:32:14 +02002121
Johannes Berg81ddbb52012-03-26 18:47:18 +02002122 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
2123 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
Jouni Malinen43bc3e82011-10-23 22:45:27 +03002124
Johannes Berg8aa21e62008-09-11 02:16:36 +02002125 /* ask mac80211 to reserve space for magic */
2126 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
Johannes Berg81c06522008-09-11 02:17:01 +02002127 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
Johannes Berg8aa21e62008-09-11 02:16:36 +02002128
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002129 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
2130 sizeof(hwsim_channels_2ghz));
2131 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
2132 sizeof(hwsim_channels_5ghz));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002133 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002134
2135 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
2136 struct ieee80211_supported_band *sband = &data->bands[band];
2137 switch (band) {
2138 case IEEE80211_BAND_2GHZ:
2139 sband->channels = data->channels_2ghz;
2140 sband->n_channels =
2141 ARRAY_SIZE(hwsim_channels_2ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01002142 sband->bitrates = data->rates;
2143 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002144 break;
2145 case IEEE80211_BAND_5GHZ:
2146 sband->channels = data->channels_5ghz;
2147 sband->n_channels =
2148 ARRAY_SIZE(hwsim_channels_5ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01002149 sband->bitrates = data->rates + 4;
2150 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002151 break;
2152 default:
Johannes Berg1b083ea2012-07-03 13:14:49 +02002153 continue;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002154 }
2155
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08002156 sband->ht_cap.ht_supported = true;
2157 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
2158 IEEE80211_HT_CAP_GRN_FLD |
2159 IEEE80211_HT_CAP_SGI_40 |
2160 IEEE80211_HT_CAP_DSSSCCK40;
2161 sband->ht_cap.ampdu_factor = 0x3;
2162 sband->ht_cap.ampdu_density = 0x6;
2163 memset(&sband->ht_cap.mcs, 0,
2164 sizeof(sband->ht_cap.mcs));
2165 sband->ht_cap.mcs.rx_mask[0] = 0xff;
2166 sband->ht_cap.mcs.rx_mask[1] = 0xff;
2167 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2168
2169 hw->wiphy->bands[band] = sband;
2170 }
Daniel Wagner73606d02009-05-18 19:49:25 +02002171 /* By default all radios are belonging to the first group */
2172 data->group = 1;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04002173 mutex_init(&data->mutex);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002174
Javier Lopez78825132011-06-01 11:26:13 +02002175 /* Enable frame retransmissions for lossy channels */
2176 hw->max_rates = 4;
2177 hw->max_rate_tries = 11;
2178
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002179 /* Work to be done prior to ieee80211_register_hw() */
2180 switch (regtest) {
2181 case HWSIM_REGTEST_DISABLED:
2182 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2183 case HWSIM_REGTEST_DRIVER_REG_ALL:
2184 case HWSIM_REGTEST_DIFF_COUNTRY:
2185 /*
2186 * Nothing to be done for driver regulatory domain
2187 * hints prior to ieee80211_register_hw()
2188 */
2189 break;
2190 case HWSIM_REGTEST_WORLD_ROAM:
2191 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002192 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002193 wiphy_apply_custom_regulatory(hw->wiphy,
2194 &hwsim_world_regdom_custom_01);
2195 }
2196 break;
2197 case HWSIM_REGTEST_CUSTOM_WORLD:
Johannes Berg5be83de2009-11-19 00:56:28 +01002198 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002199 wiphy_apply_custom_regulatory(hw->wiphy,
2200 &hwsim_world_regdom_custom_01);
2201 break;
2202 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2203 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002204 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002205 wiphy_apply_custom_regulatory(hw->wiphy,
2206 &hwsim_world_regdom_custom_01);
2207 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002208 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002209 wiphy_apply_custom_regulatory(hw->wiphy,
2210 &hwsim_world_regdom_custom_02);
2211 }
2212 break;
2213 case HWSIM_REGTEST_STRICT_ALL:
Johannes Berg5be83de2009-11-19 00:56:28 +01002214 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002215 break;
2216 case HWSIM_REGTEST_STRICT_FOLLOW:
2217 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2218 if (i == 0)
Johannes Berg5be83de2009-11-19 00:56:28 +01002219 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002220 break;
2221 case HWSIM_REGTEST_ALL:
2222 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002223 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002224 wiphy_apply_custom_regulatory(hw->wiphy,
2225 &hwsim_world_regdom_custom_01);
2226 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01002227 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002228 wiphy_apply_custom_regulatory(hw->wiphy,
2229 &hwsim_world_regdom_custom_02);
2230 } else if (i == 4)
Johannes Berg5be83de2009-11-19 00:56:28 +01002231 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002232 break;
2233 default:
2234 break;
2235 }
2236
Luis R. Rodriguez98dfaa52009-03-20 23:46:11 -04002237 /* give the regulatory workqueue a chance to run */
2238 if (regtest)
2239 schedule_timeout_interruptible(1);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002240 err = ieee80211_register_hw(hw);
2241 if (err < 0) {
2242 printk(KERN_DEBUG "mac80211_hwsim: "
2243 "ieee80211_register_hw failed (%d)\n", err);
Ian Schram3a33cc12008-07-21 13:19:35 -07002244 goto failed_hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002245 }
2246
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04002247 /* Work to be done after to ieee80211_register_hw() */
2248 switch (regtest) {
2249 case HWSIM_REGTEST_WORLD_ROAM:
2250 case HWSIM_REGTEST_DISABLED:
2251 break;
2252 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
2253 if (!i)
2254 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2255 break;
2256 case HWSIM_REGTEST_DRIVER_REG_ALL:
2257 case HWSIM_REGTEST_STRICT_ALL:
2258 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2259 break;
2260 case HWSIM_REGTEST_DIFF_COUNTRY:
2261 if (i < ARRAY_SIZE(hwsim_alpha2s))
2262 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
2263 break;
2264 case HWSIM_REGTEST_CUSTOM_WORLD:
2265 case HWSIM_REGTEST_CUSTOM_WORLD_2:
2266 /*
2267 * Nothing to be done for custom world regulatory
2268 * domains after to ieee80211_register_hw
2269 */
2270 break;
2271 case HWSIM_REGTEST_STRICT_FOLLOW:
2272 if (i == 0)
2273 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2274 break;
2275 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
2276 if (i == 0)
2277 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2278 else if (i == 1)
2279 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2280 break;
2281 case HWSIM_REGTEST_ALL:
2282 if (i == 2)
2283 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
2284 else if (i == 3)
2285 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
2286 else if (i == 4)
2287 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
2288 break;
2289 default:
2290 break;
2291 }
2292
Joe Perchesc96c31e2010-07-26 14:39:58 -07002293 wiphy_debug(hw->wiphy, "hwaddr %pm registered\n",
2294 hw->wiphy->perm_addr);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002295
Jouni Malinenfc6971d2008-10-30 19:59:05 +02002296 data->debugfs = debugfs_create_dir("hwsim",
2297 hw->wiphy->debugfsdir);
2298 data->debugfs_ps = debugfs_create_file("ps", 0666,
2299 data->debugfs, data,
2300 &hwsim_fops_ps);
Daniel Wagner73606d02009-05-18 19:49:25 +02002301 data->debugfs_group = debugfs_create_file("group", 0666,
2302 data->debugfs, data,
2303 &hwsim_fops_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02002304
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002305 setup_timer(&data->beacon_timer, mac80211_hwsim_beacon,
2306 (unsigned long) hw);
Johannes Berg0e057d732008-09-12 00:39:22 +02002307
2308 list_add_tail(&data->list, &hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002309 }
2310
2311 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
2312 if (hwsim_mon == NULL)
2313 goto failed;
2314
Javier Lopez78825132011-06-01 11:26:13 +02002315 rtnl_lock();
2316
2317 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
Ian Schram3a33cc12008-07-21 13:19:35 -07002318 if (err < 0)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002319 goto failed_mon;
Ian Schram3a33cc12008-07-21 13:19:35 -07002320
Javier Lopez78825132011-06-01 11:26:13 +02002321
2322 err = register_netdevice(hwsim_mon);
2323 if (err < 0)
2324 goto failed_mon;
2325
2326 rtnl_unlock();
2327
2328 err = hwsim_init_netlink();
2329 if (err < 0)
2330 goto failed_nl;
2331
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002332 return 0;
2333
Javier Lopez78825132011-06-01 11:26:13 +02002334failed_nl:
2335 printk(KERN_DEBUG "mac_80211_hwsim: failed initializing netlink\n");
2336 return err;
2337
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002338failed_mon:
2339 rtnl_unlock();
2340 free_netdev(hwsim_mon);
Ian Schram3a33cc12008-07-21 13:19:35 -07002341 mac80211_hwsim_free();
2342 return err;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002343
Ian Schram3a33cc12008-07-21 13:19:35 -07002344failed_hw:
2345 device_unregister(data->dev);
2346failed_drvdata:
2347 ieee80211_free_hw(hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002348failed:
2349 mac80211_hwsim_free();
2350 return err;
2351}
Johannes Bergf8fffc72012-07-27 15:16:02 +02002352module_init(init_mac80211_hwsim);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002353
2354static void __exit exit_mac80211_hwsim(void)
2355{
Johannes Berg0e057d732008-09-12 00:39:22 +02002356 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002357
Javier Lopez78825132011-06-01 11:26:13 +02002358 hwsim_exit_netlink();
2359
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002360 mac80211_hwsim_free();
Johannes Berg5d416352009-07-13 13:04:30 +02002361 unregister_netdev(hwsim_mon);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002362}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03002363module_exit(exit_mac80211_hwsim);