]> git.karo-electronics.de Git - karo-tx-linux.git/blob - net/mac80211/mesh_plink.c
mac80211: add the action to the drv_ampdu_action tracepoint
[karo-tx-linux.git] / net / mac80211 / mesh_plink.c
1 /*
2  * Copyright (c) 2008, 2009 open80211s Ltd.
3  * 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  */
9 #include <linux/gfp.h>
10 #include <linux/kernel.h>
11 #include <linux/random.h>
12 #include <linux/rculist.h>
13
14 #include "ieee80211_i.h"
15 #include "rate.h"
16 #include "mesh.h"
17
18 #define PLINK_CNF_AID(mgmt) ((mgmt)->u.action.u.self_prot.variable + 2)
19 #define PLINK_GET_LLID(p) (p + 2)
20 #define PLINK_GET_PLID(p) (p + 4)
21
22 #define mod_plink_timer(s, t) (mod_timer(&s->mesh->plink_timer, \
23                                 jiffies + msecs_to_jiffies(t)))
24
25 enum plink_event {
26         PLINK_UNDEFINED,
27         OPN_ACPT,
28         OPN_RJCT,
29         OPN_IGNR,
30         CNF_ACPT,
31         CNF_RJCT,
32         CNF_IGNR,
33         CLS_ACPT,
34         CLS_IGNR
35 };
36
37 static const char * const mplstates[] = {
38         [NL80211_PLINK_LISTEN] = "LISTEN",
39         [NL80211_PLINK_OPN_SNT] = "OPN-SNT",
40         [NL80211_PLINK_OPN_RCVD] = "OPN-RCVD",
41         [NL80211_PLINK_CNF_RCVD] = "CNF_RCVD",
42         [NL80211_PLINK_ESTAB] = "ESTAB",
43         [NL80211_PLINK_HOLDING] = "HOLDING",
44         [NL80211_PLINK_BLOCKED] = "BLOCKED"
45 };
46
47 static const char * const mplevents[] = {
48         [PLINK_UNDEFINED] = "NONE",
49         [OPN_ACPT] = "OPN_ACPT",
50         [OPN_RJCT] = "OPN_RJCT",
51         [OPN_IGNR] = "OPN_IGNR",
52         [CNF_ACPT] = "CNF_ACPT",
53         [CNF_RJCT] = "CNF_RJCT",
54         [CNF_IGNR] = "CNF_IGNR",
55         [CLS_ACPT] = "CLS_ACPT",
56         [CLS_IGNR] = "CLS_IGNR"
57 };
58
59 /* We only need a valid sta if user configured a minimum rssi_threshold. */
60 static bool rssi_threshold_check(struct ieee80211_sub_if_data *sdata,
61                                  struct sta_info *sta)
62 {
63         s32 rssi_threshold = sdata->u.mesh.mshcfg.rssi_threshold;
64         return rssi_threshold == 0 ||
65                (sta &&
66                 (s8)-ewma_signal_read(&sta->rx_stats_avg.signal) >
67                                                 rssi_threshold);
68 }
69
70 /**
71  * mesh_plink_fsm_restart - restart a mesh peer link finite state machine
72  *
73  * @sta: mesh peer link to restart
74  *
75  * Locking: this function must be called holding sta->mesh->plink_lock
76  */
77 static inline void mesh_plink_fsm_restart(struct sta_info *sta)
78 {
79         lockdep_assert_held(&sta->mesh->plink_lock);
80         sta->mesh->plink_state = NL80211_PLINK_LISTEN;
81         sta->mesh->llid = sta->mesh->plid = sta->mesh->reason = 0;
82         sta->mesh->plink_retries = 0;
83 }
84
85 /*
86  * mesh_set_short_slot_time - enable / disable ERP short slot time.
87  *
88  * The standard indirectly mandates mesh STAs to turn off short slot time by
89  * disallowing advertising this (802.11-2012 8.4.1.4), but that doesn't mean we
90  * can't be sneaky about it. Enable short slot time if all mesh STAs in the
91  * MBSS support ERP rates.
92  *
93  * Returns BSS_CHANGED_ERP_SLOT or 0 for no change.
94  */
95 static u32 mesh_set_short_slot_time(struct ieee80211_sub_if_data *sdata)
96 {
97         struct ieee80211_local *local = sdata->local;
98         struct ieee80211_supported_band *sband;
99         struct sta_info *sta;
100         u32 erp_rates = 0, changed = 0;
101         int i;
102         bool short_slot = false;
103
104         sband = ieee80211_get_sband(sdata);
105         if (!sband)
106                 return changed;
107
108         if (sband->band == NL80211_BAND_5GHZ) {
109                 /* (IEEE 802.11-2012 19.4.5) */
110                 short_slot = true;
111                 goto out;
112         } else if (sband->band != NL80211_BAND_2GHZ) {
113                 goto out;
114         }
115
116         for (i = 0; i < sband->n_bitrates; i++)
117                 if (sband->bitrates[i].flags & IEEE80211_RATE_ERP_G)
118                         erp_rates |= BIT(i);
119
120         if (!erp_rates)
121                 goto out;
122
123         rcu_read_lock();
124         list_for_each_entry_rcu(sta, &local->sta_list, list) {
125                 if (sdata != sta->sdata ||
126                     sta->mesh->plink_state != NL80211_PLINK_ESTAB)
127                         continue;
128
129                 short_slot = false;
130                 if (erp_rates & sta->sta.supp_rates[sband->band])
131                         short_slot = true;
132                  else
133                         break;
134         }
135         rcu_read_unlock();
136
137 out:
138         if (sdata->vif.bss_conf.use_short_slot != short_slot) {
139                 sdata->vif.bss_conf.use_short_slot = short_slot;
140                 changed = BSS_CHANGED_ERP_SLOT;
141                 mpl_dbg(sdata, "mesh_plink %pM: ERP short slot time %d\n",
142                         sdata->vif.addr, short_slot);
143         }
144         return changed;
145 }
146
147 /**
148  * mesh_set_ht_prot_mode - set correct HT protection mode
149  *
150  * Section 9.23.3.5 of IEEE 80211-2012 describes the protection rules for HT
151  * mesh STA in a MBSS. Three HT protection modes are supported for now, non-HT
152  * mixed mode, 20MHz-protection and no-protection mode. non-HT mixed mode is
153  * selected if any non-HT peers are present in our MBSS.  20MHz-protection mode
154  * is selected if all peers in our 20/40MHz MBSS support HT and atleast one
155  * HT20 peer is present. Otherwise no-protection mode is selected.
156  */
157 static u32 mesh_set_ht_prot_mode(struct ieee80211_sub_if_data *sdata)
158 {
159         struct ieee80211_local *local = sdata->local;
160         struct sta_info *sta;
161         u16 ht_opmode;
162         bool non_ht_sta = false, ht20_sta = false;
163
164         switch (sdata->vif.bss_conf.chandef.width) {
165         case NL80211_CHAN_WIDTH_20_NOHT:
166         case NL80211_CHAN_WIDTH_5:
167         case NL80211_CHAN_WIDTH_10:
168                 return 0;
169         default:
170                 break;
171         }
172
173         rcu_read_lock();
174         list_for_each_entry_rcu(sta, &local->sta_list, list) {
175                 if (sdata != sta->sdata ||
176                     sta->mesh->plink_state != NL80211_PLINK_ESTAB)
177                         continue;
178
179                 if (sta->sta.bandwidth > IEEE80211_STA_RX_BW_20)
180                         continue;
181
182                 if (!sta->sta.ht_cap.ht_supported) {
183                         mpl_dbg(sdata, "nonHT sta (%pM) is present\n",
184                                        sta->sta.addr);
185                         non_ht_sta = true;
186                         break;
187                 }
188
189                 mpl_dbg(sdata, "HT20 sta (%pM) is present\n", sta->sta.addr);
190                 ht20_sta = true;
191         }
192         rcu_read_unlock();
193
194         if (non_ht_sta)
195                 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED;
196         else if (ht20_sta &&
197                  sdata->vif.bss_conf.chandef.width > NL80211_CHAN_WIDTH_20)
198                 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_20MHZ;
199         else
200                 ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONE;
201
202         if (sdata->vif.bss_conf.ht_operation_mode == ht_opmode)
203                 return 0;
204
205         sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
206         sdata->u.mesh.mshcfg.ht_opmode = ht_opmode;
207         mpl_dbg(sdata, "selected new HT protection mode %d\n", ht_opmode);
208         return BSS_CHANGED_HT;
209 }
210
211 static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
212                                struct sta_info *sta,
213                                enum ieee80211_self_protected_actioncode action,
214                                u8 *da, u16 llid, u16 plid, u16 reason)
215 {
216         struct ieee80211_local *local = sdata->local;
217         struct sk_buff *skb;
218         struct ieee80211_tx_info *info;
219         struct ieee80211_mgmt *mgmt;
220         bool include_plid = false;
221         u16 peering_proto = 0;
222         u8 *pos, ie_len = 4;
223         int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.self_prot) +
224                       sizeof(mgmt->u.action.u.self_prot);
225         int err = -ENOMEM;
226
227         skb = dev_alloc_skb(local->tx_headroom +
228                             hdr_len +
229                             2 + /* capability info */
230                             2 + /* AID */
231                             2 + 8 + /* supported rates */
232                             2 + (IEEE80211_MAX_SUPP_RATES - 8) +
233                             2 + sdata->u.mesh.mesh_id_len +
234                             2 + sizeof(struct ieee80211_meshconf_ie) +
235                             2 + sizeof(struct ieee80211_ht_cap) +
236                             2 + sizeof(struct ieee80211_ht_operation) +
237                             2 + sizeof(struct ieee80211_vht_cap) +
238                             2 + sizeof(struct ieee80211_vht_operation) +
239                             2 + 8 + /* peering IE */
240                             sdata->u.mesh.ie_len);
241         if (!skb)
242                 return err;
243         info = IEEE80211_SKB_CB(skb);
244         skb_reserve(skb, local->tx_headroom);
245         mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
246         memset(mgmt, 0, hdr_len);
247         mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
248                                           IEEE80211_STYPE_ACTION);
249         memcpy(mgmt->da, da, ETH_ALEN);
250         memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
251         memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
252         mgmt->u.action.category = WLAN_CATEGORY_SELF_PROTECTED;
253         mgmt->u.action.u.self_prot.action_code = action;
254
255         if (action != WLAN_SP_MESH_PEERING_CLOSE) {
256                 struct ieee80211_supported_band *sband;
257                 enum nl80211_band band;
258
259                 sband = ieee80211_get_sband(sdata);
260                 if (!sband) {
261                         err = -EINVAL;
262                         goto free;
263                 }
264                 band = sband->band;
265
266                 /* capability info */
267                 pos = skb_put_zero(skb, 2);
268                 if (action == WLAN_SP_MESH_PEERING_CONFIRM) {
269                         /* AID */
270                         pos = skb_put(skb, 2);
271                         put_unaligned_le16(sta->sta.aid, pos);
272                 }
273                 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
274                     ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
275                     mesh_add_rsn_ie(sdata, skb) ||
276                     mesh_add_meshid_ie(sdata, skb) ||
277                     mesh_add_meshconf_ie(sdata, skb))
278                         goto free;
279         } else {        /* WLAN_SP_MESH_PEERING_CLOSE */
280                 info->flags |= IEEE80211_TX_CTL_NO_ACK;
281                 if (mesh_add_meshid_ie(sdata, skb))
282                         goto free;
283         }
284
285         /* Add Mesh Peering Management element */
286         switch (action) {
287         case WLAN_SP_MESH_PEERING_OPEN:
288                 break;
289         case WLAN_SP_MESH_PEERING_CONFIRM:
290                 ie_len += 2;
291                 include_plid = true;
292                 break;
293         case WLAN_SP_MESH_PEERING_CLOSE:
294                 if (plid) {
295                         ie_len += 2;
296                         include_plid = true;
297                 }
298                 ie_len += 2;    /* reason code */
299                 break;
300         default:
301                 err = -EINVAL;
302                 goto free;
303         }
304
305         if (WARN_ON(skb_tailroom(skb) < 2 + ie_len))
306                 goto free;
307
308         pos = skb_put(skb, 2 + ie_len);
309         *pos++ = WLAN_EID_PEER_MGMT;
310         *pos++ = ie_len;
311         memcpy(pos, &peering_proto, 2);
312         pos += 2;
313         put_unaligned_le16(llid, pos);
314         pos += 2;
315         if (include_plid) {
316                 put_unaligned_le16(plid, pos);
317                 pos += 2;
318         }
319         if (action == WLAN_SP_MESH_PEERING_CLOSE) {
320                 put_unaligned_le16(reason, pos);
321                 pos += 2;
322         }
323
324         if (action != WLAN_SP_MESH_PEERING_CLOSE) {
325                 if (mesh_add_ht_cap_ie(sdata, skb) ||
326                     mesh_add_ht_oper_ie(sdata, skb) ||
327                     mesh_add_vht_cap_ie(sdata, skb) ||
328                     mesh_add_vht_oper_ie(sdata, skb))
329                         goto free;
330         }
331
332         if (mesh_add_vendor_ies(sdata, skb))
333                 goto free;
334
335         ieee80211_tx_skb(sdata, skb);
336         return 0;
337 free:
338         kfree_skb(skb);
339         return err;
340 }
341
342 /**
343  * __mesh_plink_deactivate - deactivate mesh peer link
344  *
345  * @sta: mesh peer link to deactivate
346  *
347  * Mesh paths with this peer as next hop should be flushed
348  * by the caller outside of plink_lock.
349  *
350  * Returns beacon changed flag if the beacon content changed.
351  *
352  * Locking: the caller must hold sta->mesh->plink_lock
353  */
354 static u32 __mesh_plink_deactivate(struct sta_info *sta)
355 {
356         struct ieee80211_sub_if_data *sdata = sta->sdata;
357         u32 changed = 0;
358
359         lockdep_assert_held(&sta->mesh->plink_lock);
360
361         if (sta->mesh->plink_state == NL80211_PLINK_ESTAB)
362                 changed = mesh_plink_dec_estab_count(sdata);
363         sta->mesh->plink_state = NL80211_PLINK_BLOCKED;
364
365         ieee80211_mps_sta_status_update(sta);
366         changed |= ieee80211_mps_set_sta_local_pm(sta,
367                         NL80211_MESH_POWER_UNKNOWN);
368
369         return changed;
370 }
371
372 /**
373  * mesh_plink_deactivate - deactivate mesh peer link
374  *
375  * @sta: mesh peer link to deactivate
376  *
377  * All mesh paths with this peer as next hop will be flushed
378  */
379 u32 mesh_plink_deactivate(struct sta_info *sta)
380 {
381         struct ieee80211_sub_if_data *sdata = sta->sdata;
382         u32 changed;
383
384         spin_lock_bh(&sta->mesh->plink_lock);
385         changed = __mesh_plink_deactivate(sta);
386
387         if (!sdata->u.mesh.user_mpm) {
388                 sta->mesh->reason = WLAN_REASON_MESH_PEER_CANCELED;
389                 mesh_plink_frame_tx(sdata, sta, WLAN_SP_MESH_PEERING_CLOSE,
390                                     sta->sta.addr, sta->mesh->llid,
391                                     sta->mesh->plid, sta->mesh->reason);
392         }
393         spin_unlock_bh(&sta->mesh->plink_lock);
394         if (!sdata->u.mesh.user_mpm)
395                 del_timer_sync(&sta->mesh->plink_timer);
396         mesh_path_flush_by_nexthop(sta);
397
398         /* make sure no readers can access nexthop sta from here on */
399         synchronize_net();
400
401         return changed;
402 }
403
404 static void mesh_sta_info_init(struct ieee80211_sub_if_data *sdata,
405                                struct sta_info *sta,
406                                struct ieee802_11_elems *elems, bool insert)
407 {
408         struct ieee80211_local *local = sdata->local;
409         struct ieee80211_supported_band *sband;
410         u32 rates, basic_rates = 0, changed = 0;
411         enum ieee80211_sta_rx_bandwidth bw = sta->sta.bandwidth;
412
413         sband = ieee80211_get_sband(sdata);
414         if (!sband)
415                 return;
416
417         rates = ieee80211_sta_get_rates(sdata, elems, sband->band,
418                                         &basic_rates);
419
420         spin_lock_bh(&sta->mesh->plink_lock);
421         sta->rx_stats.last_rx = jiffies;
422
423         /* rates and capabilities don't change during peering */
424         if (sta->mesh->plink_state == NL80211_PLINK_ESTAB &&
425             sta->mesh->processed_beacon)
426                 goto out;
427         sta->mesh->processed_beacon = true;
428
429         if (sta->sta.supp_rates[sband->band] != rates)
430                 changed |= IEEE80211_RC_SUPP_RATES_CHANGED;
431         sta->sta.supp_rates[sband->band] = rates;
432
433         if (ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
434                                               elems->ht_cap_elem, sta))
435                 changed |= IEEE80211_RC_BW_CHANGED;
436
437         ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
438                                             elems->vht_cap_elem, sta);
439
440         if (bw != sta->sta.bandwidth)
441                 changed |= IEEE80211_RC_BW_CHANGED;
442
443         /* HT peer is operating 20MHz-only */
444         if (elems->ht_operation &&
445             !(elems->ht_operation->ht_param &
446               IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
447                 if (sta->sta.bandwidth != IEEE80211_STA_RX_BW_20)
448                         changed |= IEEE80211_RC_BW_CHANGED;
449                 sta->sta.bandwidth = IEEE80211_STA_RX_BW_20;
450         }
451
452         if (insert)
453                 rate_control_rate_init(sta);
454         else
455                 rate_control_rate_update(local, sband, sta, changed);
456 out:
457         spin_unlock_bh(&sta->mesh->plink_lock);
458 }
459
460 static int mesh_allocate_aid(struct ieee80211_sub_if_data *sdata)
461 {
462         struct sta_info *sta;
463         unsigned long *aid_map;
464         int aid;
465
466         aid_map = kcalloc(BITS_TO_LONGS(IEEE80211_MAX_AID + 1),
467                           sizeof(*aid_map), GFP_KERNEL);
468         if (!aid_map)
469                 return -ENOMEM;
470
471         /* reserve aid 0 for mcast indication */
472         __set_bit(0, aid_map);
473
474         rcu_read_lock();
475         list_for_each_entry_rcu(sta, &sdata->local->sta_list, list)
476                 __set_bit(sta->sta.aid, aid_map);
477         rcu_read_unlock();
478
479         aid = find_first_zero_bit(aid_map, IEEE80211_MAX_AID + 1);
480         kfree(aid_map);
481
482         if (aid > IEEE80211_MAX_AID)
483                 return -ENOBUFS;
484
485         return aid;
486 }
487
488 static struct sta_info *
489 __mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *hw_addr)
490 {
491         struct sta_info *sta;
492         int aid;
493
494         if (sdata->local->num_sta >= MESH_MAX_PLINKS)
495                 return NULL;
496
497         aid = mesh_allocate_aid(sdata);
498         if (aid < 0)
499                 return NULL;
500
501         sta = sta_info_alloc(sdata, hw_addr, GFP_KERNEL);
502         if (!sta)
503                 return NULL;
504
505         sta->mesh->plink_state = NL80211_PLINK_LISTEN;
506         sta->sta.wme = true;
507         sta->sta.aid = aid;
508
509         sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
510         sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
511         sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
512
513         return sta;
514 }
515
516 static struct sta_info *
517 mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *addr,
518                     struct ieee802_11_elems *elems)
519 {
520         struct sta_info *sta = NULL;
521
522         /* Userspace handles station allocation */
523         if (sdata->u.mesh.user_mpm ||
524             sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED) {
525                 if (mesh_peer_accepts_plinks(elems) &&
526                     mesh_plink_availables(sdata))
527                         cfg80211_notify_new_peer_candidate(sdata->dev, addr,
528                                                            elems->ie_start,
529                                                            elems->total_len,
530                                                            GFP_KERNEL);
531         } else
532                 sta = __mesh_sta_info_alloc(sdata, addr);
533
534         return sta;
535 }
536
537 /*
538  * mesh_sta_info_get - return mesh sta info entry for @addr.
539  *
540  * @sdata: local meshif
541  * @addr: peer's address
542  * @elems: IEs from beacon or mesh peering frame.
543  *
544  * Return existing or newly allocated sta_info under RCU read lock.
545  * (re)initialize with given IEs.
546  */
547 static struct sta_info *
548 mesh_sta_info_get(struct ieee80211_sub_if_data *sdata,
549                   u8 *addr, struct ieee802_11_elems *elems) __acquires(RCU)
550 {
551         struct sta_info *sta = NULL;
552
553         rcu_read_lock();
554         sta = sta_info_get(sdata, addr);
555         if (sta) {
556                 mesh_sta_info_init(sdata, sta, elems, false);
557         } else {
558                 rcu_read_unlock();
559                 /* can't run atomic */
560                 sta = mesh_sta_info_alloc(sdata, addr, elems);
561                 if (!sta) {
562                         rcu_read_lock();
563                         return NULL;
564                 }
565
566                 mesh_sta_info_init(sdata, sta, elems, true);
567
568                 if (sta_info_insert_rcu(sta))
569                         return NULL;
570         }
571
572         return sta;
573 }
574
575 /*
576  * mesh_neighbour_update - update or initialize new mesh neighbor.
577  *
578  * @sdata: local meshif
579  * @addr: peer's address
580  * @elems: IEs from beacon or mesh peering frame
581  *
582  * Initiates peering if appropriate.
583  */
584 void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
585                            u8 *hw_addr,
586                            struct ieee802_11_elems *elems)
587 {
588         struct sta_info *sta;
589         u32 changed = 0;
590
591         sta = mesh_sta_info_get(sdata, hw_addr, elems);
592         if (!sta)
593                 goto out;
594
595         if (mesh_peer_accepts_plinks(elems) &&
596             sta->mesh->plink_state == NL80211_PLINK_LISTEN &&
597             sdata->u.mesh.accepting_plinks &&
598             sdata->u.mesh.mshcfg.auto_open_plinks &&
599             rssi_threshold_check(sdata, sta))
600                 changed = mesh_plink_open(sta);
601
602         ieee80211_mps_frame_release(sta, elems);
603 out:
604         rcu_read_unlock();
605         ieee80211_mbss_info_change_notify(sdata, changed);
606 }
607
608 static void mesh_plink_timer(unsigned long data)
609 {
610         struct sta_info *sta;
611         u16 reason = 0;
612         struct ieee80211_sub_if_data *sdata;
613         struct mesh_config *mshcfg;
614         enum ieee80211_self_protected_actioncode action = 0;
615
616         /*
617          * This STA is valid because sta_info_destroy() will
618          * del_timer_sync() this timer after having made sure
619          * it cannot be readded (by deleting the plink.)
620          */
621         sta = (struct sta_info *) data;
622
623         if (sta->sdata->local->quiescing)
624                 return;
625
626         spin_lock_bh(&sta->mesh->plink_lock);
627
628         /* If a timer fires just before a state transition on another CPU,
629          * we may have already extended the timeout and changed state by the
630          * time we've acquired the lock and arrived  here.  In that case,
631          * skip this timer and wait for the new one.
632          */
633         if (time_before(jiffies, sta->mesh->plink_timer.expires)) {
634                 mpl_dbg(sta->sdata,
635                         "Ignoring timer for %pM in state %s (timer adjusted)",
636                         sta->sta.addr, mplstates[sta->mesh->plink_state]);
637                 spin_unlock_bh(&sta->mesh->plink_lock);
638                 return;
639         }
640
641         /* del_timer() and handler may race when entering these states */
642         if (sta->mesh->plink_state == NL80211_PLINK_LISTEN ||
643             sta->mesh->plink_state == NL80211_PLINK_ESTAB) {
644                 mpl_dbg(sta->sdata,
645                         "Ignoring timer for %pM in state %s (timer deleted)",
646                         sta->sta.addr, mplstates[sta->mesh->plink_state]);
647                 spin_unlock_bh(&sta->mesh->plink_lock);
648                 return;
649         }
650
651         mpl_dbg(sta->sdata,
652                 "Mesh plink timer for %pM fired on state %s\n",
653                 sta->sta.addr, mplstates[sta->mesh->plink_state]);
654         sdata = sta->sdata;
655         mshcfg = &sdata->u.mesh.mshcfg;
656
657         switch (sta->mesh->plink_state) {
658         case NL80211_PLINK_OPN_RCVD:
659         case NL80211_PLINK_OPN_SNT:
660                 /* retry timer */
661                 if (sta->mesh->plink_retries < mshcfg->dot11MeshMaxRetries) {
662                         u32 rand;
663                         mpl_dbg(sta->sdata,
664                                 "Mesh plink for %pM (retry, timeout): %d %d\n",
665                                 sta->sta.addr, sta->mesh->plink_retries,
666                                 sta->mesh->plink_timeout);
667                         get_random_bytes(&rand, sizeof(u32));
668                         sta->mesh->plink_timeout = sta->mesh->plink_timeout +
669                                              rand % sta->mesh->plink_timeout;
670                         ++sta->mesh->plink_retries;
671                         mod_plink_timer(sta, sta->mesh->plink_timeout);
672                         action = WLAN_SP_MESH_PEERING_OPEN;
673                         break;
674                 }
675                 reason = WLAN_REASON_MESH_MAX_RETRIES;
676                 /* fall through on else */
677         case NL80211_PLINK_CNF_RCVD:
678                 /* confirm timer */
679                 if (!reason)
680                         reason = WLAN_REASON_MESH_CONFIRM_TIMEOUT;
681                 sta->mesh->plink_state = NL80211_PLINK_HOLDING;
682                 mod_plink_timer(sta, mshcfg->dot11MeshHoldingTimeout);
683                 action = WLAN_SP_MESH_PEERING_CLOSE;
684                 break;
685         case NL80211_PLINK_HOLDING:
686                 /* holding timer */
687                 del_timer(&sta->mesh->plink_timer);
688                 mesh_plink_fsm_restart(sta);
689                 break;
690         default:
691                 break;
692         }
693         spin_unlock_bh(&sta->mesh->plink_lock);
694         if (action)
695                 mesh_plink_frame_tx(sdata, sta, action, sta->sta.addr,
696                                     sta->mesh->llid, sta->mesh->plid, reason);
697 }
698
699 static inline void mesh_plink_timer_set(struct sta_info *sta, u32 timeout)
700 {
701         sta->mesh->plink_timer.expires = jiffies + msecs_to_jiffies(timeout);
702         sta->mesh->plink_timer.data = (unsigned long) sta;
703         sta->mesh->plink_timer.function = mesh_plink_timer;
704         sta->mesh->plink_timeout = timeout;
705         add_timer(&sta->mesh->plink_timer);
706 }
707
708 static bool llid_in_use(struct ieee80211_sub_if_data *sdata,
709                         u16 llid)
710 {
711         struct ieee80211_local *local = sdata->local;
712         bool in_use = false;
713         struct sta_info *sta;
714
715         rcu_read_lock();
716         list_for_each_entry_rcu(sta, &local->sta_list, list) {
717                 if (sdata != sta->sdata)
718                         continue;
719
720                 if (!memcmp(&sta->mesh->llid, &llid, sizeof(llid))) {
721                         in_use = true;
722                         break;
723                 }
724         }
725         rcu_read_unlock();
726
727         return in_use;
728 }
729
730 static u16 mesh_get_new_llid(struct ieee80211_sub_if_data *sdata)
731 {
732         u16 llid;
733
734         do {
735                 get_random_bytes(&llid, sizeof(llid));
736         } while (llid_in_use(sdata, llid));
737
738         return llid;
739 }
740
741 u32 mesh_plink_open(struct sta_info *sta)
742 {
743         struct ieee80211_sub_if_data *sdata = sta->sdata;
744         u32 changed;
745
746         if (!test_sta_flag(sta, WLAN_STA_AUTH))
747                 return 0;
748
749         spin_lock_bh(&sta->mesh->plink_lock);
750         sta->mesh->llid = mesh_get_new_llid(sdata);
751         if (sta->mesh->plink_state != NL80211_PLINK_LISTEN &&
752             sta->mesh->plink_state != NL80211_PLINK_BLOCKED) {
753                 spin_unlock_bh(&sta->mesh->plink_lock);
754                 return 0;
755         }
756         sta->mesh->plink_state = NL80211_PLINK_OPN_SNT;
757         mesh_plink_timer_set(sta, sdata->u.mesh.mshcfg.dot11MeshRetryTimeout);
758         spin_unlock_bh(&sta->mesh->plink_lock);
759         mpl_dbg(sdata,
760                 "Mesh plink: starting establishment with %pM\n",
761                 sta->sta.addr);
762
763         /* set the non-peer mode to active during peering */
764         changed = ieee80211_mps_local_status_update(sdata);
765
766         mesh_plink_frame_tx(sdata, sta, WLAN_SP_MESH_PEERING_OPEN,
767                             sta->sta.addr, sta->mesh->llid, 0, 0);
768         return changed;
769 }
770
771 u32 mesh_plink_block(struct sta_info *sta)
772 {
773         u32 changed;
774
775         spin_lock_bh(&sta->mesh->plink_lock);
776         changed = __mesh_plink_deactivate(sta);
777         sta->mesh->plink_state = NL80211_PLINK_BLOCKED;
778         spin_unlock_bh(&sta->mesh->plink_lock);
779         mesh_path_flush_by_nexthop(sta);
780
781         return changed;
782 }
783
784 static void mesh_plink_close(struct ieee80211_sub_if_data *sdata,
785                              struct sta_info *sta,
786                              enum plink_event event)
787 {
788         struct mesh_config *mshcfg = &sdata->u.mesh.mshcfg;
789         u16 reason = (event == CLS_ACPT) ?
790                      WLAN_REASON_MESH_CLOSE : WLAN_REASON_MESH_CONFIG;
791
792         sta->mesh->reason = reason;
793         sta->mesh->plink_state = NL80211_PLINK_HOLDING;
794         mod_plink_timer(sta, mshcfg->dot11MeshHoldingTimeout);
795 }
796
797 static u32 mesh_plink_establish(struct ieee80211_sub_if_data *sdata,
798                                 struct sta_info *sta)
799 {
800         struct mesh_config *mshcfg = &sdata->u.mesh.mshcfg;
801         u32 changed = 0;
802
803         del_timer(&sta->mesh->plink_timer);
804         sta->mesh->plink_state = NL80211_PLINK_ESTAB;
805         changed |= mesh_plink_inc_estab_count(sdata);
806         changed |= mesh_set_ht_prot_mode(sdata);
807         changed |= mesh_set_short_slot_time(sdata);
808         mpl_dbg(sdata, "Mesh plink with %pM ESTABLISHED\n", sta->sta.addr);
809         ieee80211_mps_sta_status_update(sta);
810         changed |= ieee80211_mps_set_sta_local_pm(sta, mshcfg->power_mode);
811         return changed;
812 }
813
814 /**
815  * mesh_plink_fsm - step @sta MPM based on @event
816  *
817  * @sdata: interface
818  * @sta: mesh neighbor
819  * @event: peering event
820  *
821  * Return: changed MBSS flags
822  */
823 static u32 mesh_plink_fsm(struct ieee80211_sub_if_data *sdata,
824                           struct sta_info *sta, enum plink_event event)
825 {
826         struct mesh_config *mshcfg = &sdata->u.mesh.mshcfg;
827         enum ieee80211_self_protected_actioncode action = 0;
828         u32 changed = 0;
829         bool flush = false;
830
831         mpl_dbg(sdata, "peer %pM in state %s got event %s\n", sta->sta.addr,
832                 mplstates[sta->mesh->plink_state], mplevents[event]);
833
834         spin_lock_bh(&sta->mesh->plink_lock);
835         switch (sta->mesh->plink_state) {
836         case NL80211_PLINK_LISTEN:
837                 switch (event) {
838                 case CLS_ACPT:
839                         mesh_plink_fsm_restart(sta);
840                         break;
841                 case OPN_ACPT:
842                         sta->mesh->plink_state = NL80211_PLINK_OPN_RCVD;
843                         sta->mesh->llid = mesh_get_new_llid(sdata);
844                         mesh_plink_timer_set(sta,
845                                              mshcfg->dot11MeshRetryTimeout);
846
847                         /* set the non-peer mode to active during peering */
848                         changed |= ieee80211_mps_local_status_update(sdata);
849                         action = WLAN_SP_MESH_PEERING_OPEN;
850                         break;
851                 default:
852                         break;
853                 }
854                 break;
855         case NL80211_PLINK_OPN_SNT:
856                 switch (event) {
857                 case OPN_RJCT:
858                 case CNF_RJCT:
859                 case CLS_ACPT:
860                         mesh_plink_close(sdata, sta, event);
861                         action = WLAN_SP_MESH_PEERING_CLOSE;
862                         break;
863                 case OPN_ACPT:
864                         /* retry timer is left untouched */
865                         sta->mesh->plink_state = NL80211_PLINK_OPN_RCVD;
866                         action = WLAN_SP_MESH_PEERING_CONFIRM;
867                         break;
868                 case CNF_ACPT:
869                         sta->mesh->plink_state = NL80211_PLINK_CNF_RCVD;
870                         mod_plink_timer(sta, mshcfg->dot11MeshConfirmTimeout);
871                         break;
872                 default:
873                         break;
874                 }
875                 break;
876         case NL80211_PLINK_OPN_RCVD:
877                 switch (event) {
878                 case OPN_RJCT:
879                 case CNF_RJCT:
880                 case CLS_ACPT:
881                         mesh_plink_close(sdata, sta, event);
882                         action = WLAN_SP_MESH_PEERING_CLOSE;
883                         break;
884                 case OPN_ACPT:
885                         action = WLAN_SP_MESH_PEERING_CONFIRM;
886                         break;
887                 case CNF_ACPT:
888                         changed |= mesh_plink_establish(sdata, sta);
889                         break;
890                 default:
891                         break;
892                 }
893                 break;
894         case NL80211_PLINK_CNF_RCVD:
895                 switch (event) {
896                 case OPN_RJCT:
897                 case CNF_RJCT:
898                 case CLS_ACPT:
899                         mesh_plink_close(sdata, sta, event);
900                         action = WLAN_SP_MESH_PEERING_CLOSE;
901                         break;
902                 case OPN_ACPT:
903                         changed |= mesh_plink_establish(sdata, sta);
904                         action = WLAN_SP_MESH_PEERING_CONFIRM;
905                         break;
906                 default:
907                         break;
908                 }
909                 break;
910         case NL80211_PLINK_ESTAB:
911                 switch (event) {
912                 case CLS_ACPT:
913                         changed |= __mesh_plink_deactivate(sta);
914                         changed |= mesh_set_ht_prot_mode(sdata);
915                         changed |= mesh_set_short_slot_time(sdata);
916                         mesh_plink_close(sdata, sta, event);
917                         action = WLAN_SP_MESH_PEERING_CLOSE;
918                         flush = true;
919                         break;
920                 case OPN_ACPT:
921                         action = WLAN_SP_MESH_PEERING_CONFIRM;
922                         break;
923                 default:
924                         break;
925                 }
926                 break;
927         case NL80211_PLINK_HOLDING:
928                 switch (event) {
929                 case CLS_ACPT:
930                         del_timer(&sta->mesh->plink_timer);
931                         mesh_plink_fsm_restart(sta);
932                         break;
933                 case OPN_ACPT:
934                 case CNF_ACPT:
935                 case OPN_RJCT:
936                 case CNF_RJCT:
937                         action = WLAN_SP_MESH_PEERING_CLOSE;
938                         break;
939                 default:
940                         break;
941                 }
942                 break;
943         default:
944                 /* should not get here, PLINK_BLOCKED is dealt with at the
945                  * beginning of the function
946                  */
947                 break;
948         }
949         spin_unlock_bh(&sta->mesh->plink_lock);
950         if (flush)
951                 mesh_path_flush_by_nexthop(sta);
952         if (action) {
953                 mesh_plink_frame_tx(sdata, sta, action, sta->sta.addr,
954                                     sta->mesh->llid, sta->mesh->plid,
955                                     sta->mesh->reason);
956
957                 /* also send confirm in open case */
958                 if (action == WLAN_SP_MESH_PEERING_OPEN) {
959                         mesh_plink_frame_tx(sdata, sta,
960                                             WLAN_SP_MESH_PEERING_CONFIRM,
961                                             sta->sta.addr, sta->mesh->llid,
962                                             sta->mesh->plid, 0);
963                 }
964         }
965
966         return changed;
967 }
968
969 /*
970  * mesh_plink_get_event - get correct MPM event
971  *
972  * @sdata: interface
973  * @sta: peer, leave NULL if processing a frame from a new suitable peer
974  * @elems: peering management IEs
975  * @ftype: frame type
976  * @llid: peer's peer link ID
977  * @plid: peer's local link ID
978  *
979  * Return: new peering event for @sta, but PLINK_UNDEFINED should be treated as
980  * an error.
981  */
982 static enum plink_event
983 mesh_plink_get_event(struct ieee80211_sub_if_data *sdata,
984                      struct sta_info *sta,
985                      struct ieee802_11_elems *elems,
986                      enum ieee80211_self_protected_actioncode ftype,
987                      u16 llid, u16 plid)
988 {
989         enum plink_event event = PLINK_UNDEFINED;
990         u8 ie_len = elems->peering_len;
991         bool matches_local;
992
993         matches_local = (ftype == WLAN_SP_MESH_PEERING_CLOSE ||
994                          mesh_matches_local(sdata, elems));
995
996         /* deny open request from non-matching peer */
997         if (!matches_local && !sta) {
998                 event = OPN_RJCT;
999                 goto out;
1000         }
1001
1002         if (!sta) {
1003                 if (ftype != WLAN_SP_MESH_PEERING_OPEN) {
1004                         mpl_dbg(sdata, "Mesh plink: cls or cnf from unknown peer\n");
1005                         goto out;
1006                 }
1007                 /* ftype == WLAN_SP_MESH_PEERING_OPEN */
1008                 if (!mesh_plink_free_count(sdata)) {
1009                         mpl_dbg(sdata, "Mesh plink error: no more free plinks\n");
1010                         goto out;
1011                 }
1012
1013                 /* new matching peer */
1014                 event = OPN_ACPT;
1015                 goto out;
1016         } else {
1017                 if (!test_sta_flag(sta, WLAN_STA_AUTH)) {
1018                         mpl_dbg(sdata, "Mesh plink: Action frame from non-authed peer\n");
1019                         goto out;
1020                 }
1021                 if (sta->mesh->plink_state == NL80211_PLINK_BLOCKED)
1022                         goto out;
1023         }
1024
1025         switch (ftype) {
1026         case WLAN_SP_MESH_PEERING_OPEN:
1027                 if (!matches_local)
1028                         event = OPN_RJCT;
1029                 if (!mesh_plink_free_count(sdata) ||
1030                     (sta->mesh->plid && sta->mesh->plid != plid))
1031                         event = OPN_IGNR;
1032                 else
1033                         event = OPN_ACPT;
1034                 break;
1035         case WLAN_SP_MESH_PEERING_CONFIRM:
1036                 if (!matches_local)
1037                         event = CNF_RJCT;
1038                 if (!mesh_plink_free_count(sdata) ||
1039                     sta->mesh->llid != llid ||
1040                     (sta->mesh->plid && sta->mesh->plid != plid))
1041                         event = CNF_IGNR;
1042                 else
1043                         event = CNF_ACPT;
1044                 break;
1045         case WLAN_SP_MESH_PEERING_CLOSE:
1046                 if (sta->mesh->plink_state == NL80211_PLINK_ESTAB)
1047                         /* Do not check for llid or plid. This does not
1048                          * follow the standard but since multiple plinks
1049                          * per sta are not supported, it is necessary in
1050                          * order to avoid a livelock when MP A sees an
1051                          * establish peer link to MP B but MP B does not
1052                          * see it. This can be caused by a timeout in
1053                          * B's peer link establishment or B beign
1054                          * restarted.
1055                          */
1056                         event = CLS_ACPT;
1057                 else if (sta->mesh->plid != plid)
1058                         event = CLS_IGNR;
1059                 else if (ie_len == 8 && sta->mesh->llid != llid)
1060                         event = CLS_IGNR;
1061                 else
1062                         event = CLS_ACPT;
1063                 break;
1064         default:
1065                 mpl_dbg(sdata, "Mesh plink: unknown frame subtype\n");
1066                 break;
1067         }
1068
1069 out:
1070         return event;
1071 }
1072
1073 static void
1074 mesh_process_plink_frame(struct ieee80211_sub_if_data *sdata,
1075                          struct ieee80211_mgmt *mgmt,
1076                          struct ieee802_11_elems *elems)
1077 {
1078
1079         struct sta_info *sta;
1080         enum plink_event event;
1081         enum ieee80211_self_protected_actioncode ftype;
1082         u32 changed = 0;
1083         u8 ie_len = elems->peering_len;
1084         u16 plid, llid = 0;
1085
1086         if (!elems->peering) {
1087                 mpl_dbg(sdata,
1088                         "Mesh plink: missing necessary peer link ie\n");
1089                 return;
1090         }
1091
1092         if (elems->rsn_len &&
1093             sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) {
1094                 mpl_dbg(sdata,
1095                         "Mesh plink: can't establish link with secure peer\n");
1096                 return;
1097         }
1098
1099         ftype = mgmt->u.action.u.self_prot.action_code;
1100         if ((ftype == WLAN_SP_MESH_PEERING_OPEN && ie_len != 4) ||
1101             (ftype == WLAN_SP_MESH_PEERING_CONFIRM && ie_len != 6) ||
1102             (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len != 6
1103                                                         && ie_len != 8)) {
1104                 mpl_dbg(sdata,
1105                         "Mesh plink: incorrect plink ie length %d %d\n",
1106                         ftype, ie_len);
1107                 return;
1108         }
1109
1110         if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
1111             (!elems->mesh_id || !elems->mesh_config)) {
1112                 mpl_dbg(sdata, "Mesh plink: missing necessary ie\n");
1113                 return;
1114         }
1115         /* Note the lines below are correct, the llid in the frame is the plid
1116          * from the point of view of this host.
1117          */
1118         plid = get_unaligned_le16(PLINK_GET_LLID(elems->peering));
1119         if (ftype == WLAN_SP_MESH_PEERING_CONFIRM ||
1120             (ftype == WLAN_SP_MESH_PEERING_CLOSE && ie_len == 8))
1121                 llid = get_unaligned_le16(PLINK_GET_PLID(elems->peering));
1122
1123         /* WARNING: Only for sta pointer, is dropped & re-acquired */
1124         rcu_read_lock();
1125
1126         sta = sta_info_get(sdata, mgmt->sa);
1127
1128         if (ftype == WLAN_SP_MESH_PEERING_OPEN &&
1129             !rssi_threshold_check(sdata, sta)) {
1130                 mpl_dbg(sdata, "Mesh plink: %pM does not meet rssi threshold\n",
1131                         mgmt->sa);
1132                 goto unlock_rcu;
1133         }
1134
1135         /* Now we will figure out the appropriate event... */
1136         event = mesh_plink_get_event(sdata, sta, elems, ftype, llid, plid);
1137
1138         if (event == OPN_ACPT) {
1139                 rcu_read_unlock();
1140                 /* allocate sta entry if necessary and update info */
1141                 sta = mesh_sta_info_get(sdata, mgmt->sa, elems);
1142                 if (!sta) {
1143                         mpl_dbg(sdata, "Mesh plink: failed to init peer!\n");
1144                         goto unlock_rcu;
1145                 }
1146                 sta->mesh->plid = plid;
1147         } else if (!sta && event == OPN_RJCT) {
1148                 mesh_plink_frame_tx(sdata, NULL, WLAN_SP_MESH_PEERING_CLOSE,
1149                                     mgmt->sa, 0, plid,
1150                                     WLAN_REASON_MESH_CONFIG);
1151                 goto unlock_rcu;
1152         } else if (!sta || event == PLINK_UNDEFINED) {
1153                 /* something went wrong */
1154                 goto unlock_rcu;
1155         }
1156
1157         if (event == CNF_ACPT) {
1158                 /* 802.11-2012 13.3.7.2 - update plid on CNF if not set */
1159                 if (!sta->mesh->plid)
1160                         sta->mesh->plid = plid;
1161
1162                 sta->mesh->aid = get_unaligned_le16(PLINK_CNF_AID(mgmt));
1163         }
1164
1165         changed |= mesh_plink_fsm(sdata, sta, event);
1166
1167 unlock_rcu:
1168         rcu_read_unlock();
1169
1170         if (changed)
1171                 ieee80211_mbss_info_change_notify(sdata, changed);
1172 }
1173
1174 void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata,
1175                          struct ieee80211_mgmt *mgmt, size_t len,
1176                          struct ieee80211_rx_status *rx_status)
1177 {
1178         struct ieee802_11_elems elems;
1179         size_t baselen;
1180         u8 *baseaddr;
1181
1182         /* need action_code, aux */
1183         if (len < IEEE80211_MIN_ACTION_SIZE + 3)
1184                 return;
1185
1186         if (sdata->u.mesh.user_mpm)
1187                 /* userspace must register for these */
1188                 return;
1189
1190         if (is_multicast_ether_addr(mgmt->da)) {
1191                 mpl_dbg(sdata,
1192                         "Mesh plink: ignore frame from multicast address\n");
1193                 return;
1194         }
1195
1196         baseaddr = mgmt->u.action.u.self_prot.variable;
1197         baselen = (u8 *) mgmt->u.action.u.self_prot.variable - (u8 *) mgmt;
1198         if (mgmt->u.action.u.self_prot.action_code ==
1199                                                 WLAN_SP_MESH_PEERING_CONFIRM) {
1200                 baseaddr += 4;
1201                 baselen += 4;
1202
1203                 if (baselen > len)
1204                         return;
1205         }
1206         ieee802_11_parse_elems(baseaddr, len - baselen, true, &elems);
1207         mesh_process_plink_frame(sdata, mgmt, &elems);
1208 }