• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This is the linux wireless configuration interface.
3  *
4  * Copyright 2006-2010		Johannes Berg <johannes@sipsolutions.net>
5  * Copyright 2013-2014  Intel Mobile Communications GmbH
6  */
7 
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 
10 #include <linux/if.h>
11 #include <linux/module.h>
12 #include <linux/err.h>
13 #include <linux/list.h>
14 #include <linux/slab.h>
15 #include <linux/nl80211.h>
16 #include <linux/debugfs.h>
17 #include <linux/notifier.h>
18 #include <linux/device.h>
19 #include <linux/etherdevice.h>
20 #include <linux/rtnetlink.h>
21 #include <linux/sched.h>
22 #include <net/genetlink.h>
23 #include <net/cfg80211.h>
24 #include "nl80211.h"
25 #include "core.h"
26 #include "sysfs.h"
27 #include "debugfs.h"
28 #include "wext-compat.h"
29 #include "rdev-ops.h"
30 
31 /* name for sysfs, %d is appended */
32 #define PHY_NAME "phy"
33 
34 MODULE_AUTHOR("Johannes Berg");
35 MODULE_LICENSE("GPL");
36 MODULE_DESCRIPTION("wireless configuration support");
37 MODULE_ALIAS_GENL_FAMILY(NL80211_GENL_NAME);
38 
39 /* RCU-protected (and RTNL for writers) */
40 LIST_HEAD(cfg80211_rdev_list);
41 int cfg80211_rdev_list_generation;
42 
43 /* for debugfs */
44 static struct dentry *ieee80211_debugfs_dir;
45 
46 /* for the cleanup, scan and event works */
47 struct workqueue_struct *cfg80211_wq;
48 
49 static bool cfg80211_disable_40mhz_24ghz;
50 module_param(cfg80211_disable_40mhz_24ghz, bool, 0644);
51 MODULE_PARM_DESC(cfg80211_disable_40mhz_24ghz,
52 		 "Disable 40MHz support in the 2.4GHz band");
53 
cfg80211_rdev_by_wiphy_idx(int wiphy_idx)54 struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx)
55 {
56 	struct cfg80211_registered_device *result = NULL, *rdev;
57 
58 	ASSERT_RTNL();
59 
60 	list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
61 		if (rdev->wiphy_idx == wiphy_idx) {
62 			result = rdev;
63 			break;
64 		}
65 	}
66 
67 	return result;
68 }
69 
get_wiphy_idx(struct wiphy * wiphy)70 int get_wiphy_idx(struct wiphy *wiphy)
71 {
72 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
73 
74 	return rdev->wiphy_idx;
75 }
76 
wiphy_idx_to_wiphy(int wiphy_idx)77 struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx)
78 {
79 	struct cfg80211_registered_device *rdev;
80 
81 	ASSERT_RTNL();
82 
83 	rdev = cfg80211_rdev_by_wiphy_idx(wiphy_idx);
84 	if (!rdev)
85 		return NULL;
86 	return &rdev->wiphy;
87 }
88 
cfg80211_dev_rename(struct cfg80211_registered_device * rdev,char * newname)89 int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
90 			char *newname)
91 {
92 	struct cfg80211_registered_device *rdev2;
93 	int wiphy_idx, taken = -1, result, digits;
94 
95 	ASSERT_RTNL();
96 
97 	/* prohibit calling the thing phy%d when %d is not its number */
98 	sscanf(newname, PHY_NAME "%d%n", &wiphy_idx, &taken);
99 	if (taken == strlen(newname) && wiphy_idx != rdev->wiphy_idx) {
100 		/* count number of places needed to print wiphy_idx */
101 		digits = 1;
102 		while (wiphy_idx /= 10)
103 			digits++;
104 		/*
105 		 * deny the name if it is phy<idx> where <idx> is printed
106 		 * without leading zeroes. taken == strlen(newname) here
107 		 */
108 		if (taken == strlen(PHY_NAME) + digits)
109 			return -EINVAL;
110 	}
111 
112 
113 	/* Ignore nop renames */
114 	if (strcmp(newname, dev_name(&rdev->wiphy.dev)) == 0)
115 		return 0;
116 
117 	/* Ensure another device does not already have this name. */
118 	list_for_each_entry(rdev2, &cfg80211_rdev_list, list)
119 		if (strcmp(newname, dev_name(&rdev2->wiphy.dev)) == 0)
120 			return -EINVAL;
121 
122 	result = device_rename(&rdev->wiphy.dev, newname);
123 	if (result)
124 		return result;
125 
126 	if (rdev->wiphy.debugfsdir &&
127 	    !debugfs_rename(rdev->wiphy.debugfsdir->d_parent,
128 			    rdev->wiphy.debugfsdir,
129 			    rdev->wiphy.debugfsdir->d_parent,
130 			    newname))
131 		pr_err("failed to rename debugfs dir to %s!\n", newname);
132 
133 	nl80211_notify_wiphy(rdev, NL80211_CMD_NEW_WIPHY);
134 
135 	return 0;
136 }
137 
cfg80211_switch_netns(struct cfg80211_registered_device * rdev,struct net * net)138 int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
139 			  struct net *net)
140 {
141 	struct wireless_dev *wdev;
142 	int err = 0;
143 
144 	if (!(rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK))
145 		return -EOPNOTSUPP;
146 
147 	list_for_each_entry(wdev, &rdev->wdev_list, list) {
148 		if (!wdev->netdev)
149 			continue;
150 		wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
151 		err = dev_change_net_namespace(wdev->netdev, net, "wlan%d");
152 		if (err)
153 			break;
154 		wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
155 	}
156 
157 	if (err) {
158 		/* failed -- clean up to old netns */
159 		net = wiphy_net(&rdev->wiphy);
160 
161 		list_for_each_entry_continue_reverse(wdev, &rdev->wdev_list,
162 						     list) {
163 			if (!wdev->netdev)
164 				continue;
165 			wdev->netdev->features &= ~NETIF_F_NETNS_LOCAL;
166 			err = dev_change_net_namespace(wdev->netdev, net,
167 							"wlan%d");
168 			WARN_ON(err);
169 			wdev->netdev->features |= NETIF_F_NETNS_LOCAL;
170 		}
171 
172 		return err;
173 	}
174 
175 	wiphy_net_set(&rdev->wiphy, net);
176 
177 	err = device_rename(&rdev->wiphy.dev, dev_name(&rdev->wiphy.dev));
178 	WARN_ON(err);
179 
180 	return 0;
181 }
182 
cfg80211_rfkill_poll(struct rfkill * rfkill,void * data)183 static void cfg80211_rfkill_poll(struct rfkill *rfkill, void *data)
184 {
185 	struct cfg80211_registered_device *rdev = data;
186 
187 	rdev_rfkill_poll(rdev);
188 }
189 
cfg80211_stop_p2p_device(struct cfg80211_registered_device * rdev,struct wireless_dev * wdev)190 void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev,
191 			      struct wireless_dev *wdev)
192 {
193 	ASSERT_RTNL();
194 
195 	if (WARN_ON(wdev->iftype != NL80211_IFTYPE_P2P_DEVICE))
196 		return;
197 
198 	if (!wdev->p2p_started)
199 		return;
200 
201 	rdev_stop_p2p_device(rdev, wdev);
202 	wdev->p2p_started = false;
203 
204 	rdev->opencount--;
205 
206 	if (rdev->scan_req && rdev->scan_req->wdev == wdev) {
207 		if (WARN_ON(!rdev->scan_req->notified))
208 			rdev->scan_req->aborted = true;
209 		___cfg80211_scan_done(rdev, false);
210 	}
211 }
212 
cfg80211_shutdown_all_interfaces(struct wiphy * wiphy)213 void cfg80211_shutdown_all_interfaces(struct wiphy *wiphy)
214 {
215 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
216 	struct wireless_dev *wdev;
217 
218 	ASSERT_RTNL();
219 
220 	list_for_each_entry(wdev, &rdev->wdev_list, list) {
221 		if (wdev->netdev) {
222 			dev_close(wdev->netdev);
223 			continue;
224 		}
225 		/* otherwise, check iftype */
226 		switch (wdev->iftype) {
227 		case NL80211_IFTYPE_P2P_DEVICE:
228 			cfg80211_stop_p2p_device(rdev, wdev);
229 			break;
230 		default:
231 			break;
232 		}
233 	}
234 }
235 EXPORT_SYMBOL_GPL(cfg80211_shutdown_all_interfaces);
236 
cfg80211_rfkill_set_block(void * data,bool blocked)237 static int cfg80211_rfkill_set_block(void *data, bool blocked)
238 {
239 	struct cfg80211_registered_device *rdev = data;
240 
241 	if (!blocked)
242 		return 0;
243 
244 	rtnl_lock();
245 	cfg80211_shutdown_all_interfaces(&rdev->wiphy);
246 	rtnl_unlock();
247 
248 	return 0;
249 }
250 
cfg80211_rfkill_sync_work(struct work_struct * work)251 static void cfg80211_rfkill_sync_work(struct work_struct *work)
252 {
253 	struct cfg80211_registered_device *rdev;
254 
255 	rdev = container_of(work, struct cfg80211_registered_device, rfkill_sync);
256 	cfg80211_rfkill_set_block(rdev, rfkill_blocked(rdev->rfkill));
257 }
258 
cfg80211_event_work(struct work_struct * work)259 static void cfg80211_event_work(struct work_struct *work)
260 {
261 	struct cfg80211_registered_device *rdev;
262 
263 	rdev = container_of(work, struct cfg80211_registered_device,
264 			    event_work);
265 
266 	rtnl_lock();
267 	cfg80211_process_rdev_events(rdev);
268 	rtnl_unlock();
269 }
270 
cfg80211_destroy_ifaces(struct cfg80211_registered_device * rdev)271 void cfg80211_destroy_ifaces(struct cfg80211_registered_device *rdev)
272 {
273 	struct cfg80211_iface_destroy *item;
274 
275 	ASSERT_RTNL();
276 
277 	spin_lock_irq(&rdev->destroy_list_lock);
278 	while ((item = list_first_entry_or_null(&rdev->destroy_list,
279 						struct cfg80211_iface_destroy,
280 						list))) {
281 		struct wireless_dev *wdev, *tmp;
282 		u32 nlportid = item->nlportid;
283 
284 		list_del(&item->list);
285 		kfree(item);
286 		spin_unlock_irq(&rdev->destroy_list_lock);
287 
288 		list_for_each_entry_safe(wdev, tmp, &rdev->wdev_list, list) {
289 			if (nlportid == wdev->owner_nlportid)
290 				rdev_del_virtual_intf(rdev, wdev);
291 		}
292 
293 		spin_lock_irq(&rdev->destroy_list_lock);
294 	}
295 	spin_unlock_irq(&rdev->destroy_list_lock);
296 }
297 
cfg80211_destroy_iface_wk(struct work_struct * work)298 static void cfg80211_destroy_iface_wk(struct work_struct *work)
299 {
300 	struct cfg80211_registered_device *rdev;
301 
302 	rdev = container_of(work, struct cfg80211_registered_device,
303 			    destroy_work);
304 
305 	rtnl_lock();
306 	cfg80211_destroy_ifaces(rdev);
307 	rtnl_unlock();
308 }
309 
cfg80211_sched_scan_stop_wk(struct work_struct * work)310 static void cfg80211_sched_scan_stop_wk(struct work_struct *work)
311 {
312 	struct cfg80211_registered_device *rdev;
313 
314 	rdev = container_of(work, struct cfg80211_registered_device,
315 			   sched_scan_stop_wk);
316 
317 	rtnl_lock();
318 
319 	__cfg80211_stop_sched_scan(rdev, false);
320 
321 	rtnl_unlock();
322 }
323 
324 /* exported functions */
325 
wiphy_new(const struct cfg80211_ops * ops,int sizeof_priv)326 struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv)
327 {
328 	static atomic_t wiphy_counter = ATOMIC_INIT(0);
329 
330 	struct cfg80211_registered_device *rdev;
331 	int alloc_size;
332 
333 	WARN_ON(ops->add_key && (!ops->del_key || !ops->set_default_key));
334 	WARN_ON(ops->auth && (!ops->assoc || !ops->deauth || !ops->disassoc));
335 	WARN_ON(ops->connect && !ops->disconnect);
336 	WARN_ON(ops->join_ibss && !ops->leave_ibss);
337 	WARN_ON(ops->add_virtual_intf && !ops->del_virtual_intf);
338 	WARN_ON(ops->add_station && !ops->del_station);
339 	WARN_ON(ops->add_mpath && !ops->del_mpath);
340 	WARN_ON(ops->join_mesh && !ops->leave_mesh);
341 
342 	alloc_size = sizeof(*rdev) + sizeof_priv;
343 
344 	rdev = kzalloc(alloc_size, GFP_KERNEL);
345 	if (!rdev)
346 		return NULL;
347 
348 	rdev->ops = ops;
349 
350 	rdev->wiphy_idx = atomic_inc_return(&wiphy_counter);
351 
352 	if (unlikely(rdev->wiphy_idx < 0)) {
353 		/* ugh, wrapped! */
354 		atomic_dec(&wiphy_counter);
355 		kfree(rdev);
356 		return NULL;
357 	}
358 
359 	/* atomic_inc_return makes it start at 1, make it start at 0 */
360 	rdev->wiphy_idx--;
361 
362 	/* give it a proper name */
363 	dev_set_name(&rdev->wiphy.dev, PHY_NAME "%d", rdev->wiphy_idx);
364 
365 	INIT_LIST_HEAD(&rdev->wdev_list);
366 	INIT_LIST_HEAD(&rdev->beacon_registrations);
367 	spin_lock_init(&rdev->beacon_registrations_lock);
368 	spin_lock_init(&rdev->bss_lock);
369 	INIT_LIST_HEAD(&rdev->bss_list);
370 	INIT_WORK(&rdev->scan_done_wk, __cfg80211_scan_done);
371 	INIT_WORK(&rdev->sched_scan_results_wk, __cfg80211_sched_scan_results);
372 	INIT_DELAYED_WORK(&rdev->dfs_update_channels_wk,
373 			  cfg80211_dfs_channels_update_work);
374 #ifdef CONFIG_CFG80211_WEXT
375 	rdev->wiphy.wext = &cfg80211_wext_handler;
376 #endif
377 
378 	device_initialize(&rdev->wiphy.dev);
379 	rdev->wiphy.dev.class = &ieee80211_class;
380 	rdev->wiphy.dev.platform_data = rdev;
381 
382 	INIT_LIST_HEAD(&rdev->destroy_list);
383 	spin_lock_init(&rdev->destroy_list_lock);
384 	INIT_WORK(&rdev->destroy_work, cfg80211_destroy_iface_wk);
385 	INIT_WORK(&rdev->sched_scan_stop_wk, cfg80211_sched_scan_stop_wk);
386 
387 #ifdef CONFIG_CFG80211_DEFAULT_PS
388 	rdev->wiphy.flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
389 #endif
390 
391 	wiphy_net_set(&rdev->wiphy, &init_net);
392 
393 	rdev->rfkill_ops.set_block = cfg80211_rfkill_set_block;
394 	rdev->rfkill = rfkill_alloc(dev_name(&rdev->wiphy.dev),
395 				   &rdev->wiphy.dev, RFKILL_TYPE_WLAN,
396 				   &rdev->rfkill_ops, rdev);
397 
398 	if (!rdev->rfkill) {
399 		kfree(rdev);
400 		return NULL;
401 	}
402 
403 	INIT_WORK(&rdev->rfkill_sync, cfg80211_rfkill_sync_work);
404 	INIT_WORK(&rdev->conn_work, cfg80211_conn_work);
405 	INIT_WORK(&rdev->event_work, cfg80211_event_work);
406 
407 	init_waitqueue_head(&rdev->dev_wait);
408 
409 	/*
410 	 * Initialize wiphy parameters to IEEE 802.11 MIB default values.
411 	 * Fragmentation and RTS threshold are disabled by default with the
412 	 * special -1 value.
413 	 */
414 	rdev->wiphy.retry_short = 7;
415 	rdev->wiphy.retry_long = 4;
416 	rdev->wiphy.frag_threshold = (u32) -1;
417 	rdev->wiphy.rts_threshold = (u32) -1;
418 	rdev->wiphy.coverage_class = 0;
419 
420 	rdev->wiphy.max_num_csa_counters = 1;
421 
422 	return &rdev->wiphy;
423 }
424 EXPORT_SYMBOL(wiphy_new);
425 
wiphy_verify_combinations(struct wiphy * wiphy)426 static int wiphy_verify_combinations(struct wiphy *wiphy)
427 {
428 	const struct ieee80211_iface_combination *c;
429 	int i, j;
430 
431 	for (i = 0; i < wiphy->n_iface_combinations; i++) {
432 		u32 cnt = 0;
433 		u16 all_iftypes = 0;
434 
435 		c = &wiphy->iface_combinations[i];
436 
437 		/*
438 		 * Combinations with just one interface aren't real,
439 		 * however we make an exception for DFS.
440 		 */
441 		if (WARN_ON((c->max_interfaces < 2) && !c->radar_detect_widths))
442 			return -EINVAL;
443 
444 		/* Need at least one channel */
445 		if (WARN_ON(!c->num_different_channels))
446 			return -EINVAL;
447 
448 		/*
449 		 * Put a sane limit on maximum number of different
450 		 * channels to simplify channel accounting code.
451 		 */
452 		if (WARN_ON(c->num_different_channels >
453 				CFG80211_MAX_NUM_DIFFERENT_CHANNELS))
454 			return -EINVAL;
455 
456 		/* DFS only works on one channel. */
457 		if (WARN_ON(c->radar_detect_widths &&
458 			    (c->num_different_channels > 1)))
459 			return -EINVAL;
460 
461 		if (WARN_ON(!c->n_limits))
462 			return -EINVAL;
463 
464 		for (j = 0; j < c->n_limits; j++) {
465 			u16 types = c->limits[j].types;
466 
467 			/* interface types shouldn't overlap */
468 			if (WARN_ON(types & all_iftypes))
469 				return -EINVAL;
470 			all_iftypes |= types;
471 
472 			if (WARN_ON(!c->limits[j].max))
473 				return -EINVAL;
474 
475 			/* Shouldn't list software iftypes in combinations! */
476 			if (WARN_ON(wiphy->software_iftypes & types))
477 				return -EINVAL;
478 
479 			/* Only a single P2P_DEVICE can be allowed */
480 			if (WARN_ON(types & BIT(NL80211_IFTYPE_P2P_DEVICE) &&
481 				    c->limits[j].max > 1))
482 				return -EINVAL;
483 
484 			cnt += c->limits[j].max;
485 			/*
486 			 * Don't advertise an unsupported type
487 			 * in a combination.
488 			 */
489 			if (WARN_ON((wiphy->interface_modes & types) != types))
490 				return -EINVAL;
491 		}
492 
493 		/* You can't even choose that many! */
494 		if (WARN_ON(cnt < c->max_interfaces))
495 			return -EINVAL;
496 	}
497 
498 	return 0;
499 }
500 
wiphy_register(struct wiphy * wiphy)501 int wiphy_register(struct wiphy *wiphy)
502 {
503 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
504 	int res;
505 	enum ieee80211_band band;
506 	struct ieee80211_supported_band *sband;
507 	bool have_band = false;
508 	int i;
509 	u16 ifmodes = wiphy->interface_modes;
510 
511 #ifdef CONFIG_PM
512 	if (WARN_ON(wiphy->wowlan &&
513 		    (wiphy->wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
514 		    !(wiphy->wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY)))
515 		return -EINVAL;
516 	if (WARN_ON(wiphy->wowlan &&
517 		    !wiphy->wowlan->flags && !wiphy->wowlan->n_patterns &&
518 		    !wiphy->wowlan->tcp))
519 		return -EINVAL;
520 #endif
521 
522 	if (WARN_ON(wiphy->coalesce &&
523 		    (!wiphy->coalesce->n_rules ||
524 		     !wiphy->coalesce->n_patterns) &&
525 		    (!wiphy->coalesce->pattern_min_len ||
526 		     wiphy->coalesce->pattern_min_len >
527 			wiphy->coalesce->pattern_max_len)))
528 		return -EINVAL;
529 
530 	if (WARN_ON(wiphy->ap_sme_capa &&
531 		    !(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME)))
532 		return -EINVAL;
533 
534 	if (WARN_ON(wiphy->addresses && !wiphy->n_addresses))
535 		return -EINVAL;
536 
537 	if (WARN_ON(wiphy->addresses &&
538 		    !is_zero_ether_addr(wiphy->perm_addr) &&
539 		    memcmp(wiphy->perm_addr, wiphy->addresses[0].addr,
540 			   ETH_ALEN)))
541 		return -EINVAL;
542 
543 	if (WARN_ON(wiphy->max_acl_mac_addrs &&
544 		    (!(wiphy->flags & WIPHY_FLAG_HAVE_AP_SME) ||
545 		     !rdev->ops->set_mac_acl)))
546 		return -EINVAL;
547 
548 	if (wiphy->addresses)
549 		memcpy(wiphy->perm_addr, wiphy->addresses[0].addr, ETH_ALEN);
550 
551 	/* sanity check ifmodes */
552 	WARN_ON(!ifmodes);
553 	ifmodes &= ((1 << NUM_NL80211_IFTYPES) - 1) & ~1;
554 	if (WARN_ON(ifmodes != wiphy->interface_modes))
555 		wiphy->interface_modes = ifmodes;
556 
557 	res = wiphy_verify_combinations(wiphy);
558 	if (res)
559 		return res;
560 
561 	/* sanity check supported bands/channels */
562 	for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
563 		sband = wiphy->bands[band];
564 		if (!sband)
565 			continue;
566 
567 		sband->band = band;
568 		if (WARN_ON(!sband->n_channels))
569 			return -EINVAL;
570 		/*
571 		 * on 60gHz band, there are no legacy rates, so
572 		 * n_bitrates is 0
573 		 */
574 		if (WARN_ON(band != IEEE80211_BAND_60GHZ &&
575 			    !sband->n_bitrates))
576 			return -EINVAL;
577 
578 		/*
579 		 * Since cfg80211_disable_40mhz_24ghz is global, we can
580 		 * modify the sband's ht data even if the driver uses a
581 		 * global structure for that.
582 		 */
583 		if (cfg80211_disable_40mhz_24ghz &&
584 		    band == IEEE80211_BAND_2GHZ &&
585 		    sband->ht_cap.ht_supported) {
586 			sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
587 			sband->ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
588 		}
589 
590 		/*
591 		 * Since we use a u32 for rate bitmaps in
592 		 * ieee80211_get_response_rate, we cannot
593 		 * have more than 32 legacy rates.
594 		 */
595 		if (WARN_ON(sband->n_bitrates > 32))
596 			return -EINVAL;
597 
598 		for (i = 0; i < sband->n_channels; i++) {
599 			sband->channels[i].orig_flags =
600 				sband->channels[i].flags;
601 			sband->channels[i].orig_mag = INT_MAX;
602 			sband->channels[i].orig_mpwr =
603 				sband->channels[i].max_power;
604 			sband->channels[i].band = band;
605 		}
606 
607 		have_band = true;
608 	}
609 
610 	if (!have_band) {
611 		WARN_ON(1);
612 		return -EINVAL;
613 	}
614 
615 #ifdef CONFIG_PM
616 	if (WARN_ON(rdev->wiphy.wowlan && rdev->wiphy.wowlan->n_patterns &&
617 		    (!rdev->wiphy.wowlan->pattern_min_len ||
618 		     rdev->wiphy.wowlan->pattern_min_len >
619 				rdev->wiphy.wowlan->pattern_max_len)))
620 		return -EINVAL;
621 #endif
622 
623 	/* check and set up bitrates */
624 	ieee80211_set_bitrate_flags(wiphy);
625 
626 	rdev->wiphy.features |= NL80211_FEATURE_SCAN_FLUSH;
627 
628 	rtnl_lock();
629 	res = device_add(&rdev->wiphy.dev);
630 	if (res) {
631 		rtnl_unlock();
632 		return res;
633 	}
634 
635 	/* set up regulatory info */
636 	wiphy_regulatory_register(wiphy);
637 
638 	list_add_rcu(&rdev->list, &cfg80211_rdev_list);
639 	cfg80211_rdev_list_generation++;
640 
641 	/* add to debugfs */
642 	rdev->wiphy.debugfsdir =
643 		debugfs_create_dir(wiphy_name(&rdev->wiphy),
644 				   ieee80211_debugfs_dir);
645 	if (IS_ERR(rdev->wiphy.debugfsdir))
646 		rdev->wiphy.debugfsdir = NULL;
647 
648 	cfg80211_debugfs_rdev_add(rdev);
649 	nl80211_notify_wiphy(rdev, NL80211_CMD_NEW_WIPHY);
650 
651 	if (wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) {
652 		struct regulatory_request request;
653 
654 		request.wiphy_idx = get_wiphy_idx(wiphy);
655 		request.initiator = NL80211_REGDOM_SET_BY_DRIVER;
656 		request.alpha2[0] = '9';
657 		request.alpha2[1] = '9';
658 
659 		nl80211_send_reg_change_event(&request);
660 	}
661 
662 	rdev->wiphy.registered = true;
663 	rtnl_unlock();
664 
665 	res = rfkill_register(rdev->rfkill);
666 	if (res) {
667 		rfkill_destroy(rdev->rfkill);
668 		rdev->rfkill = NULL;
669 		wiphy_unregister(&rdev->wiphy);
670 		return res;
671 	}
672 
673 	return 0;
674 }
675 EXPORT_SYMBOL(wiphy_register);
676 
wiphy_rfkill_start_polling(struct wiphy * wiphy)677 void wiphy_rfkill_start_polling(struct wiphy *wiphy)
678 {
679 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
680 
681 	if (!rdev->ops->rfkill_poll)
682 		return;
683 	rdev->rfkill_ops.poll = cfg80211_rfkill_poll;
684 	rfkill_resume_polling(rdev->rfkill);
685 }
686 EXPORT_SYMBOL(wiphy_rfkill_start_polling);
687 
wiphy_rfkill_stop_polling(struct wiphy * wiphy)688 void wiphy_rfkill_stop_polling(struct wiphy *wiphy)
689 {
690 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
691 
692 	rfkill_pause_polling(rdev->rfkill);
693 }
694 EXPORT_SYMBOL(wiphy_rfkill_stop_polling);
695 
wiphy_unregister(struct wiphy * wiphy)696 void wiphy_unregister(struct wiphy *wiphy)
697 {
698 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
699 
700 	wait_event(rdev->dev_wait, ({
701 		int __count;
702 		rtnl_lock();
703 		__count = rdev->opencount;
704 		rtnl_unlock();
705 		__count == 0; }));
706 
707 	if (rdev->rfkill)
708 		rfkill_unregister(rdev->rfkill);
709 
710 	rtnl_lock();
711 	nl80211_notify_wiphy(rdev, NL80211_CMD_DEL_WIPHY);
712 	rdev->wiphy.registered = false;
713 
714 	WARN_ON(!list_empty(&rdev->wdev_list));
715 
716 	/*
717 	 * First remove the hardware from everywhere, this makes
718 	 * it impossible to find from userspace.
719 	 */
720 	debugfs_remove_recursive(rdev->wiphy.debugfsdir);
721 	list_del_rcu(&rdev->list);
722 	synchronize_rcu();
723 
724 	/*
725 	 * If this device got a regulatory hint tell core its
726 	 * free to listen now to a new shiny device regulatory hint
727 	 */
728 	wiphy_regulatory_deregister(wiphy);
729 
730 	cfg80211_rdev_list_generation++;
731 	device_del(&rdev->wiphy.dev);
732 
733 	rtnl_unlock();
734 
735 	flush_work(&rdev->scan_done_wk);
736 	cancel_work_sync(&rdev->conn_work);
737 	flush_work(&rdev->event_work);
738 	cancel_delayed_work_sync(&rdev->dfs_update_channels_wk);
739 	flush_work(&rdev->destroy_work);
740 	flush_work(&rdev->sched_scan_stop_wk);
741 
742 #ifdef CONFIG_PM
743 	if (rdev->wiphy.wowlan_config && rdev->ops->set_wakeup)
744 		rdev_set_wakeup(rdev, false);
745 #endif
746 	cfg80211_rdev_free_wowlan(rdev);
747 	cfg80211_rdev_free_coalesce(rdev);
748 }
749 EXPORT_SYMBOL(wiphy_unregister);
750 
cfg80211_dev_free(struct cfg80211_registered_device * rdev)751 void cfg80211_dev_free(struct cfg80211_registered_device *rdev)
752 {
753 	struct cfg80211_internal_bss *scan, *tmp;
754 	struct cfg80211_beacon_registration *reg, *treg;
755 	rfkill_destroy(rdev->rfkill);
756 	list_for_each_entry_safe(reg, treg, &rdev->beacon_registrations, list) {
757 		list_del(&reg->list);
758 		kfree(reg);
759 	}
760 	list_for_each_entry_safe(scan, tmp, &rdev->bss_list, list)
761 		cfg80211_put_bss(&rdev->wiphy, &scan->pub);
762 	kfree(rdev);
763 }
764 
wiphy_free(struct wiphy * wiphy)765 void wiphy_free(struct wiphy *wiphy)
766 {
767 	put_device(&wiphy->dev);
768 }
769 EXPORT_SYMBOL(wiphy_free);
770 
wiphy_rfkill_set_hw_state(struct wiphy * wiphy,bool blocked)771 void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked)
772 {
773 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
774 
775 	if (rfkill_set_hw_state(rdev->rfkill, blocked))
776 		schedule_work(&rdev->rfkill_sync);
777 }
778 EXPORT_SYMBOL(wiphy_rfkill_set_hw_state);
779 
cfg80211_unregister_wdev(struct wireless_dev * wdev)780 void cfg80211_unregister_wdev(struct wireless_dev *wdev)
781 {
782 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
783 
784 	ASSERT_RTNL();
785 
786 	if (WARN_ON(wdev->netdev))
787 		return;
788 
789 	list_del_rcu(&wdev->list);
790 	rdev->devlist_generation++;
791 
792 	switch (wdev->iftype) {
793 	case NL80211_IFTYPE_P2P_DEVICE:
794 		cfg80211_stop_p2p_device(rdev, wdev);
795 		break;
796 	default:
797 		WARN_ON_ONCE(1);
798 		break;
799 	}
800 }
801 EXPORT_SYMBOL(cfg80211_unregister_wdev);
802 
803 static const struct device_type wiphy_type = {
804 	.name	= "wlan",
805 };
806 
cfg80211_update_iface_num(struct cfg80211_registered_device * rdev,enum nl80211_iftype iftype,int num)807 void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev,
808 			       enum nl80211_iftype iftype, int num)
809 {
810 	ASSERT_RTNL();
811 
812 	rdev->num_running_ifaces += num;
813 	if (iftype == NL80211_IFTYPE_MONITOR)
814 		rdev->num_running_monitor_ifaces += num;
815 }
816 
__cfg80211_leave(struct cfg80211_registered_device * rdev,struct wireless_dev * wdev)817 void __cfg80211_leave(struct cfg80211_registered_device *rdev,
818 		      struct wireless_dev *wdev)
819 {
820 	struct net_device *dev = wdev->netdev;
821 
822 	ASSERT_RTNL();
823 	ASSERT_WDEV_LOCK(wdev);
824 
825 	switch (wdev->iftype) {
826 	case NL80211_IFTYPE_ADHOC:
827 		__cfg80211_leave_ibss(rdev, dev, true);
828 		break;
829 	case NL80211_IFTYPE_P2P_CLIENT:
830 	case NL80211_IFTYPE_STATION:
831 		if (rdev->sched_scan_req && dev == rdev->sched_scan_req->dev)
832 			__cfg80211_stop_sched_scan(rdev, false);
833 
834 #ifdef CONFIG_CFG80211_WEXT
835 		kfree(wdev->wext.ie);
836 		wdev->wext.ie = NULL;
837 		wdev->wext.ie_len = 0;
838 		wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
839 #endif
840 		cfg80211_disconnect(rdev, dev,
841 				    WLAN_REASON_DEAUTH_LEAVING, true);
842 		break;
843 	case NL80211_IFTYPE_MESH_POINT:
844 		__cfg80211_leave_mesh(rdev, dev);
845 		break;
846 	case NL80211_IFTYPE_AP:
847 	case NL80211_IFTYPE_P2P_GO:
848 		__cfg80211_stop_ap(rdev, dev, true);
849 		break;
850 	default:
851 		break;
852 	}
853 }
854 
cfg80211_leave(struct cfg80211_registered_device * rdev,struct wireless_dev * wdev)855 void cfg80211_leave(struct cfg80211_registered_device *rdev,
856 		    struct wireless_dev *wdev)
857 {
858 	wdev_lock(wdev);
859 	__cfg80211_leave(rdev, wdev);
860 	wdev_unlock(wdev);
861 }
862 
cfg80211_stop_iface(struct wiphy * wiphy,struct wireless_dev * wdev,gfp_t gfp)863 void cfg80211_stop_iface(struct wiphy *wiphy, struct wireless_dev *wdev,
864 			 gfp_t gfp)
865 {
866 	struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
867 	struct cfg80211_event *ev;
868 	unsigned long flags;
869 
870 	trace_cfg80211_stop_iface(wiphy, wdev);
871 
872 	ev = kzalloc(sizeof(*ev), gfp);
873 	if (!ev)
874 		return;
875 
876 	ev->type = EVENT_STOPPED;
877 
878 	spin_lock_irqsave(&wdev->event_lock, flags);
879 	list_add_tail(&ev->list, &wdev->event_list);
880 	spin_unlock_irqrestore(&wdev->event_lock, flags);
881 	queue_work(cfg80211_wq, &rdev->event_work);
882 }
883 EXPORT_SYMBOL(cfg80211_stop_iface);
884 
cfg80211_netdev_notifier_call(struct notifier_block * nb,unsigned long state,void * ptr)885 static int cfg80211_netdev_notifier_call(struct notifier_block *nb,
886 					 unsigned long state, void *ptr)
887 {
888 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
889 	struct wireless_dev *wdev = dev->ieee80211_ptr;
890 	struct cfg80211_registered_device *rdev;
891 
892 	if (!wdev)
893 		return NOTIFY_DONE;
894 
895 	rdev = wiphy_to_rdev(wdev->wiphy);
896 
897 	WARN_ON(wdev->iftype == NL80211_IFTYPE_UNSPECIFIED);
898 
899 	switch (state) {
900 	case NETDEV_POST_INIT:
901 		SET_NETDEV_DEVTYPE(dev, &wiphy_type);
902 		break;
903 	case NETDEV_REGISTER:
904 		/*
905 		 * NB: cannot take rdev->mtx here because this may be
906 		 * called within code protected by it when interfaces
907 		 * are added with nl80211.
908 		 */
909 		mutex_init(&wdev->mtx);
910 		INIT_LIST_HEAD(&wdev->event_list);
911 		spin_lock_init(&wdev->event_lock);
912 		INIT_LIST_HEAD(&wdev->mgmt_registrations);
913 		spin_lock_init(&wdev->mgmt_registrations_lock);
914 
915 		wdev->identifier = ++rdev->wdev_id;
916 		list_add_rcu(&wdev->list, &rdev->wdev_list);
917 		rdev->devlist_generation++;
918 		/* can only change netns with wiphy */
919 		dev->features |= NETIF_F_NETNS_LOCAL;
920 
921 		if (sysfs_create_link(&dev->dev.kobj, &rdev->wiphy.dev.kobj,
922 				      "phy80211")) {
923 			pr_err("failed to add phy80211 symlink to netdev!\n");
924 		}
925 		wdev->netdev = dev;
926 #ifdef CONFIG_CFG80211_WEXT
927 		wdev->wext.default_key = -1;
928 		wdev->wext.default_mgmt_key = -1;
929 		wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
930 #endif
931 
932 		if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT)
933 			wdev->ps = true;
934 		else
935 			wdev->ps = false;
936 		/* allow mac80211 to determine the timeout */
937 		wdev->ps_timeout = -1;
938 
939 		if ((wdev->iftype == NL80211_IFTYPE_STATION ||
940 		     wdev->iftype == NL80211_IFTYPE_P2P_CLIENT ||
941 		     wdev->iftype == NL80211_IFTYPE_ADHOC) && !wdev->use_4addr)
942 			dev->priv_flags |= IFF_DONT_BRIDGE;
943 		break;
944 	case NETDEV_GOING_DOWN:
945 		cfg80211_leave(rdev, wdev);
946 		break;
947 	case NETDEV_DOWN:
948 		cfg80211_update_iface_num(rdev, wdev->iftype, -1);
949 		if (rdev->scan_req && rdev->scan_req->wdev == wdev) {
950 			if (WARN_ON(!rdev->scan_req->notified))
951 				rdev->scan_req->aborted = true;
952 			___cfg80211_scan_done(rdev, false);
953 		}
954 
955 		if (WARN_ON(rdev->sched_scan_req &&
956 			    rdev->sched_scan_req->dev == wdev->netdev)) {
957 			__cfg80211_stop_sched_scan(rdev, false);
958 		}
959 
960 		rdev->opencount--;
961 		wake_up(&rdev->dev_wait);
962 		break;
963 	case NETDEV_UP:
964 		cfg80211_update_iface_num(rdev, wdev->iftype, 1);
965 		wdev_lock(wdev);
966 		switch (wdev->iftype) {
967 #ifdef CONFIG_CFG80211_WEXT
968 		case NL80211_IFTYPE_ADHOC:
969 			cfg80211_ibss_wext_join(rdev, wdev);
970 			break;
971 		case NL80211_IFTYPE_STATION:
972 			cfg80211_mgd_wext_connect(rdev, wdev);
973 			break;
974 #endif
975 #ifdef CONFIG_MAC80211_MESH
976 		case NL80211_IFTYPE_MESH_POINT:
977 			{
978 				/* backward compat code... */
979 				struct mesh_setup setup;
980 				memcpy(&setup, &default_mesh_setup,
981 						sizeof(setup));
982 				 /* back compat only needed for mesh_id */
983 				setup.mesh_id = wdev->ssid;
984 				setup.mesh_id_len = wdev->mesh_id_up_len;
985 				if (wdev->mesh_id_up_len)
986 					__cfg80211_join_mesh(rdev, dev,
987 							&setup,
988 							&default_mesh_config);
989 				break;
990 			}
991 #endif
992 		default:
993 			break;
994 		}
995 		wdev_unlock(wdev);
996 		rdev->opencount++;
997 
998 		/*
999 		 * Configure power management to the driver here so that its
1000 		 * correctly set also after interface type changes etc.
1001 		 */
1002 		if ((wdev->iftype == NL80211_IFTYPE_STATION ||
1003 		     wdev->iftype == NL80211_IFTYPE_P2P_CLIENT) &&
1004 		    rdev->ops->set_power_mgmt)
1005 			if (rdev_set_power_mgmt(rdev, dev, wdev->ps,
1006 						wdev->ps_timeout)) {
1007 				/* assume this means it's off */
1008 				wdev->ps = false;
1009 			}
1010 		break;
1011 	case NETDEV_UNREGISTER:
1012 		/*
1013 		 * It is possible to get NETDEV_UNREGISTER
1014 		 * multiple times. To detect that, check
1015 		 * that the interface is still on the list
1016 		 * of registered interfaces, and only then
1017 		 * remove and clean it up.
1018 		 */
1019 		if (!list_empty(&wdev->list)) {
1020 			sysfs_remove_link(&dev->dev.kobj, "phy80211");
1021 			list_del_rcu(&wdev->list);
1022 			rdev->devlist_generation++;
1023 			cfg80211_mlme_purge_registrations(wdev);
1024 #ifdef CONFIG_CFG80211_WEXT
1025 			kzfree(wdev->wext.keys);
1026 #endif
1027 		}
1028 		/*
1029 		 * synchronise (so that we won't find this netdev
1030 		 * from other code any more) and then clear the list
1031 		 * head so that the above code can safely check for
1032 		 * !list_empty() to avoid double-cleanup.
1033 		 */
1034 		synchronize_rcu();
1035 		INIT_LIST_HEAD(&wdev->list);
1036 		/*
1037 		 * Ensure that all events have been processed and
1038 		 * freed.
1039 		 */
1040 		cfg80211_process_wdev_events(wdev);
1041 
1042 		if (WARN_ON(wdev->current_bss)) {
1043 			cfg80211_unhold_bss(wdev->current_bss);
1044 			cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
1045 			wdev->current_bss = NULL;
1046 		}
1047 		break;
1048 	case NETDEV_PRE_UP:
1049 		if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
1050 			return notifier_from_errno(-EOPNOTSUPP);
1051 		if (rfkill_blocked(rdev->rfkill))
1052 			return notifier_from_errno(-ERFKILL);
1053 		break;
1054 	default:
1055 		return NOTIFY_DONE;
1056 	}
1057 
1058 	wireless_nlevent_flush();
1059 
1060 	return NOTIFY_OK;
1061 }
1062 
1063 static struct notifier_block cfg80211_netdev_notifier = {
1064 	.notifier_call = cfg80211_netdev_notifier_call,
1065 };
1066 
cfg80211_pernet_exit(struct net * net)1067 static void __net_exit cfg80211_pernet_exit(struct net *net)
1068 {
1069 	struct cfg80211_registered_device *rdev;
1070 
1071 	rtnl_lock();
1072 	list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1073 		if (net_eq(wiphy_net(&rdev->wiphy), net))
1074 			WARN_ON(cfg80211_switch_netns(rdev, &init_net));
1075 	}
1076 	rtnl_unlock();
1077 }
1078 
1079 static struct pernet_operations cfg80211_pernet_ops = {
1080 	.exit = cfg80211_pernet_exit,
1081 };
1082 
cfg80211_init(void)1083 static int __init cfg80211_init(void)
1084 {
1085 	int err;
1086 
1087 	err = register_pernet_device(&cfg80211_pernet_ops);
1088 	if (err)
1089 		goto out_fail_pernet;
1090 
1091 	err = wiphy_sysfs_init();
1092 	if (err)
1093 		goto out_fail_sysfs;
1094 
1095 	err = register_netdevice_notifier(&cfg80211_netdev_notifier);
1096 	if (err)
1097 		goto out_fail_notifier;
1098 
1099 	err = nl80211_init();
1100 	if (err)
1101 		goto out_fail_nl80211;
1102 
1103 	ieee80211_debugfs_dir = debugfs_create_dir("ieee80211", NULL);
1104 
1105 	err = regulatory_init();
1106 	if (err)
1107 		goto out_fail_reg;
1108 
1109 	cfg80211_wq = create_singlethread_workqueue("cfg80211");
1110 	if (!cfg80211_wq) {
1111 		err = -ENOMEM;
1112 		goto out_fail_wq;
1113 	}
1114 
1115 	return 0;
1116 
1117 out_fail_wq:
1118 	regulatory_exit();
1119 out_fail_reg:
1120 	debugfs_remove(ieee80211_debugfs_dir);
1121 out_fail_nl80211:
1122 	unregister_netdevice_notifier(&cfg80211_netdev_notifier);
1123 out_fail_notifier:
1124 	wiphy_sysfs_exit();
1125 out_fail_sysfs:
1126 	unregister_pernet_device(&cfg80211_pernet_ops);
1127 out_fail_pernet:
1128 	return err;
1129 }
1130 subsys_initcall(cfg80211_init);
1131 
cfg80211_exit(void)1132 static void __exit cfg80211_exit(void)
1133 {
1134 	debugfs_remove(ieee80211_debugfs_dir);
1135 	nl80211_exit();
1136 	unregister_netdevice_notifier(&cfg80211_netdev_notifier);
1137 	wiphy_sysfs_exit();
1138 	regulatory_exit();
1139 	unregister_pernet_device(&cfg80211_pernet_ops);
1140 	destroy_workqueue(cfg80211_wq);
1141 }
1142 module_exit(cfg80211_exit);
1143