blob: ef92d2705851ea278c9d1612653a523a18a53092 [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 Pedersenf743ff42012-04-18 19:23:43 -0700295 u32 rates, basic_rates = 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 Pedersenf743ff42012-04-18 19:23:43 -0700307 sta->sta.supp_rates[band] = rates;
Thomas Pedersene76781e2012-04-18 19:24:13 -0700308 if (elems->ht_cap_elem &&
Johannes Berg4bf88532012-11-09 11:39:59 +0100309 sdata->vif.bss_conf.chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700310 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
311 elems->ht_cap_elem,
312 &sta->sta.ht_cap);
313 else
314 memset(&sta->sta.ht_cap, 0, sizeof(sta->sta.ht_cap));
315
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700316 if (elems->ht_operation) {
Johannes Berg4bf88532012-11-09 11:39:59 +0100317 struct cfg80211_chan_def chandef;
318
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700319 if (!(elems->ht_operation->ht_param &
320 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
321 sta->sta.ht_cap.cap &=
322 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg4bf88532012-11-09 11:39:59 +0100323 ieee80211_ht_oper_to_chandef(sdata->vif.bss_conf.chandef.chan,
324 elems->ht_operation, &chandef);
325 sta->ch_width = chandef.width;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700326 }
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700327
Helmut Schaa59cf1d62012-11-27 18:03:13 +0100328 if (insert)
329 rate_control_rate_init(sta);
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800330out:
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700331 spin_unlock_bh(&sta->lock);
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800332}
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700333
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800334static struct sta_info *
335__mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *hw_addr)
336{
337 struct sta_info *sta;
338
339 if (sdata->local->num_sta >= MESH_MAX_PLINKS)
Thomas Pedersene87278e2012-04-26 15:01:06 -0700340 return NULL;
341
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800342 sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
343 if (!sta)
344 return NULL;
345
346 sta->plink_state = NL80211_PLINK_LISTEN;
347 init_timer(&sta->plink_timer);
348
349 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
350 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
351 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
352
353 set_sta_flag(sta, WLAN_STA_WME);
354
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700355 return sta;
356}
357
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800358static struct sta_info *
359mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *addr,
360 struct ieee802_11_elems *elems)
361{
362 struct sta_info *sta = NULL;
363
364 /* Userspace handles peer allocation when security is enabled */
365 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED)
366 cfg80211_notify_new_peer_candidate(sdata->dev, addr,
367 elems->ie_start,
368 elems->total_len,
369 GFP_KERNEL);
370 else
371 sta = __mesh_sta_info_alloc(sdata, addr);
372
373 return sta;
374}
375
376/*
377 * mesh_sta_info_get - return mesh sta info entry for @addr.
378 *
379 * @sdata: local meshif
380 * @addr: peer's address
381 * @elems: IEs from beacon or mesh peering frame.
382 *
383 * Return existing or newly allocated sta_info under RCU read lock.
384 * (re)initialize with given IEs.
385 */
386static struct sta_info *
387mesh_sta_info_get(struct ieee80211_sub_if_data *sdata,
388 u8 *addr, struct ieee802_11_elems *elems) __acquires(RCU)
389{
390 struct sta_info *sta = NULL;
391
392 rcu_read_lock();
393 sta = sta_info_get(sdata, addr);
394 if (sta) {
395 mesh_sta_info_init(sdata, sta, elems, false);
396 } else {
397 rcu_read_unlock();
398 /* can't run atomic */
399 sta = mesh_sta_info_alloc(sdata, addr, elems);
400 if (!sta) {
401 rcu_read_lock();
402 return NULL;
403 }
404
405 if (sta_info_insert_rcu(sta))
406 return NULL;
407 }
408
409 return sta;
410}
411
412/*
413 * mesh_neighbour_update - update or initialize new mesh neighbor.
414 *
415 * @sdata: local meshif
416 * @addr: peer's address
417 * @elems: IEs from beacon or mesh peering frame
418 *
419 * Initiates peering if appropriate.
420 */
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700421void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
422 u8 *hw_addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700423 struct ieee802_11_elems *elems)
424{
425 struct sta_info *sta;
426
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800427 sta = mesh_sta_info_get(sdata, hw_addr, elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700428 if (!sta)
429 goto out;
430
Javier Cardona1570ca52011-04-07 15:08:35 -0700431 if (mesh_peer_accepts_plinks(elems) &&
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700432 sta->plink_state == NL80211_PLINK_LISTEN &&
433 sdata->u.mesh.accepting_plinks &&
434 sdata->u.mesh.mshcfg.auto_open_plinks &&
435 rssi_threshold_check(sta, sdata))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100436 mesh_plink_open(sta);
437
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700438out:
Johannes Bergd0709a62008-02-25 16:27:46 +0100439 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100440}
441
442static void mesh_plink_timer(unsigned long data)
443{
444 struct sta_info *sta;
445 __le16 llid, plid, reason;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100446 struct ieee80211_sub_if_data *sdata;
Marco Porsch453e66f2012-11-21 18:40:32 -0800447 struct mesh_config *mshcfg;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100448
Johannes Bergd0709a62008-02-25 16:27:46 +0100449 /*
450 * This STA is valid because sta_info_destroy() will
451 * del_timer_sync() this timer after having made sure
452 * it cannot be readded (by deleting the plink.)
453 */
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100454 sta = (struct sta_info *) data;
455
Johannes Berg5bb644a2009-05-17 11:40:42 +0200456 if (sta->sdata->local->quiescing) {
457 sta->plink_timer_was_running = true;
458 return;
459 }
460
Johannes Berg07346f812008-05-03 01:02:02 +0200461 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100462 if (sta->ignore_plink_timer) {
463 sta->ignore_plink_timer = false;
Johannes Berg07346f812008-05-03 01:02:02 +0200464 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100465 return;
466 }
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200467 mpl_dbg(sta->sdata,
468 "Mesh plink timer for %pM fired on state %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700469 sta->sta.addr, sta->plink_state);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100470 reason = 0;
471 llid = sta->llid;
472 plid = sta->plid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100473 sdata = sta->sdata;
Marco Porsch453e66f2012-11-21 18:40:32 -0800474 mshcfg = &sdata->u.mesh.mshcfg;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100475
476 switch (sta->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -0700477 case NL80211_PLINK_OPN_RCVD:
478 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100479 /* retry timer */
Marco Porsch453e66f2012-11-21 18:40:32 -0800480 if (sta->plink_retries < mshcfg->dot11MeshMaxRetries) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100481 u32 rand;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200482 mpl_dbg(sta->sdata,
483 "Mesh plink for %pM (retry, timeout): %d %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700484 sta->sta.addr, sta->plink_retries,
485 sta->plink_timeout);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100486 get_random_bytes(&rand, sizeof(u32));
487 sta->plink_timeout = sta->plink_timeout +
488 rand % sta->plink_timeout;
489 ++sta->plink_retries;
Johannes Bergd0709a62008-02-25 16:27:46 +0100490 mod_plink_timer(sta, sta->plink_timeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200491 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700492 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
493 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100494 break;
495 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700496 reason = cpu_to_le16(WLAN_REASON_MESH_MAX_RETRIES);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100497 /* fall through on else */
Javier Cardona57cf8042011-05-13 10:45:43 -0700498 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100499 /* confirm timer */
500 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700501 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIRM_TIMEOUT);
Javier Cardona57cf8042011-05-13 10:45:43 -0700502 sta->plink_state = NL80211_PLINK_HOLDING;
Marco Porsch453e66f2012-11-21 18:40:32 -0800503 mod_plink_timer(sta, mshcfg->dot11MeshHoldingTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200504 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700505 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
506 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100507 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700508 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100509 /* holding timer */
Johannes Bergd0709a62008-02-25 16:27:46 +0100510 del_timer(&sta->plink_timer);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100511 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200512 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100513 break;
514 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200515 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100516 break;
517 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100518}
519
Johannes Berg5bb644a2009-05-17 11:40:42 +0200520#ifdef CONFIG_PM
521void mesh_plink_quiesce(struct sta_info *sta)
522{
523 if (del_timer_sync(&sta->plink_timer))
524 sta->plink_timer_was_running = true;
525}
526
527void mesh_plink_restart(struct sta_info *sta)
528{
529 if (sta->plink_timer_was_running) {
530 add_timer(&sta->plink_timer);
531 sta->plink_timer_was_running = false;
532 }
533}
534#endif
535
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100536static inline void mesh_plink_timer_set(struct sta_info *sta, int timeout)
537{
538 sta->plink_timer.expires = jiffies + (HZ * timeout / 1000);
539 sta->plink_timer.data = (unsigned long) sta;
540 sta->plink_timer.function = mesh_plink_timer;
541 sta->plink_timeout = timeout;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100542 add_timer(&sta->plink_timer);
543}
544
545int mesh_plink_open(struct sta_info *sta)
546{
547 __le16 llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100548 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100549
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200550 if (!test_sta_flag(sta, WLAN_STA_AUTH))
Javier Cardona53e80512011-04-07 15:08:32 -0700551 return -EPERM;
552
Johannes Berg07346f812008-05-03 01:02:02 +0200553 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100554 get_random_bytes(&llid, 2);
555 sta->llid = llid;
Chun-Yeow Yeoh9385d042012-09-14 14:18:31 +0800556 if (sta->plink_state != NL80211_PLINK_LISTEN &&
557 sta->plink_state != NL80211_PLINK_BLOCKED) {
Johannes Berg07346f812008-05-03 01:02:02 +0200558 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100559 return -EBUSY;
560 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700561 sta->plink_state = NL80211_PLINK_OPN_SNT;
Marco Porsch453e66f2012-11-21 18:40:32 -0800562 mesh_plink_timer_set(sta, sdata->u.mesh.mshcfg.dot11MeshRetryTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200563 spin_unlock_bh(&sta->lock);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200564 mpl_dbg(sdata,
565 "Mesh plink: starting establishment with %pM\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700566 sta->sta.addr);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100567
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700568 return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
Johannes Berg17741cd2008-09-11 00:02:02 +0200569 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100570}
571
572void mesh_plink_block(struct sta_info *sta)
573{
John W. Linvillec9370192010-06-21 17:14:07 -0400574 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschdf323812012-08-08 07:58:43 +0200575 u32 changed;
John W. Linvillec9370192010-06-21 17:14:07 -0400576
Johannes Berg07346f812008-05-03 01:02:02 +0200577 spin_lock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200578 changed = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700579 sta->plink_state = NL80211_PLINK_BLOCKED;
Johannes Berg07346f812008-05-03 01:02:02 +0200580 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400581
Marco Porschdf323812012-08-08 07:58:43 +0200582 ieee80211_bss_info_change_notify(sdata, changed);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100583}
584
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100585
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200586void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100587 size_t len, struct ieee80211_rx_status *rx_status)
588{
Marco Porsch453e66f2012-11-21 18:40:32 -0800589 struct mesh_config *mshcfg = &sdata->u.mesh.mshcfg;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100590 struct ieee802_11_elems elems;
591 struct sta_info *sta;
592 enum plink_event event;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700593 enum ieee80211_self_protected_actioncode ftype;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100594 size_t baselen;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700595 bool matches_local = true;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100596 u8 ie_len;
597 u8 *baseaddr;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700598 u32 changed = 0;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100599 __le16 plid, llid, reason;
Rui Paulo1460dd12009-11-09 23:46:48 +0000600 static const char *mplstates[] = {
Javier Cardona57cf8042011-05-13 10:45:43 -0700601 [NL80211_PLINK_LISTEN] = "LISTEN",
602 [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
603 [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
604 [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
605 [NL80211_PLINK_ESTAB] = "ESTAB",
606 [NL80211_PLINK_HOLDING] = "HOLDING",
607 [NL80211_PLINK_BLOCKED] = "BLOCKED"
Rui Paulo1460dd12009-11-09 23:46:48 +0000608 };
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100609
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200610 /* need action_code, aux */
611 if (len < IEEE80211_MIN_ACTION_SIZE + 3)
612 return;
613
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100614 if (is_multicast_ether_addr(mgmt->da)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200615 mpl_dbg(sdata,
616 "Mesh plink: ignore frame from multicast address\n");
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100617 return;
618 }
619
Thomas Pedersen8db09852011-08-12 20:01:00 -0700620 baseaddr = mgmt->u.action.u.self_prot.variable;
621 baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
622 if (mgmt->u.action.u.self_prot.action_code ==
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700623 WLAN_SP_MESH_PEERING_CONFIRM) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100624 baseaddr += 4;
David Woo70bdb6b2009-08-12 11:03:44 -0700625 baselen += 4;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100626 }
627 ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700628 if (!elems.peering) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200629 mpl_dbg(sdata,
630 "Mesh plink: missing necessary peer link ie\n");
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100631 return;
632 }
Javier Cardonab130e5c2011-05-03 16:57:07 -0700633 if (elems.rsn_len &&
634 sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200635 mpl_dbg(sdata,
636 "Mesh plink: can't establish link with secure peer\n");
Javier Cardona5cff5e02011-04-07 15:08:29 -0700637 return;
638 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100639
Thomas Pedersen8db09852011-08-12 20:01:00 -0700640 ftype = mgmt->u.action.u.self_prot.action_code;
641 ie_len = elems.peering_len;
642 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
643 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
644 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
645 && ie_len != 8)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200646 mpl_dbg(sdata,
647 "Mesh plink: incorrect plink ie length %d %d\n",
648 ftype, ie_len);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100649 return;
650 }
651
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700652 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
653 (!elems.mesh_id || !elems.mesh_config)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200654 mpl_dbg(sdata, "Mesh plink: missing necessary ie\n");
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100655 return;
656 }
657 /* Note the lines below are correct, the llid in the frame is the plid
658 * from the point of view of this host.
659 */
Thomas Pedersen8db09852011-08-12 20:01:00 -0700660 memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700661 if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
Thomas Pedersen8db09852011-08-12 20:01:00 -0700662 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
663 memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100664
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800665 /* WARNING: Only for sta pointer, is dropped & re-acquired */
Johannes Bergd0709a62008-02-25 16:27:46 +0100666 rcu_read_lock();
667
Johannes Bergabe60632009-11-25 17:46:18 +0100668 sta = sta_info_get(sdata, mgmt->sa);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700669 if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200670 mpl_dbg(sdata, "Mesh plink: cls or cnf from unknown peer\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100671 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100672 return;
673 }
674
Ashok Nagarajan55335132012-02-28 17:04:08 -0800675 if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
Ashok Nagarajan3d4f96992012-03-06 12:48:30 -0800676 !rssi_threshold_check(sta, sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200677 mpl_dbg(sdata, "Mesh plink: %pM does not meet rssi threshold\n",
Ashok Nagarajan3d4f96992012-03-06 12:48:30 -0800678 mgmt->sa);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800679 rcu_read_unlock();
680 return;
681 }
682
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200683 if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200684 mpl_dbg(sdata, "Mesh plink: Action frame from non-authed peer\n");
Javier Cardona53e80512011-04-07 15:08:32 -0700685 rcu_read_unlock();
686 return;
687 }
688
Javier Cardona57cf8042011-05-13 10:45:43 -0700689 if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100690 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100691 return;
692 }
693
694 /* Now we will figure out the appropriate event... */
695 event = PLINK_UNDEFINED;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700696 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700697 !mesh_matches_local(sdata, &elems)) {
Christian Lamparterd12c7452010-10-08 22:27:07 +0200698 matches_local = false;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100699 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700700 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100701 event = OPN_RJCT;
702 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700703 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100704 event = CNF_RJCT;
705 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700706 default:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100707 break;
708 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200709 }
710
711 if (!sta && !matches_local) {
712 rcu_read_unlock();
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700713 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200714 llid = 0;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700715 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
716 mgmt->sa, llid, plid, reason);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200717 return;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100718 } else if (!sta) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700719 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100720 if (!mesh_plink_free_count(sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200721 mpl_dbg(sdata, "Mesh plink error: no more free plinks\n");
Johannes Berg73651ee2008-02-25 16:27:47 +0100722 rcu_read_unlock();
723 return;
724 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100725 event = OPN_ACPT;
Christian Lamparterd12c7452010-10-08 22:27:07 +0200726 } else if (matches_local) {
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100727 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700728 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100729 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100730 (sta->plid && sta->plid != plid))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100731 event = OPN_IGNR;
732 else
733 event = OPN_ACPT;
734 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700735 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100736 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100737 (sta->llid != llid || sta->plid != plid))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100738 event = CNF_IGNR;
739 else
740 event = CNF_ACPT;
741 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700742 case WLAN_SP_MESH_PEERING_CLOSE:
Javier Cardona57cf8042011-05-13 10:45:43 -0700743 if (sta->plink_state == NL80211_PLINK_ESTAB)
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100744 /* Do not check for llid or plid. This does not
745 * follow the standard but since multiple plinks
746 * per sta are not supported, it is necessary in
747 * order to avoid a livelock when MP A sees an
748 * establish peer link to MP B but MP B does not
749 * see it. This can be caused by a timeout in
750 * B's peer link establishment or B beign
751 * restarted.
752 */
753 event = CLS_ACPT;
754 else if (sta->plid != plid)
755 event = CLS_IGNR;
756 else if (ie_len == 7 && sta->llid != llid)
757 event = CLS_IGNR;
758 else
759 event = CLS_ACPT;
760 break;
761 default:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200762 mpl_dbg(sdata, "Mesh plink: unknown frame subtype\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100763 rcu_read_unlock();
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100764 return;
765 }
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700766 }
767
768 if (event == OPN_ACPT) {
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800769 rcu_read_unlock();
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700770 /* allocate sta entry if necessary and update info */
Thomas Pedersen296fcba32013-01-23 12:18:12 -0800771 sta = mesh_sta_info_get(sdata, mgmt->sa, &elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700772 if (!sta) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200773 mpl_dbg(sdata, "Mesh plink: failed to init peer!\n");
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700774 rcu_read_unlock();
775 return;
776 }
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100777 }
778
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200779 mpl_dbg(sdata,
780 "Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
Rui Paulo1460dd12009-11-09 23:46:48 +0000781 mgmt->sa, mplstates[sta->plink_state],
Johannes Berg0c68ae262008-10-27 15:56:10 -0700782 le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
783 event);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100784 reason = 0;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700785 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100786 switch (sta->plink_state) {
787 /* spin_unlock as soon as state is updated at each case */
Javier Cardona57cf8042011-05-13 10:45:43 -0700788 case NL80211_PLINK_LISTEN:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100789 switch (event) {
790 case CLS_ACPT:
791 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200792 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100793 break;
794 case OPN_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700795 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100796 sta->plid = plid;
797 get_random_bytes(&llid, 2);
798 sta->llid = llid;
Marco Porsch453e66f2012-11-21 18:40:32 -0800799 mesh_plink_timer_set(sta,
800 mshcfg->dot11MeshRetryTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200801 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700802 mesh_plink_frame_tx(sdata,
803 WLAN_SP_MESH_PEERING_OPEN,
804 sta->sta.addr, llid, 0, 0);
805 mesh_plink_frame_tx(sdata,
806 WLAN_SP_MESH_PEERING_CONFIRM,
807 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100808 break;
809 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200810 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100811 break;
812 }
813 break;
814
Javier Cardona57cf8042011-05-13 10:45:43 -0700815 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100816 switch (event) {
817 case OPN_RJCT:
818 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700819 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100820 case CLS_ACPT:
821 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700822 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100823 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700824 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100825 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800826 mshcfg->dot11MeshHoldingTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100827 sta->ignore_plink_timer = true;
828
829 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200830 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700831 mesh_plink_frame_tx(sdata,
832 WLAN_SP_MESH_PEERING_CLOSE,
833 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100834 break;
835 case OPN_ACPT:
836 /* retry timer is left untouched */
Javier Cardona57cf8042011-05-13 10:45:43 -0700837 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100838 sta->plid = plid;
839 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200840 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700841 mesh_plink_frame_tx(sdata,
842 WLAN_SP_MESH_PEERING_CONFIRM,
843 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100844 break;
845 case CNF_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700846 sta->plink_state = NL80211_PLINK_CNF_RCVD;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100847 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800848 mshcfg->dot11MeshConfirmTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100849 sta->ignore_plink_timer = true;
850
Johannes Berg07346f812008-05-03 01:02:02 +0200851 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100852 break;
853 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200854 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100855 break;
856 }
857 break;
858
Javier Cardona57cf8042011-05-13 10:45:43 -0700859 case NL80211_PLINK_OPN_RCVD:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100860 switch (event) {
861 case OPN_RJCT:
862 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700863 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100864 case CLS_ACPT:
865 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700866 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100867 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700868 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100869 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800870 mshcfg->dot11MeshHoldingTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100871 sta->ignore_plink_timer = true;
872
873 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200874 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700875 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
876 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100877 break;
878 case OPN_ACPT:
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,
882 WLAN_SP_MESH_PEERING_CONFIRM,
883 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100884 break;
885 case CNF_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100886 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700887 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200888 spin_unlock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200889 changed |= mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700890 changed |= mesh_set_ht_prot_mode(sdata);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200891 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700892 sta->sta.addr);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100893 break;
894 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200895 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100896 break;
897 }
898 break;
899
Javier Cardona57cf8042011-05-13 10:45:43 -0700900 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100901 switch (event) {
902 case OPN_RJCT:
903 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700904 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100905 case CLS_ACPT:
906 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700907 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100908 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700909 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100910 if (!mod_plink_timer(sta,
Marco Porsch453e66f2012-11-21 18:40:32 -0800911 mshcfg->dot11MeshHoldingTimeout))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100912 sta->ignore_plink_timer = true;
913
914 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200915 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700916 mesh_plink_frame_tx(sdata,
917 WLAN_SP_MESH_PEERING_CLOSE,
918 sta->sta.addr, llid, plid, reason);
Johannes Bergff59dc72008-02-25 10:11:50 +0100919 break;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100920 case OPN_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100921 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700922 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200923 spin_unlock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200924 changed |= mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700925 changed |= mesh_set_ht_prot_mode(sdata);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200926 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700927 sta->sta.addr);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700928 mesh_plink_frame_tx(sdata,
929 WLAN_SP_MESH_PEERING_CONFIRM,
930 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100931 break;
932 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200933 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100934 break;
935 }
936 break;
937
Javier Cardona57cf8042011-05-13 10:45:43 -0700938 case NL80211_PLINK_ESTAB:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100939 switch (event) {
940 case CLS_ACPT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700941 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100942 sta->reason = reason;
Marco Porschdf323812012-08-08 07:58:43 +0200943 changed |= __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700944 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100945 llid = sta->llid;
Marco Porsch453e66f2012-11-21 18:40:32 -0800946 mod_plink_timer(sta, mshcfg->dot11MeshHoldingTimeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200947 spin_unlock_bh(&sta->lock);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700948 changed |= mesh_set_ht_prot_mode(sdata);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700949 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
950 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100951 break;
952 case OPN_ACPT:
953 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200954 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700955 mesh_plink_frame_tx(sdata,
956 WLAN_SP_MESH_PEERING_CONFIRM,
957 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100958 break;
959 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200960 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100961 break;
962 }
963 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700964 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100965 switch (event) {
966 case CLS_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100967 if (del_timer(&sta->plink_timer))
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100968 sta->ignore_plink_timer = 1;
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100969 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200970 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100971 break;
972 case OPN_ACPT:
973 case CNF_ACPT:
974 case OPN_RJCT:
975 case CNF_RJCT:
976 llid = sta->llid;
977 reason = sta->reason;
Johannes Berg07346f812008-05-03 01:02:02 +0200978 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700979 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
980 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100981 break;
982 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200983 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100984 }
985 break;
986 default:
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800987 /* should not get here, PLINK_BLOCKED is dealt with at the
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +0800988 * beginning of the function
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100989 */
Johannes Berg07346f812008-05-03 01:02:02 +0200990 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100991 break;
992 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100993
994 rcu_read_unlock();
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700995
996 if (changed)
997 ieee80211_bss_info_change_notify(sdata, changed);
Luis Carlos Coboc3896d22008-02-23 15:17:13 +0100998}