iface.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. /*
  2. * Interface handling
  3. *
  4. * Copyright 2002-2005, Instant802 Networks, Inc.
  5. * Copyright 2005-2006, Devicescape Software, Inc.
  6. * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
  7. * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/slab.h>
  14. #include <linux/kernel.h>
  15. #include <linux/if_arp.h>
  16. #include <linux/netdevice.h>
  17. #include <linux/rtnetlink.h>
  18. #include <net/mac80211.h>
  19. #include <net/ieee80211_radiotap.h>
  20. #include "ieee80211_i.h"
  21. #include "sta_info.h"
  22. #include "debugfs_netdev.h"
  23. #include "mesh.h"
  24. #include "led.h"
  25. #include "driver-ops.h"
  26. #include "wme.h"
  27. #include "rate.h"
  28. /**
  29. * DOC: Interface list locking
  30. *
  31. * The interface list in each struct ieee80211_local is protected
  32. * three-fold:
  33. *
  34. * (1) modifications may only be done under the RTNL
  35. * (2) modifications and readers are protected against each other by
  36. * the iflist_mtx.
  37. * (3) modifications are done in an RCU manner so atomic readers
  38. * can traverse the list in RCU-safe blocks.
  39. *
  40. * As a consequence, reads (traversals) of the list can be protected
  41. * by either the RTNL, the iflist_mtx or RCU.
  42. */
  43. bool __ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata)
  44. {
  45. struct ieee80211_chanctx_conf *chanctx_conf;
  46. int power;
  47. rcu_read_lock();
  48. chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
  49. if (!chanctx_conf) {
  50. rcu_read_unlock();
  51. return false;
  52. }
  53. power = ieee80211_chandef_max_power(&chanctx_conf->def);
  54. rcu_read_unlock();
  55. if (sdata->user_power_level != IEEE80211_UNSET_POWER_LEVEL)
  56. power = min(power, sdata->user_power_level);
  57. if (sdata->ap_power_level != IEEE80211_UNSET_POWER_LEVEL)
  58. power = min(power, sdata->ap_power_level);
  59. if (power != sdata->vif.bss_conf.txpower) {
  60. sdata->vif.bss_conf.txpower = power;
  61. ieee80211_hw_config(sdata->local, 0);
  62. return true;
  63. }
  64. return false;
  65. }
  66. void ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata)
  67. {
  68. if (__ieee80211_recalc_txpower(sdata))
  69. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_TXPOWER);
  70. }
  71. static u32 __ieee80211_idle_off(struct ieee80211_local *local)
  72. {
  73. if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE))
  74. return 0;
  75. local->hw.conf.flags &= ~IEEE80211_CONF_IDLE;
  76. return IEEE80211_CONF_CHANGE_IDLE;
  77. }
  78. static u32 __ieee80211_idle_on(struct ieee80211_local *local)
  79. {
  80. if (local->hw.conf.flags & IEEE80211_CONF_IDLE)
  81. return 0;
  82. ieee80211_flush_queues(local, NULL);
  83. local->hw.conf.flags |= IEEE80211_CONF_IDLE;
  84. return IEEE80211_CONF_CHANGE_IDLE;
  85. }
  86. static u32 __ieee80211_recalc_idle(struct ieee80211_local *local,
  87. bool force_active)
  88. {
  89. bool working = false, scanning, active;
  90. unsigned int led_trig_start = 0, led_trig_stop = 0;
  91. struct ieee80211_roc_work *roc;
  92. lockdep_assert_held(&local->mtx);
  93. active = force_active ||
  94. !list_empty(&local->chanctx_list) ||
  95. local->monitors;
  96. if (!local->ops->remain_on_channel) {
  97. list_for_each_entry(roc, &local->roc_list, list) {
  98. working = true;
  99. break;
  100. }
  101. }
  102. scanning = test_bit(SCAN_SW_SCANNING, &local->scanning) ||
  103. test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning);
  104. if (working || scanning)
  105. led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK;
  106. else
  107. led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK;
  108. if (active)
  109. led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
  110. else
  111. led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
  112. ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop);
  113. if (working || scanning || active)
  114. return __ieee80211_idle_off(local);
  115. return __ieee80211_idle_on(local);
  116. }
  117. u32 ieee80211_idle_off(struct ieee80211_local *local)
  118. {
  119. return __ieee80211_recalc_idle(local, true);
  120. }
  121. void ieee80211_recalc_idle(struct ieee80211_local *local)
  122. {
  123. u32 change = __ieee80211_recalc_idle(local, false);
  124. if (change)
  125. ieee80211_hw_config(local, change);
  126. }
  127. static int ieee80211_change_mtu(struct net_device *dev, int new_mtu)
  128. {
  129. if (new_mtu < 256 || new_mtu > IEEE80211_MAX_DATA_LEN)
  130. return -EINVAL;
  131. dev->mtu = new_mtu;
  132. return 0;
  133. }
  134. static int ieee80211_verify_mac(struct ieee80211_sub_if_data *sdata, u8 *addr,
  135. bool check_dup)
  136. {
  137. struct ieee80211_local *local = sdata->local;
  138. struct ieee80211_sub_if_data *iter;
  139. u64 new, mask, tmp;
  140. u8 *m;
  141. int ret = 0;
  142. if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
  143. return 0;
  144. m = addr;
  145. new = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
  146. ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
  147. ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
  148. m = local->hw.wiphy->addr_mask;
  149. mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
  150. ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
  151. ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
  152. if (!check_dup)
  153. return ret;
  154. mutex_lock(&local->iflist_mtx);
  155. list_for_each_entry(iter, &local->interfaces, list) {
  156. if (iter == sdata)
  157. continue;
  158. if (iter->vif.type == NL80211_IFTYPE_MONITOR &&
  159. !(iter->u.mntr_flags & MONITOR_FLAG_ACTIVE))
  160. continue;
  161. m = iter->vif.addr;
  162. tmp = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
  163. ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
  164. ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
  165. if ((new & ~mask) != (tmp & ~mask)) {
  166. ret = -EINVAL;
  167. break;
  168. }
  169. }
  170. mutex_unlock(&local->iflist_mtx);
  171. return ret;
  172. }
  173. static int ieee80211_change_mac(struct net_device *dev, void *addr)
  174. {
  175. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  176. struct sockaddr *sa = addr;
  177. bool check_dup = true;
  178. int ret;
  179. if (ieee80211_sdata_running(sdata))
  180. return -EBUSY;
  181. if (sdata->vif.type == NL80211_IFTYPE_MONITOR &&
  182. !(sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE))
  183. check_dup = false;
  184. ret = ieee80211_verify_mac(sdata, sa->sa_data, check_dup);
  185. if (ret)
  186. return ret;
  187. ret = eth_mac_addr(dev, sa);
  188. if (ret == 0)
  189. memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN);
  190. return ret;
  191. }
  192. static inline int identical_mac_addr_allowed(int type1, int type2)
  193. {
  194. return type1 == NL80211_IFTYPE_MONITOR ||
  195. type2 == NL80211_IFTYPE_MONITOR ||
  196. type1 == NL80211_IFTYPE_P2P_DEVICE ||
  197. type2 == NL80211_IFTYPE_P2P_DEVICE ||
  198. (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) ||
  199. (type1 == NL80211_IFTYPE_WDS &&
  200. (type2 == NL80211_IFTYPE_WDS ||
  201. type2 == NL80211_IFTYPE_AP)) ||
  202. (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) ||
  203. (type1 == NL80211_IFTYPE_AP_VLAN &&
  204. (type2 == NL80211_IFTYPE_AP ||
  205. type2 == NL80211_IFTYPE_AP_VLAN));
  206. }
  207. static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata,
  208. enum nl80211_iftype iftype)
  209. {
  210. struct ieee80211_local *local = sdata->local;
  211. struct ieee80211_sub_if_data *nsdata;
  212. ASSERT_RTNL();
  213. /* we hold the RTNL here so can safely walk the list */
  214. list_for_each_entry(nsdata, &local->interfaces, list) {
  215. if (nsdata != sdata && ieee80211_sdata_running(nsdata)) {
  216. /*
  217. * Allow only a single IBSS interface to be up at any
  218. * time. This is restricted because beacon distribution
  219. * cannot work properly if both are in the same IBSS.
  220. *
  221. * To remove this restriction we'd have to disallow them
  222. * from setting the same SSID on different IBSS interfaces
  223. * belonging to the same hardware. Then, however, we're
  224. * faced with having to adopt two different TSF timers...
  225. */
  226. if (iftype == NL80211_IFTYPE_ADHOC &&
  227. nsdata->vif.type == NL80211_IFTYPE_ADHOC)
  228. return -EBUSY;
  229. /*
  230. * will not add another interface while any channel
  231. * switch is active.
  232. */
  233. if (nsdata->vif.csa_active)
  234. return -EBUSY;
  235. /*
  236. * The remaining checks are only performed for interfaces
  237. * with the same MAC address.
  238. */
  239. if (!ether_addr_equal(sdata->vif.addr,
  240. nsdata->vif.addr))
  241. continue;
  242. /*
  243. * check whether it may have the same address
  244. */
  245. if (!identical_mac_addr_allowed(iftype,
  246. nsdata->vif.type))
  247. return -ENOTUNIQ;
  248. /*
  249. * can only add VLANs to enabled APs
  250. */
  251. if (iftype == NL80211_IFTYPE_AP_VLAN &&
  252. nsdata->vif.type == NL80211_IFTYPE_AP)
  253. sdata->bss = &nsdata->u.ap;
  254. }
  255. }
  256. return 0;
  257. }
  258. static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata,
  259. enum nl80211_iftype iftype)
  260. {
  261. int n_queues = sdata->local->hw.queues;
  262. int i;
  263. if (iftype != NL80211_IFTYPE_P2P_DEVICE) {
  264. for (i = 0; i < IEEE80211_NUM_ACS; i++) {
  265. if (WARN_ON_ONCE(sdata->vif.hw_queue[i] ==
  266. IEEE80211_INVAL_HW_QUEUE))
  267. return -EINVAL;
  268. if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >=
  269. n_queues))
  270. return -EINVAL;
  271. }
  272. }
  273. if ((iftype != NL80211_IFTYPE_AP &&
  274. iftype != NL80211_IFTYPE_P2P_GO &&
  275. iftype != NL80211_IFTYPE_MESH_POINT) ||
  276. !(sdata->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)) {
  277. sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
  278. return 0;
  279. }
  280. if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE))
  281. return -EINVAL;
  282. if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues))
  283. return -EINVAL;
  284. return 0;
  285. }
  286. void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata,
  287. const int offset)
  288. {
  289. struct ieee80211_local *local = sdata->local;
  290. u32 flags = sdata->u.mntr_flags;
  291. #define ADJUST(_f, _s) do { \
  292. if (flags & MONITOR_FLAG_##_f) \
  293. local->fif_##_s += offset; \
  294. } while (0)
  295. ADJUST(FCSFAIL, fcsfail);
  296. ADJUST(PLCPFAIL, plcpfail);
  297. ADJUST(CONTROL, control);
  298. ADJUST(CONTROL, pspoll);
  299. ADJUST(OTHER_BSS, other_bss);
  300. #undef ADJUST
  301. }
  302. static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata)
  303. {
  304. struct ieee80211_local *local = sdata->local;
  305. int i;
  306. for (i = 0; i < IEEE80211_NUM_ACS; i++) {
  307. if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
  308. sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
  309. else if (local->hw.queues >= IEEE80211_NUM_ACS)
  310. sdata->vif.hw_queue[i] = i;
  311. else
  312. sdata->vif.hw_queue[i] = 0;
  313. }
  314. sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
  315. }
  316. int ieee80211_add_virtual_monitor(struct ieee80211_local *local)
  317. {
  318. struct ieee80211_sub_if_data *sdata;
  319. int ret;
  320. if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
  321. return 0;
  322. ASSERT_RTNL();
  323. if (local->monitor_sdata)
  324. return 0;
  325. sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL);
  326. if (!sdata)
  327. return -ENOMEM;
  328. /* set up data */
  329. sdata->local = local;
  330. sdata->vif.type = NL80211_IFTYPE_MONITOR;
  331. snprintf(sdata->name, IFNAMSIZ, "%s-monitor",
  332. wiphy_name(local->hw.wiphy));
  333. sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
  334. ieee80211_set_default_queues(sdata);
  335. ret = drv_add_interface(local, sdata);
  336. if (WARN_ON(ret)) {
  337. /* ok .. stupid driver, it asked for this! */
  338. kfree(sdata);
  339. return ret;
  340. }
  341. ret = ieee80211_check_queues(sdata, NL80211_IFTYPE_MONITOR);
  342. if (ret) {
  343. kfree(sdata);
  344. return ret;
  345. }
  346. mutex_lock(&local->mtx);
  347. ret = ieee80211_vif_use_channel(sdata, &local->monitor_chandef,
  348. IEEE80211_CHANCTX_EXCLUSIVE);
  349. mutex_unlock(&local->mtx);
  350. if (ret) {
  351. drv_remove_interface(local, sdata);
  352. kfree(sdata);
  353. return ret;
  354. }
  355. mutex_lock(&local->iflist_mtx);
  356. rcu_assign_pointer(local->monitor_sdata, sdata);
  357. mutex_unlock(&local->iflist_mtx);
  358. return 0;
  359. }
  360. void ieee80211_del_virtual_monitor(struct ieee80211_local *local)
  361. {
  362. struct ieee80211_sub_if_data *sdata;
  363. if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
  364. return;
  365. ASSERT_RTNL();
  366. mutex_lock(&local->iflist_mtx);
  367. sdata = rcu_dereference_protected(local->monitor_sdata,
  368. lockdep_is_held(&local->iflist_mtx));
  369. if (!sdata) {
  370. mutex_unlock(&local->iflist_mtx);
  371. return;
  372. }
  373. rcu_assign_pointer(local->monitor_sdata, NULL);
  374. mutex_unlock(&local->iflist_mtx);
  375. synchronize_net();
  376. mutex_lock(&local->mtx);
  377. ieee80211_vif_release_channel(sdata);
  378. mutex_unlock(&local->mtx);
  379. drv_remove_interface(local, sdata);
  380. kfree(sdata);
  381. }
  382. /*
  383. * NOTE: Be very careful when changing this function, it must NOT return
  384. * an error on interface type changes that have been pre-checked, so most
  385. * checks should be in ieee80211_check_concurrent_iface.
  386. */
  387. int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
  388. {
  389. struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
  390. struct net_device *dev = wdev->netdev;
  391. struct ieee80211_local *local = sdata->local;
  392. struct sta_info *sta;
  393. u32 changed = 0;
  394. int res;
  395. u32 hw_reconf_flags = 0;
  396. switch (sdata->vif.type) {
  397. case NL80211_IFTYPE_WDS:
  398. if (!is_valid_ether_addr(sdata->u.wds.remote_addr))
  399. return -ENOLINK;
  400. break;
  401. case NL80211_IFTYPE_AP_VLAN: {
  402. struct ieee80211_sub_if_data *master;
  403. if (!sdata->bss)
  404. return -ENOLINK;
  405. list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
  406. master = container_of(sdata->bss,
  407. struct ieee80211_sub_if_data, u.ap);
  408. sdata->control_port_protocol =
  409. master->control_port_protocol;
  410. sdata->control_port_no_encrypt =
  411. master->control_port_no_encrypt;
  412. sdata->vif.cab_queue = master->vif.cab_queue;
  413. memcpy(sdata->vif.hw_queue, master->vif.hw_queue,
  414. sizeof(sdata->vif.hw_queue));
  415. break;
  416. }
  417. case NL80211_IFTYPE_AP:
  418. sdata->bss = &sdata->u.ap;
  419. break;
  420. case NL80211_IFTYPE_MESH_POINT:
  421. case NL80211_IFTYPE_STATION:
  422. case NL80211_IFTYPE_MONITOR:
  423. case NL80211_IFTYPE_ADHOC:
  424. case NL80211_IFTYPE_P2P_DEVICE:
  425. /* no special treatment */
  426. break;
  427. case NL80211_IFTYPE_UNSPECIFIED:
  428. case NUM_NL80211_IFTYPES:
  429. case NL80211_IFTYPE_P2P_CLIENT:
  430. case NL80211_IFTYPE_P2P_GO:
  431. /* cannot happen */
  432. WARN_ON(1);
  433. break;
  434. }
  435. if (local->open_count == 0) {
  436. res = drv_start(local);
  437. if (res)
  438. goto err_del_bss;
  439. /* we're brought up, everything changes */
  440. hw_reconf_flags = ~0;
  441. ieee80211_led_radio(local, true);
  442. ieee80211_mod_tpt_led_trig(local,
  443. IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
  444. }
  445. /*
  446. * Copy the hopefully now-present MAC address to
  447. * this interface, if it has the special null one.
  448. */
  449. if (dev && is_zero_ether_addr(dev->dev_addr)) {
  450. memcpy(dev->dev_addr,
  451. local->hw.wiphy->perm_addr,
  452. ETH_ALEN);
  453. memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
  454. if (!is_valid_ether_addr(dev->dev_addr)) {
  455. res = -EADDRNOTAVAIL;
  456. goto err_stop;
  457. }
  458. }
  459. switch (sdata->vif.type) {
  460. case NL80211_IFTYPE_AP_VLAN:
  461. /* no need to tell driver, but set carrier and chanctx */
  462. if (rtnl_dereference(sdata->bss->beacon)) {
  463. ieee80211_vif_vlan_copy_chanctx(sdata);
  464. netif_carrier_on(dev);
  465. } else {
  466. netif_carrier_off(dev);
  467. }
  468. break;
  469. case NL80211_IFTYPE_MONITOR:
  470. if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
  471. local->cooked_mntrs++;
  472. break;
  473. }
  474. if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
  475. res = drv_add_interface(local, sdata);
  476. if (res)
  477. goto err_stop;
  478. } else if (local->monitors == 0 && local->open_count == 0) {
  479. res = ieee80211_add_virtual_monitor(local);
  480. if (res)
  481. goto err_stop;
  482. }
  483. /* must be before the call to ieee80211_configure_filter */
  484. local->monitors++;
  485. if (local->monitors == 1) {
  486. local->hw.conf.flags |= IEEE80211_CONF_MONITOR;
  487. hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
  488. }
  489. ieee80211_adjust_monitor_flags(sdata, 1);
  490. ieee80211_configure_filter(local);
  491. mutex_lock(&local->mtx);
  492. ieee80211_recalc_idle(local);
  493. mutex_unlock(&local->mtx);
  494. netif_carrier_on(dev);
  495. break;
  496. default:
  497. if (coming_up) {
  498. ieee80211_del_virtual_monitor(local);
  499. res = drv_add_interface(local, sdata);
  500. if (res)
  501. goto err_stop;
  502. res = ieee80211_check_queues(sdata,
  503. ieee80211_vif_type_p2p(&sdata->vif));
  504. if (res)
  505. goto err_del_interface;
  506. }
  507. if (sdata->vif.type == NL80211_IFTYPE_AP) {
  508. local->fif_pspoll++;
  509. local->fif_probe_req++;
  510. ieee80211_configure_filter(local);
  511. } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
  512. local->fif_probe_req++;
  513. }
  514. if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE)
  515. changed |= ieee80211_reset_erp_info(sdata);
  516. ieee80211_bss_info_change_notify(sdata, changed);
  517. switch (sdata->vif.type) {
  518. case NL80211_IFTYPE_STATION:
  519. case NL80211_IFTYPE_ADHOC:
  520. case NL80211_IFTYPE_AP:
  521. case NL80211_IFTYPE_MESH_POINT:
  522. netif_carrier_off(dev);
  523. break;
  524. case NL80211_IFTYPE_WDS:
  525. case NL80211_IFTYPE_P2P_DEVICE:
  526. break;
  527. default:
  528. /* not reached */
  529. WARN_ON(1);
  530. }
  531. /*
  532. * set default queue parameters so drivers don't
  533. * need to initialise the hardware if the hardware
  534. * doesn't start up with sane defaults
  535. */
  536. ieee80211_set_wmm_default(sdata, true);
  537. }
  538. set_bit(SDATA_STATE_RUNNING, &sdata->state);
  539. if (sdata->vif.type == NL80211_IFTYPE_WDS) {
  540. /* Create STA entry for the WDS peer */
  541. sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr,
  542. GFP_KERNEL);
  543. if (!sta) {
  544. res = -ENOMEM;
  545. goto err_del_interface;
  546. }
  547. sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
  548. sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
  549. sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
  550. res = sta_info_insert(sta);
  551. if (res) {
  552. /* STA has been freed */
  553. goto err_del_interface;
  554. }
  555. rate_control_rate_init(sta);
  556. netif_carrier_on(dev);
  557. } else if (sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
  558. rcu_assign_pointer(local->p2p_sdata, sdata);
  559. }
  560. /*
  561. * set_multicast_list will be invoked by the networking core
  562. * which will check whether any increments here were done in
  563. * error and sync them down to the hardware as filter flags.
  564. */
  565. if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
  566. atomic_inc(&local->iff_allmultis);
  567. if (sdata->flags & IEEE80211_SDATA_PROMISC)
  568. atomic_inc(&local->iff_promiscs);
  569. if (coming_up)
  570. local->open_count++;
  571. if (hw_reconf_flags)
  572. ieee80211_hw_config(local, hw_reconf_flags);
  573. ieee80211_recalc_ps(local, -1);
  574. if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
  575. sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
  576. /* XXX: for AP_VLAN, actually track AP queues */
  577. netif_tx_start_all_queues(dev);
  578. } else if (dev) {
  579. unsigned long flags;
  580. int n_acs = IEEE80211_NUM_ACS;
  581. int ac;
  582. if (local->hw.queues < IEEE80211_NUM_ACS)
  583. n_acs = 1;
  584. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  585. if (sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE ||
  586. (local->queue_stop_reasons[sdata->vif.cab_queue] == 0 &&
  587. skb_queue_empty(&local->pending[sdata->vif.cab_queue]))) {
  588. for (ac = 0; ac < n_acs; ac++) {
  589. int ac_queue = sdata->vif.hw_queue[ac];
  590. if (local->queue_stop_reasons[ac_queue] == 0 &&
  591. skb_queue_empty(&local->pending[ac_queue]))
  592. netif_start_subqueue(dev, ac);
  593. }
  594. }
  595. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  596. }
  597. return 0;
  598. err_del_interface:
  599. drv_remove_interface(local, sdata);
  600. err_stop:
  601. if (!local->open_count)
  602. drv_stop(local);
  603. err_del_bss:
  604. sdata->bss = NULL;
  605. if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
  606. list_del(&sdata->u.vlan.list);
  607. /* might already be clear but that doesn't matter */
  608. clear_bit(SDATA_STATE_RUNNING, &sdata->state);
  609. return res;
  610. }
  611. static int ieee80211_open(struct net_device *dev)
  612. {
  613. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  614. int err;
  615. /* fail early if user set an invalid address */
  616. if (!is_valid_ether_addr(dev->dev_addr))
  617. return -EADDRNOTAVAIL;
  618. err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type);
  619. if (err)
  620. return err;
  621. return ieee80211_do_open(&sdata->wdev, true);
  622. }
  623. static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
  624. bool going_down)
  625. {
  626. struct ieee80211_local *local = sdata->local;
  627. unsigned long flags;
  628. struct sk_buff *skb, *tmp;
  629. u32 hw_reconf_flags = 0;
  630. int i, flushed;
  631. struct ps_data *ps;
  632. struct cfg80211_chan_def chandef;
  633. clear_bit(SDATA_STATE_RUNNING, &sdata->state);
  634. if (rcu_access_pointer(local->scan_sdata) == sdata)
  635. ieee80211_scan_cancel(local);
  636. /*
  637. * Stop TX on this interface first.
  638. */
  639. if (sdata->dev)
  640. netif_tx_stop_all_queues(sdata->dev);
  641. ieee80211_roc_purge(local, sdata);
  642. if (sdata->vif.type == NL80211_IFTYPE_STATION)
  643. ieee80211_mgd_stop(sdata);
  644. if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
  645. ieee80211_ibss_stop(sdata);
  646. /*
  647. * Remove all stations associated with this interface.
  648. *
  649. * This must be done before calling ops->remove_interface()
  650. * because otherwise we can later invoke ops->sta_notify()
  651. * whenever the STAs are removed, and that invalidates driver
  652. * assumptions about always getting a vif pointer that is valid
  653. * (because if we remove a STA after ops->remove_interface()
  654. * the driver will have removed the vif info already!)
  655. *
  656. * This is relevant only in WDS mode, in all other modes we've
  657. * already removed all stations when disconnecting or similar,
  658. * so warn otherwise.
  659. */
  660. flushed = sta_info_flush(sdata);
  661. WARN_ON_ONCE((sdata->vif.type != NL80211_IFTYPE_WDS && flushed > 0) ||
  662. (sdata->vif.type == NL80211_IFTYPE_WDS && flushed != 1));
  663. /* don't count this interface for promisc/allmulti while it is down */
  664. if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
  665. atomic_dec(&local->iff_allmultis);
  666. if (sdata->flags & IEEE80211_SDATA_PROMISC)
  667. atomic_dec(&local->iff_promiscs);
  668. if (sdata->vif.type == NL80211_IFTYPE_AP) {
  669. local->fif_pspoll--;
  670. local->fif_probe_req--;
  671. } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
  672. local->fif_probe_req--;
  673. }
  674. if (sdata->dev) {
  675. netif_addr_lock_bh(sdata->dev);
  676. spin_lock_bh(&local->filter_lock);
  677. __hw_addr_unsync(&local->mc_list, &sdata->dev->mc,
  678. sdata->dev->addr_len);
  679. spin_unlock_bh(&local->filter_lock);
  680. netif_addr_unlock_bh(sdata->dev);
  681. }
  682. del_timer_sync(&local->dynamic_ps_timer);
  683. cancel_work_sync(&local->dynamic_ps_enable_work);
  684. cancel_work_sync(&sdata->recalc_smps);
  685. sdata_lock(sdata);
  686. sdata->vif.csa_active = false;
  687. sdata_unlock(sdata);
  688. cancel_work_sync(&sdata->csa_finalize_work);
  689. cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
  690. if (sdata->wdev.cac_started) {
  691. chandef = sdata->vif.bss_conf.chandef;
  692. WARN_ON(local->suspended);
  693. mutex_lock(&local->mtx);
  694. ieee80211_vif_release_channel(sdata);
  695. mutex_unlock(&local->mtx);
  696. cfg80211_cac_event(sdata->dev, &chandef,
  697. NL80211_RADAR_CAC_ABORTED,
  698. GFP_KERNEL);
  699. }
  700. /* APs need special treatment */
  701. if (sdata->vif.type == NL80211_IFTYPE_AP) {
  702. struct ieee80211_sub_if_data *vlan, *tmpsdata;
  703. /* down all dependent devices, that is VLANs */
  704. list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans,
  705. u.vlan.list)
  706. dev_close(vlan->dev);
  707. WARN_ON(!list_empty(&sdata->u.ap.vlans));
  708. } else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
  709. /* remove all packets in parent bc_buf pointing to this dev */
  710. ps = &sdata->bss->ps;
  711. spin_lock_irqsave(&ps->bc_buf.lock, flags);
  712. skb_queue_walk_safe(&ps->bc_buf, skb, tmp) {
  713. if (skb->dev == sdata->dev) {
  714. __skb_unlink(skb, &ps->bc_buf);
  715. local->total_ps_buffered--;
  716. ieee80211_free_txskb(&local->hw, skb);
  717. }
  718. }
  719. spin_unlock_irqrestore(&ps->bc_buf.lock, flags);
  720. }
  721. if (going_down)
  722. local->open_count--;
  723. switch (sdata->vif.type) {
  724. case NL80211_IFTYPE_AP_VLAN:
  725. list_del(&sdata->u.vlan.list);
  726. rcu_assign_pointer(sdata->vif.chanctx_conf, NULL);
  727. /* no need to tell driver */
  728. break;
  729. case NL80211_IFTYPE_MONITOR:
  730. if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
  731. local->cooked_mntrs--;
  732. break;
  733. }
  734. local->monitors--;
  735. if (local->monitors == 0) {
  736. local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR;
  737. hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
  738. }
  739. ieee80211_adjust_monitor_flags(sdata, -1);
  740. break;
  741. case NL80211_IFTYPE_P2P_DEVICE:
  742. /* relies on synchronize_rcu() below */
  743. rcu_assign_pointer(local->p2p_sdata, NULL);
  744. /* fall through */
  745. default:
  746. cancel_work_sync(&sdata->work);
  747. /*
  748. * When we get here, the interface is marked down.
  749. * Free the remaining keys, if there are any
  750. * (shouldn't be, except maybe in WDS mode?)
  751. *
  752. * Force the key freeing to always synchronize_net()
  753. * to wait for the RX path in case it is using this
  754. * interface enqueuing frames * at this very time on
  755. * another CPU.
  756. */
  757. ieee80211_free_keys(sdata, true);
  758. /* fall through */
  759. case NL80211_IFTYPE_AP:
  760. skb_queue_purge(&sdata->skb_queue);
  761. }
  762. sdata->bss = NULL;
  763. spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
  764. for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
  765. skb_queue_walk_safe(&local->pending[i], skb, tmp) {
  766. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  767. if (info->control.vif == &sdata->vif) {
  768. __skb_unlink(skb, &local->pending[i]);
  769. ieee80211_free_txskb(&local->hw, skb);
  770. }
  771. }
  772. }
  773. spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
  774. if (local->open_count == 0)
  775. ieee80211_clear_tx_pending(local);
  776. /*
  777. * If the interface goes down while suspended, presumably because
  778. * the device was unplugged and that happens before our resume,
  779. * then the driver is already unconfigured and the remainder of
  780. * this function isn't needed.
  781. * XXX: what about WoWLAN? If the device has software state, e.g.
  782. * memory allocated, it might expect teardown commands from
  783. * mac80211 here?
  784. */
  785. if (local->suspended) {
  786. WARN_ON(local->wowlan);
  787. WARN_ON(rtnl_dereference(local->monitor_sdata));
  788. return;
  789. }
  790. switch (sdata->vif.type) {
  791. case NL80211_IFTYPE_AP_VLAN:
  792. break;
  793. case NL80211_IFTYPE_MONITOR:
  794. if (local->monitors == 0)
  795. ieee80211_del_virtual_monitor(local);
  796. mutex_lock(&local->mtx);
  797. ieee80211_recalc_idle(local);
  798. mutex_unlock(&local->mtx);
  799. if (!(sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE))
  800. break;
  801. /* fall through */
  802. default:
  803. if (going_down)
  804. drv_remove_interface(local, sdata);
  805. }
  806. ieee80211_recalc_ps(local, -1);
  807. if (local->open_count == 0) {
  808. ieee80211_stop_device(local);
  809. /* no reconfiguring after stop! */
  810. return;
  811. }
  812. /* do after stop to avoid reconfiguring when we stop anyway */
  813. ieee80211_configure_filter(local);
  814. ieee80211_hw_config(local, hw_reconf_flags);
  815. if (local->monitors == local->open_count)
  816. ieee80211_add_virtual_monitor(local);
  817. }
  818. static int ieee80211_stop(struct net_device *dev)
  819. {
  820. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  821. ieee80211_do_stop(sdata, true);
  822. return 0;
  823. }
  824. static void ieee80211_set_multicast_list(struct net_device *dev)
  825. {
  826. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  827. struct ieee80211_local *local = sdata->local;
  828. int allmulti, promisc, sdata_allmulti, sdata_promisc;
  829. allmulti = !!(dev->flags & IFF_ALLMULTI);
  830. promisc = !!(dev->flags & IFF_PROMISC);
  831. sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
  832. sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
  833. if (allmulti != sdata_allmulti) {
  834. if (dev->flags & IFF_ALLMULTI)
  835. atomic_inc(&local->iff_allmultis);
  836. else
  837. atomic_dec(&local->iff_allmultis);
  838. sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
  839. }
  840. if (promisc != sdata_promisc) {
  841. if (dev->flags & IFF_PROMISC)
  842. atomic_inc(&local->iff_promiscs);
  843. else
  844. atomic_dec(&local->iff_promiscs);
  845. sdata->flags ^= IEEE80211_SDATA_PROMISC;
  846. }
  847. spin_lock_bh(&local->filter_lock);
  848. __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len);
  849. spin_unlock_bh(&local->filter_lock);
  850. ieee80211_queue_work(&local->hw, &local->reconfig_filter);
  851. }
  852. /*
  853. * Called when the netdev is removed or, by the code below, before
  854. * the interface type changes.
  855. */
  856. static void ieee80211_teardown_sdata(struct ieee80211_sub_if_data *sdata)
  857. {
  858. int i;
  859. /* free extra data */
  860. ieee80211_free_keys(sdata, false);
  861. ieee80211_debugfs_remove_netdev(sdata);
  862. for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
  863. __skb_queue_purge(&sdata->fragments[i].skb_list);
  864. sdata->fragment_next = 0;
  865. if (ieee80211_vif_is_mesh(&sdata->vif))
  866. mesh_rmc_free(sdata);
  867. }
  868. static void ieee80211_uninit(struct net_device *dev)
  869. {
  870. ieee80211_teardown_sdata(IEEE80211_DEV_TO_SUB_IF(dev));
  871. }
  872. static u16 ieee80211_netdev_select_queue(struct net_device *dev,
  873. struct sk_buff *skb,
  874. void *accel_priv)
  875. {
  876. return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb);
  877. }
  878. static const struct net_device_ops ieee80211_dataif_ops = {
  879. .ndo_open = ieee80211_open,
  880. .ndo_stop = ieee80211_stop,
  881. .ndo_uninit = ieee80211_uninit,
  882. .ndo_start_xmit = ieee80211_subif_start_xmit,
  883. .ndo_set_rx_mode = ieee80211_set_multicast_list,
  884. .ndo_change_mtu = ieee80211_change_mtu,
  885. .ndo_set_mac_address = ieee80211_change_mac,
  886. .ndo_select_queue = ieee80211_netdev_select_queue,
  887. };
  888. static u16 ieee80211_monitor_select_queue(struct net_device *dev,
  889. struct sk_buff *skb,
  890. void *accel_priv)
  891. {
  892. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  893. struct ieee80211_local *local = sdata->local;
  894. struct ieee80211_hdr *hdr;
  895. struct ieee80211_radiotap_header *rtap = (void *)skb->data;
  896. if (local->hw.queues < IEEE80211_NUM_ACS)
  897. return 0;
  898. if (skb->len < 4 ||
  899. skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */)
  900. return 0; /* doesn't matter, frame will be dropped */
  901. hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len));
  902. return ieee80211_select_queue_80211(sdata, skb, hdr);
  903. }
  904. static const struct net_device_ops ieee80211_monitorif_ops = {
  905. .ndo_open = ieee80211_open,
  906. .ndo_stop = ieee80211_stop,
  907. .ndo_uninit = ieee80211_uninit,
  908. .ndo_start_xmit = ieee80211_monitor_start_xmit,
  909. .ndo_set_rx_mode = ieee80211_set_multicast_list,
  910. .ndo_change_mtu = ieee80211_change_mtu,
  911. .ndo_set_mac_address = ieee80211_change_mac,
  912. .ndo_select_queue = ieee80211_monitor_select_queue,
  913. };
  914. static void ieee80211_if_setup(struct net_device *dev)
  915. {
  916. ether_setup(dev);
  917. dev->priv_flags &= ~IFF_TX_SKB_SHARING;
  918. dev->netdev_ops = &ieee80211_dataif_ops;
  919. dev->destructor = free_netdev;
  920. }
  921. static void ieee80211_iface_work(struct work_struct *work)
  922. {
  923. struct ieee80211_sub_if_data *sdata =
  924. container_of(work, struct ieee80211_sub_if_data, work);
  925. struct ieee80211_local *local = sdata->local;
  926. struct sk_buff *skb;
  927. struct sta_info *sta;
  928. struct ieee80211_ra_tid *ra_tid;
  929. if (!ieee80211_sdata_running(sdata))
  930. return;
  931. if (local->scanning)
  932. return;
  933. /*
  934. * ieee80211_queue_work() should have picked up most cases,
  935. * here we'll pick the rest.
  936. */
  937. if (WARN(local->suspended,
  938. "interface work scheduled while going to suspend\n"))
  939. return;
  940. /* first process frames */
  941. while ((skb = skb_dequeue(&sdata->skb_queue))) {
  942. struct ieee80211_mgmt *mgmt = (void *)skb->data;
  943. if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_START) {
  944. ra_tid = (void *)&skb->cb;
  945. ieee80211_start_tx_ba_cb(&sdata->vif, ra_tid->ra,
  946. ra_tid->tid);
  947. } else if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_STOP) {
  948. ra_tid = (void *)&skb->cb;
  949. ieee80211_stop_tx_ba_cb(&sdata->vif, ra_tid->ra,
  950. ra_tid->tid);
  951. } else if (ieee80211_is_action(mgmt->frame_control) &&
  952. mgmt->u.action.category == WLAN_CATEGORY_BACK) {
  953. int len = skb->len;
  954. mutex_lock(&local->sta_mtx);
  955. sta = sta_info_get_bss(sdata, mgmt->sa);
  956. if (sta) {
  957. switch (mgmt->u.action.u.addba_req.action_code) {
  958. case WLAN_ACTION_ADDBA_REQ:
  959. ieee80211_process_addba_request(
  960. local, sta, mgmt, len);
  961. break;
  962. case WLAN_ACTION_ADDBA_RESP:
  963. ieee80211_process_addba_resp(local, sta,
  964. mgmt, len);
  965. break;
  966. case WLAN_ACTION_DELBA:
  967. ieee80211_process_delba(sdata, sta,
  968. mgmt, len);
  969. break;
  970. default:
  971. WARN_ON(1);
  972. break;
  973. }
  974. }
  975. mutex_unlock(&local->sta_mtx);
  976. } else if (ieee80211_is_data_qos(mgmt->frame_control)) {
  977. struct ieee80211_hdr *hdr = (void *)mgmt;
  978. /*
  979. * So the frame isn't mgmt, but frame_control
  980. * is at the right place anyway, of course, so
  981. * the if statement is correct.
  982. *
  983. * Warn if we have other data frame types here,
  984. * they must not get here.
  985. */
  986. WARN_ON(hdr->frame_control &
  987. cpu_to_le16(IEEE80211_STYPE_NULLFUNC));
  988. WARN_ON(!(hdr->seq_ctrl &
  989. cpu_to_le16(IEEE80211_SCTL_FRAG)));
  990. /*
  991. * This was a fragment of a frame, received while
  992. * a block-ack session was active. That cannot be
  993. * right, so terminate the session.
  994. */
  995. mutex_lock(&local->sta_mtx);
  996. sta = sta_info_get_bss(sdata, mgmt->sa);
  997. if (sta) {
  998. u16 tid = *ieee80211_get_qos_ctl(hdr) &
  999. IEEE80211_QOS_CTL_TID_MASK;
  1000. __ieee80211_stop_rx_ba_session(
  1001. sta, tid, WLAN_BACK_RECIPIENT,
  1002. WLAN_REASON_QSTA_REQUIRE_SETUP,
  1003. true);
  1004. }
  1005. mutex_unlock(&local->sta_mtx);
  1006. } else switch (sdata->vif.type) {
  1007. case NL80211_IFTYPE_STATION:
  1008. ieee80211_sta_rx_queued_mgmt(sdata, skb);
  1009. break;
  1010. case NL80211_IFTYPE_ADHOC:
  1011. ieee80211_ibss_rx_queued_mgmt(sdata, skb);
  1012. break;
  1013. case NL80211_IFTYPE_MESH_POINT:
  1014. if (!ieee80211_vif_is_mesh(&sdata->vif))
  1015. break;
  1016. ieee80211_mesh_rx_queued_mgmt(sdata, skb);
  1017. break;
  1018. default:
  1019. WARN(1, "frame for unexpected interface type");
  1020. break;
  1021. }
  1022. kfree_skb(skb);
  1023. }
  1024. /* then other type-dependent work */
  1025. switch (sdata->vif.type) {
  1026. case NL80211_IFTYPE_STATION:
  1027. ieee80211_sta_work(sdata);
  1028. break;
  1029. case NL80211_IFTYPE_ADHOC:
  1030. ieee80211_ibss_work(sdata);
  1031. break;
  1032. case NL80211_IFTYPE_MESH_POINT:
  1033. if (!ieee80211_vif_is_mesh(&sdata->vif))
  1034. break;
  1035. ieee80211_mesh_work(sdata);
  1036. break;
  1037. default:
  1038. break;
  1039. }
  1040. }
  1041. static void ieee80211_recalc_smps_work(struct work_struct *work)
  1042. {
  1043. struct ieee80211_sub_if_data *sdata =
  1044. container_of(work, struct ieee80211_sub_if_data, recalc_smps);
  1045. ieee80211_recalc_smps(sdata);
  1046. }
  1047. /*
  1048. * Helper function to initialise an interface to a specific type.
  1049. */
  1050. static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
  1051. enum nl80211_iftype type)
  1052. {
  1053. /* clear type-dependent union */
  1054. memset(&sdata->u, 0, sizeof(sdata->u));
  1055. /* and set some type-dependent values */
  1056. sdata->vif.type = type;
  1057. sdata->vif.p2p = false;
  1058. sdata->wdev.iftype = type;
  1059. sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE);
  1060. sdata->control_port_no_encrypt = false;
  1061. sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
  1062. sdata->noack_map = 0;
  1063. /* only monitor/p2p-device differ */
  1064. if (sdata->dev) {
  1065. sdata->dev->netdev_ops = &ieee80211_dataif_ops;
  1066. sdata->dev->type = ARPHRD_ETHER;
  1067. }
  1068. skb_queue_head_init(&sdata->skb_queue);
  1069. INIT_WORK(&sdata->work, ieee80211_iface_work);
  1070. INIT_WORK(&sdata->recalc_smps, ieee80211_recalc_smps_work);
  1071. INIT_WORK(&sdata->csa_finalize_work, ieee80211_csa_finalize_work);
  1072. switch (type) {
  1073. case NL80211_IFTYPE_P2P_GO:
  1074. type = NL80211_IFTYPE_AP;
  1075. sdata->vif.type = type;
  1076. sdata->vif.p2p = true;
  1077. /* fall through */
  1078. case NL80211_IFTYPE_AP:
  1079. skb_queue_head_init(&sdata->u.ap.ps.bc_buf);
  1080. INIT_LIST_HEAD(&sdata->u.ap.vlans);
  1081. INIT_WORK(&sdata->u.ap.request_smps_work,
  1082. ieee80211_request_smps_ap_work);
  1083. sdata->vif.bss_conf.bssid = sdata->vif.addr;
  1084. sdata->u.ap.req_smps = IEEE80211_SMPS_OFF;
  1085. break;
  1086. case NL80211_IFTYPE_P2P_CLIENT:
  1087. type = NL80211_IFTYPE_STATION;
  1088. sdata->vif.type = type;
  1089. sdata->vif.p2p = true;
  1090. /* fall through */
  1091. case NL80211_IFTYPE_STATION:
  1092. sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid;
  1093. ieee80211_sta_setup_sdata(sdata);
  1094. break;
  1095. case NL80211_IFTYPE_ADHOC:
  1096. sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid;
  1097. ieee80211_ibss_setup_sdata(sdata);
  1098. break;
  1099. case NL80211_IFTYPE_MESH_POINT:
  1100. if (ieee80211_vif_is_mesh(&sdata->vif))
  1101. ieee80211_mesh_init_sdata(sdata);
  1102. break;
  1103. case NL80211_IFTYPE_MONITOR:
  1104. sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
  1105. sdata->dev->netdev_ops = &ieee80211_monitorif_ops;
  1106. sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
  1107. MONITOR_FLAG_OTHER_BSS;
  1108. break;
  1109. case NL80211_IFTYPE_WDS:
  1110. sdata->vif.bss_conf.bssid = NULL;
  1111. break;
  1112. case NL80211_IFTYPE_AP_VLAN:
  1113. case NL80211_IFTYPE_P2P_DEVICE:
  1114. sdata->vif.bss_conf.bssid = sdata->vif.addr;
  1115. break;
  1116. case NL80211_IFTYPE_UNSPECIFIED:
  1117. case NUM_NL80211_IFTYPES:
  1118. BUG();
  1119. break;
  1120. }
  1121. ieee80211_debugfs_add_netdev(sdata);
  1122. }
  1123. static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata,
  1124. enum nl80211_iftype type)
  1125. {
  1126. struct ieee80211_local *local = sdata->local;
  1127. int ret, err;
  1128. enum nl80211_iftype internal_type = type;
  1129. bool p2p = false;
  1130. ASSERT_RTNL();
  1131. if (!local->ops->change_interface)
  1132. return -EBUSY;
  1133. switch (sdata->vif.type) {
  1134. case NL80211_IFTYPE_AP:
  1135. case NL80211_IFTYPE_STATION:
  1136. case NL80211_IFTYPE_ADHOC:
  1137. /*
  1138. * Could maybe also all others here?
  1139. * Just not sure how that interacts
  1140. * with the RX/config path e.g. for
  1141. * mesh.
  1142. */
  1143. break;
  1144. default:
  1145. return -EBUSY;
  1146. }
  1147. switch (type) {
  1148. case NL80211_IFTYPE_AP:
  1149. case NL80211_IFTYPE_STATION:
  1150. case NL80211_IFTYPE_ADHOC:
  1151. /*
  1152. * Could probably support everything
  1153. * but WDS here (WDS do_open can fail
  1154. * under memory pressure, which this
  1155. * code isn't prepared to handle).
  1156. */
  1157. break;
  1158. case NL80211_IFTYPE_P2P_CLIENT:
  1159. p2p = true;
  1160. internal_type = NL80211_IFTYPE_STATION;
  1161. break;
  1162. case NL80211_IFTYPE_P2P_GO:
  1163. p2p = true;
  1164. internal_type = NL80211_IFTYPE_AP;
  1165. break;
  1166. default:
  1167. return -EBUSY;
  1168. }
  1169. ret = ieee80211_check_concurrent_iface(sdata, internal_type);
  1170. if (ret)
  1171. return ret;
  1172. ieee80211_do_stop(sdata, false);
  1173. ieee80211_teardown_sdata(sdata);
  1174. ret = drv_change_interface(local, sdata, internal_type, p2p);
  1175. if (ret)
  1176. type = ieee80211_vif_type_p2p(&sdata->vif);
  1177. /*
  1178. * Ignore return value here, there's not much we can do since
  1179. * the driver changed the interface type internally already.
  1180. * The warnings will hopefully make driver authors fix it :-)
  1181. */
  1182. ieee80211_check_queues(sdata, type);
  1183. ieee80211_setup_sdata(sdata, type);
  1184. err = ieee80211_do_open(&sdata->wdev, false);
  1185. WARN(err, "type change: do_open returned %d", err);
  1186. return ret;
  1187. }
  1188. int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
  1189. enum nl80211_iftype type)
  1190. {
  1191. int ret;
  1192. ASSERT_RTNL();
  1193. if (type == ieee80211_vif_type_p2p(&sdata->vif))
  1194. return 0;
  1195. if (ieee80211_sdata_running(sdata)) {
  1196. ret = ieee80211_runtime_change_iftype(sdata, type);
  1197. if (ret)
  1198. return ret;
  1199. } else {
  1200. /* Purge and reset type-dependent state. */
  1201. ieee80211_teardown_sdata(sdata);
  1202. ieee80211_setup_sdata(sdata, type);
  1203. }
  1204. /* reset some values that shouldn't be kept across type changes */
  1205. sdata->drop_unencrypted = 0;
  1206. if (type == NL80211_IFTYPE_STATION)
  1207. sdata->u.mgd.use_4addr = false;
  1208. return 0;
  1209. }
  1210. static void ieee80211_assign_perm_addr(struct ieee80211_local *local,
  1211. u8 *perm_addr, enum nl80211_iftype type)
  1212. {
  1213. struct ieee80211_sub_if_data *sdata;
  1214. u64 mask, start, addr, val, inc;
  1215. u8 *m;
  1216. u8 tmp_addr[ETH_ALEN];
  1217. int i;
  1218. /* default ... something at least */
  1219. memcpy(perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
  1220. if (is_zero_ether_addr(local->hw.wiphy->addr_mask) &&
  1221. local->hw.wiphy->n_addresses <= 1)
  1222. return;
  1223. mutex_lock(&local->iflist_mtx);
  1224. switch (type) {
  1225. case NL80211_IFTYPE_MONITOR:
  1226. /* doesn't matter */
  1227. break;
  1228. case NL80211_IFTYPE_WDS:
  1229. case NL80211_IFTYPE_AP_VLAN:
  1230. /* match up with an AP interface */
  1231. list_for_each_entry(sdata, &local->interfaces, list) {
  1232. if (sdata->vif.type != NL80211_IFTYPE_AP)
  1233. continue;
  1234. memcpy(perm_addr, sdata->vif.addr, ETH_ALEN);
  1235. break;
  1236. }
  1237. /* keep default if no AP interface present */
  1238. break;
  1239. case NL80211_IFTYPE_P2P_CLIENT:
  1240. case NL80211_IFTYPE_P2P_GO:
  1241. if (local->hw.flags & IEEE80211_HW_P2P_DEV_ADDR_FOR_INTF) {
  1242. list_for_each_entry(sdata, &local->interfaces, list) {
  1243. if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE)
  1244. continue;
  1245. if (!ieee80211_sdata_running(sdata))
  1246. continue;
  1247. memcpy(perm_addr, sdata->vif.addr, ETH_ALEN);
  1248. goto out_unlock;
  1249. }
  1250. }
  1251. /* otherwise fall through */
  1252. default:
  1253. /* assign a new address if possible -- try n_addresses first */
  1254. for (i = 0; i < local->hw.wiphy->n_addresses; i++) {
  1255. bool used = false;
  1256. list_for_each_entry(sdata, &local->interfaces, list) {
  1257. if (ether_addr_equal(local->hw.wiphy->addresses[i].addr,
  1258. sdata->vif.addr)) {
  1259. used = true;
  1260. break;
  1261. }
  1262. }
  1263. if (!used) {
  1264. memcpy(perm_addr,
  1265. local->hw.wiphy->addresses[i].addr,
  1266. ETH_ALEN);
  1267. break;
  1268. }
  1269. }
  1270. /* try mask if available */
  1271. if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
  1272. break;
  1273. m = local->hw.wiphy->addr_mask;
  1274. mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
  1275. ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
  1276. ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
  1277. if (__ffs64(mask) + hweight64(mask) != fls64(mask)) {
  1278. /* not a contiguous mask ... not handled now! */
  1279. pr_info("not contiguous\n");
  1280. break;
  1281. }
  1282. /*
  1283. * Pick address of existing interface in case user changed
  1284. * MAC address manually, default to perm_addr.
  1285. */
  1286. m = local->hw.wiphy->perm_addr;
  1287. list_for_each_entry(sdata, &local->interfaces, list) {
  1288. if (sdata->vif.type == NL80211_IFTYPE_MONITOR)
  1289. continue;
  1290. m = sdata->vif.addr;
  1291. break;
  1292. }
  1293. start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
  1294. ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
  1295. ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
  1296. inc = 1ULL<<__ffs64(mask);
  1297. val = (start & mask);
  1298. addr = (start & ~mask) | (val & mask);
  1299. do {
  1300. bool used = false;
  1301. tmp_addr[5] = addr >> 0*8;
  1302. tmp_addr[4] = addr >> 1*8;
  1303. tmp_addr[3] = addr >> 2*8;
  1304. tmp_addr[2] = addr >> 3*8;
  1305. tmp_addr[1] = addr >> 4*8;
  1306. tmp_addr[0] = addr >> 5*8;
  1307. val += inc;
  1308. list_for_each_entry(sdata, &local->interfaces, list) {
  1309. if (ether_addr_equal(tmp_addr, sdata->vif.addr)) {
  1310. used = true;
  1311. break;
  1312. }
  1313. }
  1314. if (!used) {
  1315. memcpy(perm_addr, tmp_addr, ETH_ALEN);
  1316. break;
  1317. }
  1318. addr = (start & ~mask) | (val & mask);
  1319. } while (addr != start);
  1320. break;
  1321. }
  1322. out_unlock:
  1323. mutex_unlock(&local->iflist_mtx);
  1324. }
  1325. int ieee80211_if_add(struct ieee80211_local *local, const char *name,
  1326. struct wireless_dev **new_wdev, enum nl80211_iftype type,
  1327. struct vif_params *params)
  1328. {
  1329. struct net_device *ndev = NULL;
  1330. struct ieee80211_sub_if_data *sdata = NULL;
  1331. int ret, i;
  1332. int txqs = 1;
  1333. ASSERT_RTNL();
  1334. if (type == NL80211_IFTYPE_P2P_DEVICE) {
  1335. struct wireless_dev *wdev;
  1336. sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size,
  1337. GFP_KERNEL);
  1338. if (!sdata)
  1339. return -ENOMEM;
  1340. wdev = &sdata->wdev;
  1341. sdata->dev = NULL;
  1342. strlcpy(sdata->name, name, IFNAMSIZ);
  1343. ieee80211_assign_perm_addr(local, wdev->address, type);
  1344. memcpy(sdata->vif.addr, wdev->address, ETH_ALEN);
  1345. } else {
  1346. if (local->hw.queues >= IEEE80211_NUM_ACS)
  1347. txqs = IEEE80211_NUM_ACS;
  1348. ndev = alloc_netdev_mqs(sizeof(*sdata) +
  1349. local->hw.vif_data_size,
  1350. name, ieee80211_if_setup, txqs, 1);
  1351. if (!ndev)
  1352. return -ENOMEM;
  1353. dev_net_set(ndev, wiphy_net(local->hw.wiphy));
  1354. ndev->needed_headroom = local->tx_headroom +
  1355. 4*6 /* four MAC addresses */
  1356. + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
  1357. + 6 /* mesh */
  1358. + 8 /* rfc1042/bridge tunnel */
  1359. - ETH_HLEN /* ethernet hard_header_len */
  1360. + IEEE80211_ENCRYPT_HEADROOM;
  1361. ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
  1362. ret = dev_alloc_name(ndev, ndev->name);
  1363. if (ret < 0) {
  1364. free_netdev(ndev);
  1365. return ret;
  1366. }
  1367. ieee80211_assign_perm_addr(local, ndev->perm_addr, type);
  1368. memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN);
  1369. SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
  1370. /* don't use IEEE80211_DEV_TO_SUB_IF -- it checks too much */
  1371. sdata = netdev_priv(ndev);
  1372. ndev->ieee80211_ptr = &sdata->wdev;
  1373. memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN);
  1374. memcpy(sdata->name, ndev->name, IFNAMSIZ);
  1375. sdata->dev = ndev;
  1376. }
  1377. /* initialise type-independent data */
  1378. sdata->wdev.wiphy = local->hw.wiphy;
  1379. sdata->local = local;
  1380. for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
  1381. skb_queue_head_init(&sdata->fragments[i].skb_list);
  1382. INIT_LIST_HEAD(&sdata->key_list);
  1383. INIT_DELAYED_WORK(&sdata->dfs_cac_timer_work,
  1384. ieee80211_dfs_cac_timer_work);
  1385. INIT_DELAYED_WORK(&sdata->dec_tailroom_needed_wk,
  1386. ieee80211_delayed_tailroom_dec);
  1387. for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
  1388. struct ieee80211_supported_band *sband;
  1389. sband = local->hw.wiphy->bands[i];
  1390. sdata->rc_rateidx_mask[i] =
  1391. sband ? (1 << sband->n_bitrates) - 1 : 0;
  1392. if (sband)
  1393. memcpy(sdata->rc_rateidx_mcs_mask[i],
  1394. sband->ht_cap.mcs.rx_mask,
  1395. sizeof(sdata->rc_rateidx_mcs_mask[i]));
  1396. else
  1397. memset(sdata->rc_rateidx_mcs_mask[i], 0,
  1398. sizeof(sdata->rc_rateidx_mcs_mask[i]));
  1399. }
  1400. ieee80211_set_default_queues(sdata);
  1401. sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
  1402. sdata->user_power_level = local->user_power_level;
  1403. sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
  1404. /* setup type-dependent data */
  1405. ieee80211_setup_sdata(sdata, type);
  1406. if (ndev) {
  1407. if (params) {
  1408. ndev->ieee80211_ptr->use_4addr = params->use_4addr;
  1409. if (type == NL80211_IFTYPE_STATION)
  1410. sdata->u.mgd.use_4addr = params->use_4addr;
  1411. }
  1412. ndev->features |= local->hw.netdev_features;
  1413. ret = register_netdevice(ndev);
  1414. if (ret) {
  1415. free_netdev(ndev);
  1416. return ret;
  1417. }
  1418. }
  1419. mutex_lock(&local->iflist_mtx);
  1420. list_add_tail_rcu(&sdata->list, &local->interfaces);
  1421. mutex_unlock(&local->iflist_mtx);
  1422. if (new_wdev)
  1423. *new_wdev = &sdata->wdev;
  1424. return 0;
  1425. }
  1426. void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
  1427. {
  1428. ASSERT_RTNL();
  1429. mutex_lock(&sdata->local->iflist_mtx);
  1430. list_del_rcu(&sdata->list);
  1431. mutex_unlock(&sdata->local->iflist_mtx);
  1432. synchronize_rcu();
  1433. if (sdata->dev) {
  1434. unregister_netdevice(sdata->dev);
  1435. } else {
  1436. cfg80211_unregister_wdev(&sdata->wdev);
  1437. kfree(sdata);
  1438. }
  1439. }
  1440. void ieee80211_sdata_stop(struct ieee80211_sub_if_data *sdata)
  1441. {
  1442. if (WARN_ON_ONCE(!test_bit(SDATA_STATE_RUNNING, &sdata->state)))
  1443. return;
  1444. ieee80211_do_stop(sdata, true);
  1445. ieee80211_teardown_sdata(sdata);
  1446. }
  1447. /*
  1448. * Remove all interfaces, may only be called at hardware unregistration
  1449. * time because it doesn't do RCU-safe list removals.
  1450. */
  1451. void ieee80211_remove_interfaces(struct ieee80211_local *local)
  1452. {
  1453. struct ieee80211_sub_if_data *sdata, *tmp;
  1454. LIST_HEAD(unreg_list);
  1455. LIST_HEAD(wdev_list);
  1456. ASSERT_RTNL();
  1457. /*
  1458. * Close all AP_VLAN interfaces first, as otherwise they
  1459. * might be closed while the AP interface they belong to
  1460. * is closed, causing unregister_netdevice_many() to crash.
  1461. */
  1462. list_for_each_entry(sdata, &local->interfaces, list)
  1463. if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
  1464. dev_close(sdata->dev);
  1465. mutex_lock(&local->iflist_mtx);
  1466. list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
  1467. list_del(&sdata->list);
  1468. if (sdata->dev)
  1469. unregister_netdevice_queue(sdata->dev, &unreg_list);
  1470. else
  1471. list_add(&sdata->list, &wdev_list);
  1472. }
  1473. mutex_unlock(&local->iflist_mtx);
  1474. unregister_netdevice_many(&unreg_list);
  1475. list_del(&unreg_list);
  1476. list_for_each_entry_safe(sdata, tmp, &wdev_list, list) {
  1477. list_del(&sdata->list);
  1478. cfg80211_unregister_wdev(&sdata->wdev);
  1479. kfree(sdata);
  1480. }
  1481. }
  1482. static int netdev_notify(struct notifier_block *nb,
  1483. unsigned long state, void *ptr)
  1484. {
  1485. struct net_device *dev = netdev_notifier_info_to_dev(ptr);
  1486. struct ieee80211_sub_if_data *sdata;
  1487. if (state != NETDEV_CHANGENAME)
  1488. return 0;
  1489. if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy)
  1490. return 0;
  1491. if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid)
  1492. return 0;
  1493. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1494. memcpy(sdata->name, dev->name, IFNAMSIZ);
  1495. ieee80211_debugfs_rename_netdev(sdata);
  1496. return 0;
  1497. }
  1498. static struct notifier_block mac80211_netdev_notifier = {
  1499. .notifier_call = netdev_notify,
  1500. };
  1501. int ieee80211_iface_init(void)
  1502. {
  1503. return register_netdevice_notifier(&mac80211_netdev_notifier);
  1504. }
  1505. void ieee80211_iface_exit(void)
  1506. {
  1507. unregister_netdevice_notifier(&mac80211_netdev_notifier);
  1508. }