1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * NXP Wireless LAN device driver: CFG80211
4  *
5  * Copyright 2011-2020 NXP
6  */
7 
8 #include "cfg80211.h"
9 #include "main.h"
10 #include "11n.h"
11 #include "wmm.h"
12 
13 static char *reg_alpha2;
14 module_param(reg_alpha2, charp, 0);
15 
16 static const struct ieee80211_iface_limit mwifiex_ap_sta_limits[] = {
17 	{
18 		.max = MWIFIEX_MAX_BSS_NUM,
19 		.types = BIT(NL80211_IFTYPE_STATION) |
20 				   BIT(NL80211_IFTYPE_P2P_GO) |
21 				   BIT(NL80211_IFTYPE_P2P_CLIENT) |
22 				   BIT(NL80211_IFTYPE_AP),
23 	},
24 };
25 
26 static const struct ieee80211_iface_combination
27 mwifiex_iface_comb_ap_sta = {
28 	.limits = mwifiex_ap_sta_limits,
29 	.num_different_channels = 1,
30 	.n_limits = ARRAY_SIZE(mwifiex_ap_sta_limits),
31 	.max_interfaces = MWIFIEX_MAX_BSS_NUM,
32 	.beacon_int_infra_match = true,
33 	.radar_detect_widths =	BIT(NL80211_CHAN_WIDTH_20_NOHT) |
34 				BIT(NL80211_CHAN_WIDTH_20) |
35 				BIT(NL80211_CHAN_WIDTH_40),
36 };
37 
38 static const struct ieee80211_iface_combination
39 mwifiex_iface_comb_ap_sta_vht = {
40 	.limits = mwifiex_ap_sta_limits,
41 	.num_different_channels = 1,
42 	.n_limits = ARRAY_SIZE(mwifiex_ap_sta_limits),
43 	.max_interfaces = MWIFIEX_MAX_BSS_NUM,
44 	.beacon_int_infra_match = true,
45 	.radar_detect_widths =	BIT(NL80211_CHAN_WIDTH_20_NOHT) |
46 				BIT(NL80211_CHAN_WIDTH_20) |
47 				BIT(NL80211_CHAN_WIDTH_40) |
48 				BIT(NL80211_CHAN_WIDTH_80),
49 };
50 
51 static const struct
52 ieee80211_iface_combination mwifiex_iface_comb_ap_sta_drcs = {
53 	.limits = mwifiex_ap_sta_limits,
54 	.num_different_channels = 2,
55 	.n_limits = ARRAY_SIZE(mwifiex_ap_sta_limits),
56 	.max_interfaces = MWIFIEX_MAX_BSS_NUM,
57 	.beacon_int_infra_match = true,
58 };
59 
60 /*
61  * This function maps the nl802.11 channel type into driver channel type.
62  *
63  * The mapping is as follows -
64  *      NL80211_CHAN_NO_HT     -> IEEE80211_HT_PARAM_CHA_SEC_NONE
65  *      NL80211_CHAN_HT20      -> IEEE80211_HT_PARAM_CHA_SEC_NONE
66  *      NL80211_CHAN_HT40PLUS  -> IEEE80211_HT_PARAM_CHA_SEC_ABOVE
67  *      NL80211_CHAN_HT40MINUS -> IEEE80211_HT_PARAM_CHA_SEC_BELOW
68  *      Others                 -> IEEE80211_HT_PARAM_CHA_SEC_NONE
69  */
mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type)70 u8 mwifiex_chan_type_to_sec_chan_offset(enum nl80211_channel_type chan_type)
71 {
72 	switch (chan_type) {
73 	case NL80211_CHAN_NO_HT:
74 	case NL80211_CHAN_HT20:
75 		return IEEE80211_HT_PARAM_CHA_SEC_NONE;
76 	case NL80211_CHAN_HT40PLUS:
77 		return IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
78 	case NL80211_CHAN_HT40MINUS:
79 		return IEEE80211_HT_PARAM_CHA_SEC_BELOW;
80 	default:
81 		return IEEE80211_HT_PARAM_CHA_SEC_NONE;
82 	}
83 }
84 
85 /* This function maps IEEE HT secondary channel type to NL80211 channel type
86  */
mwifiex_get_chan_type(struct mwifiex_private * priv)87 u8 mwifiex_get_chan_type(struct mwifiex_private *priv)
88 {
89 	struct mwifiex_channel_band channel_band;
90 	int ret;
91 
92 	ret = mwifiex_get_chan_info(priv, &channel_band);
93 
94 	if (!ret) {
95 		switch (channel_band.band_config.chan_width) {
96 		case CHAN_BW_20MHZ:
97 			if (IS_11N_ENABLED(priv))
98 				return NL80211_CHAN_HT20;
99 			else
100 				return NL80211_CHAN_NO_HT;
101 		case CHAN_BW_40MHZ:
102 			if (channel_band.band_config.chan2_offset ==
103 			    SEC_CHAN_ABOVE)
104 				return NL80211_CHAN_HT40PLUS;
105 			else
106 				return NL80211_CHAN_HT40MINUS;
107 		default:
108 			return NL80211_CHAN_HT20;
109 		}
110 	}
111 
112 	return NL80211_CHAN_HT20;
113 }
114 
115 /*
116  * This function checks whether WEP is set.
117  */
118 static int
mwifiex_is_alg_wep(u32 cipher)119 mwifiex_is_alg_wep(u32 cipher)
120 {
121 	switch (cipher) {
122 	case WLAN_CIPHER_SUITE_WEP40:
123 	case WLAN_CIPHER_SUITE_WEP104:
124 		return 1;
125 	default:
126 		break;
127 	}
128 
129 	return 0;
130 }
131 
132 /*
133  * This function retrieves the private structure from kernel wiphy structure.
134  */
mwifiex_cfg80211_get_adapter(struct wiphy * wiphy)135 static void *mwifiex_cfg80211_get_adapter(struct wiphy *wiphy)
136 {
137 	return (void *) (*(unsigned long *) wiphy_priv(wiphy));
138 }
139 
140 /*
141  * CFG802.11 operation handler to delete a network key.
142  */
143 static int
mwifiex_cfg80211_del_key(struct wiphy * wiphy,struct net_device * netdev,int link_id,u8 key_index,bool pairwise,const u8 * mac_addr)144 mwifiex_cfg80211_del_key(struct wiphy *wiphy, struct net_device *netdev,
145 			 int link_id, u8 key_index, bool pairwise,
146 			 const u8 *mac_addr)
147 {
148 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
149 	static const u8 bc_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
150 	const u8 *peer_mac = pairwise ? mac_addr : bc_mac;
151 
152 	if (mwifiex_set_encode(priv, NULL, NULL, 0, key_index, peer_mac, 1)) {
153 		mwifiex_dbg(priv->adapter, ERROR, "deleting the crypto keys\n");
154 		return -EFAULT;
155 	}
156 
157 	mwifiex_dbg(priv->adapter, INFO, "info: crypto keys deleted\n");
158 	return 0;
159 }
160 
161 /*
162  * This function forms an skb for management frame.
163  */
164 static int
mwifiex_form_mgmt_frame(struct sk_buff * skb,const u8 * buf,size_t len)165 mwifiex_form_mgmt_frame(struct sk_buff *skb, const u8 *buf, size_t len)
166 {
167 	u8 addr[ETH_ALEN] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
168 	u16 pkt_len;
169 	u32 tx_control = 0, pkt_type = PKT_TYPE_MGMT;
170 
171 	pkt_len = len + ETH_ALEN;
172 
173 	skb_reserve(skb, MWIFIEX_MIN_DATA_HEADER_LEN +
174 		    MWIFIEX_MGMT_FRAME_HEADER_SIZE + sizeof(pkt_len));
175 	memcpy(skb_push(skb, sizeof(pkt_len)), &pkt_len, sizeof(pkt_len));
176 
177 	memcpy(skb_push(skb, sizeof(tx_control)),
178 	       &tx_control, sizeof(tx_control));
179 
180 	memcpy(skb_push(skb, sizeof(pkt_type)), &pkt_type, sizeof(pkt_type));
181 
182 	/* Add packet data and address4 */
183 	skb_put_data(skb, buf, sizeof(struct ieee80211_hdr_3addr));
184 	skb_put_data(skb, addr, ETH_ALEN);
185 	skb_put_data(skb, buf + sizeof(struct ieee80211_hdr_3addr),
186 		     len - sizeof(struct ieee80211_hdr_3addr));
187 
188 	skb->priority = LOW_PRIO_TID;
189 	__net_timestamp(skb);
190 
191 	return 0;
192 }
193 
194 /*
195  * CFG802.11 operation handler to transmit a management frame.
196  */
197 static int
mwifiex_cfg80211_mgmt_tx(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_mgmt_tx_params * params,u64 * cookie)198 mwifiex_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
199 			 struct cfg80211_mgmt_tx_params *params, u64 *cookie)
200 {
201 	const u8 *buf = params->buf;
202 	size_t len = params->len;
203 	struct sk_buff *skb;
204 	u16 pkt_len;
205 	const struct ieee80211_mgmt *mgmt;
206 	struct mwifiex_txinfo *tx_info;
207 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
208 
209 	if (!buf || !len) {
210 		mwifiex_dbg(priv->adapter, ERROR, "invalid buffer and length\n");
211 		return -EFAULT;
212 	}
213 
214 	mgmt = (const struct ieee80211_mgmt *)buf;
215 	if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_STA &&
216 	    ieee80211_is_probe_resp(mgmt->frame_control)) {
217 		/* Since we support offload probe resp, we need to skip probe
218 		 * resp in AP or GO mode */
219 		mwifiex_dbg(priv->adapter, INFO,
220 			    "info: skip to send probe resp in AP or GO mode\n");
221 		return 0;
222 	}
223 
224 	pkt_len = len + ETH_ALEN;
225 	skb = dev_alloc_skb(MWIFIEX_MIN_DATA_HEADER_LEN +
226 			    MWIFIEX_MGMT_FRAME_HEADER_SIZE +
227 			    pkt_len + sizeof(pkt_len));
228 
229 	if (!skb) {
230 		mwifiex_dbg(priv->adapter, ERROR,
231 			    "allocate skb failed for management frame\n");
232 		return -ENOMEM;
233 	}
234 
235 	tx_info = MWIFIEX_SKB_TXCB(skb);
236 	memset(tx_info, 0, sizeof(*tx_info));
237 	tx_info->bss_num = priv->bss_num;
238 	tx_info->bss_type = priv->bss_type;
239 	tx_info->pkt_len = pkt_len;
240 
241 	mwifiex_form_mgmt_frame(skb, buf, len);
242 	*cookie = get_random_u32() | 1;
243 
244 	if (ieee80211_is_action(mgmt->frame_control))
245 		skb = mwifiex_clone_skb_for_tx_status(priv,
246 						      skb,
247 				MWIFIEX_BUF_FLAG_ACTION_TX_STATUS, cookie);
248 	else
249 		cfg80211_mgmt_tx_status(wdev, *cookie, buf, len, true,
250 					GFP_ATOMIC);
251 
252 	mwifiex_queue_tx_pkt(priv, skb);
253 
254 	mwifiex_dbg(priv->adapter, INFO, "info: management frame transmitted\n");
255 	return 0;
256 }
257 
258 /*
259  * CFG802.11 operation handler to register a mgmt frame.
260  */
261 static void
mwifiex_cfg80211_update_mgmt_frame_registrations(struct wiphy * wiphy,struct wireless_dev * wdev,struct mgmt_frame_regs * upd)262 mwifiex_cfg80211_update_mgmt_frame_registrations(struct wiphy *wiphy,
263 						 struct wireless_dev *wdev,
264 						 struct mgmt_frame_regs *upd)
265 {
266 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
267 	u32 mask = upd->interface_stypes;
268 
269 	if (mask != priv->mgmt_frame_mask) {
270 		priv->mgmt_frame_mask = mask;
271 		mwifiex_send_cmd(priv, HostCmd_CMD_MGMT_FRAME_REG,
272 				 HostCmd_ACT_GEN_SET, 0,
273 				 &priv->mgmt_frame_mask, false);
274 		mwifiex_dbg(priv->adapter, INFO, "info: mgmt frame registered\n");
275 	}
276 }
277 
278 /*
279  * CFG802.11 operation handler to remain on channel.
280  */
281 static int
mwifiex_cfg80211_remain_on_channel(struct wiphy * wiphy,struct wireless_dev * wdev,struct ieee80211_channel * chan,unsigned int duration,u64 * cookie)282 mwifiex_cfg80211_remain_on_channel(struct wiphy *wiphy,
283 				   struct wireless_dev *wdev,
284 				   struct ieee80211_channel *chan,
285 				   unsigned int duration, u64 *cookie)
286 {
287 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
288 	int ret;
289 
290 	if (!chan || !cookie) {
291 		mwifiex_dbg(priv->adapter, ERROR, "Invalid parameter for ROC\n");
292 		return -EINVAL;
293 	}
294 
295 	if (priv->roc_cfg.cookie) {
296 		mwifiex_dbg(priv->adapter, INFO,
297 			    "info: ongoing ROC, cookie = 0x%llx\n",
298 			    priv->roc_cfg.cookie);
299 		return -EBUSY;
300 	}
301 
302 	ret = mwifiex_remain_on_chan_cfg(priv, HostCmd_ACT_GEN_SET, chan,
303 					 duration);
304 
305 	if (!ret) {
306 		*cookie = get_random_u32() | 1;
307 		priv->roc_cfg.cookie = *cookie;
308 		priv->roc_cfg.chan = *chan;
309 
310 		cfg80211_ready_on_channel(wdev, *cookie, chan,
311 					  duration, GFP_ATOMIC);
312 
313 		mwifiex_dbg(priv->adapter, INFO,
314 			    "info: ROC, cookie = 0x%llx\n", *cookie);
315 	}
316 
317 	return ret;
318 }
319 
320 /*
321  * CFG802.11 operation handler to cancel remain on channel.
322  */
323 static int
mwifiex_cfg80211_cancel_remain_on_channel(struct wiphy * wiphy,struct wireless_dev * wdev,u64 cookie)324 mwifiex_cfg80211_cancel_remain_on_channel(struct wiphy *wiphy,
325 					  struct wireless_dev *wdev, u64 cookie)
326 {
327 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
328 	int ret;
329 
330 	if (cookie != priv->roc_cfg.cookie)
331 		return -ENOENT;
332 
333 	ret = mwifiex_remain_on_chan_cfg(priv, HostCmd_ACT_GEN_REMOVE,
334 					 &priv->roc_cfg.chan, 0);
335 
336 	if (!ret) {
337 		cfg80211_remain_on_channel_expired(wdev, cookie,
338 						   &priv->roc_cfg.chan,
339 						   GFP_ATOMIC);
340 
341 		memset(&priv->roc_cfg, 0, sizeof(struct mwifiex_roc_cfg));
342 
343 		mwifiex_dbg(priv->adapter, INFO,
344 			    "info: cancel ROC, cookie = 0x%llx\n", cookie);
345 	}
346 
347 	return ret;
348 }
349 
350 /*
351  * CFG802.11 operation handler to set Tx power.
352  */
353 static int
mwifiex_cfg80211_set_tx_power(struct wiphy * wiphy,struct wireless_dev * wdev,enum nl80211_tx_power_setting type,int mbm)354 mwifiex_cfg80211_set_tx_power(struct wiphy *wiphy,
355 			      struct wireless_dev *wdev,
356 			      enum nl80211_tx_power_setting type,
357 			      int mbm)
358 {
359 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
360 	struct mwifiex_private *priv;
361 	struct mwifiex_power_cfg power_cfg;
362 	int dbm = MBM_TO_DBM(mbm);
363 
364 	switch (type) {
365 	case NL80211_TX_POWER_FIXED:
366 		power_cfg.is_power_auto = 0;
367 		power_cfg.is_power_fixed = 1;
368 		power_cfg.power_level = dbm;
369 		break;
370 	case NL80211_TX_POWER_LIMITED:
371 		power_cfg.is_power_auto = 0;
372 		power_cfg.is_power_fixed = 0;
373 		power_cfg.power_level = dbm;
374 		break;
375 	case NL80211_TX_POWER_AUTOMATIC:
376 		power_cfg.is_power_auto = 1;
377 		break;
378 	}
379 
380 	priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
381 
382 	return mwifiex_set_tx_power(priv, &power_cfg);
383 }
384 
385 /*
386  * CFG802.11 operation handler to get Tx power.
387  */
388 static int
mwifiex_cfg80211_get_tx_power(struct wiphy * wiphy,struct wireless_dev * wdev,int * dbm)389 mwifiex_cfg80211_get_tx_power(struct wiphy *wiphy,
390 			      struct wireless_dev *wdev,
391 			      int *dbm)
392 {
393 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
394 	struct mwifiex_private *priv = mwifiex_get_priv(adapter,
395 							MWIFIEX_BSS_ROLE_ANY);
396 	int ret = mwifiex_send_cmd(priv, HostCmd_CMD_RF_TX_PWR,
397 				   HostCmd_ACT_GEN_GET, 0, NULL, true);
398 
399 	if (ret < 0)
400 		return ret;
401 
402 	/* tx_power_level is set in HostCmd_CMD_RF_TX_PWR command handler */
403 	*dbm = priv->tx_power_level;
404 
405 	return 0;
406 }
407 
408 /*
409  * CFG802.11 operation handler to set Power Save option.
410  *
411  * The timeout value, if provided, is currently ignored.
412  */
413 static int
mwifiex_cfg80211_set_power_mgmt(struct wiphy * wiphy,struct net_device * dev,bool enabled,int timeout)414 mwifiex_cfg80211_set_power_mgmt(struct wiphy *wiphy,
415 				struct net_device *dev,
416 				bool enabled, int timeout)
417 {
418 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
419 	u32 ps_mode;
420 
421 	if (timeout)
422 		mwifiex_dbg(priv->adapter, INFO,
423 			    "info: ignore timeout value for IEEE Power Save\n");
424 
425 	ps_mode = enabled;
426 
427 	return mwifiex_drv_set_power(priv, &ps_mode);
428 }
429 
430 /*
431  * CFG802.11 operation handler to set the default network key.
432  */
433 static int
mwifiex_cfg80211_set_default_key(struct wiphy * wiphy,struct net_device * netdev,int link_id,u8 key_index,bool unicast,bool multicast)434 mwifiex_cfg80211_set_default_key(struct wiphy *wiphy, struct net_device *netdev,
435 				 int link_id, u8 key_index, bool unicast,
436 				 bool multicast)
437 {
438 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
439 
440 	/* Return if WEP key not configured */
441 	if (!priv->sec_info.wep_enabled)
442 		return 0;
443 
444 	if (priv->bss_type == MWIFIEX_BSS_TYPE_UAP) {
445 		priv->wep_key_curr_index = key_index;
446 	} else if (mwifiex_set_encode(priv, NULL, NULL, 0, key_index,
447 				      NULL, 0)) {
448 		mwifiex_dbg(priv->adapter, ERROR, "set default Tx key index\n");
449 		return -EFAULT;
450 	}
451 
452 	return 0;
453 }
454 
455 /*
456  * CFG802.11 operation handler to add a network key.
457  */
458 static int
mwifiex_cfg80211_add_key(struct wiphy * wiphy,struct net_device * netdev,int link_id,u8 key_index,bool pairwise,const u8 * mac_addr,struct key_params * params)459 mwifiex_cfg80211_add_key(struct wiphy *wiphy, struct net_device *netdev,
460 			 int link_id, u8 key_index, bool pairwise,
461 			 const u8 *mac_addr, struct key_params *params)
462 {
463 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
464 	struct mwifiex_wep_key *wep_key;
465 	static const u8 bc_mac[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
466 	const u8 *peer_mac = pairwise ? mac_addr : bc_mac;
467 
468 	if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP &&
469 	    (params->cipher == WLAN_CIPHER_SUITE_WEP40 ||
470 	     params->cipher == WLAN_CIPHER_SUITE_WEP104)) {
471 		if (params->key && params->key_len) {
472 			wep_key = &priv->wep_key[key_index];
473 			memset(wep_key, 0, sizeof(struct mwifiex_wep_key));
474 			memcpy(wep_key->key_material, params->key,
475 			       params->key_len);
476 			wep_key->key_index = key_index;
477 			wep_key->key_length = params->key_len;
478 			priv->sec_info.wep_enabled = 1;
479 		}
480 		return 0;
481 	}
482 
483 	if (mwifiex_set_encode(priv, params, params->key, params->key_len,
484 			       key_index, peer_mac, 0)) {
485 		mwifiex_dbg(priv->adapter, ERROR, "crypto keys added\n");
486 		return -EFAULT;
487 	}
488 
489 	return 0;
490 }
491 
492 /*
493  * CFG802.11 operation handler to set default mgmt key.
494  */
495 static int
mwifiex_cfg80211_set_default_mgmt_key(struct wiphy * wiphy,struct net_device * netdev,int link_id,u8 key_index)496 mwifiex_cfg80211_set_default_mgmt_key(struct wiphy *wiphy,
497 				      struct net_device *netdev,
498 				      int link_id,
499 				      u8 key_index)
500 {
501 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(netdev);
502 	struct mwifiex_ds_encrypt_key encrypt_key;
503 
504 	wiphy_dbg(wiphy, "set default mgmt key, key index=%d\n", key_index);
505 
506 	memset(&encrypt_key, 0, sizeof(struct mwifiex_ds_encrypt_key));
507 	encrypt_key.key_len = WLAN_KEY_LEN_CCMP;
508 	encrypt_key.key_index = key_index;
509 	encrypt_key.is_igtk_def_key = true;
510 	eth_broadcast_addr(encrypt_key.mac_addr);
511 
512 	if (mwifiex_send_cmd(priv, HostCmd_CMD_802_11_KEY_MATERIAL,
513 			     HostCmd_ACT_GEN_SET, true, &encrypt_key, true)) {
514 		mwifiex_dbg(priv->adapter, ERROR,
515 			    "Sending KEY_MATERIAL command failed\n");
516 		return -1;
517 	}
518 
519 	return 0;
520 }
521 
522 /*
523  * This function sends domain information to the firmware.
524  *
525  * The following information are passed to the firmware -
526  *      - Country codes
527  *      - Sub bands (first channel, number of channels, maximum Tx power)
528  */
mwifiex_send_domain_info_cmd_fw(struct wiphy * wiphy)529 int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy)
530 {
531 	u8 no_of_triplet = 0;
532 	struct ieee80211_country_ie_triplet *t;
533 	u8 no_of_parsed_chan = 0;
534 	u8 first_chan = 0, next_chan = 0, max_pwr = 0;
535 	u8 i, flag = 0;
536 	enum nl80211_band band;
537 	struct ieee80211_supported_band *sband;
538 	struct ieee80211_channel *ch;
539 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
540 	struct mwifiex_private *priv;
541 	struct mwifiex_802_11d_domain_reg *domain_info = &adapter->domain_reg;
542 
543 	/* Set country code */
544 	domain_info->country_code[0] = adapter->country_code[0];
545 	domain_info->country_code[1] = adapter->country_code[1];
546 	domain_info->country_code[2] = ' ';
547 
548 	band = mwifiex_band_to_radio_type(adapter->config_bands);
549 	if (!wiphy->bands[band]) {
550 		mwifiex_dbg(adapter, ERROR,
551 			    "11D: setting domain info in FW\n");
552 		return -1;
553 	}
554 
555 	sband = wiphy->bands[band];
556 
557 	for (i = 0; i < sband->n_channels ; i++) {
558 		ch = &sband->channels[i];
559 		if (ch->flags & IEEE80211_CHAN_DISABLED)
560 			continue;
561 
562 		if (!flag) {
563 			flag = 1;
564 			first_chan = (u32) ch->hw_value;
565 			next_chan = first_chan;
566 			max_pwr = ch->max_power;
567 			no_of_parsed_chan = 1;
568 			continue;
569 		}
570 
571 		if (ch->hw_value == next_chan + 1 &&
572 		    ch->max_power == max_pwr) {
573 			next_chan++;
574 			no_of_parsed_chan++;
575 		} else {
576 			t = &domain_info->triplet[no_of_triplet];
577 			t->chans.first_channel = first_chan;
578 			t->chans.num_channels = no_of_parsed_chan;
579 			t->chans.max_power = max_pwr;
580 			no_of_triplet++;
581 			first_chan = (u32) ch->hw_value;
582 			next_chan = first_chan;
583 			max_pwr = ch->max_power;
584 			no_of_parsed_chan = 1;
585 		}
586 	}
587 
588 	if (flag) {
589 		t = &domain_info->triplet[no_of_triplet];
590 		t->chans.first_channel = first_chan;
591 		t->chans.num_channels = no_of_parsed_chan;
592 		t->chans.max_power = max_pwr;
593 		no_of_triplet++;
594 	}
595 
596 	domain_info->no_of_triplet = no_of_triplet;
597 
598 	priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
599 
600 	if (mwifiex_send_cmd(priv, HostCmd_CMD_802_11D_DOMAIN_INFO,
601 			     HostCmd_ACT_GEN_SET, 0, NULL, false)) {
602 		mwifiex_dbg(adapter, INFO,
603 			    "11D: setting domain info in FW\n");
604 		return -1;
605 	}
606 
607 	return 0;
608 }
609 
mwifiex_reg_apply_radar_flags(struct wiphy * wiphy)610 static void mwifiex_reg_apply_radar_flags(struct wiphy *wiphy)
611 {
612 	struct ieee80211_supported_band *sband;
613 	struct ieee80211_channel *chan;
614 	unsigned int i;
615 
616 	if (!wiphy->bands[NL80211_BAND_5GHZ])
617 		return;
618 	sband = wiphy->bands[NL80211_BAND_5GHZ];
619 
620 	for (i = 0; i < sband->n_channels; i++) {
621 		chan = &sband->channels[i];
622 		if ((!(chan->flags & IEEE80211_CHAN_DISABLED)) &&
623 		    (chan->flags & IEEE80211_CHAN_RADAR))
624 			chan->flags |= IEEE80211_CHAN_NO_IR;
625 	}
626 }
627 
628 /*
629  * CFG802.11 regulatory domain callback function.
630  *
631  * This function is called when the regulatory domain is changed due to the
632  * following reasons -
633  *      - Set by driver
634  *      - Set by system core
635  *      - Set by user
636  *      - Set bt Country IE
637  */
mwifiex_reg_notifier(struct wiphy * wiphy,struct regulatory_request * request)638 static void mwifiex_reg_notifier(struct wiphy *wiphy,
639 				 struct regulatory_request *request)
640 {
641 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
642 	struct mwifiex_private *priv = mwifiex_get_priv(adapter,
643 							MWIFIEX_BSS_ROLE_ANY);
644 	mwifiex_dbg(adapter, INFO,
645 		    "info: cfg80211 regulatory domain callback for %c%c\n",
646 		    request->alpha2[0], request->alpha2[1]);
647 	mwifiex_reg_apply_radar_flags(wiphy);
648 
649 	switch (request->initiator) {
650 	case NL80211_REGDOM_SET_BY_DRIVER:
651 	case NL80211_REGDOM_SET_BY_CORE:
652 	case NL80211_REGDOM_SET_BY_USER:
653 	case NL80211_REGDOM_SET_BY_COUNTRY_IE:
654 		break;
655 	default:
656 		mwifiex_dbg(adapter, ERROR,
657 			    "unknown regdom initiator: %d\n",
658 			    request->initiator);
659 		return;
660 	}
661 
662 	/* Don't send world or same regdom info to firmware */
663 	if (strncmp(request->alpha2, "00", 2) &&
664 	    strncmp(request->alpha2, adapter->country_code,
665 		    sizeof(request->alpha2))) {
666 		memcpy(adapter->country_code, request->alpha2,
667 		       sizeof(request->alpha2));
668 		mwifiex_send_domain_info_cmd_fw(wiphy);
669 		mwifiex_dnld_txpwr_table(priv);
670 	}
671 }
672 
673 /*
674  * This function sets the fragmentation threshold.
675  *
676  * The fragmentation threshold value must lie between MWIFIEX_FRAG_MIN_VALUE
677  * and MWIFIEX_FRAG_MAX_VALUE.
678  */
679 static int
mwifiex_set_frag(struct mwifiex_private * priv,u32 frag_thr)680 mwifiex_set_frag(struct mwifiex_private *priv, u32 frag_thr)
681 {
682 	if (frag_thr < MWIFIEX_FRAG_MIN_VALUE ||
683 	    frag_thr > MWIFIEX_FRAG_MAX_VALUE)
684 		frag_thr = MWIFIEX_FRAG_MAX_VALUE;
685 
686 	return mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
687 				HostCmd_ACT_GEN_SET, FRAG_THRESH_I,
688 				&frag_thr, true);
689 }
690 
691 /*
692  * This function sets the RTS threshold.
693 
694  * The rts value must lie between MWIFIEX_RTS_MIN_VALUE
695  * and MWIFIEX_RTS_MAX_VALUE.
696  */
697 static int
mwifiex_set_rts(struct mwifiex_private * priv,u32 rts_thr)698 mwifiex_set_rts(struct mwifiex_private *priv, u32 rts_thr)
699 {
700 	if (rts_thr < MWIFIEX_RTS_MIN_VALUE || rts_thr > MWIFIEX_RTS_MAX_VALUE)
701 		rts_thr = MWIFIEX_RTS_MAX_VALUE;
702 
703 	return mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
704 				HostCmd_ACT_GEN_SET, RTS_THRESH_I,
705 				&rts_thr, true);
706 }
707 
708 /*
709  * CFG802.11 operation handler to set wiphy parameters.
710  *
711  * This function can be used to set the RTS threshold and the
712  * Fragmentation threshold of the driver.
713  */
714 static int
mwifiex_cfg80211_set_wiphy_params(struct wiphy * wiphy,u32 changed)715 mwifiex_cfg80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
716 {
717 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
718 	struct mwifiex_private *priv;
719 	struct mwifiex_uap_bss_param *bss_cfg;
720 	int ret;
721 
722 	priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
723 
724 	switch (priv->bss_role) {
725 	case MWIFIEX_BSS_ROLE_UAP:
726 		if (priv->bss_started) {
727 			mwifiex_dbg(adapter, ERROR,
728 				    "cannot change wiphy params when bss started");
729 			return -EINVAL;
730 		}
731 
732 		bss_cfg = kzalloc(sizeof(*bss_cfg), GFP_KERNEL);
733 		if (!bss_cfg)
734 			return -ENOMEM;
735 
736 		mwifiex_set_sys_config_invalid_data(bss_cfg);
737 
738 		if (changed & WIPHY_PARAM_RTS_THRESHOLD)
739 			bss_cfg->rts_threshold = wiphy->rts_threshold;
740 		if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
741 			bss_cfg->frag_threshold = wiphy->frag_threshold;
742 		if (changed & WIPHY_PARAM_RETRY_LONG)
743 			bss_cfg->retry_limit = wiphy->retry_long;
744 
745 		ret = mwifiex_send_cmd(priv, HostCmd_CMD_UAP_SYS_CONFIG,
746 				       HostCmd_ACT_GEN_SET,
747 				       UAP_BSS_PARAMS_I, bss_cfg,
748 				       false);
749 
750 		kfree(bss_cfg);
751 		if (ret) {
752 			mwifiex_dbg(adapter, ERROR,
753 				    "Failed to set wiphy phy params\n");
754 			return ret;
755 		}
756 		break;
757 
758 	case MWIFIEX_BSS_ROLE_STA:
759 		if (priv->media_connected) {
760 			mwifiex_dbg(adapter, ERROR,
761 				    "cannot change wiphy params when connected");
762 			return -EINVAL;
763 		}
764 		if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
765 			ret = mwifiex_set_rts(priv,
766 					      wiphy->rts_threshold);
767 			if (ret)
768 				return ret;
769 		}
770 		if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
771 			ret = mwifiex_set_frag(priv,
772 					       wiphy->frag_threshold);
773 			if (ret)
774 				return ret;
775 		}
776 		break;
777 	}
778 
779 	return 0;
780 }
781 
782 static int
mwifiex_cfg80211_deinit_p2p(struct mwifiex_private * priv)783 mwifiex_cfg80211_deinit_p2p(struct mwifiex_private *priv)
784 {
785 	u16 mode = P2P_MODE_DISABLE;
786 
787 	if (mwifiex_send_cmd(priv, HostCmd_CMD_P2P_MODE_CFG,
788 			     HostCmd_ACT_GEN_SET, 0, &mode, true))
789 		return -1;
790 
791 	return 0;
792 }
793 
794 /*
795  * This function initializes the functionalities for P2P client.
796  * The P2P client initialization sequence is:
797  * disable -> device -> client
798  */
799 static int
mwifiex_cfg80211_init_p2p_client(struct mwifiex_private * priv)800 mwifiex_cfg80211_init_p2p_client(struct mwifiex_private *priv)
801 {
802 	u16 mode;
803 
804 	if (mwifiex_cfg80211_deinit_p2p(priv))
805 		return -1;
806 
807 	mode = P2P_MODE_DEVICE;
808 	if (mwifiex_send_cmd(priv, HostCmd_CMD_P2P_MODE_CFG,
809 			     HostCmd_ACT_GEN_SET, 0, &mode, true))
810 		return -1;
811 
812 	mode = P2P_MODE_CLIENT;
813 	if (mwifiex_send_cmd(priv, HostCmd_CMD_P2P_MODE_CFG,
814 			     HostCmd_ACT_GEN_SET, 0, &mode, true))
815 		return -1;
816 
817 	return 0;
818 }
819 
820 /*
821  * This function initializes the functionalities for P2P GO.
822  * The P2P GO initialization sequence is:
823  * disable -> device -> GO
824  */
825 static int
mwifiex_cfg80211_init_p2p_go(struct mwifiex_private * priv)826 mwifiex_cfg80211_init_p2p_go(struct mwifiex_private *priv)
827 {
828 	u16 mode;
829 
830 	if (mwifiex_cfg80211_deinit_p2p(priv))
831 		return -1;
832 
833 	mode = P2P_MODE_DEVICE;
834 	if (mwifiex_send_cmd(priv, HostCmd_CMD_P2P_MODE_CFG,
835 			     HostCmd_ACT_GEN_SET, 0, &mode, true))
836 		return -1;
837 
838 	mode = P2P_MODE_GO;
839 	if (mwifiex_send_cmd(priv, HostCmd_CMD_P2P_MODE_CFG,
840 			     HostCmd_ACT_GEN_SET, 0, &mode, true))
841 		return -1;
842 
843 	return 0;
844 }
845 
mwifiex_deinit_priv_params(struct mwifiex_private * priv)846 static int mwifiex_deinit_priv_params(struct mwifiex_private *priv)
847 {
848 	struct mwifiex_adapter *adapter = priv->adapter;
849 	unsigned long flags;
850 
851 	priv->mgmt_frame_mask = 0;
852 	if (mwifiex_send_cmd(priv, HostCmd_CMD_MGMT_FRAME_REG,
853 			     HostCmd_ACT_GEN_SET, 0,
854 			     &priv->mgmt_frame_mask, false)) {
855 		mwifiex_dbg(adapter, ERROR,
856 			    "could not unregister mgmt frame rx\n");
857 		return -1;
858 	}
859 
860 	mwifiex_deauthenticate(priv, NULL);
861 
862 	spin_lock_irqsave(&adapter->main_proc_lock, flags);
863 	adapter->main_locked = true;
864 	if (adapter->mwifiex_processing) {
865 		spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
866 		flush_workqueue(adapter->workqueue);
867 	} else {
868 		spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
869 	}
870 
871 	spin_lock_bh(&adapter->rx_proc_lock);
872 	adapter->rx_locked = true;
873 	if (adapter->rx_processing) {
874 		spin_unlock_bh(&adapter->rx_proc_lock);
875 		flush_workqueue(adapter->rx_workqueue);
876 	} else {
877 	spin_unlock_bh(&adapter->rx_proc_lock);
878 	}
879 
880 	mwifiex_free_priv(priv);
881 	priv->wdev.iftype = NL80211_IFTYPE_UNSPECIFIED;
882 	priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
883 	priv->sec_info.authentication_mode = NL80211_AUTHTYPE_OPEN_SYSTEM;
884 
885 	return 0;
886 }
887 
888 static int
mwifiex_init_new_priv_params(struct mwifiex_private * priv,struct net_device * dev,enum nl80211_iftype type)889 mwifiex_init_new_priv_params(struct mwifiex_private *priv,
890 			     struct net_device *dev,
891 			     enum nl80211_iftype type)
892 {
893 	struct mwifiex_adapter *adapter = priv->adapter;
894 	unsigned long flags;
895 
896 	mwifiex_init_priv(priv);
897 
898 	priv->bss_mode = type;
899 	priv->wdev.iftype = type;
900 
901 	mwifiex_init_priv_params(priv, priv->netdev);
902 	priv->bss_started = 0;
903 
904 	switch (type) {
905 	case NL80211_IFTYPE_STATION:
906 	case NL80211_IFTYPE_ADHOC:
907 		priv->bss_role = MWIFIEX_BSS_ROLE_STA;
908 		priv->bss_type = MWIFIEX_BSS_TYPE_STA;
909 		break;
910 	case NL80211_IFTYPE_P2P_CLIENT:
911 		priv->bss_role = MWIFIEX_BSS_ROLE_STA;
912 		priv->bss_type = MWIFIEX_BSS_TYPE_P2P;
913 		break;
914 	case NL80211_IFTYPE_P2P_GO:
915 		priv->bss_role = MWIFIEX_BSS_ROLE_UAP;
916 		priv->bss_type = MWIFIEX_BSS_TYPE_P2P;
917 		break;
918 	case NL80211_IFTYPE_AP:
919 		priv->bss_role = MWIFIEX_BSS_ROLE_UAP;
920 		priv->bss_type = MWIFIEX_BSS_TYPE_UAP;
921 		break;
922 	default:
923 		mwifiex_dbg(adapter, ERROR,
924 			    "%s: changing to %d not supported\n",
925 			    dev->name, type);
926 		return -EOPNOTSUPP;
927 	}
928 
929 	spin_lock_irqsave(&adapter->main_proc_lock, flags);
930 	adapter->main_locked = false;
931 	spin_unlock_irqrestore(&adapter->main_proc_lock, flags);
932 
933 	spin_lock_bh(&adapter->rx_proc_lock);
934 	adapter->rx_locked = false;
935 	spin_unlock_bh(&adapter->rx_proc_lock);
936 
937 	mwifiex_set_mac_address(priv, dev, false, NULL);
938 
939 	return 0;
940 }
941 
942 static bool
is_vif_type_change_allowed(struct mwifiex_adapter * adapter,enum nl80211_iftype old_iftype,enum nl80211_iftype new_iftype)943 is_vif_type_change_allowed(struct mwifiex_adapter *adapter,
944 			   enum nl80211_iftype old_iftype,
945 			   enum nl80211_iftype new_iftype)
946 {
947 	switch (old_iftype) {
948 	case NL80211_IFTYPE_ADHOC:
949 		switch (new_iftype) {
950 		case NL80211_IFTYPE_STATION:
951 			return true;
952 		case NL80211_IFTYPE_P2P_CLIENT:
953 		case NL80211_IFTYPE_P2P_GO:
954 			return adapter->curr_iface_comb.p2p_intf !=
955 			       adapter->iface_limit.p2p_intf;
956 		case NL80211_IFTYPE_AP:
957 			return adapter->curr_iface_comb.uap_intf !=
958 			       adapter->iface_limit.uap_intf;
959 		default:
960 			return false;
961 		}
962 
963 	case NL80211_IFTYPE_STATION:
964 		switch (new_iftype) {
965 		case NL80211_IFTYPE_ADHOC:
966 			return true;
967 		case NL80211_IFTYPE_P2P_CLIENT:
968 		case NL80211_IFTYPE_P2P_GO:
969 			return adapter->curr_iface_comb.p2p_intf !=
970 			       adapter->iface_limit.p2p_intf;
971 		case NL80211_IFTYPE_AP:
972 			return adapter->curr_iface_comb.uap_intf !=
973 			       adapter->iface_limit.uap_intf;
974 		default:
975 			return false;
976 		}
977 
978 	case NL80211_IFTYPE_AP:
979 		switch (new_iftype) {
980 		case NL80211_IFTYPE_ADHOC:
981 		case NL80211_IFTYPE_STATION:
982 			return adapter->curr_iface_comb.sta_intf !=
983 			       adapter->iface_limit.sta_intf;
984 		case NL80211_IFTYPE_P2P_CLIENT:
985 		case NL80211_IFTYPE_P2P_GO:
986 			return adapter->curr_iface_comb.p2p_intf !=
987 			       adapter->iface_limit.p2p_intf;
988 		default:
989 			return false;
990 		}
991 
992 	case NL80211_IFTYPE_P2P_CLIENT:
993 		switch (new_iftype) {
994 		case NL80211_IFTYPE_ADHOC:
995 		case NL80211_IFTYPE_STATION:
996 			return true;
997 		case NL80211_IFTYPE_P2P_GO:
998 			return true;
999 		case NL80211_IFTYPE_AP:
1000 			return adapter->curr_iface_comb.uap_intf !=
1001 			       adapter->iface_limit.uap_intf;
1002 		default:
1003 			return false;
1004 		}
1005 
1006 	case NL80211_IFTYPE_P2P_GO:
1007 		switch (new_iftype) {
1008 		case NL80211_IFTYPE_ADHOC:
1009 		case NL80211_IFTYPE_STATION:
1010 			return true;
1011 		case NL80211_IFTYPE_P2P_CLIENT:
1012 			return true;
1013 		case NL80211_IFTYPE_AP:
1014 			return adapter->curr_iface_comb.uap_intf !=
1015 			       adapter->iface_limit.uap_intf;
1016 		default:
1017 			return false;
1018 		}
1019 
1020 	default:
1021 		break;
1022 	}
1023 
1024 	return false;
1025 }
1026 
1027 static void
update_vif_type_counter(struct mwifiex_adapter * adapter,enum nl80211_iftype iftype,int change)1028 update_vif_type_counter(struct mwifiex_adapter *adapter,
1029 			enum nl80211_iftype iftype,
1030 			int change)
1031 {
1032 	switch (iftype) {
1033 	case NL80211_IFTYPE_UNSPECIFIED:
1034 	case NL80211_IFTYPE_ADHOC:
1035 	case NL80211_IFTYPE_STATION:
1036 		adapter->curr_iface_comb.sta_intf += change;
1037 		break;
1038 	case NL80211_IFTYPE_AP:
1039 		adapter->curr_iface_comb.uap_intf += change;
1040 		break;
1041 	case NL80211_IFTYPE_P2P_CLIENT:
1042 	case NL80211_IFTYPE_P2P_GO:
1043 		adapter->curr_iface_comb.p2p_intf += change;
1044 		break;
1045 	default:
1046 		mwifiex_dbg(adapter, ERROR,
1047 			    "%s: Unsupported iftype passed: %d\n",
1048 			    __func__, iftype);
1049 		break;
1050 	}
1051 }
1052 
1053 static int
mwifiex_change_vif_to_p2p(struct net_device * dev,enum nl80211_iftype curr_iftype,enum nl80211_iftype type,struct vif_params * params)1054 mwifiex_change_vif_to_p2p(struct net_device *dev,
1055 			  enum nl80211_iftype curr_iftype,
1056 			  enum nl80211_iftype type,
1057 			  struct vif_params *params)
1058 {
1059 	struct mwifiex_private *priv;
1060 	struct mwifiex_adapter *adapter;
1061 
1062 	priv = mwifiex_netdev_get_priv(dev);
1063 
1064 	if (!priv)
1065 		return -1;
1066 
1067 	adapter = priv->adapter;
1068 
1069 	mwifiex_dbg(adapter, INFO,
1070 		    "%s: changing role to p2p\n", dev->name);
1071 
1072 	if (mwifiex_deinit_priv_params(priv))
1073 		return -1;
1074 	if (mwifiex_init_new_priv_params(priv, dev, type))
1075 		return -1;
1076 
1077 	update_vif_type_counter(adapter, curr_iftype, -1);
1078 	update_vif_type_counter(adapter, type, +1);
1079 	dev->ieee80211_ptr->iftype = type;
1080 
1081 	switch (type) {
1082 	case NL80211_IFTYPE_P2P_CLIENT:
1083 		if (mwifiex_cfg80211_init_p2p_client(priv))
1084 			return -EFAULT;
1085 		break;
1086 	case NL80211_IFTYPE_P2P_GO:
1087 		if (mwifiex_cfg80211_init_p2p_go(priv))
1088 			return -EFAULT;
1089 		break;
1090 	default:
1091 		mwifiex_dbg(adapter, ERROR,
1092 			    "%s: changing to %d not supported\n",
1093 			    dev->name, type);
1094 		return -EOPNOTSUPP;
1095 	}
1096 
1097 	if (mwifiex_send_cmd(priv, HostCmd_CMD_SET_BSS_MODE,
1098 			     HostCmd_ACT_GEN_SET, 0, NULL, true))
1099 		return -1;
1100 
1101 	if (mwifiex_sta_init_cmd(priv, false, false))
1102 		return -1;
1103 
1104 	return 0;
1105 }
1106 
1107 static int
mwifiex_change_vif_to_sta_adhoc(struct net_device * dev,enum nl80211_iftype curr_iftype,enum nl80211_iftype type,struct vif_params * params)1108 mwifiex_change_vif_to_sta_adhoc(struct net_device *dev,
1109 				enum nl80211_iftype curr_iftype,
1110 				enum nl80211_iftype type,
1111 				struct vif_params *params)
1112 {
1113 	struct mwifiex_private *priv;
1114 	struct mwifiex_adapter *adapter;
1115 
1116 	priv = mwifiex_netdev_get_priv(dev);
1117 
1118 	if (!priv)
1119 		return -1;
1120 
1121 	adapter = priv->adapter;
1122 
1123 	if (type == NL80211_IFTYPE_STATION)
1124 		mwifiex_dbg(adapter, INFO,
1125 			    "%s: changing role to station\n", dev->name);
1126 	else
1127 		mwifiex_dbg(adapter, INFO,
1128 			    "%s: changing role to adhoc\n", dev->name);
1129 
1130 	if (mwifiex_deinit_priv_params(priv))
1131 		return -1;
1132 	if (mwifiex_init_new_priv_params(priv, dev, type))
1133 		return -1;
1134 
1135 	update_vif_type_counter(adapter, curr_iftype, -1);
1136 	update_vif_type_counter(adapter, type, +1);
1137 	dev->ieee80211_ptr->iftype = type;
1138 
1139 	if (mwifiex_send_cmd(priv, HostCmd_CMD_SET_BSS_MODE,
1140 			     HostCmd_ACT_GEN_SET, 0, NULL, true))
1141 		return -1;
1142 	if (mwifiex_sta_init_cmd(priv, false, false))
1143 		return -1;
1144 
1145 	return 0;
1146 }
1147 
1148 static int
mwifiex_change_vif_to_ap(struct net_device * dev,enum nl80211_iftype curr_iftype,enum nl80211_iftype type,struct vif_params * params)1149 mwifiex_change_vif_to_ap(struct net_device *dev,
1150 			 enum nl80211_iftype curr_iftype,
1151 			 enum nl80211_iftype type,
1152 			 struct vif_params *params)
1153 {
1154 	struct mwifiex_private *priv;
1155 	struct mwifiex_adapter *adapter;
1156 
1157 	priv = mwifiex_netdev_get_priv(dev);
1158 
1159 	if (!priv)
1160 		return -1;
1161 
1162 	adapter = priv->adapter;
1163 
1164 	mwifiex_dbg(adapter, INFO,
1165 		    "%s: changing role to AP\n", dev->name);
1166 
1167 	if (mwifiex_deinit_priv_params(priv))
1168 		return -1;
1169 	if (mwifiex_init_new_priv_params(priv, dev, type))
1170 		return -1;
1171 
1172 	update_vif_type_counter(adapter, curr_iftype, -1);
1173 	update_vif_type_counter(adapter, type, +1);
1174 	dev->ieee80211_ptr->iftype = type;
1175 
1176 	if (mwifiex_send_cmd(priv, HostCmd_CMD_SET_BSS_MODE,
1177 			     HostCmd_ACT_GEN_SET, 0, NULL, true))
1178 		return -1;
1179 	if (mwifiex_sta_init_cmd(priv, false, false))
1180 		return -1;
1181 
1182 	return 0;
1183 }
1184 /*
1185  * CFG802.11 operation handler to change interface type.
1186  */
1187 static int
mwifiex_cfg80211_change_virtual_intf(struct wiphy * wiphy,struct net_device * dev,enum nl80211_iftype type,struct vif_params * params)1188 mwifiex_cfg80211_change_virtual_intf(struct wiphy *wiphy,
1189 				     struct net_device *dev,
1190 				     enum nl80211_iftype type,
1191 				     struct vif_params *params)
1192 {
1193 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1194 	enum nl80211_iftype curr_iftype = dev->ieee80211_ptr->iftype;
1195 
1196 	if (priv->scan_request) {
1197 		mwifiex_dbg(priv->adapter, ERROR,
1198 			    "change virtual interface: scan in process\n");
1199 		return -EBUSY;
1200 	}
1201 
1202 	if (type == NL80211_IFTYPE_UNSPECIFIED) {
1203 		mwifiex_dbg(priv->adapter, INFO,
1204 			    "%s: no new type specified, keeping old type %d\n",
1205 			    dev->name, curr_iftype);
1206 		return 0;
1207 	}
1208 
1209 	if (curr_iftype == type) {
1210 		mwifiex_dbg(priv->adapter, INFO,
1211 			    "%s: interface already is of type %d\n",
1212 			    dev->name, curr_iftype);
1213 		return 0;
1214 	}
1215 
1216 	if (!is_vif_type_change_allowed(priv->adapter, curr_iftype, type)) {
1217 		mwifiex_dbg(priv->adapter, ERROR,
1218 			    "%s: change from type %d to %d is not allowed\n",
1219 			    dev->name, curr_iftype, type);
1220 		return -EOPNOTSUPP;
1221 	}
1222 
1223 	switch (curr_iftype) {
1224 	case NL80211_IFTYPE_ADHOC:
1225 		switch (type) {
1226 		case NL80211_IFTYPE_STATION:
1227 			priv->bss_mode = type;
1228 			priv->sec_info.authentication_mode =
1229 						   NL80211_AUTHTYPE_OPEN_SYSTEM;
1230 			dev->ieee80211_ptr->iftype = type;
1231 			mwifiex_deauthenticate(priv, NULL);
1232 			return mwifiex_send_cmd(priv, HostCmd_CMD_SET_BSS_MODE,
1233 						HostCmd_ACT_GEN_SET, 0, NULL,
1234 						true);
1235 		case NL80211_IFTYPE_P2P_CLIENT:
1236 		case NL80211_IFTYPE_P2P_GO:
1237 			return mwifiex_change_vif_to_p2p(dev, curr_iftype,
1238 							 type, params);
1239 		case NL80211_IFTYPE_AP:
1240 			return mwifiex_change_vif_to_ap(dev, curr_iftype, type,
1241 							params);
1242 		default:
1243 			goto errnotsupp;
1244 		}
1245 
1246 	case NL80211_IFTYPE_STATION:
1247 		switch (type) {
1248 		case NL80211_IFTYPE_ADHOC:
1249 			priv->bss_mode = type;
1250 			priv->sec_info.authentication_mode =
1251 						   NL80211_AUTHTYPE_OPEN_SYSTEM;
1252 			dev->ieee80211_ptr->iftype = type;
1253 			mwifiex_deauthenticate(priv, NULL);
1254 			return mwifiex_send_cmd(priv, HostCmd_CMD_SET_BSS_MODE,
1255 						HostCmd_ACT_GEN_SET, 0, NULL,
1256 						true);
1257 		case NL80211_IFTYPE_P2P_CLIENT:
1258 		case NL80211_IFTYPE_P2P_GO:
1259 			return mwifiex_change_vif_to_p2p(dev, curr_iftype,
1260 							 type, params);
1261 		case NL80211_IFTYPE_AP:
1262 			return mwifiex_change_vif_to_ap(dev, curr_iftype, type,
1263 							params);
1264 		default:
1265 			goto errnotsupp;
1266 		}
1267 
1268 	case NL80211_IFTYPE_AP:
1269 		switch (type) {
1270 		case NL80211_IFTYPE_ADHOC:
1271 		case NL80211_IFTYPE_STATION:
1272 			return mwifiex_change_vif_to_sta_adhoc(dev, curr_iftype,
1273 							       type, params);
1274 			break;
1275 		case NL80211_IFTYPE_P2P_CLIENT:
1276 		case NL80211_IFTYPE_P2P_GO:
1277 			return mwifiex_change_vif_to_p2p(dev, curr_iftype,
1278 							 type, params);
1279 		default:
1280 			goto errnotsupp;
1281 		}
1282 
1283 	case NL80211_IFTYPE_P2P_CLIENT:
1284 		if (mwifiex_cfg80211_deinit_p2p(priv))
1285 			return -EFAULT;
1286 
1287 		switch (type) {
1288 		case NL80211_IFTYPE_ADHOC:
1289 		case NL80211_IFTYPE_STATION:
1290 			return mwifiex_change_vif_to_sta_adhoc(dev, curr_iftype,
1291 							       type, params);
1292 		case NL80211_IFTYPE_P2P_GO:
1293 			return mwifiex_change_vif_to_p2p(dev, curr_iftype,
1294 							 type, params);
1295 		case NL80211_IFTYPE_AP:
1296 			return mwifiex_change_vif_to_ap(dev, curr_iftype, type,
1297 							params);
1298 		default:
1299 			goto errnotsupp;
1300 		}
1301 
1302 	case NL80211_IFTYPE_P2P_GO:
1303 		if (mwifiex_cfg80211_deinit_p2p(priv))
1304 			return -EFAULT;
1305 
1306 		switch (type) {
1307 		case NL80211_IFTYPE_ADHOC:
1308 		case NL80211_IFTYPE_STATION:
1309 			return mwifiex_change_vif_to_sta_adhoc(dev, curr_iftype,
1310 							       type, params);
1311 		case NL80211_IFTYPE_P2P_CLIENT:
1312 			return mwifiex_change_vif_to_p2p(dev, curr_iftype,
1313 							 type, params);
1314 		case NL80211_IFTYPE_AP:
1315 			return mwifiex_change_vif_to_ap(dev, curr_iftype, type,
1316 							params);
1317 		default:
1318 			goto errnotsupp;
1319 		}
1320 
1321 	default:
1322 		goto errnotsupp;
1323 	}
1324 
1325 
1326 	return 0;
1327 
1328 errnotsupp:
1329 	mwifiex_dbg(priv->adapter, ERROR,
1330 		    "unsupported interface type transition: %d to %d\n",
1331 		    curr_iftype, type);
1332 	return -EOPNOTSUPP;
1333 }
1334 
1335 static void
mwifiex_parse_htinfo(struct mwifiex_private * priv,u8 rateinfo,u8 htinfo,struct rate_info * rate)1336 mwifiex_parse_htinfo(struct mwifiex_private *priv, u8 rateinfo, u8 htinfo,
1337 		     struct rate_info *rate)
1338 {
1339 	struct mwifiex_adapter *adapter = priv->adapter;
1340 
1341 	if (adapter->is_hw_11ac_capable) {
1342 		/* bit[1-0]: 00=LG 01=HT 10=VHT */
1343 		if (htinfo & BIT(0)) {
1344 			/* HT */
1345 			rate->mcs = rateinfo;
1346 			rate->flags |= RATE_INFO_FLAGS_MCS;
1347 		}
1348 		if (htinfo & BIT(1)) {
1349 			/* VHT */
1350 			rate->mcs = rateinfo & 0x0F;
1351 			rate->flags |= RATE_INFO_FLAGS_VHT_MCS;
1352 		}
1353 
1354 		if (htinfo & (BIT(1) | BIT(0))) {
1355 			/* HT or VHT */
1356 			switch (htinfo & (BIT(3) | BIT(2))) {
1357 			case 0:
1358 				rate->bw = RATE_INFO_BW_20;
1359 				break;
1360 			case (BIT(2)):
1361 				rate->bw = RATE_INFO_BW_40;
1362 				break;
1363 			case (BIT(3)):
1364 				rate->bw = RATE_INFO_BW_80;
1365 				break;
1366 			case (BIT(3) | BIT(2)):
1367 				rate->bw = RATE_INFO_BW_160;
1368 				break;
1369 			}
1370 
1371 			if (htinfo & BIT(4))
1372 				rate->flags |= RATE_INFO_FLAGS_SHORT_GI;
1373 
1374 			if ((rateinfo >> 4) == 1)
1375 				rate->nss = 2;
1376 			else
1377 				rate->nss = 1;
1378 		}
1379 	} else {
1380 		/*
1381 		 * Bit 0 in htinfo indicates that current rate is 11n. Valid
1382 		 * MCS index values for us are 0 to 15.
1383 		 */
1384 		if ((htinfo & BIT(0)) && (rateinfo < 16)) {
1385 			rate->mcs = rateinfo;
1386 			rate->flags |= RATE_INFO_FLAGS_MCS;
1387 			rate->bw = RATE_INFO_BW_20;
1388 			if (htinfo & BIT(1))
1389 				rate->bw = RATE_INFO_BW_40;
1390 			if (htinfo & BIT(2))
1391 				rate->flags |= RATE_INFO_FLAGS_SHORT_GI;
1392 		}
1393 	}
1394 
1395 	/* Decode legacy rates for non-HT. */
1396 	if (!(htinfo & (BIT(0) | BIT(1)))) {
1397 		/* Bitrates in multiples of 100kb/s. */
1398 		static const int legacy_rates[] = {
1399 			[0] = 10,
1400 			[1] = 20,
1401 			[2] = 55,
1402 			[3] = 110,
1403 			[4] = 60, /* MWIFIEX_RATE_INDEX_OFDM0 */
1404 			[5] = 60,
1405 			[6] = 90,
1406 			[7] = 120,
1407 			[8] = 180,
1408 			[9] = 240,
1409 			[10] = 360,
1410 			[11] = 480,
1411 			[12] = 540,
1412 		};
1413 		if (rateinfo < ARRAY_SIZE(legacy_rates))
1414 			rate->legacy = legacy_rates[rateinfo];
1415 	}
1416 }
1417 
1418 /*
1419  * This function dumps the station information on a buffer.
1420  *
1421  * The following information are shown -
1422  *      - Total bytes transmitted
1423  *      - Total bytes received
1424  *      - Total packets transmitted
1425  *      - Total packets received
1426  *      - Signal quality level
1427  *      - Transmission rate
1428  */
1429 static int
mwifiex_dump_station_info(struct mwifiex_private * priv,struct mwifiex_sta_node * node,struct station_info * sinfo)1430 mwifiex_dump_station_info(struct mwifiex_private *priv,
1431 			  struct mwifiex_sta_node *node,
1432 			  struct station_info *sinfo)
1433 {
1434 	u32 rate;
1435 
1436 	sinfo->filled = BIT_ULL(NL80211_STA_INFO_RX_BYTES) | BIT_ULL(NL80211_STA_INFO_TX_BYTES) |
1437 			BIT_ULL(NL80211_STA_INFO_RX_PACKETS) | BIT_ULL(NL80211_STA_INFO_TX_PACKETS) |
1438 			BIT_ULL(NL80211_STA_INFO_TX_BITRATE) |
1439 			BIT_ULL(NL80211_STA_INFO_SIGNAL) | BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG);
1440 
1441 	if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
1442 		if (!node)
1443 			return -ENOENT;
1444 
1445 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_INACTIVE_TIME) |
1446 				BIT_ULL(NL80211_STA_INFO_TX_FAILED);
1447 		sinfo->inactive_time =
1448 			jiffies_to_msecs(jiffies - node->stats.last_rx);
1449 
1450 		sinfo->signal = node->stats.rssi;
1451 		sinfo->signal_avg = node->stats.rssi;
1452 		sinfo->rx_bytes = node->stats.rx_bytes;
1453 		sinfo->tx_bytes = node->stats.tx_bytes;
1454 		sinfo->rx_packets = node->stats.rx_packets;
1455 		sinfo->tx_packets = node->stats.tx_packets;
1456 		sinfo->tx_failed = node->stats.tx_failed;
1457 
1458 		mwifiex_parse_htinfo(priv, priv->tx_rate,
1459 				     node->stats.last_tx_htinfo,
1460 				     &sinfo->txrate);
1461 		sinfo->txrate.legacy = node->stats.last_tx_rate * 5;
1462 
1463 		return 0;
1464 	}
1465 
1466 	/* Get signal information from the firmware */
1467 	if (mwifiex_send_cmd(priv, HostCmd_CMD_RSSI_INFO,
1468 			     HostCmd_ACT_GEN_GET, 0, NULL, true)) {
1469 		mwifiex_dbg(priv->adapter, ERROR,
1470 			    "failed to get signal information\n");
1471 		return -EFAULT;
1472 	}
1473 
1474 	if (mwifiex_drv_get_data_rate(priv, &rate)) {
1475 		mwifiex_dbg(priv->adapter, ERROR,
1476 			    "getting data rate error\n");
1477 		return -EFAULT;
1478 	}
1479 
1480 	/* Get DTIM period information from firmware */
1481 	mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
1482 			 HostCmd_ACT_GEN_GET, DTIM_PERIOD_I,
1483 			 &priv->dtim_period, true);
1484 
1485 	mwifiex_parse_htinfo(priv, priv->tx_rate, priv->tx_htinfo,
1486 			     &sinfo->txrate);
1487 
1488 	sinfo->signal_avg = priv->bcn_rssi_avg;
1489 	sinfo->rx_bytes = priv->stats.rx_bytes;
1490 	sinfo->tx_bytes = priv->stats.tx_bytes;
1491 	sinfo->rx_packets = priv->stats.rx_packets;
1492 	sinfo->tx_packets = priv->stats.tx_packets;
1493 	sinfo->signal = priv->bcn_rssi_avg;
1494 	/* bit rate is in 500 kb/s units. Convert it to 100kb/s units */
1495 	sinfo->txrate.legacy = rate * 5;
1496 
1497 	sinfo->filled |= BIT(NL80211_STA_INFO_RX_BITRATE);
1498 	mwifiex_parse_htinfo(priv, priv->rxpd_rate, priv->rxpd_htinfo,
1499 			     &sinfo->rxrate);
1500 
1501 	if (priv->bss_mode == NL80211_IFTYPE_STATION) {
1502 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_BSS_PARAM);
1503 		sinfo->bss_param.flags = 0;
1504 		if (priv->curr_bss_params.bss_descriptor.cap_info_bitmap &
1505 						WLAN_CAPABILITY_SHORT_PREAMBLE)
1506 			sinfo->bss_param.flags |=
1507 					BSS_PARAM_FLAGS_SHORT_PREAMBLE;
1508 		if (priv->curr_bss_params.bss_descriptor.cap_info_bitmap &
1509 						WLAN_CAPABILITY_SHORT_SLOT_TIME)
1510 			sinfo->bss_param.flags |=
1511 					BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
1512 		sinfo->bss_param.dtim_period = priv->dtim_period;
1513 		sinfo->bss_param.beacon_interval =
1514 			priv->curr_bss_params.bss_descriptor.beacon_period;
1515 	}
1516 
1517 	return 0;
1518 }
1519 
1520 /*
1521  * CFG802.11 operation handler to get station information.
1522  *
1523  * This function only works in connected mode, and dumps the
1524  * requested station information, if available.
1525  */
1526 static int
mwifiex_cfg80211_get_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_info * sinfo)1527 mwifiex_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
1528 			     const u8 *mac, struct station_info *sinfo)
1529 {
1530 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1531 
1532 	if (!priv->media_connected)
1533 		return -ENOENT;
1534 	if (memcmp(mac, priv->cfg_bssid, ETH_ALEN))
1535 		return -ENOENT;
1536 
1537 	return mwifiex_dump_station_info(priv, NULL, sinfo);
1538 }
1539 
1540 /*
1541  * CFG802.11 operation handler to dump station information.
1542  */
1543 static int
mwifiex_cfg80211_dump_station(struct wiphy * wiphy,struct net_device * dev,int idx,u8 * mac,struct station_info * sinfo)1544 mwifiex_cfg80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
1545 			      int idx, u8 *mac, struct station_info *sinfo)
1546 {
1547 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1548 	struct mwifiex_sta_node *node;
1549 	int i;
1550 
1551 	if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
1552 	    priv->media_connected && idx == 0) {
1553 		ether_addr_copy(mac, priv->cfg_bssid);
1554 		return mwifiex_dump_station_info(priv, NULL, sinfo);
1555 	} else if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
1556 		mwifiex_send_cmd(priv, HOST_CMD_APCMD_STA_LIST,
1557 				 HostCmd_ACT_GEN_GET, 0, NULL, true);
1558 
1559 		i = 0;
1560 		list_for_each_entry(node, &priv->sta_list, list) {
1561 			if (i++ != idx)
1562 				continue;
1563 			ether_addr_copy(mac, node->mac_addr);
1564 			return mwifiex_dump_station_info(priv, node, sinfo);
1565 		}
1566 	}
1567 
1568 	return -ENOENT;
1569 }
1570 
1571 static int
mwifiex_cfg80211_dump_survey(struct wiphy * wiphy,struct net_device * dev,int idx,struct survey_info * survey)1572 mwifiex_cfg80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
1573 			     int idx, struct survey_info *survey)
1574 {
1575 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1576 	struct mwifiex_chan_stats *pchan_stats = priv->adapter->chan_stats;
1577 	enum nl80211_band band;
1578 
1579 	mwifiex_dbg(priv->adapter, DUMP, "dump_survey idx=%d\n", idx);
1580 
1581 	memset(survey, 0, sizeof(struct survey_info));
1582 
1583 	if ((GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA) &&
1584 	    priv->media_connected && idx == 0) {
1585 			u8 curr_bss_band = priv->curr_bss_params.band;
1586 			u32 chan = priv->curr_bss_params.bss_descriptor.channel;
1587 
1588 			band = mwifiex_band_to_radio_type(curr_bss_band);
1589 			survey->channel = ieee80211_get_channel(wiphy,
1590 				ieee80211_channel_to_frequency(chan, band));
1591 
1592 			if (priv->bcn_nf_last) {
1593 				survey->filled = SURVEY_INFO_NOISE_DBM;
1594 				survey->noise = priv->bcn_nf_last;
1595 			}
1596 			return 0;
1597 	}
1598 
1599 	if (idx >= priv->adapter->num_in_chan_stats)
1600 		return -ENOENT;
1601 
1602 	if (!pchan_stats[idx].cca_scan_dur)
1603 		return 0;
1604 
1605 	band = pchan_stats[idx].bandcfg;
1606 	survey->channel = ieee80211_get_channel(wiphy,
1607 	    ieee80211_channel_to_frequency(pchan_stats[idx].chan_num, band));
1608 	survey->filled = SURVEY_INFO_NOISE_DBM |
1609 			 SURVEY_INFO_TIME |
1610 			 SURVEY_INFO_TIME_BUSY;
1611 	survey->noise = pchan_stats[idx].noise;
1612 	survey->time = pchan_stats[idx].cca_scan_dur;
1613 	survey->time_busy = pchan_stats[idx].cca_busy_dur;
1614 
1615 	return 0;
1616 }
1617 
1618 /* Supported rates to be advertised to the cfg80211 */
1619 static struct ieee80211_rate mwifiex_rates[] = {
1620 	{.bitrate = 10, .hw_value = 2, },
1621 	{.bitrate = 20, .hw_value = 4, },
1622 	{.bitrate = 55, .hw_value = 11, },
1623 	{.bitrate = 110, .hw_value = 22, },
1624 	{.bitrate = 60, .hw_value = 12, },
1625 	{.bitrate = 90, .hw_value = 18, },
1626 	{.bitrate = 120, .hw_value = 24, },
1627 	{.bitrate = 180, .hw_value = 36, },
1628 	{.bitrate = 240, .hw_value = 48, },
1629 	{.bitrate = 360, .hw_value = 72, },
1630 	{.bitrate = 480, .hw_value = 96, },
1631 	{.bitrate = 540, .hw_value = 108, },
1632 };
1633 
1634 /* Channel definitions to be advertised to cfg80211 */
1635 static struct ieee80211_channel mwifiex_channels_2ghz[] = {
1636 	{.center_freq = 2412, .hw_value = 1, },
1637 	{.center_freq = 2417, .hw_value = 2, },
1638 	{.center_freq = 2422, .hw_value = 3, },
1639 	{.center_freq = 2427, .hw_value = 4, },
1640 	{.center_freq = 2432, .hw_value = 5, },
1641 	{.center_freq = 2437, .hw_value = 6, },
1642 	{.center_freq = 2442, .hw_value = 7, },
1643 	{.center_freq = 2447, .hw_value = 8, },
1644 	{.center_freq = 2452, .hw_value = 9, },
1645 	{.center_freq = 2457, .hw_value = 10, },
1646 	{.center_freq = 2462, .hw_value = 11, },
1647 	{.center_freq = 2467, .hw_value = 12, },
1648 	{.center_freq = 2472, .hw_value = 13, },
1649 	{.center_freq = 2484, .hw_value = 14, },
1650 };
1651 
1652 static struct ieee80211_supported_band mwifiex_band_2ghz = {
1653 	.channels = mwifiex_channels_2ghz,
1654 	.n_channels = ARRAY_SIZE(mwifiex_channels_2ghz),
1655 	.bitrates = mwifiex_rates,
1656 	.n_bitrates = ARRAY_SIZE(mwifiex_rates),
1657 };
1658 
1659 static struct ieee80211_channel mwifiex_channels_5ghz[] = {
1660 	{.center_freq = 5040, .hw_value = 8, },
1661 	{.center_freq = 5060, .hw_value = 12, },
1662 	{.center_freq = 5080, .hw_value = 16, },
1663 	{.center_freq = 5170, .hw_value = 34, },
1664 	{.center_freq = 5190, .hw_value = 38, },
1665 	{.center_freq = 5210, .hw_value = 42, },
1666 	{.center_freq = 5230, .hw_value = 46, },
1667 	{.center_freq = 5180, .hw_value = 36, },
1668 	{.center_freq = 5200, .hw_value = 40, },
1669 	{.center_freq = 5220, .hw_value = 44, },
1670 	{.center_freq = 5240, .hw_value = 48, },
1671 	{.center_freq = 5260, .hw_value = 52, },
1672 	{.center_freq = 5280, .hw_value = 56, },
1673 	{.center_freq = 5300, .hw_value = 60, },
1674 	{.center_freq = 5320, .hw_value = 64, },
1675 	{.center_freq = 5500, .hw_value = 100, },
1676 	{.center_freq = 5520, .hw_value = 104, },
1677 	{.center_freq = 5540, .hw_value = 108, },
1678 	{.center_freq = 5560, .hw_value = 112, },
1679 	{.center_freq = 5580, .hw_value = 116, },
1680 	{.center_freq = 5600, .hw_value = 120, },
1681 	{.center_freq = 5620, .hw_value = 124, },
1682 	{.center_freq = 5640, .hw_value = 128, },
1683 	{.center_freq = 5660, .hw_value = 132, },
1684 	{.center_freq = 5680, .hw_value = 136, },
1685 	{.center_freq = 5700, .hw_value = 140, },
1686 	{.center_freq = 5745, .hw_value = 149, },
1687 	{.center_freq = 5765, .hw_value = 153, },
1688 	{.center_freq = 5785, .hw_value = 157, },
1689 	{.center_freq = 5805, .hw_value = 161, },
1690 	{.center_freq = 5825, .hw_value = 165, },
1691 };
1692 
1693 static struct ieee80211_supported_band mwifiex_band_5ghz = {
1694 	.channels = mwifiex_channels_5ghz,
1695 	.n_channels = ARRAY_SIZE(mwifiex_channels_5ghz),
1696 	.bitrates = mwifiex_rates + 4,
1697 	.n_bitrates = ARRAY_SIZE(mwifiex_rates) - 4,
1698 };
1699 
1700 
1701 /* Supported crypto cipher suits to be advertised to cfg80211 */
1702 static const u32 mwifiex_cipher_suites[] = {
1703 	WLAN_CIPHER_SUITE_WEP40,
1704 	WLAN_CIPHER_SUITE_WEP104,
1705 	WLAN_CIPHER_SUITE_TKIP,
1706 	WLAN_CIPHER_SUITE_CCMP,
1707 	WLAN_CIPHER_SUITE_SMS4,
1708 	WLAN_CIPHER_SUITE_AES_CMAC,
1709 };
1710 
1711 /* Supported mgmt frame types to be advertised to cfg80211 */
1712 static const struct ieee80211_txrx_stypes
1713 mwifiex_mgmt_stypes[NUM_NL80211_IFTYPES] = {
1714 	[NL80211_IFTYPE_STATION] = {
1715 		.tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1716 		      BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1717 		.rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1718 		      BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1719 	},
1720 	[NL80211_IFTYPE_AP] = {
1721 		.tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1722 		      BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1723 		.rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1724 		      BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1725 	},
1726 	[NL80211_IFTYPE_P2P_CLIENT] = {
1727 		.tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1728 		      BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1729 		.rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1730 		      BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1731 	},
1732 	[NL80211_IFTYPE_P2P_GO] = {
1733 		.tx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1734 		      BIT(IEEE80211_STYPE_PROBE_RESP >> 4),
1735 		.rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
1736 		      BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
1737 	},
1738 };
1739 
1740 /*
1741  * CFG802.11 operation handler for setting bit rates.
1742  *
1743  * Function configures data rates to firmware using bitrate mask
1744  * provided by cfg80211.
1745  */
1746 static int
mwifiex_cfg80211_set_bitrate_mask(struct wiphy * wiphy,struct net_device * dev,unsigned int link_id,const u8 * peer,const struct cfg80211_bitrate_mask * mask)1747 mwifiex_cfg80211_set_bitrate_mask(struct wiphy *wiphy,
1748 				  struct net_device *dev,
1749 				  unsigned int link_id,
1750 				  const u8 *peer,
1751 				  const struct cfg80211_bitrate_mask *mask)
1752 {
1753 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1754 	u16 bitmap_rates[MAX_BITMAP_RATES_SIZE];
1755 	enum nl80211_band band;
1756 	struct mwifiex_adapter *adapter = priv->adapter;
1757 
1758 	if (!priv->media_connected) {
1759 		mwifiex_dbg(adapter, ERROR,
1760 			    "Can not set Tx data rate in disconnected state\n");
1761 		return -EINVAL;
1762 	}
1763 
1764 	band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
1765 
1766 	memset(bitmap_rates, 0, sizeof(bitmap_rates));
1767 
1768 	/* Fill HR/DSSS rates. */
1769 	if (band == NL80211_BAND_2GHZ)
1770 		bitmap_rates[0] = mask->control[band].legacy & 0x000f;
1771 
1772 	/* Fill OFDM rates */
1773 	if (band == NL80211_BAND_2GHZ)
1774 		bitmap_rates[1] = (mask->control[band].legacy & 0x0ff0) >> 4;
1775 	else
1776 		bitmap_rates[1] = mask->control[band].legacy;
1777 
1778 	/* Fill HT MCS rates */
1779 	bitmap_rates[2] = mask->control[band].ht_mcs[0];
1780 	if (adapter->hw_dev_mcs_support == HT_STREAM_2X2)
1781 		bitmap_rates[2] |= mask->control[band].ht_mcs[1] << 8;
1782 
1783        /* Fill VHT MCS rates */
1784 	if (adapter->fw_api_ver == MWIFIEX_FW_V15) {
1785 		bitmap_rates[10] = mask->control[band].vht_mcs[0];
1786 		if (adapter->hw_dev_mcs_support == HT_STREAM_2X2)
1787 			bitmap_rates[11] = mask->control[band].vht_mcs[1];
1788 	}
1789 
1790 	return mwifiex_send_cmd(priv, HostCmd_CMD_TX_RATE_CFG,
1791 				HostCmd_ACT_GEN_SET, 0, bitmap_rates, true);
1792 }
1793 
1794 /*
1795  * CFG802.11 operation handler for connection quality monitoring.
1796  *
1797  * This function subscribes/unsubscribes HIGH_RSSI and LOW_RSSI
1798  * events to FW.
1799  */
mwifiex_cfg80211_set_cqm_rssi_config(struct wiphy * wiphy,struct net_device * dev,s32 rssi_thold,u32 rssi_hyst)1800 static int mwifiex_cfg80211_set_cqm_rssi_config(struct wiphy *wiphy,
1801 						struct net_device *dev,
1802 						s32 rssi_thold, u32 rssi_hyst)
1803 {
1804 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1805 	struct mwifiex_ds_misc_subsc_evt subsc_evt;
1806 
1807 	priv->cqm_rssi_thold = rssi_thold;
1808 	priv->cqm_rssi_hyst = rssi_hyst;
1809 
1810 	memset(&subsc_evt, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt));
1811 	subsc_evt.events = BITMASK_BCN_RSSI_LOW | BITMASK_BCN_RSSI_HIGH;
1812 
1813 	/* Subscribe/unsubscribe low and high rssi events */
1814 	if (rssi_thold && rssi_hyst) {
1815 		subsc_evt.action = HostCmd_ACT_BITWISE_SET;
1816 		subsc_evt.bcn_l_rssi_cfg.abs_value = abs(rssi_thold);
1817 		subsc_evt.bcn_h_rssi_cfg.abs_value = abs(rssi_thold);
1818 		subsc_evt.bcn_l_rssi_cfg.evt_freq = 1;
1819 		subsc_evt.bcn_h_rssi_cfg.evt_freq = 1;
1820 		return mwifiex_send_cmd(priv,
1821 					HostCmd_CMD_802_11_SUBSCRIBE_EVENT,
1822 					0, 0, &subsc_evt, true);
1823 	} else {
1824 		subsc_evt.action = HostCmd_ACT_BITWISE_CLR;
1825 		return mwifiex_send_cmd(priv,
1826 					HostCmd_CMD_802_11_SUBSCRIBE_EVENT,
1827 					0, 0, &subsc_evt, true);
1828 	}
1829 
1830 	return 0;
1831 }
1832 
1833 /* cfg80211 operation handler for change_beacon.
1834  * Function retrieves and sets modified management IEs to FW.
1835  */
mwifiex_cfg80211_change_beacon(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_beacon_data * data)1836 static int mwifiex_cfg80211_change_beacon(struct wiphy *wiphy,
1837 					  struct net_device *dev,
1838 					  struct cfg80211_beacon_data *data)
1839 {
1840 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1841 	struct mwifiex_adapter *adapter = priv->adapter;
1842 
1843 	mwifiex_cancel_scan(adapter);
1844 
1845 	if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_UAP) {
1846 		mwifiex_dbg(priv->adapter, ERROR,
1847 			    "%s: bss_type mismatched\n", __func__);
1848 		return -EINVAL;
1849 	}
1850 
1851 	if (!priv->bss_started) {
1852 		mwifiex_dbg(priv->adapter, ERROR,
1853 			    "%s: bss not started\n", __func__);
1854 		return -EINVAL;
1855 	}
1856 
1857 	if (mwifiex_set_mgmt_ies(priv, data)) {
1858 		mwifiex_dbg(priv->adapter, ERROR,
1859 			    "%s: setting mgmt ies failed\n", __func__);
1860 		return -EFAULT;
1861 	}
1862 
1863 	return 0;
1864 }
1865 
1866 /* cfg80211 operation handler for del_station.
1867  * Function deauthenticates station which value is provided in mac parameter.
1868  * If mac is NULL/broadcast, all stations in associated station list are
1869  * deauthenticated. If bss is not started or there are no stations in
1870  * associated stations list, no action is taken.
1871  */
1872 static int
mwifiex_cfg80211_del_station(struct wiphy * wiphy,struct net_device * dev,struct station_del_parameters * params)1873 mwifiex_cfg80211_del_station(struct wiphy *wiphy, struct net_device *dev,
1874 			     struct station_del_parameters *params)
1875 {
1876 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1877 	struct mwifiex_sta_node *sta_node;
1878 	u8 deauth_mac[ETH_ALEN];
1879 
1880 	if (!priv->bss_started && priv->wdev.cac_started) {
1881 		mwifiex_dbg(priv->adapter, INFO, "%s: abort CAC!\n", __func__);
1882 		mwifiex_abort_cac(priv);
1883 	}
1884 
1885 	if (list_empty(&priv->sta_list) || !priv->bss_started)
1886 		return 0;
1887 
1888 	if (!params->mac || is_broadcast_ether_addr(params->mac))
1889 		return 0;
1890 
1891 	mwifiex_dbg(priv->adapter, INFO, "%s: mac address %pM\n",
1892 		    __func__, params->mac);
1893 
1894 	eth_zero_addr(deauth_mac);
1895 
1896 	spin_lock_bh(&priv->sta_list_spinlock);
1897 	sta_node = mwifiex_get_sta_entry(priv, params->mac);
1898 	if (sta_node)
1899 		ether_addr_copy(deauth_mac, params->mac);
1900 	spin_unlock_bh(&priv->sta_list_spinlock);
1901 
1902 	if (is_valid_ether_addr(deauth_mac)) {
1903 		if (mwifiex_send_cmd(priv, HostCmd_CMD_UAP_STA_DEAUTH,
1904 				     HostCmd_ACT_GEN_SET, 0,
1905 				     deauth_mac, true))
1906 			return -1;
1907 	}
1908 
1909 	return 0;
1910 }
1911 
1912 static int
mwifiex_cfg80211_set_antenna(struct wiphy * wiphy,u32 tx_ant,u32 rx_ant)1913 mwifiex_cfg80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
1914 {
1915 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
1916 	struct mwifiex_private *priv = mwifiex_get_priv(adapter,
1917 							MWIFIEX_BSS_ROLE_ANY);
1918 	struct mwifiex_ds_ant_cfg ant_cfg;
1919 
1920 	if (!tx_ant || !rx_ant)
1921 		return -EOPNOTSUPP;
1922 
1923 	if (adapter->hw_dev_mcs_support != HT_STREAM_2X2) {
1924 		/* Not a MIMO chip. User should provide specific antenna number
1925 		 * for Tx/Rx path or enable all antennas for diversity
1926 		 */
1927 		if (tx_ant != rx_ant)
1928 			return -EOPNOTSUPP;
1929 
1930 		if ((tx_ant & (tx_ant - 1)) &&
1931 		    (tx_ant != BIT(adapter->number_of_antenna) - 1))
1932 			return -EOPNOTSUPP;
1933 
1934 		if ((tx_ant == BIT(adapter->number_of_antenna) - 1) &&
1935 		    (priv->adapter->number_of_antenna > 1)) {
1936 			tx_ant = RF_ANTENNA_AUTO;
1937 			rx_ant = RF_ANTENNA_AUTO;
1938 		}
1939 	} else {
1940 		struct ieee80211_sta_ht_cap *ht_info;
1941 		int rx_mcs_supp;
1942 		enum nl80211_band band;
1943 
1944 		if ((tx_ant == 0x1 && rx_ant == 0x1)) {
1945 			adapter->user_dev_mcs_support = HT_STREAM_1X1;
1946 			if (adapter->is_hw_11ac_capable)
1947 				adapter->usr_dot_11ac_mcs_support =
1948 						MWIFIEX_11AC_MCS_MAP_1X1;
1949 		} else {
1950 			adapter->user_dev_mcs_support = HT_STREAM_2X2;
1951 			if (adapter->is_hw_11ac_capable)
1952 				adapter->usr_dot_11ac_mcs_support =
1953 						MWIFIEX_11AC_MCS_MAP_2X2;
1954 		}
1955 
1956 		for (band = 0; band < NUM_NL80211_BANDS; band++) {
1957 			if (!adapter->wiphy->bands[band])
1958 				continue;
1959 
1960 			ht_info = &adapter->wiphy->bands[band]->ht_cap;
1961 			rx_mcs_supp =
1962 				GET_RXMCSSUPP(adapter->user_dev_mcs_support);
1963 			memset(&ht_info->mcs, 0, adapter->number_of_antenna);
1964 			memset(&ht_info->mcs, 0xff, rx_mcs_supp);
1965 		}
1966 	}
1967 
1968 	ant_cfg.tx_ant = tx_ant;
1969 	ant_cfg.rx_ant = rx_ant;
1970 
1971 	return mwifiex_send_cmd(priv, HostCmd_CMD_RF_ANTENNA,
1972 				HostCmd_ACT_GEN_SET, 0, &ant_cfg, true);
1973 }
1974 
1975 static int
mwifiex_cfg80211_get_antenna(struct wiphy * wiphy,u32 * tx_ant,u32 * rx_ant)1976 mwifiex_cfg80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
1977 {
1978 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
1979 	struct mwifiex_private *priv = mwifiex_get_priv(adapter,
1980 							MWIFIEX_BSS_ROLE_ANY);
1981 	mwifiex_send_cmd(priv, HostCmd_CMD_RF_ANTENNA,
1982 			 HostCmd_ACT_GEN_GET, 0, NULL, true);
1983 
1984 	*tx_ant = priv->tx_ant;
1985 	*rx_ant = priv->rx_ant;
1986 
1987 	return 0;
1988 }
1989 
1990 /* cfg80211 operation handler for stop ap.
1991  * Function stops BSS running at uAP interface.
1992  */
mwifiex_cfg80211_stop_ap(struct wiphy * wiphy,struct net_device * dev,unsigned int link_id)1993 static int mwifiex_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *dev,
1994 				    unsigned int link_id)
1995 {
1996 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
1997 
1998 	mwifiex_abort_cac(priv);
1999 
2000 	if (mwifiex_del_mgmt_ies(priv))
2001 		mwifiex_dbg(priv->adapter, ERROR,
2002 			    "Failed to delete mgmt IEs!\n");
2003 
2004 	priv->ap_11n_enabled = 0;
2005 	memset(&priv->bss_cfg, 0, sizeof(priv->bss_cfg));
2006 
2007 	if (mwifiex_send_cmd(priv, HostCmd_CMD_UAP_BSS_STOP,
2008 			     HostCmd_ACT_GEN_SET, 0, NULL, true)) {
2009 		mwifiex_dbg(priv->adapter, ERROR,
2010 			    "Failed to stop the BSS\n");
2011 		return -1;
2012 	}
2013 
2014 	if (mwifiex_send_cmd(priv, HOST_CMD_APCMD_SYS_RESET,
2015 			     HostCmd_ACT_GEN_SET, 0, NULL, true)) {
2016 		mwifiex_dbg(priv->adapter, ERROR,
2017 			    "Failed to reset BSS\n");
2018 		return -1;
2019 	}
2020 
2021 	if (netif_carrier_ok(priv->netdev))
2022 		netif_carrier_off(priv->netdev);
2023 	mwifiex_stop_net_dev_queue(priv->netdev, priv->adapter);
2024 
2025 	return 0;
2026 }
2027 
2028 /* cfg80211 operation handler for start_ap.
2029  * Function sets beacon period, DTIM period, SSID and security into
2030  * AP config structure.
2031  * AP is configured with these settings and BSS is started.
2032  */
mwifiex_cfg80211_start_ap(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_ap_settings * params)2033 static int mwifiex_cfg80211_start_ap(struct wiphy *wiphy,
2034 				     struct net_device *dev,
2035 				     struct cfg80211_ap_settings *params)
2036 {
2037 	struct mwifiex_uap_bss_param *bss_cfg;
2038 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2039 
2040 	if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_UAP)
2041 		return -1;
2042 
2043 	bss_cfg = kzalloc(sizeof(struct mwifiex_uap_bss_param), GFP_KERNEL);
2044 	if (!bss_cfg)
2045 		return -ENOMEM;
2046 
2047 	mwifiex_set_sys_config_invalid_data(bss_cfg);
2048 
2049 	memcpy(bss_cfg->mac_addr, priv->curr_addr, ETH_ALEN);
2050 
2051 	if (params->beacon_interval)
2052 		bss_cfg->beacon_period = params->beacon_interval;
2053 	if (params->dtim_period)
2054 		bss_cfg->dtim_period = params->dtim_period;
2055 
2056 	if (params->ssid && params->ssid_len) {
2057 		memcpy(bss_cfg->ssid.ssid, params->ssid, params->ssid_len);
2058 		bss_cfg->ssid.ssid_len = params->ssid_len;
2059 	}
2060 	if (params->inactivity_timeout > 0) {
2061 		/* sta_ao_timer/ps_sta_ao_timer is in unit of 100ms */
2062 		bss_cfg->sta_ao_timer = 10 * params->inactivity_timeout;
2063 		bss_cfg->ps_sta_ao_timer = 10 * params->inactivity_timeout;
2064 	}
2065 
2066 	switch (params->hidden_ssid) {
2067 	case NL80211_HIDDEN_SSID_NOT_IN_USE:
2068 		bss_cfg->bcast_ssid_ctl = 1;
2069 		break;
2070 	case NL80211_HIDDEN_SSID_ZERO_LEN:
2071 		bss_cfg->bcast_ssid_ctl = 0;
2072 		break;
2073 	case NL80211_HIDDEN_SSID_ZERO_CONTENTS:
2074 		bss_cfg->bcast_ssid_ctl = 2;
2075 		break;
2076 	default:
2077 		kfree(bss_cfg);
2078 		return -EINVAL;
2079 	}
2080 
2081 	mwifiex_uap_set_channel(priv, bss_cfg, params->chandef);
2082 	mwifiex_set_uap_rates(bss_cfg, params);
2083 
2084 	if (mwifiex_set_secure_params(priv, bss_cfg, params)) {
2085 		mwifiex_dbg(priv->adapter, ERROR,
2086 			    "Failed to parse security parameters!\n");
2087 		goto out;
2088 	}
2089 
2090 	mwifiex_set_ht_params(priv, bss_cfg, params);
2091 
2092 	if (priv->adapter->is_hw_11ac_capable) {
2093 		mwifiex_set_vht_params(priv, bss_cfg, params);
2094 		mwifiex_set_vht_width(priv, params->chandef.width,
2095 				      priv->ap_11ac_enabled);
2096 	}
2097 
2098 	if (priv->ap_11ac_enabled)
2099 		mwifiex_set_11ac_ba_params(priv);
2100 	else
2101 		mwifiex_set_ba_params(priv);
2102 
2103 	mwifiex_set_wmm_params(priv, bss_cfg, params);
2104 
2105 	if (mwifiex_is_11h_active(priv))
2106 		mwifiex_set_tpc_params(priv, bss_cfg, params);
2107 
2108 	if (mwifiex_is_11h_active(priv) &&
2109 	    !cfg80211_chandef_dfs_required(wiphy, &params->chandef,
2110 					   priv->bss_mode)) {
2111 		mwifiex_dbg(priv->adapter, INFO,
2112 			    "Disable 11h extensions in FW\n");
2113 		if (mwifiex_11h_activate(priv, false)) {
2114 			mwifiex_dbg(priv->adapter, ERROR,
2115 				    "Failed to disable 11h extensions!!");
2116 			goto out;
2117 		}
2118 		priv->state_11h.is_11h_active = false;
2119 	}
2120 
2121 	mwifiex_config_uap_11d(priv, &params->beacon);
2122 
2123 	if (mwifiex_config_start_uap(priv, bss_cfg)) {
2124 		mwifiex_dbg(priv->adapter, ERROR,
2125 			    "Failed to start AP\n");
2126 		goto out;
2127 	}
2128 
2129 	if (mwifiex_set_mgmt_ies(priv, &params->beacon))
2130 		goto out;
2131 
2132 	if (!netif_carrier_ok(priv->netdev))
2133 		netif_carrier_on(priv->netdev);
2134 	mwifiex_wake_up_net_dev_queue(priv->netdev, priv->adapter);
2135 
2136 	memcpy(&priv->bss_cfg, bss_cfg, sizeof(priv->bss_cfg));
2137 	kfree(bss_cfg);
2138 	return 0;
2139 
2140 out:
2141 	kfree(bss_cfg);
2142 	return -1;
2143 }
2144 
2145 /*
2146  * CFG802.11 operation handler for disconnection request.
2147  *
2148  * This function does not work when there is already a disconnection
2149  * procedure going on.
2150  */
2151 static int
mwifiex_cfg80211_disconnect(struct wiphy * wiphy,struct net_device * dev,u16 reason_code)2152 mwifiex_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *dev,
2153 			    u16 reason_code)
2154 {
2155 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2156 
2157 	if (!mwifiex_stop_bg_scan(priv))
2158 		cfg80211_sched_scan_stopped_locked(priv->wdev.wiphy, 0);
2159 
2160 	if (mwifiex_deauthenticate(priv, NULL))
2161 		return -EFAULT;
2162 
2163 	eth_zero_addr(priv->cfg_bssid);
2164 	priv->hs2_enabled = false;
2165 
2166 	return 0;
2167 }
2168 
2169 /*
2170  * This function informs the CFG802.11 subsystem of a new IBSS.
2171  *
2172  * The following information are sent to the CFG802.11 subsystem
2173  * to register the new IBSS. If we do not register the new IBSS,
2174  * a kernel panic will result.
2175  *      - SSID
2176  *      - SSID length
2177  *      - BSSID
2178  *      - Channel
2179  */
mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private * priv)2180 static int mwifiex_cfg80211_inform_ibss_bss(struct mwifiex_private *priv)
2181 {
2182 	struct ieee80211_channel *chan;
2183 	struct mwifiex_bss_info bss_info;
2184 	struct cfg80211_bss *bss;
2185 	int ie_len;
2186 	u8 ie_buf[IEEE80211_MAX_SSID_LEN + sizeof(struct ieee_types_header)];
2187 	enum nl80211_band band;
2188 
2189 	if (mwifiex_get_bss_info(priv, &bss_info))
2190 		return -1;
2191 
2192 	ie_buf[0] = WLAN_EID_SSID;
2193 	ie_buf[1] = bss_info.ssid.ssid_len;
2194 
2195 	memcpy(&ie_buf[sizeof(struct ieee_types_header)],
2196 	       &bss_info.ssid.ssid, bss_info.ssid.ssid_len);
2197 	ie_len = ie_buf[1] + sizeof(struct ieee_types_header);
2198 
2199 	band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
2200 	chan = ieee80211_get_channel(priv->wdev.wiphy,
2201 			ieee80211_channel_to_frequency(bss_info.bss_chan,
2202 						       band));
2203 
2204 	bss = cfg80211_inform_bss(priv->wdev.wiphy, chan,
2205 				  CFG80211_BSS_FTYPE_UNKNOWN,
2206 				  bss_info.bssid, 0, WLAN_CAPABILITY_IBSS,
2207 				  0, ie_buf, ie_len, 0, GFP_KERNEL);
2208 	if (bss) {
2209 		cfg80211_put_bss(priv->wdev.wiphy, bss);
2210 		ether_addr_copy(priv->cfg_bssid, bss_info.bssid);
2211 	}
2212 
2213 	return 0;
2214 }
2215 
2216 /*
2217  * This function connects with a BSS.
2218  *
2219  * This function handles both Infra and Ad-Hoc modes. It also performs
2220  * validity checking on the provided parameters, disconnects from the
2221  * current BSS (if any), sets up the association/scan parameters,
2222  * including security settings, and performs specific SSID scan before
2223  * trying to connect.
2224  *
2225  * For Infra mode, the function returns failure if the specified SSID
2226  * is not found in scan table. However, for Ad-Hoc mode, it can create
2227  * the IBSS if it does not exist. On successful completion in either case,
2228  * the function notifies the CFG802.11 subsystem of the new BSS connection.
2229  */
2230 static int
mwifiex_cfg80211_assoc(struct mwifiex_private * priv,size_t ssid_len,const u8 * ssid,const u8 * bssid,int mode,struct ieee80211_channel * channel,struct cfg80211_connect_params * sme,bool privacy,struct cfg80211_bss ** sel_bss)2231 mwifiex_cfg80211_assoc(struct mwifiex_private *priv, size_t ssid_len,
2232 		       const u8 *ssid, const u8 *bssid, int mode,
2233 		       struct ieee80211_channel *channel,
2234 		       struct cfg80211_connect_params *sme, bool privacy,
2235 		       struct cfg80211_bss **sel_bss)
2236 {
2237 	struct cfg80211_ssid req_ssid;
2238 	int ret, auth_type = 0;
2239 	struct cfg80211_bss *bss = NULL;
2240 	u8 is_scanning_required = 0;
2241 
2242 	memset(&req_ssid, 0, sizeof(struct cfg80211_ssid));
2243 
2244 	req_ssid.ssid_len = ssid_len;
2245 	if (ssid_len > IEEE80211_MAX_SSID_LEN) {
2246 		mwifiex_dbg(priv->adapter, ERROR, "invalid SSID - aborting\n");
2247 		return -EINVAL;
2248 	}
2249 
2250 	memcpy(req_ssid.ssid, ssid, ssid_len);
2251 	if (!req_ssid.ssid_len || req_ssid.ssid[0] < 0x20) {
2252 		mwifiex_dbg(priv->adapter, ERROR, "invalid SSID - aborting\n");
2253 		return -EINVAL;
2254 	}
2255 
2256 	/* As this is new association, clear locally stored
2257 	 * keys and security related flags */
2258 	priv->sec_info.wpa_enabled = false;
2259 	priv->sec_info.wpa2_enabled = false;
2260 	priv->wep_key_curr_index = 0;
2261 	priv->sec_info.encryption_mode = 0;
2262 	priv->sec_info.is_authtype_auto = 0;
2263 	ret = mwifiex_set_encode(priv, NULL, NULL, 0, 0, NULL, 1);
2264 
2265 	if (mode == NL80211_IFTYPE_ADHOC) {
2266 		u16 enable = true;
2267 
2268 		/* set ibss coalescing_status */
2269 		ret = mwifiex_send_cmd(
2270 				priv,
2271 				HostCmd_CMD_802_11_IBSS_COALESCING_STATUS,
2272 				HostCmd_ACT_GEN_SET, 0, &enable, true);
2273 		if (ret)
2274 			return ret;
2275 
2276 		/* "privacy" is set only for ad-hoc mode */
2277 		if (privacy) {
2278 			/*
2279 			 * Keep WLAN_CIPHER_SUITE_WEP104 for now so that
2280 			 * the firmware can find a matching network from the
2281 			 * scan. The cfg80211 does not give us the encryption
2282 			 * mode at this stage so just setting it to WEP here.
2283 			 */
2284 			priv->sec_info.encryption_mode =
2285 					WLAN_CIPHER_SUITE_WEP104;
2286 			priv->sec_info.authentication_mode =
2287 					NL80211_AUTHTYPE_OPEN_SYSTEM;
2288 		}
2289 
2290 		goto done;
2291 	}
2292 
2293 	/* Now handle infra mode. "sme" is valid for infra mode only */
2294 	if (sme->auth_type == NL80211_AUTHTYPE_AUTOMATIC) {
2295 		auth_type = NL80211_AUTHTYPE_OPEN_SYSTEM;
2296 		priv->sec_info.is_authtype_auto = 1;
2297 	} else {
2298 		auth_type = sme->auth_type;
2299 	}
2300 
2301 	if (sme->crypto.n_ciphers_pairwise) {
2302 		priv->sec_info.encryption_mode =
2303 						sme->crypto.ciphers_pairwise[0];
2304 		priv->sec_info.authentication_mode = auth_type;
2305 	}
2306 
2307 	if (sme->crypto.cipher_group) {
2308 		priv->sec_info.encryption_mode = sme->crypto.cipher_group;
2309 		priv->sec_info.authentication_mode = auth_type;
2310 	}
2311 	if (sme->ie)
2312 		ret = mwifiex_set_gen_ie(priv, sme->ie, sme->ie_len);
2313 
2314 	if (sme->key) {
2315 		if (mwifiex_is_alg_wep(priv->sec_info.encryption_mode)) {
2316 			mwifiex_dbg(priv->adapter, INFO,
2317 				    "info: setting wep encryption\t"
2318 				    "with key len %d\n", sme->key_len);
2319 			priv->wep_key_curr_index = sme->key_idx;
2320 			ret = mwifiex_set_encode(priv, NULL, sme->key,
2321 						 sme->key_len, sme->key_idx,
2322 						 NULL, 0);
2323 		}
2324 	}
2325 done:
2326 	/*
2327 	 * Scan entries are valid for some time (15 sec). So we can save one
2328 	 * active scan time if we just try cfg80211_get_bss first. If it fails
2329 	 * then request scan and cfg80211_get_bss() again for final output.
2330 	 */
2331 	while (1) {
2332 		if (is_scanning_required) {
2333 			/* Do specific SSID scanning */
2334 			if (mwifiex_request_scan(priv, &req_ssid)) {
2335 				mwifiex_dbg(priv->adapter, ERROR, "scan error\n");
2336 				return -EFAULT;
2337 			}
2338 		}
2339 
2340 		/* Find the BSS we want using available scan results */
2341 		if (mode == NL80211_IFTYPE_ADHOC)
2342 			bss = cfg80211_get_bss(priv->wdev.wiphy, channel,
2343 					       bssid, ssid, ssid_len,
2344 					       IEEE80211_BSS_TYPE_IBSS,
2345 					       IEEE80211_PRIVACY_ANY);
2346 		else
2347 			bss = cfg80211_get_bss(priv->wdev.wiphy, channel,
2348 					       bssid, ssid, ssid_len,
2349 					       IEEE80211_BSS_TYPE_ESS,
2350 					       IEEE80211_PRIVACY_ANY);
2351 
2352 		if (!bss) {
2353 			if (is_scanning_required) {
2354 				mwifiex_dbg(priv->adapter, MSG,
2355 					    "assoc: requested bss not found in scan results\n");
2356 				break;
2357 			}
2358 			is_scanning_required = 1;
2359 		} else {
2360 			mwifiex_dbg(priv->adapter, MSG,
2361 				    "info: trying to associate to bssid %pM\n",
2362 				    bss->bssid);
2363 			memcpy(&priv->cfg_bssid, bss->bssid, ETH_ALEN);
2364 			break;
2365 		}
2366 	}
2367 
2368 	if (bss)
2369 		cfg80211_ref_bss(priv->adapter->wiphy, bss);
2370 
2371 	ret = mwifiex_bss_start(priv, bss, &req_ssid);
2372 	if (ret)
2373 		goto cleanup;
2374 
2375 	if (mode == NL80211_IFTYPE_ADHOC) {
2376 		/* Inform the BSS information to kernel, otherwise
2377 		 * kernel will give a panic after successful assoc */
2378 		if (mwifiex_cfg80211_inform_ibss_bss(priv)) {
2379 			ret = -EFAULT;
2380 			goto cleanup;
2381 		}
2382 	}
2383 
2384 	/* Pass the selected BSS entry to caller. */
2385 	if (sel_bss) {
2386 		*sel_bss = bss;
2387 		bss = NULL;
2388 	}
2389 
2390 cleanup:
2391 	if (bss)
2392 		cfg80211_put_bss(priv->adapter->wiphy, bss);
2393 	return ret;
2394 }
2395 
2396 /*
2397  * CFG802.11 operation handler for association request.
2398  *
2399  * This function does not work when the current mode is set to Ad-Hoc, or
2400  * when there is already an association procedure going on. The given BSS
2401  * information is used to associate.
2402  */
2403 static int
mwifiex_cfg80211_connect(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_connect_params * sme)2404 mwifiex_cfg80211_connect(struct wiphy *wiphy, struct net_device *dev,
2405 			 struct cfg80211_connect_params *sme)
2406 {
2407 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2408 	struct mwifiex_adapter *adapter = priv->adapter;
2409 	struct cfg80211_bss *bss = NULL;
2410 	int ret;
2411 
2412 	if (GET_BSS_ROLE(priv) != MWIFIEX_BSS_ROLE_STA) {
2413 		mwifiex_dbg(adapter, ERROR,
2414 			    "%s: reject infra assoc request in non-STA role\n",
2415 			    dev->name);
2416 		return -EINVAL;
2417 	}
2418 
2419 	if (priv->wdev.connected) {
2420 		mwifiex_dbg(adapter, ERROR,
2421 			    "%s: already connected\n", dev->name);
2422 		return -EALREADY;
2423 	}
2424 
2425 	if (priv->scan_block)
2426 		priv->scan_block = false;
2427 
2428 	if (test_bit(MWIFIEX_SURPRISE_REMOVED, &adapter->work_flags) ||
2429 	    test_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags)) {
2430 		mwifiex_dbg(adapter, ERROR,
2431 			    "%s: Ignore connection.\t"
2432 			    "Card removed or FW in bad state\n",
2433 			    dev->name);
2434 		return -EFAULT;
2435 	}
2436 
2437 	mwifiex_dbg(adapter, INFO,
2438 		    "info: Trying to associate to bssid %pM\n", sme->bssid);
2439 
2440 	if (!mwifiex_stop_bg_scan(priv))
2441 		cfg80211_sched_scan_stopped_locked(priv->wdev.wiphy, 0);
2442 
2443 	ret = mwifiex_cfg80211_assoc(priv, sme->ssid_len, sme->ssid, sme->bssid,
2444 				     priv->bss_mode, sme->channel, sme, 0,
2445 				     &bss);
2446 	if (!ret) {
2447 		cfg80211_connect_bss(priv->netdev, priv->cfg_bssid, bss, NULL,
2448 				     0, NULL, 0, WLAN_STATUS_SUCCESS,
2449 				     GFP_KERNEL, NL80211_TIMEOUT_UNSPECIFIED);
2450 		mwifiex_dbg(priv->adapter, MSG,
2451 			    "info: associated to bssid %pM successfully\n",
2452 			    priv->cfg_bssid);
2453 		if (ISSUPP_TDLS_ENABLED(priv->adapter->fw_cap_info) &&
2454 		    priv->adapter->auto_tdls &&
2455 		    priv->bss_type == MWIFIEX_BSS_TYPE_STA)
2456 			mwifiex_setup_auto_tdls_timer(priv);
2457 	} else {
2458 		mwifiex_dbg(priv->adapter, ERROR,
2459 			    "info: association to bssid %pM failed\n",
2460 			    priv->cfg_bssid);
2461 		eth_zero_addr(priv->cfg_bssid);
2462 
2463 		if (ret > 0)
2464 			cfg80211_connect_result(priv->netdev, priv->cfg_bssid,
2465 						NULL, 0, NULL, 0, ret,
2466 						GFP_KERNEL);
2467 		else
2468 			cfg80211_connect_result(priv->netdev, priv->cfg_bssid,
2469 						NULL, 0, NULL, 0,
2470 						WLAN_STATUS_UNSPECIFIED_FAILURE,
2471 						GFP_KERNEL);
2472 	}
2473 
2474 	return 0;
2475 }
2476 
2477 /*
2478  * This function sets following parameters for ibss network.
2479  *  -  channel
2480  *  -  start band
2481  *  -  11n flag
2482  *  -  secondary channel offset
2483  */
mwifiex_set_ibss_params(struct mwifiex_private * priv,struct cfg80211_ibss_params * params)2484 static int mwifiex_set_ibss_params(struct mwifiex_private *priv,
2485 				   struct cfg80211_ibss_params *params)
2486 {
2487 	struct mwifiex_adapter *adapter = priv->adapter;
2488 	int index = 0, i;
2489 	u8 config_bands = 0;
2490 
2491 	if (params->chandef.chan->band == NL80211_BAND_2GHZ) {
2492 		if (!params->basic_rates) {
2493 			config_bands = BAND_B | BAND_G;
2494 		} else {
2495 			for (i = 0; i < mwifiex_band_2ghz.n_bitrates; i++) {
2496 				/*
2497 				 * Rates below 6 Mbps in the table are CCK
2498 				 * rates; 802.11b and from 6 they are OFDM;
2499 				 * 802.11G
2500 				 */
2501 				if (mwifiex_rates[i].bitrate == 60) {
2502 					index = 1 << i;
2503 					break;
2504 				}
2505 			}
2506 
2507 			if (params->basic_rates < index) {
2508 				config_bands = BAND_B;
2509 			} else {
2510 				config_bands = BAND_G;
2511 				if (params->basic_rates % index)
2512 					config_bands |= BAND_B;
2513 			}
2514 		}
2515 
2516 		if (cfg80211_get_chandef_type(&params->chandef) !=
2517 						NL80211_CHAN_NO_HT)
2518 			config_bands |= BAND_G | BAND_GN;
2519 	} else {
2520 		if (cfg80211_get_chandef_type(&params->chandef) ==
2521 						NL80211_CHAN_NO_HT)
2522 			config_bands = BAND_A;
2523 		else
2524 			config_bands = BAND_AN | BAND_A;
2525 	}
2526 
2527 	if (!((config_bands | adapter->fw_bands) & ~adapter->fw_bands)) {
2528 		adapter->config_bands = config_bands;
2529 		adapter->adhoc_start_band = config_bands;
2530 
2531 		if ((config_bands & BAND_GN) || (config_bands & BAND_AN))
2532 			adapter->adhoc_11n_enabled = true;
2533 		else
2534 			adapter->adhoc_11n_enabled = false;
2535 	}
2536 
2537 	adapter->sec_chan_offset =
2538 		mwifiex_chan_type_to_sec_chan_offset(
2539 			cfg80211_get_chandef_type(&params->chandef));
2540 	priv->adhoc_channel = ieee80211_frequency_to_channel(
2541 				params->chandef.chan->center_freq);
2542 
2543 	mwifiex_dbg(adapter, INFO,
2544 		    "info: set ibss band %d, chan %d, chan offset %d\n",
2545 		    config_bands, priv->adhoc_channel,
2546 		    adapter->sec_chan_offset);
2547 
2548 	return 0;
2549 }
2550 
2551 /*
2552  * CFG802.11 operation handler to join an IBSS.
2553  *
2554  * This function does not work in any mode other than Ad-Hoc, or if
2555  * a join operation is already in progress.
2556  */
2557 static int
mwifiex_cfg80211_join_ibss(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_ibss_params * params)2558 mwifiex_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2559 			   struct cfg80211_ibss_params *params)
2560 {
2561 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2562 	int ret = 0;
2563 
2564 	if (priv->bss_mode != NL80211_IFTYPE_ADHOC) {
2565 		mwifiex_dbg(priv->adapter, ERROR,
2566 			    "request to join ibss received\t"
2567 			    "when station is not in ibss mode\n");
2568 		goto done;
2569 	}
2570 
2571 	mwifiex_dbg(priv->adapter, MSG, "info: trying to join to bssid %pM\n",
2572 		    params->bssid);
2573 
2574 	mwifiex_set_ibss_params(priv, params);
2575 
2576 	ret = mwifiex_cfg80211_assoc(priv, params->ssid_len, params->ssid,
2577 				     params->bssid, priv->bss_mode,
2578 				     params->chandef.chan, NULL,
2579 				     params->privacy, NULL);
2580 done:
2581 	if (!ret) {
2582 		cfg80211_ibss_joined(priv->netdev, priv->cfg_bssid,
2583 				     params->chandef.chan, GFP_KERNEL);
2584 		mwifiex_dbg(priv->adapter, MSG,
2585 			    "info: joined/created adhoc network with bssid\t"
2586 			    "%pM successfully\n", priv->cfg_bssid);
2587 	} else {
2588 		mwifiex_dbg(priv->adapter, ERROR,
2589 			    "info: failed creating/joining adhoc network\n");
2590 	}
2591 
2592 	return ret;
2593 }
2594 
2595 /*
2596  * CFG802.11 operation handler to leave an IBSS.
2597  *
2598  * This function does not work if a leave operation is
2599  * already in progress.
2600  */
2601 static int
mwifiex_cfg80211_leave_ibss(struct wiphy * wiphy,struct net_device * dev)2602 mwifiex_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2603 {
2604 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2605 
2606 	mwifiex_dbg(priv->adapter, MSG, "info: disconnecting from essid %pM\n",
2607 		    priv->cfg_bssid);
2608 	if (mwifiex_deauthenticate(priv, NULL))
2609 		return -EFAULT;
2610 
2611 	eth_zero_addr(priv->cfg_bssid);
2612 
2613 	return 0;
2614 }
2615 
2616 /*
2617  * CFG802.11 operation handler for scan request.
2618  *
2619  * This function issues a scan request to the firmware based upon
2620  * the user specified scan configuration. On successful completion,
2621  * it also informs the results.
2622  */
2623 static int
mwifiex_cfg80211_scan(struct wiphy * wiphy,struct cfg80211_scan_request * request)2624 mwifiex_cfg80211_scan(struct wiphy *wiphy,
2625 		      struct cfg80211_scan_request *request)
2626 {
2627 	struct net_device *dev = request->wdev->netdev;
2628 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2629 	int i, offset, ret;
2630 	struct ieee80211_channel *chan;
2631 	struct ieee_types_header *ie;
2632 	struct mwifiex_user_scan_cfg *user_scan_cfg;
2633 	u8 mac_addr[ETH_ALEN];
2634 
2635 	mwifiex_dbg(priv->adapter, CMD,
2636 		    "info: received scan request on %s\n", dev->name);
2637 
2638 	/* Block scan request if scan operation or scan cleanup when interface
2639 	 * is disabled is in process
2640 	 */
2641 	if (priv->scan_request || priv->scan_aborting) {
2642 		mwifiex_dbg(priv->adapter, WARN,
2643 			    "cmd: Scan already in process..\n");
2644 		return -EBUSY;
2645 	}
2646 
2647 	if (!priv->wdev.connected && priv->scan_block)
2648 		priv->scan_block = false;
2649 
2650 	if (!mwifiex_stop_bg_scan(priv))
2651 		cfg80211_sched_scan_stopped_locked(priv->wdev.wiphy, 0);
2652 
2653 	user_scan_cfg = kzalloc(sizeof(*user_scan_cfg), GFP_KERNEL);
2654 	if (!user_scan_cfg)
2655 		return -ENOMEM;
2656 
2657 	priv->scan_request = request;
2658 
2659 	if (request->flags & NL80211_SCAN_FLAG_RANDOM_ADDR) {
2660 		get_random_mask_addr(mac_addr, request->mac_addr,
2661 				     request->mac_addr_mask);
2662 		ether_addr_copy(request->mac_addr, mac_addr);
2663 		ether_addr_copy(user_scan_cfg->random_mac, mac_addr);
2664 	}
2665 
2666 	user_scan_cfg->num_ssids = request->n_ssids;
2667 	user_scan_cfg->ssid_list = request->ssids;
2668 
2669 	if (request->ie && request->ie_len) {
2670 		offset = 0;
2671 		for (i = 0; i < MWIFIEX_MAX_VSIE_NUM; i++) {
2672 			if (priv->vs_ie[i].mask != MWIFIEX_VSIE_MASK_CLEAR)
2673 				continue;
2674 			priv->vs_ie[i].mask = MWIFIEX_VSIE_MASK_SCAN;
2675 			ie = (struct ieee_types_header *)(request->ie + offset);
2676 			memcpy(&priv->vs_ie[i].ie, ie, sizeof(*ie) + ie->len);
2677 			offset += sizeof(*ie) + ie->len;
2678 
2679 			if (offset >= request->ie_len)
2680 				break;
2681 		}
2682 	}
2683 
2684 	for (i = 0; i < min_t(u32, request->n_channels,
2685 			      MWIFIEX_USER_SCAN_CHAN_MAX); i++) {
2686 		chan = request->channels[i];
2687 		user_scan_cfg->chan_list[i].chan_number = chan->hw_value;
2688 		user_scan_cfg->chan_list[i].radio_type = chan->band;
2689 
2690 		if ((chan->flags & IEEE80211_CHAN_NO_IR) || !request->n_ssids)
2691 			user_scan_cfg->chan_list[i].scan_type =
2692 						MWIFIEX_SCAN_TYPE_PASSIVE;
2693 		else
2694 			user_scan_cfg->chan_list[i].scan_type =
2695 						MWIFIEX_SCAN_TYPE_ACTIVE;
2696 
2697 		user_scan_cfg->chan_list[i].scan_time = 0;
2698 	}
2699 
2700 	if (priv->adapter->scan_chan_gap_enabled &&
2701 	    mwifiex_is_any_intf_active(priv))
2702 		user_scan_cfg->scan_chan_gap =
2703 					      priv->adapter->scan_chan_gap_time;
2704 
2705 	ret = mwifiex_scan_networks(priv, user_scan_cfg);
2706 	kfree(user_scan_cfg);
2707 	if (ret) {
2708 		mwifiex_dbg(priv->adapter, ERROR,
2709 			    "scan failed: %d\n", ret);
2710 		priv->scan_aborting = false;
2711 		priv->scan_request = NULL;
2712 		return ret;
2713 	}
2714 
2715 	if (request->ie && request->ie_len) {
2716 		for (i = 0; i < MWIFIEX_MAX_VSIE_NUM; i++) {
2717 			if (priv->vs_ie[i].mask == MWIFIEX_VSIE_MASK_SCAN) {
2718 				priv->vs_ie[i].mask = MWIFIEX_VSIE_MASK_CLEAR;
2719 				memset(&priv->vs_ie[i].ie, 0,
2720 				       MWIFIEX_MAX_VSIE_LEN);
2721 			}
2722 		}
2723 	}
2724 	return 0;
2725 }
2726 
2727 /* CFG802.11 operation handler for sched_scan_start.
2728  *
2729  * This function issues a bgscan config request to the firmware based upon
2730  * the user specified sched_scan configuration. On successful completion,
2731  * firmware will generate BGSCAN_REPORT event, driver should issue bgscan
2732  * query command to get sched_scan results from firmware.
2733  */
2734 static int
mwifiex_cfg80211_sched_scan_start(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_sched_scan_request * request)2735 mwifiex_cfg80211_sched_scan_start(struct wiphy *wiphy,
2736 				  struct net_device *dev,
2737 				  struct cfg80211_sched_scan_request *request)
2738 {
2739 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2740 	int i, offset;
2741 	struct ieee80211_channel *chan;
2742 	struct mwifiex_bg_scan_cfg *bgscan_cfg;
2743 	struct ieee_types_header *ie;
2744 
2745 	if (!request || (!request->n_ssids && !request->n_match_sets)) {
2746 		wiphy_err(wiphy, "%s : Invalid Sched_scan parameters",
2747 			  __func__);
2748 		return -EINVAL;
2749 	}
2750 
2751 	wiphy_info(wiphy, "sched_scan start : n_ssids=%d n_match_sets=%d ",
2752 		   request->n_ssids, request->n_match_sets);
2753 	wiphy_info(wiphy, "n_channels=%d interval=%d ie_len=%d\n",
2754 		   request->n_channels, request->scan_plans->interval,
2755 		   (int)request->ie_len);
2756 
2757 	bgscan_cfg = kzalloc(sizeof(*bgscan_cfg), GFP_KERNEL);
2758 	if (!bgscan_cfg)
2759 		return -ENOMEM;
2760 
2761 	if (priv->scan_request || priv->scan_aborting)
2762 		bgscan_cfg->start_later = true;
2763 
2764 	bgscan_cfg->num_ssids = request->n_match_sets;
2765 	bgscan_cfg->ssid_list = request->match_sets;
2766 
2767 	if (request->ie && request->ie_len) {
2768 		offset = 0;
2769 		for (i = 0; i < MWIFIEX_MAX_VSIE_NUM; i++) {
2770 			if (priv->vs_ie[i].mask != MWIFIEX_VSIE_MASK_CLEAR)
2771 				continue;
2772 			priv->vs_ie[i].mask = MWIFIEX_VSIE_MASK_BGSCAN;
2773 			ie = (struct ieee_types_header *)(request->ie + offset);
2774 			memcpy(&priv->vs_ie[i].ie, ie, sizeof(*ie) + ie->len);
2775 			offset += sizeof(*ie) + ie->len;
2776 
2777 			if (offset >= request->ie_len)
2778 				break;
2779 		}
2780 	}
2781 
2782 	for (i = 0; i < min_t(u32, request->n_channels,
2783 			      MWIFIEX_BG_SCAN_CHAN_MAX); i++) {
2784 		chan = request->channels[i];
2785 		bgscan_cfg->chan_list[i].chan_number = chan->hw_value;
2786 		bgscan_cfg->chan_list[i].radio_type = chan->band;
2787 
2788 		if ((chan->flags & IEEE80211_CHAN_NO_IR) || !request->n_ssids)
2789 			bgscan_cfg->chan_list[i].scan_type =
2790 						MWIFIEX_SCAN_TYPE_PASSIVE;
2791 		else
2792 			bgscan_cfg->chan_list[i].scan_type =
2793 						MWIFIEX_SCAN_TYPE_ACTIVE;
2794 
2795 		bgscan_cfg->chan_list[i].scan_time = 0;
2796 	}
2797 
2798 	bgscan_cfg->chan_per_scan = min_t(u32, request->n_channels,
2799 					  MWIFIEX_BG_SCAN_CHAN_MAX);
2800 
2801 	/* Use at least 15 second for per scan cycle */
2802 	bgscan_cfg->scan_interval = (request->scan_plans->interval >
2803 				     MWIFIEX_BGSCAN_INTERVAL) ?
2804 				request->scan_plans->interval :
2805 				MWIFIEX_BGSCAN_INTERVAL;
2806 
2807 	bgscan_cfg->repeat_count = MWIFIEX_BGSCAN_REPEAT_COUNT;
2808 	bgscan_cfg->report_condition = MWIFIEX_BGSCAN_SSID_MATCH |
2809 				MWIFIEX_BGSCAN_WAIT_ALL_CHAN_DONE;
2810 	bgscan_cfg->bss_type = MWIFIEX_BSS_MODE_INFRA;
2811 	bgscan_cfg->action = MWIFIEX_BGSCAN_ACT_SET;
2812 	bgscan_cfg->enable = true;
2813 	if (request->min_rssi_thold != NL80211_SCAN_RSSI_THOLD_OFF) {
2814 		bgscan_cfg->report_condition |= MWIFIEX_BGSCAN_SSID_RSSI_MATCH;
2815 		bgscan_cfg->rssi_threshold = request->min_rssi_thold;
2816 	}
2817 
2818 	if (mwifiex_send_cmd(priv, HostCmd_CMD_802_11_BG_SCAN_CONFIG,
2819 			     HostCmd_ACT_GEN_SET, 0, bgscan_cfg, true)) {
2820 		kfree(bgscan_cfg);
2821 		return -EFAULT;
2822 	}
2823 
2824 	priv->sched_scanning = true;
2825 
2826 	kfree(bgscan_cfg);
2827 	return 0;
2828 }
2829 
2830 /* CFG802.11 operation handler for sched_scan_stop.
2831  *
2832  * This function issues a bgscan config command to disable
2833  * previous bgscan configuration in the firmware
2834  */
mwifiex_cfg80211_sched_scan_stop(struct wiphy * wiphy,struct net_device * dev,u64 reqid)2835 static int mwifiex_cfg80211_sched_scan_stop(struct wiphy *wiphy,
2836 					    struct net_device *dev, u64 reqid)
2837 {
2838 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
2839 
2840 	wiphy_info(wiphy, "sched scan stop!");
2841 	mwifiex_stop_bg_scan(priv);
2842 
2843 	return 0;
2844 }
2845 
mwifiex_setup_vht_caps(struct ieee80211_sta_vht_cap * vht_info,struct mwifiex_private * priv)2846 static void mwifiex_setup_vht_caps(struct ieee80211_sta_vht_cap *vht_info,
2847 				   struct mwifiex_private *priv)
2848 {
2849 	struct mwifiex_adapter *adapter = priv->adapter;
2850 
2851 	vht_info->vht_supported = true;
2852 
2853 	vht_info->cap = adapter->hw_dot_11ac_dev_cap;
2854 	/* Update MCS support for VHT */
2855 	vht_info->vht_mcs.rx_mcs_map = cpu_to_le16(
2856 				adapter->hw_dot_11ac_mcs_support & 0xFFFF);
2857 	vht_info->vht_mcs.rx_highest = 0;
2858 	vht_info->vht_mcs.tx_mcs_map = cpu_to_le16(
2859 				adapter->hw_dot_11ac_mcs_support >> 16);
2860 	vht_info->vht_mcs.tx_highest = 0;
2861 }
2862 
2863 /*
2864  * This function sets up the CFG802.11 specific HT capability fields
2865  * with default values.
2866  *
2867  * The following default values are set -
2868  *      - HT Supported = True
2869  *      - Maximum AMPDU length factor = IEEE80211_HT_MAX_AMPDU_64K
2870  *      - Minimum AMPDU spacing = IEEE80211_HT_MPDU_DENSITY_NONE
2871  *      - HT Capabilities supported by firmware
2872  *      - MCS information, Rx mask = 0xff
2873  *      - MCD information, Tx parameters = IEEE80211_HT_MCS_TX_DEFINED (0x01)
2874  */
2875 static void
mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap * ht_info,struct mwifiex_private * priv)2876 mwifiex_setup_ht_caps(struct ieee80211_sta_ht_cap *ht_info,
2877 		      struct mwifiex_private *priv)
2878 {
2879 	int rx_mcs_supp;
2880 	struct ieee80211_mcs_info mcs_set;
2881 	u8 *mcs = (u8 *)&mcs_set;
2882 	struct mwifiex_adapter *adapter = priv->adapter;
2883 
2884 	ht_info->ht_supported = true;
2885 	ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
2886 	ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE;
2887 
2888 	memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
2889 
2890 	/* Fill HT capability information */
2891 	if (ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
2892 		ht_info->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
2893 	else
2894 		ht_info->cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
2895 
2896 	if (ISSUPP_SHORTGI20(adapter->hw_dot_11n_dev_cap))
2897 		ht_info->cap |= IEEE80211_HT_CAP_SGI_20;
2898 	else
2899 		ht_info->cap &= ~IEEE80211_HT_CAP_SGI_20;
2900 
2901 	if (ISSUPP_SHORTGI40(adapter->hw_dot_11n_dev_cap))
2902 		ht_info->cap |= IEEE80211_HT_CAP_SGI_40;
2903 	else
2904 		ht_info->cap &= ~IEEE80211_HT_CAP_SGI_40;
2905 
2906 	if (adapter->user_dev_mcs_support == HT_STREAM_2X2)
2907 		ht_info->cap |= 2 << IEEE80211_HT_CAP_RX_STBC_SHIFT;
2908 	else
2909 		ht_info->cap |= 1 << IEEE80211_HT_CAP_RX_STBC_SHIFT;
2910 
2911 	if (ISSUPP_TXSTBC(adapter->hw_dot_11n_dev_cap))
2912 		ht_info->cap |= IEEE80211_HT_CAP_TX_STBC;
2913 	else
2914 		ht_info->cap &= ~IEEE80211_HT_CAP_TX_STBC;
2915 
2916 	if (ISSUPP_GREENFIELD(adapter->hw_dot_11n_dev_cap))
2917 		ht_info->cap |= IEEE80211_HT_CAP_GRN_FLD;
2918 	else
2919 		ht_info->cap &= ~IEEE80211_HT_CAP_GRN_FLD;
2920 
2921 	if (ISENABLED_40MHZ_INTOLERANT(adapter->hw_dot_11n_dev_cap))
2922 		ht_info->cap |= IEEE80211_HT_CAP_40MHZ_INTOLERANT;
2923 	else
2924 		ht_info->cap &= ~IEEE80211_HT_CAP_40MHZ_INTOLERANT;
2925 
2926 	if (ISSUPP_RXLDPC(adapter->hw_dot_11n_dev_cap))
2927 		ht_info->cap |= IEEE80211_HT_CAP_LDPC_CODING;
2928 	else
2929 		ht_info->cap &= ~IEEE80211_HT_CAP_LDPC_CODING;
2930 
2931 	ht_info->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU;
2932 	ht_info->cap |= IEEE80211_HT_CAP_SM_PS;
2933 
2934 	rx_mcs_supp = GET_RXMCSSUPP(adapter->user_dev_mcs_support);
2935 	/* Set MCS for 1x1/2x2 */
2936 	memset(mcs, 0xff, rx_mcs_supp);
2937 	/* Clear all the other values */
2938 	memset(&mcs[rx_mcs_supp], 0,
2939 	       sizeof(struct ieee80211_mcs_info) - rx_mcs_supp);
2940 	if (priv->bss_mode == NL80211_IFTYPE_STATION ||
2941 	    ISSUPP_CHANWIDTH40(adapter->hw_dot_11n_dev_cap))
2942 		/* Set MCS32 for infra mode or ad-hoc mode with 40MHz support */
2943 		SETHT_MCS32(mcs_set.rx_mask);
2944 
2945 	memcpy((u8 *) &ht_info->mcs, mcs, sizeof(struct ieee80211_mcs_info));
2946 
2947 	ht_info->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
2948 }
2949 
2950 /*
2951  *  create a new virtual interface with the given name and name assign type
2952  */
mwifiex_add_virtual_intf(struct wiphy * wiphy,const char * name,unsigned char name_assign_type,enum nl80211_iftype type,struct vif_params * params)2953 struct wireless_dev *mwifiex_add_virtual_intf(struct wiphy *wiphy,
2954 					      const char *name,
2955 					      unsigned char name_assign_type,
2956 					      enum nl80211_iftype type,
2957 					      struct vif_params *params)
2958 {
2959 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
2960 	struct mwifiex_private *priv;
2961 	struct net_device *dev;
2962 	void *mdev_priv;
2963 	int ret;
2964 
2965 	if (!adapter)
2966 		return ERR_PTR(-EFAULT);
2967 
2968 	switch (type) {
2969 	case NL80211_IFTYPE_UNSPECIFIED:
2970 	case NL80211_IFTYPE_STATION:
2971 	case NL80211_IFTYPE_ADHOC:
2972 		if (adapter->curr_iface_comb.sta_intf ==
2973 		    adapter->iface_limit.sta_intf) {
2974 			mwifiex_dbg(adapter, ERROR,
2975 				    "cannot create multiple sta/adhoc ifaces\n");
2976 			return ERR_PTR(-EINVAL);
2977 		}
2978 
2979 		priv = mwifiex_get_unused_priv_by_bss_type(
2980 						adapter, MWIFIEX_BSS_TYPE_STA);
2981 		if (!priv) {
2982 			mwifiex_dbg(adapter, ERROR,
2983 				    "could not get free private struct\n");
2984 			return ERR_PTR(-EFAULT);
2985 		}
2986 
2987 		priv->wdev.wiphy = wiphy;
2988 		priv->wdev.iftype = NL80211_IFTYPE_STATION;
2989 
2990 		if (type == NL80211_IFTYPE_UNSPECIFIED)
2991 			priv->bss_mode = NL80211_IFTYPE_STATION;
2992 		else
2993 			priv->bss_mode = type;
2994 
2995 		priv->bss_type = MWIFIEX_BSS_TYPE_STA;
2996 		priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
2997 		priv->bss_priority = 0;
2998 		priv->bss_role = MWIFIEX_BSS_ROLE_STA;
2999 
3000 		break;
3001 	case NL80211_IFTYPE_AP:
3002 		if (adapter->curr_iface_comb.uap_intf ==
3003 		    adapter->iface_limit.uap_intf) {
3004 			mwifiex_dbg(adapter, ERROR,
3005 				    "cannot create multiple AP ifaces\n");
3006 			return ERR_PTR(-EINVAL);
3007 		}
3008 
3009 		priv = mwifiex_get_unused_priv_by_bss_type(
3010 						adapter, MWIFIEX_BSS_TYPE_UAP);
3011 		if (!priv) {
3012 			mwifiex_dbg(adapter, ERROR,
3013 				    "could not get free private struct\n");
3014 			return ERR_PTR(-EFAULT);
3015 		}
3016 
3017 		priv->wdev.wiphy = wiphy;
3018 		priv->wdev.iftype = NL80211_IFTYPE_AP;
3019 
3020 		priv->bss_type = MWIFIEX_BSS_TYPE_UAP;
3021 		priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
3022 		priv->bss_priority = 0;
3023 		priv->bss_role = MWIFIEX_BSS_ROLE_UAP;
3024 		priv->bss_started = 0;
3025 		priv->bss_mode = type;
3026 
3027 		break;
3028 	case NL80211_IFTYPE_P2P_CLIENT:
3029 		if (adapter->curr_iface_comb.p2p_intf ==
3030 		    adapter->iface_limit.p2p_intf) {
3031 			mwifiex_dbg(adapter, ERROR,
3032 				    "cannot create multiple P2P ifaces\n");
3033 			return ERR_PTR(-EINVAL);
3034 		}
3035 
3036 		priv = mwifiex_get_unused_priv_by_bss_type(
3037 						adapter, MWIFIEX_BSS_TYPE_P2P);
3038 		if (!priv) {
3039 			mwifiex_dbg(adapter, ERROR,
3040 				    "could not get free private struct\n");
3041 			return ERR_PTR(-EFAULT);
3042 		}
3043 
3044 		priv->wdev.wiphy = wiphy;
3045 		/* At start-up, wpa_supplicant tries to change the interface
3046 		 * to NL80211_IFTYPE_STATION if it is not managed mode.
3047 		 */
3048 		priv->wdev.iftype = NL80211_IFTYPE_P2P_CLIENT;
3049 		priv->bss_mode = NL80211_IFTYPE_P2P_CLIENT;
3050 
3051 		/* Setting bss_type to P2P tells firmware that this interface
3052 		 * is receiving P2P peers found during find phase and doing
3053 		 * action frame handshake.
3054 		 */
3055 		priv->bss_type = MWIFIEX_BSS_TYPE_P2P;
3056 
3057 		priv->frame_type = MWIFIEX_DATA_FRAME_TYPE_ETH_II;
3058 		priv->bss_priority = 0;
3059 		priv->bss_role = MWIFIEX_BSS_ROLE_STA;
3060 		priv->bss_started = 0;
3061 
3062 		if (mwifiex_cfg80211_init_p2p_client(priv)) {
3063 			memset(&priv->wdev, 0, sizeof(priv->wdev));
3064 			priv->wdev.iftype = NL80211_IFTYPE_UNSPECIFIED;
3065 			return ERR_PTR(-EFAULT);
3066 		}
3067 
3068 		break;
3069 	default:
3070 		mwifiex_dbg(adapter, ERROR, "type not supported\n");
3071 		return ERR_PTR(-EINVAL);
3072 	}
3073 
3074 	dev = alloc_netdev_mqs(sizeof(struct mwifiex_private *), name,
3075 			       name_assign_type, ether_setup,
3076 			       IEEE80211_NUM_ACS, 1);
3077 	if (!dev) {
3078 		mwifiex_dbg(adapter, ERROR,
3079 			    "no memory available for netdevice\n");
3080 		ret = -ENOMEM;
3081 		goto err_alloc_netdev;
3082 	}
3083 
3084 	mwifiex_init_priv_params(priv, dev);
3085 
3086 	priv->netdev = dev;
3087 
3088 	if (!adapter->mfg_mode) {
3089 		mwifiex_set_mac_address(priv, dev, false, NULL);
3090 
3091 		ret = mwifiex_send_cmd(priv, HostCmd_CMD_SET_BSS_MODE,
3092 				       HostCmd_ACT_GEN_SET, 0, NULL, true);
3093 		if (ret)
3094 			goto err_set_bss_mode;
3095 
3096 		ret = mwifiex_sta_init_cmd(priv, false, false);
3097 		if (ret)
3098 			goto err_sta_init;
3099 	}
3100 
3101 	mwifiex_setup_ht_caps(&wiphy->bands[NL80211_BAND_2GHZ]->ht_cap, priv);
3102 	if (adapter->is_hw_11ac_capable)
3103 		mwifiex_setup_vht_caps(
3104 			&wiphy->bands[NL80211_BAND_2GHZ]->vht_cap, priv);
3105 
3106 	if (adapter->config_bands & BAND_A)
3107 		mwifiex_setup_ht_caps(
3108 			&wiphy->bands[NL80211_BAND_5GHZ]->ht_cap, priv);
3109 
3110 	if ((adapter->config_bands & BAND_A) && adapter->is_hw_11ac_capable)
3111 		mwifiex_setup_vht_caps(
3112 			&wiphy->bands[NL80211_BAND_5GHZ]->vht_cap, priv);
3113 
3114 	dev_net_set(dev, wiphy_net(wiphy));
3115 	dev->ieee80211_ptr = &priv->wdev;
3116 	dev->ieee80211_ptr->iftype = priv->bss_mode;
3117 	SET_NETDEV_DEV(dev, wiphy_dev(wiphy));
3118 
3119 	dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
3120 	dev->watchdog_timeo = MWIFIEX_DEFAULT_WATCHDOG_TIMEOUT;
3121 	dev->needed_headroom = MWIFIEX_MIN_DATA_HEADER_LEN;
3122 	dev->ethtool_ops = &mwifiex_ethtool_ops;
3123 
3124 	mdev_priv = netdev_priv(dev);
3125 	*((unsigned long *) mdev_priv) = (unsigned long) priv;
3126 
3127 	SET_NETDEV_DEV(dev, adapter->dev);
3128 
3129 	priv->dfs_cac_workqueue = alloc_workqueue("MWIFIEX_DFS_CAC%s",
3130 						  WQ_HIGHPRI |
3131 						  WQ_MEM_RECLAIM |
3132 						  WQ_UNBOUND, 0, name);
3133 	if (!priv->dfs_cac_workqueue) {
3134 		mwifiex_dbg(adapter, ERROR, "cannot alloc DFS CAC queue\n");
3135 		ret = -ENOMEM;
3136 		goto err_alloc_cac;
3137 	}
3138 
3139 	INIT_DELAYED_WORK(&priv->dfs_cac_work, mwifiex_dfs_cac_work_queue);
3140 
3141 	priv->dfs_chan_sw_workqueue = alloc_workqueue("MWIFIEX_DFS_CHSW%s",
3142 						      WQ_HIGHPRI | WQ_UNBOUND |
3143 						      WQ_MEM_RECLAIM, 0, name);
3144 	if (!priv->dfs_chan_sw_workqueue) {
3145 		mwifiex_dbg(adapter, ERROR, "cannot alloc DFS channel sw queue\n");
3146 		ret = -ENOMEM;
3147 		goto err_alloc_chsw;
3148 	}
3149 
3150 	INIT_DELAYED_WORK(&priv->dfs_chan_sw_work,
3151 			  mwifiex_dfs_chan_sw_work_queue);
3152 
3153 	mutex_init(&priv->async_mutex);
3154 
3155 	/* Register network device */
3156 	if (cfg80211_register_netdevice(dev)) {
3157 		mwifiex_dbg(adapter, ERROR, "cannot register network device\n");
3158 		ret = -EFAULT;
3159 		goto err_reg_netdev;
3160 	}
3161 
3162 	mwifiex_dbg(adapter, INFO,
3163 		    "info: %s: Marvell 802.11 Adapter\n", dev->name);
3164 
3165 #ifdef CONFIG_DEBUG_FS
3166 	mwifiex_dev_debugfs_init(priv);
3167 #endif
3168 
3169 	update_vif_type_counter(adapter, type, +1);
3170 
3171 	return &priv->wdev;
3172 
3173 err_reg_netdev:
3174 	destroy_workqueue(priv->dfs_chan_sw_workqueue);
3175 	priv->dfs_chan_sw_workqueue = NULL;
3176 err_alloc_chsw:
3177 	destroy_workqueue(priv->dfs_cac_workqueue);
3178 	priv->dfs_cac_workqueue = NULL;
3179 err_alloc_cac:
3180 	free_netdev(dev);
3181 	priv->netdev = NULL;
3182 err_sta_init:
3183 err_set_bss_mode:
3184 err_alloc_netdev:
3185 	memset(&priv->wdev, 0, sizeof(priv->wdev));
3186 	priv->wdev.iftype = NL80211_IFTYPE_UNSPECIFIED;
3187 	priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
3188 	return ERR_PTR(ret);
3189 }
3190 EXPORT_SYMBOL_GPL(mwifiex_add_virtual_intf);
3191 
3192 /*
3193  * del_virtual_intf: remove the virtual interface determined by dev
3194  */
mwifiex_del_virtual_intf(struct wiphy * wiphy,struct wireless_dev * wdev)3195 int mwifiex_del_virtual_intf(struct wiphy *wiphy, struct wireless_dev *wdev)
3196 {
3197 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
3198 	struct mwifiex_adapter *adapter = priv->adapter;
3199 	struct sk_buff *skb, *tmp;
3200 
3201 #ifdef CONFIG_DEBUG_FS
3202 	mwifiex_dev_debugfs_remove(priv);
3203 #endif
3204 
3205 	if (priv->sched_scanning)
3206 		priv->sched_scanning = false;
3207 
3208 	mwifiex_stop_net_dev_queue(priv->netdev, adapter);
3209 
3210 	skb_queue_walk_safe(&priv->bypass_txq, skb, tmp) {
3211 		skb_unlink(skb, &priv->bypass_txq);
3212 		mwifiex_write_data_complete(priv->adapter, skb, 0, -1);
3213 	}
3214 
3215 	if (netif_carrier_ok(priv->netdev))
3216 		netif_carrier_off(priv->netdev);
3217 
3218 	if (wdev->netdev->reg_state == NETREG_REGISTERED)
3219 		cfg80211_unregister_netdevice(wdev->netdev);
3220 
3221 	if (priv->dfs_cac_workqueue) {
3222 		destroy_workqueue(priv->dfs_cac_workqueue);
3223 		priv->dfs_cac_workqueue = NULL;
3224 	}
3225 
3226 	if (priv->dfs_chan_sw_workqueue) {
3227 		destroy_workqueue(priv->dfs_chan_sw_workqueue);
3228 		priv->dfs_chan_sw_workqueue = NULL;
3229 	}
3230 	/* Clear the priv in adapter */
3231 	priv->netdev = NULL;
3232 
3233 	update_vif_type_counter(adapter, priv->bss_mode, -1);
3234 
3235 	priv->bss_mode = NL80211_IFTYPE_UNSPECIFIED;
3236 
3237 	if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_STA ||
3238 	    GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP)
3239 		kfree(priv->hist_data);
3240 
3241 	return 0;
3242 }
3243 EXPORT_SYMBOL_GPL(mwifiex_del_virtual_intf);
3244 
3245 static bool
mwifiex_is_pattern_supported(struct cfg80211_pkt_pattern * pat,s8 * byte_seq,u8 max_byte_seq)3246 mwifiex_is_pattern_supported(struct cfg80211_pkt_pattern *pat, s8 *byte_seq,
3247 			     u8 max_byte_seq)
3248 {
3249 	int j, k, valid_byte_cnt = 0;
3250 	bool dont_care_byte = false;
3251 
3252 	for (j = 0; j < DIV_ROUND_UP(pat->pattern_len, 8); j++) {
3253 		for (k = 0; k < 8; k++) {
3254 			if (pat->mask[j] & 1 << k) {
3255 				memcpy(byte_seq + valid_byte_cnt,
3256 				       &pat->pattern[j * 8 + k], 1);
3257 				valid_byte_cnt++;
3258 				if (dont_care_byte)
3259 					return false;
3260 			} else {
3261 				if (valid_byte_cnt)
3262 					dont_care_byte = true;
3263 			}
3264 
3265 			/* wildcard bytes record as the offset
3266 			 * before the valid byte
3267 			 */
3268 			if (!valid_byte_cnt && !dont_care_byte)
3269 				pat->pkt_offset++;
3270 
3271 			if (valid_byte_cnt > max_byte_seq)
3272 				return false;
3273 		}
3274 	}
3275 
3276 	byte_seq[max_byte_seq] = valid_byte_cnt;
3277 
3278 	return true;
3279 }
3280 
3281 #ifdef CONFIG_PM
mwifiex_set_auto_arp_mef_entry(struct mwifiex_private * priv,struct mwifiex_mef_entry * mef_entry)3282 static void mwifiex_set_auto_arp_mef_entry(struct mwifiex_private *priv,
3283 					   struct mwifiex_mef_entry *mef_entry)
3284 {
3285 	int i, filt_num = 0, num_ipv4 = 0;
3286 	struct in_device *in_dev;
3287 	struct in_ifaddr *ifa;
3288 	__be32 ips[MWIFIEX_MAX_SUPPORTED_IPADDR];
3289 	struct mwifiex_adapter *adapter = priv->adapter;
3290 
3291 	mef_entry->mode = MEF_MODE_HOST_SLEEP;
3292 	mef_entry->action = MEF_ACTION_AUTO_ARP;
3293 
3294 	/* Enable ARP offload feature */
3295 	memset(ips, 0, sizeof(ips));
3296 	for (i = 0; i < MWIFIEX_MAX_BSS_NUM; i++) {
3297 		if (adapter->priv[i]->netdev) {
3298 			in_dev = __in_dev_get_rtnl(adapter->priv[i]->netdev);
3299 			if (!in_dev)
3300 				continue;
3301 			ifa = rtnl_dereference(in_dev->ifa_list);
3302 			if (!ifa || !ifa->ifa_local)
3303 				continue;
3304 			ips[i] = ifa->ifa_local;
3305 			num_ipv4++;
3306 		}
3307 	}
3308 
3309 	for (i = 0; i < num_ipv4; i++) {
3310 		if (!ips[i])
3311 			continue;
3312 		mef_entry->filter[filt_num].repeat = 1;
3313 		memcpy(mef_entry->filter[filt_num].byte_seq,
3314 		       (u8 *)&ips[i], sizeof(ips[i]));
3315 		mef_entry->filter[filt_num].
3316 			byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] =
3317 			sizeof(ips[i]);
3318 		mef_entry->filter[filt_num].offset = 46;
3319 		mef_entry->filter[filt_num].filt_type = TYPE_EQ;
3320 		if (filt_num) {
3321 			mef_entry->filter[filt_num].filt_action =
3322 				TYPE_OR;
3323 		}
3324 		filt_num++;
3325 	}
3326 
3327 	mef_entry->filter[filt_num].repeat = 1;
3328 	mef_entry->filter[filt_num].byte_seq[0] = 0x08;
3329 	mef_entry->filter[filt_num].byte_seq[1] = 0x06;
3330 	mef_entry->filter[filt_num].byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] = 2;
3331 	mef_entry->filter[filt_num].offset = 20;
3332 	mef_entry->filter[filt_num].filt_type = TYPE_EQ;
3333 	mef_entry->filter[filt_num].filt_action = TYPE_AND;
3334 }
3335 
mwifiex_set_wowlan_mef_entry(struct mwifiex_private * priv,struct mwifiex_ds_mef_cfg * mef_cfg,struct mwifiex_mef_entry * mef_entry,struct cfg80211_wowlan * wowlan)3336 static int mwifiex_set_wowlan_mef_entry(struct mwifiex_private *priv,
3337 					struct mwifiex_ds_mef_cfg *mef_cfg,
3338 					struct mwifiex_mef_entry *mef_entry,
3339 					struct cfg80211_wowlan *wowlan)
3340 {
3341 	int i, filt_num = 0, ret = 0;
3342 	bool first_pat = true;
3343 	u8 byte_seq[MWIFIEX_MEF_MAX_BYTESEQ + 1];
3344 	static const u8 ipv4_mc_mac[] = {0x33, 0x33};
3345 	static const u8 ipv6_mc_mac[] = {0x01, 0x00, 0x5e};
3346 
3347 	mef_entry->mode = MEF_MODE_HOST_SLEEP;
3348 	mef_entry->action = MEF_ACTION_ALLOW_AND_WAKEUP_HOST;
3349 
3350 	for (i = 0; i < wowlan->n_patterns; i++) {
3351 		memset(byte_seq, 0, sizeof(byte_seq));
3352 		if (!mwifiex_is_pattern_supported(&wowlan->patterns[i],
3353 					byte_seq,
3354 					MWIFIEX_MEF_MAX_BYTESEQ)) {
3355 			mwifiex_dbg(priv->adapter, ERROR,
3356 				    "Pattern not supported\n");
3357 			return -EOPNOTSUPP;
3358 		}
3359 
3360 		if (!wowlan->patterns[i].pkt_offset) {
3361 			if (!(byte_seq[0] & 0x01) &&
3362 			    (byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] == 1)) {
3363 				mef_cfg->criteria |= MWIFIEX_CRITERIA_UNICAST;
3364 				continue;
3365 			} else if (is_broadcast_ether_addr(byte_seq)) {
3366 				mef_cfg->criteria |= MWIFIEX_CRITERIA_BROADCAST;
3367 				continue;
3368 			} else if ((!memcmp(byte_seq, ipv4_mc_mac, 2) &&
3369 				    (byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] == 2)) ||
3370 				   (!memcmp(byte_seq, ipv6_mc_mac, 3) &&
3371 				    (byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] == 3))) {
3372 				mef_cfg->criteria |= MWIFIEX_CRITERIA_MULTICAST;
3373 				continue;
3374 			}
3375 		}
3376 		mef_entry->filter[filt_num].repeat = 1;
3377 		mef_entry->filter[filt_num].offset =
3378 			wowlan->patterns[i].pkt_offset;
3379 		memcpy(mef_entry->filter[filt_num].byte_seq, byte_seq,
3380 				sizeof(byte_seq));
3381 		mef_entry->filter[filt_num].filt_type = TYPE_EQ;
3382 
3383 		if (first_pat) {
3384 			first_pat = false;
3385 			mwifiex_dbg(priv->adapter, INFO, "Wake on patterns\n");
3386 		} else {
3387 			mef_entry->filter[filt_num].filt_action = TYPE_AND;
3388 		}
3389 
3390 		filt_num++;
3391 	}
3392 
3393 	if (wowlan->magic_pkt) {
3394 		mef_cfg->criteria |= MWIFIEX_CRITERIA_UNICAST;
3395 		mef_entry->filter[filt_num].repeat = 16;
3396 		memcpy(mef_entry->filter[filt_num].byte_seq, priv->curr_addr,
3397 				ETH_ALEN);
3398 		mef_entry->filter[filt_num].byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] =
3399 			ETH_ALEN;
3400 		mef_entry->filter[filt_num].offset = 28;
3401 		mef_entry->filter[filt_num].filt_type = TYPE_EQ;
3402 		if (filt_num)
3403 			mef_entry->filter[filt_num].filt_action = TYPE_OR;
3404 
3405 		filt_num++;
3406 		mef_entry->filter[filt_num].repeat = 16;
3407 		memcpy(mef_entry->filter[filt_num].byte_seq, priv->curr_addr,
3408 				ETH_ALEN);
3409 		mef_entry->filter[filt_num].byte_seq[MWIFIEX_MEF_MAX_BYTESEQ] =
3410 			ETH_ALEN;
3411 		mef_entry->filter[filt_num].offset = 56;
3412 		mef_entry->filter[filt_num].filt_type = TYPE_EQ;
3413 		mef_entry->filter[filt_num].filt_action = TYPE_OR;
3414 		mwifiex_dbg(priv->adapter, INFO, "Wake on magic packet\n");
3415 	}
3416 	return ret;
3417 }
3418 
mwifiex_set_mef_filter(struct mwifiex_private * priv,struct cfg80211_wowlan * wowlan)3419 static int mwifiex_set_mef_filter(struct mwifiex_private *priv,
3420 				  struct cfg80211_wowlan *wowlan)
3421 {
3422 	int ret = 0, num_entries = 1;
3423 	struct mwifiex_ds_mef_cfg mef_cfg;
3424 	struct mwifiex_mef_entry *mef_entry;
3425 
3426 	if (wowlan->n_patterns || wowlan->magic_pkt)
3427 		num_entries++;
3428 
3429 	mef_entry = kcalloc(num_entries, sizeof(*mef_entry), GFP_KERNEL);
3430 	if (!mef_entry)
3431 		return -ENOMEM;
3432 
3433 	memset(&mef_cfg, 0, sizeof(mef_cfg));
3434 	mef_cfg.criteria |= MWIFIEX_CRITERIA_BROADCAST |
3435 		MWIFIEX_CRITERIA_UNICAST;
3436 	mef_cfg.num_entries = num_entries;
3437 	mef_cfg.mef_entry = mef_entry;
3438 
3439 	mwifiex_set_auto_arp_mef_entry(priv, &mef_entry[0]);
3440 
3441 	if (wowlan->n_patterns || wowlan->magic_pkt) {
3442 		ret = mwifiex_set_wowlan_mef_entry(priv, &mef_cfg,
3443 						   &mef_entry[1], wowlan);
3444 		if (ret)
3445 			goto err;
3446 	}
3447 
3448 	if (!mef_cfg.criteria)
3449 		mef_cfg.criteria = MWIFIEX_CRITERIA_BROADCAST |
3450 			MWIFIEX_CRITERIA_UNICAST |
3451 			MWIFIEX_CRITERIA_MULTICAST;
3452 
3453 	ret = mwifiex_send_cmd(priv, HostCmd_CMD_MEF_CFG,
3454 			HostCmd_ACT_GEN_SET, 0,
3455 			&mef_cfg, true);
3456 
3457 err:
3458 	kfree(mef_entry);
3459 	return ret;
3460 }
3461 
mwifiex_cfg80211_suspend(struct wiphy * wiphy,struct cfg80211_wowlan * wowlan)3462 static int mwifiex_cfg80211_suspend(struct wiphy *wiphy,
3463 				    struct cfg80211_wowlan *wowlan)
3464 {
3465 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
3466 	struct mwifiex_ds_hs_cfg hs_cfg;
3467 	int i, ret = 0, retry_num = 10;
3468 	struct mwifiex_private *priv;
3469 	struct mwifiex_private *sta_priv =
3470 			mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA);
3471 
3472 	sta_priv->scan_aborting = true;
3473 	for (i = 0; i < adapter->priv_num; i++) {
3474 		priv = adapter->priv[i];
3475 		mwifiex_abort_cac(priv);
3476 	}
3477 
3478 	mwifiex_cancel_all_pending_cmd(adapter);
3479 
3480 	for (i = 0; i < adapter->priv_num; i++) {
3481 		priv = adapter->priv[i];
3482 		if (priv && priv->netdev)
3483 			netif_device_detach(priv->netdev);
3484 	}
3485 
3486 	for (i = 0; i < retry_num; i++) {
3487 		if (!mwifiex_wmm_lists_empty(adapter) ||
3488 		    !mwifiex_bypass_txlist_empty(adapter) ||
3489 		    !skb_queue_empty(&adapter->tx_data_q))
3490 			usleep_range(10000, 15000);
3491 		else
3492 			break;
3493 	}
3494 
3495 	if (!wowlan) {
3496 		mwifiex_dbg(adapter, INFO,
3497 			    "None of the WOWLAN triggers enabled\n");
3498 		ret = 0;
3499 		goto done;
3500 	}
3501 
3502 	if (!sta_priv->media_connected && !wowlan->nd_config) {
3503 		mwifiex_dbg(adapter, ERROR,
3504 			    "Can not configure WOWLAN in disconnected state\n");
3505 		ret = 0;
3506 		goto done;
3507 	}
3508 
3509 	ret = mwifiex_set_mef_filter(sta_priv, wowlan);
3510 	if (ret) {
3511 		mwifiex_dbg(adapter, ERROR, "Failed to set MEF filter\n");
3512 		goto done;
3513 	}
3514 
3515 	memset(&hs_cfg, 0, sizeof(hs_cfg));
3516 	hs_cfg.conditions = le32_to_cpu(adapter->hs_cfg.conditions);
3517 
3518 	if (wowlan->nd_config) {
3519 		mwifiex_dbg(adapter, INFO, "Wake on net detect\n");
3520 		hs_cfg.conditions |= HS_CFG_COND_MAC_EVENT;
3521 		mwifiex_cfg80211_sched_scan_start(wiphy, sta_priv->netdev,
3522 						  wowlan->nd_config);
3523 	}
3524 
3525 	if (wowlan->disconnect) {
3526 		hs_cfg.conditions |= HS_CFG_COND_MAC_EVENT;
3527 		mwifiex_dbg(sta_priv->adapter, INFO, "Wake on device disconnect\n");
3528 	}
3529 
3530 	hs_cfg.is_invoke_hostcmd = false;
3531 	hs_cfg.gpio = adapter->hs_cfg.gpio;
3532 	hs_cfg.gap = adapter->hs_cfg.gap;
3533 	ret = mwifiex_set_hs_params(sta_priv, HostCmd_ACT_GEN_SET,
3534 				    MWIFIEX_SYNC_CMD, &hs_cfg);
3535 	if (ret)
3536 		mwifiex_dbg(adapter, ERROR, "Failed to set HS params\n");
3537 
3538 done:
3539 	sta_priv->scan_aborting = false;
3540 	return ret;
3541 }
3542 
mwifiex_cfg80211_resume(struct wiphy * wiphy)3543 static int mwifiex_cfg80211_resume(struct wiphy *wiphy)
3544 {
3545 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
3546 	struct mwifiex_private *priv;
3547 	struct mwifiex_ds_wakeup_reason wakeup_reason;
3548 	struct cfg80211_wowlan_wakeup wakeup_report;
3549 	int i;
3550 	bool report_wakeup_reason = true;
3551 
3552 	for (i = 0; i < adapter->priv_num; i++) {
3553 		priv = adapter->priv[i];
3554 		if (priv && priv->netdev)
3555 			netif_device_attach(priv->netdev);
3556 	}
3557 
3558 	if (!wiphy->wowlan_config)
3559 		goto done;
3560 
3561 	priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA);
3562 	mwifiex_get_wakeup_reason(priv, HostCmd_ACT_GEN_GET, MWIFIEX_SYNC_CMD,
3563 				  &wakeup_reason);
3564 	memset(&wakeup_report, 0, sizeof(struct cfg80211_wowlan_wakeup));
3565 
3566 	wakeup_report.pattern_idx = -1;
3567 
3568 	switch (wakeup_reason.hs_wakeup_reason) {
3569 	case NO_HSWAKEUP_REASON:
3570 		break;
3571 	case BCAST_DATA_MATCHED:
3572 		break;
3573 	case MCAST_DATA_MATCHED:
3574 		break;
3575 	case UCAST_DATA_MATCHED:
3576 		break;
3577 	case MASKTABLE_EVENT_MATCHED:
3578 		break;
3579 	case NON_MASKABLE_EVENT_MATCHED:
3580 		if (wiphy->wowlan_config->disconnect)
3581 			wakeup_report.disconnect = true;
3582 		if (wiphy->wowlan_config->nd_config)
3583 			wakeup_report.net_detect = adapter->nd_info;
3584 		break;
3585 	case NON_MASKABLE_CONDITION_MATCHED:
3586 		break;
3587 	case MAGIC_PATTERN_MATCHED:
3588 		if (wiphy->wowlan_config->magic_pkt)
3589 			wakeup_report.magic_pkt = true;
3590 		if (wiphy->wowlan_config->n_patterns)
3591 			wakeup_report.pattern_idx = 1;
3592 		break;
3593 	case GTK_REKEY_FAILURE:
3594 		if (wiphy->wowlan_config->gtk_rekey_failure)
3595 			wakeup_report.gtk_rekey_failure = true;
3596 		break;
3597 	default:
3598 		report_wakeup_reason = false;
3599 		break;
3600 	}
3601 
3602 	if (report_wakeup_reason)
3603 		cfg80211_report_wowlan_wakeup(&priv->wdev, &wakeup_report,
3604 					      GFP_KERNEL);
3605 
3606 done:
3607 	if (adapter->nd_info) {
3608 		for (i = 0 ; i < adapter->nd_info->n_matches ; i++)
3609 			kfree(adapter->nd_info->matches[i]);
3610 		kfree(adapter->nd_info);
3611 		adapter->nd_info = NULL;
3612 	}
3613 
3614 	return 0;
3615 }
3616 
mwifiex_cfg80211_set_wakeup(struct wiphy * wiphy,bool enabled)3617 static void mwifiex_cfg80211_set_wakeup(struct wiphy *wiphy,
3618 				       bool enabled)
3619 {
3620 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
3621 
3622 	device_set_wakeup_enable(adapter->dev, enabled);
3623 }
3624 
mwifiex_set_rekey_data(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_gtk_rekey_data * data)3625 static int mwifiex_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
3626 				  struct cfg80211_gtk_rekey_data *data)
3627 {
3628 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3629 
3630 	if (!ISSUPP_FIRMWARE_SUPPLICANT(priv->adapter->fw_cap_info))
3631 		return -EOPNOTSUPP;
3632 
3633 	return mwifiex_send_cmd(priv, HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG,
3634 				HostCmd_ACT_GEN_SET, 0, data, true);
3635 }
3636 
3637 #endif
3638 
mwifiex_get_coalesce_pkt_type(u8 * byte_seq)3639 static int mwifiex_get_coalesce_pkt_type(u8 *byte_seq)
3640 {
3641 	static const u8 ipv4_mc_mac[] = {0x33, 0x33};
3642 	static const u8 ipv6_mc_mac[] = {0x01, 0x00, 0x5e};
3643 	static const u8 bc_mac[] = {0xff, 0xff, 0xff, 0xff};
3644 
3645 	if ((byte_seq[0] & 0x01) &&
3646 	    (byte_seq[MWIFIEX_COALESCE_MAX_BYTESEQ] == 1))
3647 		return PACKET_TYPE_UNICAST;
3648 	else if (!memcmp(byte_seq, bc_mac, 4))
3649 		return PACKET_TYPE_BROADCAST;
3650 	else if ((!memcmp(byte_seq, ipv4_mc_mac, 2) &&
3651 		  byte_seq[MWIFIEX_COALESCE_MAX_BYTESEQ] == 2) ||
3652 		 (!memcmp(byte_seq, ipv6_mc_mac, 3) &&
3653 		  byte_seq[MWIFIEX_COALESCE_MAX_BYTESEQ] == 3))
3654 		return PACKET_TYPE_MULTICAST;
3655 
3656 	return 0;
3657 }
3658 
3659 static int
mwifiex_fill_coalesce_rule_info(struct mwifiex_private * priv,struct cfg80211_coalesce_rules * crule,struct mwifiex_coalesce_rule * mrule)3660 mwifiex_fill_coalesce_rule_info(struct mwifiex_private *priv,
3661 				struct cfg80211_coalesce_rules *crule,
3662 				struct mwifiex_coalesce_rule *mrule)
3663 {
3664 	u8 byte_seq[MWIFIEX_COALESCE_MAX_BYTESEQ + 1];
3665 	struct filt_field_param *param;
3666 	int i;
3667 
3668 	mrule->max_coalescing_delay = crule->delay;
3669 
3670 	param = mrule->params;
3671 
3672 	for (i = 0; i < crule->n_patterns; i++) {
3673 		memset(byte_seq, 0, sizeof(byte_seq));
3674 		if (!mwifiex_is_pattern_supported(&crule->patterns[i],
3675 						  byte_seq,
3676 						MWIFIEX_COALESCE_MAX_BYTESEQ)) {
3677 			mwifiex_dbg(priv->adapter, ERROR,
3678 				    "Pattern not supported\n");
3679 			return -EOPNOTSUPP;
3680 		}
3681 
3682 		if (!crule->patterns[i].pkt_offset) {
3683 			u8 pkt_type;
3684 
3685 			pkt_type = mwifiex_get_coalesce_pkt_type(byte_seq);
3686 			if (pkt_type && mrule->pkt_type) {
3687 				mwifiex_dbg(priv->adapter, ERROR,
3688 					    "Multiple packet types not allowed\n");
3689 				return -EOPNOTSUPP;
3690 			} else if (pkt_type) {
3691 				mrule->pkt_type = pkt_type;
3692 				continue;
3693 			}
3694 		}
3695 
3696 		if (crule->condition == NL80211_COALESCE_CONDITION_MATCH)
3697 			param->operation = RECV_FILTER_MATCH_TYPE_EQ;
3698 		else
3699 			param->operation = RECV_FILTER_MATCH_TYPE_NE;
3700 
3701 		param->operand_len = byte_seq[MWIFIEX_COALESCE_MAX_BYTESEQ];
3702 		memcpy(param->operand_byte_stream, byte_seq,
3703 		       param->operand_len);
3704 		param->offset = crule->patterns[i].pkt_offset;
3705 		param++;
3706 
3707 		mrule->num_of_fields++;
3708 	}
3709 
3710 	if (!mrule->pkt_type) {
3711 		mwifiex_dbg(priv->adapter, ERROR,
3712 			    "Packet type can not be determined\n");
3713 		return -EOPNOTSUPP;
3714 	}
3715 
3716 	return 0;
3717 }
3718 
mwifiex_cfg80211_set_coalesce(struct wiphy * wiphy,struct cfg80211_coalesce * coalesce)3719 static int mwifiex_cfg80211_set_coalesce(struct wiphy *wiphy,
3720 					 struct cfg80211_coalesce *coalesce)
3721 {
3722 	struct mwifiex_adapter *adapter = mwifiex_cfg80211_get_adapter(wiphy);
3723 	int i, ret;
3724 	struct mwifiex_ds_coalesce_cfg coalesce_cfg;
3725 	struct mwifiex_private *priv =
3726 			mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA);
3727 
3728 	memset(&coalesce_cfg, 0, sizeof(coalesce_cfg));
3729 	if (!coalesce) {
3730 		mwifiex_dbg(adapter, WARN,
3731 			    "Disable coalesce and reset all previous rules\n");
3732 		return mwifiex_send_cmd(priv, HostCmd_CMD_COALESCE_CFG,
3733 					HostCmd_ACT_GEN_SET, 0,
3734 					&coalesce_cfg, true);
3735 	}
3736 
3737 	coalesce_cfg.num_of_rules = coalesce->n_rules;
3738 	for (i = 0; i < coalesce->n_rules; i++) {
3739 		ret = mwifiex_fill_coalesce_rule_info(priv, &coalesce->rules[i],
3740 						      &coalesce_cfg.rule[i]);
3741 		if (ret) {
3742 			mwifiex_dbg(adapter, ERROR,
3743 				    "Recheck the patterns provided for rule %d\n",
3744 				i + 1);
3745 			return ret;
3746 		}
3747 	}
3748 
3749 	return mwifiex_send_cmd(priv, HostCmd_CMD_COALESCE_CFG,
3750 				HostCmd_ACT_GEN_SET, 0, &coalesce_cfg, true);
3751 }
3752 
3753 /* cfg80211 ops handler for tdls_mgmt.
3754  * Function prepares TDLS action frame packets and forwards them to FW
3755  */
3756 static int
mwifiex_cfg80211_tdls_mgmt(struct wiphy * wiphy,struct net_device * dev,const u8 * peer,int link_id,u8 action_code,u8 dialog_token,u16 status_code,u32 peer_capability,bool initiator,const u8 * extra_ies,size_t extra_ies_len)3757 mwifiex_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
3758 			   const u8 *peer, int link_id, u8 action_code,
3759 			   u8 dialog_token, u16 status_code,
3760 			   u32 peer_capability, bool initiator,
3761 			   const u8 *extra_ies, size_t extra_ies_len)
3762 {
3763 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3764 	int ret;
3765 
3766 	if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3767 		return -EOPNOTSUPP;
3768 
3769 	/* make sure we are in station mode and connected */
3770 	if (!(priv->bss_type == MWIFIEX_BSS_TYPE_STA && priv->media_connected))
3771 		return -EOPNOTSUPP;
3772 
3773 	switch (action_code) {
3774 	case WLAN_TDLS_SETUP_REQUEST:
3775 		mwifiex_dbg(priv->adapter, MSG,
3776 			    "Send TDLS Setup Request to %pM status_code=%d\n",
3777 			    peer, status_code);
3778 		mwifiex_add_auto_tdls_peer(priv, peer);
3779 		ret = mwifiex_send_tdls_data_frame(priv, peer, action_code,
3780 						   dialog_token, status_code,
3781 						   extra_ies, extra_ies_len);
3782 		break;
3783 	case WLAN_TDLS_SETUP_RESPONSE:
3784 		mwifiex_add_auto_tdls_peer(priv, peer);
3785 		mwifiex_dbg(priv->adapter, MSG,
3786 			    "Send TDLS Setup Response to %pM status_code=%d\n",
3787 			    peer, status_code);
3788 		ret = mwifiex_send_tdls_data_frame(priv, peer, action_code,
3789 						   dialog_token, status_code,
3790 						   extra_ies, extra_ies_len);
3791 		break;
3792 	case WLAN_TDLS_SETUP_CONFIRM:
3793 		mwifiex_dbg(priv->adapter, MSG,
3794 			    "Send TDLS Confirm to %pM status_code=%d\n", peer,
3795 			    status_code);
3796 		ret = mwifiex_send_tdls_data_frame(priv, peer, action_code,
3797 						   dialog_token, status_code,
3798 						   extra_ies, extra_ies_len);
3799 		break;
3800 	case WLAN_TDLS_TEARDOWN:
3801 		mwifiex_dbg(priv->adapter, MSG,
3802 			    "Send TDLS Tear down to %pM\n", peer);
3803 		ret = mwifiex_send_tdls_data_frame(priv, peer, action_code,
3804 						   dialog_token, status_code,
3805 						   extra_ies, extra_ies_len);
3806 		break;
3807 	case WLAN_TDLS_DISCOVERY_REQUEST:
3808 		mwifiex_dbg(priv->adapter, MSG,
3809 			    "Send TDLS Discovery Request to %pM\n", peer);
3810 		ret = mwifiex_send_tdls_data_frame(priv, peer, action_code,
3811 						   dialog_token, status_code,
3812 						   extra_ies, extra_ies_len);
3813 		break;
3814 	case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3815 		mwifiex_dbg(priv->adapter, MSG,
3816 			    "Send TDLS Discovery Response to %pM\n", peer);
3817 		ret = mwifiex_send_tdls_action_frame(priv, peer, action_code,
3818 						   dialog_token, status_code,
3819 						   extra_ies, extra_ies_len);
3820 		break;
3821 	default:
3822 		mwifiex_dbg(priv->adapter, ERROR,
3823 			    "Unknown TDLS mgmt/action frame %pM\n", peer);
3824 		ret = -EINVAL;
3825 		break;
3826 	}
3827 
3828 	return ret;
3829 }
3830 
3831 static int
mwifiex_cfg80211_tdls_oper(struct wiphy * wiphy,struct net_device * dev,const u8 * peer,enum nl80211_tdls_operation action)3832 mwifiex_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
3833 			   const u8 *peer, enum nl80211_tdls_operation action)
3834 {
3835 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3836 
3837 	if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
3838 	    !(wiphy->flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
3839 		return -EOPNOTSUPP;
3840 
3841 	/* make sure we are in station mode and connected */
3842 	if (!(priv->bss_type == MWIFIEX_BSS_TYPE_STA && priv->media_connected))
3843 		return -EOPNOTSUPP;
3844 
3845 	mwifiex_dbg(priv->adapter, MSG,
3846 		    "TDLS peer=%pM, oper=%d\n", peer, action);
3847 
3848 	switch (action) {
3849 	case NL80211_TDLS_ENABLE_LINK:
3850 		action = MWIFIEX_TDLS_ENABLE_LINK;
3851 		break;
3852 	case NL80211_TDLS_DISABLE_LINK:
3853 		action = MWIFIEX_TDLS_DISABLE_LINK;
3854 		break;
3855 	case NL80211_TDLS_TEARDOWN:
3856 		/* shouldn't happen!*/
3857 		mwifiex_dbg(priv->adapter, ERROR,
3858 			    "tdls_oper: teardown from driver not supported\n");
3859 		return -EINVAL;
3860 	case NL80211_TDLS_SETUP:
3861 		/* shouldn't happen!*/
3862 		mwifiex_dbg(priv->adapter, ERROR,
3863 			    "tdls_oper: setup from driver not supported\n");
3864 		return -EINVAL;
3865 	case NL80211_TDLS_DISCOVERY_REQ:
3866 		/* shouldn't happen!*/
3867 		mwifiex_dbg(priv->adapter, ERROR,
3868 			    "tdls_oper: discovery from driver not supported\n");
3869 		return -EINVAL;
3870 	default:
3871 		mwifiex_dbg(priv->adapter, ERROR,
3872 			    "tdls_oper: operation not supported\n");
3873 		return -EOPNOTSUPP;
3874 	}
3875 
3876 	return mwifiex_tdls_oper(priv, peer, action);
3877 }
3878 
3879 static int
mwifiex_cfg80211_tdls_chan_switch(struct wiphy * wiphy,struct net_device * dev,const u8 * addr,u8 oper_class,struct cfg80211_chan_def * chandef)3880 mwifiex_cfg80211_tdls_chan_switch(struct wiphy *wiphy, struct net_device *dev,
3881 				  const u8 *addr, u8 oper_class,
3882 				  struct cfg80211_chan_def *chandef)
3883 {
3884 	struct mwifiex_sta_node *sta_ptr;
3885 	u16 chan;
3886 	u8 second_chan_offset, band;
3887 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3888 
3889 	spin_lock_bh(&priv->sta_list_spinlock);
3890 	sta_ptr = mwifiex_get_sta_entry(priv, addr);
3891 	if (!sta_ptr) {
3892 		spin_unlock_bh(&priv->sta_list_spinlock);
3893 		wiphy_err(wiphy, "%s: Invalid TDLS peer %pM\n",
3894 			  __func__, addr);
3895 		return -ENOENT;
3896 	}
3897 
3898 	if (!(sta_ptr->tdls_cap.extcap.ext_capab[3] &
3899 	      WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)) {
3900 		spin_unlock_bh(&priv->sta_list_spinlock);
3901 		wiphy_err(wiphy, "%pM do not support tdls cs\n", addr);
3902 		return -ENOENT;
3903 	}
3904 
3905 	if (sta_ptr->tdls_status == TDLS_CHAN_SWITCHING ||
3906 	    sta_ptr->tdls_status == TDLS_IN_OFF_CHAN) {
3907 		spin_unlock_bh(&priv->sta_list_spinlock);
3908 		wiphy_err(wiphy, "channel switch is running, abort request\n");
3909 		return -EALREADY;
3910 	}
3911 	spin_unlock_bh(&priv->sta_list_spinlock);
3912 
3913 	chan = chandef->chan->hw_value;
3914 	second_chan_offset = mwifiex_get_sec_chan_offset(chan);
3915 	band = chandef->chan->band;
3916 	mwifiex_start_tdls_cs(priv, addr, chan, second_chan_offset, band);
3917 
3918 	return 0;
3919 }
3920 
3921 static void
mwifiex_cfg80211_tdls_cancel_chan_switch(struct wiphy * wiphy,struct net_device * dev,const u8 * addr)3922 mwifiex_cfg80211_tdls_cancel_chan_switch(struct wiphy *wiphy,
3923 					 struct net_device *dev,
3924 					 const u8 *addr)
3925 {
3926 	struct mwifiex_sta_node *sta_ptr;
3927 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3928 
3929 	spin_lock_bh(&priv->sta_list_spinlock);
3930 	sta_ptr = mwifiex_get_sta_entry(priv, addr);
3931 	if (!sta_ptr) {
3932 		spin_unlock_bh(&priv->sta_list_spinlock);
3933 		wiphy_err(wiphy, "%s: Invalid TDLS peer %pM\n",
3934 			  __func__, addr);
3935 	} else if (!(sta_ptr->tdls_status == TDLS_CHAN_SWITCHING ||
3936 		     sta_ptr->tdls_status == TDLS_IN_BASE_CHAN ||
3937 		     sta_ptr->tdls_status == TDLS_IN_OFF_CHAN)) {
3938 		spin_unlock_bh(&priv->sta_list_spinlock);
3939 		wiphy_err(wiphy, "tdls chan switch not initialize by %pM\n",
3940 			  addr);
3941 	} else {
3942 		spin_unlock_bh(&priv->sta_list_spinlock);
3943 		mwifiex_stop_tdls_cs(priv, addr);
3944 	}
3945 }
3946 
3947 static int
mwifiex_cfg80211_add_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_parameters * params)3948 mwifiex_cfg80211_add_station(struct wiphy *wiphy, struct net_device *dev,
3949 			     const u8 *mac, struct station_parameters *params)
3950 {
3951 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3952 
3953 	if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
3954 		return -EOPNOTSUPP;
3955 
3956 	/* make sure we are in station mode and connected */
3957 	if ((priv->bss_type != MWIFIEX_BSS_TYPE_STA) || !priv->media_connected)
3958 		return -EOPNOTSUPP;
3959 
3960 	return mwifiex_tdls_oper(priv, mac, MWIFIEX_TDLS_CREATE_LINK);
3961 }
3962 
3963 static int
mwifiex_cfg80211_channel_switch(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_csa_settings * params)3964 mwifiex_cfg80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3965 				struct cfg80211_csa_settings *params)
3966 {
3967 	struct ieee_types_header *chsw_ie;
3968 	struct ieee80211_channel_sw_ie *channel_sw;
3969 	int chsw_msec;
3970 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
3971 
3972 	if (priv->adapter->scan_processing) {
3973 		mwifiex_dbg(priv->adapter, ERROR,
3974 			    "radar detection: scan in process...\n");
3975 		return -EBUSY;
3976 	}
3977 
3978 	if (priv->wdev.cac_started)
3979 		return -EBUSY;
3980 
3981 	if (cfg80211_chandef_identical(&params->chandef,
3982 				       &priv->dfs_chandef))
3983 		return -EINVAL;
3984 
3985 	chsw_ie = (void *)cfg80211_find_ie(WLAN_EID_CHANNEL_SWITCH,
3986 					   params->beacon_csa.tail,
3987 					   params->beacon_csa.tail_len);
3988 	if (!chsw_ie) {
3989 		mwifiex_dbg(priv->adapter, ERROR,
3990 			    "Could not parse channel switch announcement IE\n");
3991 		return -EINVAL;
3992 	}
3993 
3994 	channel_sw = (void *)(chsw_ie + 1);
3995 	if (channel_sw->mode) {
3996 		if (netif_carrier_ok(priv->netdev))
3997 			netif_carrier_off(priv->netdev);
3998 		mwifiex_stop_net_dev_queue(priv->netdev, priv->adapter);
3999 	}
4000 
4001 	if (mwifiex_del_mgmt_ies(priv))
4002 		mwifiex_dbg(priv->adapter, ERROR,
4003 			    "Failed to delete mgmt IEs!\n");
4004 
4005 	if (mwifiex_set_mgmt_ies(priv, &params->beacon_csa)) {
4006 		mwifiex_dbg(priv->adapter, ERROR,
4007 			    "%s: setting mgmt ies failed\n", __func__);
4008 		return -EFAULT;
4009 	}
4010 
4011 	memcpy(&priv->dfs_chandef, &params->chandef, sizeof(priv->dfs_chandef));
4012 	memcpy(&priv->beacon_after, &params->beacon_after,
4013 	       sizeof(priv->beacon_after));
4014 
4015 	chsw_msec = max(channel_sw->count * priv->bss_cfg.beacon_period, 100);
4016 	queue_delayed_work(priv->dfs_chan_sw_workqueue, &priv->dfs_chan_sw_work,
4017 			   msecs_to_jiffies(chsw_msec));
4018 	return 0;
4019 }
4020 
mwifiex_cfg80211_get_channel(struct wiphy * wiphy,struct wireless_dev * wdev,unsigned int link_id,struct cfg80211_chan_def * chandef)4021 static int mwifiex_cfg80211_get_channel(struct wiphy *wiphy,
4022 					struct wireless_dev *wdev,
4023 					unsigned int link_id,
4024 					struct cfg80211_chan_def *chandef)
4025 {
4026 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
4027 	struct mwifiex_bssdescriptor *curr_bss;
4028 	struct ieee80211_channel *chan;
4029 	enum nl80211_channel_type chan_type;
4030 	enum nl80211_band band;
4031 	int freq;
4032 	int ret = -ENODATA;
4033 
4034 	if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP &&
4035 	    cfg80211_chandef_valid(&priv->bss_chandef)) {
4036 		*chandef = priv->bss_chandef;
4037 		ret = 0;
4038 	} else if (priv->media_connected) {
4039 		curr_bss = &priv->curr_bss_params.bss_descriptor;
4040 		band = mwifiex_band_to_radio_type(priv->curr_bss_params.band);
4041 		freq = ieee80211_channel_to_frequency(curr_bss->channel, band);
4042 		chan = ieee80211_get_channel(wiphy, freq);
4043 
4044 		if (priv->ht_param_present) {
4045 			chan_type = mwifiex_get_chan_type(priv);
4046 			cfg80211_chandef_create(chandef, chan, chan_type);
4047 		} else {
4048 			cfg80211_chandef_create(chandef, chan,
4049 						NL80211_CHAN_NO_HT);
4050 		}
4051 		ret = 0;
4052 	}
4053 
4054 	return ret;
4055 }
4056 
4057 #ifdef CONFIG_NL80211_TESTMODE
4058 
4059 enum mwifiex_tm_attr {
4060 	__MWIFIEX_TM_ATTR_INVALID	= 0,
4061 	MWIFIEX_TM_ATTR_CMD		= 1,
4062 	MWIFIEX_TM_ATTR_DATA		= 2,
4063 
4064 	/* keep last */
4065 	__MWIFIEX_TM_ATTR_AFTER_LAST,
4066 	MWIFIEX_TM_ATTR_MAX		= __MWIFIEX_TM_ATTR_AFTER_LAST - 1,
4067 };
4068 
4069 static const struct nla_policy mwifiex_tm_policy[MWIFIEX_TM_ATTR_MAX + 1] = {
4070 	[MWIFIEX_TM_ATTR_CMD]		= { .type = NLA_U32 },
4071 	[MWIFIEX_TM_ATTR_DATA]		= { .type = NLA_BINARY,
4072 					    .len = MWIFIEX_SIZE_OF_CMD_BUFFER },
4073 };
4074 
4075 enum mwifiex_tm_command {
4076 	MWIFIEX_TM_CMD_HOSTCMD	= 0,
4077 };
4078 
mwifiex_tm_cmd(struct wiphy * wiphy,struct wireless_dev * wdev,void * data,int len)4079 static int mwifiex_tm_cmd(struct wiphy *wiphy, struct wireless_dev *wdev,
4080 			  void *data, int len)
4081 {
4082 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(wdev->netdev);
4083 	struct mwifiex_ds_misc_cmd *hostcmd;
4084 	struct nlattr *tb[MWIFIEX_TM_ATTR_MAX + 1];
4085 	struct sk_buff *skb;
4086 	int err;
4087 
4088 	if (!priv)
4089 		return -EINVAL;
4090 
4091 	err = nla_parse_deprecated(tb, MWIFIEX_TM_ATTR_MAX, data, len,
4092 				   mwifiex_tm_policy, NULL);
4093 	if (err)
4094 		return err;
4095 
4096 	if (!tb[MWIFIEX_TM_ATTR_CMD])
4097 		return -EINVAL;
4098 
4099 	switch (nla_get_u32(tb[MWIFIEX_TM_ATTR_CMD])) {
4100 	case MWIFIEX_TM_CMD_HOSTCMD:
4101 		if (!tb[MWIFIEX_TM_ATTR_DATA])
4102 			return -EINVAL;
4103 
4104 		hostcmd = kzalloc(sizeof(*hostcmd), GFP_KERNEL);
4105 		if (!hostcmd)
4106 			return -ENOMEM;
4107 
4108 		hostcmd->len = nla_len(tb[MWIFIEX_TM_ATTR_DATA]);
4109 		memcpy(hostcmd->cmd, nla_data(tb[MWIFIEX_TM_ATTR_DATA]),
4110 		       hostcmd->len);
4111 
4112 		if (mwifiex_send_cmd(priv, 0, 0, 0, hostcmd, true)) {
4113 			dev_err(priv->adapter->dev, "Failed to process hostcmd\n");
4114 			kfree(hostcmd);
4115 			return -EFAULT;
4116 		}
4117 
4118 		/* process hostcmd response*/
4119 		skb = cfg80211_testmode_alloc_reply_skb(wiphy, hostcmd->len);
4120 		if (!skb) {
4121 			kfree(hostcmd);
4122 			return -ENOMEM;
4123 		}
4124 		err = nla_put(skb, MWIFIEX_TM_ATTR_DATA,
4125 			      hostcmd->len, hostcmd->cmd);
4126 		if (err) {
4127 			kfree(hostcmd);
4128 			kfree_skb(skb);
4129 			return -EMSGSIZE;
4130 		}
4131 
4132 		err = cfg80211_testmode_reply(skb);
4133 		kfree(hostcmd);
4134 		return err;
4135 	default:
4136 		return -EOPNOTSUPP;
4137 	}
4138 }
4139 #endif
4140 
4141 static int
mwifiex_cfg80211_start_radar_detection(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_chan_def * chandef,u32 cac_time_ms)4142 mwifiex_cfg80211_start_radar_detection(struct wiphy *wiphy,
4143 				       struct net_device *dev,
4144 				       struct cfg80211_chan_def *chandef,
4145 				       u32 cac_time_ms)
4146 {
4147 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
4148 	struct mwifiex_radar_params radar_params;
4149 
4150 	if (priv->adapter->scan_processing) {
4151 		mwifiex_dbg(priv->adapter, ERROR,
4152 			    "radar detection: scan already in process...\n");
4153 		return -EBUSY;
4154 	}
4155 
4156 	if (!mwifiex_is_11h_active(priv)) {
4157 		mwifiex_dbg(priv->adapter, INFO,
4158 			    "Enable 11h extensions in FW\n");
4159 		if (mwifiex_11h_activate(priv, true)) {
4160 			mwifiex_dbg(priv->adapter, ERROR,
4161 				    "Failed to activate 11h extensions!!");
4162 			return -1;
4163 		}
4164 		priv->state_11h.is_11h_active = true;
4165 	}
4166 
4167 	memset(&radar_params, 0, sizeof(struct mwifiex_radar_params));
4168 	radar_params.chandef = chandef;
4169 	radar_params.cac_time_ms = cac_time_ms;
4170 
4171 	memcpy(&priv->dfs_chandef, chandef, sizeof(priv->dfs_chandef));
4172 
4173 	if (mwifiex_send_cmd(priv, HostCmd_CMD_CHAN_REPORT_REQUEST,
4174 			     HostCmd_ACT_GEN_SET, 0, &radar_params, true))
4175 		return -1;
4176 
4177 	queue_delayed_work(priv->dfs_cac_workqueue, &priv->dfs_cac_work,
4178 			   msecs_to_jiffies(cac_time_ms));
4179 	return 0;
4180 }
4181 
4182 static int
mwifiex_cfg80211_change_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_parameters * params)4183 mwifiex_cfg80211_change_station(struct wiphy *wiphy, struct net_device *dev,
4184 				const u8 *mac,
4185 				struct station_parameters *params)
4186 {
4187 	int ret;
4188 	struct mwifiex_private *priv = mwifiex_netdev_get_priv(dev);
4189 
4190 	/* we support change_station handler only for TDLS peers*/
4191 	if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4192 		return -EOPNOTSUPP;
4193 
4194 	/* make sure we are in station mode and connected */
4195 	if ((priv->bss_type != MWIFIEX_BSS_TYPE_STA) || !priv->media_connected)
4196 		return -EOPNOTSUPP;
4197 
4198 	priv->sta_params = params;
4199 
4200 	ret = mwifiex_tdls_oper(priv, mac, MWIFIEX_TDLS_CONFIG_LINK);
4201 	priv->sta_params = NULL;
4202 
4203 	return ret;
4204 }
4205 
4206 /* station cfg80211 operations */
4207 static struct cfg80211_ops mwifiex_cfg80211_ops = {
4208 	.add_virtual_intf = mwifiex_add_virtual_intf,
4209 	.del_virtual_intf = mwifiex_del_virtual_intf,
4210 	.change_virtual_intf = mwifiex_cfg80211_change_virtual_intf,
4211 	.scan = mwifiex_cfg80211_scan,
4212 	.connect = mwifiex_cfg80211_connect,
4213 	.disconnect = mwifiex_cfg80211_disconnect,
4214 	.get_station = mwifiex_cfg80211_get_station,
4215 	.dump_station = mwifiex_cfg80211_dump_station,
4216 	.dump_survey = mwifiex_cfg80211_dump_survey,
4217 	.set_wiphy_params = mwifiex_cfg80211_set_wiphy_params,
4218 	.join_ibss = mwifiex_cfg80211_join_ibss,
4219 	.leave_ibss = mwifiex_cfg80211_leave_ibss,
4220 	.add_key = mwifiex_cfg80211_add_key,
4221 	.del_key = mwifiex_cfg80211_del_key,
4222 	.set_default_mgmt_key = mwifiex_cfg80211_set_default_mgmt_key,
4223 	.mgmt_tx = mwifiex_cfg80211_mgmt_tx,
4224 	.update_mgmt_frame_registrations =
4225 		mwifiex_cfg80211_update_mgmt_frame_registrations,
4226 	.remain_on_channel = mwifiex_cfg80211_remain_on_channel,
4227 	.cancel_remain_on_channel = mwifiex_cfg80211_cancel_remain_on_channel,
4228 	.set_default_key = mwifiex_cfg80211_set_default_key,
4229 	.set_power_mgmt = mwifiex_cfg80211_set_power_mgmt,
4230 	.set_tx_power = mwifiex_cfg80211_set_tx_power,
4231 	.get_tx_power = mwifiex_cfg80211_get_tx_power,
4232 	.set_bitrate_mask = mwifiex_cfg80211_set_bitrate_mask,
4233 	.start_ap = mwifiex_cfg80211_start_ap,
4234 	.stop_ap = mwifiex_cfg80211_stop_ap,
4235 	.change_beacon = mwifiex_cfg80211_change_beacon,
4236 	.set_cqm_rssi_config = mwifiex_cfg80211_set_cqm_rssi_config,
4237 	.set_antenna = mwifiex_cfg80211_set_antenna,
4238 	.get_antenna = mwifiex_cfg80211_get_antenna,
4239 	.del_station = mwifiex_cfg80211_del_station,
4240 	.sched_scan_start = mwifiex_cfg80211_sched_scan_start,
4241 	.sched_scan_stop = mwifiex_cfg80211_sched_scan_stop,
4242 #ifdef CONFIG_PM
4243 	.suspend = mwifiex_cfg80211_suspend,
4244 	.resume = mwifiex_cfg80211_resume,
4245 	.set_wakeup = mwifiex_cfg80211_set_wakeup,
4246 	.set_rekey_data = mwifiex_set_rekey_data,
4247 #endif
4248 	.set_coalesce = mwifiex_cfg80211_set_coalesce,
4249 	.tdls_mgmt = mwifiex_cfg80211_tdls_mgmt,
4250 	.tdls_oper = mwifiex_cfg80211_tdls_oper,
4251 	.tdls_channel_switch = mwifiex_cfg80211_tdls_chan_switch,
4252 	.tdls_cancel_channel_switch = mwifiex_cfg80211_tdls_cancel_chan_switch,
4253 	.add_station = mwifiex_cfg80211_add_station,
4254 	.change_station = mwifiex_cfg80211_change_station,
4255 	CFG80211_TESTMODE_CMD(mwifiex_tm_cmd)
4256 	.get_channel = mwifiex_cfg80211_get_channel,
4257 	.start_radar_detection = mwifiex_cfg80211_start_radar_detection,
4258 	.channel_switch = mwifiex_cfg80211_channel_switch,
4259 };
4260 
4261 #ifdef CONFIG_PM
4262 static const struct wiphy_wowlan_support mwifiex_wowlan_support = {
4263 	.flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT |
4264 		WIPHY_WOWLAN_NET_DETECT | WIPHY_WOWLAN_SUPPORTS_GTK_REKEY |
4265 		WIPHY_WOWLAN_GTK_REKEY_FAILURE,
4266 	.n_patterns = MWIFIEX_MEF_MAX_FILTERS,
4267 	.pattern_min_len = 1,
4268 	.pattern_max_len = MWIFIEX_MAX_PATTERN_LEN,
4269 	.max_pkt_offset = MWIFIEX_MAX_OFFSET_LEN,
4270 	.max_nd_match_sets = MWIFIEX_MAX_ND_MATCH_SETS,
4271 };
4272 
4273 static const struct wiphy_wowlan_support mwifiex_wowlan_support_no_gtk = {
4274 	.flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT |
4275 		 WIPHY_WOWLAN_NET_DETECT,
4276 	.n_patterns = MWIFIEX_MEF_MAX_FILTERS,
4277 	.pattern_min_len = 1,
4278 	.pattern_max_len = MWIFIEX_MAX_PATTERN_LEN,
4279 	.max_pkt_offset = MWIFIEX_MAX_OFFSET_LEN,
4280 	.max_nd_match_sets = MWIFIEX_MAX_ND_MATCH_SETS,
4281 };
4282 #endif
4283 
mwifiex_is_valid_alpha2(const char * alpha2)4284 static bool mwifiex_is_valid_alpha2(const char *alpha2)
4285 {
4286 	if (!alpha2 || strlen(alpha2) != 2)
4287 		return false;
4288 
4289 	if (isalpha(alpha2[0]) && isalpha(alpha2[1]))
4290 		return true;
4291 
4292 	return false;
4293 }
4294 
4295 static const struct wiphy_coalesce_support mwifiex_coalesce_support = {
4296 	.n_rules = MWIFIEX_COALESCE_MAX_RULES,
4297 	.max_delay = MWIFIEX_MAX_COALESCING_DELAY,
4298 	.n_patterns = MWIFIEX_COALESCE_MAX_FILTERS,
4299 	.pattern_min_len = 1,
4300 	.pattern_max_len = MWIFIEX_MAX_PATTERN_LEN,
4301 	.max_pkt_offset = MWIFIEX_MAX_OFFSET_LEN,
4302 };
4303 
mwifiex_init_channel_scan_gap(struct mwifiex_adapter * adapter)4304 int mwifiex_init_channel_scan_gap(struct mwifiex_adapter *adapter)
4305 {
4306 	u32 n_channels_bg, n_channels_a = 0;
4307 
4308 	n_channels_bg = mwifiex_band_2ghz.n_channels;
4309 
4310 	if (adapter->config_bands & BAND_A)
4311 		n_channels_a = mwifiex_band_5ghz.n_channels;
4312 
4313 	/* allocate twice the number total channels, since the driver issues an
4314 	 * additional active scan request for hidden SSIDs on passive channels.
4315 	 */
4316 	adapter->num_in_chan_stats = 2 * (n_channels_bg + n_channels_a);
4317 	adapter->chan_stats = vmalloc(array_size(sizeof(*adapter->chan_stats),
4318 						 adapter->num_in_chan_stats));
4319 
4320 	if (!adapter->chan_stats)
4321 		return -ENOMEM;
4322 
4323 	return 0;
4324 }
4325 
4326 /*
4327  * This function registers the device with CFG802.11 subsystem.
4328  *
4329  * The function creates the wireless device/wiphy, populates it with
4330  * default parameters and handler function pointers, and finally
4331  * registers the device.
4332  */
4333 
mwifiex_register_cfg80211(struct mwifiex_adapter * adapter)4334 int mwifiex_register_cfg80211(struct mwifiex_adapter *adapter)
4335 {
4336 	int ret;
4337 	void *wdev_priv;
4338 	struct wiphy *wiphy;
4339 	struct mwifiex_private *priv = adapter->priv[MWIFIEX_BSS_TYPE_STA];
4340 	u8 *country_code;
4341 	u32 thr, retry;
4342 
4343 	/* create a new wiphy for use with cfg80211 */
4344 	wiphy = wiphy_new(&mwifiex_cfg80211_ops,
4345 			  sizeof(struct mwifiex_adapter *));
4346 	if (!wiphy) {
4347 		mwifiex_dbg(adapter, ERROR,
4348 			    "%s: creating new wiphy\n", __func__);
4349 		return -ENOMEM;
4350 	}
4351 	wiphy->max_scan_ssids = MWIFIEX_MAX_SSID_LIST_LENGTH;
4352 	wiphy->max_scan_ie_len = MWIFIEX_MAX_VSIE_LEN;
4353 	wiphy->mgmt_stypes = mwifiex_mgmt_stypes;
4354 	wiphy->max_remain_on_channel_duration = 5000;
4355 	wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
4356 				 BIT(NL80211_IFTYPE_P2P_CLIENT) |
4357 				 BIT(NL80211_IFTYPE_P2P_GO) |
4358 				 BIT(NL80211_IFTYPE_AP);
4359 
4360 	if (ISSUPP_ADHOC_ENABLED(adapter->fw_cap_info))
4361 		wiphy->interface_modes |= BIT(NL80211_IFTYPE_ADHOC);
4362 
4363 	wiphy->bands[NL80211_BAND_2GHZ] = &mwifiex_band_2ghz;
4364 	if (adapter->config_bands & BAND_A)
4365 		wiphy->bands[NL80211_BAND_5GHZ] = &mwifiex_band_5ghz;
4366 	else
4367 		wiphy->bands[NL80211_BAND_5GHZ] = NULL;
4368 
4369 	if (adapter->drcs_enabled && ISSUPP_DRCS_ENABLED(adapter->fw_cap_info))
4370 		wiphy->iface_combinations = &mwifiex_iface_comb_ap_sta_drcs;
4371 	else if (adapter->is_hw_11ac_capable)
4372 		wiphy->iface_combinations = &mwifiex_iface_comb_ap_sta_vht;
4373 	else
4374 		wiphy->iface_combinations = &mwifiex_iface_comb_ap_sta;
4375 	wiphy->n_iface_combinations = 1;
4376 
4377 	if (adapter->max_sta_conn > adapter->max_p2p_conn)
4378 		wiphy->max_ap_assoc_sta = adapter->max_sta_conn;
4379 	else
4380 		wiphy->max_ap_assoc_sta = adapter->max_p2p_conn;
4381 
4382 	/* Initialize cipher suits */
4383 	wiphy->cipher_suites = mwifiex_cipher_suites;
4384 	wiphy->n_cipher_suites = ARRAY_SIZE(mwifiex_cipher_suites);
4385 
4386 	if (adapter->regd) {
4387 		wiphy->regulatory_flags |= REGULATORY_CUSTOM_REG |
4388 					   REGULATORY_DISABLE_BEACON_HINTS |
4389 					   REGULATORY_COUNTRY_IE_IGNORE;
4390 		wiphy_apply_custom_regulatory(wiphy, adapter->regd);
4391 	}
4392 
4393 	ether_addr_copy(wiphy->perm_addr, adapter->perm_addr);
4394 	wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
4395 	wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME |
4396 			WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD |
4397 			WIPHY_FLAG_AP_UAPSD |
4398 			WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL |
4399 			WIPHY_FLAG_HAS_CHANNEL_SWITCH |
4400 			WIPHY_FLAG_NETNS_OK |
4401 			WIPHY_FLAG_PS_ON_BY_DEFAULT;
4402 
4403 	if (ISSUPP_TDLS_ENABLED(adapter->fw_cap_info))
4404 		wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS |
4405 				WIPHY_FLAG_TDLS_EXTERNAL_SETUP;
4406 
4407 #ifdef CONFIG_PM
4408 	if (ISSUPP_FIRMWARE_SUPPLICANT(priv->adapter->fw_cap_info))
4409 		wiphy->wowlan = &mwifiex_wowlan_support;
4410 	else
4411 		wiphy->wowlan = &mwifiex_wowlan_support_no_gtk;
4412 #endif
4413 
4414 	wiphy->coalesce = &mwifiex_coalesce_support;
4415 
4416 	wiphy->probe_resp_offload = NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS |
4417 				    NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 |
4418 				    NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P;
4419 
4420 	wiphy->max_sched_scan_reqs = 1;
4421 	wiphy->max_sched_scan_ssids = MWIFIEX_MAX_SSID_LIST_LENGTH;
4422 	wiphy->max_sched_scan_ie_len = MWIFIEX_MAX_VSIE_LEN;
4423 	wiphy->max_match_sets = MWIFIEX_MAX_SSID_LIST_LENGTH;
4424 
4425 	wiphy->available_antennas_tx = BIT(adapter->number_of_antenna) - 1;
4426 	wiphy->available_antennas_rx = BIT(adapter->number_of_antenna) - 1;
4427 
4428 	wiphy->features |= NL80211_FEATURE_INACTIVITY_TIMER |
4429 			   NL80211_FEATURE_LOW_PRIORITY_SCAN |
4430 			   NL80211_FEATURE_NEED_OBSS_SCAN;
4431 
4432 	if (ISSUPP_ADHOC_ENABLED(adapter->fw_cap_info))
4433 		wiphy->features |= NL80211_FEATURE_HT_IBSS;
4434 
4435 	if (ISSUPP_RANDOM_MAC(adapter->fw_cap_info))
4436 		wiphy->features |= NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR |
4437 				   NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR |
4438 				   NL80211_FEATURE_ND_RANDOM_MAC_ADDR;
4439 
4440 	if (ISSUPP_TDLS_ENABLED(adapter->fw_cap_info))
4441 		wiphy->features |= NL80211_FEATURE_TDLS_CHANNEL_SWITCH;
4442 
4443 	if (adapter->fw_api_ver == MWIFIEX_FW_V15)
4444 		wiphy->features |= NL80211_FEATURE_SK_TX_STATUS;
4445 
4446 	/* Reserve space for mwifiex specific private data for BSS */
4447 	wiphy->bss_priv_size = sizeof(struct mwifiex_bss_priv);
4448 
4449 	wiphy->reg_notifier = mwifiex_reg_notifier;
4450 
4451 	/* Set struct mwifiex_adapter pointer in wiphy_priv */
4452 	wdev_priv = wiphy_priv(wiphy);
4453 	*(unsigned long *)wdev_priv = (unsigned long)adapter;
4454 
4455 	set_wiphy_dev(wiphy, priv->adapter->dev);
4456 
4457 	ret = wiphy_register(wiphy);
4458 	if (ret < 0) {
4459 		mwifiex_dbg(adapter, ERROR,
4460 			    "%s: wiphy_register failed: %d\n", __func__, ret);
4461 		wiphy_free(wiphy);
4462 		return ret;
4463 	}
4464 
4465 	if (!adapter->regd) {
4466 		if (reg_alpha2 && mwifiex_is_valid_alpha2(reg_alpha2)) {
4467 			mwifiex_dbg(adapter, INFO,
4468 				    "driver hint alpha2: %2.2s\n", reg_alpha2);
4469 			regulatory_hint(wiphy, reg_alpha2);
4470 		} else {
4471 			if (adapter->region_code == 0x00) {
4472 				mwifiex_dbg(adapter, WARN,
4473 					    "Ignore world regulatory domain\n");
4474 			} else {
4475 				wiphy->regulatory_flags |=
4476 					REGULATORY_DISABLE_BEACON_HINTS |
4477 					REGULATORY_COUNTRY_IE_IGNORE;
4478 				country_code =
4479 					mwifiex_11d_code_2_region(
4480 						adapter->region_code);
4481 				if (country_code &&
4482 				    regulatory_hint(wiphy, country_code))
4483 					mwifiex_dbg(priv->adapter, ERROR,
4484 						    "regulatory_hint() failed\n");
4485 			}
4486 		}
4487 	}
4488 
4489 	mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
4490 			 HostCmd_ACT_GEN_GET, FRAG_THRESH_I, &thr, true);
4491 	wiphy->frag_threshold = thr;
4492 	mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
4493 			 HostCmd_ACT_GEN_GET, RTS_THRESH_I, &thr, true);
4494 	wiphy->rts_threshold = thr;
4495 	mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
4496 			 HostCmd_ACT_GEN_GET, SHORT_RETRY_LIM_I, &retry, true);
4497 	wiphy->retry_short = (u8) retry;
4498 	mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
4499 			 HostCmd_ACT_GEN_GET, LONG_RETRY_LIM_I, &retry, true);
4500 	wiphy->retry_long = (u8) retry;
4501 
4502 	adapter->wiphy = wiphy;
4503 	return ret;
4504 }
4505