2 * Copyright (c) 2008, 2009 open80211s Ltd.
3 * Copyright (C) 2018 - 2019 Intel Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/slab.h>
13 #include <asm/unaligned.h>
14 #include "ieee80211_i.h"
16 #include "driver-ops.h"
18 static int mesh_allocated;
19 static struct kmem_cache *rm_cache;
21 bool mesh_action_is_path_sel(struct ieee80211_mgmt *mgmt)
23 return (mgmt->u.action.u.mesh_action.action_code ==
24 WLAN_MESH_ACTION_HWMP_PATH_SELECTION);
27 void ieee80211s_init(void)
30 rm_cache = kmem_cache_create("mesh_rmc", sizeof(struct rmc_entry),
34 void ieee80211s_stop(void)
38 kmem_cache_destroy(rm_cache);
41 static void ieee80211_mesh_housekeeping_timer(struct timer_list *t)
43 struct ieee80211_sub_if_data *sdata =
44 from_timer(sdata, t, u.mesh.housekeeping_timer);
45 struct ieee80211_local *local = sdata->local;
46 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
48 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
50 ieee80211_queue_work(&local->hw, &sdata->work);
54 * mesh_matches_local - check if the config of a mesh point matches ours
56 * @sdata: local mesh subif
57 * @ie: information elements of a management frame from the mesh peer
59 * This function checks if the mesh configuration of a mesh point matches the
60 * local mesh configuration, i.e. if both nodes belong to the same mesh network.
62 bool mesh_matches_local(struct ieee80211_sub_if_data *sdata,
63 struct ieee802_11_elems *ie)
65 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
67 struct cfg80211_chan_def sta_chan_def;
68 struct ieee80211_supported_band *sband;
71 * As support for each feature is added, check for matching
72 * - On mesh config capabilities
73 * - Power Save Support En
74 * - Sync support enabled
75 * - Sync support active
76 * - Sync support required from peer
78 * - Power management control on fc
80 if (!(ifmsh->mesh_id_len == ie->mesh_id_len &&
81 memcmp(ifmsh->mesh_id, ie->mesh_id, ie->mesh_id_len) == 0 &&
82 (ifmsh->mesh_pp_id == ie->mesh_config->meshconf_psel) &&
83 (ifmsh->mesh_pm_id == ie->mesh_config->meshconf_pmetric) &&
84 (ifmsh->mesh_cc_id == ie->mesh_config->meshconf_congest) &&
85 (ifmsh->mesh_sp_id == ie->mesh_config->meshconf_synch) &&
86 (ifmsh->mesh_auth_id == ie->mesh_config->meshconf_auth)))
89 sband = ieee80211_get_sband(sdata);
93 ieee80211_sta_get_rates(sdata, ie, sband->band,
96 if (sdata->vif.bss_conf.basic_rates != basic_rates)
99 cfg80211_chandef_create(&sta_chan_def, sdata->vif.bss_conf.chandef.chan,
101 ieee80211_chandef_ht_oper(ie->ht_operation, &sta_chan_def);
102 ieee80211_chandef_vht_oper(&sdata->local->hw,
103 ie->vht_operation, ie->ht_operation,
106 if (!cfg80211_chandef_compatible(&sdata->vif.bss_conf.chandef,
114 * mesh_peer_accepts_plinks - check if an mp is willing to establish peer links
116 * @ie: information elements of a management frame from the mesh peer
118 bool mesh_peer_accepts_plinks(struct ieee802_11_elems *ie)
120 return (ie->mesh_config->meshconf_cap &
121 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS) != 0;
125 * mesh_accept_plinks_update - update accepting_plink in local mesh beacons
127 * @sdata: mesh interface in which mesh beacons are going to be updated
129 * Returns: beacon changed flag if the beacon content changed.
131 u32 mesh_accept_plinks_update(struct ieee80211_sub_if_data *sdata)
136 /* In case mesh_plink_free_count > 0 and mesh_plinktbl_capacity == 0,
137 * the mesh interface might be able to establish plinks with peers that
138 * are already on the table but are not on PLINK_ESTAB state. However,
139 * in general the mesh interface is not accepting peer link requests
140 * from new peers, and that must be reflected in the beacon
142 free_plinks = mesh_plink_availables(sdata);
144 if (free_plinks != sdata->u.mesh.accepting_plinks) {
145 sdata->u.mesh.accepting_plinks = free_plinks;
146 changed = BSS_CHANGED_BEACON;
153 * mesh_sta_cleanup - clean up any mesh sta state
155 * @sta: mesh sta to clean up.
157 void mesh_sta_cleanup(struct sta_info *sta)
159 struct ieee80211_sub_if_data *sdata = sta->sdata;
160 u32 changed = mesh_plink_deactivate(sta);
163 ieee80211_mbss_info_change_notify(sdata, changed);
166 int mesh_rmc_init(struct ieee80211_sub_if_data *sdata)
170 sdata->u.mesh.rmc = kmalloc(sizeof(struct mesh_rmc), GFP_KERNEL);
171 if (!sdata->u.mesh.rmc)
173 sdata->u.mesh.rmc->idx_mask = RMC_BUCKETS - 1;
174 for (i = 0; i < RMC_BUCKETS; i++)
175 INIT_HLIST_HEAD(&sdata->u.mesh.rmc->bucket[i]);
179 void mesh_rmc_free(struct ieee80211_sub_if_data *sdata)
181 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
183 struct hlist_node *n;
186 if (!sdata->u.mesh.rmc)
189 for (i = 0; i < RMC_BUCKETS; i++) {
190 hlist_for_each_entry_safe(p, n, &rmc->bucket[i], list) {
192 kmem_cache_free(rm_cache, p);
197 sdata->u.mesh.rmc = NULL;
201 * mesh_rmc_check - Check frame in recent multicast cache and add if absent.
204 * @sa: source address
205 * @mesh_hdr: mesh_header
207 * Returns: 0 if the frame is not in the cache, nonzero otherwise.
209 * Checks using the source address and the mesh sequence number if we have
210 * received this frame lately. If the frame is not in the cache, it is added to
213 int mesh_rmc_check(struct ieee80211_sub_if_data *sdata,
214 const u8 *sa, struct ieee80211s_hdr *mesh_hdr)
216 struct mesh_rmc *rmc = sdata->u.mesh.rmc;
221 struct hlist_node *n;
226 /* Don't care about endianness since only match matters */
227 memcpy(&seqnum, &mesh_hdr->seqnum, sizeof(mesh_hdr->seqnum));
228 idx = le32_to_cpu(mesh_hdr->seqnum) & rmc->idx_mask;
229 hlist_for_each_entry_safe(p, n, &rmc->bucket[idx], list) {
231 if (time_after(jiffies, p->exp_time) ||
232 entries == RMC_QUEUE_MAX_LEN) {
234 kmem_cache_free(rm_cache, p);
236 } else if ((seqnum == p->seqnum) && ether_addr_equal(sa, p->sa))
240 p = kmem_cache_alloc(rm_cache, GFP_ATOMIC);
245 p->exp_time = jiffies + RMC_TIMEOUT;
246 memcpy(p->sa, sa, ETH_ALEN);
247 hlist_add_head(&p->list, &rmc->bucket[idx]);
251 int mesh_add_meshconf_ie(struct ieee80211_sub_if_data *sdata,
254 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
256 u8 meshconf_len = sizeof(struct ieee80211_meshconf_ie);
257 bool is_connected_to_gate = ifmsh->num_gates > 0 ||
258 ifmsh->mshcfg.dot11MeshGateAnnouncementProtocol ||
259 ifmsh->mshcfg.dot11MeshConnectedToMeshGate;
261 if (skb_tailroom(skb) < 2 + meshconf_len)
264 pos = skb_put(skb, 2 + meshconf_len);
265 *pos++ = WLAN_EID_MESH_CONFIG;
266 *pos++ = meshconf_len;
268 /* save a pointer for quick updates in pre-tbtt */
269 ifmsh->meshconf_offset = pos - skb->data;
271 /* Active path selection protocol ID */
272 *pos++ = ifmsh->mesh_pp_id;
273 /* Active path selection metric ID */
274 *pos++ = ifmsh->mesh_pm_id;
275 /* Congestion control mode identifier */
276 *pos++ = ifmsh->mesh_cc_id;
277 /* Synchronization protocol identifier */
278 *pos++ = ifmsh->mesh_sp_id;
279 /* Authentication Protocol identifier */
280 *pos++ = ifmsh->mesh_auth_id;
281 /* Mesh Formation Info - number of neighbors */
282 neighbors = atomic_read(&ifmsh->estab_plinks);
283 neighbors = min_t(int, neighbors, IEEE80211_MAX_MESH_PEERINGS);
284 *pos++ = (neighbors << 1) | is_connected_to_gate;
285 /* Mesh capability */
287 *pos |= ifmsh->mshcfg.dot11MeshForwarding ?
288 IEEE80211_MESHCONF_CAPAB_FORWARDING : 0x00;
289 *pos |= ifmsh->accepting_plinks ?
290 IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS : 0x00;
291 /* Mesh PS mode. See IEEE802.11-2012 8.4.2.100.8 */
292 *pos |= ifmsh->ps_peers_deep_sleep ?
293 IEEE80211_MESHCONF_CAPAB_POWER_SAVE_LEVEL : 0x00;
297 int mesh_add_meshid_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
299 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
302 if (skb_tailroom(skb) < 2 + ifmsh->mesh_id_len)
305 pos = skb_put(skb, 2 + ifmsh->mesh_id_len);
306 *pos++ = WLAN_EID_MESH_ID;
307 *pos++ = ifmsh->mesh_id_len;
308 if (ifmsh->mesh_id_len)
309 memcpy(pos, ifmsh->mesh_id, ifmsh->mesh_id_len);
314 static int mesh_add_awake_window_ie(struct ieee80211_sub_if_data *sdata,
317 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
320 /* see IEEE802.11-2012 13.14.6 */
321 if (ifmsh->ps_peers_light_sleep == 0 &&
322 ifmsh->ps_peers_deep_sleep == 0 &&
323 ifmsh->nonpeer_pm == NL80211_MESH_POWER_ACTIVE)
326 if (skb_tailroom(skb) < 4)
329 pos = skb_put(skb, 2 + 2);
330 *pos++ = WLAN_EID_MESH_AWAKE_WINDOW;
332 put_unaligned_le16(ifmsh->mshcfg.dot11MeshAwakeWindowDuration, pos);
337 int mesh_add_vendor_ies(struct ieee80211_sub_if_data *sdata,
340 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
344 if (!ifmsh->ie || !ifmsh->ie_len)
347 /* fast-forward to vendor IEs */
348 offset = ieee80211_ie_split_vendor(ifmsh->ie, ifmsh->ie_len, 0);
350 if (offset < ifmsh->ie_len) {
351 len = ifmsh->ie_len - offset;
352 data = ifmsh->ie + offset;
353 if (skb_tailroom(skb) < len)
355 skb_put_data(skb, data, len);
361 int mesh_add_rsn_ie(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
363 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
367 if (!ifmsh->ie || !ifmsh->ie_len)
371 data = cfg80211_find_ie(WLAN_EID_RSN, ifmsh->ie, ifmsh->ie_len);
377 if (skb_tailroom(skb) < len)
379 skb_put_data(skb, data, len);
384 static int mesh_add_ds_params_ie(struct ieee80211_sub_if_data *sdata,
387 struct ieee80211_chanctx_conf *chanctx_conf;
388 struct ieee80211_channel *chan;
391 if (skb_tailroom(skb) < 3)
395 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
396 if (WARN_ON(!chanctx_conf)) {
400 chan = chanctx_conf->def.chan;
403 pos = skb_put(skb, 2 + 1);
404 *pos++ = WLAN_EID_DS_PARAMS;
406 *pos++ = ieee80211_frequency_to_channel(chan->center_freq);
411 int mesh_add_ht_cap_ie(struct ieee80211_sub_if_data *sdata,
414 struct ieee80211_supported_band *sband;
417 sband = ieee80211_get_sband(sdata);
421 if (!sband->ht_cap.ht_supported ||
422 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
423 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
424 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
427 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_cap))
430 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_cap));
431 ieee80211_ie_build_ht_cap(pos, &sband->ht_cap, sband->ht_cap.cap);
436 int mesh_add_ht_oper_ie(struct ieee80211_sub_if_data *sdata,
439 struct ieee80211_local *local = sdata->local;
440 struct ieee80211_chanctx_conf *chanctx_conf;
441 struct ieee80211_channel *channel;
442 struct ieee80211_supported_band *sband;
443 struct ieee80211_sta_ht_cap *ht_cap;
447 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
448 if (WARN_ON(!chanctx_conf)) {
452 channel = chanctx_conf->def.chan;
455 sband = local->hw.wiphy->bands[channel->band];
456 ht_cap = &sband->ht_cap;
458 if (!ht_cap->ht_supported ||
459 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
460 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
461 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
464 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_ht_operation))
467 pos = skb_put(skb, 2 + sizeof(struct ieee80211_ht_operation));
468 ieee80211_ie_build_ht_oper(pos, ht_cap, &sdata->vif.bss_conf.chandef,
469 sdata->vif.bss_conf.ht_operation_mode,
475 int mesh_add_vht_cap_ie(struct ieee80211_sub_if_data *sdata,
478 struct ieee80211_supported_band *sband;
481 sband = ieee80211_get_sband(sdata);
485 if (!sband->vht_cap.vht_supported ||
486 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
487 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
488 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
491 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_cap))
494 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_cap));
495 ieee80211_ie_build_vht_cap(pos, &sband->vht_cap, sband->vht_cap.cap);
500 int mesh_add_vht_oper_ie(struct ieee80211_sub_if_data *sdata,
503 struct ieee80211_local *local = sdata->local;
504 struct ieee80211_chanctx_conf *chanctx_conf;
505 struct ieee80211_channel *channel;
506 struct ieee80211_supported_band *sband;
507 struct ieee80211_sta_vht_cap *vht_cap;
511 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
512 if (WARN_ON(!chanctx_conf)) {
516 channel = chanctx_conf->def.chan;
519 sband = local->hw.wiphy->bands[channel->band];
520 vht_cap = &sband->vht_cap;
522 if (!vht_cap->vht_supported ||
523 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
524 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_5 ||
525 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_10)
528 if (skb_tailroom(skb) < 2 + sizeof(struct ieee80211_vht_operation))
531 pos = skb_put(skb, 2 + sizeof(struct ieee80211_vht_operation));
532 ieee80211_ie_build_vht_oper(pos, vht_cap,
533 &sdata->vif.bss_conf.chandef);
538 static void ieee80211_mesh_path_timer(struct timer_list *t)
540 struct ieee80211_sub_if_data *sdata =
541 from_timer(sdata, t, u.mesh.mesh_path_timer);
543 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
546 static void ieee80211_mesh_path_root_timer(struct timer_list *t)
548 struct ieee80211_sub_if_data *sdata =
549 from_timer(sdata, t, u.mesh.mesh_path_root_timer);
550 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
552 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
554 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
557 void ieee80211_mesh_root_setup(struct ieee80211_if_mesh *ifmsh)
559 if (ifmsh->mshcfg.dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)
560 set_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
562 clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags);
563 /* stop running timer */
564 del_timer_sync(&ifmsh->mesh_path_root_timer);
569 * ieee80211_fill_mesh_addresses - fill addresses of a locally originated mesh frame
570 * @hdr: 802.11 frame header
571 * @fc: frame control field
572 * @meshda: destination address in the mesh
573 * @meshsa: source address address in the mesh. Same as TA, as frame is
574 * locally originated.
576 * Return the length of the 802.11 (does not include a mesh control header)
578 int ieee80211_fill_mesh_addresses(struct ieee80211_hdr *hdr, __le16 *fc,
579 const u8 *meshda, const u8 *meshsa)
581 if (is_multicast_ether_addr(meshda)) {
582 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
584 memcpy(hdr->addr1, meshda, ETH_ALEN);
585 memcpy(hdr->addr2, meshsa, ETH_ALEN);
586 memcpy(hdr->addr3, meshsa, ETH_ALEN);
589 *fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
591 eth_zero_addr(hdr->addr1); /* RA is resolved later */
592 memcpy(hdr->addr2, meshsa, ETH_ALEN);
593 memcpy(hdr->addr3, meshda, ETH_ALEN);
594 memcpy(hdr->addr4, meshsa, ETH_ALEN);
600 * ieee80211_new_mesh_header - create a new mesh header
601 * @sdata: mesh interface to be used
602 * @meshhdr: uninitialized mesh header
603 * @addr4or5: 1st address in the ae header, which may correspond to address 4
604 * (if addr6 is NULL) or address 5 (if addr6 is present). It may
606 * @addr6: 2nd address in the ae header, which corresponds to addr6 of the
609 * Return the header length.
611 unsigned int ieee80211_new_mesh_header(struct ieee80211_sub_if_data *sdata,
612 struct ieee80211s_hdr *meshhdr,
613 const char *addr4or5, const char *addr6)
615 if (WARN_ON(!addr4or5 && addr6))
618 memset(meshhdr, 0, sizeof(*meshhdr));
620 meshhdr->ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
622 /* FIXME: racy -- TX on multiple queues can be concurrent */
623 put_unaligned(cpu_to_le32(sdata->u.mesh.mesh_seqnum), &meshhdr->seqnum);
624 sdata->u.mesh.mesh_seqnum++;
626 if (addr4or5 && !addr6) {
627 meshhdr->flags |= MESH_FLAGS_AE_A4;
628 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
630 } else if (addr4or5 && addr6) {
631 meshhdr->flags |= MESH_FLAGS_AE_A5_A6;
632 memcpy(meshhdr->eaddr1, addr4or5, ETH_ALEN);
633 memcpy(meshhdr->eaddr2, addr6, ETH_ALEN);
640 static void ieee80211_mesh_housekeeping(struct ieee80211_sub_if_data *sdata)
642 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
645 if (ifmsh->mshcfg.plink_timeout > 0)
646 ieee80211_sta_expire(sdata, ifmsh->mshcfg.plink_timeout * HZ);
647 mesh_path_expire(sdata);
649 changed = mesh_accept_plinks_update(sdata);
650 ieee80211_mbss_info_change_notify(sdata, changed);
652 mod_timer(&ifmsh->housekeeping_timer,
653 round_jiffies(jiffies +
654 IEEE80211_MESH_HOUSEKEEPING_INTERVAL));
657 static void ieee80211_mesh_rootpath(struct ieee80211_sub_if_data *sdata)
659 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
662 mesh_path_tx_root_frame(sdata);
664 if (ifmsh->mshcfg.dot11MeshHWMPRootMode == IEEE80211_PROACTIVE_RANN)
665 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
667 interval = ifmsh->mshcfg.dot11MeshHWMProotInterval;
669 mod_timer(&ifmsh->mesh_path_root_timer,
670 round_jiffies(TU_TO_EXP_TIME(interval)));
674 ieee80211_mesh_build_beacon(struct ieee80211_if_mesh *ifmsh)
676 struct beacon_data *bcn;
677 int head_len, tail_len;
679 struct ieee80211_mgmt *mgmt;
680 struct ieee80211_chanctx_conf *chanctx_conf;
681 struct mesh_csa_settings *csa;
682 enum nl80211_band band;
684 struct ieee80211_sub_if_data *sdata;
685 int hdr_len = offsetofend(struct ieee80211_mgmt, u.beacon);
687 sdata = container_of(ifmsh, struct ieee80211_sub_if_data, u.mesh);
689 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
690 band = chanctx_conf->def.chan->band;
695 /* Channel Switch Announcement */
696 2 + sizeof(struct ieee80211_channel_sw_ie) +
697 /* Mesh Channel Switch Parameters */
698 2 + sizeof(struct ieee80211_mesh_chansw_params_ie) +
699 /* Channel Switch Wrapper + Wide Bandwidth CSA IE */
700 2 + 2 + sizeof(struct ieee80211_wide_bw_chansw_ie) +
701 2 + sizeof(struct ieee80211_sec_chan_offs_ie) +
702 2 + 8 + /* supported rates */
703 2 + 3; /* DS params */
704 tail_len = 2 + (IEEE80211_MAX_SUPP_RATES - 8) +
705 2 + sizeof(struct ieee80211_ht_cap) +
706 2 + sizeof(struct ieee80211_ht_operation) +
707 2 + ifmsh->mesh_id_len +
708 2 + sizeof(struct ieee80211_meshconf_ie) +
709 2 + sizeof(__le16) + /* awake window */
710 2 + sizeof(struct ieee80211_vht_cap) +
711 2 + sizeof(struct ieee80211_vht_operation) +
714 bcn = kzalloc(sizeof(*bcn) + head_len + tail_len, GFP_KERNEL);
715 /* need an skb for IE builders to operate on */
716 skb = dev_alloc_skb(max(head_len, tail_len));
722 * pointers go into the block we allocated,
723 * memory is | beacon_data | head | tail |
725 bcn->head = ((u8 *) bcn) + sizeof(*bcn);
727 /* fill in the head */
728 mgmt = skb_put_zero(skb, 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 enum nl80211_channel_type ct;
748 struct cfg80211_chan_def *chandef;
749 int ie_len = 2 + sizeof(struct ieee80211_channel_sw_ie) +
750 2 + sizeof(struct ieee80211_mesh_chansw_params_ie);
752 pos = skb_put_zero(skb, ie_len);
753 *pos++ = WLAN_EID_CHANNEL_SWITCH;
756 *pos++ = ieee80211_frequency_to_channel(
757 csa->settings.chandef.chan->center_freq);
758 bcn->csa_current_counter = csa->settings.count;
759 bcn->csa_counter_offsets[0] = hdr_len + 6;
760 *pos++ = csa->settings.count;
761 *pos++ = WLAN_EID_CHAN_SWITCH_PARAM;
763 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) {
764 *pos++ = ifmsh->mshcfg.dot11MeshTTL;
765 *pos |= WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
767 *pos++ = ifmsh->chsw_ttl;
769 *pos++ |= csa->settings.block_tx ?
770 WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT : 0x00;
771 put_unaligned_le16(WLAN_REASON_MESH_CHAN, pos);
773 put_unaligned_le16(ifmsh->pre_value, pos);
776 switch (csa->settings.chandef.width) {
777 case NL80211_CHAN_WIDTH_40:
778 ie_len = 2 + sizeof(struct ieee80211_sec_chan_offs_ie);
779 pos = skb_put_zero(skb, ie_len);
781 *pos++ = WLAN_EID_SECONDARY_CHANNEL_OFFSET; /* EID */
782 *pos++ = 1; /* len */
783 ct = cfg80211_get_chandef_type(&csa->settings.chandef);
784 if (ct == NL80211_CHAN_HT40PLUS)
785 *pos++ = IEEE80211_HT_PARAM_CHA_SEC_ABOVE;
787 *pos++ = IEEE80211_HT_PARAM_CHA_SEC_BELOW;
789 case NL80211_CHAN_WIDTH_80:
790 case NL80211_CHAN_WIDTH_80P80:
791 case NL80211_CHAN_WIDTH_160:
792 /* Channel Switch Wrapper + Wide Bandwidth CSA IE */
794 sizeof(struct ieee80211_wide_bw_chansw_ie);
795 pos = skb_put_zero(skb, ie_len);
797 *pos++ = WLAN_EID_CHANNEL_SWITCH_WRAPPER; /* EID */
798 *pos++ = 5; /* len */
800 chandef = &csa->settings.chandef;
801 ieee80211_ie_build_wide_bw_cs(pos, chandef);
809 if (ieee80211_add_srates_ie(sdata, skb, true, band) ||
810 mesh_add_ds_params_ie(sdata, skb))
813 bcn->head_len = skb->len;
814 memcpy(bcn->head, skb->data, bcn->head_len);
818 bcn->tail = bcn->head + bcn->head_len;
820 if (ieee80211_add_ext_srates_ie(sdata, skb, true, band) ||
821 mesh_add_rsn_ie(sdata, skb) ||
822 mesh_add_ht_cap_ie(sdata, skb) ||
823 mesh_add_ht_oper_ie(sdata, skb) ||
824 mesh_add_meshid_ie(sdata, skb) ||
825 mesh_add_meshconf_ie(sdata, skb) ||
826 mesh_add_awake_window_ie(sdata, skb) ||
827 mesh_add_vht_cap_ie(sdata, skb) ||
828 mesh_add_vht_oper_ie(sdata, skb) ||
829 mesh_add_vendor_ies(sdata, skb))
832 bcn->tail_len = skb->len;
833 memcpy(bcn->tail, skb->data, bcn->tail_len);
834 bcn->meshconf = (struct ieee80211_meshconf_ie *)
835 (bcn->tail + ifmsh->meshconf_offset);
838 rcu_assign_pointer(ifmsh->beacon, bcn);
847 ieee80211_mesh_rebuild_beacon(struct ieee80211_sub_if_data *sdata)
849 struct beacon_data *old_bcn;
852 old_bcn = rcu_dereference_protected(sdata->u.mesh.beacon,
853 lockdep_is_held(&sdata->wdev.mtx));
854 ret = ieee80211_mesh_build_beacon(&sdata->u.mesh);
856 /* just reuse old beacon */
860 kfree_rcu(old_bcn, rcu_head);
864 void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata,
867 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
868 unsigned long bits = changed;
874 /* if we race with running work, worst case this work becomes a noop */
875 for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE)
876 set_bit(bit, &ifmsh->mbss_changed);
877 set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags);
878 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
881 int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
883 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
884 struct ieee80211_local *local = sdata->local;
885 u32 changed = BSS_CHANGED_BEACON |
886 BSS_CHANGED_BEACON_ENABLED |
888 BSS_CHANGED_BASIC_RATES |
889 BSS_CHANGED_BEACON_INT |
890 BSS_CHANGED_MCAST_RATE;
892 local->fif_other_bss++;
893 /* mesh ifaces must set allmulti to forward mcast traffic */
894 atomic_inc(&local->iff_allmultis);
895 ieee80211_configure_filter(local);
897 ifmsh->mesh_cc_id = 0; /* Disabled */
898 /* register sync ops from extensible synchronization framework */
899 ifmsh->sync_ops = ieee80211_mesh_sync_ops_get(ifmsh->mesh_sp_id);
900 ifmsh->sync_offset_clockdrift_max = 0;
901 set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
902 ieee80211_mesh_root_setup(ifmsh);
903 ieee80211_queue_work(&local->hw, &sdata->work);
904 sdata->vif.bss_conf.ht_operation_mode =
905 ifmsh->mshcfg.ht_opmode;
906 sdata->vif.bss_conf.enable_beacon = true;
908 changed |= ieee80211_mps_local_status_update(sdata);
910 if (ieee80211_mesh_build_beacon(ifmsh)) {
911 ieee80211_stop_mesh(sdata);
915 ieee80211_recalc_dtim(local, sdata);
916 ieee80211_bss_info_change_notify(sdata, changed);
918 netif_carrier_on(sdata->dev);
922 void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
924 struct ieee80211_local *local = sdata->local;
925 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
926 struct beacon_data *bcn;
928 netif_carrier_off(sdata->dev);
930 /* flush STAs and mpaths on this iface */
931 sta_info_flush(sdata);
932 mesh_path_flush_by_iface(sdata);
934 /* stop the beacon */
935 ifmsh->mesh_id_len = 0;
936 sdata->vif.bss_conf.enable_beacon = false;
937 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
938 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
941 bcn = rcu_dereference_protected(ifmsh->beacon,
942 lockdep_is_held(&sdata->wdev.mtx));
943 RCU_INIT_POINTER(ifmsh->beacon, NULL);
944 kfree_rcu(bcn, rcu_head);
946 /* free all potentially still buffered group-addressed frames */
947 local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
948 skb_queue_purge(&ifmsh->ps.bc_buf);
950 del_timer_sync(&sdata->u.mesh.housekeeping_timer);
951 del_timer_sync(&sdata->u.mesh.mesh_path_root_timer);
952 del_timer_sync(&sdata->u.mesh.mesh_path_timer);
954 /* clear any mesh work (for next join) we may have accrued */
955 ifmsh->wrkq_flags = 0;
956 ifmsh->mbss_changed = 0;
958 local->fif_other_bss--;
959 atomic_dec(&local->iff_allmultis);
960 ieee80211_configure_filter(local);
963 static void ieee80211_mesh_csa_mark_radar(struct ieee80211_sub_if_data *sdata)
967 /* if the current channel is a DFS channel, mark the channel as
970 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
971 &sdata->vif.bss_conf.chandef,
972 NL80211_IFTYPE_MESH_POINT);
974 cfg80211_radar_event(sdata->local->hw.wiphy,
975 &sdata->vif.bss_conf.chandef, GFP_ATOMIC);
979 ieee80211_mesh_process_chnswitch(struct ieee80211_sub_if_data *sdata,
980 struct ieee802_11_elems *elems, bool beacon)
982 struct cfg80211_csa_settings params;
983 struct ieee80211_csa_ie csa_ie;
984 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
985 struct ieee80211_supported_band *sband;
989 sdata_assert_lock(sdata);
991 sband = ieee80211_get_sband(sdata);
996 switch (sdata->vif.bss_conf.chandef.width) {
997 case NL80211_CHAN_WIDTH_20_NOHT:
998 sta_flags |= IEEE80211_STA_DISABLE_HT;
1000 case NL80211_CHAN_WIDTH_20:
1001 sta_flags |= IEEE80211_STA_DISABLE_40MHZ;
1003 case NL80211_CHAN_WIDTH_40:
1004 sta_flags |= IEEE80211_STA_DISABLE_VHT;
1010 memset(¶ms, 0, sizeof(params));
1011 err = ieee80211_parse_ch_switch_ie(sdata, elems, sband->band,
1012 sta_flags, sdata->vif.addr,
1019 /* Mark the channel unavailable if the reason for the switch is
1022 if (csa_ie.reason_code == WLAN_REASON_MESH_CHAN_REGULATORY)
1023 ieee80211_mesh_csa_mark_radar(sdata);
1025 params.chandef = csa_ie.chandef;
1026 params.count = csa_ie.count;
1028 if (!cfg80211_chandef_usable(sdata->local->hw.wiphy, ¶ms.chandef,
1029 IEEE80211_CHAN_DISABLED) ||
1030 !cfg80211_reg_can_beacon(sdata->local->hw.wiphy, ¶ms.chandef,
1031 NL80211_IFTYPE_MESH_POINT)) {
1033 "mesh STA %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
1035 params.chandef.chan->center_freq,
1036 params.chandef.width,
1037 params.chandef.center_freq1,
1038 params.chandef.center_freq2);
1042 err = cfg80211_chandef_dfs_required(sdata->local->hw.wiphy,
1044 NL80211_IFTYPE_MESH_POINT);
1047 if (err > 0 && !ifmsh->userspace_handles_dfs) {
1049 "mesh STA %pM switches to channel requiring DFS (%d MHz, width:%d, CF1/2: %d/%d MHz), aborting\n",
1051 params.chandef.chan->center_freq,
1052 params.chandef.width,
1053 params.chandef.center_freq1,
1054 params.chandef.center_freq2);
1058 params.radar_required = err;
1060 if (cfg80211_chandef_identical(¶ms.chandef,
1061 &sdata->vif.bss_conf.chandef)) {
1063 "received csa with an identical chandef, ignoring\n");
1068 "received channel switch announcement to go to channel %d MHz\n",
1069 params.chandef.chan->center_freq);
1071 params.block_tx = csa_ie.mode & WLAN_EID_CHAN_SWITCH_PARAM_TX_RESTRICT;
1073 ifmsh->chsw_ttl = csa_ie.ttl - 1;
1074 if (ifmsh->pre_value >= csa_ie.pre_value)
1076 ifmsh->pre_value = csa_ie.pre_value;
1079 if (ifmsh->chsw_ttl >= ifmsh->mshcfg.dot11MeshTTL)
1082 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_REPEATER;
1084 if (ieee80211_channel_switch(sdata->local->hw.wiphy, sdata->dev,
1092 ieee80211_mesh_rx_probe_req(struct ieee80211_sub_if_data *sdata,
1093 struct ieee80211_mgmt *mgmt, size_t len)
1095 struct ieee80211_local *local = sdata->local;
1096 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1097 struct sk_buff *presp;
1098 struct beacon_data *bcn;
1099 struct ieee80211_mgmt *hdr;
1100 struct ieee802_11_elems elems;
1104 pos = mgmt->u.probe_req.variable;
1105 baselen = (u8 *) pos - (u8 *) mgmt;
1109 ieee802_11_parse_elems(pos, len - baselen, false, &elems, mgmt->bssid,
1115 /* 802.11-2012 10.1.4.3.2 */
1116 if ((!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
1117 !is_broadcast_ether_addr(mgmt->da)) ||
1118 elems.ssid_len != 0)
1121 if (elems.mesh_id_len != 0 &&
1122 (elems.mesh_id_len != ifmsh->mesh_id_len ||
1123 memcmp(elems.mesh_id, ifmsh->mesh_id, ifmsh->mesh_id_len)))
1127 bcn = rcu_dereference(ifmsh->beacon);
1132 presp = dev_alloc_skb(local->tx_headroom +
1133 bcn->head_len + bcn->tail_len);
1137 skb_reserve(presp, local->tx_headroom);
1138 skb_put_data(presp, bcn->head, bcn->head_len);
1139 skb_put_data(presp, bcn->tail, bcn->tail_len);
1140 hdr = (struct ieee80211_mgmt *) presp->data;
1141 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1142 IEEE80211_STYPE_PROBE_RESP);
1143 memcpy(hdr->da, mgmt->sa, ETH_ALEN);
1144 IEEE80211_SKB_CB(presp)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1145 ieee80211_tx_skb(sdata, presp);
1150 static void ieee80211_mesh_rx_bcn_presp(struct ieee80211_sub_if_data *sdata,
1152 struct ieee80211_mgmt *mgmt,
1154 struct ieee80211_rx_status *rx_status)
1156 struct ieee80211_local *local = sdata->local;
1157 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1158 struct ieee802_11_elems elems;
1159 struct ieee80211_channel *channel;
1162 enum nl80211_band band = rx_status->band;
1164 /* ignore ProbeResp to foreign address */
1165 if (stype == IEEE80211_STYPE_PROBE_RESP &&
1166 !ether_addr_equal(mgmt->da, sdata->vif.addr))
1169 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1173 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1174 false, &elems, mgmt->bssid, NULL);
1176 /* ignore non-mesh or secure / unsecure mismatch */
1177 if ((!elems.mesh_id || !elems.mesh_config) ||
1178 (elems.rsn && sdata->u.mesh.security == IEEE80211_MESH_SEC_NONE) ||
1179 (!elems.rsn && sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE))
1182 if (elems.ds_params)
1183 freq = ieee80211_channel_to_frequency(elems.ds_params[0], band);
1185 freq = rx_status->freq;
1187 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1189 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1192 if (mesh_matches_local(sdata, &elems)) {
1193 mpl_dbg(sdata, "rssi_threshold=%d,rx_status->signal=%d\n",
1194 sdata->u.mesh.mshcfg.rssi_threshold, rx_status->signal);
1195 if (!sdata->u.mesh.user_mpm ||
1196 sdata->u.mesh.mshcfg.rssi_threshold == 0 ||
1197 sdata->u.mesh.mshcfg.rssi_threshold < rx_status->signal)
1198 mesh_neighbour_update(sdata, mgmt->sa, &elems,
1202 if (ifmsh->sync_ops)
1203 ifmsh->sync_ops->rx_bcn_presp(sdata,
1204 stype, mgmt, &elems, rx_status);
1206 if (ifmsh->csa_role != IEEE80211_MESH_CSA_ROLE_INIT &&
1207 !sdata->vif.csa_active)
1208 ieee80211_mesh_process_chnswitch(sdata, &elems, true);
1211 int ieee80211_mesh_finish_csa(struct ieee80211_sub_if_data *sdata)
1213 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1214 struct mesh_csa_settings *tmp_csa_settings;
1218 /* Reset the TTL value and Initiator flag */
1219 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
1220 ifmsh->chsw_ttl = 0;
1222 /* Remove the CSA and MCSP elements from the beacon */
1223 tmp_csa_settings = rcu_dereference(ifmsh->csa);
1224 RCU_INIT_POINTER(ifmsh->csa, NULL);
1225 if (tmp_csa_settings)
1226 kfree_rcu(tmp_csa_settings, rcu_head);
1227 ret = ieee80211_mesh_rebuild_beacon(sdata);
1231 changed |= BSS_CHANGED_BEACON;
1233 mcsa_dbg(sdata, "complete switching to center freq %d MHz",
1234 sdata->vif.bss_conf.chandef.chan->center_freq);
1238 int ieee80211_mesh_csa_beacon(struct ieee80211_sub_if_data *sdata,
1239 struct cfg80211_csa_settings *csa_settings)
1241 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1242 struct mesh_csa_settings *tmp_csa_settings;
1245 tmp_csa_settings = kmalloc(sizeof(*tmp_csa_settings),
1247 if (!tmp_csa_settings)
1250 memcpy(&tmp_csa_settings->settings, csa_settings,
1251 sizeof(struct cfg80211_csa_settings));
1253 rcu_assign_pointer(ifmsh->csa, tmp_csa_settings);
1255 ret = ieee80211_mesh_rebuild_beacon(sdata);
1257 tmp_csa_settings = rcu_dereference(ifmsh->csa);
1258 RCU_INIT_POINTER(ifmsh->csa, NULL);
1259 kfree_rcu(tmp_csa_settings, rcu_head);
1263 return BSS_CHANGED_BEACON;
1266 static int mesh_fwd_csa_frame(struct ieee80211_sub_if_data *sdata,
1267 struct ieee80211_mgmt *mgmt, size_t len,
1268 struct ieee802_11_elems *elems)
1270 struct ieee80211_mgmt *mgmt_fwd;
1271 struct sk_buff *skb;
1272 struct ieee80211_local *local = sdata->local;
1274 skb = dev_alloc_skb(local->tx_headroom + len);
1277 skb_reserve(skb, local->tx_headroom);
1278 mgmt_fwd = skb_put(skb, len);
1280 elems->mesh_chansw_params_ie->mesh_ttl--;
1281 elems->mesh_chansw_params_ie->mesh_flags &=
1282 ~WLAN_EID_CHAN_SWITCH_PARAM_INITIATOR;
1284 memcpy(mgmt_fwd, mgmt, len);
1285 eth_broadcast_addr(mgmt_fwd->da);
1286 memcpy(mgmt_fwd->sa, sdata->vif.addr, ETH_ALEN);
1287 memcpy(mgmt_fwd->bssid, sdata->vif.addr, ETH_ALEN);
1289 ieee80211_tx_skb(sdata, skb);
1293 static void mesh_rx_csa_frame(struct ieee80211_sub_if_data *sdata,
1294 struct ieee80211_mgmt *mgmt, size_t len)
1296 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1297 struct ieee802_11_elems elems;
1299 bool fwd_csa = true;
1303 if (mgmt->u.action.u.measurement.action_code !=
1304 WLAN_ACTION_SPCT_CHL_SWITCH)
1307 pos = mgmt->u.action.u.chan_switch.variable;
1308 baselen = offsetof(struct ieee80211_mgmt,
1309 u.action.u.chan_switch.variable);
1310 ieee802_11_parse_elems(pos, len - baselen, true, &elems,
1313 ifmsh->chsw_ttl = elems.mesh_chansw_params_ie->mesh_ttl;
1314 if (!--ifmsh->chsw_ttl)
1317 pre_value = le16_to_cpu(elems.mesh_chansw_params_ie->mesh_pre_value);
1318 if (ifmsh->pre_value >= pre_value)
1321 ifmsh->pre_value = pre_value;
1323 if (!sdata->vif.csa_active &&
1324 !ieee80211_mesh_process_chnswitch(sdata, &elems, false)) {
1325 mcsa_dbg(sdata, "Failed to process CSA action frame");
1329 /* forward or re-broadcast the CSA frame */
1331 if (mesh_fwd_csa_frame(sdata, mgmt, len, &elems) < 0)
1332 mcsa_dbg(sdata, "Failed to forward the CSA frame");
1336 static void ieee80211_mesh_rx_mgmt_action(struct ieee80211_sub_if_data *sdata,
1337 struct ieee80211_mgmt *mgmt,
1339 struct ieee80211_rx_status *rx_status)
1341 switch (mgmt->u.action.category) {
1342 case WLAN_CATEGORY_SELF_PROTECTED:
1343 switch (mgmt->u.action.u.self_prot.action_code) {
1344 case WLAN_SP_MESH_PEERING_OPEN:
1345 case WLAN_SP_MESH_PEERING_CLOSE:
1346 case WLAN_SP_MESH_PEERING_CONFIRM:
1347 mesh_rx_plink_frame(sdata, mgmt, len, rx_status);
1351 case WLAN_CATEGORY_MESH_ACTION:
1352 if (mesh_action_is_path_sel(mgmt))
1353 mesh_rx_path_sel_frame(sdata, mgmt, len);
1355 case WLAN_CATEGORY_SPECTRUM_MGMT:
1356 mesh_rx_csa_frame(sdata, mgmt, len);
1361 void ieee80211_mesh_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1362 struct sk_buff *skb)
1364 struct ieee80211_rx_status *rx_status;
1365 struct ieee80211_mgmt *mgmt;
1370 /* mesh already went down */
1371 if (!sdata->u.mesh.mesh_id_len)
1374 rx_status = IEEE80211_SKB_RXCB(skb);
1375 mgmt = (struct ieee80211_mgmt *) skb->data;
1376 stype = le16_to_cpu(mgmt->frame_control) & IEEE80211_FCTL_STYPE;
1379 case IEEE80211_STYPE_PROBE_RESP:
1380 case IEEE80211_STYPE_BEACON:
1381 ieee80211_mesh_rx_bcn_presp(sdata, stype, mgmt, skb->len,
1384 case IEEE80211_STYPE_PROBE_REQ:
1385 ieee80211_mesh_rx_probe_req(sdata, mgmt, skb->len);
1387 case IEEE80211_STYPE_ACTION:
1388 ieee80211_mesh_rx_mgmt_action(sdata, mgmt, skb->len, rx_status);
1392 sdata_unlock(sdata);
1395 static void mesh_bss_info_changed(struct ieee80211_sub_if_data *sdata)
1397 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1398 u32 bit, changed = 0;
1400 for_each_set_bit(bit, &ifmsh->mbss_changed,
1401 sizeof(changed) * BITS_PER_BYTE) {
1402 clear_bit(bit, &ifmsh->mbss_changed);
1403 changed |= BIT(bit);
1406 if (sdata->vif.bss_conf.enable_beacon &&
1407 (changed & (BSS_CHANGED_BEACON |
1409 BSS_CHANGED_BASIC_RATES |
1410 BSS_CHANGED_BEACON_INT)))
1411 if (ieee80211_mesh_rebuild_beacon(sdata))
1414 ieee80211_bss_info_change_notify(sdata, changed);
1417 void ieee80211_mesh_work(struct ieee80211_sub_if_data *sdata)
1419 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1423 /* mesh already went down */
1424 if (!sdata->u.mesh.mesh_id_len)
1427 if (ifmsh->preq_queue_len &&
1429 ifmsh->last_preq + msecs_to_jiffies(ifmsh->mshcfg.dot11MeshHWMPpreqMinInterval)))
1430 mesh_path_start_discovery(sdata);
1432 if (test_and_clear_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags))
1433 ieee80211_mesh_housekeeping(sdata);
1435 if (test_and_clear_bit(MESH_WORK_ROOT, &ifmsh->wrkq_flags))
1436 ieee80211_mesh_rootpath(sdata);
1438 if (test_and_clear_bit(MESH_WORK_DRIFT_ADJUST, &ifmsh->wrkq_flags))
1439 mesh_sync_adjust_tsf(sdata);
1441 if (test_and_clear_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags))
1442 mesh_bss_info_changed(sdata);
1444 sdata_unlock(sdata);
1448 void ieee80211_mesh_init_sdata(struct ieee80211_sub_if_data *sdata)
1450 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1451 static u8 zero_addr[ETH_ALEN] = {};
1453 timer_setup(&ifmsh->housekeeping_timer,
1454 ieee80211_mesh_housekeeping_timer, 0);
1456 ifmsh->accepting_plinks = true;
1457 atomic_set(&ifmsh->mpaths, 0);
1458 mesh_rmc_init(sdata);
1459 ifmsh->last_preq = jiffies;
1460 ifmsh->next_perr = jiffies;
1461 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
1462 /* Allocate all mesh structures when creating the first mesh interface. */
1463 if (!mesh_allocated)
1466 mesh_pathtbl_init(sdata);
1468 timer_setup(&ifmsh->mesh_path_timer, ieee80211_mesh_path_timer, 0);
1469 timer_setup(&ifmsh->mesh_path_root_timer,
1470 ieee80211_mesh_path_root_timer, 0);
1471 INIT_LIST_HEAD(&ifmsh->preq_queue.list);
1472 skb_queue_head_init(&ifmsh->ps.bc_buf);
1473 spin_lock_init(&ifmsh->mesh_preq_queue_lock);
1474 spin_lock_init(&ifmsh->sync_offset_lock);
1475 RCU_INIT_POINTER(ifmsh->beacon, NULL);
1477 sdata->vif.bss_conf.bssid = zero_addr;
1480 void ieee80211_mesh_teardown_sdata(struct ieee80211_sub_if_data *sdata)
1482 mesh_rmc_free(sdata);
1483 mesh_pathtbl_unregister(sdata);