Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1 | #include <linux/ieee80211.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 2 | #include <linux/export.h> |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 3 | #include <net/cfg80211.h> |
Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 4 | #include "nl80211.h" |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 5 | #include "core.h" |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 6 | #include "rdev-ops.h" |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 7 | |
| 8 | /* Default values, timeouts in ms */ |
| 9 | #define MESH_TTL 31 |
| 10 | #define MESH_DEFAULT_ELEMENT_TTL 31 |
| 11 | #define MESH_MAX_RETR 3 |
| 12 | #define MESH_RET_T 100 |
| 13 | #define MESH_CONF_T 100 |
| 14 | #define MESH_HOLD_T 100 |
| 15 | |
| 16 | #define MESH_PATH_TIMEOUT 5000 |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 17 | #define MESH_RANN_INTERVAL 5000 |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 18 | #define MESH_PATH_TO_ROOT_TIMEOUT 6000 |
| 19 | #define MESH_ROOT_INTERVAL 5000 |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 20 | #define MESH_ROOT_CONFIRMATION_INTERVAL 2000 |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 21 | |
| 22 | /* |
| 23 | * Minimum interval between two consecutive PREQs originated by the same |
| 24 | * interface |
| 25 | */ |
| 26 | #define MESH_PREQ_MIN_INT 10 |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 27 | #define MESH_PERR_MIN_INT 100 |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 28 | #define MESH_DIAM_TRAVERSAL_TIME 50 |
| 29 | |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 30 | #define MESH_RSSI_THRESHOLD 0 |
| 31 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 32 | /* |
| 33 | * A path will be refreshed if it is used PATH_REFRESH_TIME milliseconds |
| 34 | * before timing out. This way it will remain ACTIVE and no data frames |
| 35 | * will be unnecessarily held in the pending queue. |
| 36 | */ |
| 37 | #define MESH_PATH_REFRESH_TIME 1000 |
| 38 | #define MESH_MIN_DISCOVERY_TIMEOUT (2 * MESH_DIAM_TRAVERSAL_TIME) |
| 39 | |
| 40 | /* Default maximum number of established plinks per interface */ |
| 41 | #define MESH_MAX_ESTAB_PLINKS 32 |
| 42 | |
| 43 | #define MESH_MAX_PREQ_RETRIES 4 |
| 44 | |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 45 | #define MESH_SYNC_NEIGHBOR_OFFSET_MAX 50 |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 46 | |
| 47 | const struct mesh_config default_mesh_config = { |
| 48 | .dot11MeshRetryTimeout = MESH_RET_T, |
| 49 | .dot11MeshConfirmTimeout = MESH_CONF_T, |
| 50 | .dot11MeshHoldingTimeout = MESH_HOLD_T, |
| 51 | .dot11MeshMaxRetries = MESH_MAX_RETR, |
| 52 | .dot11MeshTTL = MESH_TTL, |
| 53 | .element_ttl = MESH_DEFAULT_ELEMENT_TTL, |
| 54 | .auto_open_plinks = true, |
| 55 | .dot11MeshMaxPeerLinks = MESH_MAX_ESTAB_PLINKS, |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 56 | .dot11MeshNbrOffsetMaxNeighbor = MESH_SYNC_NEIGHBOR_OFFSET_MAX, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 57 | .dot11MeshHWMPactivePathTimeout = MESH_PATH_TIMEOUT, |
| 58 | .dot11MeshHWMPpreqMinInterval = MESH_PREQ_MIN_INT, |
Thomas Pedersen | dca7e94 | 2011-11-24 17:15:24 -0800 | [diff] [blame] | 59 | .dot11MeshHWMPperrMinInterval = MESH_PERR_MIN_INT, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 60 | .dot11MeshHWMPnetDiameterTraversalTime = MESH_DIAM_TRAVERSAL_TIME, |
| 61 | .dot11MeshHWMPmaxPREQretries = MESH_MAX_PREQ_RETRIES, |
| 62 | .path_refresh_time = MESH_PATH_REFRESH_TIME, |
| 63 | .min_discovery_timeout = MESH_MIN_DISCOVERY_TIMEOUT, |
Javier Cardona | 0507e15 | 2011-08-09 16:45:10 -0700 | [diff] [blame] | 64 | .dot11MeshHWMPRannInterval = MESH_RANN_INTERVAL, |
Javier Cardona | 16dd726 | 2011-08-09 16:45:11 -0700 | [diff] [blame] | 65 | .dot11MeshGateAnnouncementProtocol = false, |
Chun-Yeow Yeoh | 94f9065 | 2012-01-21 01:02:16 +0800 | [diff] [blame] | 66 | .dot11MeshForwarding = true, |
Ashok Nagarajan | 5533513 | 2012-02-28 17:04:08 -0800 | [diff] [blame] | 67 | .rssi_threshold = MESH_RSSI_THRESHOLD, |
Ashok Nagarajan | 70c33ea | 2012-04-30 14:20:32 -0700 | [diff] [blame] | 68 | .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED, |
Chun-Yeow Yeoh | ac1073a | 2012-06-14 02:06:06 +0800 | [diff] [blame] | 69 | .dot11MeshHWMPactivePathToRootTimeout = MESH_PATH_TO_ROOT_TIMEOUT, |
| 70 | .dot11MeshHWMProotInterval = MESH_ROOT_INTERVAL, |
Chun-Yeow Yeoh | 728b19e | 2012-06-14 02:06:10 +0800 | [diff] [blame] | 71 | .dot11MeshHWMPconfirmationInterval = MESH_ROOT_CONFIRMATION_INTERVAL, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 72 | }; |
| 73 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 74 | const struct mesh_setup default_mesh_setup = { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 75 | /* cfg80211_join_mesh() will pick a channel if needed */ |
Javier Cardona | d299a1f | 2012-03-31 11:31:33 -0700 | [diff] [blame] | 76 | .sync_method = IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET, |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 77 | .path_sel_proto = IEEE80211_PATH_PROTOCOL_HWMP, |
| 78 | .path_metric = IEEE80211_PATH_METRIC_AIRTIME, |
Javier Cardona | 581a8b0 | 2011-04-07 15:08:27 -0700 | [diff] [blame] | 79 | .ie = NULL, |
| 80 | .ie_len = 0, |
Javier Cardona | 5cff5e0 | 2011-04-07 15:08:29 -0700 | [diff] [blame] | 81 | .is_secure = false, |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 82 | }; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 83 | |
| 84 | int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev, |
| 85 | struct net_device *dev, |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 86 | struct mesh_setup *setup, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 87 | const struct mesh_config *conf) |
| 88 | { |
| 89 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 90 | int err; |
| 91 | |
| 92 | BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != IEEE80211_MAX_MESH_ID_LEN); |
| 93 | |
| 94 | ASSERT_WDEV_LOCK(wdev); |
| 95 | |
| 96 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) |
| 97 | return -EOPNOTSUPP; |
| 98 | |
Javier Cardona | 15d5dda | 2011-04-07 15:08:28 -0700 | [diff] [blame] | 99 | if (!(rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) && |
| 100 | setup->is_secure) |
| 101 | return -EOPNOTSUPP; |
| 102 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 103 | if (wdev->mesh_id_len) |
| 104 | return -EALREADY; |
| 105 | |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 106 | if (!setup->mesh_id_len) |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 107 | return -EINVAL; |
| 108 | |
| 109 | if (!rdev->ops->join_mesh) |
| 110 | return -EOPNOTSUPP; |
| 111 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 112 | if (!setup->chandef.chan) { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 113 | /* if no channel explicitly given, use preset channel */ |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 114 | setup->chandef = wdev->preset_chandef; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 117 | if (!setup->chandef.chan) { |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 118 | /* if we don't have that either, use the first usable channel */ |
| 119 | enum ieee80211_band band; |
| 120 | |
| 121 | for (band = 0; band < IEEE80211_NUM_BANDS; band++) { |
| 122 | struct ieee80211_supported_band *sband; |
| 123 | struct ieee80211_channel *chan; |
| 124 | int i; |
| 125 | |
| 126 | sband = rdev->wiphy.bands[band]; |
| 127 | if (!sband) |
| 128 | continue; |
| 129 | |
| 130 | for (i = 0; i < sband->n_channels; i++) { |
| 131 | chan = &sband->channels[i]; |
| 132 | if (chan->flags & (IEEE80211_CHAN_NO_IBSS | |
| 133 | IEEE80211_CHAN_PASSIVE_SCAN | |
| 134 | IEEE80211_CHAN_DISABLED | |
| 135 | IEEE80211_CHAN_RADAR)) |
| 136 | continue; |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 137 | setup->chandef.chan = chan; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 138 | break; |
| 139 | } |
| 140 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 141 | if (setup->chandef.chan) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 142 | break; |
| 143 | } |
| 144 | |
| 145 | /* no usable channel ... */ |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 146 | if (!setup->chandef.chan) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 147 | return -EINVAL; |
| 148 | |
Marco Porsch | da29d2a | 2012-12-03 11:23:37 +0100 | [diff] [blame] | 149 | setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT; |
| 150 | setup->chandef.center_freq1 = setup->chandef.chan->center_freq; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 151 | } |
| 152 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 153 | if (!cfg80211_reg_can_beacon(&rdev->wiphy, &setup->chandef)) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 154 | return -EINVAL; |
| 155 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 156 | err = cfg80211_can_use_chan(rdev, wdev, setup->chandef.chan, |
Michal Kazior | e4e3245 | 2012-06-29 12:47:08 +0200 | [diff] [blame] | 157 | CHAN_MODE_SHARED); |
| 158 | if (err) |
| 159 | return err; |
| 160 | |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 161 | err = rdev_join_mesh(rdev, dev, conf, setup); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 162 | if (!err) { |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 163 | memcpy(wdev->ssid, setup->mesh_id, setup->mesh_id_len); |
| 164 | wdev->mesh_id_len = setup->mesh_id_len; |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 165 | wdev->channel = setup->chandef.chan; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | return err; |
| 169 | } |
| 170 | |
| 171 | int cfg80211_join_mesh(struct cfg80211_registered_device *rdev, |
| 172 | struct net_device *dev, |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 173 | struct mesh_setup *setup, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 174 | const struct mesh_config *conf) |
| 175 | { |
| 176 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
| 177 | int err; |
| 178 | |
Michal Kazior | e4e3245 | 2012-06-29 12:47:08 +0200 | [diff] [blame] | 179 | mutex_lock(&rdev->devlist_mtx); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 180 | wdev_lock(wdev); |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 181 | err = __cfg80211_join_mesh(rdev, dev, setup, conf); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 182 | wdev_unlock(wdev); |
Michal Kazior | e4e3245 | 2012-06-29 12:47:08 +0200 | [diff] [blame] | 183 | mutex_unlock(&rdev->devlist_mtx); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 184 | |
| 185 | return err; |
| 186 | } |
| 187 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 188 | int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev, |
| 189 | struct wireless_dev *wdev, |
| 190 | struct cfg80211_chan_def *chandef) |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 191 | { |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 192 | int err; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 193 | |
| 194 | /* |
| 195 | * Workaround for libertas (only!), it puts the interface |
| 196 | * into mesh mode but doesn't implement join_mesh. Instead, |
| 197 | * it is configured via sysfs and then joins the mesh when |
| 198 | * you set the channel. Note that the libertas mesh isn't |
| 199 | * compatible with 802.11 mesh. |
| 200 | */ |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 201 | if (rdev->ops->libertas_set_mesh_channel) { |
Johannes Berg | 3d9d1d6 | 2012-11-08 23:14:50 +0100 | [diff] [blame] | 202 | if (chandef->width != NL80211_CHAN_WIDTH_20_NOHT) |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 203 | return -EINVAL; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 204 | |
| 205 | if (!netif_running(wdev->netdev)) |
| 206 | return -ENETDOWN; |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 207 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 208 | err = cfg80211_can_use_chan(rdev, wdev, chandef->chan, |
Michal Kazior | e4e3245 | 2012-06-29 12:47:08 +0200 | [diff] [blame] | 209 | CHAN_MODE_SHARED); |
| 210 | if (err) |
| 211 | return err; |
| 212 | |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 213 | err = rdev_libertas_set_mesh_channel(rdev, wdev->netdev, |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 214 | chandef->chan); |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 215 | if (!err) |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 216 | wdev->channel = chandef->chan; |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 217 | |
| 218 | return err; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | if (wdev->mesh_id_len) |
| 222 | return -EBUSY; |
| 223 | |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 224 | wdev->preset_chandef = *chandef; |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 225 | return 0; |
| 226 | } |
| 227 | |
Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 228 | void cfg80211_notify_new_peer_candidate(struct net_device *dev, |
| 229 | const u8 *macaddr, const u8* ie, u8 ie_len, gfp_t gfp) |
| 230 | { |
| 231 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
| 232 | |
Beni Lev | 4ee3e06 | 2012-08-27 12:49:39 +0300 | [diff] [blame] | 233 | trace_cfg80211_notify_new_peer_candidate(dev, macaddr); |
Javier Cardona | c93b5e7 | 2011-04-07 15:08:34 -0700 | [diff] [blame] | 234 | if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT)) |
| 235 | return; |
| 236 | |
| 237 | nl80211_send_new_peer_candidate(wiphy_to_dev(wdev->wiphy), dev, |
| 238 | macaddr, ie, ie_len, gfp); |
| 239 | } |
| 240 | EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate); |
| 241 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 242 | static int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev, |
| 243 | struct net_device *dev) |
| 244 | { |
| 245 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
| 246 | int err; |
| 247 | |
| 248 | ASSERT_WDEV_LOCK(wdev); |
| 249 | |
| 250 | if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) |
| 251 | return -EOPNOTSUPP; |
| 252 | |
| 253 | if (!rdev->ops->leave_mesh) |
| 254 | return -EOPNOTSUPP; |
| 255 | |
| 256 | if (!wdev->mesh_id_len) |
| 257 | return -ENOTCONN; |
| 258 | |
Hila Gonen | e35e4d2 | 2012-06-27 17:19:42 +0300 | [diff] [blame] | 259 | err = rdev_leave_mesh(rdev, dev); |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 260 | if (!err) { |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 261 | wdev->mesh_id_len = 0; |
Michal Kazior | f4489eb | 2012-06-29 12:46:58 +0200 | [diff] [blame] | 262 | wdev->channel = NULL; |
| 263 | } |
| 264 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 265 | return err; |
| 266 | } |
| 267 | |
| 268 | int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev, |
| 269 | struct net_device *dev) |
| 270 | { |
| 271 | struct wireless_dev *wdev = dev->ieee80211_ptr; |
| 272 | int err; |
| 273 | |
| 274 | wdev_lock(wdev); |
| 275 | err = __cfg80211_leave_mesh(rdev, dev); |
| 276 | wdev_unlock(wdev); |
| 277 | |
| 278 | return err; |
| 279 | } |