mesh_plink.c 22.3 KB
Newer Older
1
/*
R
Rui Paulo 已提交
2
 * Copyright (c) 2008, 2009 open80211s Ltd.
3 4 5 6 7 8
 * Author:     Luis Carlos Cobo <luisca@cozybit.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
9
#include <linux/gfp.h>
J
Johannes Berg 已提交
10 11
#include <linux/kernel.h>
#include <linux/random.h>
12
#include "ieee80211_i.h"
J
Johannes Berg 已提交
13
#include "rate.h"
14 15 16 17 18 19 20 21
#include "mesh.h"

#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
#define mpl_dbg(fmt, args...)	printk(KERN_DEBUG fmt, ##args)
#else
#define mpl_dbg(fmt, args...)	do { (void)(0); } while (0)
#endif

22 23
#define PLINK_GET_LLID(p) (p + 2)
#define PLINK_GET_PLID(p) (p + 4)
24 25 26 27

#define mod_plink_timer(s, t) (mod_timer(&s->plink_timer, \
				jiffies + HZ * t / 1000))

28 29 30 31 32
#define dot11MeshMaxRetries(s) (s->u.mesh.mshcfg.dot11MeshMaxRetries)
#define dot11MeshRetryTimeout(s) (s->u.mesh.mshcfg.dot11MeshRetryTimeout)
#define dot11MeshConfirmTimeout(s) (s->u.mesh.mshcfg.dot11MeshConfirmTimeout)
#define dot11MeshHoldingTimeout(s) (s->u.mesh.mshcfg.dot11MeshHoldingTimeout)
#define dot11MeshMaxPeerLinks(s) (s->u.mesh.mshcfg.dot11MeshMaxPeerLinks)
33 34 35 36 37 38 39 40 41 42 43 44 45

enum plink_event {
	PLINK_UNDEFINED,
	OPN_ACPT,
	OPN_RJCT,
	OPN_IGNR,
	CNF_ACPT,
	CNF_RJCT,
	CNF_IGNR,
	CLS_ACPT,
	CLS_IGNR
};

46 47 48 49
static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
		enum ieee80211_self_protected_actioncode action,
		u8 *da, __le16 llid, __le16 plid, __le16 reason);

50 51 52
static inline
void mesh_plink_inc_estab_count(struct ieee80211_sub_if_data *sdata)
{
53
	atomic_inc(&sdata->u.mesh.mshstats.estab_plinks);
54
	mesh_accept_plinks_update(sdata);
55 56 57 58 59
}

static inline
void mesh_plink_dec_estab_count(struct ieee80211_sub_if_data *sdata)
{
60
	atomic_dec(&sdata->u.mesh.mshstats.estab_plinks);
61
	mesh_accept_plinks_update(sdata);
62 63 64 65 66
}

/**
 * mesh_plink_fsm_restart - restart a mesh peer link finite state machine
 *
R
Rui Paulo 已提交
67
 * @sta: mesh peer link to restart
68
 *
69
 * Locking: this function must be called holding sta->lock
70 71 72
 */
static inline void mesh_plink_fsm_restart(struct sta_info *sta)
{
73
	sta->plink_state = NL80211_PLINK_LISTEN;
74 75
	sta->llid = sta->plid = sta->reason = 0;
	sta->plink_retries = 0;
76 77
}

78 79 80 81
/*
 * NOTE: This is just an alias for sta_info_alloc(), see notes
 *       on it in the lifecycle management section!
 */
82
static struct sta_info *mesh_plink_alloc(struct ieee80211_sub_if_data *sdata,
83 84
					 u8 *hw_addr, u32 rates,
					 struct ieee802_11_elems *elems)
