blob: 9546ad2105507f17d0743e49f8ecbee9c3129b31 [file] [log] [blame]
Johannes Berg29cbe682010-12-03 09:20:44 +01001#include <linux/ieee80211.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -04002#include <linux/export.h>
Johannes Berg29cbe682010-12-03 09:20:44 +01003#include <net/cfg80211.h>
Javier Cardonac93b5e72011-04-07 15:08:34 -07004#include "nl80211.h"
Johannes Berg29cbe682010-12-03 09:20:44 +01005#include "core.h"
Hila Gonene35e4d22012-06-27 17:19:42 +03006#include "rdev-ops.h"
Johannes Berg29cbe682010-12-03 09:20:44 +01007
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 Cardona0507e152011-08-09 16:45:10 -070017#define MESH_RANN_INTERVAL 5000
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +080018#define MESH_PATH_TO_ROOT_TIMEOUT 6000
19#define MESH_ROOT_INTERVAL 5000
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +080020#define MESH_ROOT_CONFIRMATION_INTERVAL 2000
Johannes Berg29cbe682010-12-03 09:20:44 +010021
22/*
23 * Minimum interval between two consecutive PREQs originated by the same
24 * interface
25 */
26#define MESH_PREQ_MIN_INT 10
Thomas Pedersendca7e942011-11-24 17:15:24 -080027#define MESH_PERR_MIN_INT 100
Johannes Berg29cbe682010-12-03 09:20:44 +010028#define MESH_DIAM_TRAVERSAL_TIME 50
29
Ashok Nagarajan55335132012-02-28 17:04:08 -080030#define MESH_RSSI_THRESHOLD 0
31
Johannes Berg29cbe682010-12-03 09:20:44 +010032/*
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 Cardonad299a1f2012-03-31 11:31:33 -070045#define MESH_SYNC_NEIGHBOR_OFFSET_MAX 50
Johannes Berg29cbe682010-12-03 09:20:44 +010046
Marco Porsch9bdbf042013-01-07 16:04:51 +010047#define MESH_DEFAULT_BEACON_INTERVAL 1000 /* in 1024 us units (=TUs) */
48#define MESH_DEFAULT_DTIM_PERIOD 2
Marco Porsch3b1c5a52013-01-07 16:04:52 +010049#define MESH_DEFAULT_AWAKE_WINDOW 10 /* in 1024 us units (=TUs) */
Marco Porsch9bdbf042013-01-07 16:04:51 +010050
Johannes Berg29cbe682010-12-03 09:20:44 +010051const struct mesh_config default_mesh_config = {
52 .dot11MeshRetryTimeout = MESH_RET_T,
53 .dot11MeshConfirmTimeout = MESH_CONF_T,
54 .dot11MeshHoldingTimeout = MESH_HOLD_T,
55 .dot11MeshMaxRetries = MESH_MAX_RETR,
56 .dot11MeshTTL = MESH_TTL,
57 .element_ttl = MESH_DEFAULT_ELEMENT_TTL,
58 .auto_open_plinks = true,
59 .dot11MeshMaxPeerLinks = MESH_MAX_ESTAB_PLINKS,
Javier Cardonad299a1f2012-03-31 11:31:33 -070060 .dot11MeshNbrOffsetMaxNeighbor = MESH_SYNC_NEIGHBOR_OFFSET_MAX,
Johannes Berg29cbe682010-12-03 09:20:44 +010061 .dot11MeshHWMPactivePathTimeout = MESH_PATH_TIMEOUT,
62 .dot11MeshHWMPpreqMinInterval = MESH_PREQ_MIN_INT,
Thomas Pedersendca7e942011-11-24 17:15:24 -080063 .dot11MeshHWMPperrMinInterval = MESH_PERR_MIN_INT,
Johannes Berg29cbe682010-12-03 09:20:44 +010064 .dot11MeshHWMPnetDiameterTraversalTime = MESH_DIAM_TRAVERSAL_TIME,
65 .dot11MeshHWMPmaxPREQretries = MESH_MAX_PREQ_RETRIES,
66 .path_refresh_time = MESH_PATH_REFRESH_TIME,
67 .min_discovery_timeout = MESH_MIN_DISCOVERY_TIMEOUT,
Javier Cardona0507e152011-08-09 16:45:10 -070068 .dot11MeshHWMPRannInterval = MESH_RANN_INTERVAL,
Javier Cardona16dd7262011-08-09 16:45:11 -070069 .dot11MeshGateAnnouncementProtocol = false,
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +080070 .dot11MeshForwarding = true,
Ashok Nagarajan55335132012-02-28 17:04:08 -080071 .rssi_threshold = MESH_RSSI_THRESHOLD,
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -070072 .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +080073 .dot11MeshHWMPactivePathToRootTimeout = MESH_PATH_TO_ROOT_TIMEOUT,
74 .dot11MeshHWMProotInterval = MESH_ROOT_INTERVAL,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +080075 .dot11MeshHWMPconfirmationInterval = MESH_ROOT_CONFIRMATION_INTERVAL,
Marco Porsch3b1c5a52013-01-07 16:04:52 +010076 .power_mode = NL80211_MESH_POWER_ACTIVE,
77 .dot11MeshAwakeWindowDuration = MESH_DEFAULT_AWAKE_WINDOW,
Johannes Berg29cbe682010-12-03 09:20:44 +010078};
79
Javier Cardonac80d5452010-12-16 17:37:49 -080080const struct mesh_setup default_mesh_setup = {
Johannes Bergcc1d2802012-05-16 23:50:20 +020081 /* cfg80211_join_mesh() will pick a channel if needed */
Javier Cardonad299a1f2012-03-31 11:31:33 -070082 .sync_method = IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET,
Javier Cardonac80d5452010-12-16 17:37:49 -080083 .path_sel_proto = IEEE80211_PATH_PROTOCOL_HWMP,
84 .path_metric = IEEE80211_PATH_METRIC_AIRTIME,
Colleen Twitty6e16d902013-05-08 11:45:59 -070085 .auth_id = 0, /* open */
Javier Cardona581a8b02011-04-07 15:08:27 -070086 .ie = NULL,
87 .ie_len = 0,
Javier Cardona5cff5e02011-04-07 15:08:29 -070088 .is_secure = false,
Thomas Pedersenbb2798d2013-03-04 13:06:10 -080089 .user_mpm = false,
Marco Porsch9bdbf042013-01-07 16:04:51 +010090 .beacon_interval = MESH_DEFAULT_BEACON_INTERVAL,
91 .dtim_period = MESH_DEFAULT_DTIM_PERIOD,
Javier Cardonac80d5452010-12-16 17:37:49 -080092};
Johannes Berg29cbe682010-12-03 09:20:44 +010093
94int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
95 struct net_device *dev,
Johannes Bergcc1d2802012-05-16 23:50:20 +020096 struct mesh_setup *setup,
Johannes Berg29cbe682010-12-03 09:20:44 +010097 const struct mesh_config *conf)
98{
99 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg29cbe682010-12-03 09:20:44 +0100100 int err;
101
102 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != IEEE80211_MAX_MESH_ID_LEN);
103
104 ASSERT_WDEV_LOCK(wdev);
105
106 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
107 return -EOPNOTSUPP;
108
Javier Cardona15d5dda2011-04-07 15:08:28 -0700109 if (!(rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
110 setup->is_secure)
111 return -EOPNOTSUPP;
112
Johannes Berg29cbe682010-12-03 09:20:44 +0100113 if (wdev->mesh_id_len)
114 return -EALREADY;
115
Javier Cardonac80d5452010-12-16 17:37:49 -0800116 if (!setup->mesh_id_len)
Johannes Berg29cbe682010-12-03 09:20:44 +0100117 return -EINVAL;
118
119 if (!rdev->ops->join_mesh)
120 return -EOPNOTSUPP;
121
Johannes Berg683b6d32012-11-08 21:25:48 +0100122 if (!setup->chandef.chan) {
Johannes Bergcc1d2802012-05-16 23:50:20 +0200123 /* if no channel explicitly given, use preset channel */
Johannes Berg683b6d32012-11-08 21:25:48 +0100124 setup->chandef = wdev->preset_chandef;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200125 }
126
Johannes Berg683b6d32012-11-08 21:25:48 +0100127 if (!setup->chandef.chan) {
Johannes Bergcc1d2802012-05-16 23:50:20 +0200128 /* if we don't have that either, use the first usable channel */
129 enum ieee80211_band band;
130
131 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
132 struct ieee80211_supported_band *sband;
133 struct ieee80211_channel *chan;
134 int i;
135
136 sband = rdev->wiphy.bands[band];
137 if (!sband)
138 continue;
139
140 for (i = 0; i < sband->n_channels; i++) {
141 chan = &sband->channels[i];
142 if (chan->flags & (IEEE80211_CHAN_NO_IBSS |
143 IEEE80211_CHAN_PASSIVE_SCAN |
144 IEEE80211_CHAN_DISABLED |
145 IEEE80211_CHAN_RADAR))
146 continue;
Johannes Berg683b6d32012-11-08 21:25:48 +0100147 setup->chandef.chan = chan;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200148 break;
149 }
150
Johannes Berg683b6d32012-11-08 21:25:48 +0100151 if (setup->chandef.chan)
Johannes Bergcc1d2802012-05-16 23:50:20 +0200152 break;
153 }
154
155 /* no usable channel ... */
Johannes Berg683b6d32012-11-08 21:25:48 +0100156 if (!setup->chandef.chan)
Johannes Bergcc1d2802012-05-16 23:50:20 +0200157 return -EINVAL;
158
Marco Porschda29d2a2012-12-03 11:23:37 +0100159 setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
160 setup->chandef.center_freq1 = setup->chandef.chan->center_freq;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200161 }
162
Johannes Berg683b6d32012-11-08 21:25:48 +0100163 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &setup->chandef))
Johannes Bergcc1d2802012-05-16 23:50:20 +0200164 return -EINVAL;
165
Johannes Berg683b6d32012-11-08 21:25:48 +0100166 err = cfg80211_can_use_chan(rdev, wdev, setup->chandef.chan,
Michal Kaziore4e32452012-06-29 12:47:08 +0200167 CHAN_MODE_SHARED);
168 if (err)
169 return err;
170
Hila Gonene35e4d22012-06-27 17:19:42 +0300171 err = rdev_join_mesh(rdev, dev, conf, setup);
Johannes Berg29cbe682010-12-03 09:20:44 +0100172 if (!err) {
Javier Cardonac80d5452010-12-16 17:37:49 -0800173 memcpy(wdev->ssid, setup->mesh_id, setup->mesh_id_len);
174 wdev->mesh_id_len = setup->mesh_id_len;
Johannes Berg683b6d32012-11-08 21:25:48 +0100175 wdev->channel = setup->chandef.chan;
Johannes Berg29cbe682010-12-03 09:20:44 +0100176 }
177
178 return err;
179}
180
181int cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
182 struct net_device *dev,
Johannes Bergcc1d2802012-05-16 23:50:20 +0200183 struct mesh_setup *setup,
Johannes Berg29cbe682010-12-03 09:20:44 +0100184 const struct mesh_config *conf)
185{
186 struct wireless_dev *wdev = dev->ieee80211_ptr;
187 int err;
188
Michal Kaziore4e32452012-06-29 12:47:08 +0200189 mutex_lock(&rdev->devlist_mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +0100190 wdev_lock(wdev);
Javier Cardonac80d5452010-12-16 17:37:49 -0800191 err = __cfg80211_join_mesh(rdev, dev, setup, conf);
Johannes Berg29cbe682010-12-03 09:20:44 +0100192 wdev_unlock(wdev);
Michal Kaziore4e32452012-06-29 12:47:08 +0200193 mutex_unlock(&rdev->devlist_mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +0100194
195 return err;
196}
197
Johannes Berg683b6d32012-11-08 21:25:48 +0100198int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev,
199 struct wireless_dev *wdev,
200 struct cfg80211_chan_def *chandef)
Johannes Bergcc1d2802012-05-16 23:50:20 +0200201{
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200202 int err;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200203
204 /*
205 * Workaround for libertas (only!), it puts the interface
206 * into mesh mode but doesn't implement join_mesh. Instead,
207 * it is configured via sysfs and then joins the mesh when
208 * you set the channel. Note that the libertas mesh isn't
209 * compatible with 802.11 mesh.
210 */
Johannes Berge8c9bd52012-06-06 08:18:22 +0200211 if (rdev->ops->libertas_set_mesh_channel) {
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100212 if (chandef->width != NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200213 return -EINVAL;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200214
215 if (!netif_running(wdev->netdev))
216 return -ENETDOWN;
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200217
Johannes Berg683b6d32012-11-08 21:25:48 +0100218 err = cfg80211_can_use_chan(rdev, wdev, chandef->chan,
Michal Kaziore4e32452012-06-29 12:47:08 +0200219 CHAN_MODE_SHARED);
220 if (err)
221 return err;
222
Hila Gonene35e4d22012-06-27 17:19:42 +0300223 err = rdev_libertas_set_mesh_channel(rdev, wdev->netdev,
Johannes Berg683b6d32012-11-08 21:25:48 +0100224 chandef->chan);
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200225 if (!err)
Johannes Berg683b6d32012-11-08 21:25:48 +0100226 wdev->channel = chandef->chan;
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200227
228 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200229 }
230
231 if (wdev->mesh_id_len)
232 return -EBUSY;
233
Johannes Berg683b6d32012-11-08 21:25:48 +0100234 wdev->preset_chandef = *chandef;
Johannes Bergcc1d2802012-05-16 23:50:20 +0200235 return 0;
236}
237
Johannes Berg29cbe682010-12-03 09:20:44 +0100238static int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
239 struct net_device *dev)
240{
241 struct wireless_dev *wdev = dev->ieee80211_ptr;
242 int err;
243
244 ASSERT_WDEV_LOCK(wdev);
245
246 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
247 return -EOPNOTSUPP;
248
249 if (!rdev->ops->leave_mesh)
250 return -EOPNOTSUPP;
251
252 if (!wdev->mesh_id_len)
253 return -ENOTCONN;
254
Hila Gonene35e4d22012-06-27 17:19:42 +0300255 err = rdev_leave_mesh(rdev, dev);
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200256 if (!err) {
Johannes Berg29cbe682010-12-03 09:20:44 +0100257 wdev->mesh_id_len = 0;
Michal Kaziorf4489eb2012-06-29 12:46:58 +0200258 wdev->channel = NULL;
259 }
260
Johannes Berg29cbe682010-12-03 09:20:44 +0100261 return err;
262}
263
264int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
265 struct net_device *dev)
266{
267 struct wireless_dev *wdev = dev->ieee80211_ptr;
268 int err;
269
270 wdev_lock(wdev);
271 err = __cfg80211_leave_mesh(rdev, dev);
272 wdev_unlock(wdev);
273
274 return err;
275}