iwl-sta.c 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409
  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 __maybe_unused = 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. int ret = 0;
  370. /* Set up the rate scaling to start at selected rate, fall back
  371. * all the way down to 1M in IEEE order, and then spin on 1M */
  372. if (is_ap)
  373. r = IWL_RATE_54M_INDEX;
  374. else if (priv->band == IEEE80211_BAND_5GHZ)
  375. r = IWL_RATE_6M_INDEX;
  376. else
  377. r = IWL_RATE_1M_INDEX;
  378. for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
  379. rate_flags = 0;
  380. if (r >= IWL_FIRST_CCK_RATE && r <= IWL_LAST_CCK_RATE)
  381. rate_flags |= RATE_MCS_CCK_MSK;
  382. rate_flags |= first_antenna(priv->hw_params.valid_tx_ant) <<
  383. RATE_MCS_ANT_POS;
  384. link_cmd.rs_table[i].rate_n_flags =
  385. iwl_hw_set_rate_n_flags(iwl_rates[r].plcp, rate_flags);
  386. r = iwl_get_prev_ieee_rate(r);
  387. }
  388. link_cmd.general_params.single_stream_ant_msk =
  389. first_antenna(priv->hw_params.valid_tx_ant);
  390. link_cmd.general_params.dual_stream_ant_msk = 3;
  391. link_cmd.agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
  392. link_cmd.agg_params.agg_time_limit =
  393. cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
  394. /* Update the rate scaling for control frame Tx to AP */
  395. link_cmd.sta_id = is_ap ? IWL_AP_ID : priv->hw_params.bcast_sta_id;
  396. ret = iwl_send_cmd_pdu(priv, REPLY_TX_LINK_QUALITY_CMD,
  397. sizeof(link_cmd), &link_cmd);
  398. if (ret)
  399. IWL_ERR(priv, "REPLY_TX_LINK_QUALITY_CMD failed (%d)\n", ret);
  400. }
  401. /*
  402. * iwl_add_local_stations - Add stations not requested by mac80211
  403. *
  404. * This will be either the broadcast station or the bssid station needed by
  405. * ad-hoc.
  406. *
  407. * Function sleeps.
  408. */
  409. int iwl_add_local_station(struct iwl_priv *priv, const u8 *addr, bool init_rs)
  410. {
  411. int ret;
  412. u8 sta_id;
  413. ret = iwl_add_station_common(priv, addr, 0, NULL, &sta_id);
  414. if (ret) {
  415. IWL_ERR(priv, "Unable to add station %pM\n", addr);
  416. return ret;
  417. }
  418. if (init_rs)
  419. /* Set up default rate scaling table in device's station table */
  420. iwl_sta_init_lq(priv, addr, false);
  421. return 0;
  422. }
  423. EXPORT_SYMBOL(iwl_add_local_station);
  424. /**
  425. * iwl_sta_ucode_deactivate - deactivate ucode status for a station
  426. *
  427. * priv->sta_lock must be held
  428. */
  429. static void iwl_sta_ucode_deactivate(struct iwl_priv *priv, u8 sta_id)
  430. {
  431. /* Ucode must be active and driver must be non active */
  432. if (priv->stations[sta_id].used != IWL_STA_UCODE_ACTIVE)
  433. IWL_ERR(priv, "removed non active STA %u\n", sta_id);
  434. priv->stations[sta_id].used &= ~IWL_STA_UCODE_ACTIVE;
  435. memset(&priv->stations[sta_id], 0, sizeof(struct iwl_station_entry));
  436. IWL_DEBUG_ASSOC(priv, "Removed STA %u\n", sta_id);
  437. }
  438. static int iwl_send_remove_station(struct iwl_priv *priv,
  439. struct iwl_station_entry *station)
  440. {
  441. struct iwl_rx_packet *pkt;
  442. int ret;
  443. unsigned long flags_spin;
  444. struct iwl_rem_sta_cmd rm_sta_cmd;
  445. struct iwl_host_cmd cmd = {
  446. .id = REPLY_REMOVE_STA,
  447. .len = sizeof(struct iwl_rem_sta_cmd),
  448. .flags = CMD_SYNC,
  449. .data = &rm_sta_cmd,
  450. };
  451. memset(&rm_sta_cmd, 0, sizeof(rm_sta_cmd));
  452. rm_sta_cmd.num_sta = 1;
  453. memcpy(&rm_sta_cmd.addr, &station->sta.sta.addr , ETH_ALEN);
  454. cmd.flags |= CMD_WANT_SKB;
  455. ret = iwl_send_cmd(priv, &cmd);
  456. if (ret)
  457. return ret;
  458. pkt = (struct iwl_rx_packet *)cmd.reply_page;
  459. if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
  460. IWL_ERR(priv, "Bad return from REPLY_REMOVE_STA (0x%08X)\n",
  461. pkt->hdr.flags);
  462. ret = -EIO;
  463. }
  464. if (!ret) {
  465. switch (pkt->u.rem_sta.status) {
  466. case REM_STA_SUCCESS_MSK:
  467. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  468. iwl_sta_ucode_deactivate(priv, station->sta.sta.sta_id);
  469. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  470. IWL_DEBUG_ASSOC(priv, "REPLY_REMOVE_STA PASSED\n");
  471. break;
  472. default:
  473. ret = -EIO;
  474. IWL_ERR(priv, "REPLY_REMOVE_STA failed\n");
  475. break;
  476. }
  477. }
  478. iwl_free_pages(priv, cmd.reply_page);
  479. return ret;
  480. }
  481. /**
  482. * iwl_remove_station - Remove driver's knowledge of station.
  483. */
  484. static int iwl_remove_station(struct iwl_priv *priv, struct ieee80211_sta *sta)
  485. {
  486. int sta_id = IWL_INVALID_STATION;
  487. int i, ret = -EINVAL;
  488. unsigned long flags;
  489. bool is_ap = priv->iw_mode == NL80211_IFTYPE_STATION;
  490. struct iwl_station_entry *station;
  491. if (!iwl_is_ready(priv)) {
  492. IWL_DEBUG_INFO(priv,
  493. "Unable to remove station %pM, device not ready.\n",
  494. sta->addr);
  495. /*
  496. * It is typical for stations to be removed when we are
  497. * going down. Return success since device will be down
  498. * soon anyway
  499. */
  500. return 0;
  501. }
  502. spin_lock_irqsave(&priv->sta_lock, flags);
  503. if (is_ap)
  504. sta_id = IWL_AP_ID;
  505. else
  506. for (i = IWL_STA_ID; i < priv->hw_params.max_stations; i++)
  507. if (priv->stations[i].used &&
  508. !compare_ether_addr(priv->stations[i].sta.sta.addr,
  509. sta->addr)) {
  510. sta_id = i;
  511. break;
  512. }
  513. if (unlikely(sta_id == IWL_INVALID_STATION))
  514. goto out;
  515. IWL_DEBUG_ASSOC(priv, "Removing STA from driver:%d %pM\n",
  516. sta_id, sta->addr);
  517. if (!(priv->stations[sta_id].used & IWL_STA_DRIVER_ACTIVE)) {
  518. IWL_DEBUG_INFO(priv, "Removing %pM but non DRIVER active\n",
  519. sta->addr);
  520. goto out;
  521. }
  522. if (!(priv->stations[sta_id].used & IWL_STA_UCODE_ACTIVE)) {
  523. IWL_DEBUG_INFO(priv, "Removing %pM but non UCODE active\n",
  524. sta->addr);
  525. goto out;
  526. }
  527. priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
  528. priv->num_stations--;
  529. BUG_ON(priv->num_stations < 0);
  530. station = &priv->stations[sta_id];
  531. spin_unlock_irqrestore(&priv->sta_lock, flags);
  532. ret = iwl_send_remove_station(priv, station);
  533. return ret;
  534. out:
  535. spin_unlock_irqrestore(&priv->sta_lock, flags);
  536. return ret;
  537. }
  538. /**
  539. * iwl_clear_ucode_stations() - clear entire station table driver and/or ucode
  540. * @priv:
  541. * @force: If set then the uCode station table needs to be cleared here. If
  542. * not set then the uCode station table has already been cleared,
  543. * for example after sending it a RXON command without ASSOC bit
  544. * set, and we just need to change driver state here.
  545. */
  546. void iwl_clear_ucode_stations(struct iwl_priv *priv, bool force)
  547. {
  548. int i;
  549. unsigned long flags_spin;
  550. bool cleared = false;
  551. IWL_DEBUG_INFO(priv, "Clearing ucode stations in driver%s\n",
  552. force ? " and ucode" : "");
  553. if (force) {
  554. if (!iwl_is_ready(priv)) {
  555. /*
  556. * If device is not ready at this point the station
  557. * table is likely already empty (uCode not ready
  558. * to receive station requests) or will soon be
  559. * due to interface going down.
  560. */
  561. IWL_DEBUG_INFO(priv, "Unable to remove stations from device - device not ready\n");
  562. } else {
  563. iwl_send_cmd_pdu_async(priv, REPLY_REMOVE_ALL_STA, 0, NULL, NULL);
  564. }
  565. }
  566. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  567. if (force) {
  568. IWL_DEBUG_INFO(priv, "Clearing all station information in driver\n");
  569. priv->num_stations = 0;
  570. memset(priv->stations, 0, sizeof(priv->stations));
  571. } else {
  572. for (i = 0; i < priv->hw_params.max_stations; i++) {
  573. if (priv->stations[i].used & IWL_STA_UCODE_ACTIVE) {
  574. IWL_DEBUG_INFO(priv, "Clearing ucode active for station %d\n", i);
  575. priv->stations[i].used &= ~IWL_STA_UCODE_ACTIVE;
  576. cleared = true;
  577. }
  578. }
  579. }
  580. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  581. if (!cleared)
  582. IWL_DEBUG_INFO(priv, "No active stations found to be cleared\n");
  583. }
  584. EXPORT_SYMBOL(iwl_clear_ucode_stations);
  585. /**
  586. * iwl_restore_stations() - Restore driver known stations to device
  587. *
  588. * All stations considered active by driver, but not present in ucode, is
  589. * restored.
  590. *
  591. * Function sleeps.
  592. */
  593. void iwl_restore_stations(struct iwl_priv *priv)
  594. {
  595. struct iwl_station_entry *station;
  596. unsigned long flags_spin;
  597. int i;
  598. bool found = false;
  599. int ret;
  600. if (!iwl_is_ready(priv)) {
  601. IWL_DEBUG_INFO(priv, "Not ready yet, not restoring any stations.\n");
  602. return;
  603. }
  604. IWL_DEBUG_ASSOC(priv, "Restoring all known stations ... start.\n");
  605. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  606. for (i = 0; i < priv->hw_params.max_stations; i++) {
  607. if ((priv->stations[i].used & IWL_STA_DRIVER_ACTIVE) &&
  608. !(priv->stations[i].used & IWL_STA_UCODE_ACTIVE)) {
  609. IWL_DEBUG_ASSOC(priv, "Restoring sta %pM\n",
  610. priv->stations[i].sta.sta.addr);
  611. priv->stations[i].sta.mode = 0;
  612. priv->stations[i].used |= IWL_STA_UCODE_INPROGRESS;
  613. found = true;
  614. }
  615. }
  616. for (i = 0; i < priv->hw_params.max_stations; i++) {
  617. if ((priv->stations[i].used & IWL_STA_UCODE_INPROGRESS)) {
  618. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  619. station = &priv->stations[i];
  620. ret = iwl_send_add_sta(priv, &priv->stations[i].sta, CMD_SYNC);
  621. if (ret) {
  622. IWL_ERR(priv, "Adding station %pM failed.\n",
  623. station->sta.sta.addr);
  624. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  625. priv->stations[i].used &= ~IWL_STA_DRIVER_ACTIVE;
  626. priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
  627. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  628. }
  629. /*
  630. * Rate scaling has already been initialized, send
  631. * current LQ command
  632. */
  633. if (station->lq)
  634. iwl_send_lq_cmd(priv, station->lq, CMD_SYNC, true);
  635. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  636. priv->stations[i].used &= ~IWL_STA_UCODE_INPROGRESS;
  637. }
  638. }
  639. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  640. if (!found)
  641. IWL_DEBUG_INFO(priv, "Restoring all known stations .... no stations to be restored.\n");
  642. else
  643. IWL_DEBUG_INFO(priv, "Restoring all known stations .... complete.\n");
  644. }
  645. EXPORT_SYMBOL(iwl_restore_stations);
  646. int iwl_get_free_ucode_key_index(struct iwl_priv *priv)
  647. {
  648. int i;
  649. for (i = 0; i < STA_KEY_MAX_NUM; i++)
  650. if (!test_and_set_bit(i, &priv->ucode_key_table))
  651. return i;
  652. return WEP_INVALID_OFFSET;
  653. }
  654. EXPORT_SYMBOL(iwl_get_free_ucode_key_index);
  655. static int iwl_send_static_wepkey_cmd(struct iwl_priv *priv, u8 send_if_empty)
  656. {
  657. int i, not_empty = 0;
  658. u8 buff[sizeof(struct iwl_wep_cmd) +
  659. sizeof(struct iwl_wep_key) * WEP_KEYS_MAX];
  660. struct iwl_wep_cmd *wep_cmd = (struct iwl_wep_cmd *)buff;
  661. size_t cmd_size = sizeof(struct iwl_wep_cmd);
  662. struct iwl_host_cmd cmd = {
  663. .id = REPLY_WEPKEY,
  664. .data = wep_cmd,
  665. .flags = CMD_SYNC,
  666. };
  667. might_sleep();
  668. memset(wep_cmd, 0, cmd_size +
  669. (sizeof(struct iwl_wep_key) * WEP_KEYS_MAX));
  670. for (i = 0; i < WEP_KEYS_MAX ; i++) {
  671. wep_cmd->key[i].key_index = i;
  672. if (priv->wep_keys[i].key_size) {
  673. wep_cmd->key[i].key_offset = i;
  674. not_empty = 1;
  675. } else {
  676. wep_cmd->key[i].key_offset = WEP_INVALID_OFFSET;
  677. }
  678. wep_cmd->key[i].key_size = priv->wep_keys[i].key_size;
  679. memcpy(&wep_cmd->key[i].key[3], priv->wep_keys[i].key,
  680. priv->wep_keys[i].key_size);
  681. }
  682. wep_cmd->global_key_type = WEP_KEY_WEP_TYPE;
  683. wep_cmd->num_keys = WEP_KEYS_MAX;
  684. cmd_size += sizeof(struct iwl_wep_key) * WEP_KEYS_MAX;
  685. cmd.len = cmd_size;
  686. if (not_empty || send_if_empty)
  687. return iwl_send_cmd(priv, &cmd);
  688. else
  689. return 0;
  690. }
  691. int iwl_restore_default_wep_keys(struct iwl_priv *priv)
  692. {
  693. WARN_ON(!mutex_is_locked(&priv->mutex));
  694. return iwl_send_static_wepkey_cmd(priv, 0);
  695. }
  696. EXPORT_SYMBOL(iwl_restore_default_wep_keys);
  697. int iwl_remove_default_wep_key(struct iwl_priv *priv,
  698. struct ieee80211_key_conf *keyconf)
  699. {
  700. int ret;
  701. WARN_ON(!mutex_is_locked(&priv->mutex));
  702. IWL_DEBUG_WEP(priv, "Removing default WEP key: idx=%d\n",
  703. keyconf->keyidx);
  704. memset(&priv->wep_keys[keyconf->keyidx], 0, sizeof(priv->wep_keys[0]));
  705. if (iwl_is_rfkill(priv)) {
  706. IWL_DEBUG_WEP(priv, "Not sending REPLY_WEPKEY command due to RFKILL.\n");
  707. /* but keys in device are clear anyway so return success */
  708. return 0;
  709. }
  710. ret = iwl_send_static_wepkey_cmd(priv, 1);
  711. IWL_DEBUG_WEP(priv, "Remove default WEP key: idx=%d ret=%d\n",
  712. keyconf->keyidx, ret);
  713. return ret;
  714. }
  715. EXPORT_SYMBOL(iwl_remove_default_wep_key);
  716. int iwl_set_default_wep_key(struct iwl_priv *priv,
  717. struct ieee80211_key_conf *keyconf)
  718. {
  719. int ret;
  720. WARN_ON(!mutex_is_locked(&priv->mutex));
  721. if (keyconf->keylen != WEP_KEY_LEN_128 &&
  722. keyconf->keylen != WEP_KEY_LEN_64) {
  723. IWL_DEBUG_WEP(priv, "Bad WEP key length %d\n", keyconf->keylen);
  724. return -EINVAL;
  725. }
  726. keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
  727. keyconf->hw_key_idx = HW_KEY_DEFAULT;
  728. priv->stations[IWL_AP_ID].keyinfo.alg = ALG_WEP;
  729. priv->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
  730. memcpy(&priv->wep_keys[keyconf->keyidx].key, &keyconf->key,
  731. keyconf->keylen);
  732. ret = iwl_send_static_wepkey_cmd(priv, 0);
  733. IWL_DEBUG_WEP(priv, "Set default WEP key: len=%d idx=%d ret=%d\n",
  734. keyconf->keylen, keyconf->keyidx, ret);
  735. return ret;
  736. }
  737. EXPORT_SYMBOL(iwl_set_default_wep_key);
  738. static int iwl_set_wep_dynamic_key_info(struct iwl_priv *priv,
  739. struct ieee80211_key_conf *keyconf,
  740. u8 sta_id)
  741. {
  742. unsigned long flags;
  743. __le16 key_flags = 0;
  744. int ret;
  745. keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
  746. key_flags |= (STA_KEY_FLG_WEP | STA_KEY_FLG_MAP_KEY_MSK);
  747. key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
  748. key_flags &= ~STA_KEY_FLG_INVALID;
  749. if (keyconf->keylen == WEP_KEY_LEN_128)
  750. key_flags |= STA_KEY_FLG_KEY_SIZE_MSK;
  751. if (sta_id == priv->hw_params.bcast_sta_id)
  752. key_flags |= STA_KEY_MULTICAST_MSK;
  753. spin_lock_irqsave(&priv->sta_lock, flags);
  754. priv->stations[sta_id].keyinfo.alg = keyconf->alg;
  755. priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
  756. priv->stations[sta_id].keyinfo.keyidx = keyconf->keyidx;
  757. memcpy(priv->stations[sta_id].keyinfo.key,
  758. keyconf->key, keyconf->keylen);
  759. memcpy(&priv->stations[sta_id].sta.key.key[3],
  760. keyconf->key, keyconf->keylen);
  761. if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
  762. == STA_KEY_FLG_NO_ENC)
  763. priv->stations[sta_id].sta.key.key_offset =
  764. iwl_get_free_ucode_key_index(priv);
  765. /* else, we are overriding an existing key => no need to allocated room
  766. * in uCode. */
  767. WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
  768. "no space for a new key");
  769. priv->stations[sta_id].sta.key.key_flags = key_flags;
  770. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  771. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  772. ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  773. spin_unlock_irqrestore(&priv->sta_lock, flags);
  774. return ret;
  775. }
  776. static int iwl_set_ccmp_dynamic_key_info(struct iwl_priv *priv,
  777. struct ieee80211_key_conf *keyconf,
  778. u8 sta_id)
  779. {
  780. unsigned long flags;
  781. __le16 key_flags = 0;
  782. int ret;
  783. key_flags |= (STA_KEY_FLG_CCMP | STA_KEY_FLG_MAP_KEY_MSK);
  784. key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
  785. key_flags &= ~STA_KEY_FLG_INVALID;
  786. if (sta_id == priv->hw_params.bcast_sta_id)
  787. key_flags |= STA_KEY_MULTICAST_MSK;
  788. keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  789. spin_lock_irqsave(&priv->sta_lock, flags);
  790. priv->stations[sta_id].keyinfo.alg = keyconf->alg;
  791. priv->stations[sta_id].keyinfo.keylen = keyconf->keylen;
  792. memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key,
  793. keyconf->keylen);
  794. memcpy(priv->stations[sta_id].sta.key.key, keyconf->key,
  795. keyconf->keylen);
  796. if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
  797. == STA_KEY_FLG_NO_ENC)
  798. priv->stations[sta_id].sta.key.key_offset =
  799. iwl_get_free_ucode_key_index(priv);
  800. /* else, we are overriding an existing key => no need to allocated room
  801. * in uCode. */
  802. WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
  803. "no space for a new key");
  804. priv->stations[sta_id].sta.key.key_flags = key_flags;
  805. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  806. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  807. ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  808. spin_unlock_irqrestore(&priv->sta_lock, flags);
  809. return ret;
  810. }
  811. static int iwl_set_tkip_dynamic_key_info(struct iwl_priv *priv,
  812. struct ieee80211_key_conf *keyconf,
  813. u8 sta_id)
  814. {
  815. unsigned long flags;
  816. int ret = 0;
  817. __le16 key_flags = 0;
  818. key_flags |= (STA_KEY_FLG_TKIP | STA_KEY_FLG_MAP_KEY_MSK);
  819. key_flags |= cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS);
  820. key_flags &= ~STA_KEY_FLG_INVALID;
  821. if (sta_id == priv->hw_params.bcast_sta_id)
  822. key_flags |= STA_KEY_MULTICAST_MSK;
  823. keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  824. keyconf->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
  825. spin_lock_irqsave(&priv->sta_lock, flags);
  826. priv->stations[sta_id].keyinfo.alg = keyconf->alg;
  827. priv->stations[sta_id].keyinfo.keylen = 16;
  828. if ((priv->stations[sta_id].sta.key.key_flags & STA_KEY_FLG_ENCRYPT_MSK)
  829. == STA_KEY_FLG_NO_ENC)
  830. priv->stations[sta_id].sta.key.key_offset =
  831. iwl_get_free_ucode_key_index(priv);
  832. /* else, we are overriding an existing key => no need to allocated room
  833. * in uCode. */
  834. WARN(priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET,
  835. "no space for a new key");
  836. priv->stations[sta_id].sta.key.key_flags = key_flags;
  837. /* This copy is acutally not needed: we get the key with each TX */
  838. memcpy(priv->stations[sta_id].keyinfo.key, keyconf->key, 16);
  839. memcpy(priv->stations[sta_id].sta.key.key, keyconf->key, 16);
  840. spin_unlock_irqrestore(&priv->sta_lock, flags);
  841. return ret;
  842. }
  843. void iwl_update_tkip_key(struct iwl_priv *priv,
  844. struct ieee80211_key_conf *keyconf,
  845. const u8 *addr, u32 iv32, u16 *phase1key)
  846. {
  847. u8 sta_id = IWL_INVALID_STATION;
  848. unsigned long flags;
  849. int i;
  850. sta_id = iwl_find_station(priv, addr);
  851. if (sta_id == IWL_INVALID_STATION) {
  852. IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n",
  853. addr);
  854. return;
  855. }
  856. if (iwl_scan_cancel(priv)) {
  857. /* cancel scan failed, just live w/ bad key and rely
  858. briefly on SW decryption */
  859. return;
  860. }
  861. spin_lock_irqsave(&priv->sta_lock, flags);
  862. priv->stations[sta_id].sta.key.tkip_rx_tsc_byte2 = (u8) iv32;
  863. for (i = 0; i < 5; i++)
  864. priv->stations[sta_id].sta.key.tkip_rx_ttak[i] =
  865. cpu_to_le16(phase1key[i]);
  866. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  867. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  868. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  869. spin_unlock_irqrestore(&priv->sta_lock, flags);
  870. }
  871. EXPORT_SYMBOL(iwl_update_tkip_key);
  872. int iwl_remove_dynamic_key(struct iwl_priv *priv,
  873. struct ieee80211_key_conf *keyconf,
  874. u8 sta_id)
  875. {
  876. unsigned long flags;
  877. int ret = 0;
  878. u16 key_flags;
  879. u8 keyidx;
  880. priv->key_mapping_key--;
  881. spin_lock_irqsave(&priv->sta_lock, flags);
  882. key_flags = le16_to_cpu(priv->stations[sta_id].sta.key.key_flags);
  883. keyidx = (key_flags >> STA_KEY_FLG_KEYID_POS) & 0x3;
  884. IWL_DEBUG_WEP(priv, "Remove dynamic key: idx=%d sta=%d\n",
  885. keyconf->keyidx, sta_id);
  886. if (keyconf->keyidx != keyidx) {
  887. /* We need to remove a key with index different that the one
  888. * in the uCode. This means that the key we need to remove has
  889. * been replaced by another one with different index.
  890. * Don't do anything and return ok
  891. */
  892. spin_unlock_irqrestore(&priv->sta_lock, flags);
  893. return 0;
  894. }
  895. if (priv->stations[sta_id].sta.key.key_offset == WEP_INVALID_OFFSET) {
  896. IWL_WARN(priv, "Removing wrong key %d 0x%x\n",
  897. keyconf->keyidx, key_flags);
  898. spin_unlock_irqrestore(&priv->sta_lock, flags);
  899. return 0;
  900. }
  901. if (!test_and_clear_bit(priv->stations[sta_id].sta.key.key_offset,
  902. &priv->ucode_key_table))
  903. IWL_ERR(priv, "index %d not used in uCode key table.\n",
  904. priv->stations[sta_id].sta.key.key_offset);
  905. memset(&priv->stations[sta_id].keyinfo, 0,
  906. sizeof(struct iwl_hw_key));
  907. memset(&priv->stations[sta_id].sta.key, 0,
  908. sizeof(struct iwl4965_keyinfo));
  909. priv->stations[sta_id].sta.key.key_flags =
  910. STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID;
  911. priv->stations[sta_id].sta.key.key_offset = WEP_INVALID_OFFSET;
  912. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_KEY_MASK;
  913. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  914. if (iwl_is_rfkill(priv)) {
  915. IWL_DEBUG_WEP(priv, "Not sending REPLY_ADD_STA command because RFKILL enabled.\n");
  916. spin_unlock_irqrestore(&priv->sta_lock, flags);
  917. return 0;
  918. }
  919. ret = iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  920. spin_unlock_irqrestore(&priv->sta_lock, flags);
  921. return ret;
  922. }
  923. EXPORT_SYMBOL(iwl_remove_dynamic_key);
  924. int iwl_set_dynamic_key(struct iwl_priv *priv,
  925. struct ieee80211_key_conf *keyconf, u8 sta_id)
  926. {
  927. int ret;
  928. priv->key_mapping_key++;
  929. keyconf->hw_key_idx = HW_KEY_DYNAMIC;
  930. switch (keyconf->alg) {
  931. case ALG_CCMP:
  932. ret = iwl_set_ccmp_dynamic_key_info(priv, keyconf, sta_id);
  933. break;
  934. case ALG_TKIP:
  935. ret = iwl_set_tkip_dynamic_key_info(priv, keyconf, sta_id);
  936. break;
  937. case ALG_WEP:
  938. ret = iwl_set_wep_dynamic_key_info(priv, keyconf, sta_id);
  939. break;
  940. default:
  941. IWL_ERR(priv,
  942. "Unknown alg: %s alg = %d\n", __func__, keyconf->alg);
  943. ret = -EINVAL;
  944. }
  945. IWL_DEBUG_WEP(priv, "Set dynamic key: alg= %d len=%d idx=%d sta=%d ret=%d\n",
  946. keyconf->alg, keyconf->keylen, keyconf->keyidx,
  947. sta_id, ret);
  948. return ret;
  949. }
  950. EXPORT_SYMBOL(iwl_set_dynamic_key);
  951. #ifdef CONFIG_IWLWIFI_DEBUG
  952. static void iwl_dump_lq_cmd(struct iwl_priv *priv,
  953. struct iwl_link_quality_cmd *lq)
  954. {
  955. int i;
  956. IWL_DEBUG_RATE(priv, "lq station id 0x%x\n", lq->sta_id);
  957. IWL_DEBUG_RATE(priv, "lq ant 0x%X 0x%X\n",
  958. lq->general_params.single_stream_ant_msk,
  959. lq->general_params.dual_stream_ant_msk);
  960. for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
  961. IWL_DEBUG_RATE(priv, "lq index %d 0x%X\n",
  962. i, lq->rs_table[i].rate_n_flags);
  963. }
  964. #else
  965. static inline void iwl_dump_lq_cmd(struct iwl_priv *priv,
  966. struct iwl_link_quality_cmd *lq)
  967. {
  968. }
  969. #endif
  970. /**
  971. * iwl_send_lq_cmd() - Send link quality command
  972. * @init: This command is sent as part of station initialization right
  973. * after station has been added.
  974. *
  975. * The link quality command is sent as the last step of station creation.
  976. * This is the special case in which init is set and we call a callback in
  977. * this case to clear the state indicating that station creation is in
  978. * progress.
  979. */
  980. int iwl_send_lq_cmd(struct iwl_priv *priv,
  981. struct iwl_link_quality_cmd *lq, u8 flags, bool init)
  982. {
  983. int ret = 0;
  984. unsigned long flags_spin;
  985. struct iwl_host_cmd cmd = {
  986. .id = REPLY_TX_LINK_QUALITY_CMD,
  987. .len = sizeof(struct iwl_link_quality_cmd),
  988. .flags = flags,
  989. .data = lq,
  990. };
  991. if (WARN_ON(lq->sta_id == IWL_INVALID_STATION))
  992. return -EINVAL;
  993. iwl_dump_lq_cmd(priv, lq);
  994. BUG_ON(init && (cmd.flags & CMD_ASYNC));
  995. iwl_dump_lq_cmd(priv, lq);
  996. ret = iwl_send_cmd(priv, &cmd);
  997. if (ret || (cmd.flags & CMD_ASYNC))
  998. return ret;
  999. if (init) {
  1000. IWL_DEBUG_INFO(priv, "init LQ command complete, clearing sta addition status for sta %d\n",
  1001. lq->sta_id);
  1002. spin_lock_irqsave(&priv->sta_lock, flags_spin);
  1003. priv->stations[lq->sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
  1004. spin_unlock_irqrestore(&priv->sta_lock, flags_spin);
  1005. }
  1006. return 0;
  1007. }
  1008. EXPORT_SYMBOL(iwl_send_lq_cmd);
  1009. /**
  1010. * iwl_add_bcast_station - add broadcast station into station table.
  1011. */
  1012. void iwl_add_bcast_station(struct iwl_priv *priv)
  1013. {
  1014. IWL_DEBUG_INFO(priv, "Adding broadcast station to station table\n");
  1015. iwl_add_local_station(priv, iwl_bcast_addr, true);
  1016. }
  1017. EXPORT_SYMBOL(iwl_add_bcast_station);
  1018. /**
  1019. * iwl3945_add_bcast_station - add broadcast station into station table.
  1020. */
  1021. void iwl3945_add_bcast_station(struct iwl_priv *priv)
  1022. {
  1023. IWL_DEBUG_INFO(priv, "Adding broadcast station to station table\n");
  1024. iwl_add_local_station(priv, iwl_bcast_addr, false);
  1025. /*
  1026. * It is assumed that when station is added more initialization
  1027. * needs to be done, but for 3945 it is not the case and we can
  1028. * just release station table access right here.
  1029. */
  1030. priv->stations[priv->hw_params.bcast_sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
  1031. }
  1032. EXPORT_SYMBOL(iwl3945_add_bcast_station);
  1033. /**
  1034. * iwl_get_sta_id - Find station's index within station table
  1035. *
  1036. * If new IBSS station, create new entry in station table
  1037. */
  1038. int iwl_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
  1039. {
  1040. int sta_id;
  1041. __le16 fc = hdr->frame_control;
  1042. /* If this frame is broadcast or management, use broadcast station id */
  1043. if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1))
  1044. return priv->hw_params.bcast_sta_id;
  1045. switch (priv->iw_mode) {
  1046. /* If we are a client station in a BSS network, use the special
  1047. * AP station entry (that's the only station we communicate with) */
  1048. case NL80211_IFTYPE_STATION:
  1049. /*
  1050. * If addition of station not complete yet, which means
  1051. * that rate scaling has not been initialized, then return
  1052. * the broadcast station.
  1053. */
  1054. if (!(priv->stations[IWL_AP_ID].used & IWL_STA_UCODE_ACTIVE))
  1055. return priv->hw_params.bcast_sta_id;
  1056. return IWL_AP_ID;
  1057. /* If we are an AP, then find the station, or use BCAST */
  1058. case NL80211_IFTYPE_AP:
  1059. sta_id = iwl_find_station(priv, hdr->addr1);
  1060. if (sta_id != IWL_INVALID_STATION)
  1061. return sta_id;
  1062. return priv->hw_params.bcast_sta_id;
  1063. /* If this frame is going out to an IBSS network, find the station,
  1064. * or create a new station table entry */
  1065. case NL80211_IFTYPE_ADHOC:
  1066. sta_id = iwl_find_station(priv, hdr->addr1);
  1067. if (sta_id != IWL_INVALID_STATION)
  1068. return sta_id;
  1069. IWL_DEBUG_DROP(priv, "Station %pM not in station map. "
  1070. "Defaulting to broadcast...\n",
  1071. hdr->addr1);
  1072. iwl_print_hex_dump(priv, IWL_DL_DROP, (u8 *) hdr, sizeof(*hdr));
  1073. return priv->hw_params.bcast_sta_id;
  1074. default:
  1075. IWL_WARN(priv, "Unknown mode of operation: %d\n",
  1076. priv->iw_mode);
  1077. return priv->hw_params.bcast_sta_id;
  1078. }
  1079. }
  1080. EXPORT_SYMBOL(iwl_get_sta_id);
  1081. /**
  1082. * iwl_sta_tx_modify_enable_tid - Enable Tx for this TID in station table
  1083. */
  1084. void iwl_sta_tx_modify_enable_tid(struct iwl_priv *priv, int sta_id, int tid)
  1085. {
  1086. unsigned long flags;
  1087. /* Remove "disable" flag, to enable Tx for this TID */
  1088. spin_lock_irqsave(&priv->sta_lock, flags);
  1089. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
  1090. priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
  1091. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1092. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1093. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  1094. }
  1095. EXPORT_SYMBOL(iwl_sta_tx_modify_enable_tid);
  1096. int iwl_sta_rx_agg_start(struct iwl_priv *priv,
  1097. const u8 *addr, int tid, u16 ssn)
  1098. {
  1099. unsigned long flags;
  1100. int sta_id;
  1101. sta_id = iwl_find_station(priv, addr);
  1102. if (sta_id == IWL_INVALID_STATION)
  1103. return -ENXIO;
  1104. spin_lock_irqsave(&priv->sta_lock, flags);
  1105. priv->stations[sta_id].sta.station_flags_msk = 0;
  1106. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
  1107. priv->stations[sta_id].sta.add_immediate_ba_tid = (u8)tid;
  1108. priv->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
  1109. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1110. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1111. return iwl_send_add_sta(priv, &priv->stations[sta_id].sta,
  1112. CMD_ASYNC);
  1113. }
  1114. EXPORT_SYMBOL(iwl_sta_rx_agg_start);
  1115. int iwl_sta_rx_agg_stop(struct iwl_priv *priv, const u8 *addr, int tid)
  1116. {
  1117. unsigned long flags;
  1118. int sta_id;
  1119. sta_id = iwl_find_station(priv, addr);
  1120. if (sta_id == IWL_INVALID_STATION) {
  1121. IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid);
  1122. return -ENXIO;
  1123. }
  1124. spin_lock_irqsave(&priv->sta_lock, flags);
  1125. priv->stations[sta_id].sta.station_flags_msk = 0;
  1126. priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
  1127. priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid;
  1128. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1129. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1130. return iwl_send_add_sta(priv, &priv->stations[sta_id].sta,
  1131. CMD_ASYNC);
  1132. }
  1133. EXPORT_SYMBOL(iwl_sta_rx_agg_stop);
  1134. void iwl_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
  1135. {
  1136. unsigned long flags;
  1137. spin_lock_irqsave(&priv->sta_lock, flags);
  1138. priv->stations[sta_id].sta.station_flags &= ~STA_FLG_PWR_SAVE_MSK;
  1139. priv->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
  1140. priv->stations[sta_id].sta.sta.modify_mask = 0;
  1141. priv->stations[sta_id].sta.sleep_tx_count = 0;
  1142. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1143. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1144. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  1145. }
  1146. EXPORT_SYMBOL(iwl_sta_modify_ps_wake);
  1147. void iwl_sta_modify_sleep_tx_count(struct iwl_priv *priv, int sta_id, int cnt)
  1148. {
  1149. unsigned long flags;
  1150. spin_lock_irqsave(&priv->sta_lock, flags);
  1151. priv->stations[sta_id].sta.station_flags |= STA_FLG_PWR_SAVE_MSK;
  1152. priv->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
  1153. priv->stations[sta_id].sta.sta.modify_mask =
  1154. STA_MODIFY_SLEEP_TX_COUNT_MSK;
  1155. priv->stations[sta_id].sta.sleep_tx_count = cpu_to_le16(cnt);
  1156. priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
  1157. spin_unlock_irqrestore(&priv->sta_lock, flags);
  1158. iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
  1159. }
  1160. EXPORT_SYMBOL(iwl_sta_modify_sleep_tx_count);
  1161. int iwl_mac_sta_remove(struct ieee80211_hw *hw,
  1162. struct ieee80211_vif *vif,
  1163. struct ieee80211_sta *sta)
  1164. {
  1165. int ret;
  1166. struct iwl_priv *priv = hw->priv;
  1167. IWL_DEBUG_INFO(priv, "received request to remove station %pM\n",
  1168. sta->addr);
  1169. ret = iwl_remove_station(priv, sta);
  1170. if (ret)
  1171. IWL_ERR(priv, "Error removing station %pM\n",
  1172. sta->addr);
  1173. return ret;
  1174. }
  1175. EXPORT_SYMBOL(iwl_mac_sta_remove);