85
{
86
	struct ieee80211_local *local = sdata->local;
87
	struct ieee80211_supported_band *sband;
88 89
	struct sta_info *sta;

90 91
	sband = local->hw.wiphy->bands[local->oper_channel->band];

92
	if (local->num_sta >= MESH_MAX_PLINKS)
J
Johannes Berg 已提交
93
		return NULL;
94

95
	sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
J
Johannes Berg 已提交
96 97
	if (!sta)
		return NULL;
98

99 100 101
	sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
	sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
	sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
102

J
Johannes Berg 已提交
103
	set_sta_flag(sta, WLAN_STA_WME);
104

J
Johannes Berg 已提交
105
	sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
106
	if (elems->ht_cap_elem)
B
Ben Greear 已提交
107 108
		ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
						  elems->ht_cap_elem,
109
						  &sta->sta.ht_cap);
110
	rate_control_rate_init(sta);
111 112 113 114 115

	return sta;
}

/**
116
 * __mesh_plink_deactivate - deactivate mesh peer link
117 118 119 120 121
 *
 * @sta: mesh peer link to deactivate
 *
 * All mesh paths with this peer as next hop will be flushed
 *
122
 * Locking: the caller must hold sta->lock
123
 */
124
static bool __mesh_plink_deactivate(struct sta_info *sta)
125
{
126
	struct ieee80211_sub_if_data *sdata = sta->sdata;
127
	bool deactivated = false;
128

129
	if (sta->plink_state == NL80211_PLINK_ESTAB) {
130
		mesh_plink_dec_estab_count(sdata);
131 132
		deactivated = true;
	}
133
	sta->plink_state = NL80211_PLINK_BLOCKED;
134
	mesh_path_flush_by_nexthop(sta);
135 136

	return deactivated;
137 138
}

J
Johannes Berg 已提交
139
/**
140
 * mesh_plink_deactivate - deactivate mesh peer link
J
Johannes Berg 已提交
141 142 143 144 145 146 147
 *
 * @sta: mesh peer link to deactivate
 *
 * All mesh paths with this peer as next hop will be flushed
 */
void mesh_plink_deactivate(struct sta_info *sta)
{
148 149 150
	struct ieee80211_sub_if_data *sdata = sta->sdata;
	bool deactivated;

151
	spin_lock_bh(&sta->lock);
152
	deactivated = __mesh_plink_deactivate(sta);
153 154 155 156
	sta->reason = cpu_to_le16(WLAN_REASON_MESH_PEER_CANCELED);
	mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
			    sta->sta.addr, sta->llid, sta->plid,
			    sta->reason);
157
	spin_unlock_bh(&sta->lock);
158 159 160

	if (deactivated)
		ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
J
Johannes Berg 已提交
161 162
}

163
static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
164 165
		enum ieee80211_self_protected_actioncode action,
		u8 *da, __le16 llid, __le16 plid, __le16 reason) {
166
	struct ieee80211_local *local = sdata->local;
167
	struct sk_buff *skb;
168 169
	struct ieee80211_mgmt *mgmt;
	bool include_plid = false;
170
	u16 peering_proto = 0;
171 172 173 174
	u8 *pos, ie_len = 4;
	int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
		      sizeof(mgmt->u.action.u.self_prot);

175
	skb = dev_alloc_skb(local->tx_headroom +
176 177 178 179 180 181 182
			    hdr_len +
			    2 + /* capability info */
			    2 + /* AID */
			    2 + 8 + /* supported rates */
			    2 + (IEEE80211_MAX_SUPP_RATES - 8) +
			    2 + sdata->u.mesh.mesh_id_len +
			    2 + sizeof(struct ieee80211_meshconf_ie) +
183 184
			    2 + sizeof(struct ieee80211_ht_cap) +
			    2 + sizeof(struct ieee80211_ht_info) +
185 186
			    2 + 8 + /* peering IE */
			    sdata->u.mesh.ie_len);
187 188
	if (!skb)
		return -1;
189
	skb_reserve(skb, local->tx_headroom);
190 191
	mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
	memset(mgmt, 0, hdr_len);
192 193
	mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
					  IEEE80211_STYPE_ACTION);
194
	memcpy(mgmt->da, da, ETH_ALEN);
195
	memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
196
	memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
197 198
	mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
	mgmt->u.action.u.self_prot.action_code = action;
199

