Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 2 | #include <linux/ieee80211.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 3 | #include <linux/export.h> |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 4 | #include <net/cfg80211.h> |
Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 5 | #include "nl80211.h" |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 6 | #include "core.h" |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 7 | #include "rdev-ops.h" |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 8 | |
| 9 | /* Default values, timeouts in ms */ |
| 10 | #define MESH_TTL 31 |
| 11 | #define MESH_DEFAULT_ELEMENT_TTL 31 |
| 12 | #define MESH_MAX_RETR 3 |
| 13 | #define MESH_RET_T 100 |
| 14 | #define MESH_CONF_T 100 |
| 15 | #define MESH_HOLD_T 100 |
| 16 | |
| 17 | #define MESH_PATH_TIMEOUT 5000 |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 18 | #define MESH_RANN_INTERVAL 5000 |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 19 | #define MESH_PATH_TO_ROOT_TIMEOUT 6000 |
| 20 | #define MESH_ROOT_INTERVAL 5000 |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 21 | #define MESH_ROOT_CONFIRMATION_INTERVAL 2000 |
Colleen Twitty | 8e7c053 | 2013-06-03 09:53:39 -0700 | [diff] [blame] | 22 | #define MESH_DEFAULT_PLINK_TIMEOUT 1800 /* timeout in seconds */ |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | * Minimum interval between two consecutive PREQs originated by the same |
| 26 | * interface |
| 27 | */ |
| 28 | #define MESH_PREQ_MIN_INT 10 |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 29 | #define MESH_PERR_MIN_INT 100 |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 30 | #define MESH_DIAM_TRAVERSAL_TIME 50 |
| 31 | |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 32 | #define MESH_RSSI_THRESHOLD 0 |
| 33 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 34 | /* |
| 35 | * A path will be refreshed if it is used PATH_REFRESH_TIME milliseconds |
| 36 | * before timing out. This way it will remain ACTIVE and no data frames |
| 37 | * will be unnecessarily held in the pending queue. |
| 38 | */ |
| 39 | #define MESH_PATH_REFRESH_TIME 1000 |
| 40 | #define MESH_MIN_DISCOVERY_TIMEOUT (2 * MESH_DIAM_TRAVERSAL_TIME) |
| 41 | |
| 42 | /* Default maximum number of established plinks per interface */ |
| 43 | #define MESH_MAX_ESTAB_PLINKS 32 |
| 44 | |
| 45 | #define MESH_MAX_PREQ_RETRIES 4 |
| 46 | |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 47 | #define MESH_SYNC_NEIGHBOR_OFFSET_MAX 50 |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 48 | |
Marco Porsch | 9bdbf04 | 2013-01-07 16:04:51 +0100 | [diff] [blame] | 49 | #define MESH_DEFAULT_BEACON_INTERVAL 1000 /* in 1024 us units (=TUs) */ |
| 50 | #define MESH_DEFAULT_DTIM_PERIOD 2 |
Marco Porsch | 3b1c5a5 | 2013-01-07 16:04:52 +0100 | [diff] [blame] | 51 | #define MESH_DEFAULT_AWAKE_WINDOW 10 /* in 1024 us units (=TUs) */ |
Marco Porsch | 9bdbf04 | 2013-01-07 16:04:51 +0100 | [diff] [blame] | 52 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 53 | const struct mesh_config default_mesh_config = { |
| 54 | .dot11MeshRetryTimeout = MESH_RET_T, |
| 55 | .dot11MeshConfirmTimeout = MESH_CONF_T, |
| 56 | .dot11MeshHoldingTimeout = MESH_HOLD_T, |
| 57 | .dot11MeshMaxRetries = MESH_MAX_RETR, |
| 58 | .dot11MeshTTL = MESH_TTL, |
| 59 | .element_ttl = MESH_DEFAULT_ELEMENT_TTL, |
| 60 | .auto_open_plinks = true, |
| 61 | .dot11MeshMaxPeerLinks = MESH_MAX_ESTAB_PLINKS, |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 62 | .dot11MeshNbrOffsetMaxNeighbor = MESH_SYNC_NEIGHBOR_OFFSET_MAX, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 63 | .dot11MeshHWMPactivePathTimeout = MESH_PATH_TIMEOUT, |
| 64 | .dot11MeshHWMPpreqMinInterval = MESH_PREQ_MIN_INT, |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 65 | .dot11MeshHWMPperrMinInterval = MESH_PERR_MIN_INT, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 66 | .dot11MeshHWMPnetDiameterTraversalTime = MESH_DIAM_TRAVERSAL_TIME, |
| 67 | .dot11MeshHWMPmaxPREQretries = MESH_MAX_PREQ_RETRIES, |
| 68 | .path_refresh_time = MESH_PATH_REFRESH_TIME, |
| 69 | .min_discovery_timeout = MESH_MIN_DISCOVERY_TIMEOUT, |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 70 | .dot11MeshHWMPRannInterval = MESH_RANN_INTERVAL, |
Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 71 | .dot11MeshGateAnnouncementProtocol = false, |
Chun-Yeow Yeoh | 94f9065 | 2012-01-21 01:02:16 +0800 | [diff] [blame] | 72 | .dot11MeshForwarding = true, |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 73 | .rssi_threshold = MESH_RSSI_THRESHOLD, |
Ashok Nagarajan | 70c33ea | 2012-04-30 14:20:32 -0700 | [diff] [blame] | 74 | .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED, |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 75 | .dot11MeshHWMPactivePathToRootTimeout = MESH_PATH_TO_ROOT_TIMEOUT, |
| 76 | .dot11MeshHWMProotInterval = MESH_ROOT_INTERVAL, |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 77 | .dot11MeshHWMPconfirmationInterval = MESH_ROOT_CONFIRMATION_INTERVAL, |
Marco Porsch | 3b1c5a5 | 2013-01-07 16:04:52 +0100 | [diff] [blame] | 78 | .power_mode = NL80211_MESH_POWER_ACTIVE, |
| 79 | .dot11MeshAwakeWindowDuration = MESH_DEFAULT_AWAKE_WINDOW, |
Colleen Twitty | 8e7c053 | 2013-06-03 09:53:39 -0700 | [diff] [blame] | 80 | .plink_timeout = MESH_DEFAULT_PLINK_TIMEOUT, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 81 | }; |
| 82 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 83 | const struct mesh_setup default_mesh_setup = { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 84 | /* cfg80211_join_mesh() will pick a channel if needed */ |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 85 | .sync_method = IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET, |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 86 | .path_sel_proto = IEEE80211_PATH_PROTOCOL_HWMP, |
| 87 | .path_metric = IEEE80211_PATH_METRIC_AIRTIME, |
Colleen Twitty | 6e16d90 | 2013-05-08 11:45:59 -0700 | [diff] [blame] | 88 | .auth_id = 0, /* open */ |
Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 89 | .ie = NULL, |
| 90 | .ie_len = 0, |
Javier Cardona | 5cff5e0 | 2011-04-07 15:08:29 -0700 | [diff] [blame] | 91 | .is_secure = false, |
Thomas Pedersen | bb2798d | 2013-03-04 13:06:10 -0800 | [diff] [blame] | 92 | .user_mpm = false, |
Marco Porsch | 9bdbf04 | 2013-01-07 16:04:51 +0100 | [diff] [blame] | 93 | .beacon_interval = MESH_DEFAULT_BEACON_INTERVAL, |
| 94 | .dtim_period = MESH_DEFAULT_DTIM_PERIOD, |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 95 | }; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 96 | |
| 97 | int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev, |
| 98 | struct net_device *dev, |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 99 | struct mesh_setup *setup, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 100 | const struct mesh_config *conf) |
| 101 | { |
| 102 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 103 | int err; |
| 104 | |
| 105 | BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != IEEE80211_MAX_MESH_ID_LEN); |
| 106 | |
| 107 | ASSERT_WDEV_LOCK(wdev); |
| 108 | |
| 109 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) |
| 110 | return -EOPNOTSUPP; |
| 111 | |
Javier Cardona | 15d5dda | 2011-04-07 15:08:28 -0700 | [diff] [blame] | 112 | if (!(rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) && |
| 113 | setup->is_secure) |
| 114 | return -EOPNOTSUPP; |
| 115 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 116 | if (wdev->mesh_id_len) |
| 117 | return -EALREADY; |
| 118 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 119 | if (!setup->mesh_id_len) |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 120 | return -EINVAL; |
| 121 | |
| 122 | if (!rdev->ops->join_mesh) |
| 123 | return -EOPNOTSUPP; |
| 124 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 125 | if (!setup->chandef.chan) { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 126 | /* if no channel explicitly given, use preset channel */ |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 127 | setup->chandef = wdev->preset_chandef; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 128 | } |
| 129 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 130 | if (!setup->chandef.chan) { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 131 | /* if we don't have that either, use the first usable channel */ |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 132 | enum nl80211_band band; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 133 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 134 | for (band = 0; band < NUM_NL80211_BANDS; band++) { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 135 | struct ieee80211_supported_band *sband; |
| 136 | struct ieee80211_channel *chan; |
| 137 | int i; |
| 138 | |
| 139 | sband = rdev->wiphy.bands[band]; |
| 140 | if (!sband) |
| 141 | continue; |
| 142 | |
| 143 | for (i = 0; i < sband->n_channels; i++) { |
| 144 | chan = &sband->channels[i]; |
Luis R. Rodriguez | 8fe02e1 | 2013-10-21 19:22:25 +0200 | [diff] [blame] | 145 | if (chan->flags & (IEEE80211_CHAN_NO_IR | |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 146 | IEEE80211_CHAN_DISABLED | |
| 147 | IEEE80211_CHAN_RADAR)) |
| 148 | continue; |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 149 | setup->chandef.chan = chan; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 150 | break; |
| 151 | } |
| 152 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 153 | if (setup->chandef.chan) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 154 | break; |
| 155 | } |
| 156 | |
| 157 | /* no usable channel ... */ |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 158 | if (!setup->chandef.chan) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 159 | return -EINVAL; |
| 160 | |
Marco Porsch | da29d2a | 2012-12-03 11:23:37 +0100 | [diff] [blame] | 161 | setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT; |
| 162 | setup->chandef.center_freq1 = setup->chandef.chan->center_freq; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 163 | } |
| 164 | |
Ashok Nagarajan | ffb3cf3 | 2013-06-03 10:33:36 -0700 | [diff] [blame] | 165 | /* |
| 166 | * check if basic rates are available otherwise use mandatory rates as |
| 167 | * basic rates |
| 168 | */ |
| 169 | if (!setup->basic_rates) { |
Simon Wunderlich | 74608ac | 2013-07-08 16:55:54 +0200 | [diff] [blame] | 170 | enum nl80211_bss_scan_width scan_width; |
Ashok Nagarajan | ffb3cf3 | 2013-06-03 10:33:36 -0700 | [diff] [blame] | 171 | struct ieee80211_supported_band *sband = |
| 172 | rdev->wiphy.bands[setup->chandef.chan->band]; |
Johannes Berg | c028c63 | 2018-01-30 13:17:38 +0100 | [diff] [blame] | 173 | |
| 174 | if (setup->chandef.chan->band == NL80211_BAND_2GHZ) { |
| 175 | int i; |
| 176 | |
| 177 | /* |
| 178 | * Older versions selected the mandatory rates for |
| 179 | * 2.4 GHz as well, but were broken in that only |
| 180 | * 1 Mbps was regarded as a mandatory rate. Keep |
| 181 | * using just 1 Mbps as the default basic rate for |
| 182 | * mesh to be interoperable with older versions. |
| 183 | */ |
| 184 | for (i = 0; i < sband->n_bitrates; i++) { |
| 185 | if (sband->bitrates[i].bitrate == 10) { |
| 186 | setup->basic_rates = BIT(i); |
| 187 | break; |
| 188 | } |
| 189 | } |
| 190 | } else { |
| 191 | scan_width = cfg80211_chandef_to_scan_width(&setup->chandef); |
| 192 | setup->basic_rates = ieee80211_mandatory_rates(sband, |
| 193 | scan_width); |
| 194 | } |
Ashok Nagarajan | ffb3cf3 | 2013-06-03 10:33:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Benjamin Berg | d37d49c | 2017-05-16 11:23:11 +0200 | [diff] [blame] | 197 | err = cfg80211_chandef_dfs_required(&rdev->wiphy, |
| 198 | &setup->chandef, |
| 199 | NL80211_IFTYPE_MESH_POINT); |
| 200 | if (err < 0) |
| 201 | return err; |
| 202 | if (err > 0 && !setup->userspace_handles_dfs) |
| 203 | return -EINVAL; |
| 204 | |
Ilan Peer | 174e0cd | 2014-02-23 09:13:01 +0200 | [diff] [blame] | 205 | if (!cfg80211_reg_can_beacon(&rdev->wiphy, &setup->chandef, |
| 206 | NL80211_IFTYPE_MESH_POINT)) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 207 | return -EINVAL; |
| 208 | |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 209 | err = rdev_join_mesh(rdev, dev, conf, setup); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 210 | if (!err) { |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 211 | memcpy(wdev->ssid, setup->mesh_id, setup->mesh_id_len); |
| 212 | wdev->mesh_id_len = setup->mesh_id_len; |
Michal Kazior | 9e0e296 | 2014-01-29 14:22:27 +0100 | [diff] [blame] | 213 | wdev->chandef = setup->chandef; |
Johannes Berg | 275fcf6 | 2016-10-21 14:25:11 +0200 | [diff] [blame] | 214 | wdev->beacon_interval = setup->beacon_interval; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | return err; |
| 218 | } |
| 219 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 220 | int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev, |
| 221 | struct wireless_dev *wdev, |
| 222 | struct cfg80211_chan_def *chandef) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 223 | { |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 224 | int err; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 225 | |
| 226 | /* |
| 227 | * Workaround for libertas (only!), it puts the interface |
| 228 | * into mesh mode but doesn't implement join_mesh. Instead, |
| 229 | * it is configured via sysfs and then joins the mesh when |
| 230 | * you set the channel. Note that the libertas mesh isn't |
| 231 | * compatible with 802.11 mesh. |
| 232 | */ |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 233 | if (rdev->ops->libertas_set_mesh_channel) { |
Johannes Berg | 3d9d1d6 | 2012-11-08 23:14:50 +0100 | [diff] [blame] | 234 | if (chandef->width != NL80211_CHAN_WIDTH_20_NOHT) |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 235 | return -EINVAL; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 236 | |
| 237 | if (!netif_running(wdev->netdev)) |
| 238 | return -ENETDOWN; |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 239 | |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 240 | err = rdev_libertas_set_mesh_channel(rdev, wdev->netdev, |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 241 | chandef->chan); |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 242 | if (!err) |
Michal Kazior | 9e0e296 | 2014-01-29 14:22:27 +0100 | [diff] [blame] | 243 | wdev->chandef = *chandef; |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 244 | |
| 245 | return err; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | if (wdev->mesh_id_len) |
| 249 | return -EBUSY; |
| 250 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 251 | wdev->preset_chandef = *chandef; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 252 | return 0; |
| 253 | } |
| 254 | |
Michal Kazior | f04c220 | 2014-04-09 15:11:01 +0200 | [diff] [blame] | 255 | int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev, |
| 256 | struct net_device *dev) |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 257 | { |
| 258 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
| 259 | int err; |
| 260 | |
| 261 | ASSERT_WDEV_LOCK(wdev); |
| 262 | |
| 263 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) |
| 264 | return -EOPNOTSUPP; |
| 265 | |
| 266 | if (!rdev->ops->leave_mesh) |
| 267 | return -EOPNOTSUPP; |
| 268 | |
| 269 | if (!wdev->mesh_id_len) |
| 270 | return -ENOTCONN; |
| 271 | |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 272 | err = rdev_leave_mesh(rdev, dev); |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 273 | if (!err) { |
Denis Kenzior | 188c1b3 | 2018-03-26 12:52:46 -0500 | [diff] [blame] | 274 | wdev->conn_owner_nlportid = 0; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 275 | wdev->mesh_id_len = 0; |
Johannes Berg | 275fcf6 | 2016-10-21 14:25:11 +0200 | [diff] [blame] | 276 | wdev->beacon_interval = 0; |
Michal Kazior | 9e0e296 | 2014-01-29 14:22:27 +0100 | [diff] [blame] | 277 | memset(&wdev->chandef, 0, sizeof(wdev->chandef)); |
Kyeyoon Park | fa9ffc7 | 2013-12-16 23:01:30 -0800 | [diff] [blame] | 278 | rdev_set_qos_map(rdev, dev, NULL); |
Vasanthakumar Thiagarajan | b35a51c | 2017-02-27 17:04:33 +0530 | [diff] [blame] | 279 | cfg80211_sched_dfs_chan_update(rdev); |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 280 | } |
| 281 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 282 | return err; |
| 283 | } |
| 284 | |
| 285 | int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev, |
| 286 | struct net_device *dev) |
| 287 | { |
| 288 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
| 289 | int err; |
| 290 | |
| 291 | wdev_lock(wdev); |
| 292 | err = __cfg80211_leave_mesh(rdev, dev); |
| 293 | wdev_unlock(wdev); |
| 294 | |
| 295 | return err; |
| 296 | } |