blob: 58c357eaf216642891e7b5f7064f271cfda8b0a6 [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:
12 * - IBSS mode simulation (Beacon transmission with competition for "air time")
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030013 * - RX filtering based on filter configuration (data->rx_filter)
14 */
15
Johannes Berg0e057d732008-09-12 00:39:22 +020016#include <linux/list.h>
17#include <linux/spinlock.h>
Johannes Berg90e30122009-06-18 14:51:12 +020018#include <net/dst.h>
19#include <net/xfrm.h>
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030020#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>
Jouni Malinenfc6971d2008-10-30 19:59:05 +020025#include <linux/debugfs.h>
Jouni Malinenacc1e7a2008-06-11 10:42:31 +030026
27MODULE_AUTHOR("Jouni Malinen");
28MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
29MODULE_LICENSE("GPL");
30
31static int radios = 2;
32module_param(radios, int, 0444);
33MODULE_PARM_DESC(radios, "Number of simulated radios");
34
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -040035/**
36 * enum hwsim_regtest - the type of regulatory tests we offer
37 *
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.
46 *
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
64 * domain.
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
80 * first two.
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
88 * domain request
89 * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio
90 * regulatory requests.
91 */
92enum hwsim_regtest {
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,
104};
105
106/* Set to one of the HWSIM_REGTEST_* values above */
107static int regtest = HWSIM_REGTEST_DISABLED;
108module_param(regtest, int, 0444);
109MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run");
110
111static const char *hwsim_alpha2s[] = {
112 "FI",
113 "AL",
114 "US",
115 "DE",
116 "JP",
117 "AL",
118};
119
120static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = {
121 .n_reg_rules = 4,
122 .alpha2 = "99",
123 .reg_rules = {
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),
128 }
129};
130
131static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = {
132 .n_reg_rules = 2,
133 .alpha2 = "99",
134 .reg_rules = {
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),
138 }
139};
140
Johannes Berg8aa21e62008-09-11 02:16:36 +0200141struct hwsim_vif_priv {
142 u32 magic;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200143 u8 bssid[ETH_ALEN];
144 bool assoc;
145 u16 aid;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200146};
147
148#define HWSIM_VIF_MAGIC 0x69537748
149
150static inline void hwsim_check_magic(struct ieee80211_vif *vif)
151{
152 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
153 WARN_ON(vp->magic != HWSIM_VIF_MAGIC);
154}
155
156static inline void hwsim_set_magic(struct ieee80211_vif *vif)
157{
158 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
159 vp->magic = HWSIM_VIF_MAGIC;
160}
161
162static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
163{
164 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
165 vp->magic = 0;
166}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300167
Johannes Berg81c06522008-09-11 02:17:01 +0200168struct hwsim_sta_priv {
169 u32 magic;
170};
171
172#define HWSIM_STA_MAGIC 0x6d537748
173
174static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
175{
176 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
Rami Rosen5d6924e2008-10-08 11:18:27 +0200177 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
Johannes Berg81c06522008-09-11 02:17:01 +0200178}
179
180static inline void hwsim_set_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 sp->magic = HWSIM_STA_MAGIC;
Johannes Berg81c06522008-09-11 02:17:01 +0200184}
185
186static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
187{
188 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
189 sp->magic = 0;
190}
191
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300192static struct class *hwsim_class;
193
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300194static struct net_device *hwsim_mon; /* global monitor netdev */
195
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800196#define CHAN2G(_freq) { \
197 .band = IEEE80211_BAND_2GHZ, \
198 .center_freq = (_freq), \
199 .hw_value = (_freq), \
200 .max_power = 20, \
201}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300202
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800203#define CHAN5G(_freq) { \
204 .band = IEEE80211_BAND_5GHZ, \
205 .center_freq = (_freq), \
206 .hw_value = (_freq), \
207 .max_power = 20, \
208}
209
210static 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 */
225};
226
227static 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 */
232
233 CHAN5G(5260), /* Channel 52 */
234 CHAN5G(5280), /* Channel 56 */
235 CHAN5G(5300), /* Channel 60 */
236 CHAN5G(5320), /* Channel 64 */
237
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 */
249
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 */
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300255};
256
257static const struct ieee80211_rate hwsim_rates[] = {
258 { .bitrate = 10 },
259 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
260 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
261 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
262 { .bitrate = 60 },
263 { .bitrate = 90 },
264 { .bitrate = 120 },
265 { .bitrate = 180 },
266 { .bitrate = 240 },
267 { .bitrate = 360 },
268 { .bitrate = 480 },
269 { .bitrate = 540 }
270};
271
Johannes Berg0e057d732008-09-12 00:39:22 +0200272static spinlock_t hwsim_radio_lock;
273static struct list_head hwsim_radios;
274
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300275struct mac80211_hwsim_data {
Johannes Berg0e057d732008-09-12 00:39:22 +0200276 struct list_head list;
277 struct ieee80211_hw *hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300278 struct device *dev;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800279 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)];
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300282 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
283
284 struct ieee80211_channel *channel;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300285 unsigned long beacon_int; /* in jiffies unit */
286 unsigned int rx_filter;
Jouni Malinen70541832009-11-01 11:30:48 +0200287 bool started, idle;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300288 struct timer_list beacon_timer;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200289 enum ps_mode {
290 PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL
291 } ps;
292 bool ps_poll_pending;
293 struct dentry *debugfs;
294 struct dentry *debugfs_ps;
Daniel Wagner73606d02009-05-18 19:49:25 +0200295
296 /*
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.
300 */
301 u64 group;
302 struct dentry *debugfs_group;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300303};
304
305
306struct hwsim_radiotap_hdr {
307 struct ieee80211_radiotap_header hdr;
308 u8 rt_flags;
309 u8 rt_rate;
310 __le16 rt_channel;
311 __le16 rt_chbitmask;
312} __attribute__ ((packed));
313
314
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +0000315static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb,
316 struct net_device *dev)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300317{
318 /* TODO: allow packet injection */
319 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000320 return NETDEV_TX_OK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300321}
322
323
324static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
325 struct sk_buff *tx_skb)
326{
327 struct mac80211_hwsim_data *data = hw->priv;
328 struct sk_buff *skb;
329 struct hwsim_radiotap_hdr *hdr;
330 u16 flags;
331 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
332 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
333
334 if (!netif_running(hwsim_mon))
335 return;
336
337 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
338 if (skb == NULL)
339 return;
340
341 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
342 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
343 hdr->hdr.it_pad = 0;
344 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
Jouni Malinenf248f102008-06-13 19:44:47 +0300345 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
346 (1 << IEEE80211_RADIOTAP_RATE) |
347 (1 << IEEE80211_RADIOTAP_CHANNEL));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300348 hdr->rt_flags = 0;
349 hdr->rt_rate = txrate->bitrate / 5;
Johannes Bergdf70b4a2008-07-10 11:56:33 +0200350 hdr->rt_channel = cpu_to_le16(data->channel->center_freq);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300351 flags = IEEE80211_CHAN_2GHZ;
352 if (txrate->flags & IEEE80211_RATE_ERP_G)
353 flags |= IEEE80211_CHAN_OFDM;
354 else
355 flags |= IEEE80211_CHAN_CCK;
356 hdr->rt_chbitmask = cpu_to_le16(flags);
357
358 skb->dev = hwsim_mon;
359 skb_set_mac_header(skb, 0);
360 skb->ip_summed = CHECKSUM_UNNECESSARY;
361 skb->pkt_type = PACKET_OTHERHOST;
Jouni Malinenf248f102008-06-13 19:44:47 +0300362 skb->protocol = htons(ETH_P_802_2);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300363 memset(skb->cb, 0, sizeof(skb->cb));
364 netif_rx(skb);
365}
366
367
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200368static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data,
369 struct sk_buff *skb)
370{
371 switch (data->ps) {
372 case PS_DISABLED:
373 return true;
374 case PS_ENABLED:
375 return false;
376 case PS_AUTO_POLL:
377 /* TODO: accept (some) Beacons by default and other frames only
378 * if pending PS-Poll has been sent */
379 return true;
380 case PS_MANUAL_POLL:
381 /* Allow unicast frames to own address if there is a pending
382 * PS-Poll */
383 if (data->ps_poll_pending &&
384 memcmp(data->hw->wiphy->perm_addr, skb->data + 4,
385 ETH_ALEN) == 0) {
386 data->ps_poll_pending = false;
387 return true;
388 }
389 return false;
390 }
391
392 return true;
393}
394
395
Johannes Berg0e057d732008-09-12 00:39:22 +0200396static bool mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
397 struct sk_buff *skb)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300398{
Johannes Berg0e057d732008-09-12 00:39:22 +0200399 struct mac80211_hwsim_data *data = hw->priv, *data2;
400 bool ack = false;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300401 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300402 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300403 struct ieee80211_rx_status rx_status;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300404
Jouni Malinen70541832009-11-01 11:30:48 +0200405 if (data->idle) {
406 printk(KERN_DEBUG "%s: Trying to TX when idle - reject\n",
407 wiphy_name(hw->wiphy));
408 return false;
409 }
410
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300411 memset(&rx_status, 0, sizeof(rx_status));
412 /* TODO: set mactime */
413 rx_status.freq = data->channel->center_freq;
414 rx_status.band = data->channel->band;
Johannes Berge6a98542008-10-21 12:40:02 +0200415 rx_status.rate_idx = info->control.rates[0].idx;
Johannes Berg4b14c962009-07-10 16:56:59 +0200416 /* TODO: simulate real signal strength (and optional packet loss) */
417 rx_status.signal = -50;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300418
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200419 if (data->ps != PS_DISABLED)
420 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
421
Johannes Berg90e30122009-06-18 14:51:12 +0200422 /* release the skb's source info */
423 skb_orphan(skb);
John W. Linvillec0acf382009-06-30 16:55:52 -0400424 skb_dst_drop(skb);
Johannes Berg90e30122009-06-18 14:51:12 +0200425 skb->mark = 0;
426 secpath_reset(skb);
427 nf_reset(skb);
428
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300429 /* Copy skb to all enabled radios that are on the current frequency */
Johannes Berg0e057d732008-09-12 00:39:22 +0200430 spin_lock(&hwsim_radio_lock);
431 list_for_each_entry(data2, &hwsim_radios, list) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300432 struct sk_buff *nskb;
433
Johannes Berg0e057d732008-09-12 00:39:22 +0200434 if (data == data2)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300435 continue;
Johannes Berg0e057d732008-09-12 00:39:22 +0200436
Jouni Malinen70541832009-11-01 11:30:48 +0200437 if (data2->idle || !data2->started ||
438 !hwsim_ps_rx_ok(data2, skb) ||
Johannes Berg4ff17662009-07-07 03:43:02 +0200439 !data->channel || !data2->channel ||
Daniel Wagner73606d02009-05-18 19:49:25 +0200440 data->channel->center_freq != data2->channel->center_freq ||
441 !(data->group & data2->group))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300442 continue;
443
444 nskb = skb_copy(skb, GFP_ATOMIC);
445 if (nskb == NULL)
446 continue;
447
Johannes Berg0e057d732008-09-12 00:39:22 +0200448 if (memcmp(hdr->addr1, data2->hw->wiphy->perm_addr,
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300449 ETH_ALEN) == 0)
Johannes Berg0e057d732008-09-12 00:39:22 +0200450 ack = true;
Johannes Bergf1d58c22009-06-17 13:13:00 +0200451 memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
452 ieee80211_rx_irqsafe(data2->hw, nskb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300453 }
Johannes Berg0e057d732008-09-12 00:39:22 +0200454 spin_unlock(&hwsim_radio_lock);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300455
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300456 return ack;
457}
458
459
460static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
461{
Johannes Berg0e057d732008-09-12 00:39:22 +0200462 bool ack;
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300463 struct ieee80211_tx_info *txi;
464
465 mac80211_hwsim_monitor_rx(hw, skb);
466
467 if (skb->len < 10) {
468 /* Should not happen; just a sanity check for addr1 use */
469 dev_kfree_skb(skb);
470 return NETDEV_TX_OK;
471 }
472
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300473 ack = mac80211_hwsim_tx_frame(hw, skb);
474
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300475 txi = IEEE80211_SKB_CB(skb);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200476
Johannes Berg25d834e2008-09-12 22:52:47 +0200477 if (txi->control.vif)
478 hwsim_check_magic(txi->control.vif);
Johannes Berg81c06522008-09-11 02:17:01 +0200479 if (txi->control.sta)
480 hwsim_check_sta_magic(txi->control.sta);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200481
Johannes Berge6a98542008-10-21 12:40:02 +0200482 ieee80211_tx_info_clear_status(txi);
483 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
484 txi->flags |= IEEE80211_TX_STAT_ACK;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300485 ieee80211_tx_status_irqsafe(hw, skb);
486 return NETDEV_TX_OK;
487}
488
489
490static int mac80211_hwsim_start(struct ieee80211_hw *hw)
491{
492 struct mac80211_hwsim_data *data = hw->priv;
493 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
494 data->started = 1;
495 return 0;
496}
497
498
499static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
500{
501 struct mac80211_hwsim_data *data = hw->priv;
502 data->started = 0;
Jouni Malinenab1ef982008-10-30 16:59:25 +0200503 del_timer(&data->beacon_timer);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300504 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
505}
506
507
508static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
509 struct ieee80211_if_init_conf *conf)
510{
Johannes Berge1749612008-10-27 15:59:26 -0700511 printk(KERN_DEBUG "%s:%s (type=%d mac_addr=%pM)\n",
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300512 wiphy_name(hw->wiphy), __func__, conf->type,
Johannes Berge1749612008-10-27 15:59:26 -0700513 conf->mac_addr);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200514 hwsim_set_magic(conf->vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300515 return 0;
516}
517
518
519static void mac80211_hwsim_remove_interface(
520 struct ieee80211_hw *hw, struct ieee80211_if_init_conf *conf)
521{
Johannes Berge1749612008-10-27 15:59:26 -0700522 printk(KERN_DEBUG "%s:%s (type=%d mac_addr=%pM)\n",
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300523 wiphy_name(hw->wiphy), __func__, conf->type,
Johannes Berge1749612008-10-27 15:59:26 -0700524 conf->mac_addr);
Johannes Berg8aa21e62008-09-11 02:16:36 +0200525 hwsim_check_magic(conf->vif);
526 hwsim_clear_magic(conf->vif);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300527}
528
529
530static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
531 struct ieee80211_vif *vif)
532{
533 struct ieee80211_hw *hw = arg;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300534 struct sk_buff *skb;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300535 struct ieee80211_tx_info *info;
536
Johannes Berg8aa21e62008-09-11 02:16:36 +0200537 hwsim_check_magic(vif);
538
Andrey Yurovsky55b39612008-10-31 23:23:35 -0700539 if (vif->type != NL80211_IFTYPE_AP &&
540 vif->type != NL80211_IFTYPE_MESH_POINT)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300541 return;
542
543 skb = ieee80211_beacon_get(hw, vif);
544 if (skb == NULL)
545 return;
546 info = IEEE80211_SKB_CB(skb);
547
548 mac80211_hwsim_monitor_rx(hw, skb);
Jouni Malinene36cfdc2008-06-13 19:44:48 +0300549 mac80211_hwsim_tx_frame(hw, skb);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300550 dev_kfree_skb(skb);
551}
552
553
554static void mac80211_hwsim_beacon(unsigned long arg)
555{
556 struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
557 struct mac80211_hwsim_data *data = hw->priv;
558
Johannes Berg4c4c6712009-06-01 14:29:52 +0200559 if (!data->started)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300560 return;
561
Jouni Malinenf248f102008-06-13 19:44:47 +0300562 ieee80211_iterate_active_interfaces_atomic(
563 hw, mac80211_hwsim_beacon_tx, hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300564
565 data->beacon_timer.expires = jiffies + data->beacon_int;
566 add_timer(&data->beacon_timer);
567}
568
569
Johannes Berge8975582008-10-09 12:18:51 +0200570static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300571{
572 struct mac80211_hwsim_data *data = hw->priv;
Johannes Berge8975582008-10-09 12:18:51 +0200573 struct ieee80211_conf *conf = &hw->conf;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300574
Johannes Berg4c4c6712009-06-01 14:29:52 +0200575 printk(KERN_DEBUG "%s:%s (freq=%d idle=%d ps=%d)\n",
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300576 wiphy_name(hw->wiphy), __func__,
Johannes Berg4c4c6712009-06-01 14:29:52 +0200577 conf->channel->center_freq,
Johannes Berg5cff20e2009-04-29 12:26:17 +0200578 !!(conf->flags & IEEE80211_CONF_IDLE),
579 !!(conf->flags & IEEE80211_CONF_PS));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300580
Jouni Malinen70541832009-11-01 11:30:48 +0200581 data->idle = !!(conf->flags & IEEE80211_CONF_IDLE);
582
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300583 data->channel = conf->channel;
Johannes Berg4c4c6712009-06-01 14:29:52 +0200584 if (!data->started || !data->beacon_int)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300585 del_timer(&data->beacon_timer);
586 else
587 mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
588
589 return 0;
590}
591
592
593static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
594 unsigned int changed_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200595 unsigned int *total_flags,u64 multicast)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300596{
597 struct mac80211_hwsim_data *data = hw->priv;
598
599 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
600
601 data->rx_filter = 0;
602 if (*total_flags & FIF_PROMISC_IN_BSS)
603 data->rx_filter |= FIF_PROMISC_IN_BSS;
604 if (*total_flags & FIF_ALLMULTI)
605 data->rx_filter |= FIF_ALLMULTI;
606
607 *total_flags = data->rx_filter;
608}
609
Johannes Berg8aa21e62008-09-11 02:16:36 +0200610static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
611 struct ieee80211_vif *vif,
612 struct ieee80211_bss_conf *info,
613 u32 changed)
614{
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200615 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200616 struct mac80211_hwsim_data *data = hw->priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200617
Johannes Berg8aa21e62008-09-11 02:16:36 +0200618 hwsim_check_magic(vif);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200619
620 printk(KERN_DEBUG "%s:%s(changed=0x%x)\n",
621 wiphy_name(hw->wiphy), __func__, changed);
622
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200623 if (changed & BSS_CHANGED_BSSID) {
624 printk(KERN_DEBUG "%s:%s: BSSID changed: %pM\n",
625 wiphy_name(hw->wiphy), __func__,
626 info->bssid);
627 memcpy(vp->bssid, info->bssid, ETH_ALEN);
628 }
629
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200630 if (changed & BSS_CHANGED_ASSOC) {
631 printk(KERN_DEBUG " %s: ASSOC: assoc=%d aid=%d\n",
632 wiphy_name(hw->wiphy), info->assoc, info->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200633 vp->assoc = info->assoc;
634 vp->aid = info->aid;
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200635 }
636
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200637 if (changed & BSS_CHANGED_BEACON_INT) {
638 printk(KERN_DEBUG " %s: BCNINT: %d\n",
639 wiphy_name(hw->wiphy), info->beacon_int);
640 data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000;
Johannes Bergd91f1902009-04-24 15:13:54 +0200641 if (WARN_ON(!data->beacon_int))
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200642 data->beacon_int = 1;
Jouni Malinenffed1302009-09-26 22:30:15 +0300643 if (data->started)
644 mod_timer(&data->beacon_timer,
645 jiffies + data->beacon_int);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200646 }
647
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200648 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
649 printk(KERN_DEBUG " %s: ERP_CTS_PROT: %d\n",
650 wiphy_name(hw->wiphy), info->use_cts_prot);
651 }
652
653 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
654 printk(KERN_DEBUG " %s: ERP_PREAMBLE: %d\n",
655 wiphy_name(hw->wiphy), info->use_short_preamble);
656 }
657
658 if (changed & BSS_CHANGED_ERP_SLOT) {
659 printk(KERN_DEBUG " %s: ERP_SLOT: %d\n",
660 wiphy_name(hw->wiphy), info->use_short_slot);
661 }
662
663 if (changed & BSS_CHANGED_HT) {
Sujith094d05d2008-12-12 11:57:43 +0530664 printk(KERN_DEBUG " %s: HT: op_mode=0x%x\n",
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200665 wiphy_name(hw->wiphy),
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200666 info->ht_operation_mode);
Jouni Malinenfe63bfa2008-10-30 16:59:21 +0200667 }
668
669 if (changed & BSS_CHANGED_BASIC_RATES) {
670 printk(KERN_DEBUG " %s: BASIC_RATES: 0x%llx\n",
671 wiphy_name(hw->wiphy),
672 (unsigned long long) info->basic_rates);
673 }
Johannes Berg8aa21e62008-09-11 02:16:36 +0200674}
675
676static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
677 struct ieee80211_vif *vif,
Johannes Berg17741cd2008-09-11 00:02:02 +0200678 enum sta_notify_cmd cmd,
679 struct ieee80211_sta *sta)
Johannes Berg8aa21e62008-09-11 02:16:36 +0200680{
681 hwsim_check_magic(vif);
Johannes Berg81c06522008-09-11 02:17:01 +0200682 switch (cmd) {
683 case STA_NOTIFY_ADD:
684 hwsim_set_sta_magic(sta);
685 break;
686 case STA_NOTIFY_REMOVE:
687 hwsim_clear_sta_magic(sta);
688 break;
Christian Lamparter89fad572008-12-09 16:28:06 +0100689 case STA_NOTIFY_SLEEP:
690 case STA_NOTIFY_AWAKE:
691 /* TODO: make good use of these flags */
692 break;
Johannes Berg81c06522008-09-11 02:17:01 +0200693 }
694}
695
696static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
697 struct ieee80211_sta *sta,
698 bool set)
699{
700 hwsim_check_sta_magic(sta);
701 return 0;
Johannes Berg8aa21e62008-09-11 02:16:36 +0200702}
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300703
Jouni Malinen1e898ff82008-10-30 16:59:23 +0200704static int mac80211_hwsim_conf_tx(
705 struct ieee80211_hw *hw, u16 queue,
706 const struct ieee80211_tx_queue_params *params)
707{
708 printk(KERN_DEBUG "%s:%s (queue=%d txop=%d cw_min=%d cw_max=%d "
709 "aifs=%d)\n",
710 wiphy_name(hw->wiphy), __func__, queue,
711 params->txop, params->cw_min, params->cw_max, params->aifs);
712 return 0;
713}
714
Johannes Bergaff89a92009-07-01 21:26:51 +0200715#ifdef CONFIG_NL80211_TESTMODE
716/*
717 * This section contains example code for using netlink
718 * attributes with the testmode command in nl80211.
719 */
720
721/* These enums need to be kept in sync with userspace */
722enum hwsim_testmode_attr {
723 __HWSIM_TM_ATTR_INVALID = 0,
724 HWSIM_TM_ATTR_CMD = 1,
725 HWSIM_TM_ATTR_PS = 2,
726
727 /* keep last */
728 __HWSIM_TM_ATTR_AFTER_LAST,
729 HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1
730};
731
732enum hwsim_testmode_cmd {
733 HWSIM_TM_CMD_SET_PS = 0,
734 HWSIM_TM_CMD_GET_PS = 1,
735};
736
737static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = {
738 [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 },
739 [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 },
740};
741
742static int hwsim_fops_ps_write(void *dat, u64 val);
743
Johannes Berg5bc38192009-07-07 11:00:55 +0200744static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw,
745 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +0200746{
747 struct mac80211_hwsim_data *hwsim = hw->priv;
748 struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1];
749 struct sk_buff *skb;
750 int err, ps;
751
752 err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len,
753 hwsim_testmode_policy);
754 if (err)
755 return err;
756
757 if (!tb[HWSIM_TM_ATTR_CMD])
758 return -EINVAL;
759
760 switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) {
761 case HWSIM_TM_CMD_SET_PS:
762 if (!tb[HWSIM_TM_ATTR_PS])
763 return -EINVAL;
764 ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]);
765 return hwsim_fops_ps_write(hwsim, ps);
766 case HWSIM_TM_CMD_GET_PS:
767 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
768 nla_total_size(sizeof(u32)));
769 if (!skb)
770 return -ENOMEM;
771 NLA_PUT_U32(skb, HWSIM_TM_ATTR_PS, hwsim->ps);
772 return cfg80211_testmode_reply(skb);
773 default:
774 return -EOPNOTSUPP;
775 }
776
777 nla_put_failure:
778 kfree_skb(skb);
779 return -ENOBUFS;
780}
781#endif
782
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300783static const struct ieee80211_ops mac80211_hwsim_ops =
784{
785 .tx = mac80211_hwsim_tx,
786 .start = mac80211_hwsim_start,
787 .stop = mac80211_hwsim_stop,
788 .add_interface = mac80211_hwsim_add_interface,
789 .remove_interface = mac80211_hwsim_remove_interface,
790 .config = mac80211_hwsim_config,
791 .configure_filter = mac80211_hwsim_configure_filter,
Johannes Berg8aa21e62008-09-11 02:16:36 +0200792 .bss_info_changed = mac80211_hwsim_bss_info_changed,
793 .sta_notify = mac80211_hwsim_sta_notify,
Johannes Berg81c06522008-09-11 02:17:01 +0200794 .set_tim = mac80211_hwsim_set_tim,
Jouni Malinen1e898ff82008-10-30 16:59:23 +0200795 .conf_tx = mac80211_hwsim_conf_tx,
Johannes Bergaff89a92009-07-01 21:26:51 +0200796 CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300797};
798
799
800static void mac80211_hwsim_free(void)
801{
Johannes Berg0e057d732008-09-12 00:39:22 +0200802 struct list_head tmplist, *i, *tmp;
Johannes Berge603d9d2009-07-13 13:25:58 +0200803 struct mac80211_hwsim_data *data, *tmpdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300804
Johannes Berg0e057d732008-09-12 00:39:22 +0200805 INIT_LIST_HEAD(&tmplist);
806
807 spin_lock_bh(&hwsim_radio_lock);
808 list_for_each_safe(i, tmp, &hwsim_radios)
809 list_move(i, &tmplist);
810 spin_unlock_bh(&hwsim_radio_lock);
811
Johannes Berge603d9d2009-07-13 13:25:58 +0200812 list_for_each_entry_safe(data, tmpdata, &tmplist, list) {
Daniel Wagner73606d02009-05-18 19:49:25 +0200813 debugfs_remove(data->debugfs_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200814 debugfs_remove(data->debugfs_ps);
815 debugfs_remove(data->debugfs);
Johannes Berg0e057d732008-09-12 00:39:22 +0200816 ieee80211_unregister_hw(data->hw);
817 device_unregister(data->dev);
818 ieee80211_free_hw(data->hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300819 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300820 class_destroy(hwsim_class);
821}
822
823
824static struct device_driver mac80211_hwsim_driver = {
825 .name = "mac80211_hwsim"
826};
827
Stephen Hemminger98d2faa2009-03-20 19:36:33 +0000828static const struct net_device_ops hwsim_netdev_ops = {
829 .ndo_start_xmit = hwsim_mon_xmit,
830 .ndo_change_mtu = eth_change_mtu,
831 .ndo_set_mac_address = eth_mac_addr,
832 .ndo_validate_addr = eth_validate_addr,
833};
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300834
835static void hwsim_mon_setup(struct net_device *dev)
836{
Stephen Hemminger98d2faa2009-03-20 19:36:33 +0000837 dev->netdev_ops = &hwsim_netdev_ops;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300838 dev->destructor = free_netdev;
839 ether_setup(dev);
840 dev->tx_queue_len = 0;
841 dev->type = ARPHRD_IEEE80211_RADIOTAP;
842 memset(dev->dev_addr, 0, ETH_ALEN);
843 dev->dev_addr[0] = 0x12;
844}
845
846
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200847static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif)
848{
849 struct mac80211_hwsim_data *data = dat;
850 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200851 struct sk_buff *skb;
852 struct ieee80211_pspoll *pspoll;
853
854 if (!vp->assoc)
855 return;
856
John W. Linvilleb2355072008-11-25 16:47:36 -0500857 printk(KERN_DEBUG "%s:%s: send PS-Poll to %pM for aid %d\n",
858 wiphy_name(data->hw->wiphy), __func__, vp->bssid, vp->aid);
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200859
860 skb = dev_alloc_skb(sizeof(*pspoll));
861 if (!skb)
862 return;
863 pspoll = (void *) skb_put(skb, sizeof(*pspoll));
864 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
865 IEEE80211_STYPE_PSPOLL |
866 IEEE80211_FCTL_PM);
867 pspoll->aid = cpu_to_le16(0xc000 | vp->aid);
868 memcpy(pspoll->bssid, vp->bssid, ETH_ALEN);
869 memcpy(pspoll->ta, mac, ETH_ALEN);
Johannes Berg4c4c6712009-06-01 14:29:52 +0200870 if (!mac80211_hwsim_tx_frame(data->hw, skb))
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200871 printk(KERN_DEBUG "%s: PS-Poll frame not ack'ed\n", __func__);
872 dev_kfree_skb(skb);
873}
874
875
876static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac,
877 struct ieee80211_vif *vif, int ps)
878{
879 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200880 struct sk_buff *skb;
881 struct ieee80211_hdr *hdr;
882
883 if (!vp->assoc)
884 return;
885
John W. Linvilleb2355072008-11-25 16:47:36 -0500886 printk(KERN_DEBUG "%s:%s: send data::nullfunc to %pM ps=%d\n",
887 wiphy_name(data->hw->wiphy), __func__, vp->bssid, ps);
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200888
889 skb = dev_alloc_skb(sizeof(*hdr));
890 if (!skb)
891 return;
892 hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN);
893 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
894 IEEE80211_STYPE_NULLFUNC |
895 (ps ? IEEE80211_FCTL_PM : 0));
896 hdr->duration_id = cpu_to_le16(0);
897 memcpy(hdr->addr1, vp->bssid, ETH_ALEN);
898 memcpy(hdr->addr2, mac, ETH_ALEN);
899 memcpy(hdr->addr3, vp->bssid, ETH_ALEN);
Johannes Berg4c4c6712009-06-01 14:29:52 +0200900 if (!mac80211_hwsim_tx_frame(data->hw, skb))
Jouni Malinenfc6971d2008-10-30 19:59:05 +0200901 printk(KERN_DEBUG "%s: nullfunc frame not ack'ed\n", __func__);
902 dev_kfree_skb(skb);
903}
904
905
906static void hwsim_send_nullfunc_ps(void *dat, u8 *mac,
907 struct ieee80211_vif *vif)
908{
909 struct mac80211_hwsim_data *data = dat;
910 hwsim_send_nullfunc(data, mac, vif, 1);
911}
912
913
914static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac,
915 struct ieee80211_vif *vif)
916{
917 struct mac80211_hwsim_data *data = dat;
918 hwsim_send_nullfunc(data, mac, vif, 0);
919}
920
921
922static int hwsim_fops_ps_read(void *dat, u64 *val)
923{
924 struct mac80211_hwsim_data *data = dat;
925 *val = data->ps;
926 return 0;
927}
928
929static int hwsim_fops_ps_write(void *dat, u64 val)
930{
931 struct mac80211_hwsim_data *data = dat;
932 enum ps_mode old_ps;
933
934 if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL &&
935 val != PS_MANUAL_POLL)
936 return -EINVAL;
937
938 old_ps = data->ps;
939 data->ps = val;
940
941 if (val == PS_MANUAL_POLL) {
942 ieee80211_iterate_active_interfaces(data->hw,
943 hwsim_send_ps_poll, data);
944 data->ps_poll_pending = true;
945 } else if (old_ps == PS_DISABLED && val != PS_DISABLED) {
946 ieee80211_iterate_active_interfaces(data->hw,
947 hwsim_send_nullfunc_ps,
948 data);
949 } else if (old_ps != PS_DISABLED && val == PS_DISABLED) {
950 ieee80211_iterate_active_interfaces(data->hw,
951 hwsim_send_nullfunc_no_ps,
952 data);
953 }
954
955 return 0;
956}
957
958DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write,
959 "%llu\n");
960
961
Daniel Wagner73606d02009-05-18 19:49:25 +0200962static int hwsim_fops_group_read(void *dat, u64 *val)
963{
964 struct mac80211_hwsim_data *data = dat;
965 *val = data->group;
966 return 0;
967}
968
969static int hwsim_fops_group_write(void *dat, u64 val)
970{
971 struct mac80211_hwsim_data *data = dat;
972 data->group = val;
973 return 0;
974}
975
976DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group,
977 hwsim_fops_group_read, hwsim_fops_group_write,
978 "%llx\n");
979
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300980static int __init init_mac80211_hwsim(void)
981{
982 int i, err = 0;
983 u8 addr[ETH_ALEN];
984 struct mac80211_hwsim_data *data;
985 struct ieee80211_hw *hw;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -0800986 enum ieee80211_band band;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300987
Johannes Berg0e057d732008-09-12 00:39:22 +0200988 if (radios < 1 || radios > 100)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300989 return -EINVAL;
990
Johannes Berg0e057d732008-09-12 00:39:22 +0200991 spin_lock_init(&hwsim_radio_lock);
992 INIT_LIST_HEAD(&hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300993
994 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
Johannes Berg0e057d732008-09-12 00:39:22 +0200995 if (IS_ERR(hwsim_class))
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300996 return PTR_ERR(hwsim_class);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +0300997
998 memset(addr, 0, ETH_ALEN);
999 addr[0] = 0x02;
1000
Johannes Berg0e057d732008-09-12 00:39:22 +02001001 for (i = 0; i < radios; i++) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001002 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
1003 i);
1004 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
Johannes Berg0e057d732008-09-12 00:39:22 +02001005 if (!hw) {
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001006 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
1007 "failed\n");
1008 err = -ENOMEM;
1009 goto failed;
1010 }
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001011 data = hw->priv;
Johannes Berg0e057d732008-09-12 00:39:22 +02001012 data->hw = hw;
1013
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07001014 data->dev = device_create(hwsim_class, NULL, 0, hw,
1015 "hwsim%d", i);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001016 if (IS_ERR(data->dev)) {
Stephen Rothwelle800f172008-06-16 15:35:10 +10001017 printk(KERN_DEBUG
Greg Kroah-Hartman6e05d6c2008-07-21 20:03:34 -07001018 "mac80211_hwsim: device_create "
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001019 "failed (%ld)\n", PTR_ERR(data->dev));
1020 err = -ENOMEM;
Ian Schram3a33cc12008-07-21 13:19:35 -07001021 goto failed_drvdata;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001022 }
1023 data->dev->driver = &mac80211_hwsim_driver;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001024
1025 SET_IEEE80211_DEV(hw, data->dev);
1026 addr[3] = i >> 8;
1027 addr[4] = i;
1028 SET_IEEE80211_PERM_ADDR(hw, addr);
1029
1030 hw->channel_change_time = 1;
Jouni Malinen87e8b642008-08-21 21:45:56 +03001031 hw->queues = 4;
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -07001032 hw->wiphy->interface_modes =
1033 BIT(NL80211_IFTYPE_STATION) |
Andrey Yurovsky55b39612008-10-31 23:23:35 -07001034 BIT(NL80211_IFTYPE_AP) |
1035 BIT(NL80211_IFTYPE_MESH_POINT);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001036
Johannes Berg4b14c962009-07-10 16:56:59 +02001037 hw->flags = IEEE80211_HW_MFP_CAPABLE |
1038 IEEE80211_HW_SIGNAL_DBM;
Jouni Malinenfa775332009-01-08 13:32:14 +02001039
Johannes Berg8aa21e62008-09-11 02:16:36 +02001040 /* ask mac80211 to reserve space for magic */
1041 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
Johannes Berg81c06522008-09-11 02:17:01 +02001042 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
Johannes Berg8aa21e62008-09-11 02:16:36 +02001043
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001044 memcpy(data->channels_2ghz, hwsim_channels_2ghz,
1045 sizeof(hwsim_channels_2ghz));
1046 memcpy(data->channels_5ghz, hwsim_channels_5ghz,
1047 sizeof(hwsim_channels_5ghz));
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001048 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001049
1050 for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) {
1051 struct ieee80211_supported_band *sband = &data->bands[band];
1052 switch (band) {
1053 case IEEE80211_BAND_2GHZ:
1054 sband->channels = data->channels_2ghz;
1055 sband->n_channels =
1056 ARRAY_SIZE(hwsim_channels_2ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01001057 sband->bitrates = data->rates;
1058 sband->n_bitrates = ARRAY_SIZE(hwsim_rates);
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001059 break;
1060 case IEEE80211_BAND_5GHZ:
1061 sband->channels = data->channels_5ghz;
1062 sband->n_channels =
1063 ARRAY_SIZE(hwsim_channels_5ghz);
Johannes Bergd130eb42009-10-27 20:53:58 +01001064 sband->bitrates = data->rates + 4;
1065 sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4;
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001066 break;
1067 default:
1068 break;
1069 }
1070
Luis R. Rodriguez22cad732009-03-05 21:13:06 -08001071 sband->ht_cap.ht_supported = true;
1072 sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
1073 IEEE80211_HT_CAP_GRN_FLD |
1074 IEEE80211_HT_CAP_SGI_40 |
1075 IEEE80211_HT_CAP_DSSSCCK40;
1076 sband->ht_cap.ampdu_factor = 0x3;
1077 sband->ht_cap.ampdu_density = 0x6;
1078 memset(&sband->ht_cap.mcs, 0,
1079 sizeof(sband->ht_cap.mcs));
1080 sband->ht_cap.mcs.rx_mask[0] = 0xff;
1081 sband->ht_cap.mcs.rx_mask[1] = 0xff;
1082 sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
1083
1084 hw->wiphy->bands[band] = sband;
1085 }
Daniel Wagner73606d02009-05-18 19:49:25 +02001086 /* By default all radios are belonging to the first group */
1087 data->group = 1;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001088
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001089 /* Work to be done prior to ieee80211_register_hw() */
1090 switch (regtest) {
1091 case HWSIM_REGTEST_DISABLED:
1092 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
1093 case HWSIM_REGTEST_DRIVER_REG_ALL:
1094 case HWSIM_REGTEST_DIFF_COUNTRY:
1095 /*
1096 * Nothing to be done for driver regulatory domain
1097 * hints prior to ieee80211_register_hw()
1098 */
1099 break;
1100 case HWSIM_REGTEST_WORLD_ROAM:
1101 if (i == 0) {
1102 hw->wiphy->custom_regulatory = true;
1103 wiphy_apply_custom_regulatory(hw->wiphy,
1104 &hwsim_world_regdom_custom_01);
1105 }
1106 break;
1107 case HWSIM_REGTEST_CUSTOM_WORLD:
1108 hw->wiphy->custom_regulatory = true;
1109 wiphy_apply_custom_regulatory(hw->wiphy,
1110 &hwsim_world_regdom_custom_01);
1111 break;
1112 case HWSIM_REGTEST_CUSTOM_WORLD_2:
1113 if (i == 0) {
1114 hw->wiphy->custom_regulatory = true;
1115 wiphy_apply_custom_regulatory(hw->wiphy,
1116 &hwsim_world_regdom_custom_01);
1117 } else if (i == 1) {
1118 hw->wiphy->custom_regulatory = true;
1119 wiphy_apply_custom_regulatory(hw->wiphy,
1120 &hwsim_world_regdom_custom_02);
1121 }
1122 break;
1123 case HWSIM_REGTEST_STRICT_ALL:
1124 hw->wiphy->strict_regulatory = true;
1125 break;
1126 case HWSIM_REGTEST_STRICT_FOLLOW:
1127 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
1128 if (i == 0)
1129 hw->wiphy->strict_regulatory = true;
1130 break;
1131 case HWSIM_REGTEST_ALL:
1132 if (i == 0) {
1133 hw->wiphy->custom_regulatory = true;
1134 wiphy_apply_custom_regulatory(hw->wiphy,
1135 &hwsim_world_regdom_custom_01);
1136 } else if (i == 1) {
1137 hw->wiphy->custom_regulatory = true;
1138 wiphy_apply_custom_regulatory(hw->wiphy,
1139 &hwsim_world_regdom_custom_02);
1140 } else if (i == 4)
1141 hw->wiphy->strict_regulatory = true;
1142 break;
1143 default:
1144 break;
1145 }
1146
Luis R. Rodriguez98dfaa52009-03-20 23:46:11 -04001147 /* give the regulatory workqueue a chance to run */
1148 if (regtest)
1149 schedule_timeout_interruptible(1);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001150 err = ieee80211_register_hw(hw);
1151 if (err < 0) {
1152 printk(KERN_DEBUG "mac80211_hwsim: "
1153 "ieee80211_register_hw failed (%d)\n", err);
Ian Schram3a33cc12008-07-21 13:19:35 -07001154 goto failed_hw;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001155 }
1156
Luis R. Rodriguez4a5af9c2009-03-09 22:08:27 -04001157 /* Work to be done after to ieee80211_register_hw() */
1158 switch (regtest) {
1159 case HWSIM_REGTEST_WORLD_ROAM:
1160 case HWSIM_REGTEST_DISABLED:
1161 break;
1162 case HWSIM_REGTEST_DRIVER_REG_FOLLOW:
1163 if (!i)
1164 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1165 break;
1166 case HWSIM_REGTEST_DRIVER_REG_ALL:
1167 case HWSIM_REGTEST_STRICT_ALL:
1168 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1169 break;
1170 case HWSIM_REGTEST_DIFF_COUNTRY:
1171 if (i < ARRAY_SIZE(hwsim_alpha2s))
1172 regulatory_hint(hw->wiphy, hwsim_alpha2s[i]);
1173 break;
1174 case HWSIM_REGTEST_CUSTOM_WORLD:
1175 case HWSIM_REGTEST_CUSTOM_WORLD_2:
1176 /*
1177 * Nothing to be done for custom world regulatory
1178 * domains after to ieee80211_register_hw
1179 */
1180 break;
1181 case HWSIM_REGTEST_STRICT_FOLLOW:
1182 if (i == 0)
1183 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1184 break;
1185 case HWSIM_REGTEST_STRICT_AND_DRIVER_REG:
1186 if (i == 0)
1187 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1188 else if (i == 1)
1189 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
1190 break;
1191 case HWSIM_REGTEST_ALL:
1192 if (i == 2)
1193 regulatory_hint(hw->wiphy, hwsim_alpha2s[0]);
1194 else if (i == 3)
1195 regulatory_hint(hw->wiphy, hwsim_alpha2s[1]);
1196 else if (i == 4)
1197 regulatory_hint(hw->wiphy, hwsim_alpha2s[2]);
1198 break;
1199 default:
1200 break;
1201 }
1202
Johannes Berge1749612008-10-27 15:59:26 -07001203 printk(KERN_DEBUG "%s: hwaddr %pM registered\n",
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001204 wiphy_name(hw->wiphy),
Johannes Berge1749612008-10-27 15:59:26 -07001205 hw->wiphy->perm_addr);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001206
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001207 data->debugfs = debugfs_create_dir("hwsim",
1208 hw->wiphy->debugfsdir);
1209 data->debugfs_ps = debugfs_create_file("ps", 0666,
1210 data->debugfs, data,
1211 &hwsim_fops_ps);
Daniel Wagner73606d02009-05-18 19:49:25 +02001212 data->debugfs_group = debugfs_create_file("group", 0666,
1213 data->debugfs, data,
1214 &hwsim_fops_group);
Jouni Malinenfc6971d2008-10-30 19:59:05 +02001215
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001216 setup_timer(&data->beacon_timer, mac80211_hwsim_beacon,
1217 (unsigned long) hw);
Johannes Berg0e057d732008-09-12 00:39:22 +02001218
1219 list_add_tail(&data->list, &hwsim_radios);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001220 }
1221
1222 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
1223 if (hwsim_mon == NULL)
1224 goto failed;
1225
1226 rtnl_lock();
1227
1228 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
Ian Schram3a33cc12008-07-21 13:19:35 -07001229 if (err < 0)
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001230 goto failed_mon;
Ian Schram3a33cc12008-07-21 13:19:35 -07001231
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001232
1233 err = register_netdevice(hwsim_mon);
1234 if (err < 0)
1235 goto failed_mon;
1236
1237 rtnl_unlock();
1238
1239 return 0;
1240
1241failed_mon:
1242 rtnl_unlock();
1243 free_netdev(hwsim_mon);
Ian Schram3a33cc12008-07-21 13:19:35 -07001244 mac80211_hwsim_free();
1245 return err;
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001246
Ian Schram3a33cc12008-07-21 13:19:35 -07001247failed_hw:
1248 device_unregister(data->dev);
1249failed_drvdata:
1250 ieee80211_free_hw(hw);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001251failed:
1252 mac80211_hwsim_free();
1253 return err;
1254}
1255
1256
1257static void __exit exit_mac80211_hwsim(void)
1258{
Johannes Berg0e057d732008-09-12 00:39:22 +02001259 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001260
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001261 mac80211_hwsim_free();
Johannes Berg5d416352009-07-13 13:04:30 +02001262 unregister_netdev(hwsim_mon);
Jouni Malinenacc1e7a2008-06-11 10:42:31 +03001263}
1264
1265
1266module_init(init_mac80211_hwsim);
1267module_exit(exit_mac80211_hwsim);