iwl-sta.c 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
  4. *
  5. * Portions of this file are derived from the ipw3945 project, as well
  6. * as portions of the ieee80211 subsystem header files.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of version 2 of the GNU General Public License as
  10. * published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful, but WITHOUT
  13. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  15. * more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along with
  18. * this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  20. *
  21. * The full GNU General Public License is included in this distribution in the
  22. * file called LICENSE.
  23. *
  24. * Contact Information:
  25. * Intel Linux Wireless <ilw@linux.intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *
  28. *****************************************************************************/
  29. #include <net/mac80211.h>
  30. #include <linux/etherdevice.h>
  31. #include <linux/sched.h>
  32. #include "iwl-dev.h"
  33. #include "iwl-core.h"
  34. #include "iwl-sta.h"
  35. u8 iwl_find_station(struct iwl_priv *priv, const u8 *addr)
  36. {
  37. int i;
  38. int start = 0;
  39. int ret = IWL_INVALID_STATION;
  40. unsigned long flags;
  41. if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) ||
  42. (priv->iw_mode == NL80211_IFTYPE_AP))
  43. start = IWL_STA_ID;
  44. if (is_broadcast_ether_addr(addr))
  45. return priv->hw_params.bcast_sta_id;
  46. spin_lock_irqsave(&priv->sta_lock, flags);
  47. for (i = start; i < priv->hw_params.max_stations; i++)
  48. if (priv->stations[i].used &&
  49. (!compare_ether_addr(priv->stations[i].sta.sta.addr,
  50. addr))) {
  51. ret = i;
  52. goto out;
  53. }
  54. IWL_DEBUG_ASSOC_LIMIT(priv, "can not find STA %pM total %d\n",
  55. addr, priv->num_stations);
  56. out:
  57. /*
  58. * It may be possible that more commands interacting with stations
  59. * arrive before we completed processing the adding of
  60. * station
  61. */
  62. if (ret != IWL_INVALID_STATION &&
  63. (!(priv->stations[ret].used & IWL_STA_UCODE_ACTIVE) ||
  64. ((priv->stations[ret].used & IWL_STA_UCODE_ACTIVE) &&
  65. (priv->stations[ret].used & IWL_STA_UCODE_INPROGRESS)))) {
  66. IWL_ERR(priv, "Requested station info for sta %d before ready.\n",
  67. ret);
  68. ret = IWL_INVALID_STATION;
  69. }
  70. spin_unlock_irqrestore(&priv->sta_lock, flags);
  71. return ret;
  72. }
  73. EXPORT_SYMBOL(iwl_find_station);
  74. int iwl_get_ra_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
  75. {
  76. if (priv->iw_mode == NL80211_IFTYPE_STATION) {
  77. return IWL_AP_ID;
  78. } else {
  79. u8 *da = ieee80211_get_DA(hdr);
  80. return iwl_find_station(priv, da);
  81. }
  82. }
  83. EXPORT_SYMBOL(iwl_get_ra_sta_id);
  84. /* priv->sta_lock must be held */
  85. static void iwl_sta_ucode_activate(struct iwl_priv *priv, u8 sta_id)
  86. {
  87. if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE))
  88. IWL_ERR(priv, "ACTIVATE a non DRIVER active station id %u addr %pM\n",
  89. sta_id, priv->stations[sta_id].sta.sta.addr);
  90. if (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) {
  91. IWL_DEBUG_ASSOC(priv,
  92. "STA id %u addr %pM already present in uCode (according to driver)\n",
  93. sta_id, priv->stations[sta_id].sta.sta.addr);
  94. } else {
  95. priv->stations[sta_id].used |= IWL_STA_UCODE_ACTIVE;
  96. IWL_DEBUG_ASSOC(priv, "Added STA id %u addr %pM to uCode\n",
  97. sta_id, priv->stations[sta_id].sta.sta.addr);
  98. }
  99. }
  100. static void iwl_process_add_sta_resp(struct iwl_priv *priv,
  101. struct iwl_addsta_cmd *addsta,
  102. struct iwl_rx_packet *pkt,
  103. bool sync)
  104. {
  105. u8 sta_id = addsta->sta.sta_id;
  106. unsigned long flags;
  107. if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
  108. IWL_ERR(priv, "Bad return from REPLY_ADD_STA (0x%08X)\n",
  109. pkt->hdr.flags);
  110. return;
  111. }
  112. IWL_DEBUG_INFO(priv, "Processing response for adding station %u\n",
  113. sta_id);
  114. spin_lock_irqsave(&priv->sta_lock, flags);
  115. switch (pkt->u.add_sta.status) {
  116. case ADD_STA_SUCCESS_MSK:
  117. IWL_DEBUG_INFO(priv, "REPLY_ADD_STA PASSED\n");
  118. iwl_sta_ucode_activate(priv, sta_id);
  119. break;
  120. case ADD_STA_NO_ROOM_IN_TABLE:
  121. IWL_ERR(priv, "Adding station %d failed, no room in table.\n",
  122. sta_id);
  123. break;
  124. case ADD_STA_NO_BLOCK_ACK_RESOURCE:
  125. IWL_ERR(priv, "Adding station %d failed, no block ack resource.\n",
  126. sta_id);
  127. break;
  128. case ADD_STA_MODIFY_NON_EXIST_STA:
  129. IWL_ERR(priv, "Attempting to modify non-existing station %d\n",
  130. sta_id);
  131. break;
  132. default:
  133. IWL_DEBUG_ASSOC(priv, "Received REPLY_ADD_STA:(0x%08X)\n",
  134. pkt->u.add_sta.status);
  135. break;
  136. }
  137. IWL_DEBUG_INFO(priv, "%s station id %u addr %pM\n",
  138. priv->stations[sta_id].sta.mode ==
  139. STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
  140. sta_id, priv->stations[sta_id].sta.sta.addr);
  141. /*
  142. * XXX: The MAC address in the command buffer is often changed from
  143. * the original sent to the device. That is, the MAC address
  144. * written to the command buffer often is not the same MAC adress
  145. * read from the command buffer when the command returns. This
  146. * issue has not yet been resolved and this debugging is left to
  147. * observe the problem.
  148. */
  149. IWL_DEBUG_INFO(priv, "%s station according to cmd buffer %pM\n",
  150. priv->stations[sta_id].sta.mode ==
  151. STA_CONTROL_MODIFY_MSK ? "Modified" : "Added",
  152. addsta->sta.addr);
  153. spin_unlock_irqrestore(&priv->sta_lock, flags);
  154. }
  155. static void iwl_add_sta_callback(struct iwl_priv *priv,
  156. struct iwl_device_cmd *cmd,
  157. struct iwl_rx_packet *pkt)
  158. {
  159. struct iwl_addsta_cmd *addsta =
  160. (struct iwl_addsta_cmd *)cmd->cmd.payload;
  161. iwl_process_add_sta_resp(priv, addsta, pkt, false);
  162. }
  163. int iwl_send_add_sta(struct iwl_priv *priv,
  164. struct iwl_addsta_cmd *sta, u8 flags)
  165. {
  166. struct iwl_rx_packet *pkt = NULL;
  167. int ret = 0;
  168. u8 data[sizeof(*sta)];
  169. struct iwl_host_cmd cmd = {
  170. .id = REPLY_ADD_STA,
  171. .flags = flags,
  172. .data = data,
  173. };
  174. u8 sta_id = sta->sta.sta_id;
  175. IWL_DEBUG_INFO(priv, "Adding sta %u (%pM) %ssynchronously\n",
  176. sta_id, sta->sta.addr, flags & CMD_ASYNC ? "a" : "");
  177. if (flags & CMD_ASYNC)
  178. cmd.callback = iwl_add_sta_callback;
  179. else
  180. cmd.flags |= CMD_WANT_SKB;
  181. cmd.len = priv->cfg->ops->utils->build_addsta_hcmd(sta, data);
  182. ret = iwl_send_cmd(priv, &cmd);
  183. if (ret || (flags & CMD_ASYNC))
  184. return ret;
  185. if (ret == 0) {
  186. pkt = (struct iwl_rx_packet *)cmd.reply_page;
  187. iwl_process_add_sta_resp(priv, sta, pkt, true);
  188. }
  189. iwl_free_pages(priv, cmd.reply_page);
  190. return ret;
  191. }
  192. EXPORT_SYMBOL(iwl_send_add_sta);
  193. static void iwl_set_ht_add_station(struct iwl_priv *priv, u8 index,
  194. struct ieee80211_sta_ht_cap *sta_ht_inf)
  195. {
  196. __le32 sta_flags;
  197. u8 mimo_ps_mode;
  198. if (!sta_ht_inf || !sta_ht_inf->ht_supported)
  199. goto done;
  200. mimo_ps_mode = (sta_ht_inf->cap & IEEE80211_HT_CAP_SM_PS) >> 2;
  201. IWL_DEBUG_ASSOC(priv, "spatial multiplexing power save mode: %s\n",
  202. (mimo_ps_mode == WLAN_HT_CAP_SM_PS_STATIC) ?
  203. "static" :
  204. (mimo_ps_mode == WLAN_HT_CAP_SM_PS_DYNAMIC) ?
  205. "dynamic" : "disabled");
  206. sta_flags = priv->stations[index].sta.station_flags;
  207. sta_flags &= ~(STA_FLG_RTS_MIMO_PROT_MSK | STA_FLG_MIMO_DIS_MSK);
  208. switch (mimo_ps_mode) {
  209. case WLAN_HT_CAP_SM_PS_STATIC:
  210. sta_flags |= STA_FLG_MIMO_DIS_MSK;
  211. break;
  212. case WLAN_HT_CAP_SM_PS_DYNAMIC:
  213. sta_flags |= STA_FLG_RTS_MIMO_PROT_MSK;
  214. break;
  215. case WLAN_HT_CAP_SM_PS_DISABLED:
  216. break;
  217. default:
  218. IWL_WARN(priv, "Invalid MIMO PS mode %d\n", mimo_ps_mode);
  219. break;
  220. }
  221. sta_flags |= cpu_to_le32(
  222. (u32)sta_ht_inf->ampdu_factor << STA_FLG_MAX_AGG_SIZE_POS);
  223. sta_flags |= cpu_to_le32(
  224. (u32)sta_ht_inf->ampdu_density << STA_FLG_AGG_MPDU_DENSITY_POS);
  225. if (iwl_is_ht40_tx_allowed(priv, sta_ht_inf))
  226. sta_flags |= STA_FLG_HT40_EN_MSK;
  227. else
  228. sta_flags &= ~STA_FLG_HT40_EN_MSK;
  229. priv->stations[index].sta.station_flags = sta_flags;
  230. done:
  231. return;
  232. }
  233. /**
  234. * iwl_prep_station - Prepare station information for addition
  235. *
  236. * should be called with sta_lock held
  237. */
  238. static u8 iwl_prep_station(struct iwl_priv *priv, const u8 *addr,
  239. bool is_ap,
  240. struct ieee80211_sta_ht_cap *ht_info)
  241. {
  242. struct iwl_station_entry *station;
  243. int i;
  244. u8 sta_id = IWL_INVALID_STATION;
  245. u16 rate;
  246. if (is_ap)
  247. sta_id = IWL_AP_ID;
  248. else if (is_broadcast_ether_addr(addr))
  249. sta_id = priv->hw_params.bcast_sta_id;
  250. else
  251. for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++) {
  252. if (!compare_ether_addr(priv->stations[i].sta.sta.addr,
  253. addr)) {
  254. sta_id = i;
  255. break;
  256. }
  257. if (!priv->stations[i].used &&
  258. sta_id == IWL_INVALID_STATION)
  259. sta_id = i;
  260. }
  261. /*
  262. * These two conditions have the same outcome, but keep them
  263. * separate
  264. */
  265. if (unlikely(sta_id == IWL_INVALID_STATION))
  266. return sta_id;
  267. /*
  268. * uCode is not able to deal with multiple requests to add a
  269. * station. Keep track if one is in progress so that we do not send
  270. * another.
  271. */
  272. if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
  273. IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
  274. sta_id);
  275. return sta_id;
  276. }
  277. if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
  278. (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE) &&
  279. !compare_ether_addr(priv->stations[sta_id].sta.sta.addr, addr)) {
  280. IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
  281. sta_id, addr);
  282. return sta_id;
  283. }
  284. station = &priv->stations[sta_id];
  285. station->used = IWL_STA_DRIVER_ACTIVE;
  286. IWL_DEBUG_ASSOC(priv, "Add STA to driver ID %d: %pM\n",
  287. sta_id, addr);
  288. priv->num_stations++;
  289. /* Set up the REPLY_ADD_STA command to send to device */
  290. memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd));
  291. memcpy(station->sta.sta.addr, addr, ETH_ALEN);
  292. station->sta.mode = 0;
  293. station->sta.sta.sta_id = sta_id;
  294. station->sta.station_flags = 0;
  295. /* BCAST station and IBSS stations do not work in HT mode */
  296. if (sta_id != priv->hw_params.bcast_sta_id &&
  297. priv->iw_mode != NL80211_IFTYPE_ADHOC)
  298. iwl_set_ht_add_station(priv, sta_id, ht_info);
  299. /* 3945 only */
  300. rate = (priv->band == IEEE80211_BAND_5GHZ) ?
  301. IWL_RATE_6M_PLCP : IWL_RATE_1M_PLCP;
  302. /* Turn on both antennas for the station... */
  303. station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK);
  304. return sta_id;
  305. }
  306. #define STA_WAIT_TIMEOUT (HZ/2)
  307. /**
  308. * iwl_add_station_common -
  309. */
  310. int iwl_add_station_common(struct iwl_priv *priv, const u8 *addr,
  311. bool is_ap,
  312. struct ieee80211_sta_ht_cap *ht_info,
  313. u8 *sta_id_r)
  314. {
  315. struct iwl_station_entry *station;
  316. unsigned long flags_spin;
  317. int ret = 0;
  318. u8 sta_id;
  319. *sta_id_r = 0;
  320. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  321. sta_id = iwl_prep_station(priv, addr, is_ap, ht_info);
  322. if (sta_id == IWL_INVALID_STATION) {
  323. IWL_ERR(priv, "Unable to prepare station %pM for addition\n",
  324. addr);
  325. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  326. return -EINVAL;
  327. }
  328. /*
  329. * uCode is not able to deal with multiple requests to add a
  330. * station. Keep track if one is in progress so that we do not send
  331. * another.
  332. */
  333. if (priv->stations[sta_id].used & IWL_STA_UCODE_INPROGRESS) {
  334. IWL_DEBUG_INFO(priv, "STA %d already in process of being added.\n",
  335. sta_id);
  336. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  337. return -EEXIST;
  338. }
  339. if ((priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE) &&
  340. (priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
  341. IWL_DEBUG_ASSOC(priv, "STA %d (%pM) already added, not adding again.\n",
  342. sta_id, addr);
  343. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  344. return -EEXIST;
  345. }
  346. priv->stations[sta_id].used |= IWL_STA_UCODE_INPROGRESS;
  347. station = &priv->stations[sta_id];
  348. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  349. /* Add station to device's station table */
  350. ret = iwl_send_add_sta(priv, &station->sta, CMD_SYNC);
  351. if (ret) {
  352. IWL_ERR(priv, "Adding station %pM failed.\n", station->sta.sta.addr);
  353. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  354. priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
  355. priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
  356. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  357. }
  358. *sta_id_r = sta_id;
  359. return ret;
  360. }
  361. EXPORT_SYMBOL(iwl_add_station_common);
  362. static void iwl_sta_init_lq(struct iwl_priv *priv, const u8 *addr, bool is_ap)
  363. {
  364. int i, r;
  365. struct iwl_link_quality_cmd link_cmd = {
  366. .reserved1 = 0,
  367. };
  368. u32 rate_flags;
  369. /* Set up the rate scaling to start at selected rate, fall back
  370. * all the way down to 1M in IEEE order, and then spin on 1M */
  371. if (is_ap)
  372. r = IWL_RATE_54M_INDEX;
  373. else if (priv->band == IEEE80211_BAND_5GHZ)
  374. r = IWL_RATE_6M_INDEX;
  375. else
  376. r = IWL_RATE_1M_INDEX;
  377. for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
  378. rate_flags = 0;
  379. if (r >= IWL_FIRST_CCK_RATE && r <= IWL_LAST_CCK_RATE)
  380. rate_flags |= RATE_MCS_CCK_MSK;
  381. rate_flags |= first_antenna(priv->hw_params.valid_tx_ant) <<
  382. RATE_MCS_ANT_POS;
  383. link_cmd.rs_table[i].rate_n_flags =
  384. iwl_hw_set_rate_n_flags(iwl_rates[r].plcp, rate_flags);
  385. r = iwl_get_prev_ieee_rate(r);
  386. }
  387. link_cmd.general_params.single_stream_ant_msk =
  388. first_antenna(priv->hw_params.valid_tx_ant);
  389. link_cmd.general_params.dual_stream_ant_msk = 3;
  390. link_cmd.agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
  391. link_cmd.agg_params.agg_time_limit =
  392. cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
  393. /* Update the rate scaling for control frame Tx to AP */
  394. link_cmd.sta_id = is_ap ? IWL_AP_ID : priv->hw_params.bcast_sta_id;
  395. iwl_send_cmd_pdu(priv, REPLY_TX_LINK_QUALITY_CMD,
  396. sizeof(link_cmd), &link_cmd);
  397. }
  398. /*
  399. * iwl_add_local_stations - Add stations not requested by mac80211
  400. *
  401. * This will be either the broadcast station or the bssid station needed by
  402. * ad-hoc.
  403. *
  404. * Function sleeps.
  405. */
  406. int iwl_add_local_station(struct iwl_priv *priv, const u8 *addr, bool init_rs)
  407. {
  408. int ret;
  409. u8 sta_id;
  410. ret = iwl_add_station_common(priv, addr, 0, NULL, &sta_id);
  411. if (ret) {
  412. IWL_ERR(priv, "Unable to add station %pM\n", addr);
  413. return ret;
  414. }
  415. if (init_rs)
  416. /* Set up default rate scaling table in device's station table */
  417. iwl_sta_init_lq(priv, addr, false);
  418. return 0;
  419. }
  420. EXPORT_SYMBOL(iwl_add_local_station);
  421. /**
  422. * iwl_sta_ucode_deactivate - deactivate ucode status for a station
  423. *
  424. * priv->sta_lock must be held
  425. */
  426. static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id)
  427. {
  428. /* Ucode must be active and driver must be non active */
  429. if (priv->stations[sta_id].used != IWL_STA_UCODE_ACTIVE)
  430. IWL_ERR(priv, "removed non active STA %u\n", sta_id);
  431. priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
  432. memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
  433. IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id);
  434. }
  435. static int iwl_send_remove_station(struct iwl_priv *priv,
  436. struct iwl_station_entry *station)
  437. {
  438. struct iwl_rx_packet *pkt;
  439. int ret;
  440. unsigned long flags_spin;
  441. struct iwl_rem_sta_cmd rm_sta_cmd;
  442. struct iwl_host_cmd cmd = {
  443. .id = REPLY_REMOVE_STA,
  444. .len = sizeof(struct iwl_rem_sta_cmd),
  445. .flags = CMD_SYNC,
  446. .data = &rm_sta_cmd,
  447. };
  448. memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
  449. rm_sta_cmd.num_sta = 1;
  450. memcpy(&rm_sta_cmd.addr, &station->sta.sta.addr , ETH_ALEN);
  451. cmd.flags |= CMD_WANT_SKB;
  452. ret = iwl_send_cmd(priv, &cmd);
  453. if (ret)
  454. return ret;
  455. pkt = (struct iwl_rx_packet *)cmd.reply_page;
  456. if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
  457. IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n",
  458. pkt->hdr.flags);
  459. ret = -EIO;
  460. }
  461. if (!ret) {
  462. switch (pkt->u.rem_sta.status) {
  463. case REM_STA_SUCCESS_MSK:
  464. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  465. iwl_sta_ucode_deactivate(priv, station->sta.sta.sta_id);
  466. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  467. IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n");
  468. break;
  469. default:
  470. ret = -EIO;
  471. IWL_ERR(priv, "REPLY_REMOVE_STA failed\n");
  472. break;
  473. }
  474. }
  475. iwl_free_pages(priv, cmd.reply_page);
  476. return ret;
  477. }
  478. /**
  479. * iwl_remove_station - Remove driver's knowledge of station.
  480. */
  481. static int iwl_remove_station(struct iwl_priv *priv, struct ieee80211_sta *sta)
  482. {
  483. int sta_id = IWL_INVALID_STATION;
  484. int i, ret = -EINVAL;
  485. unsigned long flags;
  486. bool is_ap = priv->iw_mode == NL80211_IFTYPE_STATION;
  487. struct iwl_station_entry *station;
  488. if (!iwl_is_ready(priv)) {
  489. IWL_DEBUG_INFO(priv,
  490. "Unable to remove station %pM, device not ready.\n",
  491. sta->addr);
  492. /*
  493. * It is typical for stations to be removed when we are
  494. * going down. Return success since device will be down
  495. * soon anyway
  496. */
  497. return 0;
  498. }
  499. spin_lock_irqsave(&priv->sta_lock, flags);
  500. if (is_ap)
  501. sta_id = IWL_AP_ID;
  502. else
  503. for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
  504. if (priv->stations[i].used &&
  505. !compare_ether_addr(priv->stations[i].sta.sta.addr,
  506. sta->addr)) {
  507. sta_id = i;
  508. break;
  509. }
  510. if (unlikely(sta_id == IWL_INVALID_STATION))
  511. goto out;
  512. IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n",
  513. sta_id, sta->addr);
  514. if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
  515. IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n",
  516. sta->addr);
  517. goto out;
  518. }
  519. if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
  520. IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n",
  521. sta->addr);
  522. goto out;
  523. }
  524. priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
  525. priv->num_stations--;
  526. BUG_ON(priv->num_stations < 0);
  527. station = &priv->stations[sta_id];
  528. spin_unlock_irqrestore(&priv->sta_lock, flags);
  529. ret = iwl_send_remove_station(priv, station);
  530. return ret;
  531. out:
  532. spin_unlock_irqrestore(&priv->sta_lock, flags);
  533. return ret;
  534. }
  535. /**
  536. * iwl_clear_ucode_stations() - clear entire station table driver and/or ucode
  537. * @priv:
  538. * @force: If set then the uCode station table needs to be cleared here. If
  539. * not set then the uCode station table has already been cleared,
  540. * for example after sending it a RXON command without ASSOC bit
  541. * set, and we just need to change driver state here.
  542. */
  543. void iwl_clear_ucode_stations(struct iwl_priv *priv, bool force)
  544. {
  545. int i;
  546. unsigned long flags_spin;
  547. bool cleared = false;
  548. IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver%s\n",
  549. force ? " and ucode" : "");
  550. if (force) {
  551. if (!iwl_is_ready(priv)) {
  552. /*
  553. * If device is not ready at this point the station
  554. * table is likely already empty (uCode not ready
  555. * to receive station requests) or will soon be
  556. * due to interface going down.
  557. */
  558. IWL_DEBUG_INFO(priv, "Unable to remove stations from device - device not ready\n");
  559. } else {
  560. iwl_send_cmd_pdu_async(priv, REPLY_REMOVE_ALL_STA, 0, NULL, NULL);
  561. }
  562. }
  563. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  564. if (force) {
  565. IWL_DEBUG_INFO(priv, "Clearing all station information in driver\n");
  566. priv->num_stations = 0;
  567. memset(priv->stations, 0, sizeof(priv->stations));
  568. } else {
  569. for (i = 0; i < priv->hw_params.max_stations; i++) {
  570. if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) {
  571. IWL_DEBUG_INFO(priv, "Clearing ucode active for station %d\n", i);
  572. priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
  573. cleared = true;
  574. }
  575. }
  576. }
  577. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  578. if (!cleared)
  579. IWL_DEBUG_INFO(priv, "No active stations found to be cleared\n");
  580. }
  581. EXPORT_SYMBOL(iwl_clear_ucode_stations);
  582. /**
  583. * iwl_restore_stations() - Restore driver known stations to device
  584. *
  585. * All stations considered active by driver, but not present in ucode, is
  586. * restored.
  587. *
  588. * Function sleeps.
  589. */
  590. void iwl_restore_stations(struct iwl_priv *priv)
  591. {
  592. struct iwl_station_entry *station;
  593. unsigned long flags_spin;
  594. int i;
  595. bool found = false;
  596. int ret;
  597. if (!iwl_is_ready(priv)) {
  598. IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n");
  599. return;
  600. }
  601. IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n");
  602. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  603. for (i = 0; i < priv->hw_params.max_stations; i++) {
  604. if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) &&
  605. !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) {
  606. IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n",
  607. priv->stations[i].sta.sta.addr);
  608. priv->stations[i].sta.mode = 0;
  609. priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS;
  610. found = true;
  611. }
  612. }
  613. for (i = 0; i < priv->hw_params.max_stations; i++) {
  614. if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) {
  615. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  616. station = &priv->stations[i];
  617. ret = iwl_send_add_sta(priv, &priv->stations[i].sta, CMD_SYNC);
  618. if (ret) {
  619. IWL_ERR(priv, "Adding station %pM failed.\n",
  620. station->sta.sta.addr);
  621. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  622. priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE;
  623. priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
  624. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  625. }
  626. /*
  627. * Rate scaling has already been initialized, send
  628. * current LQ command
  629. */
  630. if (station->lq)
  631. iwl_send_lq_cmd(priv, station->lq, CMD_SYNC, true);
  632. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  633. priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
  634. }
  635. }
  636. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  637. if (!found)
  638. IWL_DEBUG_INFO(priv, "Restoring all known stations .... no stations to be restored.\n");
  639. else
  640. IWL_DEBUG_INFO(priv, "Restoring all known stations .... complete.\n");
  641. }
  642. EXPORT_SYMBOL(iwl_restore_stations);
  643. int iwl_get_free_ucode_key_index(struct iwl_priv *priv)
  644. {
  645. int i;
  646. for (i = 0; i < STA_KEY_MAX_NUM; i++)
  647. if (!test_and_set_bit(i, &priv->ucode_key_table))
  648. return i;
  649. return WEP_INVALID_OFFSET;
  650. }
  651. EXPORT_SYMBOL(iwl_get_free_ucode_key_index);
  652. static int iwl_send_static_wepkey_cmd(struct iwl_priv *priv, u8 send_if_empty)
  653. {
  654. int i, not_empty = 0;
  655. u8 buff[sizeof(struct iwl_wep_cmd) +
  656. sizeof(struct iwl_wep_key) * WEP_KEYS_MAX];
  657. struct iwl_wep_cmd *wep_cmd = (struct iwl_wep_cmd *)buff;
  658. size_t cmd_size = sizeof(struct iwl_wep_cmd);
  659. struct iwl_host_cmd cmd = {
  660. .id = REPLY_WEPKEY,
  661. .data = wep_cmd,
  662. .flags = CMD_SYNC,
  663. };
  664. might_sleep();
  665. memset(wep_cmd, 0, cmd_size +
  666. (sizeof(struct iwl_wep_key) * WEP_KEYS_MAX));
  667. for (i = 0; i < WEP_KEYS_MAX ; i++) {
  668. wep_cmd->key[i].key_index = i;
  669. if (priv->wep_keys[i].key_size) {
  670. wep_cmd->key[i].key_offset = i;
  671. not_empty = 1;
  672. } else {
  673. wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
  674. }
  675. wep_cmd->key[i].key_size = priv->wep_keys[i].key_size;
  676. memcpy(&wep_cmd->key[i].key[3], priv->wep_keys[i].key,
  677. priv->wep_keys[i].key_size);
  678. }
  679. wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
  680. wep_cmd->num_keys = WEP_KEYS_MAX;
  681. cmd_size += sizeof(struct iwl_wep_key) * WEP_KEYS_MAX;
  682. cmd.len = cmd_size;
  683. if (not_empty || send_if_empty)
  684. return iwl_send_cmd(priv, &cmd);
  685. else
  686. return 0;
  687. }
  688. int iwl_restore_default_wep_keys(struct iwl_priv *priv)
  689. {
  690. WARN_ON(!mutex_is_locked(&priv->mutex));
  691. return iwl_send_static_wepkey_cmd(priv, 0);
  692. }
  693. EXPORT_SYMBOL(iwl_restore_default_wep_keys);
  694. int iwl_remove_default_wep_key(struct iwl_priv *priv,
  695. struct ieee80211_key_conf *keyconf)
  696. {
  697. int ret;
  698. WARN_ON(!mutex_is_locked(&priv->mutex));
  699. IWL_DEBUG_WEP(priv, "Removing default WEP key: idx=%d\n",
  700. keyconf->keyidx);
  701. memset(&priv->wep_keys[keyconf->keyidx], 0, sizeof(priv->wep_keys[0]));
  702. if (iwl_is_rfkill(priv)) {
  703. IWL_DEBUG_WEP(priv, "Not sending REPLY_WEPKEY command due to RFKILL.\n");
  704. /* but keys in device are clear anyway so return success */
  705. return 0;
  706. }
  707. ret = iwl_send_static_wepkey_cmd(priv, 1);
  708. IWL_DEBUG_WEP(priv, "Remove default WEP key: idx=%d ret=%d\n",
  709. keyconf->keyidx, ret);
  710. return ret;
  711. }
  712. EXPORT_SYMBOL(iwl_remove_default_wep_key);
  713. int iwl_set_default_wep_key(struct iwl_priv *priv,
  714. struct ieee80211_key_conf *keyconf)
  715. {
  716. int ret;
  717. WARN_ON(!mutex_is_locked(&priv->mutex));
  718. if (keyconf->keylen != WEP_KEY_LEN_128 &&
  719. keyconf->keylen != WEP_KEY_LEN_64) {
  720. IWL_DEBUG_WEP(priv, "Bad WEP key length %d\n", keyconf->keylen);
  721. return -EINVAL;
  722. }
  723. keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
  724. keyconf->hw_key_idx = HW_KEY_DEFAULT;
  725. priv->stations[IWL_AP_ID].keyinfo.alg = ALG_WEP;
  726. priv->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
  727. memcpy(&priv->wep_keys[keyconf->keyidx].key, &keyconf->key,
  728. keyconf->keylen);
  729. ret = iwl_send_static_wepkey_cmd(priv, 0);
  730. IWL_DEBUG_WEP(priv, "Set default WEP key: len=%d idx=%d ret=%d\n",
  731. keyconf->keylen, keyconf->keyidx, ret);
  732. return ret;
  733. }
  734. EXPORT_SYMBOL(iwl_set_default_wep_key);
  735. static int iwl_set_wep_dynamic_key_info(struct iwl_priv *priv,
  736. struct ieee80211_key_conf *keyconf,
  737. u8 sta_id)
  738. {
  739. unsigned long flags;
  740. __le16 key_flags = 0;
  741. int ret;
  742. keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
  743. key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
  744. key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
  745. key_flags &= ~STA_KEY_FLG_INVALID;
  746. if (keyconf->keylen == WEP_KEY_LEN_128)
  747. key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
  748. if (sta_id == priv->hw_params.bcast_sta_id)
  749. key_flags |= STA_KEY_MULTICAST_MSK;
  750. spin_lock_irqsave(&priv->sta_lock, flags);
  751. priv->stations[sta_id].keyinfo.alg = keyconf->alg;
  752. priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
  753. priv->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
  754. memcpy(priv->stations[sta_id].keyinfo.key,
  755. keyconf->key, keyconf->keylen);
  756. memcpy(&priv->stations[sta_id].sta.key.key[3],
  757. keyconf->key, keyconf->keylen);
  758. if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
  759. == STA_KEY_FLG_NO_ENC)
  760. priv->stations[sta_id].sta.key.key_offset =
  761. iwl_get_free_ucode_key_index(priv);
  762. /* else, we are overriding an existing key => no need to allocated room
  763. * in uCode. */
  764. WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
  765. "no space for a new key");
  766. priv->stations[sta_id].sta.key.key_flags = key_flags;
  767. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  768. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  769. ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  770. spin_unlock_irqrestore(&priv->sta_lock, flags);
  771. return ret;
  772. }
  773. static int iwl_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
  774. struct ieee80211_key_conf *keyconf,
  775. u8 sta_id)
  776. {
  777. unsigned long flags;
  778. __le16 key_flags = 0;
  779. int ret;
  780. key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
  781. key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
  782. key_flags &= ~STA_KEY_FLG_INVALID;
  783. if (sta_id == priv->hw_params.bcast_sta_id)
  784. key_flags |= STA_KEY_MULTICAST_MSK;
  785. keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  786. spin_lock_irqsave(&priv->sta_lock, flags);
  787. priv->stations[sta_id].keyinfo.alg = keyconf->alg;
  788. priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
  789. memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
  790. keyconf->keylen);
  791. memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
  792. keyconf->keylen);
  793. if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
  794. == STA_KEY_FLG_NO_ENC)
  795. priv->stations[sta_id].sta.key.key_offset =
  796. iwl_get_free_ucode_key_index(priv);
  797. /* else, we are overriding an existing key => no need to allocated room
  798. * in uCode. */
  799. WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
  800. "no space for a new key");
  801. priv->stations[sta_id].sta.key.key_flags = key_flags;
  802. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  803. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  804. ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  805. spin_unlock_irqrestore(&priv->sta_lock, flags);
  806. return ret;
  807. }
  808. static int iwl_set_tkip_dynamic_key_info(struct iwl_priv *priv,
  809. struct ieee80211_key_conf *keyconf,
  810. u8 sta_id)
  811. {
  812. unsigned long flags;
  813. int ret = 0;
  814. __le16 key_flags = 0;
  815. key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
  816. key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
  817. key_flags &= ~STA_KEY_FLG_INVALID;
  818. if (sta_id == priv->hw_params.bcast_sta_id)
  819. key_flags |= STA_KEY_MULTICAST_MSK;
  820. keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  821. keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
  822. spin_lock_irqsave(&priv->sta_lock, flags);
  823. priv->stations[sta_id].keyinfo.alg = keyconf->alg;
  824. priv->stations[sta_id].keyinfo.keylen = 16;
  825. if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
  826. == STA_KEY_FLG_NO_ENC)
  827. priv->stations[sta_id].sta.key.key_offset =
  828. iwl_get_free_ucode_key_index(priv);
  829. /* else, we are overriding an existing key => no need to allocated room
  830. * in uCode. */
  831. WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
  832. "no space for a new key");
  833. priv->stations[sta_id].sta.key.key_flags = key_flags;
  834. /* This copy is acutally not needed: we get the key with each TX */
  835. memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, 16);
  836. memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, 16);
  837. spin_unlock_irqrestore(&priv->sta_lock, flags);
  838. return ret;
  839. }
  840. void iwl_update_tkip_key(struct iwl_priv *priv,
  841. struct ieee80211_key_conf *keyconf,
  842. const u8 *addr, u32 iv32, u16 *phase1key)
  843. {
  844. u8 sta_id = IWL_INVALID_STATION;
  845. unsigned long flags;
  846. int i;
  847. sta_id = iwl_find_station(priv, addr);
  848. if (sta_id == IWL_INVALID_STATION) {
  849. IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
  850. addr);
  851. return;
  852. }
  853. if (iwl_scan_cancel(priv)) {
  854. /* cancel scan failed, just live w/ bad key and rely
  855. briefly on SW decryption */
  856. return;
  857. }
  858. spin_lock_irqsave(&priv->sta_lock, flags);
  859. priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
  860. for (i = 0; i < 5; i++)
  861. priv->stations[sta_id].sta.key.tkip_rx_ttak[i] =
  862. cpu_to_le16(phase1key[i]);
  863. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  864. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  865. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  866. spin_unlock_irqrestore(&priv->sta_lock, flags);
  867. }
  868. EXPORT_SYMBOL(iwl_update_tkip_key);
  869. int iwl_remove_dynamic_key(struct iwl_priv *priv,
  870. struct ieee80211_key_conf *keyconf,
  871. u8 sta_id)
  872. {
  873. unsigned long flags;
  874. int ret = 0;
  875. u16 key_flags;
  876. u8 keyidx;
  877. priv->key_mapping_key--;
  878. spin_lock_irqsave(&priv->sta_lock, flags);
  879. key_flags = le16_to_cpu(priv->stations[sta_id].sta.key.key_flags);
  880. keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
  881. IWL_DEBUG_WEP(priv, "Remove dynamic key: idx=%d sta=%d\n",
  882. keyconf->keyidx, sta_id);
  883. if (keyconf->keyidx != keyidx) {
  884. /* We need to remove a key with index different that the one
  885. * in the uCode. This means that the key we need to remove has
  886. * been replaced by another one with different index.
  887. * Don't do anything and return ok
  888. */
  889. spin_unlock_irqrestore(&priv->sta_lock, flags);
  890. return 0;
  891. }
  892. if (priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) {
  893. IWL_WARN(priv, "Removing wrong key %d 0x%x\n",
  894. keyconf->keyidx, key_flags);
  895. spin_unlock_irqrestore(&priv->sta_lock, flags);
  896. return 0;
  897. }
  898. if (!test_and_clear_bit(priv->stations[sta_id].sta.key.key_offset,
  899. &priv->ucode_key_table))
  900. IWL_ERR(priv, "index %d not used in uCode key table.\n",
  901. priv->stations[sta_id].sta.key.key_offset);
  902. memset(&priv->stations[sta_id].keyinfo, 0,
  903. sizeof(struct iwl_hw_key));
  904. memset(&priv->stations[sta_id].sta.key, 0,
  905. sizeof(struct iwl4965_keyinfo));
  906. priv->stations[sta_id].sta.key.key_flags =
  907. STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
  908. priv->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
  909. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  910. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  911. if (iwl_is_rfkill(priv)) {
  912. IWL_DEBUG_WEP(priv, "Not sending REPLY_ADD_STA command because RFKILL enabled.\n");
  913. spin_unlock_irqrestore(&priv->sta_lock, flags);
  914. return 0;
  915. }
  916. ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  917. spin_unlock_irqrestore(&priv->sta_lock, flags);
  918. return ret;
  919. }
  920. EXPORT_SYMBOL(iwl_remove_dynamic_key);
  921. int iwl_set_dynamic_key(struct iwl_priv *priv,
  922. struct ieee80211_key_conf *keyconf, u8 sta_id)
  923. {
  924. int ret;
  925. priv->key_mapping_key++;
  926. keyconf->hw_key_idx = HW_KEY_DYNAMIC;
  927. switch (keyconf->alg) {
  928. case ALG_CCMP:
  929. ret = iwl_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
  930. break;
  931. case ALG_TKIP:
  932. ret = iwl_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
  933. break;
  934. case ALG_WEP:
  935. ret = iwl_set_wep_dynamic_key_info(priv, keyconf, sta_id);
  936. break;
  937. default:
  938. IWL_ERR(priv,
  939. "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
  940. ret = -EINVAL;
  941. }
  942. IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
  943. keyconf->alg, keyconf->keylen, keyconf->keyidx,
  944. sta_id, ret);
  945. return ret;
  946. }
  947. EXPORT_SYMBOL(iwl_set_dynamic_key);
  948. #ifdef CONFIG_IWLWIFI_DEBUG
  949. static void iwl_dump_lq_cmd(struct iwl_priv *priv,
  950. struct iwl_link_quality_cmd *lq)
  951. {
  952. int i;
  953. IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id);
  954. IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n",
  955. lq->general_params.single_stream_ant_msk,
  956. lq->general_params.dual_stream_ant_msk);
  957. for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
  958. IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n",
  959. i, lq->rs_table[i].rate_n_flags);
  960. }
  961. #else
  962. static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
  963. struct iwl_link_quality_cmd *lq)
  964. {
  965. }
  966. #endif
  967. /**
  968. * iwl_send_lq_cmd() - Send link quality command
  969. * @init: This command is sent as part of station initialization right
  970. * after station has been added.
  971. *
  972. * The link quality command is sent as the last step of station creation.
  973. * This is the special case in which init is set and we call a callback in
  974. * this case to clear the state indicating that station creation is in
  975. * progress.
  976. */
  977. int iwl_send_lq_cmd(struct iwl_priv *priv,
  978. struct iwl_link_quality_cmd *lq, u8 flags, bool init)
  979. {
  980. int ret = 0;
  981. unsigned long flags_spin;
  982. struct iwl_host_cmd cmd = {
  983. .id = REPLY_TX_LINK_QUALITY_CMD,
  984. .len = sizeof(struct iwl_link_quality_cmd),
  985. .flags = flags,
  986. .data = lq,
  987. };
  988. if (WARN_ON(lq->sta_id == IWL_INVALID_STATION))
  989. return -EINVAL;
  990. iwl_dump_lq_cmd(priv, lq);
  991. BUG_ON(init && (cmd.flags & CMD_ASYNC));
  992. iwl_dump_lq_cmd(priv, lq);
  993. ret = iwl_send_cmd(priv, &cmd);
  994. if (ret || (cmd.flags & CMD_ASYNC))
  995. return ret;
  996. if (init) {
  997. IWL_DEBUG_INFO(priv, "init LQ command complete, clearing sta addition status for sta %d\n",
  998. lq->sta_id);
  999. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  1000. priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
  1001. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  1002. }
  1003. return 0;
  1004. }
  1005. EXPORT_SYMBOL(iwl_send_lq_cmd);
  1006. /**
  1007. * iwl_add_bcast_station - add broadcast station into station table.
  1008. */
  1009. void iwl_add_bcast_station(struct iwl_priv *priv)
  1010. {
  1011. IWL_DEBUG_INFO(priv, "Adding broadcast station to station table\n");
  1012. iwl_add_local_station(priv, iwl_bcast_addr, true);
  1013. }
  1014. EXPORT_SYMBOL(iwl_add_bcast_station);
  1015. /**
  1016. * iwl3945_add_bcast_station - add broadcast station into station table.
  1017. */
  1018. void iwl3945_add_bcast_station(struct iwl_priv *priv)
  1019. {
  1020. IWL_DEBUG_INFO(priv, "Adding broadcast station to station table\n");
  1021. iwl_add_local_station(priv, iwl_bcast_addr, false);
  1022. /*
  1023. * It is assumed that when station is added more initialization
  1024. * needs to be done, but for 3945 it is not the case and we can
  1025. * just release station table access right here.
  1026. */
  1027. priv->stations[priv->hw_params.bcast_sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
  1028. }
  1029. EXPORT_SYMBOL(iwl3945_add_bcast_station);
  1030. /**
  1031. * iwl_get_sta_id - Find station's index within station table
  1032. *
  1033. * If new IBSS station, create new entry in station table
  1034. */
  1035. int iwl_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
  1036. {
  1037. int sta_id;
  1038. __le16 fc = hdr->frame_control;
  1039. /* If this frame is broadcast or management, use broadcast station id */
  1040. if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1))
  1041. return priv->hw_params.bcast_sta_id;
  1042. switch (priv->iw_mode) {
  1043. /* If we are a client station in a BSS network, use the special
  1044. * AP station entry (that's the only station we communicate with) */
  1045. case NL80211_IFTYPE_STATION:
  1046. /*
  1047. * If addition of station not complete yet, which means
  1048. * that rate scaling has not been initialized, then return
  1049. * the broadcast station.
  1050. */
  1051. if (!(priv->stations[IWL_AP_ID].used & IWL_STA_UCODE_ACTIVE))
  1052. return priv->hw_params.bcast_sta_id;
  1053. return IWL_AP_ID;
  1054. /* If we are an AP, then find the station, or use BCAST */
  1055. case NL80211_IFTYPE_AP:
  1056. sta_id = iwl_find_station(priv, hdr->addr1);
  1057. if (sta_id != IWL_INVALID_STATION)
  1058. return sta_id;
  1059. return priv->hw_params.bcast_sta_id;
  1060. /* If this frame is going out to an IBSS network, find the station,
  1061. * or create a new station table entry */
  1062. case NL80211_IFTYPE_ADHOC:
  1063. sta_id = iwl_find_station(priv, hdr->addr1);
  1064. if (sta_id != IWL_INVALID_STATION)
  1065. return sta_id;
  1066. IWL_DEBUG_DROP(priv, "Station %pM not in station map. "
  1067. "Defaulting to broadcast...\n",
  1068. hdr->addr1);
  1069. iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
  1070. return priv->hw_params.bcast_sta_id;
  1071. default:
  1072. IWL_WARN(priv, "Unknown mode of operation: %d\n",
  1073. priv->iw_mode);
  1074. return priv->hw_params.bcast_sta_id;
  1075. }
  1076. }
  1077. EXPORT_SYMBOL(iwl_get_sta_id);
  1078. /**
  1079. * iwl_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
  1080. */
  1081. void iwl_sta_tx_modify_enable_tid(struct iwl_priv *priv, int sta_id, int tid)
  1082. {
  1083. unsigned long flags;
  1084. /* Remove "disable" flag, to enable Tx for this TID */
  1085. spin_lock_irqsave(&priv->sta_lock, flags);
  1086. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
  1087. priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
  1088. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1089. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1090. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  1091. }
  1092. EXPORT_SYMBOL(iwl_sta_tx_modify_enable_tid);
  1093. int iwl_sta_rx_agg_start(struct iwl_priv *priv,
  1094. const u8 *addr, int tid, u16 ssn)
  1095. {
  1096. unsigned long flags;
  1097. int sta_id;
  1098. sta_id = iwl_find_station(priv, addr);
  1099. if (sta_id == IWL_INVALID_STATION)
  1100. return -ENXIO;
  1101. spin_lock_irqsave(&priv->sta_lock, flags);
  1102. priv->stations[sta_id].sta.station_flags_msk = 0;
  1103. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
  1104. priv->stations[sta_id].sta.add_immediate_ba_tid = (u8)tid;
  1105. priv->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
  1106. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1107. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1108. return iwl_send_add_sta(priv, &priv->stations[sta_id].sta,
  1109. CMD_ASYNC);
  1110. }
  1111. EXPORT_SYMBOL(iwl_sta_rx_agg_start);
  1112. int iwl_sta_rx_agg_stop(struct iwl_priv *priv, const u8 *addr, int tid)
  1113. {
  1114. unsigned long flags;
  1115. int sta_id;
  1116. sta_id = iwl_find_station(priv, addr);
  1117. if (sta_id == IWL_INVALID_STATION) {
  1118. IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
  1119. return -ENXIO;
  1120. }
  1121. spin_lock_irqsave(&priv->sta_lock, flags);
  1122. priv->stations[sta_id].sta.station_flags_msk = 0;
  1123. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
  1124. priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid;
  1125. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1126. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1127. return iwl_send_add_sta(priv, &priv->stations[sta_id].sta,
  1128. CMD_ASYNC);
  1129. }
  1130. EXPORT_SYMBOL(iwl_sta_rx_agg_stop);
  1131. void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
  1132. {
  1133. unsigned long flags;
  1134. spin_lock_irqsave(&priv->sta_lock, flags);
  1135. priv->stations[sta_id].sta.station_flags &= ~STA_FLG_PWR_SAVE_MSK;
  1136. priv->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
  1137. priv->stations[sta_id].sta.sta.modify_mask = 0;
  1138. priv->stations[sta_id].sta.sleep_tx_count = 0;
  1139. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1140. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1141. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  1142. }
  1143. EXPORT_SYMBOL(iwl_sta_modify_ps_wake);
  1144. void iwl_sta_modify_sleep_tx_count(struct iwl_priv *priv, int sta_id, int cnt)
  1145. {
  1146. unsigned long flags;
  1147. spin_lock_irqsave(&priv->sta_lock, flags);
  1148. priv->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK;
  1149. priv->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
  1150. priv->stations[sta_id].sta.sta.modify_mask =
  1151. STA_MODIFY_SLEEP_TX_COUNT_MSK;
  1152. priv->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt);
  1153. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1154. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1155. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  1156. }
  1157. EXPORT_SYMBOL(iwl_sta_modify_sleep_tx_count);
  1158. int iwl_mac_sta_remove(struct ieee80211_hw *hw,
  1159. struct ieee80211_vif *vif,
  1160. struct ieee80211_sta *sta)
  1161. {
  1162. int ret;
  1163. struct iwl_priv *priv = hw->priv;
  1164. IWL_DEBUG_INFO(priv, "received request to remove station %pM\n",
  1165. sta->addr);
  1166. ret = iwl_remove_station(priv, sta);
  1167. if (ret)
  1168. IWL_ERR(priv, "Error removing station %pM\n",
  1169. sta->addr);
  1170. return ret;
  1171. }
  1172. EXPORT_SYMBOL(iwl_mac_sta_remove);