200 201 202 203
	if (action != WLAN_SP_MESH_PEERING_CLOSE) {
		/* capability info */
		pos = skb_put(skb, 2);
		memset(pos, 0, 2);
204
		if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
205 206
			/* AID */
			pos = skb_put(skb, 2);
207
			memcpy(pos + 2, &plid, 2);
208
		}
209 210
		if (ieee80211_add_srates_ie(&sdata->vif, skb) ||
		    ieee80211_add_ext_srates_ie(&sdata->vif, skb) ||
211 212 213 214
		    mesh_add_rsn_ie(skb, sdata) ||
		    mesh_add_meshid_ie(skb, sdata) ||
		    mesh_add_meshconf_ie(skb, sdata))
			return -1;
215 216 217
	} else {	/* WLAN_SP_MESH_PEERING_CLOSE */
		if (mesh_add_meshid_ie(skb, sdata))
			return -1;
218 219
	}

220
	/* Add Mesh Peering Management element */
221
	switch (action) {
222
	case WLAN_SP_MESH_PEERING_OPEN:
223
		break;
224
	case WLAN_SP_MESH_PEERING_CONFIRM:
225
		ie_len += 2;
226 227
		include_plid = true;
		break;
228
	case WLAN_SP_MESH_PEERING_CLOSE:
229 230
		if (plid) {
			ie_len += 2;
231 232
			include_plid = true;
		}
233
		ie_len += 2;	/* reason code */
234
		break;
235 236
	default:
		return -EINVAL;
237 238
	}

239 240 241
	if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
		return -ENOMEM;

242
	pos = skb_put(skb, 2 + ie_len);
243
	*pos++ = WLAN_EID_PEER_MGMT;
244
	*pos++ = ie_len;
245 246
	memcpy(pos, &peering_proto, 2);
	pos += 2;
247
	memcpy(pos, &llid, 2);
248
	pos += 2;
249 250
	if (include_plid) {
		memcpy(pos, &plid, 2);
251
		pos += 2;
252
	}
253
	if (action == WLAN_SP_MESH_PEERING_CLOSE) {
254
		memcpy(pos, &reason, 2);
255
		pos += 2;
256
	}
257 258 259 260 261 262 263

	if (action != WLAN_SP_MESH_PEERING_CLOSE) {
		if (mesh_add_ht_cap_ie(skb, sdata) ||
		    mesh_add_ht_info_ie(skb, sdata))
			return -1;
	}

264 265
	if (mesh_add_vendor_ies(skb, sdata))
		return -1;
266

267
	ieee80211_tx_skb(sdata, skb);
268 269 270
	return 0;
}

271 272 273
void mesh_neighbour_update(u8 *hw_addr, u32 rates,
		struct ieee80211_sub_if_data *sdata,
		struct ieee802_11_elems *elems)
274
{
275
	struct ieee80211_local *local = sdata->local;
276 277
	struct sta_info *sta;

278 279
	rcu_read_lock();

280
	sta = sta_info_get(sdata, hw_addr);
281
	if (!sta) {
282
		rcu_read_unlock();
283 284
		/* Userspace handles peer allocation when security is enabled
		 * */
285
		if (sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED)
286 287 288 289
			cfg80211_notify_new_peer_candidate(sdata->dev, hw_addr,
					elems->ie_start, elems->total_len,
					GFP_KERNEL);
		else
290
			sta = mesh_plink_alloc(sdata, hw_addr, rates, elems);
291
		if (!sta)
J
Johannes Berg 已提交
292
			return;
293
		if (sta_info_insert_rcu(sta)) {
294
			rcu_read_unlock();
295
			return;
296
		}
297 298 299
	}

	sta->last_rx = jiffies;
J
Johannes Berg 已提交
300
	sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
301
	if (mesh_peer_accepts_plinks(elems) &&
302
			sta->plink_state == NL80211_PLINK_LISTEN &&
303 304
			sdata->u.mesh.accepting_plinks &&
			sdata->u.mesh.mshcfg.auto_open_plinks)
305 306
		mesh_plink_open(sta);

307
	rcu_read_unlock();
308 309 310 311 312 313 314 315
}

