blob: f20e9f26d13796ccb8ed8abaeeb9aa8fb9634d63 [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
Marco Porschdf323812012-08-08 07:58:43 +020051u32 mesh_plink_inc_estab_count(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010052{
Johannes Berg472dbc42008-09-11 00:01:49 +020053 atomic_inc(&sdata->u.mesh.mshstats.estab_plinks);
Marco Porschdf323812012-08-08 07:58:43 +020054 return mesh_accept_plinks_update(sdata);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010055}
56
57static inline
Marco Porschdf323812012-08-08 07:58:43 +020058u32 mesh_plink_dec_estab_count(struct ieee80211_sub_if_data *sdata)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010059{
Johannes Berg472dbc42008-09-11 00:01:49 +020060 atomic_dec(&sdata->u.mesh.mshstats.estab_plinks);
Marco Porschdf323812012-08-08 07:58:43 +020061 return 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
Marco Porschdf323812012-08-08 07:58:43 +0200173 * Returns beacon changed flag if the beacon content changed.
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100174 *
Johannes Berg07346f812008-05-03 01:02:02 +0200175 * Locking: the caller must hold sta->lock
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100176 */
Marco Porschdf323812012-08-08 07:58:43 +0200177static u32 __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;
Marco Porschdf323812012-08-08 07:58:43 +0200180 u32 changed = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100181
Marco Porschdf323812012-08-08 07:58:43 +0200182 if (sta->plink_state == NL80211_PLINK_ESTAB)
183 changed = mesh_plink_dec_estab_count(sdata);
Javier Cardona57cf8042011-05-13 10:45:43 -0700184 sta->plink_state = NL80211_PLINK_BLOCKED;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100185 mesh_path_flush_by_nexthop(sta);
John W. Linvillec9370192010-06-21 17:14:07 -0400186
Marco Porschdf323812012-08-08 07:58:43 +0200187 return changed;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100188}
189
Johannes Berg902acc72008-02-23 15:17:19 +0100190/**
John W. Linvillec9370192010-06-21 17:14:07 -0400191 * mesh_plink_deactivate - deactivate mesh peer link
Johannes Berg902acc72008-02-23 15:17:19 +0100192 *
193 * @sta: mesh peer link to deactivate
194 *
195 * All mesh paths with this peer as next hop will be flushed
196 */
197void mesh_plink_deactivate(struct sta_info *sta)
198{
John W. Linvillec9370192010-06-21 17:14:07 -0400199 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschdf323812012-08-08 07:58:43 +0200200 u32 changed;
John W. Linvillec9370192010-06-21 17:14:07 -0400201
Johannes Berg07346f812008-05-03 01:02:02 +0200202 spin_lock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200203 changed = __mesh_plink_deactivate(sta);
Thomas Pedersenba4a14e2011-09-20 13:43:32 -0700204 sta->reason = cpu_to_le16(WLAN_REASON_MESH_PEER_CANCELED);
205 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
206 sta->sta.addr, sta->llid, sta->plid,
207 sta->reason);
Johannes Berg07346f812008-05-03 01:02:02 +0200208 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400209
Marco Porschdf323812012-08-08 07:58:43 +0200210 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg902acc72008-02-23 15:17:19 +0100211}
212
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200213static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700214 enum ieee80211_self_protected_actioncode action,
215 u8 *da, __le16 llid, __le16 plid, __le16 reason) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200216 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700217 struct sk_buff *skb;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100218 struct ieee80211_mgmt *mgmt;
219 bool include_plid = false;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700220 u16 peering_proto = 0;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700221 u8 *pos, ie_len = 4;
222 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
223 sizeof(mgmt->u.action.u.self_prot);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100224
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800225 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700226 hdr_len +
227 2 + /* capability info */
228 2 + /* AID */
229 2 + 8 + /* supported rates */
230 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
231 2 + sdata->u.mesh.mesh_id_len +
232 2 + sizeof(struct ieee80211_meshconf_ie) +
Thomas Pedersen176f3602011-10-26 14:47:27 -0700233 2 + sizeof(struct ieee80211_ht_cap) +
Johannes Berg074d46d2012-03-15 19:45:16 +0100234 2 + sizeof(struct ieee80211_ht_operation) +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700235 2 + 8 + /* peering IE */
236 sdata->u.mesh.ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100237 if (!skb)
238 return -1;
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800239 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700240 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
241 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700242 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
243 IEEE80211_STYPE_ACTION);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100244 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100245 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Javier Cardona915b5c52011-05-03 16:57:10 -0700246 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700247 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
248 mgmt->u.action.u.self_prot.action_code = action;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100249
Thomas Pedersen8db09852011-08-12 20:01:00 -0700250 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
251 /* capability info */
252 pos = skb_put(skb, 2);
253 memset(pos, 0, 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700254 if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
Thomas Pedersen8db09852011-08-12 20:01:00 -0700255 /* AID */
256 pos = skb_put(skb, 2);
Rui Paulo77fa76b2009-11-09 23:46:52 +0000257 memcpy(pos + 2, &plid, 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100258 }
Johannes Bergfc8a7322012-06-28 10:33:25 +0200259 if (ieee80211_add_srates_ie(sdata, skb, true) ||
260 ieee80211_add_ext_srates_ie(sdata, skb, true) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700261 mesh_add_rsn_ie(skb, sdata) ||
262 mesh_add_meshid_ie(skb, sdata) ||
263 mesh_add_meshconf_ie(skb, sdata))
264 return -1;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700265 } else { /* WLAN_SP_MESH_PEERING_CLOSE */
266 if (mesh_add_meshid_ie(skb, sdata))
267 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100268 }
269
Thomas Pedersen8db09852011-08-12 20:01:00 -0700270 /* Add Mesh Peering Management element */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100271 switch (action) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700272 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100273 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700274 case WLAN_SP_MESH_PEERING_CONFIRM:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700275 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100276 include_plid = true;
277 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700278 case WLAN_SP_MESH_PEERING_CLOSE:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700279 if (plid) {
280 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100281 include_plid = true;
282 }
Thomas Pedersen8db09852011-08-12 20:01:00 -0700283 ie_len += 2; /* reason code */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100284 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700285 default:
286 return -EINVAL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100287 }
288
Thomas Pedersen8db09852011-08-12 20:01:00 -0700289 if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
290 return -ENOMEM;
291
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100292 pos = skb_put(skb, 2 + ie_len);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700293 *pos++ = WLAN_EID_PEER_MGMT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100294 *pos++ = ie_len;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700295 memcpy(pos, &peering_proto, 2);
296 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100297 memcpy(pos, &llid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700298 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100299 if (include_plid) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100300 memcpy(pos, &plid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700301 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100302 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700303 if (action == WLAN_SP_MESH_PEERING_CLOSE) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100304 memcpy(pos, &reason, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700305 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100306 }
Thomas Pedersen176f3602011-10-26 14:47:27 -0700307
308 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
309 if (mesh_add_ht_cap_ie(skb, sdata) ||
Johannes Berg074d46d2012-03-15 19:45:16 +0100310 mesh_add_ht_oper_ie(skb, sdata))
Thomas Pedersen176f3602011-10-26 14:47:27 -0700311 return -1;
312 }
313
Thomas Pedersen8db09852011-08-12 20:01:00 -0700314 if (mesh_add_vendor_ies(skb, sdata))
315 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100316
Johannes Berg62ae67b2009-11-18 18:42:05 +0100317 ieee80211_tx_skb(sdata, skb);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100318 return 0;
319}
320
Ben Hutchings2c530402012-07-10 10:55:09 +0000321/**
322 * mesh_peer_init - initialize new mesh peer and return resulting sta_info
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700323 *
324 * @sdata: local meshif
325 * @addr: peer's address
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700326 * @elems: IEs from beacon or mesh peering frame
327 *
328 * call under RCU
329 */
330static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata,
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700331 u8 *addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700332 struct ieee802_11_elems *elems)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100333{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200334 struct ieee80211_local *local = sdata->local;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700335 enum ieee80211_band band = local->oper_channel->band;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700336 struct ieee80211_supported_band *sband;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700337 u32 rates, basic_rates = 0;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100338 struct sta_info *sta;
Thomas Pedersene87278e2012-04-26 15:01:06 -0700339 bool insert = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100340
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700341 sband = local->hw.wiphy->bands[band];
342 rates = ieee80211_sta_get_rates(local, elems, band, &basic_rates);
Johannes Bergd0709a62008-02-25 16:27:46 +0100343
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700344 sta = sta_info_get(sdata, addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100345 if (!sta) {
Thomas Pedersenf5c56812012-05-03 15:06:09 -0700346 /* Userspace handles peer allocation when security is enabled */
347 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED) {
348 cfg80211_notify_new_peer_candidate(sdata->dev, addr,
349 elems->ie_start,
350 elems->total_len,
351 GFP_ATOMIC);
352 return NULL;
353 }
354
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700355 sta = mesh_plink_alloc(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100356 if (!sta)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700357 return NULL;
Thomas Pedersene87278e2012-04-26 15:01:06 -0700358 insert = true;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100359 }
360
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700361 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100362 sta->last_rx = jiffies;
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700363 sta->sta.supp_rates[band] = rates;
Thomas Pedersene76781e2012-04-18 19:24:13 -0700364 if (elems->ht_cap_elem &&
365 sdata->local->_oper_channel_type != NL80211_CHAN_NO_HT)
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700366 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
367 elems->ht_cap_elem,
368 &sta->sta.ht_cap);
369 else
370 memset(&sta->sta.ht_cap, 0, sizeof(sta->sta.ht_cap));
371
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700372 if (elems->ht_operation) {
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700373 if (!(elems->ht_operation->ht_param &
374 IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
375 sta->sta.ht_cap.cap &=
376 ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700377 sta->ch_type =
378 ieee80211_ht_oper_to_channel_type(elems->ht_operation);
379 }
Thomas Pedersenc7d25822012-04-26 15:01:07 -0700380
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700381 rate_control_rate_init(sta);
382 spin_unlock_bh(&sta->lock);
383
Thomas Pedersene87278e2012-04-26 15:01:06 -0700384 if (insert && sta_info_insert(sta))
385 return NULL;
386
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700387 return sta;
388}
389
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700390void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
391 u8 *hw_addr,
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700392 struct ieee802_11_elems *elems)
393{
394 struct sta_info *sta;
395
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700396 rcu_read_lock();
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700397 sta = mesh_peer_init(sdata, hw_addr, elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700398 if (!sta)
399 goto out;
400
Javier Cardona1570ca52011-04-07 15:08:35 -0700401 if (mesh_peer_accepts_plinks(elems) &&
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700402 sta->plink_state == NL80211_PLINK_LISTEN &&
403 sdata->u.mesh.accepting_plinks &&
404 sdata->u.mesh.mshcfg.auto_open_plinks &&
405 rssi_threshold_check(sta, sdata))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100406 mesh_plink_open(sta);
407
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700408out:
Johannes Bergd0709a62008-02-25 16:27:46 +0100409 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100410}
411
412static void mesh_plink_timer(unsigned long data)
413{
414 struct sta_info *sta;
415 __le16 llid, plid, reason;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100416 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100417
Johannes Bergd0709a62008-02-25 16:27:46 +0100418 /*
419 * This STA is valid because sta_info_destroy() will
420 * del_timer_sync() this timer after having made sure
421 * it cannot be readded (by deleting the plink.)
422 */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100423 sta = (struct sta_info *) data;
424
Johannes Berg5bb644a2009-05-17 11:40:42 +0200425 if (sta->sdata->local->quiescing) {
426 sta->plink_timer_was_running = true;
427 return;
428 }
429
Johannes Berg07346f812008-05-03 01:02:02 +0200430 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100431 if (sta->ignore_plink_timer) {
432 sta->ignore_plink_timer = false;
Johannes Berg07346f812008-05-03 01:02:02 +0200433 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100434 return;
435 }
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200436 mpl_dbg(sta->sdata,
437 "Mesh plink timer for %pM fired on state %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700438 sta->sta.addr, sta->plink_state);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100439 reason = 0;
440 llid = sta->llid;
441 plid = sta->plid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100442 sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100443
444 switch (sta->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -0700445 case NL80211_PLINK_OPN_RCVD:
446 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100447 /* retry timer */
448 if (sta->plink_retries < dot11MeshMaxRetries(sdata)) {
449 u32 rand;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200450 mpl_dbg(sta->sdata,
451 "Mesh plink for %pM (retry, timeout): %d %d\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700452 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 Bergbdcbd8e2012-06-22 11:29:50 +0200531 mpl_dbg(sdata,
532 "Mesh plink: starting establishment with %pM\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700533 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100534
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700535 return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
Johannes Berg17741cd2008-09-11 00:02:02 +0200536 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100537}
538
539void mesh_plink_block(struct sta_info *sta)
540{
John W. Linvillec9370192010-06-21 17:14:07 -0400541 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschdf323812012-08-08 07:58:43 +0200542 u32 changed;
John W. Linvillec9370192010-06-21 17:14:07 -0400543
Johannes Berg07346f812008-05-03 01:02:02 +0200544 spin_lock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200545 changed = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700546 sta->plink_state = NL80211_PLINK_BLOCKED;
Johannes Berg07346f812008-05-03 01:02:02 +0200547 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400548
Marco Porschdf323812012-08-08 07:58:43 +0200549 ieee80211_bss_info_change_notify(sdata, changed);
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 static const char *mplstates[] = {
Javier Cardona57cf8042011-05-13 10:45:43 -0700567 [NL80211_PLINK_LISTEN] = "LISTEN",
568 [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
569 [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
570 [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
571 [NL80211_PLINK_ESTAB] = "ESTAB",
572 [NL80211_PLINK_HOLDING] = "HOLDING",
573 [NL80211_PLINK_BLOCKED] = "BLOCKED"
Rui Paulo1460dd12009-11-09 23:46:48 +0000574 };
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100575
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200576 /* need action_code, aux */
577 if (len < IEEE80211_MIN_ACTION_SIZE + 3)
578 return;
579
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100580 if (is_multicast_ether_addr(mgmt->da)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200581 mpl_dbg(sdata,
582 "Mesh plink: ignore frame from multicast address\n");
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100583 return;
584 }
585
Thomas Pedersen8db09852011-08-12 20:01:00 -0700586 baseaddr = mgmt->u.action.u.self_prot.variable;
587 baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
588 if (mgmt->u.action.u.self_prot.action_code ==
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700589 WLAN_SP_MESH_PEERING_CONFIRM) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100590 baseaddr += 4;
David Woo70bdb6b2009-08-12 11:03:44 -0700591 baselen += 4;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100592 }
593 ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700594 if (!elems.peering) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200595 mpl_dbg(sdata,
596 "Mesh plink: missing necessary peer link ie\n");
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100597 return;
598 }
Javier Cardonab130e5c2011-05-03 16:57:07 -0700599 if (elems.rsn_len &&
600 sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200601 mpl_dbg(sdata,
602 "Mesh plink: can't establish link with secure peer\n");
Javier Cardona5cff5e02011-04-07 15:08:29 -0700603 return;
604 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100605
Thomas Pedersen8db09852011-08-12 20:01:00 -0700606 ftype = mgmt->u.action.u.self_prot.action_code;
607 ie_len = elems.peering_len;
608 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
609 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
610 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
611 && ie_len != 8)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200612 mpl_dbg(sdata,
613 "Mesh plink: incorrect plink ie length %d %d\n",
614 ftype, ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100615 return;
616 }
617
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700618 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
619 (!elems.mesh_id || !elems.mesh_config)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200620 mpl_dbg(sdata, "Mesh plink: missing necessary ie\n");
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100621 return;
622 }
623 /* Note the lines below are correct, the llid in the frame is the plid
624 * from the point of view of this host.
625 */
Thomas Pedersen8db09852011-08-12 20:01:00 -0700626 memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700627 if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
Thomas Pedersen8db09852011-08-12 20:01:00 -0700628 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
629 memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100630
Johannes Bergd0709a62008-02-25 16:27:46 +0100631 rcu_read_lock();
632
Johannes Bergabe60632009-11-25 17:46:18 +0100633 sta = sta_info_get(sdata, mgmt->sa);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700634 if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200635 mpl_dbg(sdata, "Mesh plink: cls or cnf from unknown peer\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100636 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100637 return;
638 }
639
Ashok Nagarajan55335132012-02-28 17:04:08 -0800640 if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -0800641 !rssi_threshold_check(sta, sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200642 mpl_dbg(sdata, "Mesh plink: %pM does not meet rssi threshold\n",
Ashok Nagarajan3d4f9692012-03-06 12:48:30 -0800643 mgmt->sa);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800644 rcu_read_unlock();
645 return;
646 }
647
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200648 if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200649 mpl_dbg(sdata, "Mesh plink: Action frame from non-authed peer\n");
Javier Cardona53e80512011-04-07 15:08:32 -0700650 rcu_read_unlock();
651 return;
652 }
653
Javier Cardona57cf8042011-05-13 10:45:43 -0700654 if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100655 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100656 return;
657 }
658
659 /* Now we will figure out the appropriate event... */
660 event = PLINK_UNDEFINED;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700661 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700662 !mesh_matches_local(sdata, &elems)) {
Christian Lamparterd12c7452010-10-08 22:27:07 +0200663 matches_local = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100664 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700665 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100666 event = OPN_RJCT;
667 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700668 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100669 event = CNF_RJCT;
670 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700671 default:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100672 break;
673 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200674 }
675
676 if (!sta && !matches_local) {
677 rcu_read_unlock();
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700678 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200679 llid = 0;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700680 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
681 mgmt->sa, llid, plid, reason);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200682 return;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100683 } else if (!sta) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700684 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100685 if (!mesh_plink_free_count(sdata)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200686 mpl_dbg(sdata, "Mesh plink error: no more free plinks\n");
Johannes Berg73651ee2008-02-25 16:27:47 +0100687 rcu_read_unlock();
688 return;
689 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100690 event = OPN_ACPT;
Christian Lamparterd12c7452010-10-08 22:27:07 +0200691 } else if (matches_local) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100692 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700693 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100694 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100695 (sta->plid && sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100696 event = OPN_IGNR;
697 else
698 event = OPN_ACPT;
699 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700700 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100701 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100702 (sta->llid != llid || sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100703 event = CNF_IGNR;
704 else
705 event = CNF_ACPT;
706 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700707 case WLAN_SP_MESH_PEERING_CLOSE:
Javier Cardona57cf8042011-05-13 10:45:43 -0700708 if (sta->plink_state == NL80211_PLINK_ESTAB)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100709 /* Do not check for llid or plid. This does not
710 * follow the standard but since multiple plinks
711 * per sta are not supported, it is necessary in
712 * order to avoid a livelock when MP A sees an
713 * establish peer link to MP B but MP B does not
714 * see it. This can be caused by a timeout in
715 * B's peer link establishment or B beign
716 * restarted.
717 */
718 event = CLS_ACPT;
719 else if (sta->plid != plid)
720 event = CLS_IGNR;
721 else if (ie_len == 7 && sta->llid != llid)
722 event = CLS_IGNR;
723 else
724 event = CLS_ACPT;
725 break;
726 default:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200727 mpl_dbg(sdata, "Mesh plink: unknown frame subtype\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100728 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100729 return;
730 }
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700731 }
732
733 if (event == OPN_ACPT) {
734 /* allocate sta entry if necessary and update info */
Thomas Pedersenf743ff42012-04-18 19:23:43 -0700735 sta = mesh_peer_init(sdata, mgmt->sa, &elems);
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700736 if (!sta) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200737 mpl_dbg(sdata, "Mesh plink: failed to init peer!\n");
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700738 rcu_read_unlock();
739 return;
740 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100741 }
742
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200743 mpl_dbg(sdata,
744 "Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
Rui Paulo1460dd12009-11-09 23:46:48 +0000745 mgmt->sa, mplstates[sta->plink_state],
Johannes Berg0c68ae262008-10-27 15:56:10 -0700746 le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
747 event);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100748 reason = 0;
Thomas Pedersen54ab1ff2012-04-18 19:23:42 -0700749 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100750 switch (sta->plink_state) {
751 /* spin_unlock as soon as state is updated at each case */
Javier Cardona57cf8042011-05-13 10:45:43 -0700752 case NL80211_PLINK_LISTEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100753 switch (event) {
754 case CLS_ACPT:
755 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200756 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100757 break;
758 case OPN_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700759 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100760 sta->plid = plid;
761 get_random_bytes(&llid, 2);
762 sta->llid = llid;
763 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200764 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700765 mesh_plink_frame_tx(sdata,
766 WLAN_SP_MESH_PEERING_OPEN,
767 sta->sta.addr, llid, 0, 0);
768 mesh_plink_frame_tx(sdata,
769 WLAN_SP_MESH_PEERING_CONFIRM,
770 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100771 break;
772 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200773 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100774 break;
775 }
776 break;
777
Javier Cardona57cf8042011-05-13 10:45:43 -0700778 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100779 switch (event) {
780 case OPN_RJCT:
781 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700782 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100783 case CLS_ACPT:
784 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700785 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100786 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700787 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100788 if (!mod_plink_timer(sta,
789 dot11MeshHoldingTimeout(sdata)))
790 sta->ignore_plink_timer = true;
791
792 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200793 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700794 mesh_plink_frame_tx(sdata,
795 WLAN_SP_MESH_PEERING_CLOSE,
796 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100797 break;
798 case OPN_ACPT:
799 /* retry timer is left untouched */
Javier Cardona57cf8042011-05-13 10:45:43 -0700800 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100801 sta->plid = plid;
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_CONFIRM,
806 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100807 break;
808 case CNF_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700809 sta->plink_state = NL80211_PLINK_CNF_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100810 if (!mod_plink_timer(sta,
811 dot11MeshConfirmTimeout(sdata)))
812 sta->ignore_plink_timer = true;
813
Johannes Berg07346f812008-05-03 01:02:02 +0200814 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100815 break;
816 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200817 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100818 break;
819 }
820 break;
821
Javier Cardona57cf8042011-05-13 10:45:43 -0700822 case NL80211_PLINK_OPN_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100823 switch (event) {
824 case OPN_RJCT:
825 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700826 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100827 case CLS_ACPT:
828 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700829 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100830 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700831 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100832 if (!mod_plink_timer(sta,
833 dot11MeshHoldingTimeout(sdata)))
834 sta->ignore_plink_timer = true;
835
836 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200837 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700838 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
839 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100840 break;
841 case OPN_ACPT:
842 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200843 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700844 mesh_plink_frame_tx(sdata,
845 WLAN_SP_MESH_PEERING_CONFIRM,
846 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100847 break;
848 case CNF_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100849 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700850 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200851 spin_unlock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200852 changed |= mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700853 changed |= mesh_set_ht_prot_mode(sdata);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200854 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700855 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100856 break;
857 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200858 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100859 break;
860 }
861 break;
862
Javier Cardona57cf8042011-05-13 10:45:43 -0700863 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100864 switch (event) {
865 case OPN_RJCT:
866 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700867 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100868 case CLS_ACPT:
869 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700870 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100871 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700872 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100873 if (!mod_plink_timer(sta,
874 dot11MeshHoldingTimeout(sdata)))
875 sta->ignore_plink_timer = true;
876
877 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200878 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700879 mesh_plink_frame_tx(sdata,
880 WLAN_SP_MESH_PEERING_CLOSE,
881 sta->sta.addr, llid, plid, reason);
Johannes Bergff59dc72008-02-25 10:11:50 +0100882 break;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100883 case OPN_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100884 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700885 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200886 spin_unlock_bh(&sta->lock);
Marco Porschdf323812012-08-08 07:58:43 +0200887 changed |= mesh_plink_inc_estab_count(sdata);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700888 changed |= mesh_set_ht_prot_mode(sdata);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200889 mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700890 sta->sta.addr);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700891 mesh_plink_frame_tx(sdata,
892 WLAN_SP_MESH_PEERING_CONFIRM,
893 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100894 break;
895 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200896 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100897 break;
898 }
899 break;
900
Javier Cardona57cf8042011-05-13 10:45:43 -0700901 case NL80211_PLINK_ESTAB:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100902 switch (event) {
903 case CLS_ACPT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700904 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100905 sta->reason = reason;
Marco Porschdf323812012-08-08 07:58:43 +0200906 changed |= __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700907 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100908 llid = sta->llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100909 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200910 spin_unlock_bh(&sta->lock);
Ashok Nagarajan57aac7c2012-04-30 14:20:30 -0700911 changed |= mesh_set_ht_prot_mode(sdata);
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}