blob: 0140e88a8220ce2f4c25c4758b6c555c2436b180 [file] [log] [blame]
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +01001/*
Rui Paulo264d9b72009-11-09 23:46:58 +00002 * Copyright (c) 2008, 2009 open80211s Ltd.
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +01003 * Author: Luis Carlos Cobo <luisca@cozybit.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/gfp.h>
Johannes Berg902acc72008-02-23 15:17:19 +010010#include <linux/kernel.h>
11#include <linux/random.h>
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010012#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040013#include "rate.h"
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010014#include "mesh.h"
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010015
16#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
17#define mpl_dbg(fmt, args...) printk(KERN_DEBUG fmt, ##args)
18#else
19#define mpl_dbg(fmt, args...) do { (void)(0); } while (0)
20#endif
21
Thomas Pedersen8db09852011-08-12 20:01:00 -070022#define PLINK_GET_LLID(p) (p + 2)
23#define PLINK_GET_PLID(p) (p + 4)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010024
25#define mod_plink_timer(s, t) (mod_timer(&s->plink_timer, \
26 jiffies + HZ * t / 1000))
27
Johannes Berg472dbc42008-09-11 00:01:49 +020028#define dot11MeshMaxRetries(s) (s->u.mesh.mshcfg.dot11MeshMaxRetries)
29#define dot11MeshRetryTimeout(s) (s->u.mesh.mshcfg.dot11MeshRetryTimeout)
30#define dot11MeshConfirmTimeout(s) (s->u.mesh.mshcfg.dot11MeshConfirmTimeout)
31#define dot11MeshHoldingTimeout(s) (s->u.mesh.mshcfg.dot11MeshHoldingTimeout)
32#define dot11MeshMaxPeerLinks(s) (s->u.mesh.mshcfg.dot11MeshMaxPeerLinks)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010033
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/*
79 * NOTE: This is just an alias for sta_info_alloc(), see notes
80 * on it in the lifecycle management section!
81 */
Johannes Berg03e44972008-02-27 09:56:40 +010082static struct sta_info *mesh_plink_alloc(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen739522b2011-10-26 14:47:28 -070083 u8 *hw_addr, u32 rates,
84 struct ieee802_11_elems *elems)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010085{
Johannes Bergd0709a62008-02-25 16:27:46 +010086 struct ieee80211_local *local = sdata->local;
Thomas Pedersen739522b2011-10-26 14:47:28 -070087 struct ieee80211_supported_band *sband;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010088 struct sta_info *sta;
89
Thomas Pedersen739522b2011-10-26 14:47:28 -070090 sband = local->hw.wiphy->bands[local->oper_channel->band];
91
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010092 if (local->num_sta >= MESH_MAX_PLINKS)
Johannes Berg73651ee2008-02-25 16:27:47 +010093 return NULL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010094
Johannes Berg34e89502010-02-03 13:59:58 +010095 sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +010096 if (!sta)
97 return NULL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +010098
Johannes Bergc2c98fd2011-09-29 16:04:36 +020099 set_sta_flag(sta, WLAN_STA_AUTH);
100 set_sta_flag(sta, WLAN_STA_AUTHORIZED);
101 set_sta_flag(sta, WLAN_STA_WME);
Johannes Berg323ce792008-09-11 02:45:11 +0200102 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Thomas Pedersen739522b2011-10-26 14:47:28 -0700103 if (elems->ht_cap_elem)
104 ieee80211_ht_cap_ie_to_sta_ht_cap(sband, elems->ht_cap_elem,
105 &sta->sta.ht_cap);
Christian Lamparterb973c312008-12-27 22:19:49 +0100106 rate_control_rate_init(sta);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100107
108 return sta;
109}
110
111/**
John W. Linvillec9370192010-06-21 17:14:07 -0400112 * __mesh_plink_deactivate - deactivate mesh peer link
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100113 *
114 * @sta: mesh peer link to deactivate
115 *
116 * All mesh paths with this peer as next hop will be flushed
117 *
Johannes Berg07346f812008-05-03 01:02:02 +0200118 * Locking: the caller must hold sta->lock
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100119 */
John W. Linvillec9370192010-06-21 17:14:07 -0400120static bool __mesh_plink_deactivate(struct sta_info *sta)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100121{
Johannes Bergd0709a62008-02-25 16:27:46 +0100122 struct ieee80211_sub_if_data *sdata = sta->sdata;
John W. Linvillec9370192010-06-21 17:14:07 -0400123 bool deactivated = false;
Johannes Bergd0709a62008-02-25 16:27:46 +0100124
Javier Cardona57cf8042011-05-13 10:45:43 -0700125 if (sta->plink_state == NL80211_PLINK_ESTAB) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100126 mesh_plink_dec_estab_count(sdata);
John W. Linvillec9370192010-06-21 17:14:07 -0400127 deactivated = true;
128 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700129 sta->plink_state = NL80211_PLINK_BLOCKED;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100130 mesh_path_flush_by_nexthop(sta);
John W. Linvillec9370192010-06-21 17:14:07 -0400131
132 return deactivated;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100133}
134
Johannes Berg902acc72008-02-23 15:17:19 +0100135/**
John W. Linvillec9370192010-06-21 17:14:07 -0400136 * mesh_plink_deactivate - deactivate mesh peer link
Johannes Berg902acc72008-02-23 15:17:19 +0100137 *
138 * @sta: mesh peer link to deactivate
139 *
140 * All mesh paths with this peer as next hop will be flushed
141 */
142void mesh_plink_deactivate(struct sta_info *sta)
143{
John W. Linvillec9370192010-06-21 17:14:07 -0400144 struct ieee80211_sub_if_data *sdata = sta->sdata;
145 bool deactivated;
146
Johannes Berg07346f812008-05-03 01:02:02 +0200147 spin_lock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400148 deactivated = __mesh_plink_deactivate(sta);
Thomas Pedersenba4a14e2011-09-20 13:43:32 -0700149 sta->reason = cpu_to_le16(WLAN_REASON_MESH_PEER_CANCELED);
150 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
151 sta->sta.addr, sta->llid, sta->plid,
152 sta->reason);
Johannes Berg07346f812008-05-03 01:02:02 +0200153 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400154
155 if (deactivated)
156 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +0100157}
158
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200159static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700160 enum ieee80211_self_protected_actioncode action,
161 u8 *da, __le16 llid, __le16 plid, __le16 reason) {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200162 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700163 struct sk_buff *skb;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100164 struct ieee80211_mgmt *mgmt;
165 bool include_plid = false;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700166 u16 peering_proto = 0;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700167 u8 *pos, ie_len = 4;
168 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
169 sizeof(mgmt->u.action.u.self_prot);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100170
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700171 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
172 hdr_len +
173 2 + /* capability info */
174 2 + /* AID */
175 2 + 8 + /* supported rates */
176 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
177 2 + sdata->u.mesh.mesh_id_len +
178 2 + sizeof(struct ieee80211_meshconf_ie) +
Thomas Pedersen176f3602011-10-26 14:47:27 -0700179 2 + sizeof(struct ieee80211_ht_cap) +
180 2 + sizeof(struct ieee80211_ht_info) +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700181 2 + 8 + /* peering IE */
182 sdata->u.mesh.ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100183 if (!skb)
184 return -1;
185 skb_reserve(skb, local->hw.extra_tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700186 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
187 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700188 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
189 IEEE80211_STYPE_ACTION);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100190 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100191 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Javier Cardona915b5c52011-05-03 16:57:10 -0700192 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700193 mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
194 mgmt->u.action.u.self_prot.action_code = action;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100195
Thomas Pedersen8db09852011-08-12 20:01:00 -0700196 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
197 /* capability info */
198 pos = skb_put(skb, 2);
199 memset(pos, 0, 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700200 if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
Thomas Pedersen8db09852011-08-12 20:01:00 -0700201 /* AID */
202 pos = skb_put(skb, 2);
Rui Paulo77fa76b2009-11-09 23:46:52 +0000203 memcpy(pos + 2, &plid, 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100204 }
Arik Nemtsov768db342011-09-28 14:12:51 +0300205 if (ieee80211_add_srates_ie(&sdata->vif, skb) ||
206 ieee80211_add_ext_srates_ie(&sdata->vif, skb) ||
Thomas Pedersen082ebb02011-08-11 19:35:10 -0700207 mesh_add_rsn_ie(skb, sdata) ||
208 mesh_add_meshid_ie(skb, sdata) ||
209 mesh_add_meshconf_ie(skb, sdata))
210 return -1;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700211 } else { /* WLAN_SP_MESH_PEERING_CLOSE */
212 if (mesh_add_meshid_ie(skb, sdata))
213 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100214 }
215
Thomas Pedersen8db09852011-08-12 20:01:00 -0700216 /* Add Mesh Peering Management element */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100217 switch (action) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700218 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100219 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700220 case WLAN_SP_MESH_PEERING_CONFIRM:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700221 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100222 include_plid = true;
223 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700224 case WLAN_SP_MESH_PEERING_CLOSE:
Thomas Pedersen8db09852011-08-12 20:01:00 -0700225 if (plid) {
226 ie_len += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100227 include_plid = true;
228 }
Thomas Pedersen8db09852011-08-12 20:01:00 -0700229 ie_len += 2; /* reason code */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100230 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700231 default:
232 return -EINVAL;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100233 }
234
Thomas Pedersen8db09852011-08-12 20:01:00 -0700235 if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
236 return -ENOMEM;
237
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100238 pos = skb_put(skb, 2 + ie_len);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700239 *pos++ = WLAN_EID_PEER_MGMT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100240 *pos++ = ie_len;
Thomas Pedersen8db09852011-08-12 20:01:00 -0700241 memcpy(pos, &peering_proto, 2);
242 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100243 memcpy(pos, &llid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700244 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100245 if (include_plid) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100246 memcpy(pos, &plid, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700247 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100248 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700249 if (action == WLAN_SP_MESH_PEERING_CLOSE) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100250 memcpy(pos, &reason, 2);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700251 pos += 2;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100252 }
Thomas Pedersen176f3602011-10-26 14:47:27 -0700253
254 if (action != WLAN_SP_MESH_PEERING_CLOSE) {
255 if (mesh_add_ht_cap_ie(skb, sdata) ||
256 mesh_add_ht_info_ie(skb, sdata))
257 return -1;
258 }
259
Thomas Pedersen8db09852011-08-12 20:01:00 -0700260 if (mesh_add_vendor_ies(skb, sdata))
261 return -1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100262
Johannes Berg62ae67b2009-11-18 18:42:05 +0100263 ieee80211_tx_skb(sdata, skb);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100264 return 0;
265}
266
Javier Cardona1570ca52011-04-07 15:08:35 -0700267void mesh_neighbour_update(u8 *hw_addr, u32 rates,
268 struct ieee80211_sub_if_data *sdata,
269 struct ieee802_11_elems *elems)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100270{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200271 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100272 struct sta_info *sta;
273
Johannes Bergd0709a62008-02-25 16:27:46 +0100274 rcu_read_lock();
275
Johannes Bergabe60632009-11-25 17:46:18 +0100276 sta = sta_info_get(sdata, hw_addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100277 if (!sta) {
Johannes Berg34e89502010-02-03 13:59:58 +0100278 rcu_read_unlock();
Javier Cardona1570ca52011-04-07 15:08:35 -0700279 /* Userspace handles peer allocation when security is enabled
280 * */
Javier Cardonab130e5c2011-05-03 16:57:07 -0700281 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED)
Javier Cardona1570ca52011-04-07 15:08:35 -0700282 cfg80211_notify_new_peer_candidate(sdata->dev, hw_addr,
283 elems->ie_start, elems->total_len,
284 GFP_KERNEL);
285 else
Thomas Pedersen739522b2011-10-26 14:47:28 -0700286 sta = mesh_plink_alloc(sdata, hw_addr, rates, elems);
Johannes Berg34e89502010-02-03 13:59:58 +0100287 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100288 return;
Johannes Berg34e89502010-02-03 13:59:58 +0100289 if (sta_info_insert_rcu(sta)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100290 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100291 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100292 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100293 }
294
295 sta->last_rx = jiffies;
Johannes Berg323ce792008-09-11 02:45:11 +0200296 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Javier Cardona1570ca52011-04-07 15:08:35 -0700297 if (mesh_peer_accepts_plinks(elems) &&
Javier Cardona57cf8042011-05-13 10:45:43 -0700298 sta->plink_state == NL80211_PLINK_LISTEN &&
Johannes Berg472dbc42008-09-11 00:01:49 +0200299 sdata->u.mesh.accepting_plinks &&
300 sdata->u.mesh.mshcfg.auto_open_plinks)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100301 mesh_plink_open(sta);
302
Johannes Bergd0709a62008-02-25 16:27:46 +0100303 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100304}
305
306static void mesh_plink_timer(unsigned long data)
307{
308 struct sta_info *sta;
309 __le16 llid, plid, reason;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100310 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100311
Johannes Bergd0709a62008-02-25 16:27:46 +0100312 /*
313 * This STA is valid because sta_info_destroy() will
314 * del_timer_sync() this timer after having made sure
315 * it cannot be readded (by deleting the plink.)
316 */
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100317 sta = (struct sta_info *) data;
318
Johannes Berg5bb644a2009-05-17 11:40:42 +0200319 if (sta->sdata->local->quiescing) {
320 sta->plink_timer_was_running = true;
321 return;
322 }
323
Johannes Berg07346f812008-05-03 01:02:02 +0200324 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100325 if (sta->ignore_plink_timer) {
326 sta->ignore_plink_timer = false;
Johannes Berg07346f812008-05-03 01:02:02 +0200327 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100328 return;
329 }
Johannes Berg0c68ae262008-10-27 15:56:10 -0700330 mpl_dbg("Mesh plink timer for %pM fired on state %d\n",
331 sta->sta.addr, sta->plink_state);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100332 reason = 0;
333 llid = sta->llid;
334 plid = sta->plid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100335 sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100336
337 switch (sta->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -0700338 case NL80211_PLINK_OPN_RCVD:
339 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100340 /* retry timer */
341 if (sta->plink_retries < dot11MeshMaxRetries(sdata)) {
342 u32 rand;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700343 mpl_dbg("Mesh plink for %pM (retry, timeout): %d %d\n",
344 sta->sta.addr, sta->plink_retries,
345 sta->plink_timeout);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100346 get_random_bytes(&rand, sizeof(u32));
347 sta->plink_timeout = sta->plink_timeout +
348 rand % sta->plink_timeout;
349 ++sta->plink_retries;
Johannes Bergd0709a62008-02-25 16:27:46 +0100350 mod_plink_timer(sta, sta->plink_timeout);
Johannes Berg07346f812008-05-03 01:02:02 +0200351 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700352 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
353 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100354 break;
355 }
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700356 reason = cpu_to_le16(WLAN_REASON_MESH_MAX_RETRIES);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100357 /* fall through on else */
Javier Cardona57cf8042011-05-13 10:45:43 -0700358 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100359 /* confirm timer */
360 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700361 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIRM_TIMEOUT);
Javier Cardona57cf8042011-05-13 10:45:43 -0700362 sta->plink_state = NL80211_PLINK_HOLDING;
Johannes Bergd0709a62008-02-25 16:27:46 +0100363 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200364 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700365 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
366 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100367 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700368 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100369 /* holding timer */
Johannes Bergd0709a62008-02-25 16:27:46 +0100370 del_timer(&sta->plink_timer);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100371 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200372 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100373 break;
374 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200375 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100376 break;
377 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100378}
379
Johannes Berg5bb644a2009-05-17 11:40:42 +0200380#ifdef CONFIG_PM
381void mesh_plink_quiesce(struct sta_info *sta)
382{
383 if (del_timer_sync(&sta->plink_timer))
384 sta->plink_timer_was_running = true;
385}
386
387void mesh_plink_restart(struct sta_info *sta)
388{
389 if (sta->plink_timer_was_running) {
390 add_timer(&sta->plink_timer);
391 sta->plink_timer_was_running = false;
392 }
393}
394#endif
395
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100396static inline void mesh_plink_timer_set(struct sta_info *sta, int timeout)
397{
398 sta->plink_timer.expires = jiffies + (HZ * timeout / 1000);
399 sta->plink_timer.data = (unsigned long) sta;
400 sta->plink_timer.function = mesh_plink_timer;
401 sta->plink_timeout = timeout;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100402 add_timer(&sta->plink_timer);
403}
404
405int mesh_plink_open(struct sta_info *sta)
406{
407 __le16 llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100408 struct ieee80211_sub_if_data *sdata = sta->sdata;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100409
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200410 if (!test_sta_flag(sta, WLAN_STA_AUTH))
Javier Cardona53e80512011-04-07 15:08:32 -0700411 return -EPERM;
412
Johannes Berg07346f812008-05-03 01:02:02 +0200413 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100414 get_random_bytes(&llid, 2);
415 sta->llid = llid;
Javier Cardona57cf8042011-05-13 10:45:43 -0700416 if (sta->plink_state != NL80211_PLINK_LISTEN) {
Johannes Berg07346f812008-05-03 01:02:02 +0200417 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100418 return -EBUSY;
419 }
Javier Cardona57cf8042011-05-13 10:45:43 -0700420 sta->plink_state = NL80211_PLINK_OPN_SNT;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100421 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200422 spin_unlock_bh(&sta->lock);
Johannes Berg0c68ae262008-10-27 15:56:10 -0700423 mpl_dbg("Mesh plink: starting establishment with %pM\n",
424 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100425
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700426 return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
Johannes Berg17741cd2008-09-11 00:02:02 +0200427 sta->sta.addr, llid, 0, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100428}
429
430void mesh_plink_block(struct sta_info *sta)
431{
John W. Linvillec9370192010-06-21 17:14:07 -0400432 struct ieee80211_sub_if_data *sdata = sta->sdata;
433 bool deactivated;
434
Johannes Berg07346f812008-05-03 01:02:02 +0200435 spin_lock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400436 deactivated = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700437 sta->plink_state = NL80211_PLINK_BLOCKED;
Johannes Berg07346f812008-05-03 01:02:02 +0200438 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400439
440 if (deactivated)
441 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100442}
443
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100444
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200445void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100446 size_t len, struct ieee80211_rx_status *rx_status)
447{
Johannes Bergd0709a62008-02-25 16:27:46 +0100448 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100449 struct ieee802_11_elems elems;
450 struct sta_info *sta;
451 enum plink_event event;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700452 enum ieee80211_self_protected_actioncode ftype;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100453 size_t baselen;
Christian Lamparterd12c7452010-10-08 22:27:07 +0200454 bool deactivated, matches_local = true;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100455 u8 ie_len;
456 u8 *baseaddr;
457 __le16 plid, llid, reason;
Rui Paulo1460dd12009-11-09 23:46:48 +0000458#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
459 static const char *mplstates[] = {
Javier Cardona57cf8042011-05-13 10:45:43 -0700460 [NL80211_PLINK_LISTEN] = "LISTEN",
461 [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
462 [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
463 [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
464 [NL80211_PLINK_ESTAB] = "ESTAB",
465 [NL80211_PLINK_HOLDING] = "HOLDING",
466 [NL80211_PLINK_BLOCKED] = "BLOCKED"
Rui Paulo1460dd12009-11-09 23:46:48 +0000467 };
468#endif
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100469
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200470 /* need action_code, aux */
471 if (len < IEEE80211_MIN_ACTION_SIZE + 3)
472 return;
473
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100474 if (is_multicast_ether_addr(mgmt->da)) {
475 mpl_dbg("Mesh plink: ignore frame from multicast address");
476 return;
477 }
478
Thomas Pedersen8db09852011-08-12 20:01:00 -0700479 baseaddr = mgmt->u.action.u.self_prot.variable;
480 baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
481 if (mgmt->u.action.u.self_prot.action_code ==
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700482 WLAN_SP_MESH_PEERING_CONFIRM) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100483 baseaddr += 4;
David Woo70bdb6b2009-08-12 11:03:44 -0700484 baselen += 4;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100485 }
486 ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
Thomas Pedersen8db09852011-08-12 20:01:00 -0700487 if (!elems.peering) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100488 mpl_dbg("Mesh plink: missing necessary peer link ie\n");
489 return;
490 }
Javier Cardonab130e5c2011-05-03 16:57:07 -0700491 if (elems.rsn_len &&
492 sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
Javier Cardona5cff5e02011-04-07 15:08:29 -0700493 mpl_dbg("Mesh plink: can't establish link with secure peer\n");
494 return;
495 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100496
Thomas Pedersen8db09852011-08-12 20:01:00 -0700497 ftype = mgmt->u.action.u.self_prot.action_code;
498 ie_len = elems.peering_len;
499 if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
500 (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
501 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
502 && ie_len != 8)) {
Rui Paulo09383932009-11-09 23:46:43 +0000503 mpl_dbg("Mesh plink: incorrect plink ie length %d %d\n",
504 ftype, ie_len);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100505 return;
506 }
507
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700508 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
509 (!elems.mesh_id || !elems.mesh_config)) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100510 mpl_dbg("Mesh plink: missing necessary ie\n");
511 return;
512 }
513 /* Note the lines below are correct, the llid in the frame is the plid
514 * from the point of view of this host.
515 */
Thomas Pedersen8db09852011-08-12 20:01:00 -0700516 memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700517 if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
Thomas Pedersen8db09852011-08-12 20:01:00 -0700518 (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
519 memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100520
Johannes Bergd0709a62008-02-25 16:27:46 +0100521 rcu_read_lock();
522
Johannes Bergabe60632009-11-25 17:46:18 +0100523 sta = sta_info_get(sdata, mgmt->sa);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700524 if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100525 mpl_dbg("Mesh plink: cls or cnf from unknown peer\n");
Johannes Bergd0709a62008-02-25 16:27:46 +0100526 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100527 return;
528 }
529
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200530 if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
Javier Cardona53e80512011-04-07 15:08:32 -0700531 mpl_dbg("Mesh plink: Action frame from non-authed peer\n");
532 rcu_read_unlock();
533 return;
534 }
535
Javier Cardona57cf8042011-05-13 10:45:43 -0700536 if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100537 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100538 return;
539 }
540
541 /* Now we will figure out the appropriate event... */
542 event = PLINK_UNDEFINED;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700543 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
544 (!mesh_matches_local(&elems, sdata))) {
Christian Lamparterd12c7452010-10-08 22:27:07 +0200545 matches_local = false;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100546 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700547 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100548 event = OPN_RJCT;
549 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700550 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100551 event = CNF_RJCT;
552 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700553 default:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100554 break;
555 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200556 }
557
558 if (!sta && !matches_local) {
559 rcu_read_unlock();
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700560 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200561 llid = 0;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700562 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
563 mgmt->sa, llid, plid, reason);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200564 return;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100565 } else if (!sta) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700566 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
Johannes Berg881d9482009-01-21 15:13:48 +0100567 u32 rates;
Johannes Berg34e89502010-02-03 13:59:58 +0100568
569 rcu_read_unlock();
570
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100571 if (!mesh_plink_free_count(sdata)) {
572 mpl_dbg("Mesh plink error: no more free plinks\n");
573 return;
574 }
575
576 rates = ieee80211_sta_get_rates(local, &elems, rx_status->band);
Thomas Pedersen739522b2011-10-26 14:47:28 -0700577 sta = mesh_plink_alloc(sdata, mgmt->sa, rates, &elems);
Johannes Berg73651ee2008-02-25 16:27:47 +0100578 if (!sta) {
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100579 mpl_dbg("Mesh plink error: plink table full\n");
580 return;
581 }
Johannes Berg34e89502010-02-03 13:59:58 +0100582 if (sta_info_insert_rcu(sta)) {
Johannes Berg73651ee2008-02-25 16:27:47 +0100583 rcu_read_unlock();
584 return;
585 }
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100586 event = OPN_ACPT;
Johannes Berg07346f812008-05-03 01:02:02 +0200587 spin_lock_bh(&sta->lock);
Christian Lamparterd12c7452010-10-08 22:27:07 +0200588 } else if (matches_local) {
Johannes Berg07346f812008-05-03 01:02:02 +0200589 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100590 switch (ftype) {
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700591 case WLAN_SP_MESH_PEERING_OPEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100592 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100593 (sta->plid && sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100594 event = OPN_IGNR;
595 else
596 event = OPN_ACPT;
597 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700598 case WLAN_SP_MESH_PEERING_CONFIRM:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100599 if (!mesh_plink_free_count(sdata) ||
Johannes Bergd0709a62008-02-25 16:27:46 +0100600 (sta->llid != llid || sta->plid != plid))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100601 event = CNF_IGNR;
602 else
603 event = CNF_ACPT;
604 break;
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700605 case WLAN_SP_MESH_PEERING_CLOSE:
Javier Cardona57cf8042011-05-13 10:45:43 -0700606 if (sta->plink_state == NL80211_PLINK_ESTAB)
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100607 /* Do not check for llid or plid. This does not
608 * follow the standard but since multiple plinks
609 * per sta are not supported, it is necessary in
610 * order to avoid a livelock when MP A sees an
611 * establish peer link to MP B but MP B does not
612 * see it. This can be caused by a timeout in
613 * B's peer link establishment or B beign
614 * restarted.
615 */
616 event = CLS_ACPT;
617 else if (sta->plid != plid)
618 event = CLS_IGNR;
619 else if (ie_len == 7 && sta->llid != llid)
620 event = CLS_IGNR;
621 else
622 event = CLS_ACPT;
623 break;
624 default:
625 mpl_dbg("Mesh plink: unknown frame subtype\n");
Johannes Berg07346f812008-05-03 01:02:02 +0200626 spin_unlock_bh(&sta->lock);
Johannes Bergd0709a62008-02-25 16:27:46 +0100627 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100628 return;
629 }
Christian Lamparterd12c7452010-10-08 22:27:07 +0200630 } else {
631 spin_lock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100632 }
633
Rui Paulo1460dd12009-11-09 23:46:48 +0000634 mpl_dbg("Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
635 mgmt->sa, mplstates[sta->plink_state],
Johannes Berg0c68ae262008-10-27 15:56:10 -0700636 le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
637 event);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100638 reason = 0;
639 switch (sta->plink_state) {
640 /* spin_unlock as soon as state is updated at each case */
Javier Cardona57cf8042011-05-13 10:45:43 -0700641 case NL80211_PLINK_LISTEN:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100642 switch (event) {
643 case CLS_ACPT:
644 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200645 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100646 break;
647 case OPN_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700648 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100649 sta->plid = plid;
650 get_random_bytes(&llid, 2);
651 sta->llid = llid;
652 mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200653 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700654 mesh_plink_frame_tx(sdata,
655 WLAN_SP_MESH_PEERING_OPEN,
656 sta->sta.addr, llid, 0, 0);
657 mesh_plink_frame_tx(sdata,
658 WLAN_SP_MESH_PEERING_CONFIRM,
659 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100660 break;
661 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200662 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100663 break;
664 }
665 break;
666
Javier Cardona57cf8042011-05-13 10:45:43 -0700667 case NL80211_PLINK_OPN_SNT:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100668 switch (event) {
669 case OPN_RJCT:
670 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700671 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100672 case CLS_ACPT:
673 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700674 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100675 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700676 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100677 if (!mod_plink_timer(sta,
678 dot11MeshHoldingTimeout(sdata)))
679 sta->ignore_plink_timer = true;
680
681 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200682 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700683 mesh_plink_frame_tx(sdata,
684 WLAN_SP_MESH_PEERING_CLOSE,
685 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100686 break;
687 case OPN_ACPT:
688 /* retry timer is left untouched */
Javier Cardona57cf8042011-05-13 10:45:43 -0700689 sta->plink_state = NL80211_PLINK_OPN_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100690 sta->plid = plid;
691 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200692 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700693 mesh_plink_frame_tx(sdata,
694 WLAN_SP_MESH_PEERING_CONFIRM,
695 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100696 break;
697 case CNF_ACPT:
Javier Cardona57cf8042011-05-13 10:45:43 -0700698 sta->plink_state = NL80211_PLINK_CNF_RCVD;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100699 if (!mod_plink_timer(sta,
700 dot11MeshConfirmTimeout(sdata)))
701 sta->ignore_plink_timer = true;
702
Johannes Berg07346f812008-05-03 01:02:02 +0200703 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100704 break;
705 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200706 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100707 break;
708 }
709 break;
710
Javier Cardona57cf8042011-05-13 10:45:43 -0700711 case NL80211_PLINK_OPN_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100712 switch (event) {
713 case OPN_RJCT:
714 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700715 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100716 case CLS_ACPT:
717 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700718 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100719 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700720 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100721 if (!mod_plink_timer(sta,
722 dot11MeshHoldingTimeout(sdata)))
723 sta->ignore_plink_timer = true;
724
725 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200726 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700727 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
728 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100729 break;
730 case OPN_ACPT:
731 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200732 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700733 mesh_plink_frame_tx(sdata,
734 WLAN_SP_MESH_PEERING_CONFIRM,
735 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100736 break;
737 case CNF_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100738 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700739 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200740 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400741 mesh_plink_inc_estab_count(sdata);
742 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Johannes Berg0c68ae262008-10-27 15:56:10 -0700743 mpl_dbg("Mesh plink with %pM ESTABLISHED\n",
744 sta->sta.addr);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100745 break;
746 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200747 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100748 break;
749 }
750 break;
751
Javier Cardona57cf8042011-05-13 10:45:43 -0700752 case NL80211_PLINK_CNF_RCVD:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100753 switch (event) {
754 case OPN_RJCT:
755 case CNF_RJCT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700756 reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100757 case CLS_ACPT:
758 if (!reason)
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700759 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100760 sta->reason = reason;
Javier Cardona57cf8042011-05-13 10:45:43 -0700761 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100762 if (!mod_plink_timer(sta,
763 dot11MeshHoldingTimeout(sdata)))
764 sta->ignore_plink_timer = true;
765
766 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200767 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700768 mesh_plink_frame_tx(sdata,
769 WLAN_SP_MESH_PEERING_CLOSE,
770 sta->sta.addr, llid, plid, reason);
Johannes Bergff59dc72008-02-25 10:11:50 +0100771 break;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100772 case OPN_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100773 del_timer(&sta->plink_timer);
Javier Cardona57cf8042011-05-13 10:45:43 -0700774 sta->plink_state = NL80211_PLINK_ESTAB;
Johannes Berg07346f812008-05-03 01:02:02 +0200775 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400776 mesh_plink_inc_estab_count(sdata);
777 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Johannes Berg0c68ae262008-10-27 15:56:10 -0700778 mpl_dbg("Mesh plink with %pM ESTABLISHED\n",
779 sta->sta.addr);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700780 mesh_plink_frame_tx(sdata,
781 WLAN_SP_MESH_PEERING_CONFIRM,
782 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100783 break;
784 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200785 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100786 break;
787 }
788 break;
789
Javier Cardona57cf8042011-05-13 10:45:43 -0700790 case NL80211_PLINK_ESTAB:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100791 switch (event) {
792 case CLS_ACPT:
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700793 reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100794 sta->reason = reason;
John W. Linvillec9370192010-06-21 17:14:07 -0400795 deactivated = __mesh_plink_deactivate(sta);
Javier Cardona57cf8042011-05-13 10:45:43 -0700796 sta->plink_state = NL80211_PLINK_HOLDING;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100797 llid = sta->llid;
Johannes Bergd0709a62008-02-25 16:27:46 +0100798 mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
Johannes Berg07346f812008-05-03 01:02:02 +0200799 spin_unlock_bh(&sta->lock);
John W. Linvillec9370192010-06-21 17:14:07 -0400800 if (deactivated)
801 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700802 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
803 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100804 break;
805 case OPN_ACPT:
806 llid = sta->llid;
Johannes Berg07346f812008-05-03 01:02:02 +0200807 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700808 mesh_plink_frame_tx(sdata,
809 WLAN_SP_MESH_PEERING_CONFIRM,
810 sta->sta.addr, llid, plid, 0);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100811 break;
812 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200813 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100814 break;
815 }
816 break;
Javier Cardona57cf8042011-05-13 10:45:43 -0700817 case NL80211_PLINK_HOLDING:
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100818 switch (event) {
819 case CLS_ACPT:
Johannes Bergd0709a62008-02-25 16:27:46 +0100820 if (del_timer(&sta->plink_timer))
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100821 sta->ignore_plink_timer = 1;
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100822 mesh_plink_fsm_restart(sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200823 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100824 break;
825 case OPN_ACPT:
826 case CNF_ACPT:
827 case OPN_RJCT:
828 case CNF_RJCT:
829 llid = sta->llid;
830 reason = sta->reason;
Johannes Berg07346f812008-05-03 01:02:02 +0200831 spin_unlock_bh(&sta->lock);
Thomas Pedersen54ef6562011-08-11 19:35:12 -0700832 mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
833 sta->sta.addr, llid, plid, reason);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100834 break;
835 default:
Johannes Berg07346f812008-05-03 01:02:02 +0200836 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100837 }
838 break;
839 default:
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800840 /* should not get here, PLINK_BLOCKED is dealt with at the
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800841 * beginning of the function
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100842 */
Johannes Berg07346f812008-05-03 01:02:02 +0200843 spin_unlock_bh(&sta->lock);
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100844 break;
845 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100846
847 rcu_read_unlock();
Luis Carlos Coboc3896d2c2008-02-23 15:17:13 +0100848}