static void mesh_plink_timer(unsigned long data)
{
	struct sta_info *sta;
	__le16 llid, plid, reason;
	struct ieee80211_sub_if_data *sdata;

316 317 318 319 320
	/*
	 * This STA is valid because sta_info_destroy() will
	 * del_timer_sync() this timer after having made sure
	 * it cannot be readded (by deleting the plink.)
	 */
321 322
	sta = (struct sta_info *) data;

323 324 325 326 327
	if (sta->sdata->local->quiescing) {
		sta->plink_timer_was_running = true;
		return;
	}

328
	spin_lock_bh(&sta->lock);
329 330
	if (sta->ignore_plink_timer) {
		sta->ignore_plink_timer = false;
331
		spin_unlock_bh(&sta->lock);
332 333
		return;
	}
334 335
	mpl_dbg("Mesh plink timer for %pM fired on state %d\n",
		sta->sta.addr, sta->plink_state);
336 337 338
	reason = 0;
	llid = sta->llid;
	plid = sta->plid;
339
	sdata = sta->sdata;
340 341

	switch (sta->plink_state) {
342 343
	case NL80211_PLINK_OPN_RCVD:
	case NL80211_PLINK_OPN_SNT:
344 345 346
		/* retry timer */
		if (sta->plink_retries < dot11MeshMaxRetries(sdata)) {
			u32 rand;
347 348 349
			mpl_dbg("Mesh plink for %pM (retry, timeout): %d %d\n",
				sta->sta.addr, sta->plink_retries,
				sta->plink_timeout);
350 351 352 353
			get_random_bytes(&rand, sizeof(u32));
			sta->plink_timeout = sta->plink_timeout +
					     rand % sta->plink_timeout;
			++sta->plink_retries;
354
			mod_plink_timer(sta, sta->plink_timeout);
355
			spin_unlock_bh(&sta->lock);
356 357
			mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
					    sta->sta.addr, llid, 0, 0);
358 359
			break;
		}
360
		reason = cpu_to_le16(WLAN_REASON_MESH_MAX_RETRIES);
361
		/* fall through on else */
362
	case NL80211_PLINK_CNF_RCVD:
363 364
		/* confirm timer */
		if (!reason)
365
			reason = cpu_to_le16(WLAN_REASON_MESH_CONFIRM_TIMEOUT);
366
		sta->plink_state = NL80211_PLINK_HOLDING;
367
		mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
368
		spin_unlock_bh(&sta->lock);
369 370
		mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
				    sta->sta.addr, llid, plid, reason);
371
		break;
372
	case NL80211_PLINK_HOLDING:
373
		/* holding timer */
374
		del_timer(&sta->plink_timer);
375
		mesh_plink_fsm_restart(sta);
376
		spin_unlock_bh(&sta->lock);
377 378
		break;
	default:
379
		spin_unlock_bh(&sta->lock);
380 381 382 383
		break;
	}
}

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
#ifdef CONFIG_PM
void mesh_plink_quiesce(struct sta_info *sta)
{
	if (del_timer_sync(&sta->plink_timer))
		sta->plink_timer_was_running = true;
}

void mesh_plink_restart(struct sta_info *sta)
{
	if (sta->plink_timer_was_running) {
		add_timer(&sta->plink_timer);
		sta->plink_timer_was_running = false;
	}
}
#endif

400 401 402 403 404 405 406 407 408 409 410 411
static inline void mesh_plink_timer_set(struct sta_info *sta, int timeout)
{
	sta->plink_timer.expires = jiffies + (HZ * timeout / 1000);
	sta->plink_timer.data = (unsigned long) sta;
	sta->plink_timer.function = mesh_plink_timer;
	sta->plink_timeout = timeout;
	add_timer(&sta->plink_timer);
}

