cfg.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  1. /*
  2. * mac80211 configuration hooks for cfg80211
  3. *
  4. * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
  5. *
  6. * This file is GPLv2 as found in COPYING.
  7. */
  8. #include <linux/ieee80211.h>
  9. #include <linux/nl80211.h>
  10. #include <linux/rtnetlink.h>
  11. #include <linux/slab.h>
  12. #include <net/net_namespace.h>
  13. #include <linux/rcupdate.h>
  14. #include <net/cfg80211.h>
  15. #include "ieee80211_i.h"
  16. #include "driver-ops.h"
  17. #include "cfg.h"
  18. #include "rate.h"
  19. #include "mesh.h"
  20. static struct net_device *ieee80211_add_iface(struct wiphy *wiphy, char *name,
  21. enum nl80211_iftype type,
  22. u32 *flags,
  23. struct vif_params *params)
  24. {
  25. struct ieee80211_local *local = wiphy_priv(wiphy);
  26. struct net_device *dev;
  27. struct ieee80211_sub_if_data *sdata;
  28. int err;
  29. err = ieee80211_if_add(local, name, &dev, type, params);
  30. if (err)
  31. return ERR_PTR(err);
  32. if (type == NL80211_IFTYPE_MONITOR && flags) {
  33. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  34. sdata->u.mntr_flags = *flags;
  35. }
  36. return dev;
  37. }
  38. static int ieee80211_del_iface(struct wiphy *wiphy, struct net_device *dev)
  39. {
  40. ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev));
  41. return 0;
  42. }
  43. static int ieee80211_change_iface(struct wiphy *wiphy,
  44. struct net_device *dev,
  45. enum nl80211_iftype type, u32 *flags,
  46. struct vif_params *params)
  47. {
  48. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  49. int ret;
  50. ret = ieee80211_if_change_type(sdata, type);
  51. if (ret)
  52. return ret;
  53. if (type == NL80211_IFTYPE_AP_VLAN &&
  54. params && params->use_4addr == 0)
  55. rcu_assign_pointer(sdata->u.vlan.sta, NULL);
  56. else if (type == NL80211_IFTYPE_STATION &&
  57. params && params->use_4addr >= 0)
  58. sdata->u.mgd.use_4addr = params->use_4addr;
  59. if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
  60. struct ieee80211_local *local = sdata->local;
  61. if (ieee80211_sdata_running(sdata)) {
  62. /*
  63. * Prohibit MONITOR_FLAG_COOK_FRAMES to be
  64. * changed while the interface is up.
  65. * Else we would need to add a lot of cruft
  66. * to update everything:
  67. * cooked_mntrs, monitor and all fif_* counters
  68. * reconfigure hardware
  69. */
  70. if ((*flags & MONITOR_FLAG_COOK_FRAMES) !=
  71. (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
  72. return -EBUSY;
  73. ieee80211_adjust_monitor_flags(sdata, -1);
  74. sdata->u.mntr_flags = *flags;
  75. ieee80211_adjust_monitor_flags(sdata, 1);
  76. ieee80211_configure_filter(local);
  77. } else {
  78. /*
  79. * Because the interface is down, ieee80211_do_stop
  80. * and ieee80211_do_open take care of "everything"
  81. * mentioned in the comment above.
  82. */
  83. sdata->u.mntr_flags = *flags;
  84. }
  85. }
  86. return 0;
  87. }
  88. static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
  89. u8 key_idx, bool pairwise, const u8 *mac_addr,
  90. struct key_params *params)
  91. {
  92. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  93. struct sta_info *sta = NULL;
  94. struct ieee80211_key *key;
  95. int err;
  96. if (!ieee80211_sdata_running(sdata))
  97. return -ENETDOWN;
  98. /* reject WEP and TKIP keys if WEP failed to initialize */
  99. switch (params->cipher) {
  100. case WLAN_CIPHER_SUITE_WEP40:
  101. case WLAN_CIPHER_SUITE_TKIP:
  102. case WLAN_CIPHER_SUITE_WEP104:
  103. if (IS_ERR(sdata->local->wep_tx_tfm))
  104. return -EINVAL;
  105. break;
  106. default:
  107. break;
  108. }
  109. key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
  110. params->key, params->seq_len, params->seq);
  111. if (IS_ERR(key))
  112. return PTR_ERR(key);
  113. if (pairwise)
  114. key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
  115. mutex_lock(&sdata->local->sta_mtx);
  116. if (mac_addr) {
  117. sta = sta_info_get_bss(sdata, mac_addr);
  118. if (!sta) {
  119. ieee80211_key_free(sdata->local, key);
  120. err = -ENOENT;
  121. goto out_unlock;
  122. }
  123. }
  124. err = ieee80211_key_link(key, sdata, sta);
  125. if (err)
  126. ieee80211_key_free(sdata->local, key);
  127. out_unlock:
  128. mutex_unlock(&sdata->local->sta_mtx);
  129. return err;
  130. }
  131. static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
  132. u8 key_idx, bool pairwise, const u8 *mac_addr)
  133. {
  134. struct ieee80211_sub_if_data *sdata;
  135. struct sta_info *sta;
  136. int ret;
  137. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  138. mutex_lock(&sdata->local->sta_mtx);
  139. if (mac_addr) {
  140. ret = -ENOENT;
  141. sta = sta_info_get_bss(sdata, mac_addr);
  142. if (!sta)
  143. goto out_unlock;
  144. if (pairwise) {
  145. if (sta->ptk) {
  146. ieee80211_key_free(sdata->local, sta->ptk);
  147. ret = 0;
  148. }
  149. } else {
  150. if (sta->gtk[key_idx]) {
  151. ieee80211_key_free(sdata->local,
  152. sta->gtk[key_idx]);
  153. ret = 0;
  154. }
  155. }
  156. goto out_unlock;
  157. }
  158. if (!sdata->keys[key_idx]) {
  159. ret = -ENOENT;
  160. goto out_unlock;
  161. }
  162. ieee80211_key_free(sdata->local, sdata->keys[key_idx]);
  163. WARN_ON(sdata->keys[key_idx]);
  164. ret = 0;
  165. out_unlock:
  166. mutex_unlock(&sdata->local->sta_mtx);
  167. return ret;
  168. }
  169. static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
  170. u8 key_idx, bool pairwise, const u8 *mac_addr,
  171. void *cookie,
  172. void (*callback)(void *cookie,
  173. struct key_params *params))
  174. {
  175. struct ieee80211_sub_if_data *sdata;
  176. struct sta_info *sta = NULL;
  177. u8 seq[6] = {0};
  178. struct key_params params;
  179. struct ieee80211_key *key = NULL;
  180. u32 iv32;
  181. u16 iv16;
  182. int err = -ENOENT;
  183. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  184. rcu_read_lock();
  185. if (mac_addr) {
  186. sta = sta_info_get_bss(sdata, mac_addr);
  187. if (!sta)
  188. goto out;
  189. if (pairwise)
  190. key = sta->ptk;
  191. else if (key_idx < NUM_DEFAULT_KEYS)
  192. key = sta->gtk[key_idx];
  193. } else
  194. key = sdata->keys[key_idx];
  195. if (!key)
  196. goto out;
  197. memset(&params, 0, sizeof(params));
  198. params.cipher = key->conf.cipher;
  199. switch (key->conf.cipher) {
  200. case WLAN_CIPHER_SUITE_TKIP:
  201. iv32 = key->u.tkip.tx.iv32;
  202. iv16 = key->u.tkip.tx.iv16;
  203. if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
  204. drv_get_tkip_seq(sdata->local,
  205. key->conf.hw_key_idx,
  206. &iv32, &iv16);
  207. seq[0] = iv16 & 0xff;
  208. seq[1] = (iv16 >> 8) & 0xff;
  209. seq[2] = iv32 & 0xff;
  210. seq[3] = (iv32 >> 8) & 0xff;
  211. seq[4] = (iv32 >> 16) & 0xff;
  212. seq[5] = (iv32 >> 24) & 0xff;
  213. params.seq = seq;
  214. params.seq_len = 6;
  215. break;
  216. case WLAN_CIPHER_SUITE_CCMP:
  217. seq[0] = key->u.ccmp.tx_pn[5];
  218. seq[1] = key->u.ccmp.tx_pn[4];
  219. seq[2] = key->u.ccmp.tx_pn[3];
  220. seq[3] = key->u.ccmp.tx_pn[2];
  221. seq[4] = key->u.ccmp.tx_pn[1];
  222. seq[5] = key->u.ccmp.tx_pn[0];
  223. params.seq = seq;
  224. params.seq_len = 6;
  225. break;
  226. case WLAN_CIPHER_SUITE_AES_CMAC:
  227. seq[0] = key->u.aes_cmac.tx_pn[5];
  228. seq[1] = key->u.aes_cmac.tx_pn[4];
  229. seq[2] = key->u.aes_cmac.tx_pn[3];
  230. seq[3] = key->u.aes_cmac.tx_pn[2];
  231. seq[4] = key->u.aes_cmac.tx_pn[1];
  232. seq[5] = key->u.aes_cmac.tx_pn[0];
  233. params.seq = seq;
  234. params.seq_len = 6;
  235. break;
  236. }
  237. params.key = key->conf.key;
  238. params.key_len = key->conf.keylen;
  239. callback(cookie, &params);
  240. err = 0;
  241. out:
  242. rcu_read_unlock();
  243. return err;
  244. }
  245. static int ieee80211_config_default_key(struct wiphy *wiphy,
  246. struct net_device *dev,
  247. u8 key_idx, bool uni,
  248. bool multi)
  249. {
  250. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  251. ieee80211_set_default_key(sdata, key_idx, uni, multi);
  252. return 0;
  253. }
  254. static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
  255. struct net_device *dev,
  256. u8 key_idx)
  257. {
  258. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  259. ieee80211_set_default_mgmt_key(sdata, key_idx);
  260. return 0;
  261. }
  262. static void rate_idx_to_bitrate(struct rate_info *rate, struct sta_info *sta, int idx)
  263. {
  264. if (!(rate->flags & RATE_INFO_FLAGS_MCS)) {
  265. struct ieee80211_supported_band *sband;
  266. sband = sta->local->hw.wiphy->bands[
  267. sta->local->hw.conf.channel->band];
  268. rate->legacy = sband->bitrates[idx].bitrate;
  269. } else
  270. rate->mcs = idx;
  271. }
  272. static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
  273. {
  274. struct ieee80211_sub_if_data *sdata = sta->sdata;
  275. sinfo->generation = sdata->local->sta_generation;
  276. sinfo->filled = STATION_INFO_INACTIVE_TIME |
  277. STATION_INFO_RX_BYTES |
  278. STATION_INFO_TX_BYTES |
  279. STATION_INFO_RX_PACKETS |
  280. STATION_INFO_TX_PACKETS |
  281. STATION_INFO_TX_RETRIES |
  282. STATION_INFO_TX_FAILED |
  283. STATION_INFO_TX_BITRATE |
  284. STATION_INFO_RX_BITRATE |
  285. STATION_INFO_RX_DROP_MISC;
  286. sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
  287. sinfo->rx_bytes = sta->rx_bytes;
  288. sinfo->tx_bytes = sta->tx_bytes;
  289. sinfo->rx_packets = sta->rx_packets;
  290. sinfo->tx_packets = sta->tx_packets;
  291. sinfo->tx_retries = sta->tx_retry_count;
  292. sinfo->tx_failed = sta->tx_retry_failed;
  293. sinfo->rx_dropped_misc = sta->rx_dropped;
  294. if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
  295. (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
  296. sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
  297. sinfo->signal = (s8)sta->last_signal;
  298. sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
  299. }
  300. sinfo->txrate.flags = 0;
  301. if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
  302. sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
  303. if (sta->last_tx_rate.flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
  304. sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
  305. if (sta->last_tx_rate.flags & IEEE80211_TX_RC_SHORT_GI)
  306. sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
  307. rate_idx_to_bitrate(&sinfo->txrate, sta, sta->last_tx_rate.idx);
  308. sinfo->rxrate.flags = 0;
  309. if (sta->last_rx_rate_flag & RX_FLAG_HT)
  310. sinfo->rxrate.flags |= RATE_INFO_FLAGS_MCS;
  311. if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
  312. sinfo->rxrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
  313. if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
  314. sinfo->rxrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
  315. rate_idx_to_bitrate(&sinfo->rxrate, sta, sta->last_rx_rate_idx);
  316. if (ieee80211_vif_is_mesh(&sdata->vif)) {
  317. #ifdef CONFIG_MAC80211_MESH
  318. sinfo->filled |= STATION_INFO_LLID |
  319. STATION_INFO_PLID |
  320. STATION_INFO_PLINK_STATE;
  321. sinfo->llid = le16_to_cpu(sta->llid);
  322. sinfo->plid = le16_to_cpu(sta->plid);
  323. sinfo->plink_state = sta->plink_state;
  324. #endif
  325. }
  326. }
  327. static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
  328. int idx, u8 *mac, struct station_info *sinfo)
  329. {
  330. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  331. struct sta_info *sta;
  332. int ret = -ENOENT;
  333. rcu_read_lock();
  334. sta = sta_info_get_by_idx(sdata, idx);
  335. if (sta) {
  336. ret = 0;
  337. memcpy(mac, sta->sta.addr, ETH_ALEN);
  338. sta_set_sinfo(sta, sinfo);
  339. }
  340. rcu_read_unlock();
  341. return ret;
  342. }
  343. static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
  344. int idx, struct survey_info *survey)
  345. {
  346. struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
  347. return drv_get_survey(local, idx, survey);
  348. }
  349. static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
  350. u8 *mac, struct station_info *sinfo)
  351. {
  352. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  353. struct sta_info *sta;
  354. int ret = -ENOENT;
  355. rcu_read_lock();
  356. sta = sta_info_get_bss(sdata, mac);
  357. if (sta) {
  358. ret = 0;
  359. sta_set_sinfo(sta, sinfo);
  360. }
  361. rcu_read_unlock();
  362. return ret;
  363. }
  364. /*
  365. * This handles both adding a beacon and setting new beacon info
  366. */
  367. static int ieee80211_config_beacon(struct ieee80211_sub_if_data *sdata,
  368. struct beacon_parameters *params)
  369. {
  370. struct beacon_data *new, *old;
  371. int new_head_len, new_tail_len;
  372. int size;
  373. int err = -EINVAL;
  374. old = sdata->u.ap.beacon;
  375. /* head must not be zero-length */
  376. if (params->head && !params->head_len)
  377. return -EINVAL;
  378. /*
  379. * This is a kludge. beacon interval should really be part
  380. * of the beacon information.
  381. */
  382. if (params->interval &&
  383. (sdata->vif.bss_conf.beacon_int != params->interval)) {
  384. sdata->vif.bss_conf.beacon_int = params->interval;
  385. ieee80211_bss_info_change_notify(sdata,
  386. BSS_CHANGED_BEACON_INT);
  387. }
  388. /* Need to have a beacon head if we don't have one yet */
  389. if (!params->head && !old)
  390. return err;
  391. /* sorry, no way to start beaconing without dtim period */
  392. if (!params->dtim_period && !old)
  393. return err;
  394. /* new or old head? */
  395. if (params->head)
  396. new_head_len = params->head_len;
  397. else
  398. new_head_len = old->head_len;
  399. /* new or old tail? */
  400. if (params->tail || !old)
  401. /* params->tail_len will be zero for !params->tail */
  402. new_tail_len = params->tail_len;
  403. else
  404. new_tail_len = old->tail_len;
  405. size = sizeof(*new) + new_head_len + new_tail_len;
  406. new = kzalloc(size, GFP_KERNEL);
  407. if (!new)
  408. return -ENOMEM;
  409. /* start filling the new info now */
  410. /* new or old dtim period? */
  411. if (params->dtim_period)
  412. new->dtim_period = params->dtim_period;
  413. else
  414. new->dtim_period = old->dtim_period;
  415. /*
  416. * pointers go into the block we allocated,
  417. * memory is | beacon_data | head | tail |
  418. */
  419. new->head = ((u8 *) new) + sizeof(*new);
  420. new->tail = new->head + new_head_len;
  421. new->head_len = new_head_len;
  422. new->tail_len = new_tail_len;
  423. /* copy in head */
  424. if (params->head)
  425. memcpy(new->head, params->head, new_head_len);
  426. else
  427. memcpy(new->head, old->head, new_head_len);
  428. /* copy in optional tail */
  429. if (params->tail)
  430. memcpy(new->tail, params->tail, new_tail_len);
  431. else
  432. if (old)
  433. memcpy(new->tail, old->tail, new_tail_len);
  434. sdata->vif.bss_conf.dtim_period = new->dtim_period;
  435. rcu_assign_pointer(sdata->u.ap.beacon, new);
  436. synchronize_rcu();
  437. kfree(old);
  438. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED |
  439. BSS_CHANGED_BEACON);
  440. return 0;
  441. }
  442. static int ieee80211_add_beacon(struct wiphy *wiphy, struct net_device *dev,
  443. struct beacon_parameters *params)
  444. {
  445. struct ieee80211_sub_if_data *sdata;
  446. struct beacon_data *old;
  447. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  448. old = sdata->u.ap.beacon;
  449. if (old)
  450. return -EALREADY;
  451. return ieee80211_config_beacon(sdata, params);
  452. }
  453. static int ieee80211_set_beacon(struct wiphy *wiphy, struct net_device *dev,
  454. struct beacon_parameters *params)
  455. {
  456. struct ieee80211_sub_if_data *sdata;
  457. struct beacon_data *old;
  458. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  459. old = sdata->u.ap.beacon;
  460. if (!old)
  461. return -ENOENT;
  462. return ieee80211_config_beacon(sdata, params);
  463. }
  464. static int ieee80211_del_beacon(struct wiphy *wiphy, struct net_device *dev)
  465. {
  466. struct ieee80211_sub_if_data *sdata;
  467. struct beacon_data *old;
  468. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  469. old = sdata->u.ap.beacon;
  470. if (!old)
  471. return -ENOENT;
  472. rcu_assign_pointer(sdata->u.ap.beacon, NULL);
  473. synchronize_rcu();
  474. kfree(old);
  475. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
  476. return 0;
  477. }
  478. /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
  479. struct iapp_layer2_update {
  480. u8 da[ETH_ALEN]; /* broadcast */
  481. u8 sa[ETH_ALEN]; /* STA addr */
  482. __be16 len; /* 6 */
  483. u8 dsap; /* 0 */
  484. u8 ssap; /* 0 */
  485. u8 control;
  486. u8 xid_info[3];
  487. } __packed;
  488. static void ieee80211_send_layer2_update(struct sta_info *sta)
  489. {
  490. struct iapp_layer2_update *msg;
  491. struct sk_buff *skb;
  492. /* Send Level 2 Update Frame to update forwarding tables in layer 2
  493. * bridge devices */
  494. skb = dev_alloc_skb(sizeof(*msg));
  495. if (!skb)
  496. return;
  497. msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
  498. /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
  499. * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
  500. memset(msg->da, 0xff, ETH_ALEN);
  501. memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
  502. msg->len = htons(6);
  503. msg->dsap = 0;
  504. msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
  505. msg->control = 0xaf; /* XID response lsb.1111F101.
  506. * F=0 (no poll command; unsolicited frame) */
  507. msg->xid_info[0] = 0x81; /* XID format identifier */
  508. msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
  509. msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
  510. skb->dev = sta->sdata->dev;
  511. skb->protocol = eth_type_trans(skb, sta->sdata->dev);
  512. memset(skb->cb, 0, sizeof(skb->cb));
  513. netif_rx_ni(skb);
  514. }
  515. static void sta_apply_parameters(struct ieee80211_local *local,
  516. struct sta_info *sta,
  517. struct station_parameters *params)
  518. {
  519. unsigned long flags;
  520. u32 rates;
  521. int i, j;
  522. struct ieee80211_supported_band *sband;
  523. struct ieee80211_sub_if_data *sdata = sta->sdata;
  524. u32 mask, set;
  525. sband = local->hw.wiphy->bands[local->oper_channel->band];
  526. spin_lock_irqsave(&sta->flaglock, flags);
  527. mask = params->sta_flags_mask;
  528. set = params->sta_flags_set;
  529. if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
  530. sta->flags &= ~WLAN_STA_AUTHORIZED;
  531. if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
  532. sta->flags |= WLAN_STA_AUTHORIZED;
  533. }
  534. if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
  535. sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
  536. if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
  537. sta->flags |= WLAN_STA_SHORT_PREAMBLE;
  538. }
  539. if (mask & BIT(NL80211_STA_FLAG_WME)) {
  540. sta->flags &= ~WLAN_STA_WME;
  541. if (set & BIT(NL80211_STA_FLAG_WME))
  542. sta->flags |= WLAN_STA_WME;
  543. }
  544. if (mask & BIT(NL80211_STA_FLAG_MFP)) {
  545. sta->flags &= ~WLAN_STA_MFP;
  546. if (set & BIT(NL80211_STA_FLAG_MFP))
  547. sta->flags |= WLAN_STA_MFP;
  548. }
  549. spin_unlock_irqrestore(&sta->flaglock, flags);
  550. /*
  551. * cfg80211 validates this (1-2007) and allows setting the AID
  552. * only when creating a new station entry
  553. */
  554. if (params->aid)
  555. sta->sta.aid = params->aid;
  556. /*
  557. * FIXME: updating the following information is racy when this
  558. * function is called from ieee80211_change_station().
  559. * However, all this information should be static so
  560. * maybe we should just reject attemps to change it.
  561. */
  562. if (params->listen_interval >= 0)
  563. sta->listen_interval = params->listen_interval;
  564. if (params->supported_rates) {
  565. rates = 0;
  566. for (i = 0; i < params->supported_rates_len; i++) {
  567. int rate = (params->supported_rates[i] & 0x7f) * 5;
  568. for (j = 0; j < sband->n_bitrates; j++) {
  569. if (sband->bitrates[j].bitrate == rate)
  570. rates |= BIT(j);
  571. }
  572. }
  573. sta->sta.supp_rates[local->oper_channel->band] = rates;
  574. }
  575. if (params->ht_capa)
  576. ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
  577. params->ht_capa,
  578. &sta->sta.ht_cap);
  579. if (ieee80211_vif_is_mesh(&sdata->vif) && params->plink_action) {
  580. switch (params->plink_action) {
  581. case PLINK_ACTION_OPEN:
  582. mesh_plink_open(sta);
  583. break;
  584. case PLINK_ACTION_BLOCK:
  585. mesh_plink_block(sta);
  586. break;
  587. }
  588. }
  589. }
  590. static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
  591. u8 *mac, struct station_parameters *params)
  592. {
  593. struct ieee80211_local *local = wiphy_priv(wiphy);
  594. struct sta_info *sta;
  595. struct ieee80211_sub_if_data *sdata;
  596. int err;
  597. int layer2_update;
  598. if (params->vlan) {
  599. sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
  600. if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
  601. sdata->vif.type != NL80211_IFTYPE_AP)
  602. return -EINVAL;
  603. } else
  604. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  605. if (compare_ether_addr(mac, sdata->vif.addr) == 0)
  606. return -EINVAL;
  607. if (is_multicast_ether_addr(mac))
  608. return -EINVAL;
  609. sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
  610. if (!sta)
  611. return -ENOMEM;
  612. sta->flags = WLAN_STA_AUTH | WLAN_STA_ASSOC;
  613. sta_apply_parameters(local, sta, params);
  614. rate_control_rate_init(sta);
  615. layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
  616. sdata->vif.type == NL80211_IFTYPE_AP;
  617. err = sta_info_insert_rcu(sta);
  618. if (err) {
  619. rcu_read_unlock();
  620. return err;
  621. }
  622. if (layer2_update)
  623. ieee80211_send_layer2_update(sta);
  624. rcu_read_unlock();
  625. return 0;
  626. }
  627. static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
  628. u8 *mac)
  629. {
  630. struct ieee80211_local *local = wiphy_priv(wiphy);
  631. struct ieee80211_sub_if_data *sdata;
  632. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  633. if (mac)
  634. return sta_info_destroy_addr_bss(sdata, mac);
  635. sta_info_flush(local, sdata);
  636. return 0;
  637. }
  638. static int ieee80211_change_station(struct wiphy *wiphy,
  639. struct net_device *dev,
  640. u8 *mac,
  641. struct station_parameters *params)
  642. {
  643. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  644. struct ieee80211_local *local = wiphy_priv(wiphy);
  645. struct sta_info *sta;
  646. struct ieee80211_sub_if_data *vlansdata;
  647. rcu_read_lock();
  648. sta = sta_info_get_bss(sdata, mac);
  649. if (!sta) {
  650. rcu_read_unlock();
  651. return -ENOENT;
  652. }
  653. if (params->vlan && params->vlan != sta->sdata->dev) {
  654. vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
  655. if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
  656. vlansdata->vif.type != NL80211_IFTYPE_AP) {
  657. rcu_read_unlock();
  658. return -EINVAL;
  659. }
  660. if (params->vlan->ieee80211_ptr->use_4addr) {
  661. if (vlansdata->u.vlan.sta) {
  662. rcu_read_unlock();
  663. return -EBUSY;
  664. }
  665. rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
  666. }
  667. sta->sdata = vlansdata;
  668. ieee80211_send_layer2_update(sta);
  669. }
  670. sta_apply_parameters(local, sta, params);
  671. rcu_read_unlock();
  672. if (sdata->vif.type == NL80211_IFTYPE_STATION &&
  673. params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED))
  674. ieee80211_recalc_ps(local, -1);
  675. return 0;
  676. }
  677. #ifdef CONFIG_MAC80211_MESH
  678. static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
  679. u8 *dst, u8 *next_hop)
  680. {
  681. struct ieee80211_sub_if_data *sdata;
  682. struct mesh_path *mpath;
  683. struct sta_info *sta;
  684. int err;
  685. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  686. rcu_read_lock();
  687. sta = sta_info_get(sdata, next_hop);
  688. if (!sta) {
  689. rcu_read_unlock();
  690. return -ENOENT;
  691. }
  692. err = mesh_path_add(dst, sdata);
  693. if (err) {
  694. rcu_read_unlock();
  695. return err;
  696. }
  697. mpath = mesh_path_lookup(dst, sdata);
  698. if (!mpath) {
  699. rcu_read_unlock();
  700. return -ENXIO;
  701. }
  702. mesh_path_fix_nexthop(mpath, sta);
  703. rcu_read_unlock();
  704. return 0;
  705. }
  706. static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
  707. u8 *dst)
  708. {
  709. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  710. if (dst)
  711. return mesh_path_del(dst, sdata);
  712. mesh_path_flush(sdata);
  713. return 0;
  714. }
  715. static int ieee80211_change_mpath(struct wiphy *wiphy,
  716. struct net_device *dev,
  717. u8 *dst, u8 *next_hop)
  718. {
  719. struct ieee80211_sub_if_data *sdata;
  720. struct mesh_path *mpath;
  721. struct sta_info *sta;
  722. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  723. rcu_read_lock();
  724. sta = sta_info_get(sdata, next_hop);
  725. if (!sta) {
  726. rcu_read_unlock();
  727. return -ENOENT;
  728. }
  729. mpath = mesh_path_lookup(dst, sdata);
  730. if (!mpath) {
  731. rcu_read_unlock();
  732. return -ENOENT;
  733. }
  734. mesh_path_fix_nexthop(mpath, sta);
  735. rcu_read_unlock();
  736. return 0;
  737. }
  738. static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
  739. struct mpath_info *pinfo)
  740. {
  741. if (mpath->next_hop)
  742. memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
  743. else
  744. memset(next_hop, 0, ETH_ALEN);
  745. pinfo->generation = mesh_paths_generation;
  746. pinfo->filled = MPATH_INFO_FRAME_QLEN |
  747. MPATH_INFO_SN |
  748. MPATH_INFO_METRIC |
  749. MPATH_INFO_EXPTIME |
  750. MPATH_INFO_DISCOVERY_TIMEOUT |
  751. MPATH_INFO_DISCOVERY_RETRIES |
  752. MPATH_INFO_FLAGS;
  753. pinfo->frame_qlen = mpath->frame_queue.qlen;
  754. pinfo->sn = mpath->sn;
  755. pinfo->metric = mpath->metric;
  756. if (time_before(jiffies, mpath->exp_time))
  757. pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
  758. pinfo->discovery_timeout =
  759. jiffies_to_msecs(mpath->discovery_timeout);
  760. pinfo->discovery_retries = mpath->discovery_retries;
  761. pinfo->flags = 0;
  762. if (mpath->flags & MESH_PATH_ACTIVE)
  763. pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
  764. if (mpath->flags & MESH_PATH_RESOLVING)
  765. pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
  766. if (mpath->flags & MESH_PATH_SN_VALID)
  767. pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
  768. if (mpath->flags & MESH_PATH_FIXED)
  769. pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
  770. if (mpath->flags & MESH_PATH_RESOLVING)
  771. pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
  772. pinfo->flags = mpath->flags;
  773. }
  774. static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
  775. u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
  776. {
  777. struct ieee80211_sub_if_data *sdata;
  778. struct mesh_path *mpath;
  779. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  780. rcu_read_lock();
  781. mpath = mesh_path_lookup(dst, sdata);
  782. if (!mpath) {
  783. rcu_read_unlock();
  784. return -ENOENT;
  785. }
  786. memcpy(dst, mpath->dst, ETH_ALEN);
  787. mpath_set_pinfo(mpath, next_hop, pinfo);
  788. rcu_read_unlock();
  789. return 0;
  790. }
  791. static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
  792. int idx, u8 *dst, u8 *next_hop,
  793. struct mpath_info *pinfo)
  794. {
  795. struct ieee80211_sub_if_data *sdata;
  796. struct mesh_path *mpath;
  797. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  798. rcu_read_lock();
  799. mpath = mesh_path_lookup_by_idx(idx, sdata);
  800. if (!mpath) {
  801. rcu_read_unlock();
  802. return -ENOENT;
  803. }
  804. memcpy(dst, mpath->dst, ETH_ALEN);
  805. mpath_set_pinfo(mpath, next_hop, pinfo);
  806. rcu_read_unlock();
  807. return 0;
  808. }
  809. static int ieee80211_get_mesh_config(struct wiphy *wiphy,
  810. struct net_device *dev,
  811. struct mesh_config *conf)
  812. {
  813. struct ieee80211_sub_if_data *sdata;
  814. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  815. memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
  816. return 0;
  817. }
  818. static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
  819. {
  820. return (mask >> (parm-1)) & 0x1;
  821. }
  822. static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
  823. const struct mesh_setup *setup)
  824. {
  825. u8 *new_ie;
  826. const u8 *old_ie;
  827. /* first allocate the new vendor information element */
  828. new_ie = NULL;
  829. old_ie = ifmsh->vendor_ie;
  830. ifmsh->vendor_ie_len = setup->vendor_ie_len;
  831. if (setup->vendor_ie_len) {
  832. new_ie = kmemdup(setup->vendor_ie, setup->vendor_ie_len,
  833. GFP_KERNEL);
  834. if (!new_ie)
  835. return -ENOMEM;
  836. }
  837. /* now copy the rest of the setup parameters */
  838. ifmsh->mesh_id_len = setup->mesh_id_len;
  839. memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
  840. ifmsh->mesh_pp_id = setup->path_sel_proto;
  841. ifmsh->mesh_pm_id = setup->path_metric;
  842. ifmsh->vendor_ie = new_ie;
  843. kfree(old_ie);
  844. return 0;
  845. }
  846. static int ieee80211_update_mesh_config(struct wiphy *wiphy,
  847. struct net_device *dev, u32 mask,
  848. const struct mesh_config *nconf)
  849. {
  850. struct mesh_config *conf;
  851. struct ieee80211_sub_if_data *sdata;
  852. struct ieee80211_if_mesh *ifmsh;
  853. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  854. ifmsh = &sdata->u.mesh;
  855. /* Set the config options which we are interested in setting */
  856. conf = &(sdata->u.mesh.mshcfg);
  857. if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
  858. conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
  859. if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
  860. conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
  861. if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
  862. conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
  863. if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
  864. conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
  865. if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
  866. conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
  867. if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
  868. conf->dot11MeshTTL = nconf->dot11MeshTTL;
  869. if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
  870. conf->dot11MeshTTL = nconf->element_ttl;
  871. if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
  872. conf->auto_open_plinks = nconf->auto_open_plinks;
  873. if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
  874. conf->dot11MeshHWMPmaxPREQretries =
  875. nconf->dot11MeshHWMPmaxPREQretries;
  876. if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
  877. conf->path_refresh_time = nconf->path_refresh_time;
  878. if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
  879. conf->min_discovery_timeout = nconf->min_discovery_timeout;
  880. if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
  881. conf->dot11MeshHWMPactivePathTimeout =
  882. nconf->dot11MeshHWMPactivePathTimeout;
  883. if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
  884. conf->dot11MeshHWMPpreqMinInterval =
  885. nconf->dot11MeshHWMPpreqMinInterval;
  886. if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
  887. mask))
  888. conf->dot11MeshHWMPnetDiameterTraversalTime =
  889. nconf->dot11MeshHWMPnetDiameterTraversalTime;
  890. if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
  891. conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
  892. ieee80211_mesh_root_setup(ifmsh);
  893. }
  894. return 0;
  895. }
  896. static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
  897. const struct mesh_config *conf,
  898. const struct mesh_setup *setup)
  899. {
  900. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  901. struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
  902. int err;
  903. memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
  904. err = copy_mesh_setup(ifmsh, setup);
  905. if (err)
  906. return err;
  907. ieee80211_start_mesh(sdata);
  908. return 0;
  909. }
  910. static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
  911. {
  912. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  913. ieee80211_stop_mesh(sdata);
  914. return 0;
  915. }
  916. #endif
  917. static int ieee80211_change_bss(struct wiphy *wiphy,
  918. struct net_device *dev,
  919. struct bss_parameters *params)
  920. {
  921. struct ieee80211_sub_if_data *sdata;
  922. u32 changed = 0;
  923. sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  924. if (params->use_cts_prot >= 0) {
  925. sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
  926. changed |= BSS_CHANGED_ERP_CTS_PROT;
  927. }
  928. if (params->use_short_preamble >= 0) {
  929. sdata->vif.bss_conf.use_short_preamble =
  930. params->use_short_preamble;
  931. changed |= BSS_CHANGED_ERP_PREAMBLE;
  932. }
  933. if (!sdata->vif.bss_conf.use_short_slot &&
  934. sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ) {
  935. sdata->vif.bss_conf.use_short_slot = true;
  936. changed |= BSS_CHANGED_ERP_SLOT;
  937. }
  938. if (params->use_short_slot_time >= 0) {
  939. sdata->vif.bss_conf.use_short_slot =
  940. params->use_short_slot_time;
  941. changed |= BSS_CHANGED_ERP_SLOT;
  942. }
  943. if (params->basic_rates) {
  944. int i, j;
  945. u32 rates = 0;
  946. struct ieee80211_local *local = wiphy_priv(wiphy);
  947. struct ieee80211_supported_band *sband =
  948. wiphy->bands[local->oper_channel->band];
  949. for (i = 0; i < params->basic_rates_len; i++) {
  950. int rate = (params->basic_rates[i] & 0x7f) * 5;
  951. for (j = 0; j < sband->n_bitrates; j++) {
  952. if (sband->bitrates[j].bitrate == rate)
  953. rates |= BIT(j);
  954. }
  955. }
  956. sdata->vif.bss_conf.basic_rates = rates;
  957. changed |= BSS_CHANGED_BASIC_RATES;
  958. }
  959. if (params->ap_isolate >= 0) {
  960. if (params->ap_isolate)
  961. sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
  962. else
  963. sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
  964. }
  965. if (params->ht_opmode >= 0) {
  966. sdata->vif.bss_conf.ht_operation_mode =
  967. (u16) params->ht_opmode;
  968. changed |= BSS_CHANGED_HT;
  969. }
  970. ieee80211_bss_info_change_notify(sdata, changed);
  971. return 0;
  972. }
  973. static int ieee80211_set_txq_params(struct wiphy *wiphy,
  974. struct ieee80211_txq_params *params)
  975. {
  976. struct ieee80211_local *local = wiphy_priv(wiphy);
  977. struct ieee80211_tx_queue_params p;
  978. if (!local->ops->conf_tx)
  979. return -EOPNOTSUPP;
  980. memset(&p, 0, sizeof(p));
  981. p.aifs = params->aifs;
  982. p.cw_max = params->cwmax;
  983. p.cw_min = params->cwmin;
  984. p.txop = params->txop;
  985. /*
  986. * Setting tx queue params disables u-apsd because it's only
  987. * called in master mode.
  988. */
  989. p.uapsd = false;
  990. if (drv_conf_tx(local, params->queue, &p)) {
  991. wiphy_debug(local->hw.wiphy,
  992. "failed to set TX queue parameters for queue %d\n",
  993. params->queue);
  994. return -EINVAL;
  995. }
  996. return 0;
  997. }
  998. static int ieee80211_set_channel(struct wiphy *wiphy,
  999. struct net_device *netdev,
  1000. struct ieee80211_channel *chan,
  1001. enum nl80211_channel_type channel_type)
  1002. {
  1003. struct ieee80211_local *local = wiphy_priv(wiphy);
  1004. struct ieee80211_sub_if_data *sdata = NULL;
  1005. struct ieee80211_channel *old_oper;
  1006. enum nl80211_channel_type old_oper_type;
  1007. enum nl80211_channel_type old_vif_oper_type= NL80211_CHAN_NO_HT;
  1008. if (netdev)
  1009. sdata = IEEE80211_DEV_TO_SUB_IF(netdev);
  1010. switch (ieee80211_get_channel_mode(local, NULL)) {
  1011. case CHAN_MODE_HOPPING:
  1012. return -EBUSY;
  1013. case CHAN_MODE_FIXED:
  1014. if (local->oper_channel != chan)
  1015. return -EBUSY;
  1016. if (!sdata && local->_oper_channel_type == channel_type)
  1017. return 0;
  1018. break;
  1019. case CHAN_MODE_UNDEFINED:
  1020. break;
  1021. }
  1022. if (sdata)
  1023. old_vif_oper_type = sdata->vif.bss_conf.channel_type;
  1024. old_oper_type = local->_oper_channel_type;
  1025. if (!ieee80211_set_channel_type(local, sdata, channel_type))
  1026. return -EBUSY;
  1027. old_oper = local->oper_channel;
  1028. local->oper_channel = chan;
  1029. /* Update driver if changes were actually made. */
  1030. if ((old_oper != local->oper_channel) ||
  1031. (old_oper_type != local->_oper_channel_type))
  1032. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
  1033. if ((sdata && sdata->vif.type != NL80211_IFTYPE_MONITOR) &&
  1034. old_vif_oper_type != sdata->vif.bss_conf.channel_type)
  1035. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
  1036. return 0;
  1037. }
  1038. #ifdef CONFIG_PM
  1039. static int ieee80211_suspend(struct wiphy *wiphy)
  1040. {
  1041. return __ieee80211_suspend(wiphy_priv(wiphy));
  1042. }
  1043. static int ieee80211_resume(struct wiphy *wiphy)
  1044. {
  1045. return __ieee80211_resume(wiphy_priv(wiphy));
  1046. }
  1047. #else
  1048. #define ieee80211_suspend NULL
  1049. #define ieee80211_resume NULL
  1050. #endif
  1051. static int ieee80211_scan(struct wiphy *wiphy,
  1052. struct net_device *dev,
  1053. struct cfg80211_scan_request *req)
  1054. {
  1055. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1056. switch (ieee80211_vif_type_p2p(&sdata->vif)) {
  1057. case NL80211_IFTYPE_STATION:
  1058. case NL80211_IFTYPE_ADHOC:
  1059. case NL80211_IFTYPE_MESH_POINT:
  1060. case NL80211_IFTYPE_P2P_CLIENT:
  1061. break;
  1062. case NL80211_IFTYPE_P2P_GO:
  1063. if (sdata->local->ops->hw_scan)
  1064. break;
  1065. /*
  1066. * FIXME: implement NoA while scanning in software,
  1067. * for now fall through to allow scanning only when
  1068. * beaconing hasn't been configured yet
  1069. */
  1070. case NL80211_IFTYPE_AP:
  1071. if (sdata->u.ap.beacon)
  1072. return -EOPNOTSUPP;
  1073. break;
  1074. default:
  1075. return -EOPNOTSUPP;
  1076. }
  1077. return ieee80211_request_scan(sdata, req);
  1078. }
  1079. static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
  1080. struct cfg80211_auth_request *req)
  1081. {
  1082. return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
  1083. }
  1084. static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
  1085. struct cfg80211_assoc_request *req)
  1086. {
  1087. struct ieee80211_local *local = wiphy_priv(wiphy);
  1088. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1089. switch (ieee80211_get_channel_mode(local, sdata)) {
  1090. case CHAN_MODE_HOPPING:
  1091. return -EBUSY;
  1092. case CHAN_MODE_FIXED:
  1093. if (local->oper_channel == req->bss->channel)
  1094. break;
  1095. return -EBUSY;
  1096. case CHAN_MODE_UNDEFINED:
  1097. break;
  1098. }
  1099. return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
  1100. }
  1101. static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
  1102. struct cfg80211_deauth_request *req,
  1103. void *cookie)
  1104. {
  1105. return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev),
  1106. req, cookie);
  1107. }
  1108. static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
  1109. struct cfg80211_disassoc_request *req,
  1110. void *cookie)
  1111. {
  1112. return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev),
  1113. req, cookie);
  1114. }
  1115. static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
  1116. struct cfg80211_ibss_params *params)
  1117. {
  1118. struct ieee80211_local *local = wiphy_priv(wiphy);
  1119. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1120. switch (ieee80211_get_channel_mode(local, sdata)) {
  1121. case CHAN_MODE_HOPPING:
  1122. return -EBUSY;
  1123. case CHAN_MODE_FIXED:
  1124. if (!params->channel_fixed)
  1125. return -EBUSY;
  1126. if (local->oper_channel == params->channel)
  1127. break;
  1128. return -EBUSY;
  1129. case CHAN_MODE_UNDEFINED:
  1130. break;
  1131. }
  1132. return ieee80211_ibss_join(sdata, params);
  1133. }
  1134. static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
  1135. {
  1136. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1137. return ieee80211_ibss_leave(sdata);
  1138. }
  1139. static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
  1140. {
  1141. struct ieee80211_local *local = wiphy_priv(wiphy);
  1142. int err;
  1143. if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
  1144. err = drv_set_frag_threshold(local, wiphy->frag_threshold);
  1145. if (err)
  1146. return err;
  1147. }
  1148. if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
  1149. err = drv_set_coverage_class(local, wiphy->coverage_class);
  1150. if (err)
  1151. return err;
  1152. }
  1153. if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
  1154. err = drv_set_rts_threshold(local, wiphy->rts_threshold);
  1155. if (err)
  1156. return err;
  1157. }
  1158. if (changed & WIPHY_PARAM_RETRY_SHORT)
  1159. local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
  1160. if (changed & WIPHY_PARAM_RETRY_LONG)
  1161. local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
  1162. if (changed &
  1163. (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
  1164. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
  1165. return 0;
  1166. }
  1167. static int ieee80211_set_tx_power(struct wiphy *wiphy,
  1168. enum nl80211_tx_power_setting type, int mbm)
  1169. {
  1170. struct ieee80211_local *local = wiphy_priv(wiphy);
  1171. struct ieee80211_channel *chan = local->hw.conf.channel;
  1172. u32 changes = 0;
  1173. switch (type) {
  1174. case NL80211_TX_POWER_AUTOMATIC:
  1175. local->user_power_level = -1;
  1176. break;
  1177. case NL80211_TX_POWER_LIMITED:
  1178. if (mbm < 0 || (mbm % 100))
  1179. return -EOPNOTSUPP;
  1180. local->user_power_level = MBM_TO_DBM(mbm);
  1181. break;
  1182. case NL80211_TX_POWER_FIXED:
  1183. if (mbm < 0 || (mbm % 100))
  1184. return -EOPNOTSUPP;
  1185. /* TODO: move to cfg80211 when it knows the channel */
  1186. if (MBM_TO_DBM(mbm) > chan->max_power)
  1187. return -EINVAL;
  1188. local->user_power_level = MBM_TO_DBM(mbm);
  1189. break;
  1190. }
  1191. ieee80211_hw_config(local, changes);
  1192. return 0;
  1193. }
  1194. static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
  1195. {
  1196. struct ieee80211_local *local = wiphy_priv(wiphy);
  1197. *dbm = local->hw.conf.power_level;
  1198. return 0;
  1199. }
  1200. static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
  1201. const u8 *addr)
  1202. {
  1203. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1204. memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
  1205. return 0;
  1206. }
  1207. static void ieee80211_rfkill_poll(struct wiphy *wiphy)
  1208. {
  1209. struct ieee80211_local *local = wiphy_priv(wiphy);
  1210. drv_rfkill_poll(local);
  1211. }
  1212. #ifdef CONFIG_NL80211_TESTMODE
  1213. static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
  1214. {
  1215. struct ieee80211_local *local = wiphy_priv(wiphy);
  1216. if (!local->ops->testmode_cmd)
  1217. return -EOPNOTSUPP;
  1218. return local->ops->testmode_cmd(&local->hw, data, len);
  1219. }
  1220. #endif
  1221. int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
  1222. enum ieee80211_smps_mode smps_mode)
  1223. {
  1224. const u8 *ap;
  1225. enum ieee80211_smps_mode old_req;
  1226. int err;
  1227. lockdep_assert_held(&sdata->u.mgd.mtx);
  1228. old_req = sdata->u.mgd.req_smps;
  1229. sdata->u.mgd.req_smps = smps_mode;
  1230. if (old_req == smps_mode &&
  1231. smps_mode != IEEE80211_SMPS_AUTOMATIC)
  1232. return 0;
  1233. /*
  1234. * If not associated, or current association is not an HT
  1235. * association, there's no need to send an action frame.
  1236. */
  1237. if (!sdata->u.mgd.associated ||
  1238. sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT) {
  1239. mutex_lock(&sdata->local->iflist_mtx);
  1240. ieee80211_recalc_smps(sdata->local);
  1241. mutex_unlock(&sdata->local->iflist_mtx);
  1242. return 0;
  1243. }
  1244. ap = sdata->u.mgd.associated->bssid;
  1245. if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
  1246. if (sdata->u.mgd.powersave)
  1247. smps_mode = IEEE80211_SMPS_DYNAMIC;
  1248. else
  1249. smps_mode = IEEE80211_SMPS_OFF;
  1250. }
  1251. /* send SM PS frame to AP */
  1252. err = ieee80211_send_smps_action(sdata, smps_mode,
  1253. ap, ap);
  1254. if (err)
  1255. sdata->u.mgd.req_smps = old_req;
  1256. return err;
  1257. }
  1258. static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
  1259. bool enabled, int timeout)
  1260. {
  1261. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1262. struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
  1263. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  1264. return -EOPNOTSUPP;
  1265. if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
  1266. return -EOPNOTSUPP;
  1267. if (enabled == sdata->u.mgd.powersave &&
  1268. timeout == local->dynamic_ps_forced_timeout)
  1269. return 0;
  1270. sdata->u.mgd.powersave = enabled;
  1271. local->dynamic_ps_forced_timeout = timeout;
  1272. /* no change, but if automatic follow powersave */
  1273. mutex_lock(&sdata->u.mgd.mtx);
  1274. __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
  1275. mutex_unlock(&sdata->u.mgd.mtx);
  1276. if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
  1277. ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
  1278. ieee80211_recalc_ps(local, -1);
  1279. return 0;
  1280. }
  1281. static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
  1282. struct net_device *dev,
  1283. s32 rssi_thold, u32 rssi_hyst)
  1284. {
  1285. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1286. struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
  1287. struct ieee80211_vif *vif = &sdata->vif;
  1288. struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
  1289. if (rssi_thold == bss_conf->cqm_rssi_thold &&
  1290. rssi_hyst == bss_conf->cqm_rssi_hyst)
  1291. return 0;
  1292. bss_conf->cqm_rssi_thold = rssi_thold;
  1293. bss_conf->cqm_rssi_hyst = rssi_hyst;
  1294. if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CQM_RSSI)) {
  1295. if (sdata->vif.type != NL80211_IFTYPE_STATION)
  1296. return -EOPNOTSUPP;
  1297. return 0;
  1298. }
  1299. /* tell the driver upon association, unless already associated */
  1300. if (sdata->u.mgd.associated)
  1301. ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
  1302. return 0;
  1303. }
  1304. static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
  1305. struct net_device *dev,
  1306. const u8 *addr,
  1307. const struct cfg80211_bitrate_mask *mask)
  1308. {
  1309. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1310. struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
  1311. int i;
  1312. /*
  1313. * This _could_ be supported by providing a hook for
  1314. * drivers for this function, but at this point it
  1315. * doesn't seem worth bothering.
  1316. */
  1317. if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
  1318. return -EOPNOTSUPP;
  1319. for (i = 0; i < IEEE80211_NUM_BANDS; i++)
  1320. sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
  1321. return 0;
  1322. }
  1323. static int ieee80211_remain_on_channel_hw(struct ieee80211_local *local,
  1324. struct net_device *dev,
  1325. struct ieee80211_channel *chan,
  1326. enum nl80211_channel_type chantype,
  1327. unsigned int duration, u64 *cookie)
  1328. {
  1329. int ret;
  1330. u32 random_cookie;
  1331. lockdep_assert_held(&local->mtx);
  1332. if (local->hw_roc_cookie)
  1333. return -EBUSY;
  1334. /* must be nonzero */
  1335. random_cookie = random32() | 1;
  1336. *cookie = random_cookie;
  1337. local->hw_roc_dev = dev;
  1338. local->hw_roc_cookie = random_cookie;
  1339. local->hw_roc_channel = chan;
  1340. local->hw_roc_channel_type = chantype;
  1341. local->hw_roc_duration = duration;
  1342. ret = drv_remain_on_channel(local, chan, chantype, duration);
  1343. if (ret) {
  1344. local->hw_roc_channel = NULL;
  1345. local->hw_roc_cookie = 0;
  1346. }
  1347. return ret;
  1348. }
  1349. static int ieee80211_remain_on_channel(struct wiphy *wiphy,
  1350. struct net_device *dev,
  1351. struct ieee80211_channel *chan,
  1352. enum nl80211_channel_type channel_type,
  1353. unsigned int duration,
  1354. u64 *cookie)
  1355. {
  1356. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1357. struct ieee80211_local *local = sdata->local;
  1358. if (local->ops->remain_on_channel) {
  1359. int ret;
  1360. mutex_lock(&local->mtx);
  1361. ret = ieee80211_remain_on_channel_hw(local, dev,
  1362. chan, channel_type,
  1363. duration, cookie);
  1364. local->hw_roc_for_tx = false;
  1365. mutex_unlock(&local->mtx);
  1366. return ret;
  1367. }
  1368. return ieee80211_wk_remain_on_channel(sdata, chan, channel_type,
  1369. duration, cookie);
  1370. }
  1371. static int ieee80211_cancel_remain_on_channel_hw(struct ieee80211_local *local,
  1372. u64 cookie)
  1373. {
  1374. int ret;
  1375. lockdep_assert_held(&local->mtx);
  1376. if (local->hw_roc_cookie != cookie)
  1377. return -ENOENT;
  1378. ret = drv_cancel_remain_on_channel(local);
  1379. if (ret)
  1380. return ret;
  1381. local->hw_roc_cookie = 0;
  1382. local->hw_roc_channel = NULL;
  1383. ieee80211_recalc_idle(local);
  1384. return 0;
  1385. }
  1386. static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
  1387. struct net_device *dev,
  1388. u64 cookie)
  1389. {
  1390. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1391. struct ieee80211_local *local = sdata->local;
  1392. if (local->ops->cancel_remain_on_channel) {
  1393. int ret;
  1394. mutex_lock(&local->mtx);
  1395. ret = ieee80211_cancel_remain_on_channel_hw(local, cookie);
  1396. mutex_unlock(&local->mtx);
  1397. return ret;
  1398. }
  1399. return ieee80211_wk_cancel_remain_on_channel(sdata, cookie);
  1400. }
  1401. static enum work_done_result
  1402. ieee80211_offchan_tx_done(struct ieee80211_work *wk, struct sk_buff *skb)
  1403. {
  1404. /*
  1405. * Use the data embedded in the work struct for reporting
  1406. * here so if the driver mangled the SKB before dropping
  1407. * it (which is the only way we really should get here)
  1408. * then we don't report mangled data.
  1409. *
  1410. * If there was no wait time, then by the time we get here
  1411. * the driver will likely not have reported the status yet,
  1412. * so in that case userspace will have to deal with it.
  1413. */
  1414. if (wk->offchan_tx.wait && wk->offchan_tx.frame)
  1415. cfg80211_mgmt_tx_status(wk->sdata->dev,
  1416. (unsigned long) wk->offchan_tx.frame,
  1417. wk->ie, wk->ie_len, false, GFP_KERNEL);
  1418. return WORK_DONE_DESTROY;
  1419. }
  1420. static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct net_device *dev,
  1421. struct ieee80211_channel *chan, bool offchan,
  1422. enum nl80211_channel_type channel_type,
  1423. bool channel_type_valid, unsigned int wait,
  1424. const u8 *buf, size_t len, u64 *cookie)
  1425. {
  1426. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1427. struct ieee80211_local *local = sdata->local;
  1428. struct sk_buff *skb;
  1429. struct sta_info *sta;
  1430. struct ieee80211_work *wk;
  1431. const struct ieee80211_mgmt *mgmt = (void *)buf;
  1432. u32 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
  1433. IEEE80211_TX_CTL_REQ_TX_STATUS;
  1434. bool is_offchan = false;
  1435. /* Check that we are on the requested channel for transmission */
  1436. if (chan != local->tmp_channel &&
  1437. chan != local->oper_channel)
  1438. is_offchan = true;
  1439. if (channel_type_valid &&
  1440. (channel_type != local->tmp_channel_type &&
  1441. channel_type != local->_oper_channel_type))
  1442. is_offchan = true;
  1443. if (chan == local->hw_roc_channel) {
  1444. /* TODO: check channel type? */
  1445. is_offchan = false;
  1446. flags |= IEEE80211_TX_CTL_TX_OFFCHAN;
  1447. }
  1448. if (is_offchan && !offchan)
  1449. return -EBUSY;
  1450. switch (sdata->vif.type) {
  1451. case NL80211_IFTYPE_ADHOC:
  1452. case NL80211_IFTYPE_AP:
  1453. case NL80211_IFTYPE_AP_VLAN:
  1454. case NL80211_IFTYPE_P2P_GO:
  1455. case NL80211_IFTYPE_MESH_POINT:
  1456. if (!ieee80211_is_action(mgmt->frame_control) ||
  1457. mgmt->u.action.category == WLAN_CATEGORY_PUBLIC)
  1458. break;
  1459. rcu_read_lock();
  1460. sta = sta_info_get(sdata, mgmt->da);
  1461. rcu_read_unlock();
  1462. if (!sta)
  1463. return -ENOLINK;
  1464. break;
  1465. case NL80211_IFTYPE_STATION:
  1466. case NL80211_IFTYPE_P2P_CLIENT:
  1467. break;
  1468. default:
  1469. return -EOPNOTSUPP;
  1470. }
  1471. skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
  1472. if (!skb)
  1473. return -ENOMEM;
  1474. skb_reserve(skb, local->hw.extra_tx_headroom);
  1475. memcpy(skb_put(skb, len), buf, len);
  1476. IEEE80211_SKB_CB(skb)->flags = flags;
  1477. skb->dev = sdata->dev;
  1478. *cookie = (unsigned long) skb;
  1479. if (is_offchan && local->ops->offchannel_tx) {
  1480. int ret;
  1481. IEEE80211_SKB_CB(skb)->band = chan->band;
  1482. mutex_lock(&local->mtx);
  1483. if (local->hw_offchan_tx_cookie) {
  1484. mutex_unlock(&local->mtx);
  1485. return -EBUSY;
  1486. }
  1487. /* TODO: bitrate control, TX processing? */
  1488. ret = drv_offchannel_tx(local, skb, chan, channel_type, wait);
  1489. if (ret == 0)
  1490. local->hw_offchan_tx_cookie = *cookie;
  1491. mutex_unlock(&local->mtx);
  1492. /*
  1493. * Allow driver to return 1 to indicate it wants to have the
  1494. * frame transmitted with a remain_on_channel + regular TX.
  1495. */
  1496. if (ret != 1)
  1497. return ret;
  1498. }
  1499. if (is_offchan && local->ops->remain_on_channel) {
  1500. unsigned int duration;
  1501. int ret;
  1502. mutex_lock(&local->mtx);
  1503. /*
  1504. * If the duration is zero, then the driver
  1505. * wouldn't actually do anything. Set it to
  1506. * 100 for now.
  1507. *
  1508. * TODO: cancel the off-channel operation
  1509. * when we get the SKB's TX status and
  1510. * the wait time was zero before.
  1511. */
  1512. duration = 100;
  1513. if (wait)
  1514. duration = wait;
  1515. ret = ieee80211_remain_on_channel_hw(local, dev, chan,
  1516. channel_type,
  1517. duration, cookie);
  1518. if (ret) {
  1519. kfree_skb(skb);
  1520. mutex_unlock(&local->mtx);
  1521. return ret;
  1522. }
  1523. local->hw_roc_for_tx = true;
  1524. local->hw_roc_duration = wait;
  1525. /*
  1526. * queue up frame for transmission after
  1527. * ieee80211_ready_on_channel call
  1528. */
  1529. /* modify cookie to prevent API mismatches */
  1530. *cookie ^= 2;
  1531. IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN;
  1532. local->hw_roc_skb = skb;
  1533. local->hw_roc_skb_for_status = skb;
  1534. mutex_unlock(&local->mtx);
  1535. return 0;
  1536. }
  1537. /*
  1538. * Can transmit right away if the channel was the
  1539. * right one and there's no wait involved... If a
  1540. * wait is involved, we might otherwise not be on
  1541. * the right channel for long enough!
  1542. */
  1543. if (!is_offchan && !wait && !sdata->vif.bss_conf.idle) {
  1544. ieee80211_tx_skb(sdata, skb);
  1545. return 0;
  1546. }
  1547. wk = kzalloc(sizeof(*wk) + len, GFP_KERNEL);
  1548. if (!wk) {
  1549. kfree_skb(skb);
  1550. return -ENOMEM;
  1551. }
  1552. wk->type = IEEE80211_WORK_OFFCHANNEL_TX;
  1553. wk->chan = chan;
  1554. wk->chan_type = channel_type;
  1555. wk->sdata = sdata;
  1556. wk->done = ieee80211_offchan_tx_done;
  1557. wk->offchan_tx.frame = skb;
  1558. wk->offchan_tx.wait = wait;
  1559. wk->ie_len = len;
  1560. memcpy(wk->ie, buf, len);
  1561. ieee80211_add_work(wk);
  1562. return 0;
  1563. }
  1564. static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
  1565. struct net_device *dev,
  1566. u64 cookie)
  1567. {
  1568. struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
  1569. struct ieee80211_local *local = sdata->local;
  1570. struct ieee80211_work *wk;
  1571. int ret = -ENOENT;
  1572. mutex_lock(&local->mtx);
  1573. if (local->ops->offchannel_tx_cancel_wait &&
  1574. local->hw_offchan_tx_cookie == cookie) {
  1575. ret = drv_offchannel_tx_cancel_wait(local);
  1576. if (!ret)
  1577. local->hw_offchan_tx_cookie = 0;
  1578. mutex_unlock(&local->mtx);
  1579. return ret;
  1580. }
  1581. if (local->ops->cancel_remain_on_channel) {
  1582. cookie ^= 2;
  1583. ret = ieee80211_cancel_remain_on_channel_hw(local, cookie);
  1584. if (ret == 0) {
  1585. kfree_skb(local->hw_roc_skb);
  1586. local->hw_roc_skb = NULL;
  1587. local->hw_roc_skb_for_status = NULL;
  1588. }
  1589. mutex_unlock(&local->mtx);
  1590. return ret;
  1591. }
  1592. list_for_each_entry(wk, &local->work_list, list) {
  1593. if (wk->sdata != sdata)
  1594. continue;
  1595. if (wk->type != IEEE80211_WORK_OFFCHANNEL_TX)
  1596. continue;
  1597. if (cookie != (unsigned long) wk->offchan_tx.frame)
  1598. continue;
  1599. wk->timeout = jiffies;
  1600. ieee80211_queue_work(&local->hw, &local->work_work);
  1601. ret = 0;
  1602. break;
  1603. }
  1604. mutex_unlock(&local->mtx);
  1605. return ret;
  1606. }
  1607. static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
  1608. struct net_device *dev,
  1609. u16 frame_type, bool reg)
  1610. {
  1611. struct ieee80211_local *local = wiphy_priv(wiphy);
  1612. if (frame_type != (IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ))
  1613. return;
  1614. if (reg)
  1615. local->probe_req_reg++;
  1616. else
  1617. local->probe_req_reg--;
  1618. ieee80211_queue_work(&local->hw, &local->reconfig_filter);
  1619. }
  1620. static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
  1621. {
  1622. struct ieee80211_local *local = wiphy_priv(wiphy);
  1623. if (local->started)
  1624. return -EOPNOTSUPP;
  1625. return drv_set_antenna(local, tx_ant, rx_ant);
  1626. }
  1627. static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
  1628. {
  1629. struct ieee80211_local *local = wiphy_priv(wiphy);
  1630. return drv_get_antenna(local, tx_ant, rx_ant);
  1631. }
  1632. static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
  1633. {
  1634. struct ieee80211_local *local = wiphy_priv(wiphy);
  1635. return drv_set_ringparam(local, tx, rx);
  1636. }
  1637. static void ieee80211_get_ringparam(struct wiphy *wiphy,
  1638. u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
  1639. {
  1640. struct ieee80211_local *local = wiphy_priv(wiphy);
  1641. drv_get_ringparam(local, tx, tx_max, rx, rx_max);
  1642. }
  1643. struct cfg80211_ops mac80211_config_ops = {
  1644. .add_virtual_intf = ieee80211_add_iface,
  1645. .del_virtual_intf = ieee80211_del_iface,
  1646. .change_virtual_intf = ieee80211_change_iface,
  1647. .add_key = ieee80211_add_key,
  1648. .del_key = ieee80211_del_key,
  1649. .get_key = ieee80211_get_key,
  1650. .set_default_key = ieee80211_config_default_key,
  1651. .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
  1652. .add_beacon = ieee80211_add_beacon,
  1653. .set_beacon = ieee80211_set_beacon,
  1654. .del_beacon = ieee80211_del_beacon,
  1655. .add_station = ieee80211_add_station,
  1656. .del_station = ieee80211_del_station,
  1657. .change_station = ieee80211_change_station,
  1658. .get_station = ieee80211_get_station,
  1659. .dump_station = ieee80211_dump_station,
  1660. .dump_survey = ieee80211_dump_survey,
  1661. #ifdef CONFIG_MAC80211_MESH
  1662. .add_mpath = ieee80211_add_mpath,
  1663. .del_mpath = ieee80211_del_mpath,
  1664. .change_mpath = ieee80211_change_mpath,
  1665. .get_mpath = ieee80211_get_mpath,
  1666. .dump_mpath = ieee80211_dump_mpath,
  1667. .update_mesh_config = ieee80211_update_mesh_config,
  1668. .get_mesh_config = ieee80211_get_mesh_config,
  1669. .join_mesh = ieee80211_join_mesh,
  1670. .leave_mesh = ieee80211_leave_mesh,
  1671. #endif
  1672. .change_bss = ieee80211_change_bss,
  1673. .set_txq_params = ieee80211_set_txq_params,
  1674. .set_channel = ieee80211_set_channel,
  1675. .suspend = ieee80211_suspend,
  1676. .resume = ieee80211_resume,
  1677. .scan = ieee80211_scan,
  1678. .auth = ieee80211_auth,
  1679. .assoc = ieee80211_assoc,
  1680. .deauth = ieee80211_deauth,
  1681. .disassoc = ieee80211_disassoc,
  1682. .join_ibss = ieee80211_join_ibss,
  1683. .leave_ibss = ieee80211_leave_ibss,
  1684. .set_wiphy_params = ieee80211_set_wiphy_params,
  1685. .set_tx_power = ieee80211_set_tx_power,
  1686. .get_tx_power = ieee80211_get_tx_power,
  1687. .set_wds_peer = ieee80211_set_wds_peer,
  1688. .rfkill_poll = ieee80211_rfkill_poll,
  1689. CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
  1690. .set_power_mgmt = ieee80211_set_power_mgmt,
  1691. .set_bitrate_mask = ieee80211_set_bitrate_mask,
  1692. .remain_on_channel = ieee80211_remain_on_channel,
  1693. .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
  1694. .mgmt_tx = ieee80211_mgmt_tx,
  1695. .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
  1696. .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
  1697. .mgmt_frame_register = ieee80211_mgmt_frame_register,
  1698. .set_antenna = ieee80211_set_antenna,
  1699. .get_antenna = ieee80211_get_antenna,
  1700. .set_ringparam = ieee80211_set_ringparam,
  1701. .get_ringparam = ieee80211_get_ringparam,
  1702. };