blob: 4e1d406fd9b1fb27e12c923218922c92ef6ebbf3 [file] [log] [blame]
Luis Carlos Coboc3896d22008-02-23 15:17:13 +01001/*
Rui Paulo264d9b72009-11-09 23:46:58 +00002 * Copyright (c) 2008, 2009 open80211s Ltd.
Luis Carlos Coboc3896d22008-02-23 15:17:13 +01003 * Author: Luis Carlos Cobo <luisca@cozybit.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/gfp.h>
Johannes Berg902acc72008-02-23 15:17:19 +010010#include <linux/kernel.h>
11#include <linux/random.h>
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010012#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040013#include "rate.h"
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010014#include "mesh.h"
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010015
Thomas Pedersen8db09852011-08-12 20:01:00 -070016#define PLINK_GET_LLID(p) (p + 2)
17#define PLINK_GET_PLID(p) (p + 4)
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010018
19#define mod_plink_timer(s, t) (mod_timer(&s->plink_timer, \
20 jiffies + HZ * t / 1000))
21
Ashok Nagarajan3d4f96992012-03-06 12:48:30 -080022/* We only need a valid sta if user configured a minimum rssi_threshold. */
23#define rssi_threshold_check(sta, sdata) \
Ashok Nagarajan55335132012-02-28 17:04:08 -080024 (sdata->u.mesh.mshcfg.rssi_threshold == 0 ||\
Ashok Nagarajan3d4f96992012-03-06 12:48:30 -080025 (sta && (s8) -ewma_read(&sta->avg_signal) > \
26 sdata->u.mesh.mshcfg.rssi_threshold))
Ashok Nagarajan55335132012-02-28 17:04:08 -080027
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010028enum plink_event {
29 PLINK_UNDEFINED,
30 OPN_ACPT,
31 OPN_RJCT,
32 OPN_IGNR,
33 CNF_ACPT,
34 CNF_RJCT,
35 CNF_IGNR,
36 CLS_ACPT,
37 CLS_IGNR
38};
39
Thomas Pedersenba4a14e2011-09-20 13:43:32 -070040static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
41 enum ieee80211_self_protected_actioncode action,
42 u8 *da, __le16 llid, __le16 plid, __le16 reason);
43
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010044/**
45 * mesh_plink_fsm_restart - restart a mesh peer link finite state machine
46 *
Rui Paulo23c7a292009-11-09 23:46:42 +000047 * @sta: mesh peer link to restart
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010048 *
Johannes Berg07346f812008-05-03 01:02:02 +020049 * Locking: this function must be called holding sta->lock
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010050 */
51static inline void mesh_plink_fsm_restart(struct sta_info *sta)
52{
Javier Cardona57cf8042011-05-13 10:45:43 -070053 sta->plink_state = NL80211_PLINK_LISTEN;
Luis Carlos Cobo37659ff2008-02-29 12:13:38 -080054 sta->llid = sta->plid = sta->reason = 0;
55 sta->plink_retries = 0;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +010056}
57
Ben Hutchings2c530402012-07-10 10:55:09 +000058/**
Ashok Nagarajancbf93222012-05-07 21:00:31 -070059 * mesh_set_ht_prot_mode - set correct HT protection mode
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -070060 *
Ashok Nagarajancbf93222012-05-07 21:00:31 -070061 * Section 9.23.3.5 of IEEE 80211-2012 describes the protection rules for HT
62 * mesh STA in a MBSS. Three HT protection modes are supported for now, non-HT
63 * mixed mode, 20MHz-protection and no-protection mode. non-HT mixed mode is
64 * selected if any non-HT peers are present in our MBSS. 20MHz-protection mode
65 * is selected if all peers in our 20/40MHz MBSS support HT and atleast one
66 * HT20 peer is present. Otherwise no-protection mode is selected.
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -070067 */
68static u32 mesh_set_ht_prot_mode(struct ieee80211_sub_if_data *sdata)
69{
70 struct ieee80211_local *local = sdata->local;
71 struct sta_info *sta;
72 u32 changed = 0;
73 u16 ht_opmode;
74 bool non_ht_sta = false, ht20_sta = false;
75
Johannes Berg4bf88532012-11-09 11:39:59 +010076 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -070077 return 0;
78
79 rcu_read_lock();
80 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Ashok Nagarajancbf93222012-05-07 21:00:31 -070081 if (sdata != sta->sdata ||
82 sta->plink_state != NL80211_PLINK_ESTAB)
83 continue;
84
Johannes Berg4bf88532012-11-09 11:39:59 +010085 switch (sta->ch_width) {
86 case NL80211_CHAN_WIDTH_20_NOHT:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +020087 mpl_dbg(sdata,
88 "mesh_plink %pM: nonHT sta (%pM) is present\n",
Ashok Nagarajancbf93222012-05-07 21:00:31 -070089 sdata->vif.addr, sta->sta.addr);
90 non_ht_sta = true;
91 goto out;
Johannes Berg4bf88532012-11-09 11:39:59 +010092 case NL80211_CHAN_WIDTH_20:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +020093 mpl_dbg(sdata,
94 "mesh_plink %pM: HT20 sta (%pM) is present\n",
Ashok Nagarajancbf93222012-05-07 21:00:31 -070095 sdata->vif.addr, sta->sta.addr);
96 ht20_sta = true;
97 default:
98 break;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -070099 }
100 }
101out:
102 rcu_read_unlock();
103
104 if (non_ht_sta)
105 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED;
Johannes Berg466f3102012-07-25 13:51:49 +0200106 else if (ht20_sta &&
Johannes Berg4bf88532012-11-09 11:39:59 +0100107 sdata->vif.bss_conf.chandef.width > NL80211_CHAN_WIDTH_20)
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700108 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_20MHZ;
109 else
110 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
111
112 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
113 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700114 sdata->u.mesh.mshcfg.ht_opmode = ht_opmode;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700115 changed = BSS_CHANGED_HT;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200116 mpl_dbg(sdata,
117 "mesh_plink %pM: protection mode changed to %d\n",
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700118 sdata->vif.addr, ht_opmode);
119 }
120
121 return changed;
122}
123
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100124/**
John W. Linvillec9370192010-06-21 17:14:07 -0400125 * __mesh_plink_deactivate - deactivate mesh peer link
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100126 *
127 * @sta: mesh peer link to deactivate
128 *
129 * All mesh paths with this peer as next hop will be flushed
Marco Porschdf323812012-08-08 07:58:43 +0200130 * Returns beacon changed flag if the beacon content changed.
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100131 *
Johannes Berg07346f812008-05-03 01:02:02 +0200132 * Locking: the caller must hold sta->lock
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100133 */
Marco Porschdf323812012-08-08 07:58:43 +0200134static u32 __mesh_plink_deactivate(struct sta_info *sta)
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100135{
Johannes Bergd0709a62008-02-25 16:27:46 +0100136 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschdf323812012-08-08 07:58:43 +0200137 u32 changed = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100138
Marco Porschdf323812012-08-08 07:58:43 +0200139 if (sta->plink_state == NL80211_PLINK_ESTAB)
140 changed = mesh_plink_dec_estab_count(sdata);
Javier Cardona57cf8042011-05-13 10:45:43 -0700141 sta->plink_state = NL80211_PLINK_BLOCKED;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100142 mesh_path_flush_by_nexthop(sta);
John W. Linvillec9370192010-06-21 17:14:07 -0400143
Marco Porschdf323812012-08-08 07:58:43 +0200144 return changed;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100145}
146
Johannes Berg902acc72008-02-23 15:17:19 +0100147/**
John W. Linvillec9370192010-06-21 17:14:07 -0400148 * mesh_plink_deactivate - deactivate mesh peer link
Johannes Berg902acc72008-02-23 15:17:19 +0100149 *
150 * @sta: mesh peer link to deactivate
151 *
152 * All mesh paths with this peer as next hop will be flushed
153 */
154void mesh_plink_deactivate(struct sta_info *sta)
155{
John W. Linvillec9370192010-06-21 17:14:07 -0400156 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschdf323812012-08-08 07:58:43 +0200157 u32 changed;
John W. Linvillec9370192010-06-21 17:14:07 -0400158
Johannes Berg07346f812008-05-03 01:02:02 +0200159 spin_lock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200160 changed = __mesh_plink_deactivate(sta);
Thomas Pedersenba4a14e2011-09-20 13:43:32 -0700161 sta->reason = cpu_to_le16(WLAN_REASON_MESH_PEER_CANCELED);
162 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
163 sta->sta.addr, sta->llid, sta->plid,
164 sta->reason);
Johannes Berg07346f812008-05-03 01:02:02 +0200165 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400166
Marco Porschdf323812012-08-08 07:58:43 +0200167 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg902acc72008-02-23 15:17:19 +0100168}
169
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200170static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700171 enum ieee80211_self_protected_actioncode action,
172 u8 *da, __le16 llid, __le16 plid, __le16 reason) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200173 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700174 struct sk_buff *skb;
Thomas Pedersene7570df2012-08-03 12:21:34 -0700175 struct ieee80211_tx_info *info;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100176 struct ieee80211_mgmt *mgmt;
177 bool include_plid = false;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700178 u16 peering_proto = 0;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700179 u8 *pos, ie_len = 4;
180 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
181 sizeof(mgmt->u.action.u.self_prot);
Thomas Pedersenf609a432012-08-03 12:21:35 -0700182 int err = -ENOMEM;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100183
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800184 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700185 hdr_len +
186 2 + /* capability info */
187 2 + /* AID */
188 2 + 8 + /* supported rates */
189 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
190 2 + sdata->u.mesh.mesh_id_len +
191 2 + sizeof(struct ieee80211_meshconf_ie) +
Thomas Pedersen176f3602011-10-26 14:47:27 -0700192 2 + sizeof(struct ieee80211_ht_cap) +
Johannes Berg074d46d2012-03-15 19:45:16 +0100193 2 + sizeof(struct ieee80211_ht_operation) +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700194 2 + 8 + /* peering IE */
195 sdata->u.mesh.ie_len);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100196 if (!skb)
197 return -1;
Thomas Pedersene7570df2012-08-03 12:21:34 -0700198 info = IEEE80211_SKB_CB(skb);
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800199 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700200 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
201 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700202 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
203 IEEE80211_STYPE_ACTION);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100204 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100205 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Javier Cardona915b5c52011-05-03 16:57:10 -0700206 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700207 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
208 mgmt->u.action.u.self_prot.action_code = action;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100209
Thomas Pedersen8db09852011-08-12 20:01:00 -0700210 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
Johannes Berg55de9082012-07-26 17:24:39 +0200211 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
212
Thomas Pedersen8db09852011-08-12 20:01:00 -0700213 /* capability info */
214 pos = skb_put(skb, 2);
215 memset(pos, 0, 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700216 if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
Thomas Pedersen8db09852011-08-12 20:01:00 -0700217 /* AID */
218 pos = skb_put(skb, 2);
Rui Paulo77fa76b2009-11-09 23:46:52 +0000219 memcpy(pos + 2, &plid, 2);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100220 }
Johannes Berg55de9082012-07-26 17:24:39 +0200221 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
222 ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700223 mesh_add_rsn_ie(skb, sdata) ||
224 mesh_add_meshid_ie(skb, sdata) ||
225 mesh_add_meshconf_ie(skb, sdata))
Thomas Pedersenf609a432012-08-03 12:21:35 -0700226 goto free;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700227 } else { /* WLAN_SP_MESH_PEERING_CLOSE */
Thomas Pedersene7570df2012-08-03 12:21:34 -0700228 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700229 if (mesh_add_meshid_ie(skb, sdata))
Thomas Pedersenf609a432012-08-03 12:21:35 -0700230 goto free;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100231 }
232
Thomas Pedersen8db09852011-08-12 20:01:00 -0700233 /* Add Mesh Peering Management element */
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100234 switch (action) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700235 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100236 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700237 case WLAN_SP_MESH_PEERING_CONFIRM:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700238 ie_len += 2;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100239 include_plid = true;
240 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700241 case WLAN_SP_MESH_PEERING_CLOSE:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700242 if (plid) {
243 ie_len += 2;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100244 include_plid = true;
245 }
Thomas Pedersen8db09852011-08-12 20:01:00 -0700246 ie_len += 2; /* reason code */
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100247 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700248 default:
Thomas Pedersenf609a432012-08-03 12:21:35 -0700249 err = -EINVAL;
250 goto free;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100251 }
252
Thomas Pedersen8db09852011-08-12 20:01:00 -0700253 if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
Thomas Pedersenf609a432012-08-03 12:21:35 -0700254 goto free;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700255
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100256 pos = skb_put(skb, 2 + ie_len);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700257 *pos++ = WLAN_EID_PEER_MGMT;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100258 *pos++ = ie_len;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700259 memcpy(pos, &peering_proto, 2);
260 pos += 2;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100261 memcpy(pos, &llid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700262 pos += 2;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100263 if (include_plid) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100264 memcpy(pos, &plid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700265 pos += 2;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100266 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700267 if (action == WLAN_SP_MESH_PEERING_CLOSE) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100268 memcpy(pos, &reason, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700269 pos += 2;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100270 }
Thomas Pedersen176f3602011-10-26 14:47:27 -0700271
272 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
273 if (mesh_add_ht_cap_ie(skb, sdata) ||
Johannes Berg074d46d2012-03-15 19:45:16 +0100274 mesh_add_ht_oper_ie(skb, sdata))
Thomas Pedersenf609a432012-08-03 12:21:35 -0700275 goto free;
Thomas Pedersen176f3602011-10-26 14:47:27 -0700276 }
277
Thomas Pedersen8db09852011-08-12 20:01:00 -0700278 if (mesh_add_vendor_ies(skb, sdata))
Thomas Pedersenf609a432012-08-03 12:21:35 -0700279 goto free;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100280
Johannes Berg62ae67b2009-11-18 18:42:05 +0100281 ieee80211_tx_skb(sdata, skb);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100282 return 0;
Thomas Pedersenf609a432012-08-03 12:21:35 -0700283free:
284 kfree_skb(skb);
285 return err;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100286}
287
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800288static void mesh_sta_info_init(struct ieee80211_sub_if_data *sdata,
289 struct sta_info *sta,
290 struct ieee802_11_elems *elems, bool insert)
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100291{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200292 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +0200293 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700294 struct ieee80211_supported_band *sband;
Thomas Pedersenf68d7762013-01-23 12:18:13 -0800295 u32 rates, basic_rates = 0, changed = 0;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100296
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700297 sband = local->hw.wiphy->bands[band];
298 rates = ieee80211_sta_get_rates(local, elems, band, &basic_rates);
Johannes Bergd0709a62008-02-25 16:27:46 +0100299
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700300 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100301 sta->last_rx = jiffies;
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800302
303 /* rates and capabilities don't change during peering */
304 if (sta->plink_state == NL80211_PLINK_ESTAB)
305 goto out;
Chun-Yeow Yeohbae35d92012-07-24 11:52:35 +0800306
Thomas Pedersenf68d7762013-01-23 12:18:13 -0800307 if (sta->sta.supp_rates[band] != rates)
308 changed |= IEEE80211_RC_SUPP_RATES_CHANGED;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700309 sta->sta.supp_rates[band] = rates;
Thomas Pedersene76781e2012-04-18 19:24:13 -0700310 if (elems->ht_cap_elem &&
Johannes Berg4bf88532012-11-09 11:39:59 +0100311 sdata->vif.bss_conf.chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700312 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
313 elems->ht_cap_elem,
314 &sta->sta.ht_cap);
315 else
316 memset(&sta->sta.ht_cap, 0, sizeof(sta->sta.ht_cap));
317
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700318 if (elems->ht_operation) {
Johannes Berg4bf88532012-11-09 11:39:59 +0100319 struct cfg80211_chan_def chandef;
320
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700321 if (!(elems->ht_operation->ht_param &
322 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
323 sta->sta.ht_cap.cap &=
324 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg4bf88532012-11-09 11:39:59 +0100325 ieee80211_ht_oper_to_chandef(sdata->vif.bss_conf.chandef.chan,
326 elems->ht_operation, &chandef);
Thomas Pedersenf68d7762013-01-23 12:18:13 -0800327 if (sta->ch_width != chandef.width)
328 changed |= IEEE80211_RC_BW_CHANGED;
Johannes Berg4bf88532012-11-09 11:39:59 +0100329 sta->ch_width = chandef.width;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700330 }
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700331
Helmut Schaa59cf1d62012-11-27 18:03:13 +0100332 if (insert)
333 rate_control_rate_init(sta);
Thomas Pedersenf68d7762013-01-23 12:18:13 -0800334 else
335 rate_control_rate_update(local, sband, sta, changed);
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800336out:
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700337 spin_unlock_bh(&sta->lock);
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800338}
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700339
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800340static struct sta_info *
341__mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *hw_addr)
342{
343 struct sta_info *sta;
344
345 if (sdata->local->num_sta >= MESH_MAX_PLINKS)
Thomas Pedersene87278e2012-04-26 15:01:06 -0700346 return NULL;
347
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800348 sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
349 if (!sta)
350 return NULL;
351
352 sta->plink_state = NL80211_PLINK_LISTEN;
353 init_timer(&sta->plink_timer);
354
355 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
356 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
357 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
358
359 set_sta_flag(sta, WLAN_STA_WME);
360
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700361 return sta;
362}
363
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800364static struct sta_info *
365mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *addr,
366 struct ieee802_11_elems *elems)
367{
368 struct sta_info *sta = NULL;
369
370 /* Userspace handles peer allocation when security is enabled */
371 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED)
372 cfg80211_notify_new_peer_candidate(sdata->dev, addr,
373 elems->ie_start,
374 elems->total_len,
375 GFP_KERNEL);
376 else
377 sta = __mesh_sta_info_alloc(sdata, addr);
378
379 return sta;
380}
381
382/*
383 * mesh_sta_info_get - return mesh sta info entry for @addr.
384 *
385 * @sdata: local meshif
386 * @addr: peer's address
387 * @elems: IEs from beacon or mesh peering frame.
388 *
389 * Return existing or newly allocated sta_info under RCU read lock.
390 * (re)initialize with given IEs.
391 */
392static struct sta_info *
393mesh_sta_info_get(struct ieee80211_sub_if_data *sdata,
394 u8 *addr, struct ieee802_11_elems *elems) __acquires(RCU)
395{
396 struct sta_info *sta = NULL;
397
398 rcu_read_lock();
399 sta = sta_info_get(sdata, addr);
400 if (sta) {
401 mesh_sta_info_init(sdata, sta, elems, false);
402 } else {
403 rcu_read_unlock();
404 /* can't run atomic */
405 sta = mesh_sta_info_alloc(sdata, addr, elems);
406 if (!sta) {
407 rcu_read_lock();
408 return NULL;
409 }
410
411 if (sta_info_insert_rcu(sta))
412 return NULL;
413 }
414
415 return sta;
416}
417
418/*
419 * mesh_neighbour_update - update or initialize new mesh neighbor.
420 *
421 * @sdata: local meshif
422 * @addr: peer's address
423 * @elems: IEs from beacon or mesh peering frame
424 *
425 * Initiates peering if appropriate.
426 */
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700427void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
428 u8 *hw_addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700429 struct ieee802_11_elems *elems)
430{
431 struct sta_info *sta;
432
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800433 sta = mesh_sta_info_get(sdata, hw_addr, elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700434 if (!sta)
435 goto out;
436
Javier Cardona1570ca52011-04-07 15:08:35 -0700437 if (mesh_peer_accepts_plinks(elems) &&
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700438 sta->plink_state == NL80211_PLINK_LISTEN &&
439 sdata->u.mesh.accepting_plinks &&
440 sdata->u.mesh.mshcfg.auto_open_plinks &&
441 rssi_threshold_check(sta, sdata))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100442 mesh_plink_open(sta);
443
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700444out:
Johannes Bergd0709a62008-02-25 16:27:46 +0100445 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100446}
447
448static void mesh_plink_timer(unsigned long data)
449{
450 struct sta_info *sta;
451 __le16 llid, plid, reason;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100452 struct ieee80211_sub_if_data *sdata;
Marco Porsch453e66f2012-11-21 18:40:32 -0800453 struct mesh_config *mshcfg;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100454
Johannes Bergd0709a62008-02-25 16:27:46 +0100455 /*
456 * This STA is valid because sta_info_destroy() will
457 * del_timer_sync() this timer after having made sure
458 * it cannot be readded (by deleting the plink.)
459 */
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100460 sta = (struct sta_info *) data;
461
Johannes Berg5bb644a2009-05-17 11:40:42 +0200462 if (sta->sdata->local->quiescing) {
463 sta->plink_timer_was_running = true;
464 return;
465 }
466
Johannes Berg07346f812008-05-03 01:02:02 +0200467 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100468 if (sta->ignore_plink_timer) {
469 sta->ignore_plink_timer = false;
Johannes Berg07346f812008-05-03 01:02:02 +0200470 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100471 return;
472 }
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200473 mpl_dbg(sta->sdata,
474 "Mesh plink timer for %pM fired on state %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700475 sta->sta.addr, sta->plink_state);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100476 reason = 0;
477 llid = sta->llid;
478 plid = sta->plid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100479 sdata = sta->sdata;
Marco Porsch453e66f2012-11-21 18:40:32 -0800480 mshcfg = &sdata->u.mesh.mshcfg;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100481
482 switch (sta->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -0700483 case NL80211_PLINK_OPN_RCVD:
484 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100485 /* retry timer */
Marco Porsch453e66f2012-11-21 18:40:32 -0800486 if (sta->plink_retries < mshcfg->dot11MeshMaxRetries) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100487 u32 rand;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200488 mpl_dbg(sta->sdata,
489 "Mesh plink for %pM (retry, timeout): %d %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700490 sta->sta.addr, sta->plink_retries,
491 sta->plink_timeout);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100492 get_random_bytes(&rand, sizeof(u32));
493 sta->plink_timeout = sta->plink_timeout +
494 rand % sta->plink_timeout;
495 ++sta->plink_retries;
Johannes Bergd0709a62008-02-25 16:27:46 +0100496 mod_plink_timer(sta, sta->plink_timeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200497 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700498 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
499 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100500 break;
501 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700502 reason = cpu_to_le16(WLAN_REASON_MESH_MAX_RETRIES);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100503 /* fall through on else */
Javier Cardona57cf8042011-05-13 10:45:43 -0700504 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100505 /* confirm timer */
506 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700507 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIRM_TIMEOUT);
Javier Cardona57cf8042011-05-13 10:45:43 -0700508 sta->plink_state = NL80211_PLINK_HOLDING;
Marco Porsch453e66f2012-11-21 18:40:32 -0800509 mod_plink_timer(sta, mshcfg->dot11MeshHoldingTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200510 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700511 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
512 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100513 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700514 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100515 /* holding timer */
Johannes Bergd0709a62008-02-25 16:27:46 +0100516 del_timer(&sta->plink_timer);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100517 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200518 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100519 break;
520 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200521 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100522 break;
523 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100524}
525
Johannes Berg5bb644a2009-05-17 11:40:42 +0200526#ifdef CONFIG_PM
527void mesh_plink_quiesce(struct sta_info *sta)
528{
529 if (del_timer_sync(&sta->plink_timer))
530 sta->plink_timer_was_running = true;
531}
532
533void mesh_plink_restart(struct sta_info *sta)
534{
535 if (sta->plink_timer_was_running) {
536 add_timer(&sta->plink_timer);
537 sta->plink_timer_was_running = false;
538 }
539}
540#endif
541
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100542static inline void mesh_plink_timer_set(struct sta_info *sta, int timeout)
543{
544 sta->plink_timer.expires = jiffies + (HZ * timeout / 1000);
545 sta->plink_timer.data = (unsigned long) sta;
546 sta->plink_timer.function = mesh_plink_timer;
547 sta->plink_timeout = timeout;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100548 add_timer(&sta->plink_timer);
549}
550
551int mesh_plink_open(struct sta_info *sta)
552{
553 __le16 llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100554 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100555
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200556 if (!test_sta_flag(sta, WLAN_STA_AUTH))
Javier Cardona53e80512011-04-07 15:08:32 -0700557 return -EPERM;
558
Johannes Berg07346f812008-05-03 01:02:02 +0200559 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100560 get_random_bytes(&llid, 2);
561 sta->llid = llid;
Chun-Yeow Yeoh9385d042012-09-14 14:18:31 +0800562 if (sta->plink_state != NL80211_PLINK_LISTEN &&
563 sta->plink_state != NL80211_PLINK_BLOCKED) {
Johannes Berg07346f812008-05-03 01:02:02 +0200564 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100565 return -EBUSY;
566 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700567 sta->plink_state = NL80211_PLINK_OPN_SNT;
Marco Porsch453e66f2012-11-21 18:40:32 -0800568 mesh_plink_timer_set(sta, sdata->u.mesh.mshcfg.dot11MeshRetryTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200569 spin_unlock_bh(&sta->lock);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200570 mpl_dbg(sdata,
571 "Mesh plink: starting establishment with %pM\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700572 sta->sta.addr);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100573
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700574 return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
Johannes Berg17741cd2008-09-11 00:02:02 +0200575 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100576}
577
578void mesh_plink_block(struct sta_info *sta)
579{
John W. Linvillec9370192010-06-21 17:14:07 -0400580 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschdf323812012-08-08 07:58:43 +0200581 u32 changed;
John W. Linvillec9370192010-06-21 17:14:07 -0400582
Johannes Berg07346f812008-05-03 01:02:02 +0200583 spin_lock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200584 changed = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700585 sta->plink_state = NL80211_PLINK_BLOCKED;
Johannes Berg07346f812008-05-03 01:02:02 +0200586 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400587
Marco Porschdf323812012-08-08 07:58:43 +0200588 ieee80211_bss_info_change_notify(sdata, changed);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100589}
590
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100591
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200592void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100593 size_t len, struct ieee80211_rx_status *rx_status)
594{
Marco Porsch453e66f2012-11-21 18:40:32 -0800595 struct mesh_config *mshcfg = &sdata->u.mesh.mshcfg;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100596 struct ieee802_11_elems elems;
597 struct sta_info *sta;
598 enum plink_event event;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700599 enum ieee80211_self_protected_actioncode ftype;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100600 size_t baselen;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700601 bool matches_local = true;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100602 u8 ie_len;
603 u8 *baseaddr;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700604 u32 changed = 0;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100605 __le16 plid, llid, reason;
Rui Paulo1460dd12009-11-09 23:46:48 +0000606 static const char *mplstates[] = {
Javier Cardona57cf8042011-05-13 10:45:43 -0700607 [NL80211_PLINK_LISTEN] = "LISTEN",
608 [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
609 [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
610 [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
611 [NL80211_PLINK_ESTAB] = "ESTAB",
612 [NL80211_PLINK_HOLDING] = "HOLDING",
613 [NL80211_PLINK_BLOCKED] = "BLOCKED"
Rui Paulo1460dd12009-11-09 23:46:48 +0000614 };
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100615
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200616 /* need action_code, aux */
617 if (len < IEEE80211_MIN_ACTION_SIZE + 3)
618 return;
619
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100620 if (is_multicast_ether_addr(mgmt->da)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200621 mpl_dbg(sdata,
622 "Mesh plink: ignore frame from multicast address\n");
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100623 return;
624 }
625
Thomas Pedersen8db09852011-08-12 20:01:00 -0700626 baseaddr = mgmt->u.action.u.self_prot.variable;
627 baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
628 if (mgmt->u.action.u.self_prot.action_code ==
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700629 WLAN_SP_MESH_PEERING_CONFIRM) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100630 baseaddr += 4;
David Woo70bdb6b2009-08-12 11:03:44 -0700631 baselen += 4;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100632 }
633 ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700634 if (!elems.peering) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200635 mpl_dbg(sdata,
636 "Mesh plink: missing necessary peer link ie\n");
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100637 return;
638 }
Javier Cardonab130e5c2011-05-03 16:57:07 -0700639 if (elems.rsn_len &&
640 sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200641 mpl_dbg(sdata,
642 "Mesh plink: can't establish link with secure peer\n");
Javier Cardona5cff5e02011-04-07 15:08:29 -0700643 return;
644 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100645
Thomas Pedersen8db09852011-08-12 20:01:00 -0700646 ftype = mgmt->u.action.u.self_prot.action_code;
647 ie_len = elems.peering_len;
648 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
649 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
650 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
651 && ie_len != 8)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200652 mpl_dbg(sdata,
653 "Mesh plink: incorrect plink ie length %d %d\n",
654 ftype, ie_len);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100655 return;
656 }
657
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700658 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
659 (!elems.mesh_id || !elems.mesh_config)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200660 mpl_dbg(sdata, "Mesh plink: missing necessary ie\n");
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100661 return;
662 }
663 /* Note the lines below are correct, the llid in the frame is the plid
664 * from the point of view of this host.
665 */
Thomas Pedersen8db09852011-08-12 20:01:00 -0700666 memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700667 if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
Thomas Pedersen8db09852011-08-12 20:01:00 -0700668 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
669 memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100670
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800671 /* WARNING: Only for sta pointer, is dropped & re-acquired */
Johannes Bergd0709a62008-02-25 16:27:46 +0100672 rcu_read_lock();
673
Johannes Bergabe60632009-11-25 17:46:18 +0100674 sta = sta_info_get(sdata, mgmt->sa);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700675 if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200676 mpl_dbg(sdata, "Mesh plink: cls or cnf from unknown peer\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100677 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100678 return;
679 }
680
Ashok Nagarajan55335132012-02-28 17:04:08 -0800681 if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
Ashok Nagarajan3d4f96992012-03-06 12:48:30 -0800682 !rssi_threshold_check(sta, sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200683 mpl_dbg(sdata, "Mesh plink: %pM does not meet rssi threshold\n",
Ashok Nagarajan3d4f96992012-03-06 12:48:30 -0800684 mgmt->sa);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800685 rcu_read_unlock();
686 return;
687 }
688
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200689 if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200690 mpl_dbg(sdata, "Mesh plink: Action frame from non-authed peer\n");
Javier Cardona53e80512011-04-07 15:08:32 -0700691 rcu_read_unlock();
692 return;
693 }
694
Javier Cardona57cf8042011-05-13 10:45:43 -0700695 if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100696 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100697 return;
698 }
699
700 /* Now we will figure out the appropriate event... */
701 event = PLINK_UNDEFINED;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700702 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700703 !mesh_matches_local(sdata, &elems)) {
Christian Lamparterd12c7452010-10-08 22:27:07 +0200704 matches_local = false;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100705 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700706 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100707 event = OPN_RJCT;
708 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700709 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100710 event = CNF_RJCT;
711 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700712 default:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100713 break;
714 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200715 }
716
717 if (!sta && !matches_local) {
718 rcu_read_unlock();
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700719 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200720 llid = 0;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700721 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
722 mgmt->sa, llid, plid, reason);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200723 return;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100724 } else if (!sta) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700725 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100726 if (!mesh_plink_free_count(sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200727 mpl_dbg(sdata, "Mesh plink error: no more free plinks\n");
Johannes Berg73651ee2008-02-25 16:27:47 +0100728 rcu_read_unlock();
729 return;
730 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100731 event = OPN_ACPT;
Christian Lamparterd12c7452010-10-08 22:27:07 +0200732 } else if (matches_local) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100733 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700734 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100735 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100736 (sta->plid && sta->plid != plid))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100737 event = OPN_IGNR;
738 else
739 event = OPN_ACPT;
740 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700741 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100742 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100743 (sta->llid != llid || sta->plid != plid))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100744 event = CNF_IGNR;
745 else
746 event = CNF_ACPT;
747 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700748 case WLAN_SP_MESH_PEERING_CLOSE:
Javier Cardona57cf8042011-05-13 10:45:43 -0700749 if (sta->plink_state == NL80211_PLINK_ESTAB)
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100750 /* Do not check for llid or plid. This does not
751 * follow the standard but since multiple plinks
752 * per sta are not supported, it is necessary in
753 * order to avoid a livelock when MP A sees an
754 * establish peer link to MP B but MP B does not
755 * see it. This can be caused by a timeout in
756 * B's peer link establishment or B beign
757 * restarted.
758 */
759 event = CLS_ACPT;
760 else if (sta->plid != plid)
761 event = CLS_IGNR;
762 else if (ie_len == 7 && sta->llid != llid)
763 event = CLS_IGNR;
764 else
765 event = CLS_ACPT;
766 break;
767 default:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200768 mpl_dbg(sdata, "Mesh plink: unknown frame subtype\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100769 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100770 return;
771 }
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700772 }
773
774 if (event == OPN_ACPT) {
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800775 rcu_read_unlock();
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700776 /* allocate sta entry if necessary and update info */
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800777 sta = mesh_sta_info_get(sdata, mgmt->sa, &elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700778 if (!sta) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200779 mpl_dbg(sdata, "Mesh plink: failed to init peer!\n");
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700780 rcu_read_unlock();
781 return;
782 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100783 }
784
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200785 mpl_dbg(sdata,
786 "Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
Rui Paulo1460dd12009-11-09 23:46:48 +0000787 mgmt->sa, mplstates[sta->plink_state],
Johannes Berg0c68ae262008-10-27 15:56:10 -0700788 le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
789 event);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100790 reason = 0;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700791 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100792 switch (sta->plink_state) {
793 /* spin_unlock as soon as state is updated at each case */
Javier Cardona57cf8042011-05-13 10:45:43 -0700794 case NL80211_PLINK_LISTEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100795 switch (event) {
796 case CLS_ACPT:
797 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200798 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100799 break;
800 case OPN_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700801 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100802 sta->plid = plid;
803 get_random_bytes(&llid, 2);
804 sta->llid = llid;
Marco Porsch453e66f2012-11-21 18:40:32 -0800805 mesh_plink_timer_set(sta,
806 mshcfg->dot11MeshRetryTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200807 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700808 mesh_plink_frame_tx(sdata,
809 WLAN_SP_MESH_PEERING_OPEN,
810 sta->sta.addr, llid, 0, 0);
811 mesh_plink_frame_tx(sdata,
812 WLAN_SP_MESH_PEERING_CONFIRM,
813 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100814 break;
815 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200816 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100817 break;
818 }
819 break;
820
Javier Cardona57cf8042011-05-13 10:45:43 -0700821 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100822 switch (event) {
823 case OPN_RJCT:
824 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700825 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100826 case CLS_ACPT:
827 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700828 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100829 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700830 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100831 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800832 mshcfg->dot11MeshHoldingTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100833 sta->ignore_plink_timer = true;
834
835 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200836 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700837 mesh_plink_frame_tx(sdata,
838 WLAN_SP_MESH_PEERING_CLOSE,
839 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100840 break;
841 case OPN_ACPT:
842 /* retry timer is left untouched */
Javier Cardona57cf8042011-05-13 10:45:43 -0700843 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100844 sta->plid = plid;
845 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200846 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700847 mesh_plink_frame_tx(sdata,
848 WLAN_SP_MESH_PEERING_CONFIRM,
849 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100850 break;
851 case CNF_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700852 sta->plink_state = NL80211_PLINK_CNF_RCVD;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100853 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800854 mshcfg->dot11MeshConfirmTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100855 sta->ignore_plink_timer = true;
856
Johannes Berg07346f812008-05-03 01:02:02 +0200857 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100858 break;
859 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200860 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100861 break;
862 }
863 break;
864
Javier Cardona57cf8042011-05-13 10:45:43 -0700865 case NL80211_PLINK_OPN_RCVD:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100866 switch (event) {
867 case OPN_RJCT:
868 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700869 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100870 case CLS_ACPT:
871 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700872 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100873 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700874 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100875 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800876 mshcfg->dot11MeshHoldingTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100877 sta->ignore_plink_timer = true;
878
879 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200880 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700881 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
882 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100883 break;
884 case OPN_ACPT:
885 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200886 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700887 mesh_plink_frame_tx(sdata,
888 WLAN_SP_MESH_PEERING_CONFIRM,
889 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100890 break;
891 case CNF_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100892 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700893 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200894 spin_unlock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200895 changed |= mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700896 changed |= mesh_set_ht_prot_mode(sdata);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200897 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700898 sta->sta.addr);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100899 break;
900 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200901 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100902 break;
903 }
904 break;
905
Javier Cardona57cf8042011-05-13 10:45:43 -0700906 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100907 switch (event) {
908 case OPN_RJCT:
909 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700910 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100911 case CLS_ACPT:
912 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700913 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100914 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700915 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100916 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800917 mshcfg->dot11MeshHoldingTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100918 sta->ignore_plink_timer = true;
919
920 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200921 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700922 mesh_plink_frame_tx(sdata,
923 WLAN_SP_MESH_PEERING_CLOSE,
924 sta->sta.addr, llid, plid, reason);
Johannes Bergff59dc72008-02-25 10:11:50 +0100925 break;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100926 case OPN_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100927 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700928 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200929 spin_unlock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200930 changed |= mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700931 changed |= mesh_set_ht_prot_mode(sdata);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200932 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700933 sta->sta.addr);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700934 mesh_plink_frame_tx(sdata,
935 WLAN_SP_MESH_PEERING_CONFIRM,
936 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100937 break;
938 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200939 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100940 break;
941 }
942 break;
943
Javier Cardona57cf8042011-05-13 10:45:43 -0700944 case NL80211_PLINK_ESTAB:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100945 switch (event) {
946 case CLS_ACPT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700947 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100948 sta->reason = reason;
Marco Porschdf323812012-08-08 07:58:43 +0200949 changed |= __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700950 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100951 llid = sta->llid;
Marco Porsch453e66f2012-11-21 18:40:32 -0800952 mod_plink_timer(sta, mshcfg->dot11MeshHoldingTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200953 spin_unlock_bh(&sta->lock);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700954 changed |= mesh_set_ht_prot_mode(sdata);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700955 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
956 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100957 break;
958 case OPN_ACPT:
959 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200960 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700961 mesh_plink_frame_tx(sdata,
962 WLAN_SP_MESH_PEERING_CONFIRM,
963 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100964 break;
965 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200966 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100967 break;
968 }
969 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700970 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100971 switch (event) {
972 case CLS_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100973 if (del_timer(&sta->plink_timer))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100974 sta->ignore_plink_timer = 1;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100975 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200976 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100977 break;
978 case OPN_ACPT:
979 case CNF_ACPT:
980 case OPN_RJCT:
981 case CNF_RJCT:
982 llid = sta->llid;
983 reason = sta->reason;
Johannes Berg07346f812008-05-03 01:02:02 +0200984 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700985 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
986 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100987 break;
988 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200989 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100990 }
991 break;
992 default:
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800993 /* should not get here, PLINK_BLOCKED is dealt with at the
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +0800994 * beginning of the function
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100995 */
Johannes Berg07346f812008-05-03 01:02:02 +0200996 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100997 break;
998 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100999
1000 rcu_read_unlock();
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -07001001
1002 if (changed)
1003 ieee80211_bss_info_change_notify(sdata, changed);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +01001004}