int mesh_plink_open(struct sta_info *sta)
{
	__le16 llid;
412
	struct ieee80211_sub_if_data *sdata = sta->sdata;
413

J
Johannes Berg 已提交
414
	if (!test_sta_flag(sta, WLAN_STA_AUTH))
415 416
		return -EPERM;

417
	spin_lock_bh(&sta->lock);
418 419
	get_random_bytes(&llid, 2);
	sta->llid = llid;
420
	if (sta->plink_state != NL80211_PLINK_LISTEN) {
421
		spin_unlock_bh(&sta->lock);
422 423
		return -EBUSY;
	}
424
	sta->plink_state = NL80211_PLINK_OPN_SNT;
425
	mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
426
	spin_unlock_bh(&sta->lock);
427 428
	mpl_dbg("Mesh plink: starting establishment with %pM\n",
		sta->sta.addr);
429

430
	return mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_OPEN,
431
				   sta->sta.addr, llid, 0, 0);
432 433 434 435
}

void mesh_plink_block(struct sta_info *sta)
{
436 437 438
	struct ieee80211_sub_if_data *sdata = sta->sdata;
	bool deactivated;

439
	spin_lock_bh(&sta->lock);
440
	deactivated = __mesh_plink_deactivate(sta);
441
	sta->plink_state = NL80211_PLINK_BLOCKED;
442
	spin_unlock_bh(&sta->lock);
443 444 445

	if (deactivated)
		ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
446 447 448
}


