2 * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
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.
12 * - IBSS mode simulation (Beacon transmission with competition for "air time")
13 * - RX filtering based on filter configuration (data->rx_filter)
16 #include <linux/list.h>
17 #include <linux/spinlock.h>
20 #include <net/mac80211.h>
21 #include <net/ieee80211_radiotap.h>
22 #include <linux/if_arp.h>
23 #include <linux/rtnetlink.h>
24 #include <linux/etherdevice.h>
25 #include <linux/debugfs.h>
27 MODULE_AUTHOR("Jouni Malinen");
28 MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
29 MODULE_LICENSE("GPL");
31 static int radios
= 2;
32 module_param(radios
, int, 0444);
33 MODULE_PARM_DESC(radios
, "Number of simulated radios");
36 * enum hwsim_regtest - the type of regulatory tests we offer
38 * These are the different values you can use for the regtest
39 * module parameter. This is useful to help test world roaming
40 * and the driver regulatory_hint() call and combinations of these.
41 * If you want to do specific alpha2 regulatory domain tests simply
42 * use the userspace regulatory request as that will be respected as
43 * well without the need of this module parameter. This is designed
44 * only for testing the driver regulatory request, world roaming
45 * and all possible combinations.
47 * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed,
48 * this is the default value.
49 * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory
50 * hint, only one driver regulatory hint will be sent as such the
51 * secondary radios are expected to follow.
52 * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory
53 * request with all radios reporting the same regulatory domain.
54 * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling
55 * different regulatory domains requests. Expected behaviour is for
56 * an intersection to occur but each device will still use their
57 * respective regulatory requested domains. Subsequent radios will
58 * use the resulting intersection.
59 * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We acomplish
60 * this by using a custom beacon-capable regulatory domain for the first
61 * radio. All other device world roam.
62 * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory
63 * domain requests. All radios will adhere to this custom world regulatory
65 * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory
66 * domain requests. The first radio will adhere to the first custom world
67 * regulatory domain, the second one to the second custom world regulatory
68 * domain. All other devices will world roam.
69 * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain
70 * settings, only the first radio will send a regulatory domain request
71 * and use strict settings. The rest of the radios are expected to follow.
72 * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain
73 * settings. All radios will adhere to this.
74 * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory
75 * domain settings, combined with secondary driver regulatory domain
76 * settings. The first radio will get a strict regulatory domain setting
77 * using the first driver regulatory request and the second radio will use
78 * non-strict settings using the second driver regulatory request. All
79 * other devices should follow the intersection created between the
81 * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need
82 * at least 6 radios for a complete test. We will test in this order:
83 * 1 - driver custom world regulatory domain
84 * 2 - second custom world regulatory domain
85 * 3 - first driver regulatory domain request
86 * 4 - second driver regulatory domain request
87 * 5 - strict regulatory domain settings using the third driver regulatory
89 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
90 * regulatory requests.
93 HWSIM_REGTEST_DISABLED
= 0,
94 HWSIM_REGTEST_DRIVER_REG_FOLLOW
= 1,
95 HWSIM_REGTEST_DRIVER_REG_ALL
= 2,
96 HWSIM_REGTEST_DIFF_COUNTRY
= 3,
97 HWSIM_REGTEST_WORLD_ROAM
= 4,
98 HWSIM_REGTEST_CUSTOM_WORLD
= 5,
99 HWSIM_REGTEST_CUSTOM_WORLD_2
= 6,
100 HWSIM_REGTEST_STRICT_FOLLOW
= 7,
101 HWSIM_REGTEST_STRICT_ALL
= 8,
102 HWSIM_REGTEST_STRICT_AND_DRIVER_REG
= 9,
103 HWSIM_REGTEST_ALL
= 10,
106 /* Set to one of the HWSIM_REGTEST_* values above */
107 static int regtest
= HWSIM_REGTEST_DISABLED
;
108 module_param(regtest
, int, 0444);
109 MODULE_PARM_DESC(regtest
, "The type of regulatory test we want to run");
111 static const char *hwsim_alpha2s
[] = {
120 static const struct ieee80211_regdomain hwsim_world_regdom_custom_01
= {
124 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
125 REG_RULE(2484-10, 2484+10, 40, 0, 20, 0),
126 REG_RULE(5150-10, 5240+10, 40, 0, 30, 0),
127 REG_RULE(5745-10, 5825+10, 40, 0, 30, 0),
131 static const struct ieee80211_regdomain hwsim_world_regdom_custom_02
= {
135 REG_RULE(2412-10, 2462+10, 40, 0, 20, 0),
136 REG_RULE(5725-10, 5850+10, 40, 0, 30,
137 NL80211_RRF_PASSIVE_SCAN
| NL80211_RRF_NO_IBSS
),
141 struct hwsim_vif_priv
{
148 #define HWSIM_VIF_MAGIC 0x69537748
150 static inline void hwsim_check_magic(struct ieee80211_vif
*vif
)
152 struct hwsim_vif_priv
*vp
= (void *)vif
->drv_priv
;
153 WARN_ON(vp
->magic
!= HWSIM_VIF_MAGIC
);
156 static inline void hwsim_set_magic(struct ieee80211_vif
*vif
)
158 struct hwsim_vif_priv
*vp
= (void *)vif
->drv_priv
;
159 vp
->magic
= HWSIM_VIF_MAGIC
;
162 static inline void hwsim_clear_magic(struct ieee80211_vif
*vif
)
164 struct hwsim_vif_priv
*vp
= (void *)vif
->drv_priv
;
168 struct hwsim_sta_priv
{
172 #define HWSIM_STA_MAGIC 0x6d537748
174 static inline void hwsim_check_sta_magic(struct ieee80211_sta
*sta
)
176 struct hwsim_sta_priv
*sp
= (void *)sta
->drv_priv
;
177 WARN_ON(sp
->magic
!= HWSIM_STA_MAGIC
);
180 static inline void hwsim_set_sta_magic(struct ieee80211_sta
*sta
)
182 struct hwsim_sta_priv
*sp
= (void *)sta
->drv_priv
;
183 sp
->magic
= HWSIM_STA_MAGIC
;
186 static inline void hwsim_clear_sta_magic(struct ieee80211_sta
*sta
)
188 struct hwsim_sta_priv
*sp
= (void *)sta
->drv_priv
;
192 static struct class *hwsim_class
;
194 static struct net_device
*hwsim_mon
; /* global monitor netdev */
196 #define CHAN2G(_freq) { \
197 .band = IEEE80211_BAND_2GHZ, \
198 .center_freq = (_freq), \
199 .hw_value = (_freq), \
203 #define CHAN5G(_freq) { \
204 .band = IEEE80211_BAND_5GHZ, \
205 .center_freq = (_freq), \
206 .hw_value = (_freq), \
210 static const struct ieee80211_channel hwsim_channels_2ghz
[] = {
211 CHAN2G(2412), /* Channel 1 */
212 CHAN2G(2417), /* Channel 2 */
213 CHAN2G(2422), /* Channel 3 */
214 CHAN2G(2427), /* Channel 4 */
215 CHAN2G(2432), /* Channel 5 */
216 CHAN2G(2437), /* Channel 6 */
217 CHAN2G(2442), /* Channel 7 */
218 CHAN2G(2447), /* Channel 8 */
219 CHAN2G(2452), /* Channel 9 */
220 CHAN2G(2457), /* Channel 10 */
221 CHAN2G(2462), /* Channel 11 */
222 CHAN2G(2467), /* Channel 12 */
223 CHAN2G(2472), /* Channel 13 */
224 CHAN2G(2484), /* Channel 14 */
227 static const struct ieee80211_channel hwsim_channels_5ghz
[] = {
228 CHAN5G(5180), /* Channel 36 */
229 CHAN5G(5200), /* Channel 40 */
230 CHAN5G(5220), /* Channel 44 */
231 CHAN5G(5240), /* Channel 48 */
233 CHAN5G(5260), /* Channel 52 */
234 CHAN5G(5280), /* Channel 56 */
235 CHAN5G(5300), /* Channel 60 */
236 CHAN5G(5320), /* Channel 64 */
238 CHAN5G(5500), /* Channel 100 */
239 CHAN5G(5520), /* Channel 104 */
240 CHAN5G(5540), /* Channel 108 */
241 CHAN5G(5560), /* Channel 112 */
242 CHAN5G(5580), /* Channel 116 */
243 CHAN5G(5600), /* Channel 120 */
244 CHAN5G(5620), /* Channel 124 */
245 CHAN5G(5640), /* Channel 128 */
246 CHAN5G(5660), /* Channel 132 */
247 CHAN5G(5680), /* Channel 136 */
248 CHAN5G(5700), /* Channel 140 */
250 CHAN5G(5745), /* Channel 149 */
251 CHAN5G(5765), /* Channel 153 */
252 CHAN5G(5785), /* Channel 157 */
253 CHAN5G(5805), /* Channel 161 */
254 CHAN5G(5825), /* Channel 165 */
257 static const struct ieee80211_rate hwsim_rates
[] = {
259 { .bitrate
= 20, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
260 { .bitrate
= 55, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
261 { .bitrate
= 110, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
272 static spinlock_t hwsim_radio_lock
;
273 static struct list_head hwsim_radios
;
275 struct mac80211_hwsim_data
{
276 struct list_head list
;
277 struct ieee80211_hw
*hw
;
279 struct ieee80211_supported_band bands
[2];
280 struct ieee80211_channel channels_2ghz
[ARRAY_SIZE(hwsim_channels_2ghz
)];
281 struct ieee80211_channel channels_5ghz
[ARRAY_SIZE(hwsim_channels_5ghz
)];
282 struct ieee80211_rate rates
[ARRAY_SIZE(hwsim_rates
)];
284 struct ieee80211_channel
*channel
;
285 unsigned long beacon_int
; /* in jiffies unit */
286 unsigned int rx_filter
;
288 struct timer_list beacon_timer
;
290 PS_DISABLED
, PS_ENABLED
, PS_AUTO_POLL
, PS_MANUAL_POLL
292 bool ps_poll_pending
;
293 struct dentry
*debugfs
;
294 struct dentry
*debugfs_ps
;
297 * Only radios in the same group can communicate together (the
298 * channel has to match too). Each bit represents a group. A
299 * radio can be in more then one group.
302 struct dentry
*debugfs_group
;
306 struct hwsim_radiotap_hdr
{
307 struct ieee80211_radiotap_header hdr
;
312 } __attribute__ ((packed
));
315 static netdev_tx_t
hwsim_mon_xmit(struct sk_buff
*skb
,
316 struct net_device
*dev
)
318 /* TODO: allow packet injection */
324 static void mac80211_hwsim_monitor_rx(struct ieee80211_hw
*hw
,
325 struct sk_buff
*tx_skb
)
327 struct mac80211_hwsim_data
*data
= hw
->priv
;
329 struct hwsim_radiotap_hdr
*hdr
;
331 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(tx_skb
);
332 struct ieee80211_rate
*txrate
= ieee80211_get_tx_rate(hw
, info
);
334 if (!netif_running(hwsim_mon
))
337 skb
= skb_copy_expand(tx_skb
, sizeof(*hdr
), 0, GFP_ATOMIC
);
341 hdr
= (struct hwsim_radiotap_hdr
*) skb_push(skb
, sizeof(*hdr
));
342 hdr
->hdr
.it_version
= PKTHDR_RADIOTAP_VERSION
;
344 hdr
->hdr
.it_len
= cpu_to_le16(sizeof(*hdr
));
345 hdr
->hdr
.it_present
= cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS
) |
346 (1 << IEEE80211_RADIOTAP_RATE
) |
347 (1 << IEEE80211_RADIOTAP_CHANNEL
));
349 hdr
->rt_rate
= txrate
->bitrate
/ 5;
350 hdr
->rt_channel
= cpu_to_le16(data
->channel
->center_freq
);
351 flags
= IEEE80211_CHAN_2GHZ
;
352 if (txrate
->flags
& IEEE80211_RATE_ERP_G
)
353 flags
|= IEEE80211_CHAN_OFDM
;
355 flags
|= IEEE80211_CHAN_CCK
;
356 hdr
->rt_chbitmask
= cpu_to_le16(flags
);
358 skb
->dev
= hwsim_mon
;
359 skb_set_mac_header(skb
, 0);
360 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
361 skb
->pkt_type
= PACKET_OTHERHOST
;
362 skb
->protocol
= htons(ETH_P_802_2
);
363 memset(skb
->cb
, 0, sizeof(skb
->cb
));
368 static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data
*data
,
377 /* TODO: accept (some) Beacons by default and other frames only
378 * if pending PS-Poll has been sent */
381 /* Allow unicast frames to own address if there is a pending
383 if (data
->ps_poll_pending
&&
384 memcmp(data
->hw
->wiphy
->perm_addr
, skb
->data
+ 4,
386 data
->ps_poll_pending
= false;
396 static bool mac80211_hwsim_tx_frame(struct ieee80211_hw
*hw
,
399 struct mac80211_hwsim_data
*data
= hw
->priv
, *data2
;
401 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
402 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
403 struct ieee80211_rx_status rx_status
;
405 memset(&rx_status
, 0, sizeof(rx_status
));
406 /* TODO: set mactime */
407 rx_status
.freq
= data
->channel
->center_freq
;
408 rx_status
.band
= data
->channel
->band
;
409 rx_status
.rate_idx
= info
->control
.rates
[0].idx
;
410 /* TODO: simulate real signal strength (and optional packet loss) */
411 rx_status
.signal
= -50;
413 if (data
->ps
!= PS_DISABLED
)
414 hdr
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_PM
);
416 /* release the skb's source info */
423 /* Copy skb to all enabled radios that are on the current frequency */
424 spin_lock(&hwsim_radio_lock
);
425 list_for_each_entry(data2
, &hwsim_radios
, list
) {
426 struct sk_buff
*nskb
;
431 if (!data2
->started
|| !hwsim_ps_rx_ok(data2
, skb
) ||
432 !data
->channel
|| !data2
->channel
||
433 data
->channel
->center_freq
!= data2
->channel
->center_freq
||
434 !(data
->group
& data2
->group
))
437 nskb
= skb_copy(skb
, GFP_ATOMIC
);
441 if (memcmp(hdr
->addr1
, data2
->hw
->wiphy
->perm_addr
,
444 memcpy(IEEE80211_SKB_RXCB(nskb
), &rx_status
, sizeof(rx_status
));
445 ieee80211_rx_irqsafe(data2
->hw
, nskb
);
447 spin_unlock(&hwsim_radio_lock
);
453 static int mac80211_hwsim_tx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
)
456 struct ieee80211_tx_info
*txi
;
458 mac80211_hwsim_monitor_rx(hw
, skb
);
461 /* Should not happen; just a sanity check for addr1 use */
466 ack
= mac80211_hwsim_tx_frame(hw
, skb
);
468 txi
= IEEE80211_SKB_CB(skb
);
470 if (txi
->control
.vif
)
471 hwsim_check_magic(txi
->control
.vif
);
472 if (txi
->control
.sta
)
473 hwsim_check_sta_magic(txi
->control
.sta
);
475 ieee80211_tx_info_clear_status(txi
);
476 if (!(txi
->flags
& IEEE80211_TX_CTL_NO_ACK
) && ack
)
477 txi
->flags
|= IEEE80211_TX_STAT_ACK
;
478 ieee80211_tx_status_irqsafe(hw
, skb
);
483 static int mac80211_hwsim_start(struct ieee80211_hw
*hw
)
485 struct mac80211_hwsim_data
*data
= hw
->priv
;
486 printk(KERN_DEBUG
"%s:%s\n", wiphy_name(hw
->wiphy
), __func__
);
492 static void mac80211_hwsim_stop(struct ieee80211_hw
*hw
)
494 struct mac80211_hwsim_data
*data
= hw
->priv
;
496 del_timer(&data
->beacon_timer
);
497 printk(KERN_DEBUG
"%s:%s\n", wiphy_name(hw
->wiphy
), __func__
);
501 static int mac80211_hwsim_add_interface(struct ieee80211_hw
*hw
,
502 struct ieee80211_if_init_conf
*conf
)
504 printk(KERN_DEBUG
"%s:%s (type=%d mac_addr=%pM)\n",
505 wiphy_name(hw
->wiphy
), __func__
, conf
->type
,
507 hwsim_set_magic(conf
->vif
);
512 static void mac80211_hwsim_remove_interface(
513 struct ieee80211_hw
*hw
, struct ieee80211_if_init_conf
*conf
)
515 printk(KERN_DEBUG
"%s:%s (type=%d mac_addr=%pM)\n",
516 wiphy_name(hw
->wiphy
), __func__
, conf
->type
,
518 hwsim_check_magic(conf
->vif
);
519 hwsim_clear_magic(conf
->vif
);
523 static void mac80211_hwsim_beacon_tx(void *arg
, u8
*mac
,
524 struct ieee80211_vif
*vif
)
526 struct ieee80211_hw
*hw
= arg
;
528 struct ieee80211_tx_info
*info
;
530 hwsim_check_magic(vif
);
532 if (vif
->type
!= NL80211_IFTYPE_AP
&&
533 vif
->type
!= NL80211_IFTYPE_MESH_POINT
)
536 skb
= ieee80211_beacon_get(hw
, vif
);
539 info
= IEEE80211_SKB_CB(skb
);
541 mac80211_hwsim_monitor_rx(hw
, skb
);
542 mac80211_hwsim_tx_frame(hw
, skb
);
547 static void mac80211_hwsim_beacon(unsigned long arg
)
549 struct ieee80211_hw
*hw
= (struct ieee80211_hw
*) arg
;
550 struct mac80211_hwsim_data
*data
= hw
->priv
;
555 ieee80211_iterate_active_interfaces_atomic(
556 hw
, mac80211_hwsim_beacon_tx
, hw
);
558 data
->beacon_timer
.expires
= jiffies
+ data
->beacon_int
;
559 add_timer(&data
->beacon_timer
);
563 static int mac80211_hwsim_config(struct ieee80211_hw
*hw
, u32 changed
)
565 struct mac80211_hwsim_data
*data
= hw
->priv
;
566 struct ieee80211_conf
*conf
= &hw
->conf
;
568 printk(KERN_DEBUG
"%s:%s (freq=%d idle=%d ps=%d)\n",
569 wiphy_name(hw
->wiphy
), __func__
,
570 conf
->channel
->center_freq
,
571 !!(conf
->flags
& IEEE80211_CONF_IDLE
),
572 !!(conf
->flags
& IEEE80211_CONF_PS
));
574 data
->channel
= conf
->channel
;
575 if (!data
->started
|| !data
->beacon_int
)
576 del_timer(&data
->beacon_timer
);
578 mod_timer(&data
->beacon_timer
, jiffies
+ data
->beacon_int
);
584 static void mac80211_hwsim_configure_filter(struct ieee80211_hw
*hw
,
585 unsigned int changed_flags
,
586 unsigned int *total_flags
,u64 multicast
)
588 struct mac80211_hwsim_data
*data
= hw
->priv
;
590 printk(KERN_DEBUG
"%s:%s\n", wiphy_name(hw
->wiphy
), __func__
);
593 if (*total_flags
& FIF_PROMISC_IN_BSS
)
594 data
->rx_filter
|= FIF_PROMISC_IN_BSS
;
595 if (*total_flags
& FIF_ALLMULTI
)
596 data
->rx_filter
|= FIF_ALLMULTI
;
598 *total_flags
= data
->rx_filter
;
601 static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw
*hw
,
602 struct ieee80211_vif
*vif
,
603 struct ieee80211_bss_conf
*info
,
606 struct hwsim_vif_priv
*vp
= (void *)vif
->drv_priv
;
607 struct mac80211_hwsim_data
*data
= hw
->priv
;
609 hwsim_check_magic(vif
);
611 printk(KERN_DEBUG
"%s:%s(changed=0x%x)\n",
612 wiphy_name(hw
->wiphy
), __func__
, changed
);
614 if (changed
& BSS_CHANGED_BSSID
) {
615 printk(KERN_DEBUG
"%s:%s: BSSID changed: %pM\n",
616 wiphy_name(hw
->wiphy
), __func__
,
618 memcpy(vp
->bssid
, info
->bssid
, ETH_ALEN
);
621 if (changed
& BSS_CHANGED_ASSOC
) {
622 printk(KERN_DEBUG
" %s: ASSOC: assoc=%d aid=%d\n",
623 wiphy_name(hw
->wiphy
), info
->assoc
, info
->aid
);
624 vp
->assoc
= info
->assoc
;
628 if (changed
& BSS_CHANGED_BEACON_INT
) {
629 printk(KERN_DEBUG
" %s: BCNINT: %d\n",
630 wiphy_name(hw
->wiphy
), info
->beacon_int
);
631 data
->beacon_int
= 1024 * info
->beacon_int
/ 1000 * HZ
/ 1000;
632 if (WARN_ON(!data
->beacon_int
))
633 data
->beacon_int
= 1;
635 mod_timer(&data
->beacon_timer
,
636 jiffies
+ data
->beacon_int
);
639 if (changed
& BSS_CHANGED_ERP_CTS_PROT
) {
640 printk(KERN_DEBUG
" %s: ERP_CTS_PROT: %d\n",
641 wiphy_name(hw
->wiphy
), info
->use_cts_prot
);
644 if (changed
& BSS_CHANGED_ERP_PREAMBLE
) {
645 printk(KERN_DEBUG
" %s: ERP_PREAMBLE: %d\n",
646 wiphy_name(hw
->wiphy
), info
->use_short_preamble
);
649 if (changed
& BSS_CHANGED_ERP_SLOT
) {
650 printk(KERN_DEBUG
" %s: ERP_SLOT: %d\n",
651 wiphy_name(hw
->wiphy
), info
->use_short_slot
);
654 if (changed
& BSS_CHANGED_HT
) {
655 printk(KERN_DEBUG
" %s: HT: op_mode=0x%x\n",
656 wiphy_name(hw
->wiphy
),
657 info
->ht_operation_mode
);
660 if (changed
& BSS_CHANGED_BASIC_RATES
) {
661 printk(KERN_DEBUG
" %s: BASIC_RATES: 0x%llx\n",
662 wiphy_name(hw
->wiphy
),
663 (unsigned long long) info
->basic_rates
);
667 static void mac80211_hwsim_sta_notify(struct ieee80211_hw
*hw
,
668 struct ieee80211_vif
*vif
,
669 enum sta_notify_cmd cmd
,
670 struct ieee80211_sta
*sta
)
672 hwsim_check_magic(vif
);
675 hwsim_set_sta_magic(sta
);
677 case STA_NOTIFY_REMOVE
:
678 hwsim_clear_sta_magic(sta
);
680 case STA_NOTIFY_SLEEP
:
681 case STA_NOTIFY_AWAKE
:
682 /* TODO: make good use of these flags */
687 static int mac80211_hwsim_set_tim(struct ieee80211_hw
*hw
,
688 struct ieee80211_sta
*sta
,
691 hwsim_check_sta_magic(sta
);
695 static int mac80211_hwsim_conf_tx(
696 struct ieee80211_hw
*hw
, u16 queue
,
697 const struct ieee80211_tx_queue_params
*params
)
699 printk(KERN_DEBUG
"%s:%s (queue=%d txop=%d cw_min=%d cw_max=%d "
701 wiphy_name(hw
->wiphy
), __func__
, queue
,
702 params
->txop
, params
->cw_min
, params
->cw_max
, params
->aifs
);
706 #ifdef CONFIG_NL80211_TESTMODE
708 * This section contains example code for using netlink
709 * attributes with the testmode command in nl80211.
712 /* These enums need to be kept in sync with userspace */
713 enum hwsim_testmode_attr
{
714 __HWSIM_TM_ATTR_INVALID
= 0,
715 HWSIM_TM_ATTR_CMD
= 1,
716 HWSIM_TM_ATTR_PS
= 2,
719 __HWSIM_TM_ATTR_AFTER_LAST
,
720 HWSIM_TM_ATTR_MAX
= __HWSIM_TM_ATTR_AFTER_LAST
- 1
723 enum hwsim_testmode_cmd
{
724 HWSIM_TM_CMD_SET_PS
= 0,
725 HWSIM_TM_CMD_GET_PS
= 1,
728 static const struct nla_policy hwsim_testmode_policy
[HWSIM_TM_ATTR_MAX
+ 1] = {
729 [HWSIM_TM_ATTR_CMD
] = { .type
= NLA_U32
},
730 [HWSIM_TM_ATTR_PS
] = { .type
= NLA_U32
},
733 static int hwsim_fops_ps_write(void *dat
, u64 val
);
735 static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw
*hw
,
738 struct mac80211_hwsim_data
*hwsim
= hw
->priv
;
739 struct nlattr
*tb
[HWSIM_TM_ATTR_MAX
+ 1];
743 err
= nla_parse(tb
, HWSIM_TM_ATTR_MAX
, data
, len
,
744 hwsim_testmode_policy
);
748 if (!tb
[HWSIM_TM_ATTR_CMD
])
751 switch (nla_get_u32(tb
[HWSIM_TM_ATTR_CMD
])) {
752 case HWSIM_TM_CMD_SET_PS
:
753 if (!tb
[HWSIM_TM_ATTR_PS
])
755 ps
= nla_get_u32(tb
[HWSIM_TM_ATTR_PS
]);
756 return hwsim_fops_ps_write(hwsim
, ps
);
757 case HWSIM_TM_CMD_GET_PS
:
758 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
,
759 nla_total_size(sizeof(u32
)));
762 NLA_PUT_U32(skb
, HWSIM_TM_ATTR_PS
, hwsim
->ps
);
763 return cfg80211_testmode_reply(skb
);
774 static const struct ieee80211_ops mac80211_hwsim_ops
=
776 .tx
= mac80211_hwsim_tx
,
777 .start
= mac80211_hwsim_start
,
778 .stop
= mac80211_hwsim_stop
,
779 .add_interface
= mac80211_hwsim_add_interface
,
780 .remove_interface
= mac80211_hwsim_remove_interface
,
781 .config
= mac80211_hwsim_config
,
782 .configure_filter
= mac80211_hwsim_configure_filter
,
783 .bss_info_changed
= mac80211_hwsim_bss_info_changed
,
784 .sta_notify
= mac80211_hwsim_sta_notify
,
785 .set_tim
= mac80211_hwsim_set_tim
,
786 .conf_tx
= mac80211_hwsim_conf_tx
,
787 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd
)
791 static void mac80211_hwsim_free(void)
793 struct list_head tmplist
, *i
, *tmp
;
794 struct mac80211_hwsim_data
*data
, *tmpdata
;
796 INIT_LIST_HEAD(&tmplist
);
798 spin_lock_bh(&hwsim_radio_lock
);
799 list_for_each_safe(i
, tmp
, &hwsim_radios
)
800 list_move(i
, &tmplist
);
801 spin_unlock_bh(&hwsim_radio_lock
);
803 list_for_each_entry_safe(data
, tmpdata
, &tmplist
, list
) {
804 debugfs_remove(data
->debugfs_group
);
805 debugfs_remove(data
->debugfs_ps
);
806 debugfs_remove(data
->debugfs
);
807 ieee80211_unregister_hw(data
->hw
);
808 device_unregister(data
->dev
);
809 ieee80211_free_hw(data
->hw
);
811 class_destroy(hwsim_class
);
815 static struct device_driver mac80211_hwsim_driver
= {
816 .name
= "mac80211_hwsim"
819 static const struct net_device_ops hwsim_netdev_ops
= {
820 .ndo_start_xmit
= hwsim_mon_xmit
,
821 .ndo_change_mtu
= eth_change_mtu
,
822 .ndo_set_mac_address
= eth_mac_addr
,
823 .ndo_validate_addr
= eth_validate_addr
,
826 static void hwsim_mon_setup(struct net_device
*dev
)
828 dev
->netdev_ops
= &hwsim_netdev_ops
;
829 dev
->destructor
= free_netdev
;
831 dev
->tx_queue_len
= 0;
832 dev
->type
= ARPHRD_IEEE80211_RADIOTAP
;
833 memset(dev
->dev_addr
, 0, ETH_ALEN
);
834 dev
->dev_addr
[0] = 0x12;
838 static void hwsim_send_ps_poll(void *dat
, u8
*mac
, struct ieee80211_vif
*vif
)
840 struct mac80211_hwsim_data
*data
= dat
;
841 struct hwsim_vif_priv
*vp
= (void *)vif
->drv_priv
;
843 struct ieee80211_pspoll
*pspoll
;
848 printk(KERN_DEBUG
"%s:%s: send PS-Poll to %pM for aid %d\n",
849 wiphy_name(data
->hw
->wiphy
), __func__
, vp
->bssid
, vp
->aid
);
851 skb
= dev_alloc_skb(sizeof(*pspoll
));
854 pspoll
= (void *) skb_put(skb
, sizeof(*pspoll
));
855 pspoll
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_CTL
|
856 IEEE80211_STYPE_PSPOLL
|
858 pspoll
->aid
= cpu_to_le16(0xc000 | vp
->aid
);
859 memcpy(pspoll
->bssid
, vp
->bssid
, ETH_ALEN
);
860 memcpy(pspoll
->ta
, mac
, ETH_ALEN
);
861 if (!mac80211_hwsim_tx_frame(data
->hw
, skb
))
862 printk(KERN_DEBUG
"%s: PS-Poll frame not ack'ed\n", __func__
);
867 static void hwsim_send_nullfunc(struct mac80211_hwsim_data
*data
, u8
*mac
,
868 struct ieee80211_vif
*vif
, int ps
)
870 struct hwsim_vif_priv
*vp
= (void *)vif
->drv_priv
;
872 struct ieee80211_hdr
*hdr
;
877 printk(KERN_DEBUG
"%s:%s: send data::nullfunc to %pM ps=%d\n",
878 wiphy_name(data
->hw
->wiphy
), __func__
, vp
->bssid
, ps
);
880 skb
= dev_alloc_skb(sizeof(*hdr
));
883 hdr
= (void *) skb_put(skb
, sizeof(*hdr
) - ETH_ALEN
);
884 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
885 IEEE80211_STYPE_NULLFUNC
|
886 (ps
? IEEE80211_FCTL_PM
: 0));
887 hdr
->duration_id
= cpu_to_le16(0);
888 memcpy(hdr
->addr1
, vp
->bssid
, ETH_ALEN
);
889 memcpy(hdr
->addr2
, mac
, ETH_ALEN
);
890 memcpy(hdr
->addr3
, vp
->bssid
, ETH_ALEN
);
891 if (!mac80211_hwsim_tx_frame(data
->hw
, skb
))
892 printk(KERN_DEBUG
"%s: nullfunc frame not ack'ed\n", __func__
);
897 static void hwsim_send_nullfunc_ps(void *dat
, u8
*mac
,
898 struct ieee80211_vif
*vif
)
900 struct mac80211_hwsim_data
*data
= dat
;
901 hwsim_send_nullfunc(data
, mac
, vif
, 1);
905 static void hwsim_send_nullfunc_no_ps(void *dat
, u8
*mac
,
906 struct ieee80211_vif
*vif
)
908 struct mac80211_hwsim_data
*data
= dat
;
909 hwsim_send_nullfunc(data
, mac
, vif
, 0);
913 static int hwsim_fops_ps_read(void *dat
, u64
*val
)
915 struct mac80211_hwsim_data
*data
= dat
;
920 static int hwsim_fops_ps_write(void *dat
, u64 val
)
922 struct mac80211_hwsim_data
*data
= dat
;
925 if (val
!= PS_DISABLED
&& val
!= PS_ENABLED
&& val
!= PS_AUTO_POLL
&&
926 val
!= PS_MANUAL_POLL
)
932 if (val
== PS_MANUAL_POLL
) {
933 ieee80211_iterate_active_interfaces(data
->hw
,
934 hwsim_send_ps_poll
, data
);
935 data
->ps_poll_pending
= true;
936 } else if (old_ps
== PS_DISABLED
&& val
!= PS_DISABLED
) {
937 ieee80211_iterate_active_interfaces(data
->hw
,
938 hwsim_send_nullfunc_ps
,
940 } else if (old_ps
!= PS_DISABLED
&& val
== PS_DISABLED
) {
941 ieee80211_iterate_active_interfaces(data
->hw
,
942 hwsim_send_nullfunc_no_ps
,
949 DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps
, hwsim_fops_ps_read
, hwsim_fops_ps_write
,
953 static int hwsim_fops_group_read(void *dat
, u64
*val
)
955 struct mac80211_hwsim_data
*data
= dat
;
960 static int hwsim_fops_group_write(void *dat
, u64 val
)
962 struct mac80211_hwsim_data
*data
= dat
;
967 DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group
,
968 hwsim_fops_group_read
, hwsim_fops_group_write
,
971 static int __init
init_mac80211_hwsim(void)
975 struct mac80211_hwsim_data
*data
;
976 struct ieee80211_hw
*hw
;
977 enum ieee80211_band band
;
979 if (radios
< 1 || radios
> 100)
982 spin_lock_init(&hwsim_radio_lock
);
983 INIT_LIST_HEAD(&hwsim_radios
);
985 hwsim_class
= class_create(THIS_MODULE
, "mac80211_hwsim");
986 if (IS_ERR(hwsim_class
))
987 return PTR_ERR(hwsim_class
);
989 memset(addr
, 0, ETH_ALEN
);
992 for (i
= 0; i
< radios
; i
++) {
993 printk(KERN_DEBUG
"mac80211_hwsim: Initializing radio %d\n",
995 hw
= ieee80211_alloc_hw(sizeof(*data
), &mac80211_hwsim_ops
);
997 printk(KERN_DEBUG
"mac80211_hwsim: ieee80211_alloc_hw "
1005 data
->dev
= device_create(hwsim_class
, NULL
, 0, hw
,
1007 if (IS_ERR(data
->dev
)) {
1009 "mac80211_hwsim: device_create "
1010 "failed (%ld)\n", PTR_ERR(data
->dev
));
1012 goto failed_drvdata
;
1014 data
->dev
->driver
= &mac80211_hwsim_driver
;
1016 SET_IEEE80211_DEV(hw
, data
->dev
);
1019 SET_IEEE80211_PERM_ADDR(hw
, addr
);
1021 hw
->channel_change_time
= 1;
1023 hw
->wiphy
->interface_modes
=
1024 BIT(NL80211_IFTYPE_STATION
) |
1025 BIT(NL80211_IFTYPE_AP
) |
1026 BIT(NL80211_IFTYPE_MESH_POINT
);
1028 hw
->flags
= IEEE80211_HW_MFP_CAPABLE
|
1029 IEEE80211_HW_SIGNAL_DBM
;
1031 /* ask mac80211 to reserve space for magic */
1032 hw
->vif_data_size
= sizeof(struct hwsim_vif_priv
);
1033 hw
->sta_data_size
= sizeof(struct hwsim_sta_priv
);
1035 memcpy(data
->channels_2ghz
, hwsim_channels_2ghz
,
1036 sizeof(hwsim_channels_2ghz
));
1037 memcpy(data
->channels_5ghz
, hwsim_channels_5ghz
,
1038 sizeof(hwsim_channels_5ghz
));
1039 memcpy(data
->rates
, hwsim_rates
, sizeof(hwsim_rates
));
1041 for (band
= IEEE80211_BAND_2GHZ
; band
< IEEE80211_NUM_BANDS
; band
++) {
1042 struct ieee80211_supported_band
*sband
= &data
->bands
[band
];
1044 case IEEE80211_BAND_2GHZ
:
1045 sband
->channels
= data
->channels_2ghz
;
1047 ARRAY_SIZE(hwsim_channels_2ghz
);
1049 case IEEE80211_BAND_5GHZ
:
1050 sband
->channels
= data
->channels_5ghz
;
1052 ARRAY_SIZE(hwsim_channels_5ghz
);
1058 sband
->bitrates
= data
->rates
;
1059 sband
->n_bitrates
= ARRAY_SIZE(hwsim_rates
);
1061 sband
->ht_cap
.ht_supported
= true;
1062 sband
->ht_cap
.cap
= IEEE80211_HT_CAP_SUP_WIDTH_20_40
|
1063 IEEE80211_HT_CAP_GRN_FLD
|
1064 IEEE80211_HT_CAP_SGI_40
|
1065 IEEE80211_HT_CAP_DSSSCCK40
;
1066 sband
->ht_cap
.ampdu_factor
= 0x3;
1067 sband
->ht_cap
.ampdu_density
= 0x6;
1068 memset(&sband
->ht_cap
.mcs
, 0,
1069 sizeof(sband
->ht_cap
.mcs
));
1070 sband
->ht_cap
.mcs
.rx_mask
[0] = 0xff;
1071 sband
->ht_cap
.mcs
.rx_mask
[1] = 0xff;
1072 sband
->ht_cap
.mcs
.tx_params
= IEEE80211_HT_MCS_TX_DEFINED
;
1074 hw
->wiphy
->bands
[band
] = sband
;
1076 /* By default all radios are belonging to the first group */
1079 /* Work to be done prior to ieee80211_register_hw() */
1081 case HWSIM_REGTEST_DISABLED
:
1082 case HWSIM_REGTEST_DRIVER_REG_FOLLOW
:
1083 case HWSIM_REGTEST_DRIVER_REG_ALL
:
1084 case HWSIM_REGTEST_DIFF_COUNTRY
:
1086 * Nothing to be done for driver regulatory domain
1087 * hints prior to ieee80211_register_hw()
1090 case HWSIM_REGTEST_WORLD_ROAM
:
1092 hw
->wiphy
->custom_regulatory
= true;
1093 wiphy_apply_custom_regulatory(hw
->wiphy
,
1094 &hwsim_world_regdom_custom_01
);
1097 case HWSIM_REGTEST_CUSTOM_WORLD
:
1098 hw
->wiphy
->custom_regulatory
= true;
1099 wiphy_apply_custom_regulatory(hw
->wiphy
,
1100 &hwsim_world_regdom_custom_01
);
1102 case HWSIM_REGTEST_CUSTOM_WORLD_2
:
1104 hw
->wiphy
->custom_regulatory
= true;
1105 wiphy_apply_custom_regulatory(hw
->wiphy
,
1106 &hwsim_world_regdom_custom_01
);
1107 } else if (i
== 1) {
1108 hw
->wiphy
->custom_regulatory
= true;
1109 wiphy_apply_custom_regulatory(hw
->wiphy
,
1110 &hwsim_world_regdom_custom_02
);
1113 case HWSIM_REGTEST_STRICT_ALL
:
1114 hw
->wiphy
->strict_regulatory
= true;
1116 case HWSIM_REGTEST_STRICT_FOLLOW
:
1117 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG
:
1119 hw
->wiphy
->strict_regulatory
= true;
1121 case HWSIM_REGTEST_ALL
:
1123 hw
->wiphy
->custom_regulatory
= true;
1124 wiphy_apply_custom_regulatory(hw
->wiphy
,
1125 &hwsim_world_regdom_custom_01
);
1126 } else if (i
== 1) {
1127 hw
->wiphy
->custom_regulatory
= true;
1128 wiphy_apply_custom_regulatory(hw
->wiphy
,
1129 &hwsim_world_regdom_custom_02
);
1131 hw
->wiphy
->strict_regulatory
= true;
1137 /* give the regulatory workqueue a chance to run */
1139 schedule_timeout_interruptible(1);
1140 err
= ieee80211_register_hw(hw
);
1142 printk(KERN_DEBUG
"mac80211_hwsim: "
1143 "ieee80211_register_hw failed (%d)\n", err
);
1147 /* Work to be done after to ieee80211_register_hw() */
1149 case HWSIM_REGTEST_WORLD_ROAM
:
1150 case HWSIM_REGTEST_DISABLED
:
1152 case HWSIM_REGTEST_DRIVER_REG_FOLLOW
:
1154 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[0]);
1156 case HWSIM_REGTEST_DRIVER_REG_ALL
:
1157 case HWSIM_REGTEST_STRICT_ALL
:
1158 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[0]);
1160 case HWSIM_REGTEST_DIFF_COUNTRY
:
1161 if (i
< ARRAY_SIZE(hwsim_alpha2s
))
1162 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[i
]);
1164 case HWSIM_REGTEST_CUSTOM_WORLD
:
1165 case HWSIM_REGTEST_CUSTOM_WORLD_2
:
1167 * Nothing to be done for custom world regulatory
1168 * domains after to ieee80211_register_hw
1171 case HWSIM_REGTEST_STRICT_FOLLOW
:
1173 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[0]);
1175 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG
:
1177 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[0]);
1179 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[1]);
1181 case HWSIM_REGTEST_ALL
:
1183 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[0]);
1185 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[1]);
1187 regulatory_hint(hw
->wiphy
, hwsim_alpha2s
[2]);
1193 printk(KERN_DEBUG
"%s: hwaddr %pM registered\n",
1194 wiphy_name(hw
->wiphy
),
1195 hw
->wiphy
->perm_addr
);
1197 data
->debugfs
= debugfs_create_dir("hwsim",
1198 hw
->wiphy
->debugfsdir
);
1199 data
->debugfs_ps
= debugfs_create_file("ps", 0666,
1200 data
->debugfs
, data
,
1202 data
->debugfs_group
= debugfs_create_file("group", 0666,
1203 data
->debugfs
, data
,
1206 setup_timer(&data
->beacon_timer
, mac80211_hwsim_beacon
,
1207 (unsigned long) hw
);
1209 list_add_tail(&data
->list
, &hwsim_radios
);
1212 hwsim_mon
= alloc_netdev(0, "hwsim%d", hwsim_mon_setup
);
1213 if (hwsim_mon
== NULL
)
1218 err
= dev_alloc_name(hwsim_mon
, hwsim_mon
->name
);
1223 err
= register_netdevice(hwsim_mon
);
1233 free_netdev(hwsim_mon
);
1234 mac80211_hwsim_free();
1238 device_unregister(data
->dev
);
1240 ieee80211_free_hw(hw
);
1242 mac80211_hwsim_free();
1247 static void __exit
exit_mac80211_hwsim(void)
1249 printk(KERN_DEBUG
"mac80211_hwsim: unregister radios\n");
1251 mac80211_hwsim_free();
1252 unregister_netdev(hwsim_mon
);
1256 module_init(init_mac80211_hwsim
);
1257 module_exit(exit_mac80211_hwsim
);