2 * Copyright (c) 2008, 2009 open80211s Ltd.
3 * Authors: Luis Carlos Cobo <luisca@cozybit.com>
4 * Javier Cardona <javier@cozybit.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/slab.h>
12 #include <asm/unaligned.h>
13 #include "ieee80211_i.h"
15 #include "driver-ops.h"
17 static int mesh_allocated
;
18 static struct kmem_cache
*rm_cache
;
20 bool mesh_action_is_path_sel(struct ieee80211_mgmt
*mgmt
)
22 return (mgmt
->u
.action
.u
.mesh_action
.action_code
==
23 WLAN_MESH_ACTION_HWMP_PATH_SELECTION
);
26 void ieee80211s_init(void)
29 rm_cache
= kmem_cache_create("mesh_rmc", sizeof(struct rmc_entry
),
33 void ieee80211s_stop(void)
37 kmem_cache_destroy(rm_cache
);
40 static void ieee80211_mesh_housekeeping_timer(unsigned long data
)
42 struct ieee80211_sub_if_data
*sdata
= (void *) data
;
43 struct ieee80211_local
*local
= sdata
->local
;
44 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
46 set_bit(MESH_WORK_HOUSEKEEPING
, &ifmsh
->wrkq_flags
);
48 ieee80211_queue_work(&local
->hw
, &sdata
->work
);
52 * mesh_matches_local - check if the config of a mesh point matches ours
54 * @sdata: local mesh subif
55 * @ie: information elements of a management frame from the mesh peer
57 * This function checks if the mesh configuration of a mesh point matches the
58 * local mesh configuration, i.e. if both nodes belong to the same mesh network.
60 bool mesh_matches_local(struct ieee80211_sub_if_data
*sdata
,
61 struct ieee802_11_elems
*ie
)
63 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
65 struct cfg80211_chan_def sta_chan_def
;
68 * As support for each feature is added, check for matching
69 * - On mesh config capabilities
70 * - Power Save Support En
71 * - Sync support enabled
72 * - Sync support active
73 * - Sync support required from peer
75 * - Power management control on fc
77 if (!(ifmsh
->mesh_id_len
== ie
->mesh_id_len
&&
78 memcmp(ifmsh
->mesh_id
, ie
->mesh_id
, ie
->mesh_id_len
) == 0 &&
79 (ifmsh
->mesh_pp_id
== ie
->mesh_config
->meshconf_psel
) &&
80 (ifmsh
->mesh_pm_id
== ie
->mesh_config
->meshconf_pmetric
) &&
81 (ifmsh
->mesh_cc_id
== ie
->mesh_config
->meshconf_congest
) &&
82 (ifmsh
->mesh_sp_id
== ie
->mesh_config
->meshconf_synch
) &&
83 (ifmsh
->mesh_auth_id
== ie
->mesh_config
->meshconf_auth
)))
86 ieee80211_sta_get_rates(sdata
, ie
, ieee80211_get_sdata_band(sdata
),
89 if (sdata
->vif
.bss_conf
.basic_rates
!= basic_rates
)
92 cfg80211_chandef_create(&sta_chan_def
, sdata
->vif
.bss_conf
.chandef
.chan
,
94 ieee80211_chandef_ht_oper(ie
->ht_operation
, &sta_chan_def
);
95 ieee80211_chandef_vht_oper(ie
->vht_operation
, &sta_chan_def
);
97 if (!cfg80211_chandef_compatible(&sdata
->vif
.bss_conf
.chandef
,
105 * mesh_peer_accepts_plinks - check if an mp is willing to establish peer links
107 * @ie: information elements of a management frame from the mesh peer
109 bool mesh_peer_accepts_plinks(struct ieee802_11_elems
*ie
)
111 return (ie
->mesh_config
->meshconf_cap
&
112 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS
) != 0;
116 * mesh_accept_plinks_update - update accepting_plink in local mesh beacons
118 * @sdata: mesh interface in which mesh beacons are going to be updated
120 * Returns: beacon changed flag if the beacon content changed.
122 u32
mesh_accept_plinks_update(struct ieee80211_sub_if_data
*sdata
)
127 /* In case mesh_plink_free_count > 0 and mesh_plinktbl_capacity == 0,
128 * the mesh interface might be able to establish plinks with peers that
129 * are already on the table but are not on PLINK_ESTAB state. However,
130 * in general the mesh interface is not accepting peer link requests
131 * from new peers, and that must be reflected in the beacon
133 free_plinks
= mesh_plink_availables(sdata
);
135 if (free_plinks
!= sdata
->u
.mesh
.accepting_plinks
) {
136 sdata
->u
.mesh
.accepting_plinks
= free_plinks
;
137 changed
= BSS_CHANGED_BEACON
;
144 * mesh_sta_cleanup - clean up any mesh sta state
146 * @sta: mesh sta to clean up.
148 void mesh_sta_cleanup(struct sta_info
*sta
)
150 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
154 * maybe userspace handles peer allocation and peering, but in either
155 * case the beacon is still generated by the kernel and we might need
158 changed
= mesh_accept_plinks_update(sdata
);
159 if (!sdata
->u
.mesh
.user_mpm
) {
160 changed
|= mesh_plink_deactivate(sta
);
161 del_timer_sync(&sta
->mesh
->plink_timer
);
165 ieee80211_mbss_info_change_notify(sdata
, changed
);
168 int mesh_rmc_init(struct ieee80211_sub_if_data
*sdata
)
172 sdata
->u
.mesh
.rmc
= kmalloc(sizeof(struct mesh_rmc
), GFP_KERNEL
);
173 if (!sdata
->u
.mesh
.rmc
)
175 sdata
->u
.mesh
.rmc
->idx_mask
= RMC_BUCKETS
- 1;
176 for (i
= 0; i
< RMC_BUCKETS
; i
++)
177 INIT_HLIST_HEAD(&sdata
->u
.mesh
.rmc
->bucket
[i
]);
181 void mesh_rmc_free(struct ieee80211_sub_if_data
*sdata
)
183 struct mesh_rmc
*rmc
= sdata
->u
.mesh
.rmc
;
185 struct hlist_node
*n
;
188 if (!sdata
->u
.mesh
.rmc
)
191 for (i
= 0; i
< RMC_BUCKETS
; i
++) {
192 hlist_for_each_entry_safe(p
, n
, &rmc
->bucket
[i
], list
) {
194 kmem_cache_free(rm_cache
, p
);
199 sdata
->u
.mesh
.rmc
= NULL
;
203 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
206 * @sa: source address
207 * @mesh_hdr: mesh_header
209 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
211 * Checks using the source address and the mesh sequence number if we have
212 * received this frame lately. If the frame is not in the cache, it is added to
215 int mesh_rmc_check(struct ieee80211_sub_if_data
*sdata
,
216 const u8
*sa
, struct ieee80211s_hdr
*mesh_hdr
)
218 struct mesh_rmc
*rmc
= sdata
->u
.mesh
.rmc
;
223 struct hlist_node
*n
;
228 /* Don't care about endianness since only match matters */
229 memcpy(&seqnum
, &mesh_hdr
->seqnum
, sizeof(mesh_hdr
->seqnum
));
230 idx
= le32_to_cpu(mesh_hdr
->seqnum
) & rmc
->idx_mask
;
231 hlist_for_each_entry_safe(p
, n
, &rmc
->bucket
[idx
], list
) {
233 if (time_after(jiffies
, p
->exp_time
) ||
234 entries
== RMC_QUEUE_MAX_LEN
) {
236 kmem_cache_free(rm_cache
, p
);
238 } else if ((seqnum
== p
->seqnum
) && ether_addr_equal(sa
, p
->sa
))
242 p
= kmem_cache_alloc(rm_cache
, GFP_ATOMIC
);
247 p
->exp_time
= jiffies
+ RMC_TIMEOUT
;
248 memcpy(p
->sa
, sa
, ETH_ALEN
);
249 hlist_add_head(&p
->list
, &rmc
->bucket
[idx
]);
253 int mesh_add_meshconf_ie(struct ieee80211_sub_if_data
*sdata
,
256 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
258 u8 meshconf_len
= sizeof(struct ieee80211_meshconf_ie
);
260 if (skb_tailroom(skb
) < 2 + meshconf_len
)
263 pos
= skb_put(skb
, 2 + meshconf_len
);
264 *pos
++ = WLAN_EID_MESH_CONFIG
;
265 *pos
++ = meshconf_len
;
267 /* save a pointer for quick updates in pre-tbtt */
268 ifmsh
->meshconf_offset
= pos
- skb
->data
;
270 /* Active path selection protocol ID */
271 *pos
++ = ifmsh
->mesh_pp_id
;
272 /* Active path selection metric ID */
273 *pos
++ = ifmsh
->mesh_pm_id
;
274 /* Congestion control mode identifier */
275 *pos
++ = ifmsh
->mesh_cc_id
;
276 /* Synchronization protocol identifier */
277 *pos
++ = ifmsh
->mesh_sp_id
;
278 /* Authentication Protocol identifier */
279 *pos
++ = ifmsh
->mesh_auth_id
;
280 /* Mesh Formation Info - number of neighbors */
281 neighbors
= atomic_read(&ifmsh
->estab_plinks
);
282 neighbors
= min_t(int, neighbors
, IEEE80211_MAX_MESH_PEERINGS
);
283 *pos
++ = neighbors
<< 1;
284 /* Mesh capability */
286 *pos
|= ifmsh
->mshcfg
.dot11MeshForwarding
?
287 IEEE80211_MESHCONF_CAPAB_FORWARDING
: 0x00;
288 *pos
|= ifmsh
->accepting_plinks
?
289 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS
: 0x00;
290 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
291 *pos
|= ifmsh
->ps_peers_deep_sleep
?
292 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL
: 0x00;
293 *pos
++ |= ifmsh
->adjusting_tbtt
?
294 IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING
: 0x00;
300 int mesh_add_meshid_ie(struct ieee80211_sub_if_data
*sdata
, struct sk_buff
*skb
)
302 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
305 if (skb_tailroom(skb
) < 2 + ifmsh
->mesh_id_len
)
308 pos
= skb_put(skb
, 2 + ifmsh
->mesh_id_len
);
309 *pos
++ = WLAN_EID_MESH_ID
;
310 *pos
++ = ifmsh
->mesh_id_len
;
311 if (ifmsh
->mesh_id_len
)
312 memcpy(pos
, ifmsh
->mesh_id
, ifmsh
->mesh_id_len
);
317 static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data
*sdata
,
320 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
323 /* see IEEE802.11-2012 13.14.6 */
324 if (ifmsh
->ps_peers_light_sleep
== 0 &&
325 ifmsh
->ps_peers_deep_sleep
== 0 &&
326 ifmsh
->nonpeer_pm
== NL80211_MESH_POWER_ACTIVE
)
329 if (skb_tailroom(skb
) < 4)
332 pos
= skb_put(skb
, 2 + 2);
333 *pos
++ = WLAN_EID_MESH_AWAKE_WINDOW
;
335 put_unaligned_le16(ifmsh
->mshcfg
.dot11MeshAwakeWindowDuration
, pos
);
340 int mesh_add_vendor_ies(struct ieee80211_sub_if_data
*sdata
,
343 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
347 if (!ifmsh
->ie
|| !ifmsh
->ie_len
)
350 /* fast-forward to vendor IEs */
351 offset
= ieee80211_ie_split_vendor(ifmsh
->ie
, ifmsh
->ie_len
, 0);
354 len
= ifmsh
->ie_len
- offset
;
355 data
= ifmsh
->ie
+ offset
;
356 if (skb_tailroom(skb
) < len
)
358 memcpy(skb_put(skb
, len
), data
, len
);
364 int mesh_add_rsn_ie(struct ieee80211_sub_if_data
*sdata
, struct sk_buff
*skb
)
366 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
370 if (!ifmsh
->ie
|| !ifmsh
->ie_len
)
374 data
= cfg80211_find_ie(WLAN_EID_RSN
, ifmsh
->ie
, ifmsh
->ie_len
);
380 if (skb_tailroom(skb
) < len
)
382 memcpy(skb_put(skb
, len
), data
, len
);
387 static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data
*sdata
,
390 struct ieee80211_chanctx_conf
*chanctx_conf
;
391 struct ieee80211_channel
*chan
;
394 if (skb_tailroom(skb
) < 3)
398 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
399 if (WARN_ON(!chanctx_conf
)) {
403 chan
= chanctx_conf
->def
.chan
;
406 pos
= skb_put(skb
, 2 + 1);
407 *pos
++ = WLAN_EID_DS_PARAMS
;
409 *pos
++ = ieee80211_frequency_to_channel(chan
->center_freq
);
414 int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data
*sdata
,
417 struct ieee80211_local
*local
= sdata
->local
;
418 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
419 struct ieee80211_supported_band
*sband
;
422 sband
= local
->hw
.wiphy
->bands
[band
];
423 if (!sband
->ht_cap
.ht_supported
||
424 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
425 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
426 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
429 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_ht_cap
))
432 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_ht_cap
));
433 ieee80211_ie_build_ht_cap(pos
, &sband
->ht_cap
, sband
->ht_cap
.cap
);
438 int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data
*sdata
,
441 struct ieee80211_local
*local
= sdata
->local
;
442 struct ieee80211_chanctx_conf
*chanctx_conf
;
443 struct ieee80211_channel
*channel
;
444 struct ieee80211_supported_band
*sband
;
445 struct ieee80211_sta_ht_cap
*ht_cap
;
449 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
450 if (WARN_ON(!chanctx_conf
)) {
454 channel
= chanctx_conf
->def
.chan
;
457 sband
= local
->hw
.wiphy
->bands
[channel
->band
];
458 ht_cap
= &sband
->ht_cap
;
460 if (!ht_cap
->ht_supported
||
461 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
462 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
463 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
466 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_ht_operation
))
469 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_ht_operation
));
470 ieee80211_ie_build_ht_oper(pos
, ht_cap
, &sdata
->vif
.bss_conf
.chandef
,
471 sdata
->vif
.bss_conf
.ht_operation_mode
,
477 int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data
*sdata
,
480 struct ieee80211_local
*local
= sdata
->local
;
481 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
482 struct ieee80211_supported_band
*sband
;
485 sband
= local
->hw
.wiphy
->bands
[band
];
486 if (!sband
->vht_cap
.vht_supported
||
487 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
488 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
489 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
492 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_vht_cap
))
495 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_vht_cap
));
496 ieee80211_ie_build_vht_cap(pos
, &sband
->vht_cap
, sband
->vht_cap
.cap
);
501 int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data
*sdata
,
504 struct ieee80211_local
*local
= sdata
->local
;
505 struct ieee80211_chanctx_conf
*chanctx_conf
;
506 struct ieee80211_channel
*channel
;
507 struct ieee80211_supported_band
*sband
;
508 struct ieee80211_sta_vht_cap
*vht_cap
;
512 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
513 if (WARN_ON(!chanctx_conf
)) {
517 channel
= chanctx_conf
->def
.chan
;
520 sband
= local
->hw
.wiphy
->bands
[channel
->band
];
521 vht_cap
= &sband
->vht_cap
;
523 if (!vht_cap
->vht_supported
||
524 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
525 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
526 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
529 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_vht_operation
))
532 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_vht_operation
));
533 ieee80211_ie_build_vht_oper(pos
, vht_cap
,
534 &sdata
->vif
.bss_conf
.chandef
);
539 static void ieee80211_mesh_path_timer(unsigned long data
)
541 struct ieee80211_sub_if_data
*sdata
=
542 (struct ieee80211_sub_if_data
*) data
;
544 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
547 static void ieee80211_mesh_path_root_timer(unsigned long data
)
549 struct ieee80211_sub_if_data
*sdata
=
550 (struct ieee80211_sub_if_data
*) data
;
551 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
553 set_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
);
555 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
558 void ieee80211_mesh_root_setup(struct ieee80211_if_mesh
*ifmsh
)
560 if (ifmsh
->mshcfg
.dot11MeshHWMPRootMode
> IEEE80211_ROOTMODE_ROOT
)
561 set_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
);
563 clear_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
);
564 /* stop running timer */
565 del_timer_sync(&ifmsh
->mesh_path_root_timer
);
570 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
571 * @hdr: 802.11 frame header
572 * @fc: frame control field
573 * @meshda: destination address in the mesh
574 * @meshsa: source address address in the mesh. Same as TA, as frame is
575 * locally originated.
577 * Return the length of the 802.11 (does not include a mesh control header)
579 int ieee80211_fill_mesh_addresses(struct ieee80211_hdr
*hdr
, __le16
*fc
,
580 const u8
*meshda
, const u8
*meshsa
)
582 if (is_multicast_ether_addr(meshda
)) {
583 *fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
);
585 memcpy(hdr
->addr1
, meshda
, ETH_ALEN
);
586 memcpy(hdr
->addr2
, meshsa
, ETH_ALEN
);
587 memcpy(hdr
->addr3
, meshsa
, ETH_ALEN
);
590 *fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
| IEEE80211_FCTL_TODS
);
592 eth_zero_addr(hdr
->addr1
); /* RA is resolved later */
593 memcpy(hdr
->addr2
, meshsa
, ETH_ALEN
);
594 memcpy(hdr
->addr3
, meshda
, ETH_ALEN
);
595 memcpy(hdr
->addr4
, meshsa
, ETH_ALEN
);
601 * ieee80211_new_mesh_header - create a new mesh header
602 * @sdata: mesh interface to be used
603 * @meshhdr: uninitialized mesh header
604 * @addr4or5: 1st address in the ae header, which may correspond to address 4
605 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
607 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
610 * Return the header length.
612 unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data
*sdata
,
613 struct ieee80211s_hdr
*meshhdr
,
614 const char *addr4or5
, const char *addr6
)
616 if (WARN_ON(!addr4or5
&& addr6
))
619 memset(meshhdr
, 0, sizeof(*meshhdr
));
621 meshhdr
->ttl
= sdata
->u
.mesh
.mshcfg
.dot11MeshTTL
;
623 /* FIXME: racy -- TX on multiple queues can be concurrent */
624 put_unaligned(cpu_to_le32(sdata
->u
.mesh
.mesh_seqnum
), &meshhdr
->seqnum
);
625 sdata
->u
.mesh
.mesh_seqnum
++;
627 if (addr4or5
&& !addr6
) {
628 meshhdr
->flags
|= MESH_FLAGS_AE_A4
;
629 memcpy(meshhdr
->eaddr1
, addr4or5
, ETH_ALEN
);
631 } else if (addr4or5
&& addr6
) {
632 meshhdr
->flags
|= MESH_FLAGS_AE_A5_A6
;
633 memcpy(meshhdr
->eaddr1
, addr4or5
, ETH_ALEN
);
634 memcpy(meshhdr
->eaddr2
, addr6
, ETH_ALEN
);
641 static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data
*sdata
)
643 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
646 if (ifmsh
->mshcfg
.plink_timeout
> 0)
647 ieee80211_sta_expire(sdata
, ifmsh
->mshcfg
.plink_timeout
* HZ
);
648 mesh_path_expire(sdata
);
650 changed
= mesh_accept_plinks_update(sdata
);
651 ieee80211_mbss_info_change_notify(sdata
, changed
);
653 mod_timer(&ifmsh
->housekeeping_timer
,
654 round_jiffies(jiffies
+
655 IEEE80211_MESH_HOUSEKEEPING_INTERVAL
));
658 static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data
*sdata
)
660 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
663 mesh_path_tx_root_frame(sdata
);
665 if (ifmsh
->mshcfg
.dot11MeshHWMPRootMode
== IEEE80211_PROACTIVE_RANN
)
666 interval
= ifmsh
->mshcfg
.dot11MeshHWMPRannInterval
;
668 interval
= ifmsh
->mshcfg
.dot11MeshHWMProotInterval
;
670 mod_timer(&ifmsh
->mesh_path_root_timer
,
671 round_jiffies(TU_TO_EXP_TIME(interval
)));
675 ieee80211_mesh_build_beacon(struct ieee80211_if_mesh
*ifmsh
)
677 struct beacon_data
*bcn
;
678 int head_len
, tail_len
;
680 struct ieee80211_mgmt
*mgmt
;
681 struct ieee80211_chanctx_conf
*chanctx_conf
;
682 struct mesh_csa_settings
*csa
;
683 enum nl80211_band band
;
685 struct ieee80211_sub_if_data
*sdata
;
686 int hdr_len
= offsetof(struct ieee80211_mgmt
, u
.beacon
) +
687 sizeof(mgmt
->u
.beacon
);
689 sdata
= container_of(ifmsh
, struct ieee80211_sub_if_data
, u
.mesh
);
691 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
692 band
= chanctx_conf
->def
.chan
->band
;
697 /* Channel Switch Announcement */
698 2 + sizeof(struct ieee80211_channel_sw_ie
) +
699 /* Mesh Channel Swith Parameters */
700 2 + sizeof(struct ieee80211_mesh_chansw_params_ie
) +
701 2 + 8 + /* supported rates */
702 2 + 3; /* DS params */
703 tail_len
= 2 + (IEEE80211_MAX_SUPP_RATES
- 8) +
704 2 + sizeof(struct ieee80211_ht_cap
) +
705 2 + sizeof(struct ieee80211_ht_operation
) +
706 2 + ifmsh
->mesh_id_len
+
707 2 + sizeof(struct ieee80211_meshconf_ie
) +
708 2 + sizeof(__le16
) + /* awake window */
709 2 + sizeof(struct ieee80211_vht_cap
) +
710 2 + sizeof(struct ieee80211_vht_operation
) +
713 bcn
= kzalloc(sizeof(*bcn
) + head_len
+ tail_len
, GFP_KERNEL
);
714 /* need an skb for IE builders to operate on */
715 skb
= dev_alloc_skb(max(head_len
, tail_len
));
721 * pointers go into the block we allocated,
722 * memory is | beacon_data | head | tail |
724 bcn
->head
= ((u8
*) bcn
) + sizeof(*bcn
);
726 /* fill in the head */
727 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, hdr_len
);
728 memset(mgmt
, 0, hdr_len
);
729 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
730 IEEE80211_STYPE_BEACON
);
731 eth_broadcast_addr(mgmt
->da
);
732 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
733 memcpy(mgmt
->bssid
, sdata
->vif
.addr
, ETH_ALEN
);
734 ieee80211_mps_set_frame_flags(sdata
, NULL
, (void *) mgmt
);
735 mgmt
->u
.beacon
.beacon_int
=
736 cpu_to_le16(sdata
->vif
.bss_conf
.beacon_int
);
737 mgmt
->u
.beacon
.capab_info
|= cpu_to_le16(
738 sdata
->u
.mesh
.security
? WLAN_CAPABILITY_PRIVACY
: 0);
740 pos
= skb_put(skb
, 2);
741 *pos
++ = WLAN_EID_SSID
;
745 csa
= rcu_dereference(ifmsh
->csa
);
747 pos
= skb_put(skb
, 13);
749 *pos
++ = WLAN_EID_CHANNEL_SWITCH
;
752 *pos
++ = ieee80211_frequency_to_channel(
753 csa
->settings
.chandef
.chan
->center_freq
);
754 bcn
->csa_current_counter
= csa
->settings
.count
;
755 bcn
->csa_counter_offsets
[0] = hdr_len
+ 6;
756 *pos
++ = csa
->settings
.count
;
757 *pos
++ = WLAN_EID_CHAN_SWITCH_PARAM
;
759 if (ifmsh
->csa_role
== IEEE80211_MESH_CSA_ROLE_INIT
) {
760 *pos
++ = ifmsh
->mshcfg
.dot11MeshTTL
;
761 *pos
|= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR
;
763 *pos
++ = ifmsh
->chsw_ttl
;
765 *pos
++ |= csa
->settings
.block_tx
?
766 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT
: 0x00;
767 put_unaligned_le16(WLAN_REASON_MESH_CHAN
, pos
);
769 put_unaligned_le16(ifmsh
->pre_value
, pos
);
774 if (ieee80211_add_srates_ie(sdata
, skb
, true, band
) ||
775 mesh_add_ds_params_ie(sdata
, skb
))
778 bcn
->head_len
= skb
->len
;
779 memcpy(bcn
->head
, skb
->data
, bcn
->head_len
);
783 bcn
->tail
= bcn
->head
+ bcn
->head_len
;
785 if (ieee80211_add_ext_srates_ie(sdata
, skb
, true, band
) ||
786 mesh_add_rsn_ie(sdata
, skb
) ||
787 mesh_add_ht_cap_ie(sdata
, skb
) ||
788 mesh_add_ht_oper_ie(sdata
, skb
) ||
789 mesh_add_meshid_ie(sdata
, skb
) ||
790 mesh_add_meshconf_ie(sdata
, skb
) ||
791 mesh_add_awake_window_ie(sdata
, skb
) ||
792 mesh_add_vht_cap_ie(sdata
, skb
) ||
793 mesh_add_vht_oper_ie(sdata
, skb
) ||
794 mesh_add_vendor_ies(sdata
, skb
))
797 bcn
->tail_len
= skb
->len
;
798 memcpy(bcn
->tail
, skb
->data
, bcn
->tail_len
);
799 bcn
->meshconf
= (struct ieee80211_meshconf_ie
*)
800 (bcn
->tail
+ ifmsh
->meshconf_offset
);
803 rcu_assign_pointer(ifmsh
->beacon
, bcn
);
812 ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data
*sdata
)
814 struct beacon_data
*old_bcn
;
817 old_bcn
= rcu_dereference_protected(sdata
->u
.mesh
.beacon
,
818 lockdep_is_held(&sdata
->wdev
.mtx
));
819 ret
= ieee80211_mesh_build_beacon(&sdata
->u
.mesh
);
821 /* just reuse old beacon */
825 kfree_rcu(old_bcn
, rcu_head
);
829 void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data
*sdata
,
832 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
833 unsigned long bits
= changed
;
839 /* if we race with running work, worst case this work becomes a noop */
840 for_each_set_bit(bit
, &bits
, sizeof(changed
) * BITS_PER_BYTE
)
841 set_bit(bit
, &ifmsh
->mbss_changed
);
842 set_bit(MESH_WORK_MBSS_CHANGED
, &ifmsh
->wrkq_flags
);
843 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
846 int ieee80211_start_mesh(struct ieee80211_sub_if_data
*sdata
)
848 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
849 struct ieee80211_local
*local
= sdata
->local
;
850 u32 changed
= BSS_CHANGED_BEACON
|
851 BSS_CHANGED_BEACON_ENABLED
|
853 BSS_CHANGED_BASIC_RATES
|
854 BSS_CHANGED_BEACON_INT
;
856 local
->fif_other_bss
++;
857 /* mesh ifaces must set allmulti to forward mcast traffic */
858 atomic_inc(&local
->iff_allmultis
);
859 ieee80211_configure_filter(local
);
861 ifmsh
->mesh_cc_id
= 0; /* Disabled */
862 /* register sync ops from extensible synchronization framework */
863 ifmsh
->sync_ops
= ieee80211_mesh_sync_ops_get(ifmsh
->mesh_sp_id
);
864 ifmsh
->adjusting_tbtt
= false;
865 ifmsh
->sync_offset_clockdrift_max
= 0;
866 set_bit(MESH_WORK_HOUSEKEEPING
, &ifmsh
->wrkq_flags
);
867 ieee80211_mesh_root_setup(ifmsh
);
868 ieee80211_queue_work(&local
->hw
, &sdata
->work
);
869 sdata
->vif
.bss_conf
.ht_operation_mode
=
870 ifmsh
->mshcfg
.ht_opmode
;
871 sdata
->vif
.bss_conf
.enable_beacon
= true;
873 changed
|= ieee80211_mps_local_status_update(sdata
);
875 if (ieee80211_mesh_build_beacon(ifmsh
)) {
876 ieee80211_stop_mesh(sdata
);
880 ieee80211_recalc_dtim(local
, sdata
);
881 ieee80211_bss_info_change_notify(sdata
, changed
);
883 netif_carrier_on(sdata
->dev
);
887 void ieee80211_stop_mesh(struct ieee80211_sub_if_data
*sdata
)
889 struct ieee80211_local
*local
= sdata
->local
;
890 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
891 struct beacon_data
*bcn
;
893 netif_carrier_off(sdata
->dev
);
895 /* stop the beacon */
896 ifmsh
->mesh_id_len
= 0;
897 sdata
->vif
.bss_conf
.enable_beacon
= false;
898 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED
, &sdata
->state
);
899 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
);
900 bcn
= rcu_dereference_protected(ifmsh
->beacon
,
901 lockdep_is_held(&sdata
->wdev
.mtx
));
902 RCU_INIT_POINTER(ifmsh
->beacon
, NULL
);
903 kfree_rcu(bcn
, rcu_head
);
905 /* flush STAs and mpaths on this iface */
906 sta_info_flush(sdata
);
907 mesh_path_flush_by_iface(sdata
);
909 /* free all potentially still buffered group-addressed frames */
910 local
->total_ps_buffered
-= skb_queue_len(&ifmsh
->ps
.bc_buf
);
911 skb_queue_purge(&ifmsh
->ps
.bc_buf
);
913 del_timer_sync(&sdata
->u
.mesh
.housekeeping_timer
);
914 del_timer_sync(&sdata
->u
.mesh
.mesh_path_root_timer
);
915 del_timer_sync(&sdata
->u
.mesh
.mesh_path_timer
);
917 /* clear any mesh work (for next join) we may have accrued */
918 ifmsh
->wrkq_flags
= 0;
919 ifmsh
->mbss_changed
= 0;
921 local
->fif_other_bss
--;
922 atomic_dec(&local
->iff_allmultis
);
923 ieee80211_configure_filter(local
);
927 ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data
*sdata
,
928 struct ieee802_11_elems
*elems
, bool beacon
)
930 struct cfg80211_csa_settings params
;
931 struct ieee80211_csa_ie csa_ie
;
932 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
933 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
937 sdata_assert_lock(sdata
);
939 sta_flags
= IEEE80211_STA_DISABLE_VHT
;
940 switch (sdata
->vif
.bss_conf
.chandef
.width
) {
941 case NL80211_CHAN_WIDTH_20_NOHT
:
942 sta_flags
|= IEEE80211_STA_DISABLE_HT
;
943 case NL80211_CHAN_WIDTH_20
:
944 sta_flags
|= IEEE80211_STA_DISABLE_40MHZ
;
950 memset(¶ms
, 0, sizeof(params
));
951 memset(&csa_ie
, 0, sizeof(csa_ie
));
952 err
= ieee80211_parse_ch_switch_ie(sdata
, elems
, band
,
953 sta_flags
, sdata
->vif
.addr
,
960 params
.chandef
= csa_ie
.chandef
;
961 params
.count
= csa_ie
.count
;
963 if (!cfg80211_chandef_usable(sdata
->local
->hw
.wiphy
, ¶ms
.chandef
,
964 IEEE80211_CHAN_DISABLED
)) {
966 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
968 params
.chandef
.chan
->center_freq
,
969 params
.chandef
.width
,
970 params
.chandef
.center_freq1
,
971 params
.chandef
.center_freq2
);
975 err
= cfg80211_chandef_dfs_required(sdata
->local
->hw
.wiphy
,
977 NL80211_IFTYPE_MESH_POINT
);
981 /* TODO: DFS not (yet) supported */
984 params
.radar_required
= err
;
986 if (cfg80211_chandef_identical(¶ms
.chandef
,
987 &sdata
->vif
.bss_conf
.chandef
)) {
989 "received csa with an identical chandef, ignoring\n");
994 "received channel switch announcement to go to channel %d MHz\n",
995 params
.chandef
.chan
->center_freq
);
997 params
.block_tx
= csa_ie
.mode
& WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT
;
999 ifmsh
->chsw_ttl
= csa_ie
.ttl
- 1;
1000 if (ifmsh
->pre_value
>= csa_ie
.pre_value
)
1002 ifmsh
->pre_value
= csa_ie
.pre_value
;
1005 if (ifmsh
->chsw_ttl
>= ifmsh
->mshcfg
.dot11MeshTTL
)
1008 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_REPEATER
;
1010 if (ieee80211_channel_switch(sdata
->local
->hw
.wiphy
, sdata
->dev
,
1018 ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data
*sdata
,
1019 struct ieee80211_mgmt
*mgmt
, size_t len
)
1021 struct ieee80211_local
*local
= sdata
->local
;
1022 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1023 struct sk_buff
*presp
;
1024 struct beacon_data
*bcn
;
1025 struct ieee80211_mgmt
*hdr
;
1026 struct ieee802_11_elems elems
;
1030 pos
= mgmt
->u
.probe_req
.variable
;
1031 baselen
= (u8
*) pos
- (u8
*) mgmt
;
1035 ieee802_11_parse_elems(pos
, len
- baselen
, false, &elems
);
1040 /* 802.11-2012 10.1.4.3.2 */
1041 if ((!ether_addr_equal(mgmt
->da
, sdata
->vif
.addr
) &&
1042 !is_broadcast_ether_addr(mgmt
->da
)) ||
1043 elems
.ssid_len
!= 0)
1046 if (elems
.mesh_id_len
!= 0 &&
1047 (elems
.mesh_id_len
!= ifmsh
->mesh_id_len
||
1048 memcmp(elems
.mesh_id
, ifmsh
->mesh_id
, ifmsh
->mesh_id_len
)))
1052 bcn
= rcu_dereference(ifmsh
->beacon
);
1057 presp
= dev_alloc_skb(local
->tx_headroom
+
1058 bcn
->head_len
+ bcn
->tail_len
);
1062 skb_reserve(presp
, local
->tx_headroom
);
1063 memcpy(skb_put(presp
, bcn
->head_len
), bcn
->head
, bcn
->head_len
);
1064 memcpy(skb_put(presp
, bcn
->tail_len
), bcn
->tail
, bcn
->tail_len
);
1065 hdr
= (struct ieee80211_mgmt
*) presp
->data
;
1066 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
1067 IEEE80211_STYPE_PROBE_RESP
);
1068 memcpy(hdr
->da
, mgmt
->sa
, ETH_ALEN
);
1069 IEEE80211_SKB_CB(presp
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
1070 ieee80211_tx_skb(sdata
, presp
);
1075 static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data
*sdata
,
1077 struct ieee80211_mgmt
*mgmt
,
1079 struct ieee80211_rx_status
*rx_status
)
1081 struct ieee80211_local
*local
= sdata
->local
;
1082 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1083 struct ieee802_11_elems elems
;
1084 struct ieee80211_channel
*channel
;
1087 enum nl80211_band band
= rx_status
->band
;
1089 /* ignore ProbeResp to foreign address */
1090 if (stype
== IEEE80211_STYPE_PROBE_RESP
&&
1091 !ether_addr_equal(mgmt
->da
, sdata
->vif
.addr
))
1094 baselen
= (u8
*) mgmt
->u
.probe_resp
.variable
- (u8
*) mgmt
;
1098 ieee802_11_parse_elems(mgmt
->u
.probe_resp
.variable
, len
- baselen
,
1101 /* ignore non-mesh or secure / unsecure mismatch */
1102 if ((!elems
.mesh_id
|| !elems
.mesh_config
) ||
1103 (elems
.rsn
&& sdata
->u
.mesh
.security
== IEEE80211_MESH_SEC_NONE
) ||
1104 (!elems
.rsn
&& sdata
->u
.mesh
.security
!= IEEE80211_MESH_SEC_NONE
))
1107 if (elems
.ds_params
)
1108 freq
= ieee80211_channel_to_frequency(elems
.ds_params
[0], band
);
1110 freq
= rx_status
->freq
;
1112 channel
= ieee80211_get_channel(local
->hw
.wiphy
, freq
);
1114 if (!channel
|| channel
->flags
& IEEE80211_CHAN_DISABLED
)
1117 if (mesh_matches_local(sdata
, &elems
))
1118 mesh_neighbour_update(sdata
, mgmt
->sa
, &elems
);
1120 if (ifmsh
->sync_ops
)
1121 ifmsh
->sync_ops
->rx_bcn_presp(sdata
,
1122 stype
, mgmt
, &elems
, rx_status
);
1124 if (ifmsh
->csa_role
!= IEEE80211_MESH_CSA_ROLE_INIT
&&
1125 !sdata
->vif
.csa_active
)
1126 ieee80211_mesh_process_chnswitch(sdata
, &elems
, true);
1129 int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data
*sdata
)
1131 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1132 struct mesh_csa_settings
*tmp_csa_settings
;
1136 /* Reset the TTL value and Initiator flag */
1137 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_NONE
;
1138 ifmsh
->chsw_ttl
= 0;
1140 /* Remove the CSA and MCSP elements from the beacon */
1141 tmp_csa_settings
= rcu_dereference(ifmsh
->csa
);
1142 RCU_INIT_POINTER(ifmsh
->csa
, NULL
);
1143 if (tmp_csa_settings
)
1144 kfree_rcu(tmp_csa_settings
, rcu_head
);
1145 ret
= ieee80211_mesh_rebuild_beacon(sdata
);
1149 changed
|= BSS_CHANGED_BEACON
;
1151 mcsa_dbg(sdata
, "complete switching to center freq %d MHz",
1152 sdata
->vif
.bss_conf
.chandef
.chan
->center_freq
);
1156 int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data
*sdata
,
1157 struct cfg80211_csa_settings
*csa_settings
)
1159 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1160 struct mesh_csa_settings
*tmp_csa_settings
;
1163 tmp_csa_settings
= kmalloc(sizeof(*tmp_csa_settings
),
1165 if (!tmp_csa_settings
)
1168 memcpy(&tmp_csa_settings
->settings
, csa_settings
,
1169 sizeof(struct cfg80211_csa_settings
));
1171 rcu_assign_pointer(ifmsh
->csa
, tmp_csa_settings
);
1173 ret
= ieee80211_mesh_rebuild_beacon(sdata
);
1175 tmp_csa_settings
= rcu_dereference(ifmsh
->csa
);
1176 RCU_INIT_POINTER(ifmsh
->csa
, NULL
);
1177 kfree_rcu(tmp_csa_settings
, rcu_head
);
1181 return BSS_CHANGED_BEACON
;
1184 static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data
*sdata
,
1185 struct ieee80211_mgmt
*mgmt
, size_t len
)
1187 struct ieee80211_mgmt
*mgmt_fwd
;
1188 struct sk_buff
*skb
;
1189 struct ieee80211_local
*local
= sdata
->local
;
1190 u8
*pos
= mgmt
->u
.action
.u
.chan_switch
.variable
;
1193 skb
= dev_alloc_skb(local
->tx_headroom
+ len
);
1196 skb_reserve(skb
, local
->tx_headroom
);
1197 mgmt_fwd
= (struct ieee80211_mgmt
*) skb_put(skb
, len
);
1199 /* offset_ttl is based on whether the secondary channel
1200 * offset is available or not. Subtract 1 from the mesh TTL
1201 * and disable the initiator flag before forwarding.
1203 offset_ttl
= (len
< 42) ? 7 : 10;
1204 *(pos
+ offset_ttl
) -= 1;
1205 *(pos
+ offset_ttl
+ 1) &= ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR
;
1207 memcpy(mgmt_fwd
, mgmt
, len
);
1208 eth_broadcast_addr(mgmt_fwd
->da
);
1209 memcpy(mgmt_fwd
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
1210 memcpy(mgmt_fwd
->bssid
, sdata
->vif
.addr
, ETH_ALEN
);
1212 ieee80211_tx_skb(sdata
, skb
);
1216 static void mesh_rx_csa_frame(struct ieee80211_sub_if_data
*sdata
,
1217 struct ieee80211_mgmt
*mgmt
, size_t len
)
1219 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1220 struct ieee802_11_elems elems
;
1222 bool fwd_csa
= true;
1226 if (mgmt
->u
.action
.u
.measurement
.action_code
!=
1227 WLAN_ACTION_SPCT_CHL_SWITCH
)
1230 pos
= mgmt
->u
.action
.u
.chan_switch
.variable
;
1231 baselen
= offsetof(struct ieee80211_mgmt
,
1232 u
.action
.u
.chan_switch
.variable
);
1233 ieee802_11_parse_elems(pos
, len
- baselen
, false, &elems
);
1235 ifmsh
->chsw_ttl
= elems
.mesh_chansw_params_ie
->mesh_ttl
;
1236 if (!--ifmsh
->chsw_ttl
)
1239 pre_value
= le16_to_cpu(elems
.mesh_chansw_params_ie
->mesh_pre_value
);
1240 if (ifmsh
->pre_value
>= pre_value
)
1243 ifmsh
->pre_value
= pre_value
;
1245 if (!sdata
->vif
.csa_active
&&
1246 !ieee80211_mesh_process_chnswitch(sdata
, &elems
, false)) {
1247 mcsa_dbg(sdata
, "Failed to process CSA action frame");
1251 /* forward or re-broadcast the CSA frame */
1253 if (mesh_fwd_csa_frame(sdata
, mgmt
, len
) < 0)
1254 mcsa_dbg(sdata
, "Failed to forward the CSA frame");
1258 static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data
*sdata
,
1259 struct ieee80211_mgmt
*mgmt
,
1261 struct ieee80211_rx_status
*rx_status
)
1263 switch (mgmt
->u
.action
.category
) {
1264 case WLAN_CATEGORY_SELF_PROTECTED
:
1265 switch (mgmt
->u
.action
.u
.self_prot
.action_code
) {
1266 case WLAN_SP_MESH_PEERING_OPEN
:
1267 case WLAN_SP_MESH_PEERING_CLOSE
:
1268 case WLAN_SP_MESH_PEERING_CONFIRM
:
1269 mesh_rx_plink_frame(sdata
, mgmt
, len
, rx_status
);
1273 case WLAN_CATEGORY_MESH_ACTION
:
1274 if (mesh_action_is_path_sel(mgmt
))
1275 mesh_rx_path_sel_frame(sdata
, mgmt
, len
);
1277 case WLAN_CATEGORY_SPECTRUM_MGMT
:
1278 mesh_rx_csa_frame(sdata
, mgmt
, len
);
1283 void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data
*sdata
,
1284 struct sk_buff
*skb
)
1286 struct ieee80211_rx_status
*rx_status
;
1287 struct ieee80211_mgmt
*mgmt
;
1292 /* mesh already went down */
1293 if (!sdata
->u
.mesh
.mesh_id_len
)
1296 rx_status
= IEEE80211_SKB_RXCB(skb
);
1297 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
1298 stype
= le16_to_cpu(mgmt
->frame_control
) & IEEE80211_FCTL_STYPE
;
1301 case IEEE80211_STYPE_PROBE_RESP
:
1302 case IEEE80211_STYPE_BEACON
:
1303 ieee80211_mesh_rx_bcn_presp(sdata
, stype
, mgmt
, skb
->len
,
1306 case IEEE80211_STYPE_PROBE_REQ
:
1307 ieee80211_mesh_rx_probe_req(sdata
, mgmt
, skb
->len
);
1309 case IEEE80211_STYPE_ACTION
:
1310 ieee80211_mesh_rx_mgmt_action(sdata
, mgmt
, skb
->len
, rx_status
);
1314 sdata_unlock(sdata
);
1317 static void mesh_bss_info_changed(struct ieee80211_sub_if_data
*sdata
)
1319 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1320 u32 bit
, changed
= 0;
1322 for_each_set_bit(bit
, &ifmsh
->mbss_changed
,
1323 sizeof(changed
) * BITS_PER_BYTE
) {
1324 clear_bit(bit
, &ifmsh
->mbss_changed
);
1325 changed
|= BIT(bit
);
1328 if (sdata
->vif
.bss_conf
.enable_beacon
&&
1329 (changed
& (BSS_CHANGED_BEACON
|
1331 BSS_CHANGED_BASIC_RATES
|
1332 BSS_CHANGED_BEACON_INT
)))
1333 if (ieee80211_mesh_rebuild_beacon(sdata
))
1336 ieee80211_bss_info_change_notify(sdata
, changed
);
1339 void ieee80211_mesh_work(struct ieee80211_sub_if_data
*sdata
)
1341 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1345 /* mesh already went down */
1346 if (!sdata
->u
.mesh
.mesh_id_len
)
1349 if (ifmsh
->preq_queue_len
&&
1351 ifmsh
->last_preq
+ msecs_to_jiffies(ifmsh
->mshcfg
.dot11MeshHWMPpreqMinInterval
)))
1352 mesh_path_start_discovery(sdata
);
1354 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING
, &ifmsh
->wrkq_flags
))
1355 ieee80211_mesh_housekeeping(sdata
);
1357 if (test_and_clear_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
))
1358 ieee80211_mesh_rootpath(sdata
);
1360 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST
, &ifmsh
->wrkq_flags
))
1361 mesh_sync_adjust_tbtt(sdata
);
1363 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED
, &ifmsh
->wrkq_flags
))
1364 mesh_bss_info_changed(sdata
);
1366 sdata_unlock(sdata
);
1370 void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data
*sdata
)
1372 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1373 static u8 zero_addr
[ETH_ALEN
] = {};
1375 setup_timer(&ifmsh
->housekeeping_timer
,
1376 ieee80211_mesh_housekeeping_timer
,
1377 (unsigned long) sdata
);
1379 ifmsh
->accepting_plinks
= true;
1380 atomic_set(&ifmsh
->mpaths
, 0);
1381 mesh_rmc_init(sdata
);
1382 ifmsh
->last_preq
= jiffies
;
1383 ifmsh
->next_perr
= jiffies
;
1384 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_NONE
;
1385 /* Allocate all mesh structures when creating the first mesh interface. */
1386 if (!mesh_allocated
)
1389 mesh_pathtbl_init(sdata
);
1391 setup_timer(&ifmsh
->mesh_path_timer
,
1392 ieee80211_mesh_path_timer
,
1393 (unsigned long) sdata
);
1394 setup_timer(&ifmsh
->mesh_path_root_timer
,
1395 ieee80211_mesh_path_root_timer
,
1396 (unsigned long) sdata
);
1397 INIT_LIST_HEAD(&ifmsh
->preq_queue
.list
);
1398 skb_queue_head_init(&ifmsh
->ps
.bc_buf
);
1399 spin_lock_init(&ifmsh
->mesh_preq_queue_lock
);
1400 spin_lock_init(&ifmsh
->sync_offset_lock
);
1401 RCU_INIT_POINTER(ifmsh
->beacon
, NULL
);
1403 sdata
->vif
.bss_conf
.bssid
= zero_addr
;
1406 void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data
*sdata
)
1408 mesh_rmc_free(sdata
);
1409 mesh_pathtbl_unregister(sdata
);