core.c 25 KB

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