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
;
151 u32 changed
= mesh_plink_deactivate(sta
);
154 ieee80211_mbss_info_change_notify(sdata
, changed
);
157 int mesh_rmc_init(struct ieee80211_sub_if_data
*sdata
)
161 sdata
->u
.mesh
.rmc
= kmalloc(sizeof(struct mesh_rmc
), GFP_KERNEL
);
162 if (!sdata
->u
.mesh
.rmc
)
164 sdata
->u
.mesh
.rmc
->idx_mask
= RMC_BUCKETS
- 1;
165 for (i
= 0; i
< RMC_BUCKETS
; i
++)
166 INIT_HLIST_HEAD(&sdata
->u
.mesh
.rmc
->bucket
[i
]);
170 void mesh_rmc_free(struct ieee80211_sub_if_data
*sdata
)
172 struct mesh_rmc
*rmc
= sdata
->u
.mesh
.rmc
;
174 struct hlist_node
*n
;
177 if (!sdata
->u
.mesh
.rmc
)
180 for (i
= 0; i
< RMC_BUCKETS
; i
++) {
181 hlist_for_each_entry_safe(p
, n
, &rmc
->bucket
[i
], list
) {
183 kmem_cache_free(rm_cache
, p
);
188 sdata
->u
.mesh
.rmc
= NULL
;
192 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
195 * @sa: source address
196 * @mesh_hdr: mesh_header
198 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
200 * Checks using the source address and the mesh sequence number if we have
201 * received this frame lately. If the frame is not in the cache, it is added to
204 int mesh_rmc_check(struct ieee80211_sub_if_data
*sdata
,
205 const u8
*sa
, struct ieee80211s_hdr
*mesh_hdr
)
207 struct mesh_rmc
*rmc
= sdata
->u
.mesh
.rmc
;
212 struct hlist_node
*n
;
217 /* Don't care about endianness since only match matters */
218 memcpy(&seqnum
, &mesh_hdr
->seqnum
, sizeof(mesh_hdr
->seqnum
));
219 idx
= le32_to_cpu(mesh_hdr
->seqnum
) & rmc
->idx_mask
;
220 hlist_for_each_entry_safe(p
, n
, &rmc
->bucket
[idx
], list
) {
222 if (time_after(jiffies
, p
->exp_time
) ||
223 entries
== RMC_QUEUE_MAX_LEN
) {
225 kmem_cache_free(rm_cache
, p
);
227 } else if ((seqnum
== p
->seqnum
) && ether_addr_equal(sa
, p
->sa
))
231 p
= kmem_cache_alloc(rm_cache
, GFP_ATOMIC
);
236 p
->exp_time
= jiffies
+ RMC_TIMEOUT
;
237 memcpy(p
->sa
, sa
, ETH_ALEN
);
238 hlist_add_head(&p
->list
, &rmc
->bucket
[idx
]);
242 int mesh_add_meshconf_ie(struct ieee80211_sub_if_data
*sdata
,
245 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
247 u8 meshconf_len
= sizeof(struct ieee80211_meshconf_ie
);
249 if (skb_tailroom(skb
) < 2 + meshconf_len
)
252 pos
= skb_put(skb
, 2 + meshconf_len
);
253 *pos
++ = WLAN_EID_MESH_CONFIG
;
254 *pos
++ = meshconf_len
;
256 /* save a pointer for quick updates in pre-tbtt */
257 ifmsh
->meshconf_offset
= pos
- skb
->data
;
259 /* Active path selection protocol ID */
260 *pos
++ = ifmsh
->mesh_pp_id
;
261 /* Active path selection metric ID */
262 *pos
++ = ifmsh
->mesh_pm_id
;
263 /* Congestion control mode identifier */
264 *pos
++ = ifmsh
->mesh_cc_id
;
265 /* Synchronization protocol identifier */
266 *pos
++ = ifmsh
->mesh_sp_id
;
267 /* Authentication Protocol identifier */
268 *pos
++ = ifmsh
->mesh_auth_id
;
269 /* Mesh Formation Info - number of neighbors */
270 neighbors
= atomic_read(&ifmsh
->estab_plinks
);
271 neighbors
= min_t(int, neighbors
, IEEE80211_MAX_MESH_PEERINGS
);
272 *pos
++ = neighbors
<< 1;
273 /* Mesh capability */
275 *pos
|= ifmsh
->mshcfg
.dot11MeshForwarding
?
276 IEEE80211_MESHCONF_CAPAB_FORWARDING
: 0x00;
277 *pos
|= ifmsh
->accepting_plinks
?
278 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS
: 0x00;
279 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
280 *pos
|= ifmsh
->ps_peers_deep_sleep
?
281 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL
: 0x00;
285 int mesh_add_meshid_ie(struct ieee80211_sub_if_data
*sdata
, struct sk_buff
*skb
)
287 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
290 if (skb_tailroom(skb
) < 2 + ifmsh
->mesh_id_len
)
293 pos
= skb_put(skb
, 2 + ifmsh
->mesh_id_len
);
294 *pos
++ = WLAN_EID_MESH_ID
;
295 *pos
++ = ifmsh
->mesh_id_len
;
296 if (ifmsh
->mesh_id_len
)
297 memcpy(pos
, ifmsh
->mesh_id
, ifmsh
->mesh_id_len
);
302 static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data
*sdata
,
305 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
308 /* see IEEE802.11-2012 13.14.6 */
309 if (ifmsh
->ps_peers_light_sleep
== 0 &&
310 ifmsh
->ps_peers_deep_sleep
== 0 &&
311 ifmsh
->nonpeer_pm
== NL80211_MESH_POWER_ACTIVE
)
314 if (skb_tailroom(skb
) < 4)
317 pos
= skb_put(skb
, 2 + 2);
318 *pos
++ = WLAN_EID_MESH_AWAKE_WINDOW
;
320 put_unaligned_le16(ifmsh
->mshcfg
.dot11MeshAwakeWindowDuration
, pos
);
325 int mesh_add_vendor_ies(struct ieee80211_sub_if_data
*sdata
,
328 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
332 if (!ifmsh
->ie
|| !ifmsh
->ie_len
)
335 /* fast-forward to vendor IEs */
336 offset
= ieee80211_ie_split_vendor(ifmsh
->ie
, ifmsh
->ie_len
, 0);
338 if (offset
< ifmsh
->ie_len
) {
339 len
= ifmsh
->ie_len
- offset
;
340 data
= ifmsh
->ie
+ offset
;
341 if (skb_tailroom(skb
) < len
)
343 memcpy(skb_put(skb
, len
), data
, len
);
349 int mesh_add_rsn_ie(struct ieee80211_sub_if_data
*sdata
, struct sk_buff
*skb
)
351 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
355 if (!ifmsh
->ie
|| !ifmsh
->ie_len
)
359 data
= cfg80211_find_ie(WLAN_EID_RSN
, ifmsh
->ie
, ifmsh
->ie_len
);
365 if (skb_tailroom(skb
) < len
)
367 memcpy(skb_put(skb
, len
), data
, len
);
372 static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data
*sdata
,
375 struct ieee80211_chanctx_conf
*chanctx_conf
;
376 struct ieee80211_channel
*chan
;
379 if (skb_tailroom(skb
) < 3)
383 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
384 if (WARN_ON(!chanctx_conf
)) {
388 chan
= chanctx_conf
->def
.chan
;
391 pos
= skb_put(skb
, 2 + 1);
392 *pos
++ = WLAN_EID_DS_PARAMS
;
394 *pos
++ = ieee80211_frequency_to_channel(chan
->center_freq
);
399 int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data
*sdata
,
402 struct ieee80211_local
*local
= sdata
->local
;
403 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
404 struct ieee80211_supported_band
*sband
;
407 sband
= local
->hw
.wiphy
->bands
[band
];
408 if (!sband
->ht_cap
.ht_supported
||
409 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
410 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
411 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
414 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_ht_cap
))
417 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_ht_cap
));
418 ieee80211_ie_build_ht_cap(pos
, &sband
->ht_cap
, sband
->ht_cap
.cap
);
423 int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data
*sdata
,
426 struct ieee80211_local
*local
= sdata
->local
;
427 struct ieee80211_chanctx_conf
*chanctx_conf
;
428 struct ieee80211_channel
*channel
;
429 struct ieee80211_supported_band
*sband
;
430 struct ieee80211_sta_ht_cap
*ht_cap
;
434 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
435 if (WARN_ON(!chanctx_conf
)) {
439 channel
= chanctx_conf
->def
.chan
;
442 sband
= local
->hw
.wiphy
->bands
[channel
->band
];
443 ht_cap
= &sband
->ht_cap
;
445 if (!ht_cap
->ht_supported
||
446 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
447 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
448 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
451 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_ht_operation
))
454 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_ht_operation
));
455 ieee80211_ie_build_ht_oper(pos
, ht_cap
, &sdata
->vif
.bss_conf
.chandef
,
456 sdata
->vif
.bss_conf
.ht_operation_mode
,
462 int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data
*sdata
,
465 struct ieee80211_local
*local
= sdata
->local
;
466 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
467 struct ieee80211_supported_band
*sband
;
470 sband
= local
->hw
.wiphy
->bands
[band
];
471 if (!sband
->vht_cap
.vht_supported
||
472 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
473 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
474 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
477 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_vht_cap
))
480 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_vht_cap
));
481 ieee80211_ie_build_vht_cap(pos
, &sband
->vht_cap
, sband
->vht_cap
.cap
);
486 int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data
*sdata
,
489 struct ieee80211_local
*local
= sdata
->local
;
490 struct ieee80211_chanctx_conf
*chanctx_conf
;
491 struct ieee80211_channel
*channel
;
492 struct ieee80211_supported_band
*sband
;
493 struct ieee80211_sta_vht_cap
*vht_cap
;
497 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
498 if (WARN_ON(!chanctx_conf
)) {
502 channel
= chanctx_conf
->def
.chan
;
505 sband
= local
->hw
.wiphy
->bands
[channel
->band
];
506 vht_cap
= &sband
->vht_cap
;
508 if (!vht_cap
->vht_supported
||
509 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
||
510 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_5
||
511 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_10
)
514 if (skb_tailroom(skb
) < 2 + sizeof(struct ieee80211_vht_operation
))
517 pos
= skb_put(skb
, 2 + sizeof(struct ieee80211_vht_operation
));
518 ieee80211_ie_build_vht_oper(pos
, vht_cap
,
519 &sdata
->vif
.bss_conf
.chandef
);
524 static void ieee80211_mesh_path_timer(unsigned long data
)
526 struct ieee80211_sub_if_data
*sdata
=
527 (struct ieee80211_sub_if_data
*) data
;
529 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
532 static void ieee80211_mesh_path_root_timer(unsigned long data
)
534 struct ieee80211_sub_if_data
*sdata
=
535 (struct ieee80211_sub_if_data
*) data
;
536 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
538 set_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
);
540 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
543 void ieee80211_mesh_root_setup(struct ieee80211_if_mesh
*ifmsh
)
545 if (ifmsh
->mshcfg
.dot11MeshHWMPRootMode
> IEEE80211_ROOTMODE_ROOT
)
546 set_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
);
548 clear_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
);
549 /* stop running timer */
550 del_timer_sync(&ifmsh
->mesh_path_root_timer
);
555 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
556 * @hdr: 802.11 frame header
557 * @fc: frame control field
558 * @meshda: destination address in the mesh
559 * @meshsa: source address address in the mesh. Same as TA, as frame is
560 * locally originated.
562 * Return the length of the 802.11 (does not include a mesh control header)
564 int ieee80211_fill_mesh_addresses(struct ieee80211_hdr
*hdr
, __le16
*fc
,
565 const u8
*meshda
, const u8
*meshsa
)
567 if (is_multicast_ether_addr(meshda
)) {
568 *fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
);
570 memcpy(hdr
->addr1
, meshda
, ETH_ALEN
);
571 memcpy(hdr
->addr2
, meshsa
, ETH_ALEN
);
572 memcpy(hdr
->addr3
, meshsa
, ETH_ALEN
);
575 *fc
|= cpu_to_le16(IEEE80211_FCTL_FROMDS
| IEEE80211_FCTL_TODS
);
577 eth_zero_addr(hdr
->addr1
); /* RA is resolved later */
578 memcpy(hdr
->addr2
, meshsa
, ETH_ALEN
);
579 memcpy(hdr
->addr3
, meshda
, ETH_ALEN
);
580 memcpy(hdr
->addr4
, meshsa
, ETH_ALEN
);
586 * ieee80211_new_mesh_header - create a new mesh header
587 * @sdata: mesh interface to be used
588 * @meshhdr: uninitialized mesh header
589 * @addr4or5: 1st address in the ae header, which may correspond to address 4
590 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
592 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
595 * Return the header length.
597 unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data
*sdata
,
598 struct ieee80211s_hdr
*meshhdr
,
599 const char *addr4or5
, const char *addr6
)
601 if (WARN_ON(!addr4or5
&& addr6
))
604 memset(meshhdr
, 0, sizeof(*meshhdr
));
606 meshhdr
->ttl
= sdata
->u
.mesh
.mshcfg
.dot11MeshTTL
;
608 /* FIXME: racy -- TX on multiple queues can be concurrent */
609 put_unaligned(cpu_to_le32(sdata
->u
.mesh
.mesh_seqnum
), &meshhdr
->seqnum
);
610 sdata
->u
.mesh
.mesh_seqnum
++;
612 if (addr4or5
&& !addr6
) {
613 meshhdr
->flags
|= MESH_FLAGS_AE_A4
;
614 memcpy(meshhdr
->eaddr1
, addr4or5
, ETH_ALEN
);
616 } else if (addr4or5
&& addr6
) {
617 meshhdr
->flags
|= MESH_FLAGS_AE_A5_A6
;
618 memcpy(meshhdr
->eaddr1
, addr4or5
, ETH_ALEN
);
619 memcpy(meshhdr
->eaddr2
, addr6
, ETH_ALEN
);
626 static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data
*sdata
)
628 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
631 if (ifmsh
->mshcfg
.plink_timeout
> 0)
632 ieee80211_sta_expire(sdata
, ifmsh
->mshcfg
.plink_timeout
* HZ
);
633 mesh_path_expire(sdata
);
635 changed
= mesh_accept_plinks_update(sdata
);
636 ieee80211_mbss_info_change_notify(sdata
, changed
);
638 mod_timer(&ifmsh
->housekeeping_timer
,
639 round_jiffies(jiffies
+
640 IEEE80211_MESH_HOUSEKEEPING_INTERVAL
));
643 static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data
*sdata
)
645 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
648 mesh_path_tx_root_frame(sdata
);
650 if (ifmsh
->mshcfg
.dot11MeshHWMPRootMode
== IEEE80211_PROACTIVE_RANN
)
651 interval
= ifmsh
->mshcfg
.dot11MeshHWMPRannInterval
;
653 interval
= ifmsh
->mshcfg
.dot11MeshHWMProotInterval
;
655 mod_timer(&ifmsh
->mesh_path_root_timer
,
656 round_jiffies(TU_TO_EXP_TIME(interval
)));
660 ieee80211_mesh_build_beacon(struct ieee80211_if_mesh
*ifmsh
)
662 struct beacon_data
*bcn
;
663 int head_len
, tail_len
;
665 struct ieee80211_mgmt
*mgmt
;
666 struct ieee80211_chanctx_conf
*chanctx_conf
;
667 struct mesh_csa_settings
*csa
;
668 enum nl80211_band band
;
670 struct ieee80211_sub_if_data
*sdata
;
671 int hdr_len
= offsetof(struct ieee80211_mgmt
, u
.beacon
) +
672 sizeof(mgmt
->u
.beacon
);
674 sdata
= container_of(ifmsh
, struct ieee80211_sub_if_data
, u
.mesh
);
676 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
677 band
= chanctx_conf
->def
.chan
->band
;
682 /* Channel Switch Announcement */
683 2 + sizeof(struct ieee80211_channel_sw_ie
) +
684 /* Mesh Channel Switch Parameters */
685 2 + sizeof(struct ieee80211_mesh_chansw_params_ie
) +
686 2 + 8 + /* supported rates */
687 2 + 3; /* DS params */
688 tail_len
= 2 + (IEEE80211_MAX_SUPP_RATES
- 8) +
689 2 + sizeof(struct ieee80211_ht_cap
) +
690 2 + sizeof(struct ieee80211_ht_operation
) +
691 2 + ifmsh
->mesh_id_len
+
692 2 + sizeof(struct ieee80211_meshconf_ie
) +
693 2 + sizeof(__le16
) + /* awake window */
694 2 + sizeof(struct ieee80211_vht_cap
) +
695 2 + sizeof(struct ieee80211_vht_operation
) +
698 bcn
= kzalloc(sizeof(*bcn
) + head_len
+ tail_len
, GFP_KERNEL
);
699 /* need an skb for IE builders to operate on */
700 skb
= dev_alloc_skb(max(head_len
, tail_len
));
706 * pointers go into the block we allocated,
707 * memory is | beacon_data | head | tail |
709 bcn
->head
= ((u8
*) bcn
) + sizeof(*bcn
);
711 /* fill in the head */
712 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, hdr_len
);
713 memset(mgmt
, 0, hdr_len
);
714 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
715 IEEE80211_STYPE_BEACON
);
716 eth_broadcast_addr(mgmt
->da
);
717 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
718 memcpy(mgmt
->bssid
, sdata
->vif
.addr
, ETH_ALEN
);
719 ieee80211_mps_set_frame_flags(sdata
, NULL
, (void *) mgmt
);
720 mgmt
->u
.beacon
.beacon_int
=
721 cpu_to_le16(sdata
->vif
.bss_conf
.beacon_int
);
722 mgmt
->u
.beacon
.capab_info
|= cpu_to_le16(
723 sdata
->u
.mesh
.security
? WLAN_CAPABILITY_PRIVACY
: 0);
725 pos
= skb_put(skb
, 2);
726 *pos
++ = WLAN_EID_SSID
;
730 csa
= rcu_dereference(ifmsh
->csa
);
732 pos
= skb_put(skb
, 13);
734 *pos
++ = WLAN_EID_CHANNEL_SWITCH
;
737 *pos
++ = ieee80211_frequency_to_channel(
738 csa
->settings
.chandef
.chan
->center_freq
);
739 bcn
->csa_current_counter
= csa
->settings
.count
;
740 bcn
->csa_counter_offsets
[0] = hdr_len
+ 6;
741 *pos
++ = csa
->settings
.count
;
742 *pos
++ = WLAN_EID_CHAN_SWITCH_PARAM
;
744 if (ifmsh
->csa_role
== IEEE80211_MESH_CSA_ROLE_INIT
) {
745 *pos
++ = ifmsh
->mshcfg
.dot11MeshTTL
;
746 *pos
|= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR
;
748 *pos
++ = ifmsh
->chsw_ttl
;
750 *pos
++ |= csa
->settings
.block_tx
?
751 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT
: 0x00;
752 put_unaligned_le16(WLAN_REASON_MESH_CHAN
, pos
);
754 put_unaligned_le16(ifmsh
->pre_value
, pos
);
759 if (ieee80211_add_srates_ie(sdata
, skb
, true, band
) ||
760 mesh_add_ds_params_ie(sdata
, skb
))
763 bcn
->head_len
= skb
->len
;
764 memcpy(bcn
->head
, skb
->data
, bcn
->head_len
);
768 bcn
->tail
= bcn
->head
+ bcn
->head_len
;
770 if (ieee80211_add_ext_srates_ie(sdata
, skb
, true, band
) ||
771 mesh_add_rsn_ie(sdata
, skb
) ||
772 mesh_add_ht_cap_ie(sdata
, skb
) ||
773 mesh_add_ht_oper_ie(sdata
, skb
) ||
774 mesh_add_meshid_ie(sdata
, skb
) ||
775 mesh_add_meshconf_ie(sdata
, skb
) ||
776 mesh_add_awake_window_ie(sdata
, skb
) ||
777 mesh_add_vht_cap_ie(sdata
, skb
) ||
778 mesh_add_vht_oper_ie(sdata
, skb
) ||
779 mesh_add_vendor_ies(sdata
, skb
))
782 bcn
->tail_len
= skb
->len
;
783 memcpy(bcn
->tail
, skb
->data
, bcn
->tail_len
);
784 bcn
->meshconf
= (struct ieee80211_meshconf_ie
*)
785 (bcn
->tail
+ ifmsh
->meshconf_offset
);
788 rcu_assign_pointer(ifmsh
->beacon
, bcn
);
797 ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data
*sdata
)
799 struct beacon_data
*old_bcn
;
802 old_bcn
= rcu_dereference_protected(sdata
->u
.mesh
.beacon
,
803 lockdep_is_held(&sdata
->wdev
.mtx
));
804 ret
= ieee80211_mesh_build_beacon(&sdata
->u
.mesh
);
806 /* just reuse old beacon */
810 kfree_rcu(old_bcn
, rcu_head
);
814 void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data
*sdata
,
817 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
818 unsigned long bits
= changed
;
824 /* if we race with running work, worst case this work becomes a noop */
825 for_each_set_bit(bit
, &bits
, sizeof(changed
) * BITS_PER_BYTE
)
826 set_bit(bit
, &ifmsh
->mbss_changed
);
827 set_bit(MESH_WORK_MBSS_CHANGED
, &ifmsh
->wrkq_flags
);
828 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
831 int ieee80211_start_mesh(struct ieee80211_sub_if_data
*sdata
)
833 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
834 struct ieee80211_local
*local
= sdata
->local
;
835 u32 changed
= BSS_CHANGED_BEACON
|
836 BSS_CHANGED_BEACON_ENABLED
|
838 BSS_CHANGED_BASIC_RATES
|
839 BSS_CHANGED_BEACON_INT
;
841 local
->fif_other_bss
++;
842 /* mesh ifaces must set allmulti to forward mcast traffic */
843 atomic_inc(&local
->iff_allmultis
);
844 ieee80211_configure_filter(local
);
846 ifmsh
->mesh_cc_id
= 0; /* Disabled */
847 /* register sync ops from extensible synchronization framework */
848 ifmsh
->sync_ops
= ieee80211_mesh_sync_ops_get(ifmsh
->mesh_sp_id
);
849 ifmsh
->sync_offset_clockdrift_max
= 0;
850 set_bit(MESH_WORK_HOUSEKEEPING
, &ifmsh
->wrkq_flags
);
851 ieee80211_mesh_root_setup(ifmsh
);
852 ieee80211_queue_work(&local
->hw
, &sdata
->work
);
853 sdata
->vif
.bss_conf
.ht_operation_mode
=
854 ifmsh
->mshcfg
.ht_opmode
;
855 sdata
->vif
.bss_conf
.enable_beacon
= true;
857 changed
|= ieee80211_mps_local_status_update(sdata
);
859 if (ieee80211_mesh_build_beacon(ifmsh
)) {
860 ieee80211_stop_mesh(sdata
);
864 ieee80211_recalc_dtim(local
, sdata
);
865 ieee80211_bss_info_change_notify(sdata
, changed
);
867 netif_carrier_on(sdata
->dev
);
871 void ieee80211_stop_mesh(struct ieee80211_sub_if_data
*sdata
)
873 struct ieee80211_local
*local
= sdata
->local
;
874 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
875 struct beacon_data
*bcn
;
877 netif_carrier_off(sdata
->dev
);
879 /* flush STAs and mpaths on this iface */
880 sta_info_flush(sdata
);
881 mesh_path_flush_by_iface(sdata
);
883 /* stop the beacon */
884 ifmsh
->mesh_id_len
= 0;
885 sdata
->vif
.bss_conf
.enable_beacon
= false;
886 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED
, &sdata
->state
);
887 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
);
890 bcn
= rcu_dereference_protected(ifmsh
->beacon
,
891 lockdep_is_held(&sdata
->wdev
.mtx
));
892 RCU_INIT_POINTER(ifmsh
->beacon
, NULL
);
893 kfree_rcu(bcn
, rcu_head
);
895 /* free all potentially still buffered group-addressed frames */
896 local
->total_ps_buffered
-= skb_queue_len(&ifmsh
->ps
.bc_buf
);
897 skb_queue_purge(&ifmsh
->ps
.bc_buf
);
899 del_timer_sync(&sdata
->u
.mesh
.housekeeping_timer
);
900 del_timer_sync(&sdata
->u
.mesh
.mesh_path_root_timer
);
901 del_timer_sync(&sdata
->u
.mesh
.mesh_path_timer
);
903 /* clear any mesh work (for next join) we may have accrued */
904 ifmsh
->wrkq_flags
= 0;
905 ifmsh
->mbss_changed
= 0;
907 local
->fif_other_bss
--;
908 atomic_dec(&local
->iff_allmultis
);
909 ieee80211_configure_filter(local
);
913 ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data
*sdata
,
914 struct ieee802_11_elems
*elems
, bool beacon
)
916 struct cfg80211_csa_settings params
;
917 struct ieee80211_csa_ie csa_ie
;
918 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
919 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
923 sdata_assert_lock(sdata
);
925 sta_flags
= IEEE80211_STA_DISABLE_VHT
;
926 switch (sdata
->vif
.bss_conf
.chandef
.width
) {
927 case NL80211_CHAN_WIDTH_20_NOHT
:
928 sta_flags
|= IEEE80211_STA_DISABLE_HT
;
929 case NL80211_CHAN_WIDTH_20
:
930 sta_flags
|= IEEE80211_STA_DISABLE_40MHZ
;
936 memset(¶ms
, 0, sizeof(params
));
937 memset(&csa_ie
, 0, sizeof(csa_ie
));
938 err
= ieee80211_parse_ch_switch_ie(sdata
, elems
, band
,
939 sta_flags
, sdata
->vif
.addr
,
946 params
.chandef
= csa_ie
.chandef
;
947 params
.count
= csa_ie
.count
;
949 if (!cfg80211_chandef_usable(sdata
->local
->hw
.wiphy
, ¶ms
.chandef
,
950 IEEE80211_CHAN_DISABLED
)) {
952 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
954 params
.chandef
.chan
->center_freq
,
955 params
.chandef
.width
,
956 params
.chandef
.center_freq1
,
957 params
.chandef
.center_freq2
);
961 err
= cfg80211_chandef_dfs_required(sdata
->local
->hw
.wiphy
,
963 NL80211_IFTYPE_MESH_POINT
);
967 /* TODO: DFS not (yet) supported */
970 params
.radar_required
= err
;
972 if (cfg80211_chandef_identical(¶ms
.chandef
,
973 &sdata
->vif
.bss_conf
.chandef
)) {
975 "received csa with an identical chandef, ignoring\n");
980 "received channel switch announcement to go to channel %d MHz\n",
981 params
.chandef
.chan
->center_freq
);
983 params
.block_tx
= csa_ie
.mode
& WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT
;
985 ifmsh
->chsw_ttl
= csa_ie
.ttl
- 1;
986 if (ifmsh
->pre_value
>= csa_ie
.pre_value
)
988 ifmsh
->pre_value
= csa_ie
.pre_value
;
991 if (ifmsh
->chsw_ttl
>= ifmsh
->mshcfg
.dot11MeshTTL
)
994 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_REPEATER
;
996 if (ieee80211_channel_switch(sdata
->local
->hw
.wiphy
, sdata
->dev
,
1004 ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data
*sdata
,
1005 struct ieee80211_mgmt
*mgmt
, size_t len
)
1007 struct ieee80211_local
*local
= sdata
->local
;
1008 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1009 struct sk_buff
*presp
;
1010 struct beacon_data
*bcn
;
1011 struct ieee80211_mgmt
*hdr
;
1012 struct ieee802_11_elems elems
;
1016 pos
= mgmt
->u
.probe_req
.variable
;
1017 baselen
= (u8
*) pos
- (u8
*) mgmt
;
1021 ieee802_11_parse_elems(pos
, len
- baselen
, false, &elems
);
1026 /* 802.11-2012 10.1.4.3.2 */
1027 if ((!ether_addr_equal(mgmt
->da
, sdata
->vif
.addr
) &&
1028 !is_broadcast_ether_addr(mgmt
->da
)) ||
1029 elems
.ssid_len
!= 0)
1032 if (elems
.mesh_id_len
!= 0 &&
1033 (elems
.mesh_id_len
!= ifmsh
->mesh_id_len
||
1034 memcmp(elems
.mesh_id
, ifmsh
->mesh_id
, ifmsh
->mesh_id_len
)))
1038 bcn
= rcu_dereference(ifmsh
->beacon
);
1043 presp
= dev_alloc_skb(local
->tx_headroom
+
1044 bcn
->head_len
+ bcn
->tail_len
);
1048 skb_reserve(presp
, local
->tx_headroom
);
1049 memcpy(skb_put(presp
, bcn
->head_len
), bcn
->head
, bcn
->head_len
);
1050 memcpy(skb_put(presp
, bcn
->tail_len
), bcn
->tail
, bcn
->tail_len
);
1051 hdr
= (struct ieee80211_mgmt
*) presp
->data
;
1052 hdr
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
1053 IEEE80211_STYPE_PROBE_RESP
);
1054 memcpy(hdr
->da
, mgmt
->sa
, ETH_ALEN
);
1055 IEEE80211_SKB_CB(presp
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
1056 ieee80211_tx_skb(sdata
, presp
);
1061 static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data
*sdata
,
1063 struct ieee80211_mgmt
*mgmt
,
1065 struct ieee80211_rx_status
*rx_status
)
1067 struct ieee80211_local
*local
= sdata
->local
;
1068 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1069 struct ieee802_11_elems elems
;
1070 struct ieee80211_channel
*channel
;
1073 enum nl80211_band band
= rx_status
->band
;
1075 /* ignore ProbeResp to foreign address */
1076 if (stype
== IEEE80211_STYPE_PROBE_RESP
&&
1077 !ether_addr_equal(mgmt
->da
, sdata
->vif
.addr
))
1080 baselen
= (u8
*) mgmt
->u
.probe_resp
.variable
- (u8
*) mgmt
;
1084 ieee802_11_parse_elems(mgmt
->u
.probe_resp
.variable
, len
- baselen
,
1087 /* ignore non-mesh or secure / unsecure mismatch */
1088 if ((!elems
.mesh_id
|| !elems
.mesh_config
) ||
1089 (elems
.rsn
&& sdata
->u
.mesh
.security
== IEEE80211_MESH_SEC_NONE
) ||
1090 (!elems
.rsn
&& sdata
->u
.mesh
.security
!= IEEE80211_MESH_SEC_NONE
))
1093 if (elems
.ds_params
)
1094 freq
= ieee80211_channel_to_frequency(elems
.ds_params
[0], band
);
1096 freq
= rx_status
->freq
;
1098 channel
= ieee80211_get_channel(local
->hw
.wiphy
, freq
);
1100 if (!channel
|| channel
->flags
& IEEE80211_CHAN_DISABLED
)
1103 if (mesh_matches_local(sdata
, &elems
))
1104 mesh_neighbour_update(sdata
, mgmt
->sa
, &elems
);
1106 if (ifmsh
->sync_ops
)
1107 ifmsh
->sync_ops
->rx_bcn_presp(sdata
,
1108 stype
, mgmt
, &elems
, rx_status
);
1110 if (ifmsh
->csa_role
!= IEEE80211_MESH_CSA_ROLE_INIT
&&
1111 !sdata
->vif
.csa_active
)
1112 ieee80211_mesh_process_chnswitch(sdata
, &elems
, true);
1115 int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data
*sdata
)
1117 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1118 struct mesh_csa_settings
*tmp_csa_settings
;
1122 /* Reset the TTL value and Initiator flag */
1123 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_NONE
;
1124 ifmsh
->chsw_ttl
= 0;
1126 /* Remove the CSA and MCSP elements from the beacon */
1127 tmp_csa_settings
= rcu_dereference(ifmsh
->csa
);
1128 RCU_INIT_POINTER(ifmsh
->csa
, NULL
);
1129 if (tmp_csa_settings
)
1130 kfree_rcu(tmp_csa_settings
, rcu_head
);
1131 ret
= ieee80211_mesh_rebuild_beacon(sdata
);
1135 changed
|= BSS_CHANGED_BEACON
;
1137 mcsa_dbg(sdata
, "complete switching to center freq %d MHz",
1138 sdata
->vif
.bss_conf
.chandef
.chan
->center_freq
);
1142 int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data
*sdata
,
1143 struct cfg80211_csa_settings
*csa_settings
)
1145 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1146 struct mesh_csa_settings
*tmp_csa_settings
;
1149 tmp_csa_settings
= kmalloc(sizeof(*tmp_csa_settings
),
1151 if (!tmp_csa_settings
)
1154 memcpy(&tmp_csa_settings
->settings
, csa_settings
,
1155 sizeof(struct cfg80211_csa_settings
));
1157 rcu_assign_pointer(ifmsh
->csa
, tmp_csa_settings
);
1159 ret
= ieee80211_mesh_rebuild_beacon(sdata
);
1161 tmp_csa_settings
= rcu_dereference(ifmsh
->csa
);
1162 RCU_INIT_POINTER(ifmsh
->csa
, NULL
);
1163 kfree_rcu(tmp_csa_settings
, rcu_head
);
1167 return BSS_CHANGED_BEACON
;
1170 static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data
*sdata
,
1171 struct ieee80211_mgmt
*mgmt
, size_t len
)
1173 struct ieee80211_mgmt
*mgmt_fwd
;
1174 struct sk_buff
*skb
;
1175 struct ieee80211_local
*local
= sdata
->local
;
1176 u8
*pos
= mgmt
->u
.action
.u
.chan_switch
.variable
;
1179 skb
= dev_alloc_skb(local
->tx_headroom
+ len
);
1182 skb_reserve(skb
, local
->tx_headroom
);
1183 mgmt_fwd
= (struct ieee80211_mgmt
*) skb_put(skb
, len
);
1185 /* offset_ttl is based on whether the secondary channel
1186 * offset is available or not. Subtract 1 from the mesh TTL
1187 * and disable the initiator flag before forwarding.
1189 offset_ttl
= (len
< 42) ? 7 : 10;
1190 *(pos
+ offset_ttl
) -= 1;
1191 *(pos
+ offset_ttl
+ 1) &= ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR
;
1193 memcpy(mgmt_fwd
, mgmt
, len
);
1194 eth_broadcast_addr(mgmt_fwd
->da
);
1195 memcpy(mgmt_fwd
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
1196 memcpy(mgmt_fwd
->bssid
, sdata
->vif
.addr
, ETH_ALEN
);
1198 ieee80211_tx_skb(sdata
, skb
);
1202 static void mesh_rx_csa_frame(struct ieee80211_sub_if_data
*sdata
,
1203 struct ieee80211_mgmt
*mgmt
, size_t len
)
1205 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1206 struct ieee802_11_elems elems
;
1208 bool fwd_csa
= true;
1212 if (mgmt
->u
.action
.u
.measurement
.action_code
!=
1213 WLAN_ACTION_SPCT_CHL_SWITCH
)
1216 pos
= mgmt
->u
.action
.u
.chan_switch
.variable
;
1217 baselen
= offsetof(struct ieee80211_mgmt
,
1218 u
.action
.u
.chan_switch
.variable
);
1219 ieee802_11_parse_elems(pos
, len
- baselen
, false, &elems
);
1221 ifmsh
->chsw_ttl
= elems
.mesh_chansw_params_ie
->mesh_ttl
;
1222 if (!--ifmsh
->chsw_ttl
)
1225 pre_value
= le16_to_cpu(elems
.mesh_chansw_params_ie
->mesh_pre_value
);
1226 if (ifmsh
->pre_value
>= pre_value
)
1229 ifmsh
->pre_value
= pre_value
;
1231 if (!sdata
->vif
.csa_active
&&
1232 !ieee80211_mesh_process_chnswitch(sdata
, &elems
, false)) {
1233 mcsa_dbg(sdata
, "Failed to process CSA action frame");
1237 /* forward or re-broadcast the CSA frame */
1239 if (mesh_fwd_csa_frame(sdata
, mgmt
, len
) < 0)
1240 mcsa_dbg(sdata
, "Failed to forward the CSA frame");
1244 static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data
*sdata
,
1245 struct ieee80211_mgmt
*mgmt
,
1247 struct ieee80211_rx_status
*rx_status
)
1249 switch (mgmt
->u
.action
.category
) {
1250 case WLAN_CATEGORY_SELF_PROTECTED
:
1251 switch (mgmt
->u
.action
.u
.self_prot
.action_code
) {
1252 case WLAN_SP_MESH_PEERING_OPEN
:
1253 case WLAN_SP_MESH_PEERING_CLOSE
:
1254 case WLAN_SP_MESH_PEERING_CONFIRM
:
1255 mesh_rx_plink_frame(sdata
, mgmt
, len
, rx_status
);
1259 case WLAN_CATEGORY_MESH_ACTION
:
1260 if (mesh_action_is_path_sel(mgmt
))
1261 mesh_rx_path_sel_frame(sdata
, mgmt
, len
);
1263 case WLAN_CATEGORY_SPECTRUM_MGMT
:
1264 mesh_rx_csa_frame(sdata
, mgmt
, len
);
1269 void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data
*sdata
,
1270 struct sk_buff
*skb
)
1272 struct ieee80211_rx_status
*rx_status
;
1273 struct ieee80211_mgmt
*mgmt
;
1278 /* mesh already went down */
1279 if (!sdata
->u
.mesh
.mesh_id_len
)
1282 rx_status
= IEEE80211_SKB_RXCB(skb
);
1283 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
1284 stype
= le16_to_cpu(mgmt
->frame_control
) & IEEE80211_FCTL_STYPE
;
1287 case IEEE80211_STYPE_PROBE_RESP
:
1288 case IEEE80211_STYPE_BEACON
:
1289 ieee80211_mesh_rx_bcn_presp(sdata
, stype
, mgmt
, skb
->len
,
1292 case IEEE80211_STYPE_PROBE_REQ
:
1293 ieee80211_mesh_rx_probe_req(sdata
, mgmt
, skb
->len
);
1295 case IEEE80211_STYPE_ACTION
:
1296 ieee80211_mesh_rx_mgmt_action(sdata
, mgmt
, skb
->len
, rx_status
);
1300 sdata_unlock(sdata
);
1303 static void mesh_bss_info_changed(struct ieee80211_sub_if_data
*sdata
)
1305 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1306 u32 bit
, changed
= 0;
1308 for_each_set_bit(bit
, &ifmsh
->mbss_changed
,
1309 sizeof(changed
) * BITS_PER_BYTE
) {
1310 clear_bit(bit
, &ifmsh
->mbss_changed
);
1311 changed
|= BIT(bit
);
1314 if (sdata
->vif
.bss_conf
.enable_beacon
&&
1315 (changed
& (BSS_CHANGED_BEACON
|
1317 BSS_CHANGED_BASIC_RATES
|
1318 BSS_CHANGED_BEACON_INT
)))
1319 if (ieee80211_mesh_rebuild_beacon(sdata
))
1322 ieee80211_bss_info_change_notify(sdata
, changed
);
1325 void ieee80211_mesh_work(struct ieee80211_sub_if_data
*sdata
)
1327 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1331 /* mesh already went down */
1332 if (!sdata
->u
.mesh
.mesh_id_len
)
1335 if (ifmsh
->preq_queue_len
&&
1337 ifmsh
->last_preq
+ msecs_to_jiffies(ifmsh
->mshcfg
.dot11MeshHWMPpreqMinInterval
)))
1338 mesh_path_start_discovery(sdata
);
1340 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING
, &ifmsh
->wrkq_flags
))
1341 ieee80211_mesh_housekeeping(sdata
);
1343 if (test_and_clear_bit(MESH_WORK_ROOT
, &ifmsh
->wrkq_flags
))
1344 ieee80211_mesh_rootpath(sdata
);
1346 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST
, &ifmsh
->wrkq_flags
))
1347 mesh_sync_adjust_tsf(sdata
);
1349 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED
, &ifmsh
->wrkq_flags
))
1350 mesh_bss_info_changed(sdata
);
1352 sdata_unlock(sdata
);
1356 void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data
*sdata
)
1358 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1359 static u8 zero_addr
[ETH_ALEN
] = {};
1361 setup_timer(&ifmsh
->housekeeping_timer
,
1362 ieee80211_mesh_housekeeping_timer
,
1363 (unsigned long) sdata
);
1365 ifmsh
->accepting_plinks
= true;
1366 atomic_set(&ifmsh
->mpaths
, 0);
1367 mesh_rmc_init(sdata
);
1368 ifmsh
->last_preq
= jiffies
;
1369 ifmsh
->next_perr
= jiffies
;
1370 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_NONE
;
1371 /* Allocate all mesh structures when creating the first mesh interface. */
1372 if (!mesh_allocated
)
1375 mesh_pathtbl_init(sdata
);
1377 setup_timer(&ifmsh
->mesh_path_timer
,
1378 ieee80211_mesh_path_timer
,
1379 (unsigned long) sdata
);
1380 setup_timer(&ifmsh
->mesh_path_root_timer
,
1381 ieee80211_mesh_path_root_timer
,
1382 (unsigned long) sdata
);
1383 INIT_LIST_HEAD(&ifmsh
->preq_queue
.list
);
1384 skb_queue_head_init(&ifmsh
->ps
.bc_buf
);
1385 spin_lock_init(&ifmsh
->mesh_preq_queue_lock
);
1386 spin_lock_init(&ifmsh
->sync_offset_lock
);
1387 RCU_INIT_POINTER(ifmsh
->beacon
, NULL
);
1389 sdata
->vif
.bss_conf
.bssid
= zero_addr
;
1392 void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data
*sdata
)
1394 mesh_rmc_free(sdata
);
1395 mesh_pathtbl_unregister(sdata
);