Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1 | /* |
| 2 | * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211 |
| 3 | * Copyright (c) 2008, Jouni Malinen <j@w1.fi> |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 4 | * Copyright (c) 2011, Javier Lopez <jlopex@gmail.com> |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | /* |
| 12 | * TODO: |
Johannes Berg | 2b2d779 | 2010-08-17 12:08:07 +0200 | [diff] [blame] | 13 | * - Add TSF sync and fix IBSS beacon transmission by adding |
| 14 | * competition for "air time" at TBTT |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 15 | * - RX filtering based on filter configuration (data->rx_filter) |
| 16 | */ |
| 17 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 18 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 20 | #include <linux/spinlock.h> |
Johannes Berg | 90e3012 | 2009-06-18 14:51:12 +0200 | [diff] [blame] | 21 | #include <net/dst.h> |
| 22 | #include <net/xfrm.h> |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 23 | #include <net/mac80211.h> |
| 24 | #include <net/ieee80211_radiotap.h> |
| 25 | #include <linux/if_arp.h> |
| 26 | #include <linux/rtnetlink.h> |
| 27 | #include <linux/etherdevice.h> |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 28 | #include <linux/debugfs.h> |
Paul Gortmaker | 9d9779e | 2011-07-03 15:21:01 -0400 | [diff] [blame] | 29 | #include <linux/module.h> |
Javier Cardona | 2f40b94 | 2012-03-05 17:20:37 -0800 | [diff] [blame] | 30 | #include <linux/ktime.h> |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 31 | #include <net/genetlink.h> |
| 32 | #include "mac80211_hwsim.h" |
| 33 | |
| 34 | #define WARN_QUEUE 100 |
| 35 | #define MAX_QUEUE 200 |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 36 | |
| 37 | MODULE_AUTHOR("Jouni Malinen"); |
| 38 | MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211"); |
| 39 | MODULE_LICENSE("GPL"); |
| 40 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 41 | static u32 wmediumd_portid; |
Johannes Berg | a1910f9 | 2011-12-07 12:35:17 +0100 | [diff] [blame] | 42 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 43 | static int radios = 2; |
| 44 | module_param(radios, int, 0444); |
| 45 | MODULE_PARM_DESC(radios, "Number of simulated radios"); |
| 46 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 47 | static int channels = 1; |
| 48 | module_param(channels, int, 0444); |
| 49 | MODULE_PARM_DESC(channels, "Number of concurrent channels"); |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 50 | |
Johannes Berg | a357d7f | 2012-12-10 11:57:42 +0100 | [diff] [blame^] | 51 | static bool paged_rx = false; |
| 52 | module_param(paged_rx, bool, 0644); |
| 53 | MODULE_PARM_DESC(paged_rx, "Use paged SKBs for RX instead of linear ones"); |
| 54 | |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 55 | /** |
| 56 | * enum hwsim_regtest - the type of regulatory tests we offer |
| 57 | * |
| 58 | * These are the different values you can use for the regtest |
| 59 | * module parameter. This is useful to help test world roaming |
| 60 | * and the driver regulatory_hint() call and combinations of these. |
| 61 | * If you want to do specific alpha2 regulatory domain tests simply |
| 62 | * use the userspace regulatory request as that will be respected as |
| 63 | * well without the need of this module parameter. This is designed |
| 64 | * only for testing the driver regulatory request, world roaming |
| 65 | * and all possible combinations. |
| 66 | * |
| 67 | * @HWSIM_REGTEST_DISABLED: No regulatory tests are performed, |
| 68 | * this is the default value. |
| 69 | * @HWSIM_REGTEST_DRIVER_REG_FOLLOW: Used for testing the driver regulatory |
| 70 | * hint, only one driver regulatory hint will be sent as such the |
| 71 | * secondary radios are expected to follow. |
| 72 | * @HWSIM_REGTEST_DRIVER_REG_ALL: Used for testing the driver regulatory |
| 73 | * request with all radios reporting the same regulatory domain. |
| 74 | * @HWSIM_REGTEST_DIFF_COUNTRY: Used for testing the drivers calling |
| 75 | * different regulatory domains requests. Expected behaviour is for |
| 76 | * an intersection to occur but each device will still use their |
| 77 | * respective regulatory requested domains. Subsequent radios will |
| 78 | * use the resulting intersection. |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 79 | * @HWSIM_REGTEST_WORLD_ROAM: Used for testing the world roaming. We accomplish |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 80 | * this by using a custom beacon-capable regulatory domain for the first |
| 81 | * radio. All other device world roam. |
| 82 | * @HWSIM_REGTEST_CUSTOM_WORLD: Used for testing the custom world regulatory |
| 83 | * domain requests. All radios will adhere to this custom world regulatory |
| 84 | * domain. |
| 85 | * @HWSIM_REGTEST_CUSTOM_WORLD_2: Used for testing 2 custom world regulatory |
| 86 | * domain requests. The first radio will adhere to the first custom world |
| 87 | * regulatory domain, the second one to the second custom world regulatory |
| 88 | * domain. All other devices will world roam. |
| 89 | * @HWSIM_REGTEST_STRICT_FOLLOW_: Used for testing strict regulatory domain |
| 90 | * settings, only the first radio will send a regulatory domain request |
| 91 | * and use strict settings. The rest of the radios are expected to follow. |
| 92 | * @HWSIM_REGTEST_STRICT_ALL: Used for testing strict regulatory domain |
| 93 | * settings. All radios will adhere to this. |
| 94 | * @HWSIM_REGTEST_STRICT_AND_DRIVER_REG: Used for testing strict regulatory |
| 95 | * domain settings, combined with secondary driver regulatory domain |
| 96 | * settings. The first radio will get a strict regulatory domain setting |
| 97 | * using the first driver regulatory request and the second radio will use |
| 98 | * non-strict settings using the second driver regulatory request. All |
| 99 | * other devices should follow the intersection created between the |
| 100 | * first two. |
| 101 | * @HWSIM_REGTEST_ALL: Used for testing every possible mix. You will need |
| 102 | * at least 6 radios for a complete test. We will test in this order: |
| 103 | * 1 - driver custom world regulatory domain |
| 104 | * 2 - second custom world regulatory domain |
| 105 | * 3 - first driver regulatory domain request |
| 106 | * 4 - second driver regulatory domain request |
| 107 | * 5 - strict regulatory domain settings using the third driver regulatory |
| 108 | * domain request |
| 109 | * 6 and on - should follow the intersection of the 3rd, 4rth and 5th radio |
| 110 | * regulatory requests. |
| 111 | */ |
| 112 | enum hwsim_regtest { |
| 113 | HWSIM_REGTEST_DISABLED = 0, |
| 114 | HWSIM_REGTEST_DRIVER_REG_FOLLOW = 1, |
| 115 | HWSIM_REGTEST_DRIVER_REG_ALL = 2, |
| 116 | HWSIM_REGTEST_DIFF_COUNTRY = 3, |
| 117 | HWSIM_REGTEST_WORLD_ROAM = 4, |
| 118 | HWSIM_REGTEST_CUSTOM_WORLD = 5, |
| 119 | HWSIM_REGTEST_CUSTOM_WORLD_2 = 6, |
| 120 | HWSIM_REGTEST_STRICT_FOLLOW = 7, |
| 121 | HWSIM_REGTEST_STRICT_ALL = 8, |
| 122 | HWSIM_REGTEST_STRICT_AND_DRIVER_REG = 9, |
| 123 | HWSIM_REGTEST_ALL = 10, |
| 124 | }; |
| 125 | |
| 126 | /* Set to one of the HWSIM_REGTEST_* values above */ |
| 127 | static int regtest = HWSIM_REGTEST_DISABLED; |
| 128 | module_param(regtest, int, 0444); |
| 129 | MODULE_PARM_DESC(regtest, "The type of regulatory test we want to run"); |
| 130 | |
| 131 | static const char *hwsim_alpha2s[] = { |
| 132 | "FI", |
| 133 | "AL", |
| 134 | "US", |
| 135 | "DE", |
| 136 | "JP", |
| 137 | "AL", |
| 138 | }; |
| 139 | |
| 140 | static const struct ieee80211_regdomain hwsim_world_regdom_custom_01 = { |
| 141 | .n_reg_rules = 4, |
| 142 | .alpha2 = "99", |
| 143 | .reg_rules = { |
| 144 | REG_RULE(2412-10, 2462+10, 40, 0, 20, 0), |
| 145 | REG_RULE(2484-10, 2484+10, 40, 0, 20, 0), |
| 146 | REG_RULE(5150-10, 5240+10, 40, 0, 30, 0), |
| 147 | REG_RULE(5745-10, 5825+10, 40, 0, 30, 0), |
| 148 | } |
| 149 | }; |
| 150 | |
| 151 | static const struct ieee80211_regdomain hwsim_world_regdom_custom_02 = { |
| 152 | .n_reg_rules = 2, |
| 153 | .alpha2 = "99", |
| 154 | .reg_rules = { |
| 155 | REG_RULE(2412-10, 2462+10, 40, 0, 20, 0), |
| 156 | REG_RULE(5725-10, 5850+10, 40, 0, 30, |
| 157 | NL80211_RRF_PASSIVE_SCAN | NL80211_RRF_NO_IBSS), |
| 158 | } |
| 159 | }; |
| 160 | |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 161 | struct hwsim_vif_priv { |
| 162 | u32 magic; |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 163 | u8 bssid[ETH_ALEN]; |
| 164 | bool assoc; |
| 165 | u16 aid; |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 166 | }; |
| 167 | |
| 168 | #define HWSIM_VIF_MAGIC 0x69537748 |
| 169 | |
| 170 | static inline void hwsim_check_magic(struct ieee80211_vif *vif) |
| 171 | { |
| 172 | struct hwsim_vif_priv *vp = (void *)vif->drv_priv; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 173 | WARN(vp->magic != HWSIM_VIF_MAGIC, |
| 174 | "Invalid VIF (%p) magic %#x, %pM, %d/%d\n", |
| 175 | vif, vp->magic, vif->addr, vif->type, vif->p2p); |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static inline void hwsim_set_magic(struct ieee80211_vif *vif) |
| 179 | { |
| 180 | struct hwsim_vif_priv *vp = (void *)vif->drv_priv; |
| 181 | vp->magic = HWSIM_VIF_MAGIC; |
| 182 | } |
| 183 | |
| 184 | static inline void hwsim_clear_magic(struct ieee80211_vif *vif) |
| 185 | { |
| 186 | struct hwsim_vif_priv *vp = (void *)vif->drv_priv; |
| 187 | vp->magic = 0; |
| 188 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 189 | |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 190 | struct hwsim_sta_priv { |
| 191 | u32 magic; |
| 192 | }; |
| 193 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 194 | #define HWSIM_STA_MAGIC 0x6d537749 |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 195 | |
| 196 | static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta) |
| 197 | { |
| 198 | struct hwsim_sta_priv *sp = (void *)sta->drv_priv; |
Rami Rosen | 5d6924e | 2008-10-08 11:18:27 +0200 | [diff] [blame] | 199 | WARN_ON(sp->magic != HWSIM_STA_MAGIC); |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta) |
| 203 | { |
| 204 | struct hwsim_sta_priv *sp = (void *)sta->drv_priv; |
Rami Rosen | 5d6924e | 2008-10-08 11:18:27 +0200 | [diff] [blame] | 205 | sp->magic = HWSIM_STA_MAGIC; |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta) |
| 209 | { |
| 210 | struct hwsim_sta_priv *sp = (void *)sta->drv_priv; |
| 211 | sp->magic = 0; |
| 212 | } |
| 213 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 214 | struct hwsim_chanctx_priv { |
| 215 | u32 magic; |
| 216 | }; |
| 217 | |
| 218 | #define HWSIM_CHANCTX_MAGIC 0x6d53774a |
| 219 | |
| 220 | static inline void hwsim_check_chanctx_magic(struct ieee80211_chanctx_conf *c) |
| 221 | { |
| 222 | struct hwsim_chanctx_priv *cp = (void *)c->drv_priv; |
| 223 | WARN_ON(cp->magic != HWSIM_CHANCTX_MAGIC); |
| 224 | } |
| 225 | |
| 226 | static inline void hwsim_set_chanctx_magic(struct ieee80211_chanctx_conf *c) |
| 227 | { |
| 228 | struct hwsim_chanctx_priv *cp = (void *)c->drv_priv; |
| 229 | cp->magic = HWSIM_CHANCTX_MAGIC; |
| 230 | } |
| 231 | |
| 232 | static inline void hwsim_clear_chanctx_magic(struct ieee80211_chanctx_conf *c) |
| 233 | { |
| 234 | struct hwsim_chanctx_priv *cp = (void *)c->drv_priv; |
| 235 | cp->magic = 0; |
| 236 | } |
| 237 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 238 | static struct class *hwsim_class; |
| 239 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 240 | static struct net_device *hwsim_mon; /* global monitor netdev */ |
| 241 | |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 242 | #define CHAN2G(_freq) { \ |
| 243 | .band = IEEE80211_BAND_2GHZ, \ |
| 244 | .center_freq = (_freq), \ |
| 245 | .hw_value = (_freq), \ |
| 246 | .max_power = 20, \ |
| 247 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 248 | |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 249 | #define CHAN5G(_freq) { \ |
| 250 | .band = IEEE80211_BAND_5GHZ, \ |
| 251 | .center_freq = (_freq), \ |
| 252 | .hw_value = (_freq), \ |
| 253 | .max_power = 20, \ |
| 254 | } |
| 255 | |
| 256 | static const struct ieee80211_channel hwsim_channels_2ghz[] = { |
| 257 | CHAN2G(2412), /* Channel 1 */ |
| 258 | CHAN2G(2417), /* Channel 2 */ |
| 259 | CHAN2G(2422), /* Channel 3 */ |
| 260 | CHAN2G(2427), /* Channel 4 */ |
| 261 | CHAN2G(2432), /* Channel 5 */ |
| 262 | CHAN2G(2437), /* Channel 6 */ |
| 263 | CHAN2G(2442), /* Channel 7 */ |
| 264 | CHAN2G(2447), /* Channel 8 */ |
| 265 | CHAN2G(2452), /* Channel 9 */ |
| 266 | CHAN2G(2457), /* Channel 10 */ |
| 267 | CHAN2G(2462), /* Channel 11 */ |
| 268 | CHAN2G(2467), /* Channel 12 */ |
| 269 | CHAN2G(2472), /* Channel 13 */ |
| 270 | CHAN2G(2484), /* Channel 14 */ |
| 271 | }; |
| 272 | |
| 273 | static const struct ieee80211_channel hwsim_channels_5ghz[] = { |
| 274 | CHAN5G(5180), /* Channel 36 */ |
| 275 | CHAN5G(5200), /* Channel 40 */ |
| 276 | CHAN5G(5220), /* Channel 44 */ |
| 277 | CHAN5G(5240), /* Channel 48 */ |
| 278 | |
| 279 | CHAN5G(5260), /* Channel 52 */ |
| 280 | CHAN5G(5280), /* Channel 56 */ |
| 281 | CHAN5G(5300), /* Channel 60 */ |
| 282 | CHAN5G(5320), /* Channel 64 */ |
| 283 | |
| 284 | CHAN5G(5500), /* Channel 100 */ |
| 285 | CHAN5G(5520), /* Channel 104 */ |
| 286 | CHAN5G(5540), /* Channel 108 */ |
| 287 | CHAN5G(5560), /* Channel 112 */ |
| 288 | CHAN5G(5580), /* Channel 116 */ |
| 289 | CHAN5G(5600), /* Channel 120 */ |
| 290 | CHAN5G(5620), /* Channel 124 */ |
| 291 | CHAN5G(5640), /* Channel 128 */ |
| 292 | CHAN5G(5660), /* Channel 132 */ |
| 293 | CHAN5G(5680), /* Channel 136 */ |
| 294 | CHAN5G(5700), /* Channel 140 */ |
| 295 | |
| 296 | CHAN5G(5745), /* Channel 149 */ |
| 297 | CHAN5G(5765), /* Channel 153 */ |
| 298 | CHAN5G(5785), /* Channel 157 */ |
| 299 | CHAN5G(5805), /* Channel 161 */ |
| 300 | CHAN5G(5825), /* Channel 165 */ |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 301 | }; |
| 302 | |
| 303 | static const struct ieee80211_rate hwsim_rates[] = { |
| 304 | { .bitrate = 10 }, |
| 305 | { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 306 | { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 307 | { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 308 | { .bitrate = 60 }, |
| 309 | { .bitrate = 90 }, |
| 310 | { .bitrate = 120 }, |
| 311 | { .bitrate = 180 }, |
| 312 | { .bitrate = 240 }, |
| 313 | { .bitrate = 360 }, |
| 314 | { .bitrate = 480 }, |
| 315 | { .bitrate = 540 } |
| 316 | }; |
| 317 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 318 | static spinlock_t hwsim_radio_lock; |
| 319 | static struct list_head hwsim_radios; |
| 320 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 321 | struct mac80211_hwsim_data { |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 322 | struct list_head list; |
| 323 | struct ieee80211_hw *hw; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 324 | struct device *dev; |
Johannes Berg | 1b083ea | 2012-07-03 13:14:49 +0200 | [diff] [blame] | 325 | struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS]; |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 326 | struct ieee80211_channel channels_2ghz[ARRAY_SIZE(hwsim_channels_2ghz)]; |
| 327 | struct ieee80211_channel channels_5ghz[ARRAY_SIZE(hwsim_channels_5ghz)]; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 328 | struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)]; |
| 329 | |
Johannes Berg | ef15aac | 2010-01-20 12:02:33 +0100 | [diff] [blame] | 330 | struct mac_address addresses[2]; |
| 331 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 332 | struct ieee80211_channel *tmp_chan; |
| 333 | struct delayed_work roc_done; |
| 334 | struct delayed_work hw_scan; |
| 335 | struct cfg80211_scan_request *hw_scan_request; |
| 336 | struct ieee80211_vif *hw_scan_vif; |
| 337 | int scan_chan_idx; |
| 338 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 339 | struct ieee80211_channel *channel; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 340 | unsigned long beacon_int; /* in jiffies unit */ |
| 341 | unsigned int rx_filter; |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 342 | bool started, idle, scanning; |
| 343 | struct mutex mutex; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 344 | struct timer_list beacon_timer; |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 345 | enum ps_mode { |
| 346 | PS_DISABLED, PS_ENABLED, PS_AUTO_POLL, PS_MANUAL_POLL |
| 347 | } ps; |
| 348 | bool ps_poll_pending; |
| 349 | struct dentry *debugfs; |
| 350 | struct dentry *debugfs_ps; |
Daniel Wagner | 73606d0 | 2009-05-18 19:49:25 +0200 | [diff] [blame] | 351 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 352 | struct sk_buff_head pending; /* packets pending */ |
Daniel Wagner | 73606d0 | 2009-05-18 19:49:25 +0200 | [diff] [blame] | 353 | /* |
| 354 | * Only radios in the same group can communicate together (the |
| 355 | * channel has to match too). Each bit represents a group. A |
| 356 | * radio can be in more then one group. |
| 357 | */ |
| 358 | u64 group; |
| 359 | struct dentry *debugfs_group; |
Blaise Gassend | bdd7bd1 | 2010-10-28 02:01:24 -0700 | [diff] [blame] | 360 | |
| 361 | int power_level; |
Javier Cardona | 2f40b94 | 2012-03-05 17:20:37 -0800 | [diff] [blame] | 362 | |
| 363 | /* difference between this hw's clock and the real clock, in usecs */ |
| 364 | u64 tsf_offset; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 365 | }; |
| 366 | |
| 367 | |
| 368 | struct hwsim_radiotap_hdr { |
| 369 | struct ieee80211_radiotap_header hdr; |
Javier Cardona | 2f40b94 | 2012-03-05 17:20:37 -0800 | [diff] [blame] | 370 | __le64 rt_tsft; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 371 | u8 rt_flags; |
| 372 | u8 rt_rate; |
| 373 | __le16 rt_channel; |
| 374 | __le16 rt_chbitmask; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 375 | } __packed; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 376 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 377 | /* MAC80211_HWSIM netlinf family */ |
| 378 | static struct genl_family hwsim_genl_family = { |
| 379 | .id = GENL_ID_GENERATE, |
| 380 | .hdrsize = 0, |
| 381 | .name = "MAC80211_HWSIM", |
| 382 | .version = 1, |
| 383 | .maxattr = HWSIM_ATTR_MAX, |
| 384 | }; |
| 385 | |
| 386 | /* MAC80211_HWSIM netlink policy */ |
| 387 | |
| 388 | static struct nla_policy hwsim_genl_policy[HWSIM_ATTR_MAX + 1] = { |
| 389 | [HWSIM_ATTR_ADDR_RECEIVER] = { .type = NLA_UNSPEC, |
| 390 | .len = 6*sizeof(u8) }, |
| 391 | [HWSIM_ATTR_ADDR_TRANSMITTER] = { .type = NLA_UNSPEC, |
| 392 | .len = 6*sizeof(u8) }, |
| 393 | [HWSIM_ATTR_FRAME] = { .type = NLA_BINARY, |
| 394 | .len = IEEE80211_MAX_DATA_LEN }, |
| 395 | [HWSIM_ATTR_FLAGS] = { .type = NLA_U32 }, |
| 396 | [HWSIM_ATTR_RX_RATE] = { .type = NLA_U32 }, |
| 397 | [HWSIM_ATTR_SIGNAL] = { .type = NLA_U32 }, |
| 398 | [HWSIM_ATTR_TX_INFO] = { .type = NLA_UNSPEC, |
| 399 | .len = IEEE80211_TX_MAX_RATES*sizeof( |
| 400 | struct hwsim_tx_rate)}, |
| 401 | [HWSIM_ATTR_COOKIE] = { .type = NLA_U64 }, |
| 402 | }; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 403 | |
Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 404 | static netdev_tx_t hwsim_mon_xmit(struct sk_buff *skb, |
| 405 | struct net_device *dev) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 406 | { |
| 407 | /* TODO: allow packet injection */ |
| 408 | dev_kfree_skb(skb); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 409 | return NETDEV_TX_OK; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 410 | } |
| 411 | |
Javier Cardona | 2f40b94 | 2012-03-05 17:20:37 -0800 | [diff] [blame] | 412 | static __le64 __mac80211_hwsim_get_tsf(struct mac80211_hwsim_data *data) |
| 413 | { |
| 414 | struct timeval tv = ktime_to_timeval(ktime_get_real()); |
| 415 | u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec; |
| 416 | return cpu_to_le64(now + data->tsf_offset); |
| 417 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 418 | |
Javier Cardona | 12ce8ba | 2012-03-05 17:20:38 -0800 | [diff] [blame] | 419 | static u64 mac80211_hwsim_get_tsf(struct ieee80211_hw *hw, |
| 420 | struct ieee80211_vif *vif) |
| 421 | { |
| 422 | struct mac80211_hwsim_data *data = hw->priv; |
| 423 | return le64_to_cpu(__mac80211_hwsim_get_tsf(data)); |
| 424 | } |
| 425 | |
| 426 | static void mac80211_hwsim_set_tsf(struct ieee80211_hw *hw, |
| 427 | struct ieee80211_vif *vif, u64 tsf) |
| 428 | { |
| 429 | struct mac80211_hwsim_data *data = hw->priv; |
| 430 | struct timeval tv = ktime_to_timeval(ktime_get_real()); |
| 431 | u64 now = tv.tv_sec * USEC_PER_SEC + tv.tv_usec; |
| 432 | data->tsf_offset = tsf - now; |
| 433 | } |
| 434 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 435 | static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw, |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 436 | struct sk_buff *tx_skb, |
| 437 | struct ieee80211_channel *chan) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 438 | { |
| 439 | struct mac80211_hwsim_data *data = hw->priv; |
| 440 | struct sk_buff *skb; |
| 441 | struct hwsim_radiotap_hdr *hdr; |
| 442 | u16 flags; |
| 443 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb); |
| 444 | struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info); |
| 445 | |
| 446 | if (!netif_running(hwsim_mon)) |
| 447 | return; |
| 448 | |
| 449 | skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC); |
| 450 | if (skb == NULL) |
| 451 | return; |
| 452 | |
| 453 | hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr)); |
| 454 | hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION; |
| 455 | hdr->hdr.it_pad = 0; |
| 456 | hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr)); |
Jouni Malinen | f248f10 | 2008-06-13 19:44:47 +0300 | [diff] [blame] | 457 | hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) | |
| 458 | (1 << IEEE80211_RADIOTAP_RATE) | |
Javier Cardona | 2f40b94 | 2012-03-05 17:20:37 -0800 | [diff] [blame] | 459 | (1 << IEEE80211_RADIOTAP_TSFT) | |
Jouni Malinen | f248f10 | 2008-06-13 19:44:47 +0300 | [diff] [blame] | 460 | (1 << IEEE80211_RADIOTAP_CHANNEL)); |
Javier Cardona | 2f40b94 | 2012-03-05 17:20:37 -0800 | [diff] [blame] | 461 | hdr->rt_tsft = __mac80211_hwsim_get_tsf(data); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 462 | hdr->rt_flags = 0; |
| 463 | hdr->rt_rate = txrate->bitrate / 5; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 464 | hdr->rt_channel = cpu_to_le16(chan->center_freq); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 465 | flags = IEEE80211_CHAN_2GHZ; |
| 466 | if (txrate->flags & IEEE80211_RATE_ERP_G) |
| 467 | flags |= IEEE80211_CHAN_OFDM; |
| 468 | else |
| 469 | flags |= IEEE80211_CHAN_CCK; |
| 470 | hdr->rt_chbitmask = cpu_to_le16(flags); |
| 471 | |
| 472 | skb->dev = hwsim_mon; |
| 473 | skb_set_mac_header(skb, 0); |
| 474 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 475 | skb->pkt_type = PACKET_OTHERHOST; |
Jouni Malinen | f248f10 | 2008-06-13 19:44:47 +0300 | [diff] [blame] | 476 | skb->protocol = htons(ETH_P_802_2); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 477 | memset(skb->cb, 0, sizeof(skb->cb)); |
| 478 | netif_rx(skb); |
| 479 | } |
| 480 | |
| 481 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 482 | static void mac80211_hwsim_monitor_ack(struct ieee80211_channel *chan, |
| 483 | const u8 *addr) |
Jouni Malinen | 6c08522 | 2009-11-01 11:31:45 +0200 | [diff] [blame] | 484 | { |
Jouni Malinen | 6c08522 | 2009-11-01 11:31:45 +0200 | [diff] [blame] | 485 | struct sk_buff *skb; |
| 486 | struct hwsim_radiotap_hdr *hdr; |
| 487 | u16 flags; |
| 488 | struct ieee80211_hdr *hdr11; |
| 489 | |
| 490 | if (!netif_running(hwsim_mon)) |
| 491 | return; |
| 492 | |
| 493 | skb = dev_alloc_skb(100); |
| 494 | if (skb == NULL) |
| 495 | return; |
| 496 | |
| 497 | hdr = (struct hwsim_radiotap_hdr *) skb_put(skb, sizeof(*hdr)); |
| 498 | hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION; |
| 499 | hdr->hdr.it_pad = 0; |
| 500 | hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr)); |
| 501 | hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) | |
| 502 | (1 << IEEE80211_RADIOTAP_CHANNEL)); |
| 503 | hdr->rt_flags = 0; |
| 504 | hdr->rt_rate = 0; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 505 | hdr->rt_channel = cpu_to_le16(chan->center_freq); |
Jouni Malinen | 6c08522 | 2009-11-01 11:31:45 +0200 | [diff] [blame] | 506 | flags = IEEE80211_CHAN_2GHZ; |
| 507 | hdr->rt_chbitmask = cpu_to_le16(flags); |
| 508 | |
| 509 | hdr11 = (struct ieee80211_hdr *) skb_put(skb, 10); |
| 510 | hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | |
| 511 | IEEE80211_STYPE_ACK); |
| 512 | hdr11->duration_id = cpu_to_le16(0); |
| 513 | memcpy(hdr11->addr1, addr, ETH_ALEN); |
| 514 | |
| 515 | skb->dev = hwsim_mon; |
| 516 | skb_set_mac_header(skb, 0); |
| 517 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 518 | skb->pkt_type = PACKET_OTHERHOST; |
| 519 | skb->protocol = htons(ETH_P_802_2); |
| 520 | memset(skb->cb, 0, sizeof(skb->cb)); |
| 521 | netif_rx(skb); |
| 522 | } |
| 523 | |
| 524 | |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 525 | static bool hwsim_ps_rx_ok(struct mac80211_hwsim_data *data, |
| 526 | struct sk_buff *skb) |
| 527 | { |
| 528 | switch (data->ps) { |
| 529 | case PS_DISABLED: |
| 530 | return true; |
| 531 | case PS_ENABLED: |
| 532 | return false; |
| 533 | case PS_AUTO_POLL: |
| 534 | /* TODO: accept (some) Beacons by default and other frames only |
| 535 | * if pending PS-Poll has been sent */ |
| 536 | return true; |
| 537 | case PS_MANUAL_POLL: |
| 538 | /* Allow unicast frames to own address if there is a pending |
| 539 | * PS-Poll */ |
| 540 | if (data->ps_poll_pending && |
| 541 | memcmp(data->hw->wiphy->perm_addr, skb->data + 4, |
| 542 | ETH_ALEN) == 0) { |
| 543 | data->ps_poll_pending = false; |
| 544 | return true; |
| 545 | } |
| 546 | return false; |
| 547 | } |
| 548 | |
| 549 | return true; |
| 550 | } |
| 551 | |
| 552 | |
Jouni Malinen | 265dc7f | 2009-12-04 19:10:34 +0200 | [diff] [blame] | 553 | struct mac80211_hwsim_addr_match_data { |
| 554 | bool ret; |
| 555 | const u8 *addr; |
| 556 | }; |
| 557 | |
| 558 | static void mac80211_hwsim_addr_iter(void *data, u8 *mac, |
| 559 | struct ieee80211_vif *vif) |
| 560 | { |
| 561 | struct mac80211_hwsim_addr_match_data *md = data; |
| 562 | if (memcmp(mac, md->addr, ETH_ALEN) == 0) |
| 563 | md->ret = true; |
| 564 | } |
| 565 | |
| 566 | |
| 567 | static bool mac80211_hwsim_addr_match(struct mac80211_hwsim_data *data, |
| 568 | const u8 *addr) |
| 569 | { |
| 570 | struct mac80211_hwsim_addr_match_data md; |
| 571 | |
| 572 | if (memcmp(addr, data->hw->wiphy->perm_addr, ETH_ALEN) == 0) |
| 573 | return true; |
| 574 | |
| 575 | md.ret = false; |
| 576 | md.addr = addr; |
| 577 | ieee80211_iterate_active_interfaces_atomic(data->hw, |
Johannes Berg | 8b2c982 | 2012-11-06 20:23:30 +0100 | [diff] [blame] | 578 | IEEE80211_IFACE_ITER_NORMAL, |
Jouni Malinen | 265dc7f | 2009-12-04 19:10:34 +0200 | [diff] [blame] | 579 | mac80211_hwsim_addr_iter, |
| 580 | &md); |
| 581 | |
| 582 | return md.ret; |
| 583 | } |
| 584 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 585 | static void mac80211_hwsim_tx_frame_nl(struct ieee80211_hw *hw, |
| 586 | struct sk_buff *my_skb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 587 | int dst_portid) |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 588 | { |
| 589 | struct sk_buff *skb; |
| 590 | struct mac80211_hwsim_data *data = hw->priv; |
| 591 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) my_skb->data; |
| 592 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(my_skb); |
| 593 | void *msg_head; |
| 594 | unsigned int hwsim_flags = 0; |
| 595 | int i; |
| 596 | struct hwsim_tx_rate tx_attempts[IEEE80211_TX_MAX_RATES]; |
Jouni Malinen | 265dc7f | 2009-12-04 19:10:34 +0200 | [diff] [blame] | 597 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 598 | if (data->ps != PS_DISABLED) |
| 599 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); |
| 600 | /* If the queue contains MAX_QUEUE skb's drop some */ |
| 601 | if (skb_queue_len(&data->pending) >= MAX_QUEUE) { |
| 602 | /* Droping until WARN_QUEUE level */ |
| 603 | while (skb_queue_len(&data->pending) >= WARN_QUEUE) |
| 604 | skb_dequeue(&data->pending); |
| 605 | } |
| 606 | |
Thomas Graf | 58050fc | 2012-06-28 03:57:45 +0000 | [diff] [blame] | 607 | skb = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_ATOMIC); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 608 | if (skb == NULL) |
| 609 | goto nla_put_failure; |
| 610 | |
| 611 | msg_head = genlmsg_put(skb, 0, 0, &hwsim_genl_family, 0, |
| 612 | HWSIM_CMD_FRAME); |
| 613 | if (msg_head == NULL) { |
| 614 | printk(KERN_DEBUG "mac80211_hwsim: problem with msg_head\n"); |
| 615 | goto nla_put_failure; |
| 616 | } |
| 617 | |
David S. Miller | 633c938 | 2012-04-01 21:03:30 -0400 | [diff] [blame] | 618 | if (nla_put(skb, HWSIM_ATTR_ADDR_TRANSMITTER, |
| 619 | sizeof(struct mac_address), data->addresses[1].addr)) |
| 620 | goto nla_put_failure; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 621 | |
| 622 | /* We get the skb->data */ |
David S. Miller | 633c938 | 2012-04-01 21:03:30 -0400 | [diff] [blame] | 623 | if (nla_put(skb, HWSIM_ATTR_FRAME, my_skb->len, my_skb->data)) |
| 624 | goto nla_put_failure; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 625 | |
| 626 | /* We get the flags for this transmission, and we translate them to |
| 627 | wmediumd flags */ |
| 628 | |
| 629 | if (info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS) |
| 630 | hwsim_flags |= HWSIM_TX_CTL_REQ_TX_STATUS; |
| 631 | |
| 632 | if (info->flags & IEEE80211_TX_CTL_NO_ACK) |
| 633 | hwsim_flags |= HWSIM_TX_CTL_NO_ACK; |
| 634 | |
David S. Miller | 633c938 | 2012-04-01 21:03:30 -0400 | [diff] [blame] | 635 | if (nla_put_u32(skb, HWSIM_ATTR_FLAGS, hwsim_flags)) |
| 636 | goto nla_put_failure; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 637 | |
| 638 | /* We get the tx control (rate and retries) info*/ |
| 639 | |
| 640 | for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) { |
| 641 | tx_attempts[i].idx = info->status.rates[i].idx; |
| 642 | tx_attempts[i].count = info->status.rates[i].count; |
| 643 | } |
| 644 | |
David S. Miller | 633c938 | 2012-04-01 21:03:30 -0400 | [diff] [blame] | 645 | if (nla_put(skb, HWSIM_ATTR_TX_INFO, |
| 646 | sizeof(struct hwsim_tx_rate)*IEEE80211_TX_MAX_RATES, |
| 647 | tx_attempts)) |
| 648 | goto nla_put_failure; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 649 | |
| 650 | /* We create a cookie to identify this skb */ |
David S. Miller | 633c938 | 2012-04-01 21:03:30 -0400 | [diff] [blame] | 651 | if (nla_put_u64(skb, HWSIM_ATTR_COOKIE, (unsigned long) my_skb)) |
| 652 | goto nla_put_failure; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 653 | |
| 654 | genlmsg_end(skb, msg_head); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 655 | genlmsg_unicast(&init_net, skb, dst_portid); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 656 | |
| 657 | /* Enqueue the packet */ |
| 658 | skb_queue_tail(&data->pending, my_skb); |
| 659 | return; |
| 660 | |
| 661 | nla_put_failure: |
Masanari Iida | c393862 | 2012-02-17 23:04:10 +0900 | [diff] [blame] | 662 | printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 663 | } |
| 664 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 665 | static bool hwsim_chans_compat(struct ieee80211_channel *c1, |
| 666 | struct ieee80211_channel *c2) |
| 667 | { |
| 668 | if (!c1 || !c2) |
| 669 | return false; |
| 670 | |
| 671 | return c1->center_freq == c2->center_freq; |
| 672 | } |
| 673 | |
| 674 | struct tx_iter_data { |
| 675 | struct ieee80211_channel *channel; |
| 676 | bool receive; |
| 677 | }; |
| 678 | |
| 679 | static void mac80211_hwsim_tx_iter(void *_data, u8 *addr, |
| 680 | struct ieee80211_vif *vif) |
| 681 | { |
| 682 | struct tx_iter_data *data = _data; |
| 683 | |
| 684 | if (!vif->chanctx_conf) |
| 685 | return; |
| 686 | |
| 687 | if (!hwsim_chans_compat(data->channel, |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 688 | rcu_dereference(vif->chanctx_conf)->def.chan)) |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 689 | return; |
| 690 | |
| 691 | data->receive = true; |
| 692 | } |
| 693 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 694 | static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw, |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 695 | struct sk_buff *skb, |
| 696 | struct ieee80211_channel *chan) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 697 | { |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 698 | struct mac80211_hwsim_data *data = hw->priv, *data2; |
| 699 | bool ack = false; |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 700 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 701 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 702 | struct ieee80211_rx_status rx_status; |
Javier Cardona | f483ad2 | 2012-03-31 11:31:30 -0700 | [diff] [blame] | 703 | struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 704 | |
| 705 | memset(&rx_status, 0, sizeof(rx_status)); |
Thomas Pedersen | f4bda33 | 2012-11-13 10:46:27 -0800 | [diff] [blame] | 706 | rx_status.flag |= RX_FLAG_MACTIME_START; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 707 | rx_status.freq = chan->center_freq; |
| 708 | rx_status.band = chan->band; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 709 | rx_status.rate_idx = info->control.rates[0].idx; |
Jouni Malinen | 281ed29 | 2011-08-06 23:07:00 +0300 | [diff] [blame] | 710 | if (info->control.rates[0].flags & IEEE80211_TX_RC_MCS) |
| 711 | rx_status.flag |= RX_FLAG_HT; |
| 712 | if (info->control.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH) |
| 713 | rx_status.flag |= RX_FLAG_40MHZ; |
| 714 | if (info->control.rates[0].flags & IEEE80211_TX_RC_SHORT_GI) |
| 715 | rx_status.flag |= RX_FLAG_SHORT_GI; |
Johannes Berg | 4b14c96 | 2009-07-10 16:56:59 +0200 | [diff] [blame] | 716 | /* TODO: simulate real signal strength (and optional packet loss) */ |
Blaise Gassend | bdd7bd1 | 2010-10-28 02:01:24 -0700 | [diff] [blame] | 717 | rx_status.signal = data->power_level - 50; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 718 | |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 719 | if (data->ps != PS_DISABLED) |
| 720 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM); |
| 721 | |
Johannes Berg | 90e3012 | 2009-06-18 14:51:12 +0200 | [diff] [blame] | 722 | /* release the skb's source info */ |
| 723 | skb_orphan(skb); |
John W. Linville | c0acf38 | 2009-06-30 16:55:52 -0400 | [diff] [blame] | 724 | skb_dst_drop(skb); |
Johannes Berg | 90e3012 | 2009-06-18 14:51:12 +0200 | [diff] [blame] | 725 | skb->mark = 0; |
| 726 | secpath_reset(skb); |
| 727 | nf_reset(skb); |
| 728 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 729 | /* Copy skb to all enabled radios that are on the current frequency */ |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 730 | spin_lock(&hwsim_radio_lock); |
| 731 | list_for_each_entry(data2, &hwsim_radios, list) { |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 732 | struct sk_buff *nskb; |
Javier Cardona | f483ad2 | 2012-03-31 11:31:30 -0700 | [diff] [blame] | 733 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 734 | struct tx_iter_data tx_iter_data = { |
| 735 | .receive = false, |
| 736 | .channel = chan, |
| 737 | }; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 738 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 739 | if (data == data2) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 740 | continue; |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 741 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 742 | if (!data2->started || (data2->idle && !data2->tmp_chan) || |
| 743 | !hwsim_ps_rx_ok(data2, skb)) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 744 | continue; |
| 745 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 746 | if (!(data->group & data2->group)) |
| 747 | continue; |
| 748 | |
| 749 | if (!hwsim_chans_compat(chan, data2->tmp_chan) && |
| 750 | !hwsim_chans_compat(chan, data2->channel)) { |
| 751 | ieee80211_iterate_active_interfaces_atomic( |
Johannes Berg | 8b2c982 | 2012-11-06 20:23:30 +0100 | [diff] [blame] | 752 | data2->hw, IEEE80211_IFACE_ITER_NORMAL, |
| 753 | mac80211_hwsim_tx_iter, &tx_iter_data); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 754 | if (!tx_iter_data.receive) |
| 755 | continue; |
| 756 | } |
| 757 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 758 | /* |
| 759 | * reserve some space for our vendor and the normal |
| 760 | * radiotap header, since we're copying anyway |
| 761 | */ |
Johannes Berg | a357d7f | 2012-12-10 11:57:42 +0100 | [diff] [blame^] | 762 | if (skb->len < PAGE_SIZE && paged_rx) { |
| 763 | struct page *page = alloc_page(GFP_ATOMIC); |
| 764 | |
| 765 | if (!page) |
| 766 | continue; |
| 767 | |
| 768 | nskb = dev_alloc_skb(128); |
| 769 | if (!nskb) { |
| 770 | __free_page(page); |
| 771 | continue; |
| 772 | } |
| 773 | |
| 774 | memcpy(page_address(page), skb->data, skb->len); |
| 775 | skb_add_rx_frag(nskb, 0, page, 0, skb->len, skb->len); |
| 776 | } else { |
| 777 | nskb = skb_copy(skb, GFP_ATOMIC); |
| 778 | if (!nskb) |
| 779 | continue; |
| 780 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 781 | |
Jouni Malinen | 265dc7f | 2009-12-04 19:10:34 +0200 | [diff] [blame] | 782 | if (mac80211_hwsim_addr_match(data2, hdr->addr1)) |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 783 | ack = true; |
Javier Cardona | f483ad2 | 2012-03-31 11:31:30 -0700 | [diff] [blame] | 784 | |
| 785 | /* set bcn timestamp relative to receiver mactime */ |
Ashok Nagarajan | 4e13f09 | 2012-03-08 09:27:34 -0800 | [diff] [blame] | 786 | rx_status.mactime = |
Javier Cardona | f483ad2 | 2012-03-31 11:31:30 -0700 | [diff] [blame] | 787 | le64_to_cpu(__mac80211_hwsim_get_tsf(data2)); |
| 788 | mgmt = (struct ieee80211_mgmt *) nskb->data; |
| 789 | if (ieee80211_is_beacon(mgmt->frame_control) || |
| 790 | ieee80211_is_probe_resp(mgmt->frame_control)) |
| 791 | mgmt->u.beacon.timestamp = cpu_to_le64( |
| 792 | rx_status.mactime + |
Javier Cardona | b6ba82c | 2012-04-12 14:32:21 -0700 | [diff] [blame] | 793 | (data->tsf_offset - data2->tsf_offset) + |
Javier Cardona | f483ad2 | 2012-03-31 11:31:30 -0700 | [diff] [blame] | 794 | 24 * 8 * 10 / txrate->bitrate); |
| 795 | |
Johannes Berg | 90b9e446 | 2012-11-16 10:09:08 +0100 | [diff] [blame] | 796 | #if 0 |
| 797 | /* |
| 798 | * Don't enable this code by default as the OUI 00:00:00 |
| 799 | * is registered to Xerox so we shouldn't use it here, it |
| 800 | * might find its way into pcap files. |
| 801 | * Note that this code requires the headroom in the SKB |
| 802 | * that was allocated earlier. |
| 803 | */ |
| 804 | rx_status.vendor_radiotap_oui[0] = 0x00; |
| 805 | rx_status.vendor_radiotap_oui[1] = 0x00; |
| 806 | rx_status.vendor_radiotap_oui[2] = 0x00; |
| 807 | rx_status.vendor_radiotap_subns = 127; |
| 808 | /* |
| 809 | * Radiotap vendor namespaces can (and should) also be |
| 810 | * split into fields by using the standard radiotap |
| 811 | * presence bitmap mechanism. Use just BIT(0) here for |
| 812 | * the presence bitmap. |
| 813 | */ |
| 814 | rx_status.vendor_radiotap_bitmap = BIT(0); |
| 815 | /* We have 8 bytes of (dummy) data */ |
| 816 | rx_status.vendor_radiotap_len = 8; |
| 817 | /* For testing, also require it to be aligned */ |
| 818 | rx_status.vendor_radiotap_align = 8; |
| 819 | /* push the data */ |
| 820 | memcpy(skb_push(nskb, 8), "ABCDEFGH", 8); |
| 821 | #endif |
| 822 | |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 823 | memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status)); |
| 824 | ieee80211_rx_irqsafe(data2->hw, nskb); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 825 | } |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 826 | spin_unlock(&hwsim_radio_lock); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 827 | |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 828 | return ack; |
| 829 | } |
| 830 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 831 | static void mac80211_hwsim_tx(struct ieee80211_hw *hw, |
| 832 | struct ieee80211_tx_control *control, |
| 833 | struct sk_buff *skb) |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 834 | { |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 835 | struct mac80211_hwsim_data *data = hw->priv; |
| 836 | struct ieee80211_tx_info *txi = IEEE80211_SKB_CB(skb); |
| 837 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 838 | struct ieee80211_channel *channel; |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 839 | bool ack; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 840 | u32 _portid; |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 841 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 842 | if (WARN_ON(skb->len < 10)) { |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 843 | /* Should not happen; just a sanity check for addr1 use */ |
| 844 | dev_kfree_skb(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 845 | return; |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 846 | } |
| 847 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 848 | if (channels == 1) { |
| 849 | channel = data->channel; |
| 850 | } else if (txi->hw_queue == 4) { |
| 851 | channel = data->tmp_chan; |
| 852 | } else { |
| 853 | chanctx_conf = rcu_dereference(txi->control.vif->chanctx_conf); |
| 854 | if (chanctx_conf) |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 855 | channel = chanctx_conf->def.chan; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 856 | else |
| 857 | channel = NULL; |
| 858 | } |
| 859 | |
| 860 | if (WARN(!channel, "TX w/o channel - queue = %d\n", txi->hw_queue)) { |
| 861 | dev_kfree_skb(skb); |
| 862 | return; |
| 863 | } |
| 864 | |
| 865 | if (data->idle && !data->tmp_chan) { |
| 866 | wiphy_debug(hw->wiphy, "Trying to TX when idle - reject\n"); |
| 867 | dev_kfree_skb(skb); |
| 868 | return; |
| 869 | } |
| 870 | |
| 871 | if (txi->control.vif) |
| 872 | hwsim_check_magic(txi->control.vif); |
| 873 | if (control->sta) |
| 874 | hwsim_check_sta_magic(control->sta); |
| 875 | |
| 876 | txi->rate_driver_data[0] = channel; |
| 877 | |
| 878 | mac80211_hwsim_monitor_rx(hw, skb, channel); |
| 879 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 880 | /* wmediumd mode check */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 881 | _portid = ACCESS_ONCE(wmediumd_portid); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 882 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 883 | if (_portid) |
| 884 | return mac80211_hwsim_tx_frame_nl(hw, skb, _portid); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 885 | |
| 886 | /* NO wmediumd detected, perfect medium simulation */ |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 887 | ack = mac80211_hwsim_tx_frame_no_nl(hw, skb, channel); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 888 | |
Jouni Malinen | 6c08522 | 2009-11-01 11:31:45 +0200 | [diff] [blame] | 889 | if (ack && skb->len >= 16) { |
| 890 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 891 | mac80211_hwsim_monitor_ack(channel, hdr->addr2); |
Jouni Malinen | 6c08522 | 2009-11-01 11:31:45 +0200 | [diff] [blame] | 892 | } |
Jouni Malinen | e36cfdc | 2008-06-13 19:44:48 +0300 | [diff] [blame] | 893 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 894 | ieee80211_tx_info_clear_status(txi); |
Javier Cardona | 2a4ffa4 | 2012-05-01 03:01:28 -0700 | [diff] [blame] | 895 | |
| 896 | /* frame was transmitted at most favorable rate at first attempt */ |
| 897 | txi->control.rates[0].count = 1; |
| 898 | txi->control.rates[1].idx = -1; |
| 899 | |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 900 | if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack) |
| 901 | txi->flags |= IEEE80211_TX_STAT_ACK; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 902 | ieee80211_tx_status_irqsafe(hw, skb); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | |
| 906 | static int mac80211_hwsim_start(struct ieee80211_hw *hw) |
| 907 | { |
| 908 | struct mac80211_hwsim_data *data = hw->priv; |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 909 | wiphy_debug(hw->wiphy, "%s\n", __func__); |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 910 | data->started = true; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 911 | return 0; |
| 912 | } |
| 913 | |
| 914 | |
| 915 | static void mac80211_hwsim_stop(struct ieee80211_hw *hw) |
| 916 | { |
| 917 | struct mac80211_hwsim_data *data = hw->priv; |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 918 | data->started = false; |
Jouni Malinen | ab1ef98 | 2008-10-30 16:59:25 +0200 | [diff] [blame] | 919 | del_timer(&data->beacon_timer); |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 920 | wiphy_debug(hw->wiphy, "%s\n", __func__); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | |
| 924 | static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 925 | struct ieee80211_vif *vif) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 926 | { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 927 | wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n", |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 928 | __func__, ieee80211_vif_type_p2p(vif), |
| 929 | vif->addr); |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 930 | hwsim_set_magic(vif); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 931 | |
| 932 | vif->cab_queue = 0; |
| 933 | vif->hw_queue[IEEE80211_AC_VO] = 0; |
| 934 | vif->hw_queue[IEEE80211_AC_VI] = 1; |
| 935 | vif->hw_queue[IEEE80211_AC_BE] = 2; |
| 936 | vif->hw_queue[IEEE80211_AC_BK] = 3; |
| 937 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 938 | return 0; |
| 939 | } |
| 940 | |
| 941 | |
Johannes Berg | c35d027 | 2010-08-27 12:35:59 +0200 | [diff] [blame] | 942 | static int mac80211_hwsim_change_interface(struct ieee80211_hw *hw, |
| 943 | struct ieee80211_vif *vif, |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 944 | enum nl80211_iftype newtype, |
| 945 | bool newp2p) |
Johannes Berg | c35d027 | 2010-08-27 12:35:59 +0200 | [diff] [blame] | 946 | { |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 947 | newtype = ieee80211_iftype_p2p(newtype, newp2p); |
Johannes Berg | c35d027 | 2010-08-27 12:35:59 +0200 | [diff] [blame] | 948 | wiphy_debug(hw->wiphy, |
| 949 | "%s (old type=%d, new type=%d, mac_addr=%pM)\n", |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 950 | __func__, ieee80211_vif_type_p2p(vif), |
| 951 | newtype, vif->addr); |
Johannes Berg | c35d027 | 2010-08-27 12:35:59 +0200 | [diff] [blame] | 952 | hwsim_check_magic(vif); |
| 953 | |
| 954 | return 0; |
| 955 | } |
| 956 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 957 | static void mac80211_hwsim_remove_interface( |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 958 | struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 959 | { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 960 | wiphy_debug(hw->wiphy, "%s (type=%d mac_addr=%pM)\n", |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 961 | __func__, ieee80211_vif_type_p2p(vif), |
| 962 | vif->addr); |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 963 | hwsim_check_magic(vif); |
| 964 | hwsim_clear_magic(vif); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 965 | } |
| 966 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 967 | static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw, |
| 968 | struct sk_buff *skb, |
| 969 | struct ieee80211_channel *chan) |
| 970 | { |
| 971 | u32 _pid = ACCESS_ONCE(wmediumd_portid); |
| 972 | |
| 973 | mac80211_hwsim_monitor_rx(hw, skb, chan); |
| 974 | |
| 975 | if (_pid) |
| 976 | return mac80211_hwsim_tx_frame_nl(hw, skb, _pid); |
| 977 | |
| 978 | mac80211_hwsim_tx_frame_no_nl(hw, skb, chan); |
| 979 | dev_kfree_skb(skb); |
| 980 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 981 | |
| 982 | static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac, |
| 983 | struct ieee80211_vif *vif) |
| 984 | { |
| 985 | struct ieee80211_hw *hw = arg; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 986 | struct sk_buff *skb; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 987 | |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 988 | hwsim_check_magic(vif); |
| 989 | |
Andrey Yurovsky | 55b3961 | 2008-10-31 23:23:35 -0700 | [diff] [blame] | 990 | if (vif->type != NL80211_IFTYPE_AP && |
Johannes Berg | 2b2d779 | 2010-08-17 12:08:07 +0200 | [diff] [blame] | 991 | vif->type != NL80211_IFTYPE_MESH_POINT && |
| 992 | vif->type != NL80211_IFTYPE_ADHOC) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 993 | return; |
| 994 | |
| 995 | skb = ieee80211_beacon_get(hw, vif); |
| 996 | if (skb == NULL) |
| 997 | return; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 998 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 999 | mac80211_hwsim_tx_frame(hw, skb, |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1000 | rcu_dereference(vif->chanctx_conf)->def.chan); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1001 | } |
| 1002 | |
| 1003 | |
| 1004 | static void mac80211_hwsim_beacon(unsigned long arg) |
| 1005 | { |
| 1006 | struct ieee80211_hw *hw = (struct ieee80211_hw *) arg; |
| 1007 | struct mac80211_hwsim_data *data = hw->priv; |
| 1008 | |
Johannes Berg | 4c4c671 | 2009-06-01 14:29:52 +0200 | [diff] [blame] | 1009 | if (!data->started) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1010 | return; |
| 1011 | |
Jouni Malinen | f248f10 | 2008-06-13 19:44:47 +0300 | [diff] [blame] | 1012 | ieee80211_iterate_active_interfaces_atomic( |
Johannes Berg | 8b2c982 | 2012-11-06 20:23:30 +0100 | [diff] [blame] | 1013 | hw, IEEE80211_IFACE_ITER_NORMAL, |
| 1014 | mac80211_hwsim_beacon_tx, hw); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1015 | |
| 1016 | data->beacon_timer.expires = jiffies + data->beacon_int; |
| 1017 | add_timer(&data->beacon_timer); |
| 1018 | } |
| 1019 | |
Johannes Berg | 0aaffa9 | 2010-05-05 15:28:27 +0200 | [diff] [blame] | 1020 | static const char *hwsim_chantypes[] = { |
| 1021 | [NL80211_CHAN_NO_HT] = "noht", |
| 1022 | [NL80211_CHAN_HT20] = "ht20", |
| 1023 | [NL80211_CHAN_HT40MINUS] = "ht40-", |
| 1024 | [NL80211_CHAN_HT40PLUS] = "ht40+", |
| 1025 | }; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1026 | |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1027 | static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1028 | { |
| 1029 | struct mac80211_hwsim_data *data = hw->priv; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1030 | struct ieee80211_conf *conf = &hw->conf; |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 1031 | static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = { |
| 1032 | [IEEE80211_SMPS_AUTOMATIC] = "auto", |
| 1033 | [IEEE80211_SMPS_OFF] = "off", |
| 1034 | [IEEE80211_SMPS_STATIC] = "static", |
| 1035 | [IEEE80211_SMPS_DYNAMIC] = "dynamic", |
| 1036 | }; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1037 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1038 | wiphy_debug(hw->wiphy, |
| 1039 | "%s (freq=%d/%s idle=%d ps=%d smps=%s)\n", |
| 1040 | __func__, |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1041 | conf->channel ? conf->channel->center_freq : 0, |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1042 | hwsim_chantypes[conf->channel_type], |
| 1043 | !!(conf->flags & IEEE80211_CONF_IDLE), |
| 1044 | !!(conf->flags & IEEE80211_CONF_PS), |
| 1045 | smps_modes[conf->smps_mode]); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1046 | |
Jouni Malinen | 7054183 | 2009-11-01 11:30:48 +0200 | [diff] [blame] | 1047 | data->idle = !!(conf->flags & IEEE80211_CONF_IDLE); |
| 1048 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1049 | data->channel = conf->channel; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1050 | |
| 1051 | WARN_ON(data->channel && channels > 1); |
| 1052 | |
Blaise Gassend | bdd7bd1 | 2010-10-28 02:01:24 -0700 | [diff] [blame] | 1053 | data->power_level = conf->power_level; |
Johannes Berg | 4c4c671 | 2009-06-01 14:29:52 +0200 | [diff] [blame] | 1054 | if (!data->started || !data->beacon_int) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1055 | del_timer(&data->beacon_timer); |
| 1056 | else |
| 1057 | mod_timer(&data->beacon_timer, jiffies + data->beacon_int); |
| 1058 | |
| 1059 | return 0; |
| 1060 | } |
| 1061 | |
| 1062 | |
| 1063 | static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw, |
| 1064 | unsigned int changed_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 1065 | unsigned int *total_flags,u64 multicast) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1066 | { |
| 1067 | struct mac80211_hwsim_data *data = hw->priv; |
| 1068 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1069 | wiphy_debug(hw->wiphy, "%s\n", __func__); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1070 | |
| 1071 | data->rx_filter = 0; |
| 1072 | if (*total_flags & FIF_PROMISC_IN_BSS) |
| 1073 | data->rx_filter |= FIF_PROMISC_IN_BSS; |
| 1074 | if (*total_flags & FIF_ALLMULTI) |
| 1075 | data->rx_filter |= FIF_ALLMULTI; |
| 1076 | |
| 1077 | *total_flags = data->rx_filter; |
| 1078 | } |
| 1079 | |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1080 | static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw, |
| 1081 | struct ieee80211_vif *vif, |
| 1082 | struct ieee80211_bss_conf *info, |
| 1083 | u32 changed) |
| 1084 | { |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1085 | struct hwsim_vif_priv *vp = (void *)vif->drv_priv; |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 1086 | struct mac80211_hwsim_data *data = hw->priv; |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1087 | |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1088 | hwsim_check_magic(vif); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1089 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1090 | wiphy_debug(hw->wiphy, "%s(changed=0x%x)\n", __func__, changed); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1091 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1092 | if (changed & BSS_CHANGED_BSSID) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1093 | wiphy_debug(hw->wiphy, "%s: BSSID changed: %pM\n", |
| 1094 | __func__, info->bssid); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 1095 | memcpy(vp->bssid, info->bssid, ETH_ALEN); |
| 1096 | } |
| 1097 | |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1098 | if (changed & BSS_CHANGED_ASSOC) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1099 | wiphy_debug(hw->wiphy, " ASSOC: assoc=%d aid=%d\n", |
| 1100 | info->assoc, info->aid); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1101 | vp->assoc = info->assoc; |
| 1102 | vp->aid = info->aid; |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1103 | } |
| 1104 | |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 1105 | if (changed & BSS_CHANGED_BEACON_INT) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1106 | wiphy_debug(hw->wiphy, " BCNINT: %d\n", info->beacon_int); |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 1107 | data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000; |
Johannes Berg | d91f190 | 2009-04-24 15:13:54 +0200 | [diff] [blame] | 1108 | if (WARN_ON(!data->beacon_int)) |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 1109 | data->beacon_int = 1; |
Jouni Malinen | ffed130 | 2009-09-26 22:30:15 +0300 | [diff] [blame] | 1110 | if (data->started) |
| 1111 | mod_timer(&data->beacon_timer, |
| 1112 | jiffies + data->beacon_int); |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 1113 | } |
| 1114 | |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1115 | if (changed & BSS_CHANGED_ERP_CTS_PROT) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1116 | wiphy_debug(hw->wiphy, " ERP_CTS_PROT: %d\n", |
| 1117 | info->use_cts_prot); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1118 | } |
| 1119 | |
| 1120 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1121 | wiphy_debug(hw->wiphy, " ERP_PREAMBLE: %d\n", |
| 1122 | info->use_short_preamble); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | if (changed & BSS_CHANGED_ERP_SLOT) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1126 | wiphy_debug(hw->wiphy, " ERP_SLOT: %d\n", info->use_short_slot); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1127 | } |
| 1128 | |
| 1129 | if (changed & BSS_CHANGED_HT) { |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1130 | wiphy_debug(hw->wiphy, " HT: op_mode=0x%x\n", |
| 1131 | info->ht_operation_mode); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | if (changed & BSS_CHANGED_BASIC_RATES) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1135 | wiphy_debug(hw->wiphy, " BASIC_RATES: 0x%llx\n", |
| 1136 | (unsigned long long) info->basic_rates); |
Jouni Malinen | fe63bfa | 2008-10-30 16:59:21 +0200 | [diff] [blame] | 1137 | } |
Johannes Berg | cbc668a | 2012-10-24 11:54:31 +0200 | [diff] [blame] | 1138 | |
| 1139 | if (changed & BSS_CHANGED_TXPOWER) |
| 1140 | wiphy_debug(hw->wiphy, " TX Power: %d dBm\n", info->txpower); |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1141 | } |
| 1142 | |
Johannes Berg | 1d669cb | 2010-02-19 19:06:55 +0100 | [diff] [blame] | 1143 | static int mac80211_hwsim_sta_add(struct ieee80211_hw *hw, |
| 1144 | struct ieee80211_vif *vif, |
| 1145 | struct ieee80211_sta *sta) |
| 1146 | { |
| 1147 | hwsim_check_magic(vif); |
| 1148 | hwsim_set_sta_magic(sta); |
| 1149 | |
| 1150 | return 0; |
| 1151 | } |
| 1152 | |
| 1153 | static int mac80211_hwsim_sta_remove(struct ieee80211_hw *hw, |
| 1154 | struct ieee80211_vif *vif, |
| 1155 | struct ieee80211_sta *sta) |
| 1156 | { |
| 1157 | hwsim_check_magic(vif); |
| 1158 | hwsim_clear_sta_magic(sta); |
| 1159 | |
| 1160 | return 0; |
| 1161 | } |
| 1162 | |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1163 | static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw, |
| 1164 | struct ieee80211_vif *vif, |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 1165 | enum sta_notify_cmd cmd, |
| 1166 | struct ieee80211_sta *sta) |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1167 | { |
| 1168 | hwsim_check_magic(vif); |
Johannes Berg | 1d669cb | 2010-02-19 19:06:55 +0100 | [diff] [blame] | 1169 | |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 1170 | switch (cmd) { |
Christian Lamparter | 89fad57 | 2008-12-09 16:28:06 +0100 | [diff] [blame] | 1171 | case STA_NOTIFY_SLEEP: |
| 1172 | case STA_NOTIFY_AWAKE: |
| 1173 | /* TODO: make good use of these flags */ |
| 1174 | break; |
Johannes Berg | 1d669cb | 2010-02-19 19:06:55 +0100 | [diff] [blame] | 1175 | default: |
| 1176 | WARN(1, "Invalid sta notify: %d\n", cmd); |
| 1177 | break; |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw, |
| 1182 | struct ieee80211_sta *sta, |
| 1183 | bool set) |
| 1184 | { |
| 1185 | hwsim_check_sta_magic(sta); |
| 1186 | return 0; |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1187 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1188 | |
Jouni Malinen | 1e898ff8 | 2008-10-30 16:59:23 +0200 | [diff] [blame] | 1189 | static int mac80211_hwsim_conf_tx( |
Eliad Peller | 8a3a3c8 | 2011-10-02 10:15:52 +0200 | [diff] [blame] | 1190 | struct ieee80211_hw *hw, |
| 1191 | struct ieee80211_vif *vif, u16 queue, |
Jouni Malinen | 1e898ff8 | 2008-10-30 16:59:23 +0200 | [diff] [blame] | 1192 | const struct ieee80211_tx_queue_params *params) |
| 1193 | { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1194 | wiphy_debug(hw->wiphy, |
| 1195 | "%s (queue=%d txop=%d cw_min=%d cw_max=%d aifs=%d)\n", |
| 1196 | __func__, queue, |
| 1197 | params->txop, params->cw_min, |
| 1198 | params->cw_max, params->aifs); |
Jouni Malinen | 1e898ff8 | 2008-10-30 16:59:23 +0200 | [diff] [blame] | 1199 | return 0; |
| 1200 | } |
| 1201 | |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 1202 | static int mac80211_hwsim_get_survey( |
| 1203 | struct ieee80211_hw *hw, int idx, |
| 1204 | struct survey_info *survey) |
| 1205 | { |
| 1206 | struct ieee80211_conf *conf = &hw->conf; |
| 1207 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1208 | wiphy_debug(hw->wiphy, "%s (idx=%d)\n", __func__, idx); |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 1209 | |
| 1210 | if (idx != 0) |
| 1211 | return -ENOENT; |
| 1212 | |
| 1213 | /* Current channel */ |
| 1214 | survey->channel = conf->channel; |
| 1215 | |
| 1216 | /* |
| 1217 | * Magically conjured noise level --- this is only ok for simulated hardware. |
| 1218 | * |
| 1219 | * A real driver which cannot determine the real channel noise MUST NOT |
| 1220 | * report any noise, especially not a magically conjured one :-) |
| 1221 | */ |
| 1222 | survey->filled = SURVEY_INFO_NOISE_DBM; |
| 1223 | survey->noise = -92; |
| 1224 | |
| 1225 | return 0; |
| 1226 | } |
| 1227 | |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1228 | #ifdef CONFIG_NL80211_TESTMODE |
| 1229 | /* |
| 1230 | * This section contains example code for using netlink |
| 1231 | * attributes with the testmode command in nl80211. |
| 1232 | */ |
| 1233 | |
| 1234 | /* These enums need to be kept in sync with userspace */ |
| 1235 | enum hwsim_testmode_attr { |
| 1236 | __HWSIM_TM_ATTR_INVALID = 0, |
| 1237 | HWSIM_TM_ATTR_CMD = 1, |
| 1238 | HWSIM_TM_ATTR_PS = 2, |
| 1239 | |
| 1240 | /* keep last */ |
| 1241 | __HWSIM_TM_ATTR_AFTER_LAST, |
| 1242 | HWSIM_TM_ATTR_MAX = __HWSIM_TM_ATTR_AFTER_LAST - 1 |
| 1243 | }; |
| 1244 | |
| 1245 | enum hwsim_testmode_cmd { |
| 1246 | HWSIM_TM_CMD_SET_PS = 0, |
| 1247 | HWSIM_TM_CMD_GET_PS = 1, |
Johannes Berg | 4d6d0ae | 2012-07-04 12:58:40 +0200 | [diff] [blame] | 1248 | HWSIM_TM_CMD_STOP_QUEUES = 2, |
| 1249 | HWSIM_TM_CMD_WAKE_QUEUES = 3, |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1250 | }; |
| 1251 | |
| 1252 | static const struct nla_policy hwsim_testmode_policy[HWSIM_TM_ATTR_MAX + 1] = { |
| 1253 | [HWSIM_TM_ATTR_CMD] = { .type = NLA_U32 }, |
| 1254 | [HWSIM_TM_ATTR_PS] = { .type = NLA_U32 }, |
| 1255 | }; |
| 1256 | |
| 1257 | static int hwsim_fops_ps_write(void *dat, u64 val); |
| 1258 | |
Johannes Berg | 5bc3819 | 2009-07-07 11:00:55 +0200 | [diff] [blame] | 1259 | static int mac80211_hwsim_testmode_cmd(struct ieee80211_hw *hw, |
| 1260 | void *data, int len) |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1261 | { |
| 1262 | struct mac80211_hwsim_data *hwsim = hw->priv; |
| 1263 | struct nlattr *tb[HWSIM_TM_ATTR_MAX + 1]; |
| 1264 | struct sk_buff *skb; |
| 1265 | int err, ps; |
| 1266 | |
| 1267 | err = nla_parse(tb, HWSIM_TM_ATTR_MAX, data, len, |
| 1268 | hwsim_testmode_policy); |
| 1269 | if (err) |
| 1270 | return err; |
| 1271 | |
| 1272 | if (!tb[HWSIM_TM_ATTR_CMD]) |
| 1273 | return -EINVAL; |
| 1274 | |
| 1275 | switch (nla_get_u32(tb[HWSIM_TM_ATTR_CMD])) { |
| 1276 | case HWSIM_TM_CMD_SET_PS: |
| 1277 | if (!tb[HWSIM_TM_ATTR_PS]) |
| 1278 | return -EINVAL; |
| 1279 | ps = nla_get_u32(tb[HWSIM_TM_ATTR_PS]); |
| 1280 | return hwsim_fops_ps_write(hwsim, ps); |
| 1281 | case HWSIM_TM_CMD_GET_PS: |
| 1282 | skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, |
| 1283 | nla_total_size(sizeof(u32))); |
| 1284 | if (!skb) |
| 1285 | return -ENOMEM; |
David S. Miller | 633c938 | 2012-04-01 21:03:30 -0400 | [diff] [blame] | 1286 | if (nla_put_u32(skb, HWSIM_TM_ATTR_PS, hwsim->ps)) |
| 1287 | goto nla_put_failure; |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1288 | return cfg80211_testmode_reply(skb); |
Johannes Berg | 4d6d0ae | 2012-07-04 12:58:40 +0200 | [diff] [blame] | 1289 | case HWSIM_TM_CMD_STOP_QUEUES: |
| 1290 | ieee80211_stop_queues(hw); |
| 1291 | return 0; |
| 1292 | case HWSIM_TM_CMD_WAKE_QUEUES: |
| 1293 | ieee80211_wake_queues(hw); |
| 1294 | return 0; |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1295 | default: |
| 1296 | return -EOPNOTSUPP; |
| 1297 | } |
| 1298 | |
| 1299 | nla_put_failure: |
| 1300 | kfree_skb(skb); |
| 1301 | return -ENOBUFS; |
| 1302 | } |
| 1303 | #endif |
| 1304 | |
Johannes Berg | 8b73d13 | 2009-12-01 14:24:24 +0100 | [diff] [blame] | 1305 | static int mac80211_hwsim_ampdu_action(struct ieee80211_hw *hw, |
| 1306 | struct ieee80211_vif *vif, |
| 1307 | enum ieee80211_ampdu_mlme_action action, |
Johannes Berg | 0b01f03 | 2011-01-18 13:51:05 +0100 | [diff] [blame] | 1308 | struct ieee80211_sta *sta, u16 tid, u16 *ssn, |
| 1309 | u8 buf_size) |
Johannes Berg | 8b73d13 | 2009-12-01 14:24:24 +0100 | [diff] [blame] | 1310 | { |
| 1311 | switch (action) { |
| 1312 | case IEEE80211_AMPDU_TX_START: |
| 1313 | ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
| 1314 | break; |
| 1315 | case IEEE80211_AMPDU_TX_STOP: |
| 1316 | ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); |
| 1317 | break; |
| 1318 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 1319 | break; |
| 1320 | case IEEE80211_AMPDU_RX_START: |
| 1321 | case IEEE80211_AMPDU_RX_STOP: |
| 1322 | break; |
| 1323 | default: |
| 1324 | return -EOPNOTSUPP; |
| 1325 | } |
| 1326 | |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 1330 | static void mac80211_hwsim_flush(struct ieee80211_hw *hw, bool drop) |
| 1331 | { |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1332 | /* Not implemented, queues only on kernel side */ |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 1333 | } |
| 1334 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1335 | static void hw_scan_work(struct work_struct *work) |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1336 | { |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1337 | struct mac80211_hwsim_data *hwsim = |
| 1338 | container_of(work, struct mac80211_hwsim_data, hw_scan.work); |
| 1339 | struct cfg80211_scan_request *req = hwsim->hw_scan_request; |
| 1340 | int dwell, i; |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1341 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1342 | mutex_lock(&hwsim->mutex); |
| 1343 | if (hwsim->scan_chan_idx >= req->n_channels) { |
| 1344 | wiphy_debug(hwsim->hw->wiphy, "hw scan complete\n"); |
| 1345 | ieee80211_scan_completed(hwsim->hw, false); |
| 1346 | hwsim->hw_scan_request = NULL; |
| 1347 | hwsim->hw_scan_vif = NULL; |
| 1348 | hwsim->tmp_chan = NULL; |
| 1349 | mutex_unlock(&hwsim->mutex); |
| 1350 | return; |
| 1351 | } |
| 1352 | |
| 1353 | wiphy_debug(hwsim->hw->wiphy, "hw scan %d MHz\n", |
| 1354 | req->channels[hwsim->scan_chan_idx]->center_freq); |
| 1355 | |
| 1356 | hwsim->tmp_chan = req->channels[hwsim->scan_chan_idx]; |
| 1357 | if (hwsim->tmp_chan->flags & IEEE80211_CHAN_PASSIVE_SCAN || |
| 1358 | !req->n_ssids) { |
| 1359 | dwell = 120; |
| 1360 | } else { |
| 1361 | dwell = 30; |
| 1362 | /* send probes */ |
| 1363 | for (i = 0; i < req->n_ssids; i++) { |
| 1364 | struct sk_buff *probe; |
| 1365 | |
| 1366 | probe = ieee80211_probereq_get(hwsim->hw, |
| 1367 | hwsim->hw_scan_vif, |
| 1368 | req->ssids[i].ssid, |
| 1369 | req->ssids[i].ssid_len, |
Johannes Berg | b9a9ada | 2012-11-29 13:00:10 +0100 | [diff] [blame] | 1370 | req->ie_len); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1371 | if (!probe) |
| 1372 | continue; |
Johannes Berg | b9a9ada | 2012-11-29 13:00:10 +0100 | [diff] [blame] | 1373 | |
| 1374 | if (req->ie_len) |
| 1375 | memcpy(skb_put(probe, req->ie_len), req->ie, |
| 1376 | req->ie_len); |
| 1377 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1378 | local_bh_disable(); |
| 1379 | mac80211_hwsim_tx_frame(hwsim->hw, probe, |
| 1380 | hwsim->tmp_chan); |
| 1381 | local_bh_enable(); |
| 1382 | } |
| 1383 | } |
| 1384 | ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, |
| 1385 | msecs_to_jiffies(dwell)); |
| 1386 | hwsim->scan_chan_idx++; |
| 1387 | mutex_unlock(&hwsim->mutex); |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1388 | } |
| 1389 | |
| 1390 | static int mac80211_hwsim_hw_scan(struct ieee80211_hw *hw, |
Johannes Berg | a060bbf | 2010-04-27 11:59:34 +0200 | [diff] [blame] | 1391 | struct ieee80211_vif *vif, |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1392 | struct cfg80211_scan_request *req) |
| 1393 | { |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1394 | struct mac80211_hwsim_data *hwsim = hw->priv; |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1395 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1396 | mutex_lock(&hwsim->mutex); |
| 1397 | if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) { |
| 1398 | mutex_unlock(&hwsim->mutex); |
| 1399 | return -EBUSY; |
| 1400 | } |
| 1401 | hwsim->hw_scan_request = req; |
| 1402 | hwsim->hw_scan_vif = vif; |
| 1403 | hwsim->scan_chan_idx = 0; |
| 1404 | mutex_unlock(&hwsim->mutex); |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1405 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1406 | wiphy_debug(hw->wiphy, "hwsim hw_scan request\n"); |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1407 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1408 | ieee80211_queue_delayed_work(hwsim->hw, &hwsim->hw_scan, 0); |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1409 | |
| 1410 | return 0; |
| 1411 | } |
| 1412 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1413 | static void mac80211_hwsim_cancel_hw_scan(struct ieee80211_hw *hw, |
| 1414 | struct ieee80211_vif *vif) |
| 1415 | { |
| 1416 | struct mac80211_hwsim_data *hwsim = hw->priv; |
| 1417 | |
| 1418 | wiphy_debug(hw->wiphy, "hwsim cancel_hw_scan\n"); |
| 1419 | |
| 1420 | cancel_delayed_work_sync(&hwsim->hw_scan); |
| 1421 | |
| 1422 | mutex_lock(&hwsim->mutex); |
| 1423 | ieee80211_scan_completed(hwsim->hw, true); |
| 1424 | hwsim->tmp_chan = NULL; |
| 1425 | hwsim->hw_scan_request = NULL; |
| 1426 | hwsim->hw_scan_vif = NULL; |
| 1427 | mutex_unlock(&hwsim->mutex); |
| 1428 | } |
| 1429 | |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 1430 | static void mac80211_hwsim_sw_scan(struct ieee80211_hw *hw) |
| 1431 | { |
| 1432 | struct mac80211_hwsim_data *hwsim = hw->priv; |
| 1433 | |
| 1434 | mutex_lock(&hwsim->mutex); |
| 1435 | |
| 1436 | if (hwsim->scanning) { |
| 1437 | printk(KERN_DEBUG "two hwsim sw_scans detected!\n"); |
| 1438 | goto out; |
| 1439 | } |
| 1440 | |
| 1441 | printk(KERN_DEBUG "hwsim sw_scan request, prepping stuff\n"); |
| 1442 | hwsim->scanning = true; |
| 1443 | |
| 1444 | out: |
| 1445 | mutex_unlock(&hwsim->mutex); |
| 1446 | } |
| 1447 | |
| 1448 | static void mac80211_hwsim_sw_scan_complete(struct ieee80211_hw *hw) |
| 1449 | { |
| 1450 | struct mac80211_hwsim_data *hwsim = hw->priv; |
| 1451 | |
| 1452 | mutex_lock(&hwsim->mutex); |
| 1453 | |
| 1454 | printk(KERN_DEBUG "hwsim sw_scan_complete\n"); |
Johannes Berg | 23ff98f | 2010-05-03 09:21:14 +0200 | [diff] [blame] | 1455 | hwsim->scanning = false; |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 1456 | |
| 1457 | mutex_unlock(&hwsim->mutex); |
| 1458 | } |
| 1459 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1460 | static void hw_roc_done(struct work_struct *work) |
| 1461 | { |
| 1462 | struct mac80211_hwsim_data *hwsim = |
| 1463 | container_of(work, struct mac80211_hwsim_data, roc_done.work); |
| 1464 | |
| 1465 | mutex_lock(&hwsim->mutex); |
| 1466 | ieee80211_remain_on_channel_expired(hwsim->hw); |
| 1467 | hwsim->tmp_chan = NULL; |
| 1468 | mutex_unlock(&hwsim->mutex); |
| 1469 | |
| 1470 | wiphy_debug(hwsim->hw->wiphy, "hwsim ROC expired\n"); |
| 1471 | } |
| 1472 | |
| 1473 | static int mac80211_hwsim_roc(struct ieee80211_hw *hw, |
Eliad Peller | 4988456 | 2012-11-19 17:05:09 +0200 | [diff] [blame] | 1474 | struct ieee80211_vif *vif, |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1475 | struct ieee80211_channel *chan, |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1476 | int duration) |
| 1477 | { |
| 1478 | struct mac80211_hwsim_data *hwsim = hw->priv; |
| 1479 | |
| 1480 | mutex_lock(&hwsim->mutex); |
| 1481 | if (WARN_ON(hwsim->tmp_chan || hwsim->hw_scan_request)) { |
| 1482 | mutex_unlock(&hwsim->mutex); |
| 1483 | return -EBUSY; |
| 1484 | } |
| 1485 | |
| 1486 | hwsim->tmp_chan = chan; |
| 1487 | mutex_unlock(&hwsim->mutex); |
| 1488 | |
| 1489 | wiphy_debug(hw->wiphy, "hwsim ROC (%d MHz, %d ms)\n", |
| 1490 | chan->center_freq, duration); |
| 1491 | |
| 1492 | ieee80211_ready_on_channel(hw); |
| 1493 | |
| 1494 | ieee80211_queue_delayed_work(hw, &hwsim->roc_done, |
| 1495 | msecs_to_jiffies(duration)); |
| 1496 | return 0; |
| 1497 | } |
| 1498 | |
| 1499 | static int mac80211_hwsim_croc(struct ieee80211_hw *hw) |
| 1500 | { |
| 1501 | struct mac80211_hwsim_data *hwsim = hw->priv; |
| 1502 | |
| 1503 | cancel_delayed_work_sync(&hwsim->roc_done); |
| 1504 | |
| 1505 | mutex_lock(&hwsim->mutex); |
| 1506 | hwsim->tmp_chan = NULL; |
| 1507 | mutex_unlock(&hwsim->mutex); |
| 1508 | |
| 1509 | wiphy_debug(hw->wiphy, "hwsim ROC canceled\n"); |
| 1510 | |
| 1511 | return 0; |
| 1512 | } |
| 1513 | |
| 1514 | static int mac80211_hwsim_add_chanctx(struct ieee80211_hw *hw, |
| 1515 | struct ieee80211_chanctx_conf *ctx) |
| 1516 | { |
| 1517 | hwsim_set_chanctx_magic(ctx); |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1518 | wiphy_debug(hw->wiphy, |
| 1519 | "add channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n", |
| 1520 | ctx->def.chan->center_freq, ctx->def.width, |
| 1521 | ctx->def.center_freq1, ctx->def.center_freq2); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1522 | return 0; |
| 1523 | } |
| 1524 | |
| 1525 | static void mac80211_hwsim_remove_chanctx(struct ieee80211_hw *hw, |
| 1526 | struct ieee80211_chanctx_conf *ctx) |
| 1527 | { |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1528 | wiphy_debug(hw->wiphy, |
| 1529 | "remove channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n", |
| 1530 | ctx->def.chan->center_freq, ctx->def.width, |
| 1531 | ctx->def.center_freq1, ctx->def.center_freq2); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1532 | hwsim_check_chanctx_magic(ctx); |
| 1533 | hwsim_clear_chanctx_magic(ctx); |
| 1534 | } |
| 1535 | |
| 1536 | static void mac80211_hwsim_change_chanctx(struct ieee80211_hw *hw, |
| 1537 | struct ieee80211_chanctx_conf *ctx, |
| 1538 | u32 changed) |
| 1539 | { |
| 1540 | hwsim_check_chanctx_magic(ctx); |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1541 | wiphy_debug(hw->wiphy, |
| 1542 | "change channel context control: %d MHz/width: %d/cfreqs:%d/%d MHz\n", |
| 1543 | ctx->def.chan->center_freq, ctx->def.width, |
| 1544 | ctx->def.center_freq1, ctx->def.center_freq2); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1545 | } |
| 1546 | |
| 1547 | static int mac80211_hwsim_assign_vif_chanctx(struct ieee80211_hw *hw, |
| 1548 | struct ieee80211_vif *vif, |
| 1549 | struct ieee80211_chanctx_conf *ctx) |
| 1550 | { |
| 1551 | hwsim_check_magic(vif); |
| 1552 | hwsim_check_chanctx_magic(ctx); |
| 1553 | |
| 1554 | return 0; |
| 1555 | } |
| 1556 | |
| 1557 | static void mac80211_hwsim_unassign_vif_chanctx(struct ieee80211_hw *hw, |
| 1558 | struct ieee80211_vif *vif, |
| 1559 | struct ieee80211_chanctx_conf *ctx) |
| 1560 | { |
| 1561 | hwsim_check_magic(vif); |
| 1562 | hwsim_check_chanctx_magic(ctx); |
| 1563 | } |
| 1564 | |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 1565 | static struct ieee80211_ops mac80211_hwsim_ops = |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1566 | { |
| 1567 | .tx = mac80211_hwsim_tx, |
| 1568 | .start = mac80211_hwsim_start, |
| 1569 | .stop = mac80211_hwsim_stop, |
| 1570 | .add_interface = mac80211_hwsim_add_interface, |
Johannes Berg | c35d027 | 2010-08-27 12:35:59 +0200 | [diff] [blame] | 1571 | .change_interface = mac80211_hwsim_change_interface, |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1572 | .remove_interface = mac80211_hwsim_remove_interface, |
| 1573 | .config = mac80211_hwsim_config, |
| 1574 | .configure_filter = mac80211_hwsim_configure_filter, |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1575 | .bss_info_changed = mac80211_hwsim_bss_info_changed, |
Johannes Berg | 1d669cb | 2010-02-19 19:06:55 +0100 | [diff] [blame] | 1576 | .sta_add = mac80211_hwsim_sta_add, |
| 1577 | .sta_remove = mac80211_hwsim_sta_remove, |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 1578 | .sta_notify = mac80211_hwsim_sta_notify, |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 1579 | .set_tim = mac80211_hwsim_set_tim, |
Jouni Malinen | 1e898ff8 | 2008-10-30 16:59:23 +0200 | [diff] [blame] | 1580 | .conf_tx = mac80211_hwsim_conf_tx, |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 1581 | .get_survey = mac80211_hwsim_get_survey, |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 1582 | CFG80211_TESTMODE_CMD(mac80211_hwsim_testmode_cmd) |
Johannes Berg | 8b73d13 | 2009-12-01 14:24:24 +0100 | [diff] [blame] | 1583 | .ampdu_action = mac80211_hwsim_ampdu_action, |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 1584 | .sw_scan_start = mac80211_hwsim_sw_scan, |
| 1585 | .sw_scan_complete = mac80211_hwsim_sw_scan_complete, |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 1586 | .flush = mac80211_hwsim_flush, |
Javier Cardona | 12ce8ba | 2012-03-05 17:20:38 -0800 | [diff] [blame] | 1587 | .get_tsf = mac80211_hwsim_get_tsf, |
| 1588 | .set_tsf = mac80211_hwsim_set_tsf, |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1589 | }; |
| 1590 | |
| 1591 | |
| 1592 | static void mac80211_hwsim_free(void) |
| 1593 | { |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 1594 | struct list_head tmplist, *i, *tmp; |
Johannes Berg | e603d9d | 2009-07-13 13:25:58 +0200 | [diff] [blame] | 1595 | struct mac80211_hwsim_data *data, *tmpdata; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1596 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 1597 | INIT_LIST_HEAD(&tmplist); |
| 1598 | |
| 1599 | spin_lock_bh(&hwsim_radio_lock); |
| 1600 | list_for_each_safe(i, tmp, &hwsim_radios) |
| 1601 | list_move(i, &tmplist); |
| 1602 | spin_unlock_bh(&hwsim_radio_lock); |
| 1603 | |
Johannes Berg | e603d9d | 2009-07-13 13:25:58 +0200 | [diff] [blame] | 1604 | list_for_each_entry_safe(data, tmpdata, &tmplist, list) { |
Daniel Wagner | 73606d0 | 2009-05-18 19:49:25 +0200 | [diff] [blame] | 1605 | debugfs_remove(data->debugfs_group); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1606 | debugfs_remove(data->debugfs_ps); |
| 1607 | debugfs_remove(data->debugfs); |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 1608 | ieee80211_unregister_hw(data->hw); |
| 1609 | device_unregister(data->dev); |
| 1610 | ieee80211_free_hw(data->hw); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1611 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1612 | class_destroy(hwsim_class); |
| 1613 | } |
| 1614 | |
| 1615 | |
| 1616 | static struct device_driver mac80211_hwsim_driver = { |
| 1617 | .name = "mac80211_hwsim" |
| 1618 | }; |
| 1619 | |
Stephen Hemminger | 98d2faa | 2009-03-20 19:36:33 +0000 | [diff] [blame] | 1620 | static const struct net_device_ops hwsim_netdev_ops = { |
| 1621 | .ndo_start_xmit = hwsim_mon_xmit, |
| 1622 | .ndo_change_mtu = eth_change_mtu, |
| 1623 | .ndo_set_mac_address = eth_mac_addr, |
| 1624 | .ndo_validate_addr = eth_validate_addr, |
| 1625 | }; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1626 | |
| 1627 | static void hwsim_mon_setup(struct net_device *dev) |
| 1628 | { |
Stephen Hemminger | 98d2faa | 2009-03-20 19:36:33 +0000 | [diff] [blame] | 1629 | dev->netdev_ops = &hwsim_netdev_ops; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 1630 | dev->destructor = free_netdev; |
| 1631 | ether_setup(dev); |
| 1632 | dev->tx_queue_len = 0; |
| 1633 | dev->type = ARPHRD_IEEE80211_RADIOTAP; |
| 1634 | memset(dev->dev_addr, 0, ETH_ALEN); |
| 1635 | dev->dev_addr[0] = 0x12; |
| 1636 | } |
| 1637 | |
| 1638 | |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1639 | static void hwsim_send_ps_poll(void *dat, u8 *mac, struct ieee80211_vif *vif) |
| 1640 | { |
| 1641 | struct mac80211_hwsim_data *data = dat; |
| 1642 | struct hwsim_vif_priv *vp = (void *)vif->drv_priv; |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1643 | struct sk_buff *skb; |
| 1644 | struct ieee80211_pspoll *pspoll; |
| 1645 | |
| 1646 | if (!vp->assoc) |
| 1647 | return; |
| 1648 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1649 | wiphy_debug(data->hw->wiphy, |
| 1650 | "%s: send PS-Poll to %pM for aid %d\n", |
| 1651 | __func__, vp->bssid, vp->aid); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1652 | |
| 1653 | skb = dev_alloc_skb(sizeof(*pspoll)); |
| 1654 | if (!skb) |
| 1655 | return; |
| 1656 | pspoll = (void *) skb_put(skb, sizeof(*pspoll)); |
| 1657 | pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | |
| 1658 | IEEE80211_STYPE_PSPOLL | |
| 1659 | IEEE80211_FCTL_PM); |
| 1660 | pspoll->aid = cpu_to_le16(0xc000 | vp->aid); |
| 1661 | memcpy(pspoll->bssid, vp->bssid, ETH_ALEN); |
| 1662 | memcpy(pspoll->ta, mac, ETH_ALEN); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1663 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1664 | rcu_read_lock(); |
| 1665 | mac80211_hwsim_tx_frame(data->hw, skb, |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1666 | rcu_dereference(vif->chanctx_conf)->def.chan); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1667 | rcu_read_unlock(); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1668 | } |
| 1669 | |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1670 | static void hwsim_send_nullfunc(struct mac80211_hwsim_data *data, u8 *mac, |
| 1671 | struct ieee80211_vif *vif, int ps) |
| 1672 | { |
| 1673 | struct hwsim_vif_priv *vp = (void *)vif->drv_priv; |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1674 | struct sk_buff *skb; |
| 1675 | struct ieee80211_hdr *hdr; |
| 1676 | |
| 1677 | if (!vp->assoc) |
| 1678 | return; |
| 1679 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1680 | wiphy_debug(data->hw->wiphy, |
| 1681 | "%s: send data::nullfunc to %pM ps=%d\n", |
| 1682 | __func__, vp->bssid, ps); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1683 | |
| 1684 | skb = dev_alloc_skb(sizeof(*hdr)); |
| 1685 | if (!skb) |
| 1686 | return; |
| 1687 | hdr = (void *) skb_put(skb, sizeof(*hdr) - ETH_ALEN); |
| 1688 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 1689 | IEEE80211_STYPE_NULLFUNC | |
| 1690 | (ps ? IEEE80211_FCTL_PM : 0)); |
| 1691 | hdr->duration_id = cpu_to_le16(0); |
| 1692 | memcpy(hdr->addr1, vp->bssid, ETH_ALEN); |
| 1693 | memcpy(hdr->addr2, mac, ETH_ALEN); |
| 1694 | memcpy(hdr->addr3, vp->bssid, ETH_ALEN); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1695 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1696 | rcu_read_lock(); |
| 1697 | mac80211_hwsim_tx_frame(data->hw, skb, |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 1698 | rcu_dereference(vif->chanctx_conf)->def.chan); |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1699 | rcu_read_unlock(); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1700 | } |
| 1701 | |
| 1702 | |
| 1703 | static void hwsim_send_nullfunc_ps(void *dat, u8 *mac, |
| 1704 | struct ieee80211_vif *vif) |
| 1705 | { |
| 1706 | struct mac80211_hwsim_data *data = dat; |
| 1707 | hwsim_send_nullfunc(data, mac, vif, 1); |
| 1708 | } |
| 1709 | |
| 1710 | |
| 1711 | static void hwsim_send_nullfunc_no_ps(void *dat, u8 *mac, |
| 1712 | struct ieee80211_vif *vif) |
| 1713 | { |
| 1714 | struct mac80211_hwsim_data *data = dat; |
| 1715 | hwsim_send_nullfunc(data, mac, vif, 0); |
| 1716 | } |
| 1717 | |
| 1718 | |
| 1719 | static int hwsim_fops_ps_read(void *dat, u64 *val) |
| 1720 | { |
| 1721 | struct mac80211_hwsim_data *data = dat; |
| 1722 | *val = data->ps; |
| 1723 | return 0; |
| 1724 | } |
| 1725 | |
| 1726 | static int hwsim_fops_ps_write(void *dat, u64 val) |
| 1727 | { |
| 1728 | struct mac80211_hwsim_data *data = dat; |
| 1729 | enum ps_mode old_ps; |
| 1730 | |
| 1731 | if (val != PS_DISABLED && val != PS_ENABLED && val != PS_AUTO_POLL && |
| 1732 | val != PS_MANUAL_POLL) |
| 1733 | return -EINVAL; |
| 1734 | |
| 1735 | old_ps = data->ps; |
| 1736 | data->ps = val; |
| 1737 | |
| 1738 | if (val == PS_MANUAL_POLL) { |
| 1739 | ieee80211_iterate_active_interfaces(data->hw, |
Johannes Berg | 8b2c982 | 2012-11-06 20:23:30 +0100 | [diff] [blame] | 1740 | IEEE80211_IFACE_ITER_NORMAL, |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1741 | hwsim_send_ps_poll, data); |
| 1742 | data->ps_poll_pending = true; |
| 1743 | } else if (old_ps == PS_DISABLED && val != PS_DISABLED) { |
| 1744 | ieee80211_iterate_active_interfaces(data->hw, |
Johannes Berg | 8b2c982 | 2012-11-06 20:23:30 +0100 | [diff] [blame] | 1745 | IEEE80211_IFACE_ITER_NORMAL, |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1746 | hwsim_send_nullfunc_ps, |
| 1747 | data); |
| 1748 | } else if (old_ps != PS_DISABLED && val == PS_DISABLED) { |
| 1749 | ieee80211_iterate_active_interfaces(data->hw, |
Johannes Berg | 8b2c982 | 2012-11-06 20:23:30 +0100 | [diff] [blame] | 1750 | IEEE80211_IFACE_ITER_NORMAL, |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 1751 | hwsim_send_nullfunc_no_ps, |
| 1752 | data); |
| 1753 | } |
| 1754 | |
| 1755 | return 0; |
| 1756 | } |
| 1757 | |
| 1758 | DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_ps, hwsim_fops_ps_read, hwsim_fops_ps_write, |
| 1759 | "%llu\n"); |
| 1760 | |
| 1761 | |
Daniel Wagner | 73606d0 | 2009-05-18 19:49:25 +0200 | [diff] [blame] | 1762 | static int hwsim_fops_group_read(void *dat, u64 *val) |
| 1763 | { |
| 1764 | struct mac80211_hwsim_data *data = dat; |
| 1765 | *val = data->group; |
| 1766 | return 0; |
| 1767 | } |
| 1768 | |
| 1769 | static int hwsim_fops_group_write(void *dat, u64 val) |
| 1770 | { |
| 1771 | struct mac80211_hwsim_data *data = dat; |
| 1772 | data->group = val; |
| 1773 | return 0; |
| 1774 | } |
| 1775 | |
| 1776 | DEFINE_SIMPLE_ATTRIBUTE(hwsim_fops_group, |
| 1777 | hwsim_fops_group_read, hwsim_fops_group_write, |
| 1778 | "%llx\n"); |
| 1779 | |
Javier Cardona | f483ad2 | 2012-03-31 11:31:30 -0700 | [diff] [blame] | 1780 | static struct mac80211_hwsim_data *get_hwsim_data_ref_from_addr( |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1781 | struct mac_address *addr) |
| 1782 | { |
| 1783 | struct mac80211_hwsim_data *data; |
| 1784 | bool _found = false; |
| 1785 | |
| 1786 | spin_lock_bh(&hwsim_radio_lock); |
| 1787 | list_for_each_entry(data, &hwsim_radios, list) { |
| 1788 | if (memcmp(data->addresses[1].addr, addr, |
| 1789 | sizeof(struct mac_address)) == 0) { |
| 1790 | _found = true; |
| 1791 | break; |
| 1792 | } |
| 1793 | } |
| 1794 | spin_unlock_bh(&hwsim_radio_lock); |
| 1795 | |
| 1796 | if (!_found) |
| 1797 | return NULL; |
| 1798 | |
| 1799 | return data; |
| 1800 | } |
| 1801 | |
| 1802 | static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2, |
| 1803 | struct genl_info *info) |
| 1804 | { |
| 1805 | |
| 1806 | struct ieee80211_hdr *hdr; |
| 1807 | struct mac80211_hwsim_data *data2; |
| 1808 | struct ieee80211_tx_info *txi; |
| 1809 | struct hwsim_tx_rate *tx_attempts; |
Johannes Berg | d0f718c | 2012-06-25 14:46:44 +0200 | [diff] [blame] | 1810 | unsigned long ret_skb_ptr; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1811 | struct sk_buff *skb, *tmp; |
| 1812 | struct mac_address *src; |
| 1813 | unsigned int hwsim_flags; |
| 1814 | |
| 1815 | int i; |
| 1816 | bool found = false; |
| 1817 | |
| 1818 | if (!info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER] || |
| 1819 | !info->attrs[HWSIM_ATTR_FLAGS] || |
| 1820 | !info->attrs[HWSIM_ATTR_COOKIE] || |
| 1821 | !info->attrs[HWSIM_ATTR_TX_INFO]) |
| 1822 | goto out; |
| 1823 | |
| 1824 | src = (struct mac_address *)nla_data( |
| 1825 | info->attrs[HWSIM_ATTR_ADDR_TRANSMITTER]); |
| 1826 | hwsim_flags = nla_get_u32(info->attrs[HWSIM_ATTR_FLAGS]); |
| 1827 | |
Johannes Berg | d0f718c | 2012-06-25 14:46:44 +0200 | [diff] [blame] | 1828 | ret_skb_ptr = nla_get_u64(info->attrs[HWSIM_ATTR_COOKIE]); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1829 | |
| 1830 | data2 = get_hwsim_data_ref_from_addr(src); |
| 1831 | |
| 1832 | if (data2 == NULL) |
| 1833 | goto out; |
| 1834 | |
| 1835 | /* look for the skb matching the cookie passed back from user */ |
| 1836 | skb_queue_walk_safe(&data2->pending, skb, tmp) { |
Johannes Berg | d0f718c | 2012-06-25 14:46:44 +0200 | [diff] [blame] | 1837 | if ((unsigned long)skb == ret_skb_ptr) { |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1838 | skb_unlink(skb, &data2->pending); |
| 1839 | found = true; |
| 1840 | break; |
| 1841 | } |
| 1842 | } |
| 1843 | |
| 1844 | /* not found */ |
| 1845 | if (!found) |
| 1846 | goto out; |
| 1847 | |
| 1848 | /* Tx info received because the frame was broadcasted on user space, |
| 1849 | so we get all the necessary info: tx attempts and skb control buff */ |
| 1850 | |
| 1851 | tx_attempts = (struct hwsim_tx_rate *)nla_data( |
| 1852 | info->attrs[HWSIM_ATTR_TX_INFO]); |
| 1853 | |
| 1854 | /* now send back TX status */ |
| 1855 | txi = IEEE80211_SKB_CB(skb); |
| 1856 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1857 | ieee80211_tx_info_clear_status(txi); |
| 1858 | |
| 1859 | for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) { |
| 1860 | txi->status.rates[i].idx = tx_attempts[i].idx; |
| 1861 | txi->status.rates[i].count = tx_attempts[i].count; |
| 1862 | /*txi->status.rates[i].flags = 0;*/ |
| 1863 | } |
| 1864 | |
| 1865 | txi->status.ack_signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]); |
| 1866 | |
| 1867 | if (!(hwsim_flags & HWSIM_TX_CTL_NO_ACK) && |
| 1868 | (hwsim_flags & HWSIM_TX_STAT_ACK)) { |
| 1869 | if (skb->len >= 16) { |
| 1870 | hdr = (struct ieee80211_hdr *) skb->data; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1871 | mac80211_hwsim_monitor_ack(txi->rate_driver_data[0], |
| 1872 | hdr->addr2); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1873 | } |
Qasim Javed | 06cf5c4 | 2012-06-05 01:25:44 -0500 | [diff] [blame] | 1874 | txi->flags |= IEEE80211_TX_STAT_ACK; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1875 | } |
| 1876 | ieee80211_tx_status_irqsafe(data2->hw, skb); |
| 1877 | return 0; |
| 1878 | out: |
| 1879 | return -EINVAL; |
| 1880 | |
| 1881 | } |
| 1882 | |
| 1883 | static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2, |
| 1884 | struct genl_info *info) |
| 1885 | { |
| 1886 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1887 | struct mac80211_hwsim_data *data2; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1888 | struct ieee80211_rx_status rx_status; |
| 1889 | struct mac_address *dst; |
| 1890 | int frame_data_len; |
| 1891 | char *frame_data; |
| 1892 | struct sk_buff *skb = NULL; |
| 1893 | |
| 1894 | if (!info->attrs[HWSIM_ATTR_ADDR_RECEIVER] || |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1895 | !info->attrs[HWSIM_ATTR_FRAME] || |
| 1896 | !info->attrs[HWSIM_ATTR_RX_RATE] || |
| 1897 | !info->attrs[HWSIM_ATTR_SIGNAL]) |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1898 | goto out; |
| 1899 | |
| 1900 | dst = (struct mac_address *)nla_data( |
| 1901 | info->attrs[HWSIM_ATTR_ADDR_RECEIVER]); |
| 1902 | |
| 1903 | frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]); |
| 1904 | frame_data = (char *)nla_data(info->attrs[HWSIM_ATTR_FRAME]); |
| 1905 | |
| 1906 | /* Allocate new skb here */ |
| 1907 | skb = alloc_skb(frame_data_len, GFP_KERNEL); |
| 1908 | if (skb == NULL) |
| 1909 | goto err; |
| 1910 | |
| 1911 | if (frame_data_len <= IEEE80211_MAX_DATA_LEN) { |
| 1912 | /* Copy the data */ |
| 1913 | memcpy(skb_put(skb, frame_data_len), frame_data, |
| 1914 | frame_data_len); |
| 1915 | } else |
| 1916 | goto err; |
| 1917 | |
| 1918 | data2 = get_hwsim_data_ref_from_addr(dst); |
| 1919 | |
| 1920 | if (data2 == NULL) |
| 1921 | goto out; |
| 1922 | |
| 1923 | /* check if radio is configured properly */ |
| 1924 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 1925 | if (data2->idle || !data2->started) |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1926 | goto out; |
| 1927 | |
| 1928 | /*A frame is received from user space*/ |
| 1929 | memset(&rx_status, 0, sizeof(rx_status)); |
| 1930 | rx_status.freq = data2->channel->center_freq; |
| 1931 | rx_status.band = data2->channel->band; |
| 1932 | rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]); |
| 1933 | rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]); |
| 1934 | |
| 1935 | memcpy(IEEE80211_SKB_RXCB(skb), &rx_status, sizeof(rx_status)); |
| 1936 | ieee80211_rx_irqsafe(data2->hw, skb); |
| 1937 | |
| 1938 | return 0; |
| 1939 | err: |
Masanari Iida | c393862 | 2012-02-17 23:04:10 +0900 | [diff] [blame] | 1940 | printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1941 | goto out; |
| 1942 | out: |
| 1943 | dev_kfree_skb(skb); |
| 1944 | return -EINVAL; |
| 1945 | } |
| 1946 | |
| 1947 | static int hwsim_register_received_nl(struct sk_buff *skb_2, |
| 1948 | struct genl_info *info) |
| 1949 | { |
| 1950 | if (info == NULL) |
| 1951 | goto out; |
| 1952 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1953 | wmediumd_portid = info->snd_portid; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1954 | |
| 1955 | printk(KERN_DEBUG "mac80211_hwsim: received a REGISTER, " |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1956 | "switching to wmediumd mode with pid %d\n", info->snd_portid); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1957 | |
| 1958 | return 0; |
| 1959 | out: |
Masanari Iida | c393862 | 2012-02-17 23:04:10 +0900 | [diff] [blame] | 1960 | printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1961 | return -EINVAL; |
| 1962 | } |
| 1963 | |
| 1964 | /* Generic Netlink operations array */ |
| 1965 | static struct genl_ops hwsim_ops[] = { |
| 1966 | { |
| 1967 | .cmd = HWSIM_CMD_REGISTER, |
| 1968 | .policy = hwsim_genl_policy, |
| 1969 | .doit = hwsim_register_received_nl, |
| 1970 | .flags = GENL_ADMIN_PERM, |
| 1971 | }, |
| 1972 | { |
| 1973 | .cmd = HWSIM_CMD_FRAME, |
| 1974 | .policy = hwsim_genl_policy, |
| 1975 | .doit = hwsim_cloned_frame_received_nl, |
| 1976 | }, |
| 1977 | { |
| 1978 | .cmd = HWSIM_CMD_TX_INFO_FRAME, |
| 1979 | .policy = hwsim_genl_policy, |
| 1980 | .doit = hwsim_tx_info_frame_received_nl, |
| 1981 | }, |
| 1982 | }; |
| 1983 | |
| 1984 | static int mac80211_hwsim_netlink_notify(struct notifier_block *nb, |
| 1985 | unsigned long state, |
| 1986 | void *_notify) |
| 1987 | { |
| 1988 | struct netlink_notify *notify = _notify; |
| 1989 | |
| 1990 | if (state != NETLINK_URELEASE) |
| 1991 | return NOTIFY_DONE; |
| 1992 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1993 | if (notify->portid == wmediumd_portid) { |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1994 | printk(KERN_INFO "mac80211_hwsim: wmediumd released netlink" |
| 1995 | " socket, switching to perfect channel medium\n"); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1996 | wmediumd_portid = 0; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 1997 | } |
| 1998 | return NOTIFY_DONE; |
| 1999 | |
| 2000 | } |
| 2001 | |
| 2002 | static struct notifier_block hwsim_netlink_notifier = { |
| 2003 | .notifier_call = mac80211_hwsim_netlink_notify, |
| 2004 | }; |
| 2005 | |
| 2006 | static int hwsim_init_netlink(void) |
| 2007 | { |
| 2008 | int rc; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2009 | |
| 2010 | /* userspace test API hasn't been adjusted for multi-channel */ |
| 2011 | if (channels > 1) |
| 2012 | return 0; |
| 2013 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2014 | printk(KERN_INFO "mac80211_hwsim: initializing netlink\n"); |
| 2015 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2016 | rc = genl_register_family_with_ops(&hwsim_genl_family, |
| 2017 | hwsim_ops, ARRAY_SIZE(hwsim_ops)); |
| 2018 | if (rc) |
| 2019 | goto failure; |
| 2020 | |
| 2021 | rc = netlink_register_notifier(&hwsim_netlink_notifier); |
| 2022 | if (rc) |
| 2023 | goto failure; |
| 2024 | |
| 2025 | return 0; |
| 2026 | |
| 2027 | failure: |
Masanari Iida | c393862 | 2012-02-17 23:04:10 +0900 | [diff] [blame] | 2028 | printk(KERN_DEBUG "mac80211_hwsim: error occurred in %s\n", __func__); |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2029 | return -EINVAL; |
| 2030 | } |
| 2031 | |
| 2032 | static void hwsim_exit_netlink(void) |
| 2033 | { |
| 2034 | int ret; |
| 2035 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2036 | /* userspace test API hasn't been adjusted for multi-channel */ |
| 2037 | if (channels > 1) |
| 2038 | return; |
| 2039 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2040 | printk(KERN_INFO "mac80211_hwsim: closing netlink\n"); |
| 2041 | /* unregister the notifier */ |
| 2042 | netlink_unregister_notifier(&hwsim_netlink_notifier); |
| 2043 | /* unregister the family */ |
| 2044 | ret = genl_unregister_family(&hwsim_genl_family); |
| 2045 | if (ret) |
| 2046 | printk(KERN_DEBUG "mac80211_hwsim: " |
| 2047 | "unregister family %i\n", ret); |
| 2048 | } |
| 2049 | |
Johannes Berg | 1ae2fc2 | 2012-05-30 14:59:36 +0200 | [diff] [blame] | 2050 | static const struct ieee80211_iface_limit hwsim_if_limits[] = { |
| 2051 | { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) }, |
| 2052 | { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) | |
| 2053 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 2054 | #ifdef CONFIG_MAC80211_MESH |
| 2055 | BIT(NL80211_IFTYPE_MESH_POINT) | |
| 2056 | #endif |
| 2057 | BIT(NL80211_IFTYPE_AP) | |
| 2058 | BIT(NL80211_IFTYPE_P2P_GO) }, |
Johannes Berg | 8b3d1cc | 2012-06-19 17:29:29 +0200 | [diff] [blame] | 2059 | { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) }, |
Johannes Berg | 1ae2fc2 | 2012-05-30 14:59:36 +0200 | [diff] [blame] | 2060 | }; |
| 2061 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2062 | static struct ieee80211_iface_combination hwsim_if_comb = { |
Johannes Berg | 1ae2fc2 | 2012-05-30 14:59:36 +0200 | [diff] [blame] | 2063 | .limits = hwsim_if_limits, |
| 2064 | .n_limits = ARRAY_SIZE(hwsim_if_limits), |
| 2065 | .max_interfaces = 2048, |
| 2066 | .num_different_channels = 1, |
| 2067 | }; |
| 2068 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2069 | static int __init init_mac80211_hwsim(void) |
| 2070 | { |
| 2071 | int i, err = 0; |
| 2072 | u8 addr[ETH_ALEN]; |
| 2073 | struct mac80211_hwsim_data *data; |
| 2074 | struct ieee80211_hw *hw; |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2075 | enum ieee80211_band band; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2076 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2077 | if (radios < 1 || radios > 100) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2078 | return -EINVAL; |
| 2079 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2080 | if (channels < 1) |
| 2081 | return -EINVAL; |
| 2082 | |
| 2083 | if (channels > 1) { |
| 2084 | hwsim_if_comb.num_different_channels = channels; |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 2085 | mac80211_hwsim_ops.hw_scan = mac80211_hwsim_hw_scan; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2086 | mac80211_hwsim_ops.cancel_hw_scan = |
| 2087 | mac80211_hwsim_cancel_hw_scan; |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 2088 | mac80211_hwsim_ops.sw_scan_start = NULL; |
| 2089 | mac80211_hwsim_ops.sw_scan_complete = NULL; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2090 | mac80211_hwsim_ops.remain_on_channel = |
| 2091 | mac80211_hwsim_roc; |
| 2092 | mac80211_hwsim_ops.cancel_remain_on_channel = |
| 2093 | mac80211_hwsim_croc; |
| 2094 | mac80211_hwsim_ops.add_chanctx = |
| 2095 | mac80211_hwsim_add_chanctx; |
| 2096 | mac80211_hwsim_ops.remove_chanctx = |
| 2097 | mac80211_hwsim_remove_chanctx; |
| 2098 | mac80211_hwsim_ops.change_chanctx = |
| 2099 | mac80211_hwsim_change_chanctx; |
| 2100 | mac80211_hwsim_ops.assign_vif_chanctx = |
| 2101 | mac80211_hwsim_assign_vif_chanctx; |
| 2102 | mac80211_hwsim_ops.unassign_vif_chanctx = |
| 2103 | mac80211_hwsim_unassign_vif_chanctx; |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 2104 | } |
Johannes Berg | 6906803 | 2010-02-03 10:47:55 +0100 | [diff] [blame] | 2105 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2106 | spin_lock_init(&hwsim_radio_lock); |
| 2107 | INIT_LIST_HEAD(&hwsim_radios); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2108 | |
| 2109 | hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim"); |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2110 | if (IS_ERR(hwsim_class)) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2111 | return PTR_ERR(hwsim_class); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2112 | |
| 2113 | memset(addr, 0, ETH_ALEN); |
| 2114 | addr[0] = 0x02; |
| 2115 | |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2116 | for (i = 0; i < radios; i++) { |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2117 | printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n", |
| 2118 | i); |
| 2119 | hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops); |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2120 | if (!hw) { |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2121 | printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw " |
| 2122 | "failed\n"); |
| 2123 | err = -ENOMEM; |
| 2124 | goto failed; |
| 2125 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2126 | data = hw->priv; |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2127 | data->hw = hw; |
| 2128 | |
Greg Kroah-Hartman | 6e05d6c | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 2129 | data->dev = device_create(hwsim_class, NULL, 0, hw, |
| 2130 | "hwsim%d", i); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2131 | if (IS_ERR(data->dev)) { |
Stephen Rothwell | e800f17 | 2008-06-16 15:35:10 +1000 | [diff] [blame] | 2132 | printk(KERN_DEBUG |
Greg Kroah-Hartman | 6e05d6c | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 2133 | "mac80211_hwsim: device_create " |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2134 | "failed (%ld)\n", PTR_ERR(data->dev)); |
| 2135 | err = -ENOMEM; |
Ian Schram | 3a33cc1 | 2008-07-21 13:19:35 -0700 | [diff] [blame] | 2136 | goto failed_drvdata; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2137 | } |
| 2138 | data->dev->driver = &mac80211_hwsim_driver; |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2139 | skb_queue_head_init(&data->pending); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2140 | |
| 2141 | SET_IEEE80211_DEV(hw, data->dev); |
| 2142 | addr[3] = i >> 8; |
| 2143 | addr[4] = i; |
Johannes Berg | ef15aac | 2010-01-20 12:02:33 +0100 | [diff] [blame] | 2144 | memcpy(data->addresses[0].addr, addr, ETH_ALEN); |
| 2145 | memcpy(data->addresses[1].addr, addr, ETH_ALEN); |
| 2146 | data->addresses[1].addr[0] |= 0x40; |
| 2147 | hw->wiphy->n_addresses = 2; |
| 2148 | hw->wiphy->addresses = data->addresses; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2149 | |
Johannes Berg | 1ae2fc2 | 2012-05-30 14:59:36 +0200 | [diff] [blame] | 2150 | hw->wiphy->iface_combinations = &hwsim_if_comb; |
| 2151 | hw->wiphy->n_iface_combinations = 1; |
| 2152 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2153 | if (channels > 1) { |
Johannes Berg | 8223d2f | 2010-06-18 12:31:56 +0200 | [diff] [blame] | 2154 | hw->wiphy->max_scan_ssids = 255; |
| 2155 | hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2156 | hw->wiphy->max_remain_on_channel_duration = 1000; |
Johannes Berg | 8223d2f | 2010-06-18 12:31:56 +0200 | [diff] [blame] | 2157 | } |
| 2158 | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2159 | INIT_DELAYED_WORK(&data->roc_done, hw_roc_done); |
| 2160 | INIT_DELAYED_WORK(&data->hw_scan, hw_scan_work); |
| 2161 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2162 | hw->channel_change_time = 1; |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2163 | hw->queues = 5; |
| 2164 | hw->offchannel_tx_hw_queue = 4; |
Luis R. Rodriguez | f59ac04 | 2008-08-29 16:26:43 -0700 | [diff] [blame] | 2165 | hw->wiphy->interface_modes = |
| 2166 | BIT(NL80211_IFTYPE_STATION) | |
Andrey Yurovsky | 55b3961 | 2008-10-31 23:23:35 -0700 | [diff] [blame] | 2167 | BIT(NL80211_IFTYPE_AP) | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 2168 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 2169 | BIT(NL80211_IFTYPE_P2P_GO) | |
Johannes Berg | 2b2d779 | 2010-08-17 12:08:07 +0200 | [diff] [blame] | 2170 | BIT(NL80211_IFTYPE_ADHOC) | |
Johannes Berg | 8b3d1cc | 2012-06-19 17:29:29 +0200 | [diff] [blame] | 2171 | BIT(NL80211_IFTYPE_MESH_POINT) | |
| 2172 | BIT(NL80211_IFTYPE_P2P_DEVICE); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2173 | |
Johannes Berg | 4b14c96 | 2009-07-10 16:56:59 +0200 | [diff] [blame] | 2174 | hw->flags = IEEE80211_HW_MFP_CAPABLE | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2175 | IEEE80211_HW_SIGNAL_DBM | |
| 2176 | IEEE80211_HW_SUPPORTS_STATIC_SMPS | |
Johannes Berg | a75b436 | 2010-05-01 18:53:51 +0200 | [diff] [blame] | 2177 | IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 2178 | IEEE80211_HW_AMPDU_AGGREGATION | |
Johannes Berg | e826117 | 2012-07-27 19:48:26 +0200 | [diff] [blame] | 2179 | IEEE80211_HW_WANT_MONITOR_VIF | |
| 2180 | IEEE80211_HW_QUEUE_CONTROL; |
Jouni Malinen | fa77533 | 2009-01-08 13:32:14 +0200 | [diff] [blame] | 2181 | |
Johannes Berg | 81ddbb5 | 2012-03-26 18:47:18 +0200 | [diff] [blame] | 2182 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS | |
| 2183 | WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL; |
Jouni Malinen | 43bc3e8 | 2011-10-23 22:45:27 +0300 | [diff] [blame] | 2184 | |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 2185 | /* ask mac80211 to reserve space for magic */ |
| 2186 | hw->vif_data_size = sizeof(struct hwsim_vif_priv); |
Johannes Berg | 81c0652 | 2008-09-11 02:17:01 +0200 | [diff] [blame] | 2187 | hw->sta_data_size = sizeof(struct hwsim_sta_priv); |
Johannes Berg | 8aa21e6 | 2008-09-11 02:16:36 +0200 | [diff] [blame] | 2188 | |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2189 | memcpy(data->channels_2ghz, hwsim_channels_2ghz, |
| 2190 | sizeof(hwsim_channels_2ghz)); |
| 2191 | memcpy(data->channels_5ghz, hwsim_channels_5ghz, |
| 2192 | sizeof(hwsim_channels_5ghz)); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2193 | memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates)); |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2194 | |
| 2195 | for (band = IEEE80211_BAND_2GHZ; band < IEEE80211_NUM_BANDS; band++) { |
| 2196 | struct ieee80211_supported_band *sband = &data->bands[band]; |
| 2197 | switch (band) { |
| 2198 | case IEEE80211_BAND_2GHZ: |
| 2199 | sband->channels = data->channels_2ghz; |
| 2200 | sband->n_channels = |
| 2201 | ARRAY_SIZE(hwsim_channels_2ghz); |
Johannes Berg | d130eb4 | 2009-10-27 20:53:58 +0100 | [diff] [blame] | 2202 | sband->bitrates = data->rates; |
| 2203 | sband->n_bitrates = ARRAY_SIZE(hwsim_rates); |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2204 | break; |
| 2205 | case IEEE80211_BAND_5GHZ: |
| 2206 | sband->channels = data->channels_5ghz; |
| 2207 | sband->n_channels = |
| 2208 | ARRAY_SIZE(hwsim_channels_5ghz); |
Johannes Berg | d130eb4 | 2009-10-27 20:53:58 +0100 | [diff] [blame] | 2209 | sband->bitrates = data->rates + 4; |
| 2210 | sband->n_bitrates = ARRAY_SIZE(hwsim_rates) - 4; |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2211 | break; |
| 2212 | default: |
Johannes Berg | 1b083ea | 2012-07-03 13:14:49 +0200 | [diff] [blame] | 2213 | continue; |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2214 | } |
| 2215 | |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2216 | sband->ht_cap.ht_supported = true; |
| 2217 | sband->ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | |
| 2218 | IEEE80211_HT_CAP_GRN_FLD | |
| 2219 | IEEE80211_HT_CAP_SGI_40 | |
| 2220 | IEEE80211_HT_CAP_DSSSCCK40; |
| 2221 | sband->ht_cap.ampdu_factor = 0x3; |
| 2222 | sband->ht_cap.ampdu_density = 0x6; |
| 2223 | memset(&sband->ht_cap.mcs, 0, |
| 2224 | sizeof(sband->ht_cap.mcs)); |
| 2225 | sband->ht_cap.mcs.rx_mask[0] = 0xff; |
| 2226 | sband->ht_cap.mcs.rx_mask[1] = 0xff; |
| 2227 | sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; |
| 2228 | |
| 2229 | hw->wiphy->bands[band] = sband; |
Johannes Berg | b296005 | 2012-11-12 11:51:50 +0100 | [diff] [blame] | 2230 | |
| 2231 | if (channels == 1) |
| 2232 | continue; |
| 2233 | |
| 2234 | sband->vht_cap.vht_supported = true; |
| 2235 | sband->vht_cap.cap = |
| 2236 | IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 | |
| 2237 | IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ | |
| 2238 | IEEE80211_VHT_CAP_RXLDPC | |
| 2239 | IEEE80211_VHT_CAP_SHORT_GI_80 | |
| 2240 | IEEE80211_VHT_CAP_SHORT_GI_160 | |
| 2241 | IEEE80211_VHT_CAP_TXSTBC | |
| 2242 | IEEE80211_VHT_CAP_RXSTBC_1 | |
| 2243 | IEEE80211_VHT_CAP_RXSTBC_2 | |
| 2244 | IEEE80211_VHT_CAP_RXSTBC_3 | |
| 2245 | IEEE80211_VHT_CAP_RXSTBC_4 | |
Johannes Berg | 0133104 | 2012-12-05 16:45:31 +0100 | [diff] [blame] | 2246 | IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK; |
Johannes Berg | b296005 | 2012-11-12 11:51:50 +0100 | [diff] [blame] | 2247 | sband->vht_cap.vht_mcs.rx_mcs_map = |
| 2248 | cpu_to_le16(IEEE80211_VHT_MCS_SUPPORT_0_8 << 0 | |
| 2249 | IEEE80211_VHT_MCS_SUPPORT_0_8 << 2 | |
| 2250 | IEEE80211_VHT_MCS_SUPPORT_0_9 << 4 | |
| 2251 | IEEE80211_VHT_MCS_SUPPORT_0_8 << 6 | |
| 2252 | IEEE80211_VHT_MCS_SUPPORT_0_8 << 8 | |
| 2253 | IEEE80211_VHT_MCS_SUPPORT_0_9 << 10 | |
| 2254 | IEEE80211_VHT_MCS_SUPPORT_0_9 << 12 | |
| 2255 | IEEE80211_VHT_MCS_SUPPORT_0_8 << 14); |
| 2256 | sband->vht_cap.vht_mcs.tx_mcs_map = |
| 2257 | sband->vht_cap.vht_mcs.rx_mcs_map; |
Luis R. Rodriguez | 22cad73 | 2009-03-05 21:13:06 -0800 | [diff] [blame] | 2258 | } |
Daniel Wagner | 73606d0 | 2009-05-18 19:49:25 +0200 | [diff] [blame] | 2259 | /* By default all radios are belonging to the first group */ |
| 2260 | data->group = 1; |
Luis R. Rodriguez | f74cb0f | 2010-04-08 11:50:47 -0400 | [diff] [blame] | 2261 | mutex_init(&data->mutex); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2262 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2263 | /* Enable frame retransmissions for lossy channels */ |
| 2264 | hw->max_rates = 4; |
| 2265 | hw->max_rate_tries = 11; |
| 2266 | |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2267 | /* Work to be done prior to ieee80211_register_hw() */ |
| 2268 | switch (regtest) { |
| 2269 | case HWSIM_REGTEST_DISABLED: |
| 2270 | case HWSIM_REGTEST_DRIVER_REG_FOLLOW: |
| 2271 | case HWSIM_REGTEST_DRIVER_REG_ALL: |
| 2272 | case HWSIM_REGTEST_DIFF_COUNTRY: |
| 2273 | /* |
| 2274 | * Nothing to be done for driver regulatory domain |
| 2275 | * hints prior to ieee80211_register_hw() |
| 2276 | */ |
| 2277 | break; |
| 2278 | case HWSIM_REGTEST_WORLD_ROAM: |
| 2279 | if (i == 0) { |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2280 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2281 | wiphy_apply_custom_regulatory(hw->wiphy, |
| 2282 | &hwsim_world_regdom_custom_01); |
| 2283 | } |
| 2284 | break; |
| 2285 | case HWSIM_REGTEST_CUSTOM_WORLD: |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2286 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2287 | wiphy_apply_custom_regulatory(hw->wiphy, |
| 2288 | &hwsim_world_regdom_custom_01); |
| 2289 | break; |
| 2290 | case HWSIM_REGTEST_CUSTOM_WORLD_2: |
| 2291 | if (i == 0) { |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2292 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2293 | wiphy_apply_custom_regulatory(hw->wiphy, |
| 2294 | &hwsim_world_regdom_custom_01); |
| 2295 | } else if (i == 1) { |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2296 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2297 | wiphy_apply_custom_regulatory(hw->wiphy, |
| 2298 | &hwsim_world_regdom_custom_02); |
| 2299 | } |
| 2300 | break; |
| 2301 | case HWSIM_REGTEST_STRICT_ALL: |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2302 | hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2303 | break; |
| 2304 | case HWSIM_REGTEST_STRICT_FOLLOW: |
| 2305 | case HWSIM_REGTEST_STRICT_AND_DRIVER_REG: |
| 2306 | if (i == 0) |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2307 | hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2308 | break; |
| 2309 | case HWSIM_REGTEST_ALL: |
| 2310 | if (i == 0) { |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2311 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2312 | wiphy_apply_custom_regulatory(hw->wiphy, |
| 2313 | &hwsim_world_regdom_custom_01); |
| 2314 | } else if (i == 1) { |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2315 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2316 | wiphy_apply_custom_regulatory(hw->wiphy, |
| 2317 | &hwsim_world_regdom_custom_02); |
| 2318 | } else if (i == 4) |
Johannes Berg | 5be83de | 2009-11-19 00:56:28 +0100 | [diff] [blame] | 2319 | hw->wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY; |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2320 | break; |
| 2321 | default: |
| 2322 | break; |
| 2323 | } |
| 2324 | |
Luis R. Rodriguez | 98dfaa5 | 2009-03-20 23:46:11 -0400 | [diff] [blame] | 2325 | /* give the regulatory workqueue a chance to run */ |
| 2326 | if (regtest) |
| 2327 | schedule_timeout_interruptible(1); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2328 | err = ieee80211_register_hw(hw); |
| 2329 | if (err < 0) { |
| 2330 | printk(KERN_DEBUG "mac80211_hwsim: " |
| 2331 | "ieee80211_register_hw failed (%d)\n", err); |
Ian Schram | 3a33cc1 | 2008-07-21 13:19:35 -0700 | [diff] [blame] | 2332 | goto failed_hw; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2333 | } |
| 2334 | |
Luis R. Rodriguez | 4a5af9c | 2009-03-09 22:08:27 -0400 | [diff] [blame] | 2335 | /* Work to be done after to ieee80211_register_hw() */ |
| 2336 | switch (regtest) { |
| 2337 | case HWSIM_REGTEST_WORLD_ROAM: |
| 2338 | case HWSIM_REGTEST_DISABLED: |
| 2339 | break; |
| 2340 | case HWSIM_REGTEST_DRIVER_REG_FOLLOW: |
| 2341 | if (!i) |
| 2342 | regulatory_hint(hw->wiphy, hwsim_alpha2s[0]); |
| 2343 | break; |
| 2344 | case HWSIM_REGTEST_DRIVER_REG_ALL: |
| 2345 | case HWSIM_REGTEST_STRICT_ALL: |
| 2346 | regulatory_hint(hw->wiphy, hwsim_alpha2s[0]); |
| 2347 | break; |
| 2348 | case HWSIM_REGTEST_DIFF_COUNTRY: |
| 2349 | if (i < ARRAY_SIZE(hwsim_alpha2s)) |
| 2350 | regulatory_hint(hw->wiphy, hwsim_alpha2s[i]); |
| 2351 | break; |
| 2352 | case HWSIM_REGTEST_CUSTOM_WORLD: |
| 2353 | case HWSIM_REGTEST_CUSTOM_WORLD_2: |
| 2354 | /* |
| 2355 | * Nothing to be done for custom world regulatory |
| 2356 | * domains after to ieee80211_register_hw |
| 2357 | */ |
| 2358 | break; |
| 2359 | case HWSIM_REGTEST_STRICT_FOLLOW: |
| 2360 | if (i == 0) |
| 2361 | regulatory_hint(hw->wiphy, hwsim_alpha2s[0]); |
| 2362 | break; |
| 2363 | case HWSIM_REGTEST_STRICT_AND_DRIVER_REG: |
| 2364 | if (i == 0) |
| 2365 | regulatory_hint(hw->wiphy, hwsim_alpha2s[0]); |
| 2366 | else if (i == 1) |
| 2367 | regulatory_hint(hw->wiphy, hwsim_alpha2s[1]); |
| 2368 | break; |
| 2369 | case HWSIM_REGTEST_ALL: |
| 2370 | if (i == 2) |
| 2371 | regulatory_hint(hw->wiphy, hwsim_alpha2s[0]); |
| 2372 | else if (i == 3) |
| 2373 | regulatory_hint(hw->wiphy, hwsim_alpha2s[1]); |
| 2374 | else if (i == 4) |
| 2375 | regulatory_hint(hw->wiphy, hwsim_alpha2s[2]); |
| 2376 | break; |
| 2377 | default: |
| 2378 | break; |
| 2379 | } |
| 2380 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2381 | wiphy_debug(hw->wiphy, "hwaddr %pm registered\n", |
| 2382 | hw->wiphy->perm_addr); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2383 | |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 2384 | data->debugfs = debugfs_create_dir("hwsim", |
| 2385 | hw->wiphy->debugfsdir); |
| 2386 | data->debugfs_ps = debugfs_create_file("ps", 0666, |
| 2387 | data->debugfs, data, |
| 2388 | &hwsim_fops_ps); |
Daniel Wagner | 73606d0 | 2009-05-18 19:49:25 +0200 | [diff] [blame] | 2389 | data->debugfs_group = debugfs_create_file("group", 0666, |
| 2390 | data->debugfs, data, |
| 2391 | &hwsim_fops_group); |
Jouni Malinen | fc6971d | 2008-10-30 19:59:05 +0200 | [diff] [blame] | 2392 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2393 | setup_timer(&data->beacon_timer, mac80211_hwsim_beacon, |
| 2394 | (unsigned long) hw); |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2395 | |
| 2396 | list_add_tail(&data->list, &hwsim_radios); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2397 | } |
| 2398 | |
| 2399 | hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup); |
| 2400 | if (hwsim_mon == NULL) |
| 2401 | goto failed; |
| 2402 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2403 | rtnl_lock(); |
| 2404 | |
| 2405 | err = dev_alloc_name(hwsim_mon, hwsim_mon->name); |
Ian Schram | 3a33cc1 | 2008-07-21 13:19:35 -0700 | [diff] [blame] | 2406 | if (err < 0) |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2407 | goto failed_mon; |
Ian Schram | 3a33cc1 | 2008-07-21 13:19:35 -0700 | [diff] [blame] | 2408 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2409 | |
| 2410 | err = register_netdevice(hwsim_mon); |
| 2411 | if (err < 0) |
| 2412 | goto failed_mon; |
| 2413 | |
| 2414 | rtnl_unlock(); |
| 2415 | |
| 2416 | err = hwsim_init_netlink(); |
| 2417 | if (err < 0) |
| 2418 | goto failed_nl; |
| 2419 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2420 | return 0; |
| 2421 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2422 | failed_nl: |
| 2423 | printk(KERN_DEBUG "mac_80211_hwsim: failed initializing netlink\n"); |
| 2424 | return err; |
| 2425 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2426 | failed_mon: |
| 2427 | rtnl_unlock(); |
| 2428 | free_netdev(hwsim_mon); |
Ian Schram | 3a33cc1 | 2008-07-21 13:19:35 -0700 | [diff] [blame] | 2429 | mac80211_hwsim_free(); |
| 2430 | return err; |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2431 | |
Ian Schram | 3a33cc1 | 2008-07-21 13:19:35 -0700 | [diff] [blame] | 2432 | failed_hw: |
| 2433 | device_unregister(data->dev); |
| 2434 | failed_drvdata: |
| 2435 | ieee80211_free_hw(hw); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2436 | failed: |
| 2437 | mac80211_hwsim_free(); |
| 2438 | return err; |
| 2439 | } |
Johannes Berg | f8fffc7 | 2012-07-27 15:16:02 +0200 | [diff] [blame] | 2440 | module_init(init_mac80211_hwsim); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2441 | |
| 2442 | static void __exit exit_mac80211_hwsim(void) |
| 2443 | { |
Johannes Berg | 0e057d73 | 2008-09-12 00:39:22 +0200 | [diff] [blame] | 2444 | printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n"); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2445 | |
Javier Lopez | 7882513 | 2011-06-01 11:26:13 +0200 | [diff] [blame] | 2446 | hwsim_exit_netlink(); |
| 2447 | |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2448 | mac80211_hwsim_free(); |
Johannes Berg | 5d41635 | 2009-07-13 13:04:30 +0200 | [diff] [blame] | 2449 | unregister_netdev(hwsim_mon); |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2450 | } |
Jouni Malinen | acc1e7a | 2008-06-11 10:42:31 +0300 | [diff] [blame] | 2451 | module_exit(exit_mac80211_hwsim); |