449
void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
450 451
			 size_t len, struct ieee80211_rx_status *rx_status)
{
452
	struct ieee80211_local *local = sdata->local;
453 454 455
	struct ieee802_11_elems elems;
	struct sta_info *sta;
	enum plink_event event;
456
	enum ieee80211_self_protected_actioncode ftype;
457
	size_t baselen;
458
	bool deactivated, matches_local = true;
459 460 461
	u8 ie_len;
	u8 *baseaddr;
	__le16 plid, llid, reason;
462 463
#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
	static const char *mplstates[] = {
464 465 466 467 468 469 470
		[NL80211_PLINK_LISTEN] = "LISTEN",
		[NL80211_PLINK_OPN_SNT] = "OPN-SNT",
		[NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
		[NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
		[NL80211_PLINK_ESTAB] = "ESTAB",
		[NL80211_PLINK_HOLDING] = "HOLDING",
		[NL80211_PLINK_BLOCKED] = "BLOCKED"
471 472
	};
#endif
473

474 475 476 477
	/* need action_code, aux */
	if (len < IEEE80211_MIN_ACTION_SIZE + 3)
		return;

478 479 480 481 482
	if (is_multicast_ether_addr(mgmt->da)) {
		mpl_dbg("Mesh plink: ignore frame from multicast address");
		return;
	}

483 484 485
	baseaddr = mgmt->u.action.u.self_prot.variable;
	baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
	if (mgmt->u.action.u.self_prot.action_code ==
486
						WLAN_SP_MESH_PEERING_CONFIRM) {
487
		baseaddr += 4;
488
		baselen += 4;
489 490
	}
	ieee802_11_parse_elems(baseaddr, len - baselen, &elems);
491
	if (!elems.peering) {
492 493 494
		mpl_dbg("Mesh plink: missing necessary peer link ie\n");
		return;
	}
495 496
	if (elems.rsn_len &&
			sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
497 498 499
		mpl_dbg("Mesh plink: can't establish link with secure peer\n");
		return;
	}
500

501 502 503 504 505 506
	ftype = mgmt->u.action.u.self_prot.action_code;
	ie_len = elems.peering_len;
	if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
	    (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
	    (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
							&& ie_len != 8)) {
507 508
		mpl_dbg("Mesh plink: incorrect plink ie length %d %d\n",
		    ftype, ie_len);
509 510 511
		return;
	}

512 513
	if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
				(!elems.mesh_id || !elems.mesh_config)) {
514 515 516 517 518 519
		mpl_dbg("Mesh plink: missing necessary ie\n");
		return;
	}
	/* Note the lines below are correct, the llid in the frame is the plid
	 * from the point of view of this host.
	 */
520
	memcpy(&plid, PLINK_GET_LLID(elems.peering), 2);
521
	if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
522 523
	    (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
		memcpy(&llid, PLINK_GET_PLID(elems.peering), 2);
524

525 526
	rcu_read_lock();

527
	sta = sta_info_get(sdata, mgmt->sa);
528
	if (!sta && ftype != WLAN_SP_MESH_PEERING_OPEN) {
529
		mpl_dbg("Mesh plink: cls or cnf from unknown peer\n");
530
		rcu_read_unlock();
531 532 533
		return;
	}

J
Johannes Berg 已提交
534
	if (sta && !test_sta_flag(sta, WLAN_STA_AUTH)) {
535 536 537 538 539
		mpl_dbg("Mesh plink: Action frame from non-authed peer\n");
		rcu_read_unlock();
		return;
	}

540
	if (sta && sta->plink_state == NL80211_PLINK_BLOCKED) {
541
		rcu_read_unlock();
542 543 544 545 546
		return;
	}

	/* Now we will figure out the appropriate event... */
	event = PLINK_UNDEFINED;
547 548
	if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
	    (!mesh_matches_local(&elems, sdata))) {
549
		matches_local = false;
550
		switch (ftype) {
551
		case WLAN_SP_MESH_PEERING_OPEN:
552 553
			event = OPN_RJCT;
			break;
554
		case WLAN_SP_MESH_PEERING_CONFIRM:
555 556
			event = CNF_RJCT;
			break;
557
		default:
558 559
			break;
		}
560 561 562 563
	}

	if (!sta && !matches_local) {
		rcu_read_unlock();
564
		reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
565
		llid = 0;
566 567
		mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
				    mgmt->sa, llid, plid, reason);
568
		return;
569
	} else if (!sta) {
570
		/* ftype == WLAN_SP_MESH_PEERING_OPEN */
571
		u32 rates;
572 573 574

		rcu_read_unlock();

575 576 577 578 579 580
		if (!mesh_plink_free_count(sdata)) {
			mpl_dbg("Mesh plink error: no more free plinks\n");
			return;
		}

		rates = ieee80211_sta_get_rates(local, &elems, rx_status->band);
581
		sta = mesh_plink_alloc(sdata, mgmt->sa, rates, &elems);
J
Johannes Berg 已提交
582
		if (!sta) {
583 584 585
			mpl_dbg("Mesh plink error: plink table full\n");
			return;
		}
586
		if (sta_info_insert_rcu(sta)) {
J
Johannes Berg 已提交
587 588 589
			rcu_read_unlock();
			return;
		}
590
		event = OPN_ACPT;
591
		spin_lock_bh(&sta->lock);
592
	} else if (matches_local) {
593
		spin_lock_bh(&sta->lock);
594
		switch (ftype) {
595
		case WLAN_SP_MESH_PEERING_OPEN:
596
			if (!mesh_plink_free_count(sdata) ||
597
			    (sta->plid && sta->plid != plid))
598 599 600 601
				event = OPN_IGNR;
			else
				event = OPN_ACPT;
			break;
602
		case WLAN_SP_MESH_PEERING_CONFIRM:
603
			if (!mesh_plink_free_count(sdata) ||
604
			    (sta->llid != llid || sta->plid != plid))
605 606 607 608
				event = CNF_IGNR;
			else
				event = CNF_ACPT;
			break;
609
		case WLAN_SP_MESH_PEERING_CLOSE:
610
			if (sta->plink_state == NL80211_PLINK_ESTAB)
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
				/* Do not check for llid or plid. This does not
				 * follow the standard but since multiple plinks
				 * per sta are not supported, it is necessary in
				 * order to avoid a livelock when MP A sees an
				 * establish peer link to MP B but MP B does not
				 * see it. This can be caused by a timeout in
				 * B's peer link establishment or B beign
				 * restarted.
				 */
				event = CLS_ACPT;
			else if (sta->plid != plid)
				event = CLS_IGNR;
			else if (ie_len == 7 && sta->llid != llid)
				event = CLS_IGNR;
			else
				event = CLS_ACPT;
			break;
		default:
			mpl_dbg("Mesh plink: unknown frame subtype\n");
630
			spin_unlock_bh(&sta->lock);
631
			rcu_read_unlock();
632 633
			return;
		}
634 635
	} else {
		spin_lock_bh(&sta->lock);
636 637
	}

638 639
	mpl_dbg("Mesh plink (peer, state, llid, plid, event): %pM %s %d %d %d\n",
		mgmt->sa, mplstates[sta->plink_state],
640 641
		le16_to_cpu(sta->llid), le16_to_cpu(sta->plid),
		event);
642 643 644
	reason = 0;
	switch (sta->plink_state) {
		/* spin_unlock as soon as state is updated at each case */
645
	case NL80211_PLINK_LISTEN:
646 647 648
		switch (event) {
		case CLS_ACPT:
			mesh_plink_fsm_restart(sta);
649
			spin_unlock_bh(&sta->lock);
650 651
			break;
		case OPN_ACPT:
652
			sta->plink_state = NL80211_PLINK_OPN_RCVD;
653 654 655 656
			sta->plid = plid;
			get_random_bytes(&llid, 2);
			sta->llid = llid;
			mesh_plink_timer_set(sta, dot11MeshRetryTimeout(sdata));
657
			spin_unlock_bh(&sta->lock);
658 659 660 661 662 663
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_OPEN,
					    sta->sta.addr, llid, 0, 0);
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CONFIRM,
					    sta->sta.addr, llid, plid, 0);
664 665
			break;
		default:
666
			spin_unlock_bh(&sta->lock);
667 668 669 670
			break;
		}
		break;

