blob: 985b37f7455dc95994b12096cb4ef48ab6b6b773 [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
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 Coboc3896d2c2008-02-23 15:17:13 +010018
19#define mod_plink_timer(s, t) (mod_timer(&s->plink_timer, \
20 jiffies + HZ * t / 1000))
21
Johannes Berg472dbc42008-09-11 00:01:49 +020022#define dot11MeshMaxRetries(s) (s->u.mesh.mshcfg.dot11MeshMaxRetries)
23#define dot11MeshRetryTimeout(s) (s->u.mesh.mshcfg.dot11MeshRetryTimeout)
24#define dot11MeshConfirmTimeout(s) (s->u.mesh.mshcfg.dot11MeshConfirmTimeout)
25#define dot11MeshHoldingTimeout(s) (s->u.mesh.mshcfg.dot11MeshHoldingTimeout)
26#define dot11MeshMaxPeerLinks(s) (s->u.mesh.mshcfg.dot11MeshMaxPeerLinks)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010027
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -080028/* We only need a valid sta if user configured a minimum rssi_threshold. */
29#define rssi_threshold_check(sta, sdata) \
Ashok Nagarajan55335132012-02-28 17:04:08 -080030 (sdata->u.mesh.mshcfg.rssi_threshold == 0 ||\
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -080031 (sta && (s8) -ewma_read(&sta->avg_signal) > \
32 sdata->u.mesh.mshcfg.rssi_threshold))
Ashok Nagarajan55335132012-02-28 17:04:08 -080033
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010034enum plink_event {
35 PLINK_UNDEFINED,
36 OPN_ACPT,
37 OPN_RJCT,
38 OPN_IGNR,
39 CNF_ACPT,
40 CNF_RJCT,
41 CNF_IGNR,
42 CLS_ACPT,
43 CLS_IGNR
44};
45
Thomas Pedersenba4a14e2011-09-20 13:43:32 -070046static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
47 enum ieee80211_self_protected_actioncode action,
48 u8 *da, __le16 llid, __le16 plid, __le16 reason);
49
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010050static inline
51void mesh_plink_inc_estab_count(struct ieee80211_sub_if_data *sdata)
52{
Johannes Berg472dbc42008-09-11 00:01:49 +020053 atomic_inc(&sdata->u.mesh.mshstats.estab_plinks);
Johannes Bergd0709a62008-02-25 16:27:46 +010054 mesh_accept_plinks_update(sdata);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010055}
56
57static inline
58void mesh_plink_dec_estab_count(struct ieee80211_sub_if_data *sdata)
59{
Johannes Berg472dbc42008-09-11 00:01:49 +020060 atomic_dec(&sdata->u.mesh.mshstats.estab_plinks);
Johannes Bergd0709a62008-02-25 16:27:46 +010061 mesh_accept_plinks_update(sdata);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010062}
63
64/**
65 * mesh_plink_fsm_restart - restart a mesh peer link finite state machine
66 *
Rui Paulo23c7a292009-11-09 23:46:42 +000067 * @sta: mesh peer link to restart
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010068 *
Johannes Berg07346f812008-05-03 01:02:02 +020069 * Locking: this function must be called holding sta->lock
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010070 */
71static inline void mesh_plink_fsm_restart(struct sta_info *sta)
72{
Javier Cardona57cf8042011-05-13 10:45:43 -070073 sta->plink_state = NL80211_PLINK_LISTEN;
Luis Carlos Cobo37659ff2008-02-29 12:13:38 -080074 sta->llid = sta->plid = sta->reason = 0;
75 sta->plink_retries = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010076}
77
Johannes Berg93e5deb2008-04-01 15:21:00 +020078/*
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -070079 * Allocate mesh sta entry and insert into station table
Johannes Berg93e5deb2008-04-01 15:21:00 +020080 */
Johannes Berg03e44972008-02-27 09:56:40 +010081static struct sta_info *mesh_plink_alloc(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -070082 u8 *hw_addr)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010083{
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010084 struct sta_info *sta;
85
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -070086 if (sdata->local->num_sta >= MESH_MAX_PLINKS)
Johannes Berg73651ee2008-02-25 16:27:47 +010087 return NULL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010088
Johannes Berg34e89502010-02-03 13:59:58 +010089 sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +010090 if (!sta)
91 return NULL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010092
Johannes Berg83d5cc02012-01-12 09:31:10 +010093 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
94 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
95 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +010096
Johannes Bergc2c98fd2011-09-29 16:04:36 +020097 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +010098
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010099 return sta;
100}
101
Ben Hutchings2c530402012-07-10 10:55:09 +0000102/**
Ashok Nagarajancbf93222012-05-07 21:00:31 -0700103 * mesh_set_ht_prot_mode - set correct HT protection mode
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700104 *
Ashok Nagarajancbf93222012-05-07 21:00:31 -0700105 * Section 9.23.3.5 of IEEE 80211-2012 describes the protection rules for HT
106 * mesh STA in a MBSS. Three HT protection modes are supported for now, non-HT
107 * mixed mode, 20MHz-protection and no-protection mode. non-HT mixed mode is
108 * selected if any non-HT peers are present in our MBSS. 20MHz-protection mode
109 * is selected if all peers in our 20/40MHz MBSS support HT and atleast one
110 * HT20 peer is present. Otherwise no-protection mode is selected.
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700111 */
112static u32 mesh_set_ht_prot_mode(struct ieee80211_sub_if_data *sdata)
113{
114 struct ieee80211_local *local = sdata->local;
115 struct sta_info *sta;
116 u32 changed = 0;
117 u16 ht_opmode;
118 bool non_ht_sta = false, ht20_sta = false;
119
120 if (local->_oper_channel_type == NL80211_CHAN_NO_HT)
121 return 0;
122
123 rcu_read_lock();
124 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Ashok Nagarajancbf93222012-05-07 21:00:31 -0700125 if (sdata != sta->sdata ||
126 sta->plink_state != NL80211_PLINK_ESTAB)
127 continue;
128
129 switch (sta->ch_type) {
130 case NL80211_CHAN_NO_HT:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200131 mpl_dbg(sdata,
132 "mesh_plink %pM: nonHT sta (%pM) is present\n",
Ashok Nagarajancbf93222012-05-07 21:00:31 -0700133 sdata->vif.addr, sta->sta.addr);
134 non_ht_sta = true;
135 goto out;
136 case NL80211_CHAN_HT20:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200137 mpl_dbg(sdata,
138 "mesh_plink %pM: HT20 sta (%pM) is present\n",
Ashok Nagarajancbf93222012-05-07 21:00:31 -0700139 sdata->vif.addr, sta->sta.addr);
140 ht20_sta = true;
141 default:
142 break;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700143 }
144 }
145out:
146 rcu_read_unlock();
147
148 if (non_ht_sta)
149 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED;
150 else if (ht20_sta && local->_oper_channel_type > NL80211_CHAN_HT20)
151 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_20MHZ;
152 else
153 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
154
155 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
156 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -0700157 sdata->u.mesh.mshcfg.ht_opmode = ht_opmode;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700158 changed = BSS_CHANGED_HT;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200159 mpl_dbg(sdata,
160 "mesh_plink %pM: protection mode changed to %d\n",
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700161 sdata->vif.addr, ht_opmode);
162 }
163
164 return changed;
165}
166
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100167/**
John W. Linvillec9370192010-06-21 17:14:07 -0400168 * __mesh_plink_deactivate - deactivate mesh peer link
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100169 *
170 * @sta: mesh peer link to deactivate
171 *
172 * All mesh paths with this peer as next hop will be flushed
173 *
Johannes Berg07346f812008-05-03 01:02:02 +0200174 * Locking: the caller must hold sta->lock
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100175 */
John W. Linvillec9370192010-06-21 17:14:07 -0400176static bool __mesh_plink_deactivate(struct sta_info *sta)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100177{
Johannes Bergd0709a62008-02-25 16:27:46 +0100178 struct ieee80211_sub_if_data *sdata = sta->sdata;
John W. Linvillec9370192010-06-21 17:14:07 -0400179 bool deactivated = false;
Johannes Bergd0709a62008-02-25 16:27:46 +0100180
Javier Cardona57cf8042011-05-13 10:45:43 -0700181 if (sta->plink_state == NL80211_PLINK_ESTAB) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100182 mesh_plink_dec_estab_count(sdata);
John W. Linvillec9370192010-06-21 17:14:07 -0400183 deactivated = true;
184 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700185 sta->plink_state = NL80211_PLINK_BLOCKED;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100186 mesh_path_flush_by_nexthop(sta);
John W. Linvillec9370192010-06-21 17:14:07 -0400187
188 return deactivated;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100189}
190
Johannes Berg902acc72008-02-23 15:17:19 +0100191/**
John W. Linvillec9370192010-06-21 17:14:07 -0400192 * mesh_plink_deactivate - deactivate mesh peer link
Johannes Berg902acc72008-02-23 15:17:19 +0100193 *
194 * @sta: mesh peer link to deactivate
195 *
196 * All mesh paths with this peer as next hop will be flushed
197 */
198void mesh_plink_deactivate(struct sta_info *sta)
199{
John W. Linvillec9370192010-06-21 17:14:07 -0400200 struct ieee80211_sub_if_data *sdata = sta->sdata;
201 bool deactivated;
202
Johannes Berg07346f812008-05-03 01:02:02 +0200203 spin_lock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400204 deactivated = __mesh_plink_deactivate(sta);
Thomas Pedersenba4a14e2011-09-20 13:43:32 -0700205 sta->reason = cpu_to_le16(WLAN_REASON_MESH_PEER_CANCELED);
206 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
207 sta->sta.addr, sta->llid, sta->plid,
208 sta->reason);
Johannes Berg07346f812008-05-03 01:02:02 +0200209 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400210
211 if (deactivated)
212 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +0100213}
214
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200215static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700216 enum ieee80211_self_protected_actioncode action,
217 u8 *da, __le16 llid, __le16 plid, __le16 reason) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200218 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700219 struct sk_buff *skb;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100220 struct ieee80211_mgmt *mgmt;
221 bool include_plid = false;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700222 u16 peering_proto = 0;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700223 u8 *pos, ie_len = 4;
224 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
225 sizeof(mgmt->u.action.u.self_prot);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100226
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800227 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700228 hdr_len +
229 2 + /* capability info */
230 2 + /* AID */
231 2 + 8 + /* supported rates */
232 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
233 2 + sdata->u.mesh.mesh_id_len +
234 2 + sizeof(struct ieee80211_meshconf_ie) +
Thomas Pedersen176f3602011-10-26 14:47:27 -0700235 2 + sizeof(struct ieee80211_ht_cap) +
Johannes Berg074d46d2012-03-15 19:45:16 +0100236 2 + sizeof(struct ieee80211_ht_operation) +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700237 2 + 8 + /* peering IE */
238 sdata->u.mesh.ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100239 if (!skb)
240 return -1;
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800241 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700242 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
243 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700244 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
245 IEEE80211_STYPE_ACTION);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100246 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100247 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Javier Cardona915b5c52011-05-03 16:57:10 -0700248 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700249 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
250 mgmt->u.action.u.self_prot.action_code = action;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100251
Thomas Pedersen8db09852011-08-12 20:01:00 -0700252 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
253 /* capability info */
254 pos = skb_put(skb, 2);
255 memset(pos, 0, 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700256 if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
Thomas Pedersen8db09852011-08-12 20:01:00 -0700257 /* AID */
258 pos = skb_put(skb, 2);
Rui Paulo77fa76b2009-11-09 23:46:52 +0000259 memcpy(pos + 2, &plid, 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100260 }
Johannes Berg6b778632012-07-23 14:53:27 +0200261 if (ieee80211_add_srates_ie(sdata, skb, true,
262 local->oper_channel->band) ||
263 ieee80211_add_ext_srates_ie(sdata, skb, true,
264 local->oper_channel->band) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700265 mesh_add_rsn_ie(skb, sdata) ||
266 mesh_add_meshid_ie(skb, sdata) ||
267 mesh_add_meshconf_ie(skb, sdata))
268 return -1;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700269 } else { /* WLAN_SP_MESH_PEERING_CLOSE */
270 if (mesh_add_meshid_ie(skb, sdata))
271 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100272 }
273
Thomas Pedersen8db09852011-08-12 20:01:00 -0700274 /* Add Mesh Peering Management element */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100275 switch (action) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700276 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100277 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700278 case WLAN_SP_MESH_PEERING_CONFIRM:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700279 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100280 include_plid = true;
281 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700282 case WLAN_SP_MESH_PEERING_CLOSE:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700283 if (plid) {
284 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100285 include_plid = true;
286 }
Thomas Pedersen8db09852011-08-12 20:01:00 -0700287 ie_len += 2; /* reason code */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100288 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700289 default:
290 return -EINVAL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100291 }
292
Thomas Pedersen8db09852011-08-12 20:01:00 -0700293 if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
294 return -ENOMEM;
295
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100296 pos = skb_put(skb, 2 + ie_len);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700297 *pos++ = WLAN_EID_PEER_MGMT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100298 *pos++ = ie_len;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700299 memcpy(pos, &peering_proto, 2);
300 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100301 memcpy(pos, &llid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700302 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100303 if (include_plid) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100304 memcpy(pos, &plid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700305 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100306 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700307 if (action == WLAN_SP_MESH_PEERING_CLOSE) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100308 memcpy(pos, &reason, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700309 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100310 }
Thomas Pedersen176f3602011-10-26 14:47:27 -0700311
312 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
313 if (mesh_add_ht_cap_ie(skb, sdata) ||
Johannes Berg074d46d2012-03-15 19:45:16 +0100314 mesh_add_ht_oper_ie(skb, sdata))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700315 return -1;
316 }
317
Thomas Pedersen8db09852011-08-12 20:01:00 -0700318 if (mesh_add_vendor_ies(skb, sdata))
319 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100320
Johannes Berg62ae67b2009-11-18 18:42:05 +0100321 ieee80211_tx_skb(sdata, skb);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100322 return 0;
323}
324
Ben Hutchings2c530402012-07-10 10:55:09 +0000325/**
326 * mesh_peer_init - initialize new mesh peer and return resulting sta_info
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700327 *
328 * @sdata: local meshif
329 * @addr: peer's address
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700330 * @elems: IEs from beacon or mesh peering frame
331 *
332 * call under RCU
333 */
334static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata,
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700335 u8 *addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700336 struct ieee802_11_elems *elems)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100337{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200338 struct ieee80211_local *local = sdata->local;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700339 enum ieee80211_band band = local->oper_channel->band;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700340 struct ieee80211_supported_band *sband;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700341 u32 rates, basic_rates = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100342 struct sta_info *sta;
Thomas Pedersene87278e2012-04-26 15:01:06 -0700343 bool insert = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100344
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700345 sband = local->hw.wiphy->bands[band];
346 rates = ieee80211_sta_get_rates(local, elems, band, &basic_rates);
Johannes Bergd0709a62008-02-25 16:27:46 +0100347
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700348 sta = sta_info_get(sdata, addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100349 if (!sta) {
Thomas Pedersenf5c56812012-05-03 15:06:09 -0700350 /* Userspace handles peer allocation when security is enabled */
351 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED) {
352 cfg80211_notify_new_peer_candidate(sdata->dev, addr,
353 elems->ie_start,
354 elems->total_len,
355 GFP_ATOMIC);
356 return NULL;
357 }
358
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700359 sta = mesh_plink_alloc(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100360 if (!sta)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700361 return NULL;
Thomas Pedersene87278e2012-04-26 15:01:06 -0700362 insert = true;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100363 }
364
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700365 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100366 sta->last_rx = jiffies;
Chun-Yeow Yeohbae35d92012-07-24 11:52:35 +0800367 if (sta->plink_state == NL80211_PLINK_ESTAB) {
368 spin_unlock_bh(&sta->lock);
369 return sta;
370 }
371
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700372 sta->sta.supp_rates[band] = rates;
Thomas Pedersene76781e2012-04-18 19:24:13 -0700373 if (elems->ht_cap_elem &&
374 sdata->local->_oper_channel_type != NL80211_CHAN_NO_HT)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700375 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
376 elems->ht_cap_elem,
377 &sta->sta.ht_cap);
378 else
379 memset(&sta->sta.ht_cap, 0, sizeof(sta->sta.ht_cap));
380
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700381 if (elems->ht_operation) {
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700382 if (!(elems->ht_operation->ht_param &
383 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
384 sta->sta.ht_cap.cap &=
385 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700386 sta->ch_type =
387 ieee80211_ht_oper_to_channel_type(elems->ht_operation);
388 }
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700389
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700390 rate_control_rate_init(sta);
391 spin_unlock_bh(&sta->lock);
392
Thomas Pedersene87278e2012-04-26 15:01:06 -0700393 if (insert && sta_info_insert(sta))
394 return NULL;
395
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700396 return sta;
397}
398
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700399void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
400 u8 *hw_addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700401 struct ieee802_11_elems *elems)
402{
403 struct sta_info *sta;
404
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700405 rcu_read_lock();
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700406 sta = mesh_peer_init(sdata, hw_addr, elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700407 if (!sta)
408 goto out;
409
Javier Cardona1570ca52011-04-07 15:08:35 -0700410 if (mesh_peer_accepts_plinks(elems) &&
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700411 sta->plink_state == NL80211_PLINK_LISTEN &&
412 sdata->u.mesh.accepting_plinks &&
413 sdata->u.mesh.mshcfg.auto_open_plinks &&
414 rssi_threshold_check(sta, sdata))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100415 mesh_plink_open(sta);
416
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700417out:
Johannes Bergd0709a62008-02-25 16:27:46 +0100418 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100419}
420
421static void mesh_plink_timer(unsigned long data)
422{
423 struct sta_info *sta;
424 __le16 llid, plid, reason;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100425 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100426
Johannes Bergd0709a62008-02-25 16:27:46 +0100427 /*
428 * This STA is valid because sta_info_destroy() will
429 * del_timer_sync() this timer after having made sure
430 * it cannot be readded (by deleting the plink.)
431 */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100432 sta = (struct sta_info *) data;
433
Johannes Berg5bb644a2009-05-17 11:40:42 +0200434 if (sta->sdata->local->quiescing) {
435 sta->plink_timer_was_running = true;
436 return;
437 }
438
Johannes Berg07346f812008-05-03 01:02:02 +0200439 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100440 if (sta->ignore_plink_timer) {
441 sta->ignore_plink_timer = false;
Johannes Berg07346f812008-05-03 01:02:02 +0200442 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100443 return;
444 }
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200445 mpl_dbg(sta->sdata,
446 "Mesh plink timer for %pM fired on state %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700447 sta->sta.addr, sta->plink_state);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100448 reason = 0;
449 llid = sta->llid;
450 plid = sta->plid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100451 sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100452
453 switch (sta->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -0700454 case NL80211_PLINK_OPN_RCVD:
455 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100456 /* retry timer */
457 if (sta->plink_retries < dot11MeshMaxRetries(sdata)) {
458 u32 rand;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200459 mpl_dbg(sta->sdata,
460 "Mesh plink for %pM (retry, timeout): %d %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700461 sta->sta.addr, sta->plink_retries,
462 sta->plink_timeout);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100463 get_random_bytes(&rand, sizeof(u32));
464 sta->plink_timeout = sta->plink_timeout +
465 rand % sta->plink_timeout;
466 ++sta->plink_retries;
Johannes Bergd0709a62008-02-25 16:27:46 +0100467 mod_plink_timer(sta, sta->plink_timeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200468 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700469 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
470 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100471 break;
472 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700473 reason = cpu_to_le16(WLAN_REASON_MESH_MAX_RETRIES);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100474 /* fall through on else */
Javier Cardona57cf8042011-05-13 10:45:43 -0700475 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100476 /* confirm timer */
477 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700478 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIRM_TIMEOUT);
Javier Cardona57cf8042011-05-13 10:45:43 -0700479 sta->plink_state = NL80211_PLINK_HOLDING;
Johannes Bergd0709a62008-02-25 16:27:46 +0100480 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200481 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700482 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
483 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100484 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700485 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100486 /* holding timer */
Johannes Bergd0709a62008-02-25 16:27:46 +0100487 del_timer(&sta->plink_timer);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100488 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200489 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100490 break;
491 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200492 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100493 break;
494 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100495}
496
Johannes Berg5bb644a2009-05-17 11:40:42 +0200497#ifdef CONFIG_PM
498void mesh_plink_quiesce(struct sta_info *sta)
499{
500 if (del_timer_sync(&sta->plink_timer))
501 sta->plink_timer_was_running = true;
502}
503
504void mesh_plink_restart(struct sta_info *sta)
505{
506 if (sta->plink_timer_was_running) {
507 add_timer(&sta->plink_timer);
508 sta->plink_timer_was_running = false;
509 }
510}
511#endif
512
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100513static inline void mesh_plink_timer_set(struct sta_info *sta, int timeout)
514{
515 sta->plink_timer.expires = jiffies + (HZ * timeout / 1000);
516 sta->plink_timer.data = (unsigned long) sta;
517 sta->plink_timer.function = mesh_plink_timer;
518 sta->plink_timeout = timeout;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100519 add_timer(&sta->plink_timer);
520}
521
522int mesh_plink_open(struct sta_info *sta)
523{
524 __le16 llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100525 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100526
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200527 if (!test_sta_flag(sta, WLAN_STA_AUTH))
Javier Cardona53e80512011-04-07 15:08:32 -0700528 return -EPERM;
529
Johannes Berg07346f812008-05-03 01:02:02 +0200530 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100531 get_random_bytes(&llid, 2);
532 sta->llid = llid;
Javier Cardona57cf8042011-05-13 10:45:43 -0700533 if (sta->plink_state != NL80211_PLINK_LISTEN) {
Johannes Berg07346f812008-05-03 01:02:02 +0200534 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100535 return -EBUSY;
536 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700537 sta->plink_state = NL80211_PLINK_OPN_SNT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100538 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200539 spin_unlock_bh(&sta->lock);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200540 mpl_dbg(sdata,
541 "Mesh plink: starting establishment with %pM\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700542 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100543
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700544 return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
Johannes Berg17741cd2008-09-11 00:02:02 +0200545 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100546}
547
548void mesh_plink_block(struct sta_info *sta)
549{
John W. Linvillec9370192010-06-21 17:14:07 -0400550 struct ieee80211_sub_if_data *sdata = sta->sdata;
551 bool deactivated;
552
Johannes Berg07346f812008-05-03 01:02:02 +0200553 spin_lock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400554 deactivated = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700555 sta->plink_state = NL80211_PLINK_BLOCKED;
Johannes Berg07346f812008-05-03 01:02:02 +0200556 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400557
558 if (deactivated)
559 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100560}
561
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100562
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200563void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100564 size_t len, struct ieee80211_rx_status *rx_status)
565{
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100566 struct ieee802_11_elems elems;
567 struct sta_info *sta;
568 enum plink_event event;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700569 enum ieee80211_self_protected_actioncode ftype;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100570 size_t baselen;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700571 bool matches_local = true;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100572 u8 ie_len;
573 u8 *baseaddr;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700574 u32 changed = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100575 __le16 plid, llid, reason;
Rui Paulo1460dd12009-11-09 23:46:48 +0000576 static const char *mplstates[] = {
Javier Cardona57cf8042011-05-13 10:45:43 -0700577 [NL80211_PLINK_LISTEN] = "LISTEN",
578 [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
579 [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
580 [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
581 [NL80211_PLINK_ESTAB] = "ESTAB",
582 [NL80211_PLINK_HOLDING] = "HOLDING",
583 [NL80211_PLINK_BLOCKED] = "BLOCKED"
Rui Paulo1460dd12009-11-09 23:46:48 +0000584 };
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100585
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200586 /* need action_code, aux */
587 if (len < IEEE80211_MIN_ACTION_SIZE + 3)
588 return;
589
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100590 if (is_multicast_ether_addr(mgmt->da)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200591 mpl_dbg(sdata,
592 "Mesh plink: ignore frame from multicast address\n");
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100593 return;
594 }
595
Thomas Pedersen8db09852011-08-12 20:01:00 -0700596 baseaddr = mgmt->u.action.u.self_prot.variable;
597 baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
598 if (mgmt->u.action.u.self_prot.action_code ==
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700599 WLAN_SP_MESH_PEERING_CONFIRM) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100600 baseaddr += 4;
David Woo70bdb6b2009-08-12 11:03:44 -0700601 baselen += 4;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100602 }
603 ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700604 if (!elems.peering) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200605 mpl_dbg(sdata,
606 "Mesh plink: missing necessary peer link ie\n");
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100607 return;
608 }
Javier Cardonab130e5c2011-05-03 16:57:07 -0700609 if (elems.rsn_len &&
610 sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200611 mpl_dbg(sdata,
612 "Mesh plink: can't establish link with secure peer\n");
Javier Cardona5cff5e02011-04-07 15:08:29 -0700613 return;
614 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100615
Thomas Pedersen8db09852011-08-12 20:01:00 -0700616 ftype = mgmt->u.action.u.self_prot.action_code;
617 ie_len = elems.peering_len;
618 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
619 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
620 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
621 && ie_len != 8)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200622 mpl_dbg(sdata,
623 "Mesh plink: incorrect plink ie length %d %d\n",
624 ftype, ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100625 return;
626 }
627
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700628 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
629 (!elems.mesh_id || !elems.mesh_config)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200630 mpl_dbg(sdata, "Mesh plink: missing necessary ie\n");
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100631 return;
632 }
633 /* Note the lines below are correct, the llid in the frame is the plid
634 * from the point of view of this host.
635 */
Thomas Pedersen8db09852011-08-12 20:01:00 -0700636 memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700637 if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
Thomas Pedersen8db09852011-08-12 20:01:00 -0700638 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
639 memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100640
Johannes Bergd0709a62008-02-25 16:27:46 +0100641 rcu_read_lock();
642
Johannes Bergabe60632009-11-25 17:46:18 +0100643 sta = sta_info_get(sdata, mgmt->sa);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700644 if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200645 mpl_dbg(sdata, "Mesh plink: cls or cnf from unknown peer\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100646 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100647 return;
648 }
649
Ashok Nagarajan55335132012-02-28 17:04:08 -0800650 if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -0800651 !rssi_threshold_check(sta, sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200652 mpl_dbg(sdata, "Mesh plink: %pM does not meet rssi threshold\n",
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -0800653 mgmt->sa);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800654 rcu_read_unlock();
655 return;
656 }
657
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200658 if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200659 mpl_dbg(sdata, "Mesh plink: Action frame from non-authed peer\n");
Javier Cardona53e80512011-04-07 15:08:32 -0700660 rcu_read_unlock();
661 return;
662 }
663
Javier Cardona57cf8042011-05-13 10:45:43 -0700664 if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100665 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100666 return;
667 }
668
669 /* Now we will figure out the appropriate event... */
670 event = PLINK_UNDEFINED;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700671 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700672 !mesh_matches_local(sdata, &elems)) {
Christian Lamparterd12c7452010-10-08 22:27:07 +0200673 matches_local = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100674 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700675 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100676 event = OPN_RJCT;
677 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700678 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100679 event = CNF_RJCT;
680 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700681 default:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100682 break;
683 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200684 }
685
686 if (!sta && !matches_local) {
687 rcu_read_unlock();
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700688 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200689 llid = 0;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700690 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
691 mgmt->sa, llid, plid, reason);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200692 return;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100693 } else if (!sta) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700694 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100695 if (!mesh_plink_free_count(sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200696 mpl_dbg(sdata, "Mesh plink error: no more free plinks\n");
Johannes Berg73651ee2008-02-25 16:27:47 +0100697 rcu_read_unlock();
698 return;
699 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100700 event = OPN_ACPT;
Christian Lamparterd12c7452010-10-08 22:27:07 +0200701 } else if (matches_local) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100702 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700703 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100704 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100705 (sta->plid && sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100706 event = OPN_IGNR;
707 else
708 event = OPN_ACPT;
709 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700710 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100711 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100712 (sta->llid != llid || sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100713 event = CNF_IGNR;
714 else
715 event = CNF_ACPT;
716 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700717 case WLAN_SP_MESH_PEERING_CLOSE:
Javier Cardona57cf8042011-05-13 10:45:43 -0700718 if (sta->plink_state == NL80211_PLINK_ESTAB)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100719 /* Do not check for llid or plid. This does not
720 * follow the standard but since multiple plinks
721 * per sta are not supported, it is necessary in
722 * order to avoid a livelock when MP A sees an
723 * establish peer link to MP B but MP B does not
724 * see it. This can be caused by a timeout in
725 * B's peer link establishment or B beign
726 * restarted.
727 */
728 event = CLS_ACPT;
729 else if (sta->plid != plid)
730 event = CLS_IGNR;
731 else if (ie_len == 7 && sta->llid != llid)
732 event = CLS_IGNR;
733 else
734 event = CLS_ACPT;
735 break;
736 default:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200737 mpl_dbg(sdata, "Mesh plink: unknown frame subtype\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100738 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100739 return;
740 }
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700741 }
742
743 if (event == OPN_ACPT) {
744 /* allocate sta entry if necessary and update info */
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700745 sta = mesh_peer_init(sdata, mgmt->sa, &elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700746 if (!sta) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200747 mpl_dbg(sdata, "Mesh plink: failed to init peer!\n");
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700748 rcu_read_unlock();
749 return;
750 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100751 }
752
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200753 mpl_dbg(sdata,
754 "Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
Rui Paulo1460dd12009-11-09 23:46:48 +0000755 mgmt->sa, mplstates[sta->plink_state],
Johannes Berg0c68ae262008-10-27 15:56:10 -0700756 le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
757 event);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100758 reason = 0;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700759 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100760 switch (sta->plink_state) {
761 /* spin_unlock as soon as state is updated at each case */
Javier Cardona57cf8042011-05-13 10:45:43 -0700762 case NL80211_PLINK_LISTEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100763 switch (event) {
764 case CLS_ACPT:
765 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200766 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100767 break;
768 case OPN_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700769 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100770 sta->plid = plid;
771 get_random_bytes(&llid, 2);
772 sta->llid = llid;
773 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200774 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700775 mesh_plink_frame_tx(sdata,
776 WLAN_SP_MESH_PEERING_OPEN,
777 sta->sta.addr, llid, 0, 0);
778 mesh_plink_frame_tx(sdata,
779 WLAN_SP_MESH_PEERING_CONFIRM,
780 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100781 break;
782 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200783 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100784 break;
785 }
786 break;
787
Javier Cardona57cf8042011-05-13 10:45:43 -0700788 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100789 switch (event) {
790 case OPN_RJCT:
791 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700792 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100793 case CLS_ACPT:
794 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700795 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100796 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700797 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100798 if (!mod_plink_timer(sta,
799 dot11MeshHoldingTimeout(sdata)))
800 sta->ignore_plink_timer = true;
801
802 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200803 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700804 mesh_plink_frame_tx(sdata,
805 WLAN_SP_MESH_PEERING_CLOSE,
806 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100807 break;
808 case OPN_ACPT:
809 /* retry timer is left untouched */
Javier Cardona57cf8042011-05-13 10:45:43 -0700810 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100811 sta->plid = plid;
812 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200813 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700814 mesh_plink_frame_tx(sdata,
815 WLAN_SP_MESH_PEERING_CONFIRM,
816 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100817 break;
818 case CNF_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700819 sta->plink_state = NL80211_PLINK_CNF_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100820 if (!mod_plink_timer(sta,
821 dot11MeshConfirmTimeout(sdata)))
822 sta->ignore_plink_timer = true;
823
Johannes Berg07346f812008-05-03 01:02:02 +0200824 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100825 break;
826 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200827 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100828 break;
829 }
830 break;
831
Javier Cardona57cf8042011-05-13 10:45:43 -0700832 case NL80211_PLINK_OPN_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100833 switch (event) {
834 case OPN_RJCT:
835 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700836 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100837 case CLS_ACPT:
838 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700839 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100840 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700841 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100842 if (!mod_plink_timer(sta,
843 dot11MeshHoldingTimeout(sdata)))
844 sta->ignore_plink_timer = true;
845
846 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200847 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700848 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
849 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100850 break;
851 case OPN_ACPT:
852 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200853 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700854 mesh_plink_frame_tx(sdata,
855 WLAN_SP_MESH_PEERING_CONFIRM,
856 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100857 break;
858 case CNF_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100859 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700860 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200861 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400862 mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700863 changed |= mesh_set_ht_prot_mode(sdata);
864 changed |= BSS_CHANGED_BEACON;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200865 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700866 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100867 break;
868 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200869 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100870 break;
871 }
872 break;
873
Javier Cardona57cf8042011-05-13 10:45:43 -0700874 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100875 switch (event) {
876 case OPN_RJCT:
877 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700878 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100879 case CLS_ACPT:
880 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700881 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100882 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700883 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100884 if (!mod_plink_timer(sta,
885 dot11MeshHoldingTimeout(sdata)))
886 sta->ignore_plink_timer = true;
887
888 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200889 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700890 mesh_plink_frame_tx(sdata,
891 WLAN_SP_MESH_PEERING_CLOSE,
892 sta->sta.addr, llid, plid, reason);
Johannes Bergff59dc72008-02-25 10:11:50 +0100893 break;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100894 case OPN_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100895 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700896 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200897 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400898 mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700899 changed |= mesh_set_ht_prot_mode(sdata);
900 changed |= BSS_CHANGED_BEACON;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200901 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700902 sta->sta.addr);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700903 mesh_plink_frame_tx(sdata,
904 WLAN_SP_MESH_PEERING_CONFIRM,
905 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100906 break;
907 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200908 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100909 break;
910 }
911 break;
912
Javier Cardona57cf8042011-05-13 10:45:43 -0700913 case NL80211_PLINK_ESTAB:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100914 switch (event) {
915 case CLS_ACPT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700916 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100917 sta->reason = reason;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700918 __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700919 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100920 llid = sta->llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100921 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200922 spin_unlock_bh(&sta->lock);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700923 changed |= mesh_set_ht_prot_mode(sdata);
924 changed |= BSS_CHANGED_BEACON;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700925 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
926 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100927 break;
928 case OPN_ACPT:
929 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200930 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700931 mesh_plink_frame_tx(sdata,
932 WLAN_SP_MESH_PEERING_CONFIRM,
933 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100934 break;
935 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200936 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100937 break;
938 }
939 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700940 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100941 switch (event) {
942 case CLS_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100943 if (del_timer(&sta->plink_timer))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100944 sta->ignore_plink_timer = 1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100945 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200946 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100947 break;
948 case OPN_ACPT:
949 case CNF_ACPT:
950 case OPN_RJCT:
951 case CNF_RJCT:
952 llid = sta->llid;
953 reason = sta->reason;
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, WLAN_SP_MESH_PEERING_CLOSE,
956 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100957 break;
958 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200959 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100960 }
961 break;
962 default:
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800963 /* should not get here, PLINK_BLOCKED is dealt with at the
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800964 * beginning of the function
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100965 */
Johannes Berg07346f812008-05-03 01:02:02 +0200966 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100967 break;
968 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100969
970 rcu_read_unlock();
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700971
972 if (changed)
973 ieee80211_bss_info_change_notify(sdata, changed);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100974}