blob: 2e0ae73106972cf5886d76d3f58318e65b716118 [file] [log] [blame]
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +01001/*
Rui Paulo264d9b72009-11-09 23:46:58 +00002 * Copyright (c) 2008, 2009 open80211s Ltd.
Luis Carlos Coboc3896d2c2008-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 Coboc3896d2c2008-02-23 15:17:13 +010012#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040013#include "rate.h"
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010014#include "mesh.h"
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010015
16#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
17#define mpl_dbg(fmt, args...) printk(KERN_DEBUG fmt, ##args)
18#else
19#define mpl_dbg(fmt, args...) do { (void)(0); } while (0)
20#endif
21
Thomas Pedersen8db09852011-08-12 20:01:00 -070022#define PLINK_GET_LLID(p) (p + 2)
23#define PLINK_GET_PLID(p) (p + 4)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010024
25#define mod_plink_timer(s, t) (mod_timer(&s->plink_timer, \
26 jiffies + HZ * t / 1000))
27
Johannes Berg472dbc42008-09-11 00:01:49 +020028#define dot11MeshMaxRetries(s) (s->u.mesh.mshcfg.dot11MeshMaxRetries)
29#define dot11MeshRetryTimeout(s) (s->u.mesh.mshcfg.dot11MeshRetryTimeout)
30#define dot11MeshConfirmTimeout(s) (s->u.mesh.mshcfg.dot11MeshConfirmTimeout)
31#define dot11MeshHoldingTimeout(s) (s->u.mesh.mshcfg.dot11MeshHoldingTimeout)
32#define dot11MeshMaxPeerLinks(s) (s->u.mesh.mshcfg.dot11MeshMaxPeerLinks)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010033
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -080034/* We only need a valid sta if user configured a minimum rssi_threshold. */
35#define rssi_threshold_check(sta, sdata) \
Ashok Nagarajan55335132012-02-28 17:04:08 -080036 (sdata->u.mesh.mshcfg.rssi_threshold == 0 ||\
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -080037 (sta && (s8) -ewma_read(&sta->avg_signal) > \
38 sdata->u.mesh.mshcfg.rssi_threshold))
Ashok Nagarajan55335132012-02-28 17:04:08 -080039
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010040enum plink_event {
41 PLINK_UNDEFINED,
42 OPN_ACPT,
43 OPN_RJCT,
44 OPN_IGNR,
45 CNF_ACPT,
46 CNF_RJCT,
47 CNF_IGNR,
48 CLS_ACPT,
49 CLS_IGNR
50};
51
Thomas Pedersenba4a14e2011-09-20 13:43:32 -070052static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
53 enum ieee80211_self_protected_actioncode action,
54 u8 *da, __le16 llid, __le16 plid, __le16 reason);
55
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010056static inline
57void mesh_plink_inc_estab_count(struct ieee80211_sub_if_data *sdata)
58{
Johannes Berg472dbc42008-09-11 00:01:49 +020059 atomic_inc(&sdata->u.mesh.mshstats.estab_plinks);
Johannes Bergd0709a62008-02-25 16:27:46 +010060 mesh_accept_plinks_update(sdata);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010061}
62
63static inline
64void mesh_plink_dec_estab_count(struct ieee80211_sub_if_data *sdata)
65{
Johannes Berg472dbc42008-09-11 00:01:49 +020066 atomic_dec(&sdata->u.mesh.mshstats.estab_plinks);
Johannes Bergd0709a62008-02-25 16:27:46 +010067 mesh_accept_plinks_update(sdata);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010068}
69
70/**
71 * mesh_plink_fsm_restart - restart a mesh peer link finite state machine
72 *
Rui Paulo23c7a292009-11-09 23:46:42 +000073 * @sta: mesh peer link to restart
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010074 *
Johannes Berg07346f812008-05-03 01:02:02 +020075 * Locking: this function must be called holding sta->lock
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010076 */
77static inline void mesh_plink_fsm_restart(struct sta_info *sta)
78{
Javier Cardona57cf8042011-05-13 10:45:43 -070079 sta->plink_state = NL80211_PLINK_LISTEN;
Luis Carlos Cobo37659ff2008-02-29 12:13:38 -080080 sta->llid = sta->plid = sta->reason = 0;
81 sta->plink_retries = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010082}
83
Johannes Berg93e5deb2008-04-01 15:21:00 +020084/*
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -070085 * Allocate mesh sta entry and insert into station table
Johannes Berg93e5deb2008-04-01 15:21:00 +020086 */
Johannes Berg03e44972008-02-27 09:56:40 +010087static struct sta_info *mesh_plink_alloc(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -070088 u8 *hw_addr)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010089{
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010090 struct sta_info *sta;
91
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -070092 if (sdata->local->num_sta >= MESH_MAX_PLINKS)
Johannes Berg73651ee2008-02-25 16:27:47 +010093 return NULL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010094
Johannes Berg34e89502010-02-03 13:59:58 +010095 sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +010096 if (!sta)
97 return NULL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010098
Johannes Berg83d5cc02012-01-12 09:31:10 +010099 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
100 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
101 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100102
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200103 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100104
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100105 return sta;
106}
107
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700108/** mesh_set_ht_prot_mode - set correct HT protection mode
109 *
110 * Section 9.23.3.5 of IEEE 80211s standard describes the protection rules for
111 * HT mesh STA in a MBSS. Three HT protection modes are supported for now,
112 * non-HT mixed mode, 20MHz-protection and no-protection mode. non-HT mixed
113 * mode is selected if any non-HT peers are present in our MBSS.
114 * 20MHz-protection mode is selected if all peers in our 20/40MHz MBSS support
115 * HT and atleast one HT20 peer is present. Otherwise no-protection mode is
116 * selected.
117 */
118static u32 mesh_set_ht_prot_mode(struct ieee80211_sub_if_data *sdata)
119{
120 struct ieee80211_local *local = sdata->local;
121 struct sta_info *sta;
122 u32 changed = 0;
123 u16 ht_opmode;
124 bool non_ht_sta = false, ht20_sta = false;
125
126 if (local->_oper_channel_type == NL80211_CHAN_NO_HT)
127 return 0;
128
129 rcu_read_lock();
130 list_for_each_entry_rcu(sta, &local->sta_list, list) {
131 if (sdata == sta->sdata &&
132 sta->plink_state == NL80211_PLINK_ESTAB) {
133 switch (sta->ch_type) {
134 case NL80211_CHAN_NO_HT:
135 mpl_dbg("mesh_plink %pM: nonHT sta (%pM) is present",
136 sdata->vif.addr, sta->sta.addr);
137 non_ht_sta = true;
138 goto out;
139 case NL80211_CHAN_HT20:
140 mpl_dbg("mesh_plink %pM: HT20 sta (%pM) is present",
141 sdata->vif.addr, sta->sta.addr);
142 ht20_sta = true;
143 default:
144 break;
145 }
146 }
147 }
148out:
149 rcu_read_unlock();
150
151 if (non_ht_sta)
152 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED;
153 else if (ht20_sta && local->_oper_channel_type > NL80211_CHAN_HT20)
154 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_20MHZ;
155 else
156 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
157
158 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
159 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
160 changed = BSS_CHANGED_HT;
161 mpl_dbg("mesh_plink %pM: protection mode changed to %d",
162 sdata->vif.addr, ht_opmode);
163 }
164
165 return changed;
166}
167
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100168/**
John W. Linvillec9370192010-06-21 17:14:07 -0400169 * __mesh_plink_deactivate - deactivate mesh peer link
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100170 *
171 * @sta: mesh peer link to deactivate
172 *
173 * All mesh paths with this peer as next hop will be flushed
174 *
Johannes Berg07346f812008-05-03 01:02:02 +0200175 * Locking: the caller must hold sta->lock
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100176 */
John W. Linvillec9370192010-06-21 17:14:07 -0400177static bool __mesh_plink_deactivate(struct sta_info *sta)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100178{
Johannes Bergd0709a62008-02-25 16:27:46 +0100179 struct ieee80211_sub_if_data *sdata = sta->sdata;
John W. Linvillec9370192010-06-21 17:14:07 -0400180 bool deactivated = false;
Johannes Bergd0709a62008-02-25 16:27:46 +0100181
Javier Cardona57cf8042011-05-13 10:45:43 -0700182 if (sta->plink_state == NL80211_PLINK_ESTAB) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100183 mesh_plink_dec_estab_count(sdata);
John W. Linvillec9370192010-06-21 17:14:07 -0400184 deactivated = true;
185 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700186 sta->plink_state = NL80211_PLINK_BLOCKED;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100187 mesh_path_flush_by_nexthop(sta);
John W. Linvillec9370192010-06-21 17:14:07 -0400188
189 return deactivated;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100190}
191
Johannes Berg902acc72008-02-23 15:17:19 +0100192/**
John W. Linvillec9370192010-06-21 17:14:07 -0400193 * mesh_plink_deactivate - deactivate mesh peer link
Johannes Berg902acc72008-02-23 15:17:19 +0100194 *
195 * @sta: mesh peer link to deactivate
196 *
197 * All mesh paths with this peer as next hop will be flushed
198 */
199void mesh_plink_deactivate(struct sta_info *sta)
200{
John W. Linvillec9370192010-06-21 17:14:07 -0400201 struct ieee80211_sub_if_data *sdata = sta->sdata;
202 bool deactivated;
203
Johannes Berg07346f812008-05-03 01:02:02 +0200204 spin_lock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400205 deactivated = __mesh_plink_deactivate(sta);
Thomas Pedersenba4a14e2011-09-20 13:43:32 -0700206 sta->reason = cpu_to_le16(WLAN_REASON_MESH_PEER_CANCELED);
207 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
208 sta->sta.addr, sta->llid, sta->plid,
209 sta->reason);
Johannes Berg07346f812008-05-03 01:02:02 +0200210 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400211
212 if (deactivated)
213 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +0100214}
215
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200216static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700217 enum ieee80211_self_protected_actioncode action,
218 u8 *da, __le16 llid, __le16 plid, __le16 reason) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200219 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700220 struct sk_buff *skb;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100221 struct ieee80211_mgmt *mgmt;
222 bool include_plid = false;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700223 u16 peering_proto = 0;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700224 u8 *pos, ie_len = 4;
225 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
226 sizeof(mgmt->u.action.u.self_prot);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100227
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800228 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700229 hdr_len +
230 2 + /* capability info */
231 2 + /* AID */
232 2 + 8 + /* supported rates */
233 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
234 2 + sdata->u.mesh.mesh_id_len +
235 2 + sizeof(struct ieee80211_meshconf_ie) +
Thomas Pedersen176f3602011-10-26 14:47:27 -0700236 2 + sizeof(struct ieee80211_ht_cap) +
Johannes Berg074d46d2012-03-15 19:45:16 +0100237 2 + sizeof(struct ieee80211_ht_operation) +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700238 2 + 8 + /* peering IE */
239 sdata->u.mesh.ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100240 if (!skb)
241 return -1;
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800242 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700243 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
244 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700245 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
246 IEEE80211_STYPE_ACTION);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100247 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100248 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Javier Cardona915b5c52011-05-03 16:57:10 -0700249 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700250 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
251 mgmt->u.action.u.self_prot.action_code = action;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100252
Thomas Pedersen8db09852011-08-12 20:01:00 -0700253 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
254 /* capability info */
255 pos = skb_put(skb, 2);
256 memset(pos, 0, 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700257 if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
Thomas Pedersen8db09852011-08-12 20:01:00 -0700258 /* AID */
259 pos = skb_put(skb, 2);
Rui Paulo77fa76b2009-11-09 23:46:52 +0000260 memcpy(pos + 2, &plid, 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100261 }
Ashok Nagarajan657c3e02012-04-02 21:21:20 -0700262 if (ieee80211_add_srates_ie(&sdata->vif, skb, true) ||
263 ieee80211_add_ext_srates_ie(&sdata->vif, skb, true) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700264 mesh_add_rsn_ie(skb, sdata) ||
265 mesh_add_meshid_ie(skb, sdata) ||
266 mesh_add_meshconf_ie(skb, sdata))
267 return -1;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700268 } else { /* WLAN_SP_MESH_PEERING_CLOSE */
269 if (mesh_add_meshid_ie(skb, sdata))
270 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100271 }
272
Thomas Pedersen8db09852011-08-12 20:01:00 -0700273 /* Add Mesh Peering Management element */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100274 switch (action) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700275 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100276 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700277 case WLAN_SP_MESH_PEERING_CONFIRM:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700278 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100279 include_plid = true;
280 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700281 case WLAN_SP_MESH_PEERING_CLOSE:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700282 if (plid) {
283 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100284 include_plid = true;
285 }
Thomas Pedersen8db09852011-08-12 20:01:00 -0700286 ie_len += 2; /* reason code */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100287 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700288 default:
289 return -EINVAL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100290 }
291
Thomas Pedersen8db09852011-08-12 20:01:00 -0700292 if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
293 return -ENOMEM;
294
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100295 pos = skb_put(skb, 2 + ie_len);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700296 *pos++ = WLAN_EID_PEER_MGMT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100297 *pos++ = ie_len;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700298 memcpy(pos, &peering_proto, 2);
299 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100300 memcpy(pos, &llid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700301 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100302 if (include_plid) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100303 memcpy(pos, &plid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700304 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100305 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700306 if (action == WLAN_SP_MESH_PEERING_CLOSE) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100307 memcpy(pos, &reason, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700308 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100309 }
Thomas Pedersen176f3602011-10-26 14:47:27 -0700310
311 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
312 if (mesh_add_ht_cap_ie(skb, sdata) ||
Johannes Berg074d46d2012-03-15 19:45:16 +0100313 mesh_add_ht_oper_ie(skb, sdata))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700314 return -1;
315 }
316
Thomas Pedersen8db09852011-08-12 20:01:00 -0700317 if (mesh_add_vendor_ies(skb, sdata))
318 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100319
Johannes Berg62ae67b2009-11-18 18:42:05 +0100320 ieee80211_tx_skb(sdata, skb);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100321 return 0;
322}
323
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700324/* mesh_peer_init - initialize new mesh peer and return resulting sta_info
325 *
326 * @sdata: local meshif
327 * @addr: peer's address
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700328 * @elems: IEs from beacon or mesh peering frame
329 *
330 * call under RCU
331 */
332static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata,
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700333 u8 *addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700334 struct ieee802_11_elems *elems)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100335{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200336 struct ieee80211_local *local = sdata->local;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700337 enum ieee80211_band band = local->oper_channel->band;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700338 struct ieee80211_supported_band *sband;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700339 u32 rates, basic_rates = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100340 struct sta_info *sta;
Thomas Pedersene87278e2012-04-26 15:01:06 -0700341 bool insert = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100342
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700343 sband = local->hw.wiphy->bands[band];
344 rates = ieee80211_sta_get_rates(local, elems, band, &basic_rates);
Johannes Bergd0709a62008-02-25 16:27:46 +0100345
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700346 sta = sta_info_get(sdata, addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100347 if (!sta) {
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700348 sta = mesh_plink_alloc(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100349 if (!sta)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700350 return NULL;
Thomas Pedersene87278e2012-04-26 15:01:06 -0700351 insert = true;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100352 }
353
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700354 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100355 sta->last_rx = jiffies;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700356 sta->sta.supp_rates[band] = rates;
Thomas Pedersene76781e2012-04-18 19:24:13 -0700357 if (elems->ht_cap_elem &&
358 sdata->local->_oper_channel_type != NL80211_CHAN_NO_HT)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700359 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
360 elems->ht_cap_elem,
361 &sta->sta.ht_cap);
362 else
363 memset(&sta->sta.ht_cap, 0, sizeof(sta->sta.ht_cap));
364
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700365 if (elems->ht_operation) {
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700366 if (!(elems->ht_operation->ht_param &
367 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
368 sta->sta.ht_cap.cap &=
369 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700370 sta->ch_type =
371 ieee80211_ht_oper_to_channel_type(elems->ht_operation);
372 }
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700373
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700374 rate_control_rate_init(sta);
375 spin_unlock_bh(&sta->lock);
376
Thomas Pedersene87278e2012-04-26 15:01:06 -0700377 if (insert && sta_info_insert(sta))
378 return NULL;
379
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700380 return sta;
381}
382
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700383void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
384 u8 *hw_addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700385 struct ieee802_11_elems *elems)
386{
387 struct sta_info *sta;
388
389 /* Userspace handles peer allocation when security is enabled */
390 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED) {
391 cfg80211_notify_new_peer_candidate(sdata->dev, hw_addr,
392 elems->ie_start,
393 elems->total_len,
394 GFP_KERNEL);
395 return;
396 }
397
398 rcu_read_lock();
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700399 sta = mesh_peer_init(sdata, hw_addr, elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700400 if (!sta)
401 goto out;
402
Javier Cardona1570ca52011-04-07 15:08:35 -0700403 if (mesh_peer_accepts_plinks(elems) &&
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700404 sta->plink_state == NL80211_PLINK_LISTEN &&
405 sdata->u.mesh.accepting_plinks &&
406 sdata->u.mesh.mshcfg.auto_open_plinks &&
407 rssi_threshold_check(sta, sdata))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100408 mesh_plink_open(sta);
409
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700410out:
Johannes Bergd0709a62008-02-25 16:27:46 +0100411 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100412}
413
414static void mesh_plink_timer(unsigned long data)
415{
416 struct sta_info *sta;
417 __le16 llid, plid, reason;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100418 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100419
Johannes Bergd0709a62008-02-25 16:27:46 +0100420 /*
421 * This STA is valid because sta_info_destroy() will
422 * del_timer_sync() this timer after having made sure
423 * it cannot be readded (by deleting the plink.)
424 */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100425 sta = (struct sta_info *) data;
426
Johannes Berg5bb644a2009-05-17 11:40:42 +0200427 if (sta->sdata->local->quiescing) {
428 sta->plink_timer_was_running = true;
429 return;
430 }
431
Johannes Berg07346f812008-05-03 01:02:02 +0200432 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100433 if (sta->ignore_plink_timer) {
434 sta->ignore_plink_timer = false;
Johannes Berg07346f812008-05-03 01:02:02 +0200435 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100436 return;
437 }
Johannes Berg0c68ae262008-10-27 15:56:10 -0700438 mpl_dbg("Mesh plink timer for %pM fired on state %d\n",
439 sta->sta.addr, sta->plink_state);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100440 reason = 0;
441 llid = sta->llid;
442 plid = sta->plid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100443 sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100444
445 switch (sta->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -0700446 case NL80211_PLINK_OPN_RCVD:
447 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100448 /* retry timer */
449 if (sta->plink_retries < dot11MeshMaxRetries(sdata)) {
450 u32 rand;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700451 mpl_dbg("Mesh plink for %pM (retry, timeout): %d %d\n",
452 sta->sta.addr, sta->plink_retries,
453 sta->plink_timeout);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100454 get_random_bytes(&rand, sizeof(u32));
455 sta->plink_timeout = sta->plink_timeout +
456 rand % sta->plink_timeout;
457 ++sta->plink_retries;
Johannes Bergd0709a62008-02-25 16:27:46 +0100458 mod_plink_timer(sta, sta->plink_timeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200459 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700460 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
461 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100462 break;
463 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700464 reason = cpu_to_le16(WLAN_REASON_MESH_MAX_RETRIES);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100465 /* fall through on else */
Javier Cardona57cf8042011-05-13 10:45:43 -0700466 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100467 /* confirm timer */
468 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700469 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIRM_TIMEOUT);
Javier Cardona57cf8042011-05-13 10:45:43 -0700470 sta->plink_state = NL80211_PLINK_HOLDING;
Johannes Bergd0709a62008-02-25 16:27:46 +0100471 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200472 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700473 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
474 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100475 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700476 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100477 /* holding timer */
Johannes Bergd0709a62008-02-25 16:27:46 +0100478 del_timer(&sta->plink_timer);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100479 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200480 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100481 break;
482 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200483 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100484 break;
485 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100486}
487
Johannes Berg5bb644a2009-05-17 11:40:42 +0200488#ifdef CONFIG_PM
489void mesh_plink_quiesce(struct sta_info *sta)
490{
491 if (del_timer_sync(&sta->plink_timer))
492 sta->plink_timer_was_running = true;
493}
494
495void mesh_plink_restart(struct sta_info *sta)
496{
497 if (sta->plink_timer_was_running) {
498 add_timer(&sta->plink_timer);
499 sta->plink_timer_was_running = false;
500 }
501}
502#endif
503
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100504static inline void mesh_plink_timer_set(struct sta_info *sta, int timeout)
505{
506 sta->plink_timer.expires = jiffies + (HZ * timeout / 1000);
507 sta->plink_timer.data = (unsigned long) sta;
508 sta->plink_timer.function = mesh_plink_timer;
509 sta->plink_timeout = timeout;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100510 add_timer(&sta->plink_timer);
511}
512
513int mesh_plink_open(struct sta_info *sta)
514{
515 __le16 llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100516 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100517
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200518 if (!test_sta_flag(sta, WLAN_STA_AUTH))
Javier Cardona53e80512011-04-07 15:08:32 -0700519 return -EPERM;
520
Johannes Berg07346f812008-05-03 01:02:02 +0200521 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100522 get_random_bytes(&llid, 2);
523 sta->llid = llid;
Javier Cardona57cf8042011-05-13 10:45:43 -0700524 if (sta->plink_state != NL80211_PLINK_LISTEN) {
Johannes Berg07346f812008-05-03 01:02:02 +0200525 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100526 return -EBUSY;
527 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700528 sta->plink_state = NL80211_PLINK_OPN_SNT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100529 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200530 spin_unlock_bh(&sta->lock);
Johannes Berg0c68ae262008-10-27 15:56:10 -0700531 mpl_dbg("Mesh plink: starting establishment with %pM\n",
532 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100533
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700534 return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
Johannes Berg17741cd2008-09-11 00:02:02 +0200535 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100536}
537
538void mesh_plink_block(struct sta_info *sta)
539{
John W. Linvillec9370192010-06-21 17:14:07 -0400540 struct ieee80211_sub_if_data *sdata = sta->sdata;
541 bool deactivated;
542
Johannes Berg07346f812008-05-03 01:02:02 +0200543 spin_lock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400544 deactivated = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700545 sta->plink_state = NL80211_PLINK_BLOCKED;
Johannes Berg07346f812008-05-03 01:02:02 +0200546 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400547
548 if (deactivated)
549 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100550}
551
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100552
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200553void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100554 size_t len, struct ieee80211_rx_status *rx_status)
555{
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100556 struct ieee802_11_elems elems;
557 struct sta_info *sta;
558 enum plink_event event;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700559 enum ieee80211_self_protected_actioncode ftype;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100560 size_t baselen;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700561 bool matches_local = true;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100562 u8 ie_len;
563 u8 *baseaddr;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700564 u32 changed = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100565 __le16 plid, llid, reason;
Rui Paulo1460dd12009-11-09 23:46:48 +0000566#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
567 static const char *mplstates[] = {
Javier Cardona57cf8042011-05-13 10:45:43 -0700568 [NL80211_PLINK_LISTEN] = "LISTEN",
569 [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
570 [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
571 [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
572 [NL80211_PLINK_ESTAB] = "ESTAB",
573 [NL80211_PLINK_HOLDING] = "HOLDING",
574 [NL80211_PLINK_BLOCKED] = "BLOCKED"
Rui Paulo1460dd12009-11-09 23:46:48 +0000575 };
576#endif
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100577
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200578 /* need action_code, aux */
579 if (len < IEEE80211_MIN_ACTION_SIZE + 3)
580 return;
581
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100582 if (is_multicast_ether_addr(mgmt->da)) {
583 mpl_dbg("Mesh plink: ignore frame from multicast address");
584 return;
585 }
586
Thomas Pedersen8db09852011-08-12 20:01:00 -0700587 baseaddr = mgmt->u.action.u.self_prot.variable;
588 baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
589 if (mgmt->u.action.u.self_prot.action_code ==
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700590 WLAN_SP_MESH_PEERING_CONFIRM) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100591 baseaddr += 4;
David Woo70bdb6b2009-08-12 11:03:44 -0700592 baselen += 4;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100593 }
594 ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700595 if (!elems.peering) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100596 mpl_dbg("Mesh plink: missing necessary peer link ie\n");
597 return;
598 }
Javier Cardonab130e5c2011-05-03 16:57:07 -0700599 if (elems.rsn_len &&
600 sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
Javier Cardona5cff5e02011-04-07 15:08:29 -0700601 mpl_dbg("Mesh plink: can't establish link with secure peer\n");
602 return;
603 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100604
Thomas Pedersen8db09852011-08-12 20:01:00 -0700605 ftype = mgmt->u.action.u.self_prot.action_code;
606 ie_len = elems.peering_len;
607 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
608 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
609 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
610 && ie_len != 8)) {
Rui Paulo09383932009-11-09 23:46:43 +0000611 mpl_dbg("Mesh plink: incorrect plink ie length %d %d\n",
612 ftype, ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100613 return;
614 }
615
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700616 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
617 (!elems.mesh_id || !elems.mesh_config)) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100618 mpl_dbg("Mesh plink: missing necessary ie\n");
619 return;
620 }
621 /* Note the lines below are correct, the llid in the frame is the plid
622 * from the point of view of this host.
623 */
Thomas Pedersen8db09852011-08-12 20:01:00 -0700624 memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700625 if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
Thomas Pedersen8db09852011-08-12 20:01:00 -0700626 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
627 memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100628
Johannes Bergd0709a62008-02-25 16:27:46 +0100629 rcu_read_lock();
630
Johannes Bergabe60632009-11-25 17:46:18 +0100631 sta = sta_info_get(sdata, mgmt->sa);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700632 if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100633 mpl_dbg("Mesh plink: cls or cnf from unknown peer\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100634 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100635 return;
636 }
637
Ashok Nagarajan55335132012-02-28 17:04:08 -0800638 if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -0800639 !rssi_threshold_check(sta, sdata)) {
Ashok Nagarajan55335132012-02-28 17:04:08 -0800640 mpl_dbg("Mesh plink: %pM does not meet rssi threshold\n",
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -0800641 mgmt->sa);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800642 rcu_read_unlock();
643 return;
644 }
645
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200646 if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
Javier Cardona53e80512011-04-07 15:08:32 -0700647 mpl_dbg("Mesh plink: Action frame from non-authed peer\n");
648 rcu_read_unlock();
649 return;
650 }
651
Javier Cardona57cf8042011-05-13 10:45:43 -0700652 if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100653 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100654 return;
655 }
656
657 /* Now we will figure out the appropriate event... */
658 event = PLINK_UNDEFINED;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700659 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700660 !mesh_matches_local(sdata, &elems)) {
Christian Lamparterd12c7452010-10-08 22:27:07 +0200661 matches_local = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100662 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700663 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100664 event = OPN_RJCT;
665 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700666 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100667 event = CNF_RJCT;
668 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700669 default:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100670 break;
671 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200672 }
673
674 if (!sta && !matches_local) {
675 rcu_read_unlock();
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700676 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200677 llid = 0;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700678 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
679 mgmt->sa, llid, plid, reason);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200680 return;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100681 } else if (!sta) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700682 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100683 if (!mesh_plink_free_count(sdata)) {
684 mpl_dbg("Mesh plink error: no more free plinks\n");
Johannes Berg73651ee2008-02-25 16:27:47 +0100685 rcu_read_unlock();
686 return;
687 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100688 event = OPN_ACPT;
Christian Lamparterd12c7452010-10-08 22:27:07 +0200689 } else if (matches_local) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100690 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700691 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100692 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100693 (sta->plid && sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100694 event = OPN_IGNR;
695 else
696 event = OPN_ACPT;
697 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700698 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100699 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100700 (sta->llid != llid || sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100701 event = CNF_IGNR;
702 else
703 event = CNF_ACPT;
704 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700705 case WLAN_SP_MESH_PEERING_CLOSE:
Javier Cardona57cf8042011-05-13 10:45:43 -0700706 if (sta->plink_state == NL80211_PLINK_ESTAB)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100707 /* Do not check for llid or plid. This does not
708 * follow the standard but since multiple plinks
709 * per sta are not supported, it is necessary in
710 * order to avoid a livelock when MP A sees an
711 * establish peer link to MP B but MP B does not
712 * see it. This can be caused by a timeout in
713 * B's peer link establishment or B beign
714 * restarted.
715 */
716 event = CLS_ACPT;
717 else if (sta->plid != plid)
718 event = CLS_IGNR;
719 else if (ie_len == 7 && sta->llid != llid)
720 event = CLS_IGNR;
721 else
722 event = CLS_ACPT;
723 break;
724 default:
725 mpl_dbg("Mesh plink: unknown frame subtype\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100726 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100727 return;
728 }
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700729 }
730
731 if (event == OPN_ACPT) {
732 /* allocate sta entry if necessary and update info */
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700733 sta = mesh_peer_init(sdata, mgmt->sa, &elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700734 if (!sta) {
735 mpl_dbg("Mesh plink: failed to init peer!\n");
736 rcu_read_unlock();
737 return;
738 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100739 }
740
Rui Paulo1460dd12009-11-09 23:46:48 +0000741 mpl_dbg("Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
742 mgmt->sa, mplstates[sta->plink_state],
Johannes Berg0c68ae262008-10-27 15:56:10 -0700743 le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
744 event);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100745 reason = 0;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700746 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100747 switch (sta->plink_state) {
748 /* spin_unlock as soon as state is updated at each case */
Javier Cardona57cf8042011-05-13 10:45:43 -0700749 case NL80211_PLINK_LISTEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100750 switch (event) {
751 case CLS_ACPT:
752 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200753 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100754 break;
755 case OPN_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700756 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100757 sta->plid = plid;
758 get_random_bytes(&llid, 2);
759 sta->llid = llid;
760 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200761 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700762 mesh_plink_frame_tx(sdata,
763 WLAN_SP_MESH_PEERING_OPEN,
764 sta->sta.addr, llid, 0, 0);
765 mesh_plink_frame_tx(sdata,
766 WLAN_SP_MESH_PEERING_CONFIRM,
767 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100768 break;
769 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200770 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100771 break;
772 }
773 break;
774
Javier Cardona57cf8042011-05-13 10:45:43 -0700775 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100776 switch (event) {
777 case OPN_RJCT:
778 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700779 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100780 case CLS_ACPT:
781 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700782 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100783 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700784 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100785 if (!mod_plink_timer(sta,
786 dot11MeshHoldingTimeout(sdata)))
787 sta->ignore_plink_timer = true;
788
789 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200790 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700791 mesh_plink_frame_tx(sdata,
792 WLAN_SP_MESH_PEERING_CLOSE,
793 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100794 break;
795 case OPN_ACPT:
796 /* retry timer is left untouched */
Javier Cardona57cf8042011-05-13 10:45:43 -0700797 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100798 sta->plid = plid;
799 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200800 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700801 mesh_plink_frame_tx(sdata,
802 WLAN_SP_MESH_PEERING_CONFIRM,
803 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100804 break;
805 case CNF_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700806 sta->plink_state = NL80211_PLINK_CNF_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100807 if (!mod_plink_timer(sta,
808 dot11MeshConfirmTimeout(sdata)))
809 sta->ignore_plink_timer = true;
810
Johannes Berg07346f812008-05-03 01:02:02 +0200811 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100812 break;
813 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200814 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100815 break;
816 }
817 break;
818
Javier Cardona57cf8042011-05-13 10:45:43 -0700819 case NL80211_PLINK_OPN_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100820 switch (event) {
821 case OPN_RJCT:
822 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700823 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100824 case CLS_ACPT:
825 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700826 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100827 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700828 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100829 if (!mod_plink_timer(sta,
830 dot11MeshHoldingTimeout(sdata)))
831 sta->ignore_plink_timer = true;
832
833 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200834 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700835 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
836 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100837 break;
838 case OPN_ACPT:
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 Coboc3896d2c2008-02-23 15:17:13 +0100844 break;
845 case CNF_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100846 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700847 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200848 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400849 mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700850 changed |= mesh_set_ht_prot_mode(sdata);
851 changed |= BSS_CHANGED_BEACON;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700852 mpl_dbg("Mesh plink with %pM ESTABLISHED\n",
853 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100854 break;
855 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200856 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100857 break;
858 }
859 break;
860
Javier Cardona57cf8042011-05-13 10:45:43 -0700861 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100862 switch (event) {
863 case OPN_RJCT:
864 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700865 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100866 case CLS_ACPT:
867 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700868 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100869 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700870 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100871 if (!mod_plink_timer(sta,
872 dot11MeshHoldingTimeout(sdata)))
873 sta->ignore_plink_timer = true;
874
875 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200876 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700877 mesh_plink_frame_tx(sdata,
878 WLAN_SP_MESH_PEERING_CLOSE,
879 sta->sta.addr, llid, plid, reason);
Johannes Bergff59dc72008-02-25 10:11:50 +0100880 break;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100881 case OPN_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100882 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700883 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200884 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400885 mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700886 changed |= mesh_set_ht_prot_mode(sdata);
887 changed |= BSS_CHANGED_BEACON;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700888 mpl_dbg("Mesh plink with %pM ESTABLISHED\n",
889 sta->sta.addr);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700890 mesh_plink_frame_tx(sdata,
891 WLAN_SP_MESH_PEERING_CONFIRM,
892 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100893 break;
894 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200895 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100896 break;
897 }
898 break;
899
Javier Cardona57cf8042011-05-13 10:45:43 -0700900 case NL80211_PLINK_ESTAB:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100901 switch (event) {
902 case CLS_ACPT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700903 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100904 sta->reason = reason;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700905 __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700906 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100907 llid = sta->llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100908 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200909 spin_unlock_bh(&sta->lock);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700910 changed |= mesh_set_ht_prot_mode(sdata);
911 changed |= BSS_CHANGED_BEACON;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700912 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
913 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100914 break;
915 case OPN_ACPT:
916 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200917 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700918 mesh_plink_frame_tx(sdata,
919 WLAN_SP_MESH_PEERING_CONFIRM,
920 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100921 break;
922 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200923 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100924 break;
925 }
926 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700927 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100928 switch (event) {
929 case CLS_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100930 if (del_timer(&sta->plink_timer))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100931 sta->ignore_plink_timer = 1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100932 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200933 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100934 break;
935 case OPN_ACPT:
936 case CNF_ACPT:
937 case OPN_RJCT:
938 case CNF_RJCT:
939 llid = sta->llid;
940 reason = sta->reason;
Johannes Berg07346f812008-05-03 01:02:02 +0200941 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700942 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
943 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100944 break;
945 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200946 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100947 }
948 break;
949 default:
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800950 /* should not get here, PLINK_BLOCKED is dealt with at the
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800951 * beginning of the function
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100952 */
Johannes Berg07346f812008-05-03 01:02:02 +0200953 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100954 break;
955 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100956
957 rcu_read_unlock();
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700958
959 if (changed)
960 ieee80211_bss_info_change_notify(sdata, changed);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100961}