671
	case NL80211_PLINK_OPN_SNT:
672 673 674
		switch (event) {
		case OPN_RJCT:
		case CNF_RJCT:
675
			reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
676 677
		case CLS_ACPT:
			if (!reason)
678
				reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
679
			sta->reason = reason;
680
			sta->plink_state = NL80211_PLINK_HOLDING;
681 682 683 684 685
			if (!mod_plink_timer(sta,
					     dot11MeshHoldingTimeout(sdata)))
				sta->ignore_plink_timer = true;

			llid = sta->llid;
686
			spin_unlock_bh(&sta->lock);
687 688 689
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CLOSE,
					    sta->sta.addr, llid, plid, reason);
690 691 692
			break;
		case OPN_ACPT:
			/* retry timer is left untouched */
693
			sta->plink_state = NL80211_PLINK_OPN_RCVD;
694 695
			sta->plid = plid;
			llid = sta->llid;
696
			spin_unlock_bh(&sta->lock);
697 698 699
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CONFIRM,
					    sta->sta.addr, llid, plid, 0);
700 701
			break;
		case CNF_ACPT:
702
			sta->plink_state = NL80211_PLINK_CNF_RCVD;
703 704 705 706
			if (!mod_plink_timer(sta,
					     dot11MeshConfirmTimeout(sdata)))
				sta->ignore_plink_timer = true;

707
			spin_unlock_bh(&sta->lock);
708 709
			break;
		default:
710
			spin_unlock_bh(&sta->lock);
711 712 713 714
			break;
		}
		break;

715
	case NL80211_PLINK_OPN_RCVD:
716 717 718
		switch (event) {
		case OPN_RJCT:
		case CNF_RJCT:
719
			reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
720 721
		case CLS_ACPT:
			if (!reason)
722
				reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
723
			sta->reason = reason;
724
			sta->plink_state = NL80211_PLINK_HOLDING;
725 726 727 728 729
			if (!mod_plink_timer(sta,
					     dot11MeshHoldingTimeout(sdata)))
				sta->ignore_plink_timer = true;

			llid = sta->llid;
730
			spin_unlock_bh(&sta->lock);
731 732
			mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
					    sta->sta.addr, llid, plid, reason);
733 734 735
			break;
		case OPN_ACPT:
			llid = sta->llid;
736
			spin_unlock_bh(&sta->lock);
737 738 739
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CONFIRM,
					    sta->sta.addr, llid, plid, 0);
740 741
			break;
		case CNF_ACPT:
742
			del_timer(&sta->plink_timer);
743
			sta->plink_state = NL80211_PLINK_ESTAB;
