main.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979
  1. /*
  2. * Copyright 2002-2005, Instant802 Networks, Inc.
  3. * Copyright 2005-2006, Devicescape Software, Inc.
  4. * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <net/mac80211.h>
  11. #include <linux/module.h>
  12. #include <linux/init.h>
  13. #include <linux/netdevice.h>
  14. #include <linux/types.h>
  15. #include <linux/slab.h>
  16. #include <linux/skbuff.h>
  17. #include <linux/etherdevice.h>
  18. #include <linux/if_arp.h>
  19. #include <linux/rtnetlink.h>
  20. #include <linux/bitmap.h>
  21. #include <linux/pm_qos_params.h>
  22. #include <linux/inetdevice.h>
  23. #include <net/net_namespace.h>
  24. #include <net/cfg80211.h>
  25. #include "ieee80211_i.h"
  26. #include "driver-ops.h"
  27. #include "rate.h"
  28. #include "mesh.h"
  29. #include "wep.h"
  30. #include "led.h"
  31. #include "cfg.h"
  32. #include "debugfs.h"
  33. bool ieee80211_disable_40mhz_24ghz;
  34. module_param(ieee80211_disable_40mhz_24ghz, bool, 0644);
  35. MODULE_PARM_DESC(ieee80211_disable_40mhz_24ghz,
  36. "Disable 40MHz support in the 2.4GHz band");
  37. void ieee80211_configure_filter(struct ieee80211_local *local)
  38. {
  39. u64 mc;
  40. unsigned int changed_flags;
  41. unsigned int new_flags = 0;
  42. if (atomic_read(&local->iff_promiscs))
  43. new_flags |= FIF_PROMISC_IN_BSS;
  44. if (atomic_read(&local->iff_allmultis))
  45. new_flags |= FIF_ALLMULTI;
  46. if (local->monitors || local->scanning)
  47. new_flags |= FIF_BCN_PRBRESP_PROMISC;
  48. if (local->fif_fcsfail)
  49. new_flags |= FIF_FCSFAIL;
  50. if (local->fif_plcpfail)
  51. new_flags |= FIF_PLCPFAIL;
  52. if (local->fif_control)
  53. new_flags |= FIF_CONTROL;
  54. if (local->fif_other_bss)
  55. new_flags |= FIF_OTHER_BSS;
  56. if (local->fif_pspoll)
  57. new_flags |= FIF_PSPOLL;
  58. spin_lock_bh(&local->filter_lock);
  59. changed_flags = local->filter_flags ^ new_flags;
  60. mc = drv_prepare_multicast(local, &local->mc_list);
  61. spin_unlock_bh(&local->filter_lock);
  62. /* be a bit nasty */
  63. new_flags |= (1<<31);
  64. drv_configure_filter(local, changed_flags, &new_flags, mc);
  65. WARN_ON(new_flags & (1<<31));
  66. local->filter_flags = new_flags & ~(1<<31);
  67. }
  68. static void ieee80211_reconfig_filter(struct work_struct *work)
  69. {
  70. struct ieee80211_local *local =
  71. container_of(work, struct ieee80211_local, reconfig_filter);
  72. ieee80211_configure_filter(local);
  73. }
  74. int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
  75. {
  76. struct ieee80211_channel *chan, *scan_chan;
  77. int ret = 0;
  78. int power;
  79. enum nl80211_channel_type channel_type;
  80. u32 offchannel_flag;
  81. might_sleep();
  82. scan_chan = local->scan_channel;
  83. offchannel_flag = local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL;
  84. if (scan_chan) {
  85. chan = scan_chan;
  86. channel_type = NL80211_CHAN_NO_HT;
  87. local->hw.conf.flags |= IEEE80211_CONF_OFFCHANNEL;
  88. } else if (local->tmp_channel &&
  89. local->oper_channel != local->tmp_channel) {
  90. chan = scan_chan = local->tmp_channel;
  91. channel_type = local->tmp_channel_type;
  92. local->hw.conf.flags |= IEEE80211_CONF_OFFCHANNEL;
  93. } else {
  94. chan = local->oper_channel;
  95. channel_type = local->_oper_channel_type;
  96. local->hw.conf.flags &= ~IEEE80211_CONF_OFFCHANNEL;
  97. }
  98. offchannel_flag ^= local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL;
  99. if (offchannel_flag || chan != local->hw.conf.channel ||
  100. channel_type != local->hw.conf.channel_type) {
  101. local->hw.conf.channel = chan;
  102. local->hw.conf.channel_type = channel_type;
  103. changed |= IEEE80211_CONF_CHANGE_CHANNEL;
  104. }
  105. if (!conf_is_ht(&local->hw.conf)) {
  106. /*
  107. * mac80211.h documents that this is only valid
  108. * when the channel is set to an HT type, and
  109. * that otherwise STATIC is used.
  110. */
  111. local->hw.conf.smps_mode = IEEE80211_SMPS_STATIC;
  112. } else if (local->hw.conf.smps_mode != local->smps_mode) {
  113. local->hw.conf.smps_mode = local->smps_mode;
  114. changed |= IEEE80211_CONF_CHANGE_SMPS;
  115. }
  116. if (scan_chan)
  117. power = chan->max_power;
  118. else
  119. power = local->power_constr_level ?
  120. (chan->max_power - local->power_constr_level) :
  121. chan->max_power;
  122. if (local->user_power_level >= 0)
  123. power = min(power, local->user_power_level);
  124. if (local->hw.conf.power_level != power) {
  125. changed |= IEEE80211_CONF_CHANGE_POWER;
  126. local->hw.conf.power_level = power;
  127. }
  128. if (changed && local->open_count) {
  129. ret = drv_config(local, changed);
  130. /*
  131. * Goal:
  132. * HW reconfiguration should never fail, the driver has told
  133. * us what it can support so it should live up to that promise.
  134. *
  135. * Current status:
  136. * rfkill is not integrated with mac80211 and a
  137. * configuration command can thus fail if hardware rfkill
  138. * is enabled
  139. *
  140. * FIXME: integrate rfkill with mac80211 and then add this
  141. * WARN_ON() back
  142. *
  143. */
  144. /* WARN_ON(ret); */
  145. }
  146. return ret;
  147. }
  148. void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
  149. u32 changed)
  150. {
  151. struct ieee80211_local *local = sdata->local;
  152. static const u8 zero[ETH_ALEN] = { 0 };
  153. if (!changed)
  154. return;
  155. if (sdata->vif.type == NL80211_IFTYPE_STATION) {
  156. /*
  157. * While not associated, claim a BSSID of all-zeroes
  158. * so that drivers don't do any weird things with the
  159. * BSSID at that time.
  160. */
  161. if (sdata->vif.bss_conf.assoc)
  162. sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid;
  163. else
  164. sdata->vif.bss_conf.bssid = zero;
  165. } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
  166. sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid;
  167. else if (sdata->vif.type == NL80211_IFTYPE_AP)
  168. sdata->vif.bss_conf.bssid = sdata->vif.addr;
  169. else if (sdata->vif.type == NL80211_IFTYPE_WDS)
  170. sdata->vif.bss_conf.bssid = NULL;
  171. else if (ieee80211_vif_is_mesh(&sdata->vif)) {
  172. sdata->vif.bss_conf.bssid = zero;
  173. } else {
  174. WARN_ON(1);
  175. return;
  176. }
  177. switch (sdata->vif.type) {
  178. case NL80211_IFTYPE_AP:
  179. case NL80211_IFTYPE_ADHOC:
  180. case NL80211_IFTYPE_WDS:
  181. case NL80211_IFTYPE_MESH_POINT:
  182. break;
  183. default:
  184. /* do not warn to simplify caller in scan.c */
  185. changed &= ~BSS_CHANGED_BEACON_ENABLED;
  186. if (WARN_ON(changed & BSS_CHANGED_BEACON))
  187. return;
  188. break;
  189. }
  190. if (changed & BSS_CHANGED_BEACON_ENABLED) {
  191. if (local->quiescing || !ieee80211_sdata_running(sdata) ||
  192. test_bit(SCAN_SW_SCANNING, &local->scanning)) {
  193. sdata->vif.bss_conf.enable_beacon = false;
  194. } else {
  195. /*
  196. * Beacon should be enabled, but AP mode must
  197. * check whether there is a beacon configured.
  198. */
  199. switch (sdata->vif.type) {
  200. case NL80211_IFTYPE_AP:
  201. sdata->vif.bss_conf.enable_beacon =
  202. !!sdata->u.ap.beacon;
  203. break;
  204. case NL80211_IFTYPE_ADHOC:
  205. sdata->vif.bss_conf.enable_beacon =
  206. !!sdata->u.ibss.presp;
  207. break;
  208. case NL80211_IFTYPE_MESH_POINT:
  209. sdata->vif.bss_conf.enable_beacon = true;
  210. break;
  211. default:
  212. /* not reached */
  213. WARN_ON(1);
  214. break;
  215. }
  216. }
  217. }
  218. drv_bss_info_changed(local, sdata, &sdata->vif.bss_conf, changed);
  219. }
  220. u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
  221. {
  222. sdata->vif.bss_conf.use_cts_prot = false;
  223. sdata->vif.bss_conf.use_short_preamble = false;
  224. sdata->vif.bss_conf.use_short_slot = false;
  225. return BSS_CHANGED_ERP_CTS_PROT |
  226. BSS_CHANGED_ERP_PREAMBLE |
  227. BSS_CHANGED_ERP_SLOT;
  228. }
  229. static void ieee80211_tasklet_handler(unsigned long data)
  230. {
  231. struct ieee80211_local *local = (struct ieee80211_local *) data;
  232. struct sk_buff *skb;
  233. while ((skb = skb_dequeue(&local->skb_queue)) ||
  234. (skb = skb_dequeue(&local->skb_queue_unreliable))) {
  235. switch (skb->pkt_type) {
  236. case IEEE80211_RX_MSG:
  237. /* Clear skb->pkt_type in order to not confuse kernel
  238. * netstack. */
  239. skb->pkt_type = 0;
  240. ieee80211_rx(local_to_hw(local), skb);
  241. break;
  242. case IEEE80211_TX_STATUS_MSG:
  243. skb->pkt_type = 0;
  244. ieee80211_tx_status(local_to_hw(local), skb);
  245. break;
  246. default:
  247. WARN(1, "mac80211: Packet is of unknown type %d\n",
  248. skb->pkt_type);
  249. dev_kfree_skb(skb);
  250. break;
  251. }
  252. }
  253. }
  254. static void ieee80211_restart_work(struct work_struct *work)
  255. {
  256. struct ieee80211_local *local =
  257. container_of(work, struct ieee80211_local, restart_work);
  258. /* wait for scan work complete */
  259. flush_workqueue(local->workqueue);
  260. mutex_lock(&local->mtx);
  261. WARN(test_bit(SCAN_HW_SCANNING, &local->scanning),
  262. "%s called with hardware scan in progress\n", __func__);
  263. mutex_unlock(&local->mtx);
  264. rtnl_lock();
  265. ieee80211_scan_cancel(local);
  266. ieee80211_reconfig(local);
  267. rtnl_unlock();
  268. }
  269. void ieee80211_restart_hw(struct ieee80211_hw *hw)
  270. {
  271. struct ieee80211_local *local = hw_to_local(hw);
  272. trace_api_restart_hw(local);
  273. /* use this reason, ieee80211_reconfig will unblock it */
  274. ieee80211_stop_queues_by_reason(hw,
  275. IEEE80211_QUEUE_STOP_REASON_SUSPEND);
  276. schedule_work(&local->restart_work);
  277. }
  278. EXPORT_SYMBOL(ieee80211_restart_hw);
  279. static void ieee80211_recalc_smps_work(struct work_struct *work)
  280. {
  281. struct ieee80211_local *local =
  282. container_of(work, struct ieee80211_local, recalc_smps);
  283. mutex_lock(&local->iflist_mtx);
  284. ieee80211_recalc_smps(local);
  285. mutex_unlock(&local->iflist_mtx);
  286. }
  287. #ifdef CONFIG_INET
  288. static int ieee80211_ifa_changed(struct notifier_block *nb,
  289. unsigned long data, void *arg)
  290. {
  291. struct in_ifaddr *ifa = arg;
  292. struct ieee80211_local *local =
  293. container_of(nb, struct ieee80211_local,
  294. ifa_notifier);
  295. struct net_device *ndev = ifa->ifa_dev->dev;
  296. struct wireless_dev *wdev = ndev->ieee80211_ptr;
  297. struct in_device *idev;
  298. struct ieee80211_sub_if_data *sdata;
  299. struct ieee80211_bss_conf *bss_conf;
  300. struct ieee80211_if_managed *ifmgd;
  301. int c = 0;
  302. /* Make sure it's our interface that got changed */
  303. if (!wdev)
  304. return NOTIFY_DONE;
  305. if (wdev->wiphy != local->hw.wiphy)
  306. return NOTIFY_DONE;
  307. sdata = IEEE80211_DEV_TO_SUB_IF(ndev);
  308. bss_conf = &sdata->vif.bss_conf;
  309. if (!ieee80211_sdata_running(sdata))
  310. return NOTIFY_DONE;
  311. /* ARP filtering is only supported in managed mode */
  312. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  313. return NOTIFY_DONE;
  314. idev = sdata->dev->ip_ptr;
  315. if (!idev)
  316. return NOTIFY_DONE;
  317. ifmgd = &sdata->u.mgd;
  318. mutex_lock(&ifmgd->mtx);
  319. /* Copy the addresses to the bss_conf list */
  320. ifa = idev->ifa_list;
  321. while (c < IEEE80211_BSS_ARP_ADDR_LIST_LEN && ifa) {
  322. bss_conf->arp_addr_list[c] = ifa->ifa_address;
  323. ifa = ifa->ifa_next;
  324. c++;
  325. }
  326. /* If not all addresses fit the list, disable filtering */
  327. if (ifa) {
  328. sdata->arp_filter_state = false;
  329. c = 0;
  330. } else {
  331. sdata->arp_filter_state = true;
  332. }
  333. bss_conf->arp_addr_cnt = c;
  334. /* Configure driver only if associated */
  335. if (ifmgd->associated) {
  336. bss_conf->arp_filter_enabled = sdata->arp_filter_state;
  337. ieee80211_bss_info_change_notify(sdata,
  338. BSS_CHANGED_ARP_FILTER);
  339. }
  340. mutex_unlock(&ifmgd->mtx);
  341. return NOTIFY_DONE;
  342. }
  343. #endif
  344. static int ieee80211_napi_poll(struct napi_struct *napi, int budget)
  345. {
  346. struct ieee80211_local *local =
  347. container_of(napi, struct ieee80211_local, napi);
  348. return local->ops->napi_poll(&local->hw, budget);
  349. }
  350. void ieee80211_napi_schedule(struct ieee80211_hw *hw)
  351. {
  352. struct ieee80211_local *local = hw_to_local(hw);
  353. napi_schedule(&local->napi);
  354. }
  355. EXPORT_SYMBOL(ieee80211_napi_schedule);
  356. void ieee80211_napi_complete(struct ieee80211_hw *hw)
  357. {
  358. struct ieee80211_local *local = hw_to_local(hw);
  359. napi_complete(&local->napi);
  360. }
  361. EXPORT_SYMBOL(ieee80211_napi_complete);
  362. /* There isn't a lot of sense in it, but you can transmit anything you like */
  363. static const struct ieee80211_txrx_stypes
  364. ieee80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = {
  365. [NL80211_IFTYPE_ADHOC] = {
  366. .tx = 0xffff,
  367. .rx = BIT(IEEE80211_STYPE_ACTION >> 4),
  368. },
  369. [NL80211_IFTYPE_STATION] = {
  370. .tx = 0xffff,
  371. .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
  372. BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
  373. },
  374. [NL80211_IFTYPE_AP] = {
  375. .tx = 0xffff,
  376. .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
  377. BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
  378. BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
  379. BIT(IEEE80211_STYPE_DISASSOC >> 4) |
  380. BIT(IEEE80211_STYPE_AUTH >> 4) |
  381. BIT(IEEE80211_STYPE_DEAUTH >> 4) |
  382. BIT(IEEE80211_STYPE_ACTION >> 4),
  383. },
  384. [NL80211_IFTYPE_AP_VLAN] = {
  385. /* copy AP */
  386. .tx = 0xffff,
  387. .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
  388. BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
  389. BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
  390. BIT(IEEE80211_STYPE_DISASSOC >> 4) |
  391. BIT(IEEE80211_STYPE_AUTH >> 4) |
  392. BIT(IEEE80211_STYPE_DEAUTH >> 4) |
  393. BIT(IEEE80211_STYPE_ACTION >> 4),
  394. },
  395. [NL80211_IFTYPE_P2P_CLIENT] = {
  396. .tx = 0xffff,
  397. .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
  398. BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
  399. },
  400. [NL80211_IFTYPE_P2P_GO] = {
  401. .tx = 0xffff,
  402. .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
  403. BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
  404. BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
  405. BIT(IEEE80211_STYPE_DISASSOC >> 4) |
  406. BIT(IEEE80211_STYPE_AUTH >> 4) |
  407. BIT(IEEE80211_STYPE_DEAUTH >> 4) |
  408. BIT(IEEE80211_STYPE_ACTION >> 4),
  409. },
  410. };
  411. struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
  412. const struct ieee80211_ops *ops)
  413. {
  414. struct ieee80211_local *local;
  415. int priv_size, i;
  416. struct wiphy *wiphy;
  417. /* Ensure 32-byte alignment of our private data and hw private data.
  418. * We use the wiphy priv data for both our ieee80211_local and for
  419. * the driver's private data
  420. *
  421. * In memory it'll be like this:
  422. *
  423. * +-------------------------+
  424. * | struct wiphy |
  425. * +-------------------------+
  426. * | struct ieee80211_local |
  427. * +-------------------------+
  428. * | driver's private data |
  429. * +-------------------------+
  430. *
  431. */
  432. priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len;
  433. wiphy = wiphy_new(&mac80211_config_ops, priv_size);
  434. if (!wiphy)
  435. return NULL;
  436. wiphy->mgmt_stypes = ieee80211_default_mgmt_stypes;
  437. wiphy->flags |= WIPHY_FLAG_NETNS_OK |
  438. WIPHY_FLAG_4ADDR_AP |
  439. WIPHY_FLAG_4ADDR_STATION;
  440. wiphy->privid = mac80211_wiphy_privid;
  441. wiphy->bss_priv_size = sizeof(struct ieee80211_bss);
  442. local = wiphy_priv(wiphy);
  443. local->hw.wiphy = wiphy;
  444. local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN);
  445. BUG_ON(!ops->tx);
  446. BUG_ON(!ops->start);
  447. BUG_ON(!ops->stop);
  448. BUG_ON(!ops->config);
  449. BUG_ON(!ops->add_interface);
  450. BUG_ON(!ops->remove_interface);
  451. BUG_ON(!ops->configure_filter);
  452. local->ops = ops;
  453. /* set up some defaults */
  454. local->hw.queues = 1;
  455. local->hw.max_rates = 1;
  456. local->hw.max_report_rates = 0;
  457. local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
  458. local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
  459. local->user_power_level = -1;
  460. local->uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
  461. local->uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
  462. INIT_LIST_HEAD(&local->interfaces);
  463. __hw_addr_init(&local->mc_list);
  464. mutex_init(&local->iflist_mtx);
  465. mutex_init(&local->mtx);
  466. mutex_init(&local->key_mtx);
  467. spin_lock_init(&local->filter_lock);
  468. spin_lock_init(&local->queue_stop_reason_lock);
  469. INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work);
  470. ieee80211_work_init(local);
  471. INIT_WORK(&local->restart_work, ieee80211_restart_work);
  472. INIT_WORK(&local->reconfig_filter, ieee80211_reconfig_filter);
  473. INIT_WORK(&local->recalc_smps, ieee80211_recalc_smps_work);
  474. local->smps_mode = IEEE80211_SMPS_OFF;
  475. INIT_WORK(&local->dynamic_ps_enable_work,
  476. ieee80211_dynamic_ps_enable_work);
  477. INIT_WORK(&local->dynamic_ps_disable_work,
  478. ieee80211_dynamic_ps_disable_work);
  479. setup_timer(&local->dynamic_ps_timer,
  480. ieee80211_dynamic_ps_timer, (unsigned long) local);
  481. sta_info_init(local);
  482. for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
  483. skb_queue_head_init(&local->pending[i]);
  484. atomic_set(&local->agg_queue_stop[i], 0);
  485. }
  486. tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
  487. (unsigned long)local);
  488. tasklet_init(&local->tasklet,
  489. ieee80211_tasklet_handler,
  490. (unsigned long) local);
  491. skb_queue_head_init(&local->skb_queue);
  492. skb_queue_head_init(&local->skb_queue_unreliable);
  493. /* init dummy netdev for use w/ NAPI */
  494. init_dummy_netdev(&local->napi_dev);
  495. return local_to_hw(local);
  496. }
  497. EXPORT_SYMBOL(ieee80211_alloc_hw);
  498. int ieee80211_register_hw(struct ieee80211_hw *hw)
  499. {
  500. struct ieee80211_local *local = hw_to_local(hw);
  501. int result;
  502. enum ieee80211_band band;
  503. int channels, max_bitrates;
  504. bool supp_ht;
  505. static const u32 cipher_suites[] = {
  506. /* keep WEP first, it may be removed below */
  507. WLAN_CIPHER_SUITE_WEP40,
  508. WLAN_CIPHER_SUITE_WEP104,
  509. WLAN_CIPHER_SUITE_TKIP,
  510. WLAN_CIPHER_SUITE_CCMP,
  511. /* keep last -- depends on hw flags! */
  512. WLAN_CIPHER_SUITE_AES_CMAC
  513. };
  514. if (hw->max_report_rates == 0)
  515. hw->max_report_rates = hw->max_rates;
  516. /*
  517. * generic code guarantees at least one band,
  518. * set this very early because much code assumes
  519. * that hw.conf.channel is assigned
  520. */
  521. channels = 0;
  522. max_bitrates = 0;
  523. supp_ht = false;
  524. for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
  525. struct ieee80211_supported_band *sband;
  526. sband = local->hw.wiphy->bands[band];
  527. if (!sband)
  528. continue;
  529. if (!local->oper_channel) {
  530. /* init channel we're on */
  531. local->hw.conf.channel =
  532. local->oper_channel = &sband->channels[0];
  533. local->hw.conf.channel_type = NL80211_CHAN_NO_HT;
  534. }
  535. channels += sband->n_channels;
  536. if (max_bitrates < sband->n_bitrates)
  537. max_bitrates = sband->n_bitrates;
  538. supp_ht = supp_ht || sband->ht_cap.ht_supported;
  539. }
  540. local->int_scan_req = kzalloc(sizeof(*local->int_scan_req) +
  541. sizeof(void *) * channels, GFP_KERNEL);
  542. if (!local->int_scan_req)
  543. return -ENOMEM;
  544. /* if low-level driver supports AP, we also support VLAN */
  545. if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
  546. local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
  547. /* mac80211 always supports monitor */
  548. local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
  549. #ifndef CONFIG_MAC80211_MESH
  550. /* mesh depends on Kconfig, but drivers should set it if they want */
  551. local->hw.wiphy->interface_modes &= ~BIT(NL80211_IFTYPE_MESH_POINT);
  552. #endif
  553. /* mac80211 supports control port protocol changing */
  554. local->hw.wiphy->flags |= WIPHY_FLAG_CONTROL_PORT_PROTOCOL;
  555. if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
  556. local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
  557. else if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)
  558. local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
  559. WARN((local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)
  560. && (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK),
  561. "U-APSD not supported with HW_PS_NULLFUNC_STACK\n");
  562. /*
  563. * Calculate scan IE length -- we need this to alloc
  564. * memory and to subtract from the driver limit. It
  565. * includes the (extended) supported rates and HT
  566. * information -- SSID is the driver's responsibility.
  567. */
  568. local->scan_ies_len = 4 + max_bitrates; /* (ext) supp rates */
  569. if (supp_ht)
  570. local->scan_ies_len += 2 + sizeof(struct ieee80211_ht_cap);
  571. if (!local->ops->hw_scan) {
  572. /* For hw_scan, driver needs to set these up. */
  573. local->hw.wiphy->max_scan_ssids = 4;
  574. local->hw.wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
  575. }
  576. /*
  577. * If the driver supports any scan IEs, then assume the
  578. * limit includes the IEs mac80211 will add, otherwise
  579. * leave it at zero and let the driver sort it out; we
  580. * still pass our IEs to the driver but userspace will
  581. * not be allowed to in that case.
  582. */
  583. if (local->hw.wiphy->max_scan_ie_len)
  584. local->hw.wiphy->max_scan_ie_len -= local->scan_ies_len;
  585. /* Set up cipher suites unless driver already did */
  586. if (!local->hw.wiphy->cipher_suites) {
  587. local->hw.wiphy->cipher_suites = cipher_suites;
  588. local->hw.wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
  589. if (!(local->hw.flags & IEEE80211_HW_MFP_CAPABLE))
  590. local->hw.wiphy->n_cipher_suites--;
  591. }
  592. if (IS_ERR(local->wep_tx_tfm) || IS_ERR(local->wep_rx_tfm)) {
  593. if (local->hw.wiphy->cipher_suites == cipher_suites) {
  594. local->hw.wiphy->cipher_suites += 2;
  595. local->hw.wiphy->n_cipher_suites -= 2;
  596. } else {
  597. u32 *suites;
  598. int r, w = 0;
  599. /* Filter out WEP */
  600. suites = kmemdup(
  601. local->hw.wiphy->cipher_suites,
  602. sizeof(u32) * local->hw.wiphy->n_cipher_suites,
  603. GFP_KERNEL);
  604. if (!suites)
  605. return -ENOMEM;
  606. for (r = 0; r < local->hw.wiphy->n_cipher_suites; r++) {
  607. u32 suite = local->hw.wiphy->cipher_suites[r];
  608. if (suite == WLAN_CIPHER_SUITE_WEP40 ||
  609. suite == WLAN_CIPHER_SUITE_WEP104)
  610. continue;
  611. suites[w++] = suite;
  612. }
  613. local->hw.wiphy->cipher_suites = suites;
  614. local->hw.wiphy->n_cipher_suites = w;
  615. local->wiphy_ciphers_allocated = true;
  616. }
  617. }
  618. result = wiphy_register(local->hw.wiphy);
  619. if (result < 0)
  620. goto fail_wiphy_register;
  621. /*
  622. * We use the number of queues for feature tests (QoS, HT) internally
  623. * so restrict them appropriately.
  624. */
  625. if (hw->queues > IEEE80211_MAX_QUEUES)
  626. hw->queues = IEEE80211_MAX_QUEUES;
  627. local->workqueue =
  628. create_singlethread_workqueue(wiphy_name(local->hw.wiphy));
  629. if (!local->workqueue) {
  630. result = -ENOMEM;
  631. goto fail_workqueue;
  632. }
  633. /*
  634. * The hardware needs headroom for sending the frame,
  635. * and we need some headroom for passing the frame to monitor
  636. * interfaces, but never both at the same time.
  637. */
  638. BUILD_BUG_ON(IEEE80211_TX_STATUS_HEADROOM !=
  639. sizeof(struct ieee80211_tx_status_rtap_hdr));
  640. local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
  641. sizeof(struct ieee80211_tx_status_rtap_hdr));
  642. debugfs_hw_add(local);
  643. /*
  644. * if the driver doesn't specify a max listen interval we
  645. * use 5 which should be a safe default
  646. */
  647. if (local->hw.max_listen_interval == 0)
  648. local->hw.max_listen_interval = 5;
  649. local->hw.conf.listen_interval = local->hw.max_listen_interval;
  650. local->dynamic_ps_forced_timeout = -1;
  651. result = sta_info_start(local);
  652. if (result < 0)
  653. goto fail_sta_info;
  654. result = ieee80211_wep_init(local);
  655. if (result < 0)
  656. wiphy_debug(local->hw.wiphy, "Failed to initialize wep: %d\n",
  657. result);
  658. rtnl_lock();
  659. result = ieee80211_init_rate_ctrl_alg(local,
  660. hw->rate_control_algorithm);
  661. if (result < 0) {
  662. wiphy_debug(local->hw.wiphy,
  663. "Failed to initialize rate control algorithm\n");
  664. goto fail_rate;
  665. }
  666. /* add one default STA interface if supported */
  667. if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_STATION)) {
  668. result = ieee80211_if_add(local, "wlan%d", NULL,
  669. NL80211_IFTYPE_STATION, NULL);
  670. if (result)
  671. wiphy_warn(local->hw.wiphy,
  672. "Failed to add default virtual iface\n");
  673. }
  674. rtnl_unlock();
  675. ieee80211_led_init(local);
  676. local->network_latency_notifier.notifier_call =
  677. ieee80211_max_network_latency;
  678. result = pm_qos_add_notifier(PM_QOS_NETWORK_LATENCY,
  679. &local->network_latency_notifier);
  680. if (result) {
  681. rtnl_lock();
  682. goto fail_pm_qos;
  683. }
  684. #ifdef CONFIG_INET
  685. local->ifa_notifier.notifier_call = ieee80211_ifa_changed;
  686. result = register_inetaddr_notifier(&local->ifa_notifier);
  687. if (result)
  688. goto fail_ifa;
  689. #endif
  690. netif_napi_add(&local->napi_dev, &local->napi, ieee80211_napi_poll,
  691. local->hw.napi_weight);
  692. return 0;
  693. #ifdef CONFIG_INET
  694. fail_ifa:
  695. pm_qos_remove_notifier(PM_QOS_NETWORK_LATENCY,
  696. &local->network_latency_notifier);
  697. rtnl_lock();
  698. #endif
  699. fail_pm_qos:
  700. ieee80211_led_exit(local);
  701. ieee80211_remove_interfaces(local);
  702. fail_rate:
  703. rtnl_unlock();
  704. ieee80211_wep_free(local);
  705. sta_info_stop(local);
  706. fail_sta_info:
  707. destroy_workqueue(local->workqueue);
  708. fail_workqueue:
  709. wiphy_unregister(local->hw.wiphy);
  710. fail_wiphy_register:
  711. if (local->wiphy_ciphers_allocated)
  712. kfree(local->hw.wiphy->cipher_suites);
  713. kfree(local->int_scan_req);
  714. return result;
  715. }
  716. EXPORT_SYMBOL(ieee80211_register_hw);
  717. void ieee80211_unregister_hw(struct ieee80211_hw *hw)
  718. {
  719. struct ieee80211_local *local = hw_to_local(hw);
  720. tasklet_kill(&local->tx_pending_tasklet);
  721. tasklet_kill(&local->tasklet);
  722. pm_qos_remove_notifier(PM_QOS_NETWORK_LATENCY,
  723. &local->network_latency_notifier);
  724. #ifdef CONFIG_INET
  725. unregister_inetaddr_notifier(&local->ifa_notifier);
  726. #endif
  727. rtnl_lock();
  728. /*
  729. * At this point, interface list manipulations are fine
  730. * because the driver cannot be handing us frames any
  731. * more and the tasklet is killed.
  732. */
  733. ieee80211_remove_interfaces(local);
  734. rtnl_unlock();
  735. /*
  736. * Now all work items will be gone, but the
  737. * timer might still be armed, so delete it
  738. */
  739. del_timer_sync(&local->work_timer);
  740. cancel_work_sync(&local->restart_work);
  741. cancel_work_sync(&local->reconfig_filter);
  742. ieee80211_clear_tx_pending(local);
  743. sta_info_stop(local);
  744. rate_control_deinitialize(local);
  745. if (skb_queue_len(&local->skb_queue) ||
  746. skb_queue_len(&local->skb_queue_unreliable))
  747. wiphy_warn(local->hw.wiphy, "skb_queue not empty\n");
  748. skb_queue_purge(&local->skb_queue);
  749. skb_queue_purge(&local->skb_queue_unreliable);
  750. destroy_workqueue(local->workqueue);
  751. wiphy_unregister(local->hw.wiphy);
  752. ieee80211_wep_free(local);
  753. ieee80211_led_exit(local);
  754. kfree(local->int_scan_req);
  755. }
  756. EXPORT_SYMBOL(ieee80211_unregister_hw);
  757. void ieee80211_free_hw(struct ieee80211_hw *hw)
  758. {
  759. struct ieee80211_local *local = hw_to_local(hw);
  760. mutex_destroy(&local->iflist_mtx);
  761. mutex_destroy(&local->mtx);
  762. if (local->wiphy_ciphers_allocated)
  763. kfree(local->hw.wiphy->cipher_suites);
  764. wiphy_free(local->hw.wiphy);
  765. }
  766. EXPORT_SYMBOL(ieee80211_free_hw);
  767. static int __init ieee80211_init(void)
  768. {
  769. struct sk_buff *skb;
  770. int ret;
  771. BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
  772. BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
  773. IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
  774. ret = rc80211_minstrel_init();
  775. if (ret)
  776. return ret;
  777. ret = rc80211_minstrel_ht_init();
  778. if (ret)
  779. goto err_minstrel;
  780. ret = rc80211_pid_init();
  781. if (ret)
  782. goto err_pid;
  783. ret = ieee80211_iface_init();
  784. if (ret)
  785. goto err_netdev;
  786. return 0;
  787. err_netdev:
  788. rc80211_pid_exit();
  789. err_pid:
  790. rc80211_minstrel_ht_exit();
  791. err_minstrel:
  792. rc80211_minstrel_exit();
  793. return ret;
  794. }
  795. static void __exit ieee80211_exit(void)
  796. {
  797. rc80211_pid_exit();
  798. rc80211_minstrel_ht_exit();
  799. rc80211_minstrel_exit();
  800. /*
  801. * For key todo, it'll be empty by now but the work
  802. * might still be scheduled.
  803. */
  804. flush_scheduled_work();
  805. if (mesh_allocated)
  806. ieee80211s_stop();
  807. ieee80211_iface_exit();
  808. }
  809. subsys_initcall(ieee80211_init);
  810. module_exit(ieee80211_exit);
  811. MODULE_DESCRIPTION("IEEE 802.11 subsystem");
  812. MODULE_LICENSE("GPL");