blob: 92b486d46eb9fca3d7e53fa39102574156e4d24c [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>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10/*
11 * TODO:
Johannes Berg2b2d7792010-08-17 12:08:07 +020012 * - Add TSF sync and fix IBSS beacon transmission by adding
13 * competition for "air time" at TBTT
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030014 * - RX filtering based on filter configuration (data->rx_filter)
15 */
16
Johannes Berg0e057d732008-09-12 00:39:22 +020017#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Johannes Berg0e057d732008-09-12 00:39:22 +020019#include <linux/spinlock.h>
Johannes Berg90e30122009-06-18 14:51:12 +020020#include <net/dst.h>
21#include <net/xfrm.h>
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030022#include <net/mac80211.h>
23#include <net/ieee80211_radiotap.h>
24#include <linux/if_arp.h>
25#include <linux/rtnetlink.h>
26#include <linux/etherdevice.h>
Jouni Malinenfc6971d2008-10-30 19:59:05 +020027#include <linux/debugfs.h>
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030028
29MODULE_AUTHOR("Jouni Malinen");
30MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
31MODULE_LICENSE("GPL");
32
33static int radios = 2;
34module_param(radios, int, 0444);
35MODULE_PARM_DESC(radios, "Number of simulated radios");
36
Johannes Berg69068032010-02-03 10:47:55 +010037static bool fake_hw_scan;
38module_param(fake_hw_scan, bool, 0444);
39MODULE_PARM_DESC(fake_hw_scan, "Install fake (no-op) hw-scan handler");
40
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040041/**
42 * enum hwsim_regtest - the type of regulatory tests we offer
43 *
44 * These are the different values you can use for the regtest
45 * module parameter. This is useful to help test world roaming
46 * and the driver regulatory_hint() call and combinations of these.
47 * If you want to do specific alpha2 regulatory domain tests simply
48 * use the userspace regulatory request as that will be respected as
49 * well without the need of this module parameter. This is designed
50 * only for testing the driver regulatory request, world roaming
51 * and all possible combinations.
52 *
53 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
54 * this is the default value.
55 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
56 * hint, only one driver regulatory hint will be sent as such the
57 * secondary radios are expected to follow.
58 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
59 * request with all radios reporting the same regulatory domain.
60 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
61 * different regulatory domains requests. Expected behaviour is for
62 * an intersection to occur but each device will still use their
63 * respective regulatory requested domains. Subsequent radios will
64 * use the resulting intersection.
65 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We acomplish
66 * this by using a custom beacon-capable regulatory domain for the first
67 * radio. All other device world roam.
68 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
69 * domain requests. All radios will adhere to this custom world regulatory
70 * domain.
71 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
72 * domain requests. The first radio will adhere to the first custom world
73 * regulatory domain, the second one to the second custom world regulatory
74 * domain. All other devices will world roam.
75 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
76 * settings, only the first radio will send a regulatory domain request
77 * and use strict settings. The rest of the radios are expected to follow.
78 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
79 * settings. All radios will adhere to this.
80 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
81 * domain settings, combined with secondary driver regulatory domain
82 * settings. The first radio will get a strict regulatory domain setting
83 * using the first driver regulatory request and the second radio will use
84 * non-strict settings using the second driver regulatory request. All
85 * other devices should follow the intersection created between the
86 * first two.
87 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
88 * at least 6 radios for a complete test. We will test in this order:
89 * 1 - driver custom world regulatory domain
90 * 2 - second custom world regulatory domain
91 * 3 - first driver regulatory domain request
92 * 4 - second driver regulatory domain request
93 * 5 - strict regulatory domain settings using the third driver regulatory
94 * domain request
95 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
96 * regulatory requests.
97 */
98enum hwsim_regtest {
99 HWSIM_REGTEST_DISABLED = 0,
100 HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1,
101 HWSIM_REGTEST_DRIVER_REG_ALL = 2,
102 HWSIM_REGTEST_DIFF_COUNTRY = 3,
103 HWSIM_REGTEST_WORLD_ROAM = 4,
104 HWSIM_REGTEST_CUSTOM_WORLD = 5,
105 HWSIM_REGTEST_CUSTOM_WORLD_2 = 6,
106 HWSIM_REGTEST_STRICT_FOLLOW = 7,
107 HWSIM_REGTEST_STRICT_ALL = 8,
108 HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9,
109 HWSIM_REGTEST_ALL = 10,
110};
111
112/* Set to one of the HWSIM_REGTEST_* values above */
113static int regtest = HWSIM_REGTEST_DISABLED;
114module_param(regtest, int, 0444);
115MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
116
117static const char *hwsim_alpha2s[] = {
118 "FI",
119 "AL",
120 "US",
121 "DE",
122 "JP",
123 "AL",
124};
125
126static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
127 .n_reg_rules = 4,
128 .alpha2 = "99",
129 .reg_rules = {
130 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
131 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
132 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
133 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
134 }
135};
136
137static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
138 .n_reg_rules = 2,
139 .alpha2 = "99",
140 .reg_rules = {
141 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
142 REG_RULE(5725-10, 5850+10, 40, 0, 30,
143 NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS),
144 }
145};
146
Johannes Berg8aa21e62008-09-11 02:16:36 +0200147struct hwsim_vif_priv {
148 u32 magic;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200149 u8 bssid[ETH_ALEN];
150 bool assoc;
151 u16 aid;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200152};
153
154#define HWSIM_VIF_MAGIC 0x69537748
155
156static inline void hwsim_check_magic(struct ieee80211_vif *vif)
157{
158 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
159 WARN_ON(vp->magic != HWSIM_VIF_MAGIC);
160}
161
162static inline void hwsim_set_magic(struct ieee80211_vif *vif)
163{
164 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
165 vp->magic = HWSIM_VIF_MAGIC;
166}
167
168static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
169{
170 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
171 vp->magic = 0;
172}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300173
Johannes Berg81c06522008-09-11 02:17:01 +0200174struct hwsim_sta_priv {
175 u32 magic;
176};
177
178#define HWSIM_STA_MAGIC 0x6d537748
179
180static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
181{
182 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200183 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
Johannes Berg81c06522008-09-11 02:17:01 +0200184}
185
186static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
187{
188 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200189 sp->magic = HWSIM_STA_MAGIC;
Johannes Berg81c06522008-09-11 02:17:01 +0200190}
191
192static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
193{
194 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
195 sp->magic = 0;
196}
197
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300198static struct class *hwsim_class;
199
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300200static struct net_device *hwsim_mon; /* global monitor netdev */
201
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800202#define CHAN2G(_freq) { \
203 .band = IEEE80211_BAND_2GHZ, \
204 .center_freq = (_freq), \
205 .hw_value = (_freq), \
206 .max_power = 20, \
207}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300208
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800209#define CHAN5G(_freq) { \
210 .band = IEEE80211_BAND_5GHZ, \
211 .center_freq = (_freq), \
212 .hw_value = (_freq), \
213 .max_power = 20, \
214}
215
216static const struct ieee80211_channel hwsim_channels_2ghz[] = {
217 CHAN2G(2412), /* Channel 1 */
218 CHAN2G(2417), /* Channel 2 */
219 CHAN2G(2422), /* Channel 3 */
220 CHAN2G(2427), /* Channel 4 */
221 CHAN2G(2432), /* Channel 5 */
222 CHAN2G(2437), /* Channel 6 */
223 CHAN2G(2442), /* Channel 7 */
224 CHAN2G(2447), /* Channel 8 */
225 CHAN2G(2452), /* Channel 9 */
226 CHAN2G(2457), /* Channel 10 */
227 CHAN2G(2462), /* Channel 11 */
228 CHAN2G(2467), /* Channel 12 */
229 CHAN2G(2472), /* Channel 13 */
230 CHAN2G(2484), /* Channel 14 */
231};
232
233static const struct ieee80211_channel hwsim_channels_5ghz[] = {
234 CHAN5G(5180), /* Channel 36 */
235 CHAN5G(5200), /* Channel 40 */
236 CHAN5G(5220), /* Channel 44 */
237 CHAN5G(5240), /* Channel 48 */
238
239 CHAN5G(5260), /* Channel 52 */
240 CHAN5G(5280), /* Channel 56 */
241 CHAN5G(5300), /* Channel 60 */
242 CHAN5G(5320), /* Channel 64 */
243
244 CHAN5G(5500), /* Channel 100 */
245 CHAN5G(5520), /* Channel 104 */
246 CHAN5G(5540), /* Channel 108 */
247 CHAN5G(5560), /* Channel 112 */
248 CHAN5G(5580), /* Channel 116 */
249 CHAN5G(5600), /* Channel 120 */
250 CHAN5G(5620), /* Channel 124 */
251 CHAN5G(5640), /* Channel 128 */
252 CHAN5G(5660), /* Channel 132 */
253 CHAN5G(5680), /* Channel 136 */
254 CHAN5G(5700), /* Channel 140 */
255
256 CHAN5G(5745), /* Channel 149 */
257 CHAN5G(5765), /* Channel 153 */
258 CHAN5G(5785), /* Channel 157 */
259 CHAN5G(5805), /* Channel 161 */
260 CHAN5G(5825), /* Channel 165 */
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300261};
262
263static const struct ieee80211_rate hwsim_rates[] = {
264 { .bitrate = 10 },
265 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
266 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
267 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
268 { .bitrate = 60 },
269 { .bitrate = 90 },
270 { .bitrate = 120 },
271 { .bitrate = 180 },
272 { .bitrate = 240 },
273 { .bitrate = 360 },
274 { .bitrate = 480 },
275 { .bitrate = 540 }
276};
277
Johannes Berg0e057d732008-09-12 00:39:22 +0200278static spinlock_t hwsim_radio_lock;
279static struct list_head hwsim_radios;
280
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300281struct mac80211_hwsim_data {
Johannes Berg0e057d732008-09-12 00:39:22 +0200282 struct list_head list;
283 struct ieee80211_hw *hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300284 struct device *dev;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800285 struct ieee80211_supported_band bands[2];
286 struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)];
287 struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)];
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300288 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
289
Johannes Bergef15aac2010-01-20 12:02:33 +0100290 struct mac_address addresses[2];
291
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300292 struct ieee80211_channel *channel;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300293 unsigned long beacon_int; /* in jiffies unit */
294 unsigned int rx_filter;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400295 bool started, idle, scanning;
296 struct mutex mutex;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300297 struct timer_list beacon_timer;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200298 enum ps_mode {
299 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
300 } ps;
301 bool ps_poll_pending;
302 struct dentry *debugfs;
303 struct dentry *debugfs_ps;
Daniel Wagner73606d02009-05-18 19:49:25 +0200304
305 /*
306 * Only radios in the same group can communicate together (the
307 * channel has to match too). Each bit represents a group. A
308 * radio can be in more then one group.
309 */
310 u64 group;
311 struct dentry *debugfs_group;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300312};
313
314
315struct hwsim_radiotap_hdr {
316 struct ieee80211_radiotap_header hdr;
317 u8 rt_flags;
318 u8 rt_rate;
319 __le16 rt_channel;
320 __le16 rt_chbitmask;
Eric Dumazetba2d3582010-06-02 18:10:09 +0000321} __packed;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300322
323
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000324static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
325 struct net_device *dev)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300326{
327 /* TODO: allow packet injection */
328 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000329 return NETDEV_TX_OK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300330}
331
332
333static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
334 struct sk_buff *tx_skb)
335{
336 struct mac80211_hwsim_data *data = hw->priv;
337 struct sk_buff *skb;
338 struct hwsim_radiotap_hdr *hdr;
339 u16 flags;
340 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
341 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
342
343 if (!netif_running(hwsim_mon))
344 return;
345
346 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
347 if (skb == NULL)
348 return;
349
350 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
351 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
352 hdr->hdr.it_pad = 0;
353 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
Jouni Malinenf248f102008-06-13 19:44:47 +0300354 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
355 (1 << IEEE80211_RADIOTAP_RATE) |
356 (1 << IEEE80211_RADIOTAP_CHANNEL));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300357 hdr->rt_flags = 0;
358 hdr->rt_rate = txrate->bitrate / 5;
Johannes Bergdf70b4a2008-07-10 11:56:33 +0200359 hdr->rt_channel = cpu_to_le16(data->channel->center_freq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300360 flags = IEEE80211_CHAN_2GHZ;
361 if (txrate->flags & IEEE80211_RATE_ERP_G)
362 flags |= IEEE80211_CHAN_OFDM;
363 else
364 flags |= IEEE80211_CHAN_CCK;
365 hdr->rt_chbitmask = cpu_to_le16(flags);
366
367 skb->dev = hwsim_mon;
368 skb_set_mac_header(skb, 0);
369 skb->ip_summed = CHECKSUM_UNNECESSARY;
370 skb->pkt_type = PACKET_OTHERHOST;
Jouni Malinenf248f102008-06-13 19:44:47 +0300371 skb->protocol = htons(ETH_P_802_2);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300372 memset(skb->cb, 0, sizeof(skb->cb));
373 netif_rx(skb);
374}
375
376
Jouni Malinen6c085222009-11-01 11:31:45 +0200377static void mac80211_hwsim_monitor_ack(struct ieee80211_hw *hw, const u8 *addr)
378{
379 struct mac80211_hwsim_data *data = hw->priv;
380 struct sk_buff *skb;
381 struct hwsim_radiotap_hdr *hdr;
382 u16 flags;
383 struct ieee80211_hdr *hdr11;
384
385 if (!netif_running(hwsim_mon))
386 return;
387
388 skb = dev_alloc_skb(100);
389 if (skb == NULL)
390 return;
391
392 hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr));
393 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
394 hdr->hdr.it_pad = 0;
395 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
396 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
397 (1 << IEEE80211_RADIOTAP_CHANNEL));
398 hdr->rt_flags = 0;
399 hdr->rt_rate = 0;
400 hdr->rt_channel = cpu_to_le16(data->channel->center_freq);
401 flags = IEEE80211_CHAN_2GHZ;
402 hdr->rt_chbitmask = cpu_to_le16(flags);
403
404 hdr11 = (struct ieee80211_hdr *) skb_put(skb, 10);
405 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
406 IEEE80211_STYPE_ACK);
407 hdr11->duration_id = cpu_to_le16(0);
408 memcpy(hdr11->addr1, addr, ETH_ALEN);
409
410 skb->dev = hwsim_mon;
411 skb_set_mac_header(skb, 0);
412 skb->ip_summed = CHECKSUM_UNNECESSARY;
413 skb->pkt_type = PACKET_OTHERHOST;
414 skb->protocol = htons(ETH_P_802_2);
415 memset(skb->cb, 0, sizeof(skb->cb));
416 netif_rx(skb);
417}
418
419
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200420static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
421 struct sk_buff *skb)
422{
423 switch (data->ps) {
424 case PS_DISABLED:
425 return true;
426 case PS_ENABLED:
427 return false;
428 case PS_AUTO_POLL:
429 /* TODO: accept (some) Beacons by default and other frames only
430 * if pending PS-Poll has been sent */
431 return true;
432 case PS_MANUAL_POLL:
433 /* Allow unicast frames to own address if there is a pending
434 * PS-Poll */
435 if (data->ps_poll_pending &&
436 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
437 ETH_ALEN) == 0) {
438 data->ps_poll_pending = false;
439 return true;
440 }
441 return false;
442 }
443
444 return true;
445}
446
447
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200448struct mac80211_hwsim_addr_match_data {
449 bool ret;
450 const u8 *addr;
451};
452
453static void mac80211_hwsim_addr_iter(void *data, u8 *mac,
454 struct ieee80211_vif *vif)
455{
456 struct mac80211_hwsim_addr_match_data *md = data;
457 if (memcmp(mac, md->addr, ETH_ALEN) == 0)
458 md->ret = true;
459}
460
461
462static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data,
463 const u8 *addr)
464{
465 struct mac80211_hwsim_addr_match_data md;
466
467 if (memcmp(addr, data->hw->wiphy->perm_addr, ETH_ALEN) == 0)
468 return true;
469
470 md.ret = false;
471 md.addr = addr;
472 ieee80211_iterate_active_interfaces_atomic(data->hw,
473 mac80211_hwsim_addr_iter,
474 &md);
475
476 return md.ret;
477}
478
479
Johannes Berg0e057d732008-09-12 00:39:22 +0200480static bool mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
481 struct sk_buff *skb)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300482{
Johannes Berg0e057d732008-09-12 00:39:22 +0200483 struct mac80211_hwsim_data *data = hw->priv, *data2;
484 bool ack = false;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300485 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300486 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300487 struct ieee80211_rx_status rx_status;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300488
Jouni Malinen70541832009-11-01 11:30:48 +0200489 if (data->idle) {
Joe Perches5db55842010-08-11 19:11:19 -0700490 wiphy_debug(hw->wiphy, "Trying to TX when idle - reject\n");
Jouni Malinen70541832009-11-01 11:30:48 +0200491 return false;
492 }
493
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300494 memset(&rx_status, 0, sizeof(rx_status));
495 /* TODO: set mactime */
496 rx_status.freq = data->channel->center_freq;
497 rx_status.band = data->channel->band;
Johannes Berge6a98542008-10-21 12:40:02 +0200498 rx_status.rate_idx = info->control.rates[0].idx;
Johannes Berg4b14c962009-07-10 16:56:59 +0200499 /* TODO: simulate real signal strength (and optional packet loss) */
500 rx_status.signal = -50;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300501
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200502 if (data->ps != PS_DISABLED)
503 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
504
Johannes Berg90e30122009-06-18 14:51:12 +0200505 /* release the skb's source info */
506 skb_orphan(skb);
John W. Linvillec0acf382009-06-30 16:55:52 -0400507 skb_dst_drop(skb);
Johannes Berg90e30122009-06-18 14:51:12 +0200508 skb->mark = 0;
509 secpath_reset(skb);
510 nf_reset(skb);
511
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300512 /* Copy skb to all enabled radios that are on the current frequency */
Johannes Berg0e057d732008-09-12 00:39:22 +0200513 spin_lock(&hwsim_radio_lock);
514 list_for_each_entry(data2, &hwsim_radios, list) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300515 struct sk_buff *nskb;
516
Johannes Berg0e057d732008-09-12 00:39:22 +0200517 if (data == data2)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300518 continue;
Johannes Berg0e057d732008-09-12 00:39:22 +0200519
Jouni Malinen70541832009-11-01 11:30:48 +0200520 if (data2->idle || !data2->started ||
521 !hwsim_ps_rx_ok(data2, skb) ||
Johannes Berg4ff17662009-07-07 03:43:02 +0200522 !data->channel || !data2->channel ||
Daniel Wagner73606d02009-05-18 19:49:25 +0200523 data->channel->center_freq != data2->channel->center_freq ||
524 !(data->group & data2->group))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300525 continue;
526
527 nskb = skb_copy(skb, GFP_ATOMIC);
528 if (nskb == NULL)
529 continue;
530
Jouni Malinen265dc7f2009-12-04 19:10:34 +0200531 if (mac80211_hwsim_addr_match(data2, hdr->addr1))
Johannes Berg0e057d732008-09-12 00:39:22 +0200532 ack = true;
Johannes Bergf1d58c22009-06-17 13:13:00 +0200533 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
534 ieee80211_rx_irqsafe(data2->hw, nskb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300535 }
Johannes Berg0e057d732008-09-12 00:39:22 +0200536 spin_unlock(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300537
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300538 return ack;
539}
540
541
542static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
543{
Johannes Berg0e057d732008-09-12 00:39:22 +0200544 bool ack;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300545 struct ieee80211_tx_info *txi;
546
547 mac80211_hwsim_monitor_rx(hw, skb);
548
549 if (skb->len < 10) {
550 /* Should not happen; just a sanity check for addr1 use */
551 dev_kfree_skb(skb);
552 return NETDEV_TX_OK;
553 }
554
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300555 ack = mac80211_hwsim_tx_frame(hw, skb);
Jouni Malinen6c085222009-11-01 11:31:45 +0200556 if (ack && skb->len >= 16) {
557 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
558 mac80211_hwsim_monitor_ack(hw, hdr->addr2);
559 }
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300560
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300561 txi = IEEE80211_SKB_CB(skb);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200562
Johannes Berg25d834e2008-09-12 22:52:47 +0200563 if (txi->control.vif)
564 hwsim_check_magic(txi->control.vif);
Johannes Berg81c06522008-09-11 02:17:01 +0200565 if (txi->control.sta)
566 hwsim_check_sta_magic(txi->control.sta);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200567
Johannes Berge6a98542008-10-21 12:40:02 +0200568 ieee80211_tx_info_clear_status(txi);
569 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
570 txi->flags |= IEEE80211_TX_STAT_ACK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300571 ieee80211_tx_status_irqsafe(hw, skb);
572 return NETDEV_TX_OK;
573}
574
575
576static int mac80211_hwsim_start(struct ieee80211_hw *hw)
577{
578 struct mac80211_hwsim_data *data = hw->priv;
Joe Perchesc96c31e2010-07-26 14:39:58 -0700579 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300580 data->started = 1;
581 return 0;
582}
583
584
585static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
586{
587 struct mac80211_hwsim_data *data = hw->priv;
588 data->started = 0;
Jouni Malinenab1ef982008-10-30 16:59:25 +0200589 del_timer(&data->beacon_timer);
Joe Perchesc96c31e2010-07-26 14:39:58 -0700590 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300591}
592
593
594static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
Johannes Berg1ed32e42009-12-23 13:15:45 +0100595 struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300596{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700597 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
598 __func__, vif->type, vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100599 hwsim_set_magic(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300600 return 0;
601}
602
603
Johannes Bergc35d0272010-08-27 12:35:59 +0200604static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw,
605 struct ieee80211_vif *vif,
606 enum nl80211_iftype newtype)
607{
608 wiphy_debug(hw->wiphy,
609 "%s (old type=%d, new type=%d, mac_addr=%pM)\n",
610 __func__, vif->type, newtype, vif->addr);
611 hwsim_check_magic(vif);
612
613 return 0;
614}
615
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300616static void mac80211_hwsim_remove_interface(
Johannes Berg1ed32e42009-12-23 13:15:45 +0100617 struct ieee80211_hw *hw, struct ieee80211_vif *vif)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300618{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700619 wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n",
620 __func__, vif->type, vif->addr);
Johannes Berg1ed32e42009-12-23 13:15:45 +0100621 hwsim_check_magic(vif);
622 hwsim_clear_magic(vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300623}
624
625
626static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
627 struct ieee80211_vif *vif)
628{
629 struct ieee80211_hw *hw = arg;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300630 struct sk_buff *skb;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300631 struct ieee80211_tx_info *info;
632
Johannes Berg8aa21e62008-09-11 02:16:36 +0200633 hwsim_check_magic(vif);
634
Andrey Yurovsky55b39612008-10-31 23:23:35 -0700635 if (vif->type != NL80211_IFTYPE_AP &&
Johannes Berg2b2d7792010-08-17 12:08:07 +0200636 vif->type != NL80211_IFTYPE_MESH_POINT &&
637 vif->type != NL80211_IFTYPE_ADHOC)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300638 return;
639
640 skb = ieee80211_beacon_get(hw, vif);
641 if (skb == NULL)
642 return;
643 info = IEEE80211_SKB_CB(skb);
644
645 mac80211_hwsim_monitor_rx(hw, skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300646 mac80211_hwsim_tx_frame(hw, skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300647 dev_kfree_skb(skb);
648}
649
650
651static void mac80211_hwsim_beacon(unsigned long arg)
652{
653 struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
654 struct mac80211_hwsim_data *data = hw->priv;
655
Johannes Berg4c4c6712009-06-01 14:29:52 +0200656 if (!data->started)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300657 return;
658
Jouni Malinenf248f102008-06-13 19:44:47 +0300659 ieee80211_iterate_active_interfaces_atomic(
660 hw, mac80211_hwsim_beacon_tx, hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300661
662 data->beacon_timer.expires = jiffies + data->beacon_int;
663 add_timer(&data->beacon_timer);
664}
665
Johannes Berg0aaffa92010-05-05 15:28:27 +0200666static const char *hwsim_chantypes[] = {
667 [NL80211_CHAN_NO_HT] = "noht",
668 [NL80211_CHAN_HT20] = "ht20",
669 [NL80211_CHAN_HT40MINUS] = "ht40-",
670 [NL80211_CHAN_HT40PLUS] = "ht40+",
671};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300672
Johannes Berge8975582008-10-09 12:18:51 +0200673static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300674{
675 struct mac80211_hwsim_data *data = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +0200676 struct ieee80211_conf *conf = &hw->conf;
Johannes Berg0f782312009-12-01 13:37:02 +0100677 static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
678 [IEEE80211_SMPS_AUTOMATIC] = "auto",
679 [IEEE80211_SMPS_OFF] = "off",
680 [IEEE80211_SMPS_STATIC] = "static",
681 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
682 };
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300683
Joe Perchesc96c31e2010-07-26 14:39:58 -0700684 wiphy_debug(hw->wiphy,
685 "%s (freq=%d/%s idle=%d ps=%d smps=%s)\n",
686 __func__,
687 conf->channel->center_freq,
688 hwsim_chantypes[conf->channel_type],
689 !!(conf->flags & IEEE80211_CONF_IDLE),
690 !!(conf->flags & IEEE80211_CONF_PS),
691 smps_modes[conf->smps_mode]);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300692
Jouni Malinen70541832009-11-01 11:30:48 +0200693 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
694
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300695 data->channel = conf->channel;
Johannes Berg4c4c6712009-06-01 14:29:52 +0200696 if (!data->started || !data->beacon_int)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300697 del_timer(&data->beacon_timer);
698 else
699 mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
700
701 return 0;
702}
703
704
705static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
706 unsigned int changed_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200707 unsigned int *total_flags,u64 multicast)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300708{
709 struct mac80211_hwsim_data *data = hw->priv;
710
Joe Perchesc96c31e2010-07-26 14:39:58 -0700711 wiphy_debug(hw->wiphy, "%s\n", __func__);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300712
713 data->rx_filter = 0;
714 if (*total_flags & FIF_PROMISC_IN_BSS)
715 data->rx_filter |= FIF_PROMISC_IN_BSS;
716 if (*total_flags & FIF_ALLMULTI)
717 data->rx_filter |= FIF_ALLMULTI;
718
719 *total_flags = data->rx_filter;
720}
721
Johannes Berg8aa21e62008-09-11 02:16:36 +0200722static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
723 struct ieee80211_vif *vif,
724 struct ieee80211_bss_conf *info,
725 u32 changed)
726{
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200727 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200728 struct mac80211_hwsim_data *data = hw->priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200729
Johannes Berg8aa21e62008-09-11 02:16:36 +0200730 hwsim_check_magic(vif);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200731
Joe Perchesc96c31e2010-07-26 14:39:58 -0700732 wiphy_debug(hw->wiphy, "%s(changed=0x%x)\n", __func__, changed);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200733
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200734 if (changed & BSS_CHANGED_BSSID) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700735 wiphy_debug(hw->wiphy, "%s: BSSID changed: %pM\n",
736 __func__, info->bssid);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200737 memcpy(vp->bssid, info->bssid, ETH_ALEN);
738 }
739
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200740 if (changed & BSS_CHANGED_ASSOC) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700741 wiphy_debug(hw->wiphy, " ASSOC: assoc=%d aid=%d\n",
742 info->assoc, info->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200743 vp->assoc = info->assoc;
744 vp->aid = info->aid;
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200745 }
746
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200747 if (changed & BSS_CHANGED_BEACON_INT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700748 wiphy_debug(hw->wiphy, " BCNINT: %d\n", info->beacon_int);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200749 data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000;
Johannes Bergd91f1902009-04-24 15:13:54 +0200750 if (WARN_ON(!data->beacon_int))
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200751 data->beacon_int = 1;
Jouni Malinenffed1302009-09-26 22:30:15 +0300752 if (data->started)
753 mod_timer(&data->beacon_timer,
754 jiffies + data->beacon_int);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200755 }
756
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200757 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700758 wiphy_debug(hw->wiphy, " ERP_CTS_PROT: %d\n",
759 info->use_cts_prot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200760 }
761
762 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700763 wiphy_debug(hw->wiphy, " ERP_PREAMBLE: %d\n",
764 info->use_short_preamble);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200765 }
766
767 if (changed & BSS_CHANGED_ERP_SLOT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700768 wiphy_debug(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200769 }
770
771 if (changed & BSS_CHANGED_HT) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700772 wiphy_debug(hw->wiphy, " HT: op_mode=0x%x, chantype=%s\n",
773 info->ht_operation_mode,
774 hwsim_chantypes[info->channel_type]);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200775 }
776
777 if (changed & BSS_CHANGED_BASIC_RATES) {
Joe Perchesc96c31e2010-07-26 14:39:58 -0700778 wiphy_debug(hw->wiphy, " BASIC_RATES: 0x%llx\n",
779 (unsigned long long) info->basic_rates);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200780 }
Johannes Berg8aa21e62008-09-11 02:16:36 +0200781}
782
Johannes Berg1d669cb2010-02-19 19:06:55 +0100783static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw,
784 struct ieee80211_vif *vif,
785 struct ieee80211_sta *sta)
786{
787 hwsim_check_magic(vif);
788 hwsim_set_sta_magic(sta);
789
790 return 0;
791}
792
793static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw,
794 struct ieee80211_vif *vif,
795 struct ieee80211_sta *sta)
796{
797 hwsim_check_magic(vif);
798 hwsim_clear_sta_magic(sta);
799
800 return 0;
801}
802
Johannes Berg8aa21e62008-09-11 02:16:36 +0200803static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
804 struct ieee80211_vif *vif,
Johannes Berg17741cd2008-09-11 00:02:02 +0200805 enum sta_notify_cmd cmd,
806 struct ieee80211_sta *sta)
Johannes Berg8aa21e62008-09-11 02:16:36 +0200807{
808 hwsim_check_magic(vif);
Johannes Berg1d669cb2010-02-19 19:06:55 +0100809
Johannes Berg81c06522008-09-11 02:17:01 +0200810 switch (cmd) {
Christian Lamparter89fad572008-12-09 16:28:06 +0100811 case STA_NOTIFY_SLEEP:
812 case STA_NOTIFY_AWAKE:
813 /* TODO: make good use of these flags */
814 break;
Johannes Berg1d669cb2010-02-19 19:06:55 +0100815 default:
816 WARN(1, "Invalid sta notify: %d\n", cmd);
817 break;
Johannes Berg81c06522008-09-11 02:17:01 +0200818 }
819}
820
821static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
822 struct ieee80211_sta *sta,
823 bool set)
824{
825 hwsim_check_sta_magic(sta);
826 return 0;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200827}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300828
Jouni Malinen1e898ff82008-10-30 16:59:23 +0200829static int mac80211_hwsim_conf_tx(
830 struct ieee80211_hw *hw, u16 queue,
831 const struct ieee80211_tx_queue_params *params)
832{
Joe Perchesc96c31e2010-07-26 14:39:58 -0700833 wiphy_debug(hw->wiphy,
834 "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n",
835 __func__, queue,
836 params->txop, params->cw_min,
837 params->cw_max, params->aifs);
Jouni Malinen1e898ff82008-10-30 16:59:23 +0200838 return 0;
839}
840
Holger Schurig12897232010-04-19 10:23:57 +0200841static int mac80211_hwsim_get_survey(
842 struct ieee80211_hw *hw, int idx,
843 struct survey_info *survey)
844{
845 struct ieee80211_conf *conf = &hw->conf;
846
Joe Perchesc96c31e2010-07-26 14:39:58 -0700847 wiphy_debug(hw->wiphy, "%s (idx=%d)\n", __func__, idx);
Holger Schurig12897232010-04-19 10:23:57 +0200848
849 if (idx != 0)
850 return -ENOENT;
851
852 /* Current channel */
853 survey->channel = conf->channel;
854
855 /*
856 * Magically conjured noise level --- this is only ok for simulated hardware.
857 *
858 * A real driver which cannot determine the real channel noise MUST NOT
859 * report any noise, especially not a magically conjured one :-)
860 */
861 survey->filled = SURVEY_INFO_NOISE_DBM;
862 survey->noise = -92;
863
864 return 0;
865}
866
Johannes Bergaff89a92009-07-01 21:26:51 +0200867#ifdef CONFIG_NL80211_TESTMODE
868/*
869 * This section contains example code for using netlink
870 * attributes with the testmode command in nl80211.
871 */
872
873/* These enums need to be kept in sync with userspace */
874enum hwsim_testmode_attr {
875 __HWSIM_TM_ATTR_INVALID = 0,
876 HWSIM_TM_ATTR_CMD = 1,
877 HWSIM_TM_ATTR_PS = 2,
878
879 /* keep last */
880 __HWSIM_TM_ATTR_AFTER_LAST,
881 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
882};
883
884enum hwsim_testmode_cmd {
885 HWSIM_TM_CMD_SET_PS = 0,
886 HWSIM_TM_CMD_GET_PS = 1,
887};
888
889static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
890 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
891 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
892};
893
894static int hwsim_fops_ps_write(void *dat, u64 val);
895
Johannes Berg5bc38192009-07-07 11:00:55 +0200896static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
897 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +0200898{
899 struct mac80211_hwsim_data *hwsim = hw->priv;
900 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
901 struct sk_buff *skb;
902 int err, ps;
903
904 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
905 hwsim_testmode_policy);
906 if (err)
907 return err;
908
909 if (!tb[HWSIM_TM_ATTR_CMD])
910 return -EINVAL;
911
912 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
913 case HWSIM_TM_CMD_SET_PS:
914 if (!tb[HWSIM_TM_ATTR_PS])
915 return -EINVAL;
916 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
917 return hwsim_fops_ps_write(hwsim, ps);
918 case HWSIM_TM_CMD_GET_PS:
919 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
920 nla_total_size(sizeof(u32)));
921 if (!skb)
922 return -ENOMEM;
923 NLA_PUT_U32(skb, HWSIM_TM_ATTR_PS, hwsim->ps);
924 return cfg80211_testmode_reply(skb);
925 default:
926 return -EOPNOTSUPP;
927 }
928
929 nla_put_failure:
930 kfree_skb(skb);
931 return -ENOBUFS;
932}
933#endif
934
Johannes Berg8b73d132009-12-01 14:24:24 +0100935static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw,
936 struct ieee80211_vif *vif,
937 enum ieee80211_ampdu_mlme_action action,
938 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
939{
940 switch (action) {
941 case IEEE80211_AMPDU_TX_START:
942 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
943 break;
944 case IEEE80211_AMPDU_TX_STOP:
945 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
946 break;
947 case IEEE80211_AMPDU_TX_OPERATIONAL:
948 break;
949 case IEEE80211_AMPDU_RX_START:
950 case IEEE80211_AMPDU_RX_STOP:
951 break;
952 default:
953 return -EOPNOTSUPP;
954 }
955
956 return 0;
957}
958
Johannes Berga80f7c02009-12-23 13:15:32 +0100959static void mac80211_hwsim_flush(struct ieee80211_hw *hw, bool drop)
960{
961 /*
962 * In this special case, there's nothing we need to
963 * do because hwsim does transmission synchronously.
964 * In the future, when it does transmissions via
965 * userspace, we may need to do something.
966 */
967}
968
Johannes Berg69068032010-02-03 10:47:55 +0100969struct hw_scan_done {
970 struct delayed_work w;
971 struct ieee80211_hw *hw;
972};
Johannes Berg8b73d132009-12-01 14:24:24 +0100973
Johannes Berg69068032010-02-03 10:47:55 +0100974static void hw_scan_done(struct work_struct *work)
975{
976 struct hw_scan_done *hsd =
977 container_of(work, struct hw_scan_done, w.work);
978
979 ieee80211_scan_completed(hsd->hw, false);
980 kfree(hsd);
981}
982
983static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +0200984 struct ieee80211_vif *vif,
Johannes Berg69068032010-02-03 10:47:55 +0100985 struct cfg80211_scan_request *req)
986{
987 struct hw_scan_done *hsd = kzalloc(sizeof(*hsd), GFP_KERNEL);
988 int i;
989
990 if (!hsd)
991 return -ENOMEM;
992
993 hsd->hw = hw;
994 INIT_DELAYED_WORK(&hsd->w, hw_scan_done);
995
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400996 printk(KERN_DEBUG "hwsim hw_scan request\n");
Johannes Berg69068032010-02-03 10:47:55 +0100997 for (i = 0; i < req->n_channels; i++)
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -0400998 printk(KERN_DEBUG "hwsim hw_scan freq %d\n",
Johannes Berg69068032010-02-03 10:47:55 +0100999 req->channels[i]->center_freq);
1000
1001 ieee80211_queue_delayed_work(hw, &hsd->w, 2 * HZ);
1002
1003 return 0;
1004}
1005
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001006static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw)
1007{
1008 struct mac80211_hwsim_data *hwsim = hw->priv;
1009
1010 mutex_lock(&hwsim->mutex);
1011
1012 if (hwsim->scanning) {
1013 printk(KERN_DEBUG "two hwsim sw_scans detected!\n");
1014 goto out;
1015 }
1016
1017 printk(KERN_DEBUG "hwsim sw_scan request, prepping stuff\n");
1018 hwsim->scanning = true;
1019
1020out:
1021 mutex_unlock(&hwsim->mutex);
1022}
1023
1024static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw)
1025{
1026 struct mac80211_hwsim_data *hwsim = hw->priv;
1027
1028 mutex_lock(&hwsim->mutex);
1029
1030 printk(KERN_DEBUG "hwsim sw_scan_complete\n");
Johannes Berg23ff98f2010-05-03 09:21:14 +02001031 hwsim->scanning = false;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001032
1033 mutex_unlock(&hwsim->mutex);
1034}
1035
Johannes Berg69068032010-02-03 10:47:55 +01001036static struct ieee80211_ops mac80211_hwsim_ops =
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001037{
1038 .tx = mac80211_hwsim_tx,
1039 .start = mac80211_hwsim_start,
1040 .stop = mac80211_hwsim_stop,
1041 .add_interface = mac80211_hwsim_add_interface,
Johannes Bergc35d0272010-08-27 12:35:59 +02001042 .change_interface = mac80211_hwsim_change_interface,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001043 .remove_interface = mac80211_hwsim_remove_interface,
1044 .config = mac80211_hwsim_config,
1045 .configure_filter = mac80211_hwsim_configure_filter,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001046 .bss_info_changed = mac80211_hwsim_bss_info_changed,
Johannes Berg1d669cb2010-02-19 19:06:55 +01001047 .sta_add = mac80211_hwsim_sta_add,
1048 .sta_remove = mac80211_hwsim_sta_remove,
Johannes Berg8aa21e62008-09-11 02:16:36 +02001049 .sta_notify = mac80211_hwsim_sta_notify,
Johannes Berg81c06522008-09-11 02:17:01 +02001050 .set_tim = mac80211_hwsim_set_tim,
Jouni Malinen1e898ff82008-10-30 16:59:23 +02001051 .conf_tx = mac80211_hwsim_conf_tx,
Holger Schurig12897232010-04-19 10:23:57 +02001052 .get_survey = mac80211_hwsim_get_survey,
Johannes Bergaff89a92009-07-01 21:26:51 +02001053 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd)
Johannes Berg8b73d132009-12-01 14:24:24 +01001054 .ampdu_action = mac80211_hwsim_ampdu_action,
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001055 .sw_scan_start = mac80211_hwsim_sw_scan,
1056 .sw_scan_complete = mac80211_hwsim_sw_scan_complete,
Johannes Berga80f7c02009-12-23 13:15:32 +01001057 .flush = mac80211_hwsim_flush,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001058};
1059
1060
1061static void mac80211_hwsim_free(void)
1062{
Johannes Berg0e057d732008-09-12 00:39:22 +02001063 struct list_head tmplist, *i, *tmp;
Johannes Berge603d9d2009-07-13 13:25:58 +02001064 struct mac80211_hwsim_data *data, *tmpdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001065
Johannes Berg0e057d732008-09-12 00:39:22 +02001066 INIT_LIST_HEAD(&tmplist);
1067
1068 spin_lock_bh(&hwsim_radio_lock);
1069 list_for_each_safe(i, tmp, &hwsim_radios)
1070 list_move(i, &tmplist);
1071 spin_unlock_bh(&hwsim_radio_lock);
1072
Johannes Berge603d9d2009-07-13 13:25:58 +02001073 list_for_each_entry_safe(data, tmpdata, &tmplist, list) {
Daniel Wagner73606d02009-05-18 19:49:25 +02001074 debugfs_remove(data->debugfs_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001075 debugfs_remove(data->debugfs_ps);
1076 debugfs_remove(data->debugfs);
Johannes Berg0e057d732008-09-12 00:39:22 +02001077 ieee80211_unregister_hw(data->hw);
1078 device_unregister(data->dev);
1079 ieee80211_free_hw(data->hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001080 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001081 class_destroy(hwsim_class);
1082}
1083
1084
1085static struct device_driver mac80211_hwsim_driver = {
1086 .name = "mac80211_hwsim"
1087};
1088
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001089static const struct net_device_ops hwsim_netdev_ops = {
1090 .ndo_start_xmit = hwsim_mon_xmit,
1091 .ndo_change_mtu = eth_change_mtu,
1092 .ndo_set_mac_address = eth_mac_addr,
1093 .ndo_validate_addr = eth_validate_addr,
1094};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001095
1096static void hwsim_mon_setup(struct net_device *dev)
1097{
Stephen Hemminger98d2faa2009-03-20 19:36:33 +00001098 dev->netdev_ops = &hwsim_netdev_ops;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001099 dev->destructor = free_netdev;
1100 ether_setup(dev);
1101 dev->tx_queue_len = 0;
1102 dev->type = ARPHRD_IEEE80211_RADIOTAP;
1103 memset(dev->dev_addr, 0, ETH_ALEN);
1104 dev->dev_addr[0] = 0x12;
1105}
1106
1107
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001108static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
1109{
1110 struct mac80211_hwsim_data *data = dat;
1111 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001112 struct sk_buff *skb;
1113 struct ieee80211_pspoll *pspoll;
1114
1115 if (!vp->assoc)
1116 return;
1117
Joe Perchesc96c31e2010-07-26 14:39:58 -07001118 wiphy_debug(data->hw->wiphy,
1119 "%s: send PS-Poll to %pM for aid %d\n",
1120 __func__, vp->bssid, vp->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001121
1122 skb = dev_alloc_skb(sizeof(*pspoll));
1123 if (!skb)
1124 return;
1125 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
1126 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
1127 IEEE80211_STYPE_PSPOLL |
1128 IEEE80211_FCTL_PM);
1129 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
1130 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
1131 memcpy(pspoll->ta, mac, ETH_ALEN);
Johannes Berg4c4c6712009-06-01 14:29:52 +02001132 if (!mac80211_hwsim_tx_frame(data->hw, skb))
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001133 printk(KERN_DEBUG "%s: PS-Poll frame not ack'ed\n", __func__);
1134 dev_kfree_skb(skb);
1135}
1136
1137
1138static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
1139 struct ieee80211_vif *vif, int ps)
1140{
1141 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001142 struct sk_buff *skb;
1143 struct ieee80211_hdr *hdr;
1144
1145 if (!vp->assoc)
1146 return;
1147
Joe Perchesc96c31e2010-07-26 14:39:58 -07001148 wiphy_debug(data->hw->wiphy,
1149 "%s: send data::nullfunc to %pM ps=%d\n",
1150 __func__, vp->bssid, ps);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001151
1152 skb = dev_alloc_skb(sizeof(*hdr));
1153 if (!skb)
1154 return;
1155 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
1156 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
1157 IEEE80211_STYPE_NULLFUNC |
1158 (ps ? IEEE80211_FCTL_PM : 0));
1159 hdr->duration_id = cpu_to_le16(0);
1160 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
1161 memcpy(hdr->addr2, mac, ETH_ALEN);
1162 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
Johannes Berg4c4c6712009-06-01 14:29:52 +02001163 if (!mac80211_hwsim_tx_frame(data->hw, skb))
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001164 printk(KERN_DEBUG "%s: nullfunc frame not ack'ed\n", __func__);
1165 dev_kfree_skb(skb);
1166}
1167
1168
1169static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
1170 struct ieee80211_vif *vif)
1171{
1172 struct mac80211_hwsim_data *data = dat;
1173 hwsim_send_nullfunc(data, mac, vif, 1);
1174}
1175
1176
1177static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
1178 struct ieee80211_vif *vif)
1179{
1180 struct mac80211_hwsim_data *data = dat;
1181 hwsim_send_nullfunc(data, mac, vif, 0);
1182}
1183
1184
1185static int hwsim_fops_ps_read(void *dat, u64 *val)
1186{
1187 struct mac80211_hwsim_data *data = dat;
1188 *val = data->ps;
1189 return 0;
1190}
1191
1192static int hwsim_fops_ps_write(void *dat, u64 val)
1193{
1194 struct mac80211_hwsim_data *data = dat;
1195 enum ps_mode old_ps;
1196
1197 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
1198 val != PS_MANUAL_POLL)
1199 return -EINVAL;
1200
1201 old_ps = data->ps;
1202 data->ps = val;
1203
1204 if (val == PS_MANUAL_POLL) {
1205 ieee80211_iterate_active_interfaces(data->hw,
1206 hwsim_send_ps_poll, data);
1207 data->ps_poll_pending = true;
1208 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
1209 ieee80211_iterate_active_interfaces(data->hw,
1210 hwsim_send_nullfunc_ps,
1211 data);
1212 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
1213 ieee80211_iterate_active_interfaces(data->hw,
1214 hwsim_send_nullfunc_no_ps,
1215 data);
1216 }
1217
1218 return 0;
1219}
1220
1221DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
1222 "%llu\n");
1223
1224
Daniel Wagner73606d02009-05-18 19:49:25 +02001225static int hwsim_fops_group_read(void *dat, u64 *val)
1226{
1227 struct mac80211_hwsim_data *data = dat;
1228 *val = data->group;
1229 return 0;
1230}
1231
1232static int hwsim_fops_group_write(void *dat, u64 val)
1233{
1234 struct mac80211_hwsim_data *data = dat;
1235 data->group = val;
1236 return 0;
1237}
1238
1239DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
1240 hwsim_fops_group_read, hwsim_fops_group_write,
1241 "%llx\n");
1242
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001243static int __init init_mac80211_hwsim(void)
1244{
1245 int i, err = 0;
1246 u8 addr[ETH_ALEN];
1247 struct mac80211_hwsim_data *data;
1248 struct ieee80211_hw *hw;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001249 enum ieee80211_band band;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001250
Johannes Berg0e057d732008-09-12 00:39:22 +02001251 if (radios < 1 || radios > 100)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001252 return -EINVAL;
1253
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001254 if (fake_hw_scan) {
Johannes Berg69068032010-02-03 10:47:55 +01001255 mac80211_hwsim_ops.hw_scan = mac80211_hwsim_hw_scan;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001256 mac80211_hwsim_ops.sw_scan_start = NULL;
1257 mac80211_hwsim_ops.sw_scan_complete = NULL;
1258 }
Johannes Berg69068032010-02-03 10:47:55 +01001259
Johannes Berg0e057d732008-09-12 00:39:22 +02001260 spin_lock_init(&hwsim_radio_lock);
1261 INIT_LIST_HEAD(&hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001262
1263 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
Johannes Berg0e057d732008-09-12 00:39:22 +02001264 if (IS_ERR(hwsim_class))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001265 return PTR_ERR(hwsim_class);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001266
1267 memset(addr, 0, ETH_ALEN);
1268 addr[0] = 0x02;
1269
Johannes Berg0e057d732008-09-12 00:39:22 +02001270 for (i = 0; i < radios; i++) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001271 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
1272 i);
1273 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
Johannes Berg0e057d732008-09-12 00:39:22 +02001274 if (!hw) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001275 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
1276 "failed\n");
1277 err = -ENOMEM;
1278 goto failed;
1279 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001280 data = hw->priv;
Johannes Berg0e057d732008-09-12 00:39:22 +02001281 data->hw = hw;
1282
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07001283 data->dev = device_create(hwsim_class, NULL, 0, hw,
1284 "hwsim%d", i);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001285 if (IS_ERR(data->dev)) {
Stephen Rothwelle800f172008-06-16 15:35:10 +10001286 printk(KERN_DEBUG
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07001287 "mac80211_hwsim: device_create "
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001288 "failed (%ld)\n", PTR_ERR(data->dev));
1289 err = -ENOMEM;
Ian Schram3a33cc12008-07-21 13:19:35 -07001290 goto failed_drvdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001291 }
1292 data->dev->driver = &mac80211_hwsim_driver;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001293
1294 SET_IEEE80211_DEV(hw, data->dev);
1295 addr[3] = i >> 8;
1296 addr[4] = i;
Johannes Bergef15aac2010-01-20 12:02:33 +01001297 memcpy(data->addresses[0].addr, addr, ETH_ALEN);
1298 memcpy(data->addresses[1].addr, addr, ETH_ALEN);
1299 data->addresses[1].addr[0] |= 0x40;
1300 hw->wiphy->n_addresses = 2;
1301 hw->wiphy->addresses = data->addresses;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001302
Johannes Berg8223d2f2010-06-18 12:31:56 +02001303 if (fake_hw_scan) {
1304 hw->wiphy->max_scan_ssids = 255;
1305 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
1306 }
1307
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001308 hw->channel_change_time = 1;
Jouni Malinen87e8b642008-08-21 21:45:56 +03001309 hw->queues = 4;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001310 hw->wiphy->interface_modes =
1311 BIT(NL80211_IFTYPE_STATION) |
Andrey Yurovsky55b39612008-10-31 23:23:35 -07001312 BIT(NL80211_IFTYPE_AP) |
Johannes Berg2b2d7792010-08-17 12:08:07 +02001313 BIT(NL80211_IFTYPE_ADHOC) |
Andrey Yurovsky55b39612008-10-31 23:23:35 -07001314 BIT(NL80211_IFTYPE_MESH_POINT);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001315
Johannes Berg4b14c962009-07-10 16:56:59 +02001316 hw->flags = IEEE80211_HW_MFP_CAPABLE |
Johannes Berg0f782312009-12-01 13:37:02 +01001317 IEEE80211_HW_SIGNAL_DBM |
1318 IEEE80211_HW_SUPPORTS_STATIC_SMPS |
Johannes Berga75b4362010-05-01 18:53:51 +02001319 IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
1320 IEEE80211_HW_AMPDU_AGGREGATION;
Jouni Malinenfa775332009-01-08 13:32:14 +02001321
Johannes Berg8aa21e62008-09-11 02:16:36 +02001322 /* ask mac80211 to reserve space for magic */
1323 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
Johannes Berg81c06522008-09-11 02:17:01 +02001324 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
Johannes Berg8aa21e62008-09-11 02:16:36 +02001325
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001326 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
1327 sizeof(hwsim_channels_2ghz));
1328 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
1329 sizeof(hwsim_channels_5ghz));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001330 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001331
1332 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
1333 struct ieee80211_supported_band *sband = &data->bands[band];
1334 switch (band) {
1335 case IEEE80211_BAND_2GHZ:
1336 sband->channels = data->channels_2ghz;
1337 sband->n_channels =
1338 ARRAY_SIZE(hwsim_channels_2ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01001339 sband->bitrates = data->rates;
1340 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001341 break;
1342 case IEEE80211_BAND_5GHZ:
1343 sband->channels = data->channels_5ghz;
1344 sband->n_channels =
1345 ARRAY_SIZE(hwsim_channels_5ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01001346 sband->bitrates = data->rates + 4;
1347 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001348 break;
1349 default:
1350 break;
1351 }
1352
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001353 sband->ht_cap.ht_supported = true;
1354 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
1355 IEEE80211_HT_CAP_GRN_FLD |
1356 IEEE80211_HT_CAP_SGI_40 |
1357 IEEE80211_HT_CAP_DSSSCCK40;
1358 sband->ht_cap.ampdu_factor = 0x3;
1359 sband->ht_cap.ampdu_density = 0x6;
1360 memset(&sband->ht_cap.mcs, 0,
1361 sizeof(sband->ht_cap.mcs));
1362 sband->ht_cap.mcs.rx_mask[0] = 0xff;
1363 sband->ht_cap.mcs.rx_mask[1] = 0xff;
1364 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
1365
1366 hw->wiphy->bands[band] = sband;
1367 }
Daniel Wagner73606d02009-05-18 19:49:25 +02001368 /* By default all radios are belonging to the first group */
1369 data->group = 1;
Luis R. Rodriguezf74cb0f2010-04-08 11:50:47 -04001370 mutex_init(&data->mutex);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001371
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001372 /* Work to be done prior to ieee80211_register_hw() */
1373 switch (regtest) {
1374 case HWSIM_REGTEST_DISABLED:
1375 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
1376 case HWSIM_REGTEST_DRIVER_REG_ALL:
1377 case HWSIM_REGTEST_DIFF_COUNTRY:
1378 /*
1379 * Nothing to be done for driver regulatory domain
1380 * hints prior to ieee80211_register_hw()
1381 */
1382 break;
1383 case HWSIM_REGTEST_WORLD_ROAM:
1384 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01001385 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001386 wiphy_apply_custom_regulatory(hw->wiphy,
1387 &hwsim_world_regdom_custom_01);
1388 }
1389 break;
1390 case HWSIM_REGTEST_CUSTOM_WORLD:
Johannes Berg5be83de2009-11-19 00:56:28 +01001391 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001392 wiphy_apply_custom_regulatory(hw->wiphy,
1393 &hwsim_world_regdom_custom_01);
1394 break;
1395 case HWSIM_REGTEST_CUSTOM_WORLD_2:
1396 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01001397 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001398 wiphy_apply_custom_regulatory(hw->wiphy,
1399 &hwsim_world_regdom_custom_01);
1400 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01001401 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001402 wiphy_apply_custom_regulatory(hw->wiphy,
1403 &hwsim_world_regdom_custom_02);
1404 }
1405 break;
1406 case HWSIM_REGTEST_STRICT_ALL:
Johannes Berg5be83de2009-11-19 00:56:28 +01001407 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001408 break;
1409 case HWSIM_REGTEST_STRICT_FOLLOW:
1410 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
1411 if (i == 0)
Johannes Berg5be83de2009-11-19 00:56:28 +01001412 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001413 break;
1414 case HWSIM_REGTEST_ALL:
1415 if (i == 0) {
Johannes Berg5be83de2009-11-19 00:56:28 +01001416 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001417 wiphy_apply_custom_regulatory(hw->wiphy,
1418 &hwsim_world_regdom_custom_01);
1419 } else if (i == 1) {
Johannes Berg5be83de2009-11-19 00:56:28 +01001420 hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001421 wiphy_apply_custom_regulatory(hw->wiphy,
1422 &hwsim_world_regdom_custom_02);
1423 } else if (i == 4)
Johannes Berg5be83de2009-11-19 00:56:28 +01001424 hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001425 break;
1426 default:
1427 break;
1428 }
1429
Luis R. Rodriguez98dfaa52009-03-20 23:46:11 -04001430 /* give the regulatory workqueue a chance to run */
1431 if (regtest)
1432 schedule_timeout_interruptible(1);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001433 err = ieee80211_register_hw(hw);
1434 if (err < 0) {
1435 printk(KERN_DEBUG "mac80211_hwsim: "
1436 "ieee80211_register_hw failed (%d)\n", err);
Ian Schram3a33cc12008-07-21 13:19:35 -07001437 goto failed_hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001438 }
1439
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001440 /* Work to be done after to ieee80211_register_hw() */
1441 switch (regtest) {
1442 case HWSIM_REGTEST_WORLD_ROAM:
1443 case HWSIM_REGTEST_DISABLED:
1444 break;
1445 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
1446 if (!i)
1447 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1448 break;
1449 case HWSIM_REGTEST_DRIVER_REG_ALL:
1450 case HWSIM_REGTEST_STRICT_ALL:
1451 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1452 break;
1453 case HWSIM_REGTEST_DIFF_COUNTRY:
1454 if (i < ARRAY_SIZE(hwsim_alpha2s))
1455 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
1456 break;
1457 case HWSIM_REGTEST_CUSTOM_WORLD:
1458 case HWSIM_REGTEST_CUSTOM_WORLD_2:
1459 /*
1460 * Nothing to be done for custom world regulatory
1461 * domains after to ieee80211_register_hw
1462 */
1463 break;
1464 case HWSIM_REGTEST_STRICT_FOLLOW:
1465 if (i == 0)
1466 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1467 break;
1468 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
1469 if (i == 0)
1470 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1471 else if (i == 1)
1472 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
1473 break;
1474 case HWSIM_REGTEST_ALL:
1475 if (i == 2)
1476 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1477 else if (i == 3)
1478 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
1479 else if (i == 4)
1480 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
1481 break;
1482 default:
1483 break;
1484 }
1485
Joe Perchesc96c31e2010-07-26 14:39:58 -07001486 wiphy_debug(hw->wiphy, "hwaddr %pm registered\n",
1487 hw->wiphy->perm_addr);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001488
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001489 data->debugfs = debugfs_create_dir("hwsim",
1490 hw->wiphy->debugfsdir);
1491 data->debugfs_ps = debugfs_create_file("ps", 0666,
1492 data->debugfs, data,
1493 &hwsim_fops_ps);
Daniel Wagner73606d02009-05-18 19:49:25 +02001494 data->debugfs_group = debugfs_create_file("group", 0666,
1495 data->debugfs, data,
1496 &hwsim_fops_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001497
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001498 setup_timer(&data->beacon_timer, mac80211_hwsim_beacon,
1499 (unsigned long) hw);
Johannes Berg0e057d732008-09-12 00:39:22 +02001500
1501 list_add_tail(&data->list, &hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001502 }
1503
1504 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
1505 if (hwsim_mon == NULL)
1506 goto failed;
1507
1508 rtnl_lock();
1509
1510 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
Ian Schram3a33cc12008-07-21 13:19:35 -07001511 if (err < 0)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001512 goto failed_mon;
Ian Schram3a33cc12008-07-21 13:19:35 -07001513
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001514
1515 err = register_netdevice(hwsim_mon);
1516 if (err < 0)
1517 goto failed_mon;
1518
1519 rtnl_unlock();
1520
1521 return 0;
1522
1523failed_mon:
1524 rtnl_unlock();
1525 free_netdev(hwsim_mon);
Ian Schram3a33cc12008-07-21 13:19:35 -07001526 mac80211_hwsim_free();
1527 return err;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001528
Ian Schram3a33cc12008-07-21 13:19:35 -07001529failed_hw:
1530 device_unregister(data->dev);
1531failed_drvdata:
1532 ieee80211_free_hw(hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001533failed:
1534 mac80211_hwsim_free();
1535 return err;
1536}
1537
1538
1539static void __exit exit_mac80211_hwsim(void)
1540{
Johannes Berg0e057d732008-09-12 00:39:22 +02001541 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001542
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001543 mac80211_hwsim_free();
Johannes Berg5d416352009-07-13 13:04:30 +02001544 unregister_netdev(hwsim_mon);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001545}
1546
1547
1548module_init(init_mac80211_hwsim);
1549module_exit(exit_mac80211_hwsim);