744
			spin_unlock_bh(&sta->lock);
745 746
			mesh_plink_inc_estab_count(sdata);
			ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
747 748
			mpl_dbg("Mesh plink with %pM ESTABLISHED\n",
				sta->sta.addr);
749 750
			break;
		default:
751
			spin_unlock_bh(&sta->lock);
752 753 754 755
			break;
		}
		break;

756
	case NL80211_PLINK_CNF_RCVD:
757 758 759
		switch (event) {
		case OPN_RJCT:
		case CNF_RJCT:
760
			reason = cpu_to_le16(WLAN_REASON_MESH_CONFIG);
761 762
		case CLS_ACPT:
			if (!reason)
763
				reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
764
			sta->reason = reason;
765
			sta->plink_state = NL80211_PLINK_HOLDING;
766 767 768 769 770
			if (!mod_plink_timer(sta,
					     dot11MeshHoldingTimeout(sdata)))
				sta->ignore_plink_timer = true;

			llid = sta->llid;
771
			spin_unlock_bh(&sta->lock);
772 773 774
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CLOSE,
					    sta->sta.addr, llid, plid, reason);
775
			break;
776
		case OPN_ACPT:
777
			del_timer(&sta->plink_timer);
778
			sta->plink_state = NL80211_PLINK_ESTAB;
779
			spin_unlock_bh(&sta->lock);
780 781
			mesh_plink_inc_estab_count(sdata);
			ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
782 783
			mpl_dbg("Mesh plink with %pM ESTABLISHED\n",
				sta->sta.addr);
784 785 786
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CONFIRM,
					    sta->sta.addr, llid, plid, 0);
787 788
			break;
		default:
789
			spin_unlock_bh(&sta->lock);
790 791 792 793
			break;
		}
		break;

794
	case NL80211_PLINK_ESTAB:
795 796
		switch (event) {
		case CLS_ACPT:
797
			reason = cpu_to_le16(WLAN_REASON_MESH_CLOSE);
798
			sta->reason = reason;
799
			deactivated = __mesh_plink_deactivate(sta);
800
			sta->plink_state = NL80211_PLINK_HOLDING;
801
			llid = sta->llid;
802
			mod_plink_timer(sta, dot11MeshHoldingTimeout(sdata));
803
			spin_unlock_bh(&sta->lock);
804 805
			if (deactivated)
				ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON);
806 807
			mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
					    sta->sta.addr, llid, plid, reason);
808 809 810
			break;
		case OPN_ACPT:
			llid = sta->llid;
811
			spin_unlock_bh(&sta->lock);
812 813 814
			mesh_plink_frame_tx(sdata,
					    WLAN_SP_MESH_PEERING_CONFIRM,
					    sta->sta.addr, llid, plid, 0);
815 816
			break;
		default:
817
			spin_unlock_bh(&sta->lock);
818 819 820
			break;
		}
		break;
821
	case NL80211_PLINK_HOLDING:
822 823
		switch (event) {
		case CLS_ACPT:
824
			if (del_timer(&sta->plink_timer))
825 826
				sta->ignore_plink_timer = 1;
			mesh_plink_fsm_restart(sta);
827
			spin_unlock_bh(&sta->lock);
828 829 830 831 832 833 834
			break;
		case OPN_ACPT:
		case CNF_ACPT:
		case OPN_RJCT:
		case CNF_RJCT:
			llid = sta->llid;
			reason = sta->reason;
835
			spin_unlock_bh(&sta->lock);
836 837
			mesh_plink_frame_tx(sdata, WLAN_SP_MESH_PEERING_CLOSE,
					    sta->sta.addr, llid, plid, reason);
838 839
			break;
		default:
840
			spin_unlock_bh(&sta->lock);
841 842 843
		}
		break;
	default:
844
		/* should not get here, PLINK_BLOCKED is dealt with at the
D
Daniel Mack 已提交
845
		 * beginning of the function
846
		 */
847
		spin_unlock_bh(&sta->lock);
848 849
		break;
	}
850 851

	rcu_read_unlock();
852
}