]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/wireless/mesh.c
{cfg,nl,mac}80211: set beacon interval and DTIM period on mesh join
[mirror_ubuntu-artful-kernel.git] / net / wireless / mesh.c
CommitLineData
29cbe68c 1#include <linux/ieee80211.h>
bc3b2d7f 2#include <linux/export.h>
29cbe68c 3#include <net/cfg80211.h>
c93b5e71 4#include "nl80211.h"
29cbe68c 5#include "core.h"
e35e4d28 6#include "rdev-ops.h"
29cbe68c
JB
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
0507e159 17#define MESH_RANN_INTERVAL 5000
ac1073a6
CYY
18#define MESH_PATH_TO_ROOT_TIMEOUT 6000
19#define MESH_ROOT_INTERVAL 5000
728b19e5 20#define MESH_ROOT_CONFIRMATION_INTERVAL 2000
29cbe68c
JB
21
22/*
23 * Minimum interval between two consecutive PREQs originated by the same
24 * interface
25 */
26#define MESH_PREQ_MIN_INT 10
dca7e943 27#define MESH_PERR_MIN_INT 100
29cbe68c
JB
28#define MESH_DIAM_TRAVERSAL_TIME 50
29
55335137
AN
30#define MESH_RSSI_THRESHOLD 0
31
29cbe68c
JB
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
d299a1f2 45#define MESH_SYNC_NEIGHBOR_OFFSET_MAX 50
29cbe68c 46
9bdbf04d
MP
47#define MESH_DEFAULT_BEACON_INTERVAL 1000 /* in 1024 us units (=TUs) */
48#define MESH_DEFAULT_DTIM_PERIOD 2
49
29cbe68c
JB
50const struct mesh_config default_mesh_config = {
51 .dot11MeshRetryTimeout = MESH_RET_T,
52 .dot11MeshConfirmTimeout = MESH_CONF_T,
53 .dot11MeshHoldingTimeout = MESH_HOLD_T,
54 .dot11MeshMaxRetries = MESH_MAX_RETR,
55 .dot11MeshTTL = MESH_TTL,
56 .element_ttl = MESH_DEFAULT_ELEMENT_TTL,
57 .auto_open_plinks = true,
58 .dot11MeshMaxPeerLinks = MESH_MAX_ESTAB_PLINKS,
d299a1f2 59 .dot11MeshNbrOffsetMaxNeighbor = MESH_SYNC_NEIGHBOR_OFFSET_MAX,
29cbe68c
JB
60 .dot11MeshHWMPactivePathTimeout = MESH_PATH_TIMEOUT,
61 .dot11MeshHWMPpreqMinInterval = MESH_PREQ_MIN_INT,
dca7e943 62 .dot11MeshHWMPperrMinInterval = MESH_PERR_MIN_INT,
29cbe68c
JB
63 .dot11MeshHWMPnetDiameterTraversalTime = MESH_DIAM_TRAVERSAL_TIME,
64 .dot11MeshHWMPmaxPREQretries = MESH_MAX_PREQ_RETRIES,
65 .path_refresh_time = MESH_PATH_REFRESH_TIME,
66 .min_discovery_timeout = MESH_MIN_DISCOVERY_TIMEOUT,
0507e159 67 .dot11MeshHWMPRannInterval = MESH_RANN_INTERVAL,
16dd7267 68 .dot11MeshGateAnnouncementProtocol = false,
94f90656 69 .dot11MeshForwarding = true,
55335137 70 .rssi_threshold = MESH_RSSI_THRESHOLD,
70c33eaa 71 .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED,
ac1073a6
CYY
72 .dot11MeshHWMPactivePathToRootTimeout = MESH_PATH_TO_ROOT_TIMEOUT,
73 .dot11MeshHWMProotInterval = MESH_ROOT_INTERVAL,
728b19e5 74 .dot11MeshHWMPconfirmationInterval = MESH_ROOT_CONFIRMATION_INTERVAL,
29cbe68c
JB
75};
76
c80d545d 77const struct mesh_setup default_mesh_setup = {
cc1d2806 78 /* cfg80211_join_mesh() will pick a channel if needed */
d299a1f2 79 .sync_method = IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET,
c80d545d
JC
80 .path_sel_proto = IEEE80211_PATH_PROTOCOL_HWMP,
81 .path_metric = IEEE80211_PATH_METRIC_AIRTIME,
581a8b0f
JC
82 .ie = NULL,
83 .ie_len = 0,
5cff5e01 84 .is_secure = false,
9bdbf04d
MP
85 .beacon_interval = MESH_DEFAULT_BEACON_INTERVAL,
86 .dtim_period = MESH_DEFAULT_DTIM_PERIOD,
c80d545d 87};
29cbe68c
JB
88
89int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
90 struct net_device *dev,
cc1d2806 91 struct mesh_setup *setup,
29cbe68c
JB
92 const struct mesh_config *conf)
93{
94 struct wireless_dev *wdev = dev->ieee80211_ptr;
29cbe68c
JB
95 int err;
96
97 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN != IEEE80211_MAX_MESH_ID_LEN);
98
99 ASSERT_WDEV_LOCK(wdev);
100
101 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
102 return -EOPNOTSUPP;
103
15d5dda6
JC
104 if (!(rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
105 setup->is_secure)
106 return -EOPNOTSUPP;
107
29cbe68c
JB
108 if (wdev->mesh_id_len)
109 return -EALREADY;
110
c80d545d 111 if (!setup->mesh_id_len)
29cbe68c
JB
112 return -EINVAL;
113
114 if (!rdev->ops->join_mesh)
115 return -EOPNOTSUPP;
116
683b6d3b 117 if (!setup->chandef.chan) {
cc1d2806 118 /* if no channel explicitly given, use preset channel */
683b6d3b 119 setup->chandef = wdev->preset_chandef;
cc1d2806
JB
120 }
121
683b6d3b 122 if (!setup->chandef.chan) {
cc1d2806
JB
123 /* if we don't have that either, use the first usable channel */
124 enum ieee80211_band band;
125
126 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
127 struct ieee80211_supported_band *sband;
128 struct ieee80211_channel *chan;
129 int i;
130
131 sband = rdev->wiphy.bands[band];
132 if (!sband)
133 continue;
134
135 for (i = 0; i < sband->n_channels; i++) {
136 chan = &sband->channels[i];
137 if (chan->flags & (IEEE80211_CHAN_NO_IBSS |
138 IEEE80211_CHAN_PASSIVE_SCAN |
139 IEEE80211_CHAN_DISABLED |
140 IEEE80211_CHAN_RADAR))
141 continue;
683b6d3b 142 setup->chandef.chan = chan;
cc1d2806
JB
143 break;
144 }
145
683b6d3b 146 if (setup->chandef.chan)
cc1d2806
JB
147 break;
148 }
149
150 /* no usable channel ... */
683b6d3b 151 if (!setup->chandef.chan)
cc1d2806
JB
152 return -EINVAL;
153
da29d2a5
MP
154 setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
155 setup->chandef.center_freq1 = setup->chandef.chan->center_freq;
cc1d2806
JB
156 }
157
683b6d3b 158 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &setup->chandef))
cc1d2806
JB
159 return -EINVAL;
160
683b6d3b 161 err = cfg80211_can_use_chan(rdev, wdev, setup->chandef.chan,
e4e32459
MK
162 CHAN_MODE_SHARED);
163 if (err)
164 return err;
165
e35e4d28 166 err = rdev_join_mesh(rdev, dev, conf, setup);
29cbe68c 167 if (!err) {
c80d545d
JC
168 memcpy(wdev->ssid, setup->mesh_id, setup->mesh_id_len);
169 wdev->mesh_id_len = setup->mesh_id_len;
683b6d3b 170 wdev->channel = setup->chandef.chan;
29cbe68c
JB
171 }
172
173 return err;
174}
175
176int cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
177 struct net_device *dev,
cc1d2806 178 struct mesh_setup *setup,
29cbe68c
JB
179 const struct mesh_config *conf)
180{
181 struct wireless_dev *wdev = dev->ieee80211_ptr;
182 int err;
183
e4e32459 184 mutex_lock(&rdev->devlist_mtx);
29cbe68c 185 wdev_lock(wdev);
c80d545d 186 err = __cfg80211_join_mesh(rdev, dev, setup, conf);
29cbe68c 187 wdev_unlock(wdev);
e4e32459 188 mutex_unlock(&rdev->devlist_mtx);
29cbe68c
JB
189
190 return err;
191}
192
683b6d3b
JB
193int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev,
194 struct wireless_dev *wdev,
195 struct cfg80211_chan_def *chandef)
cc1d2806 196{
f4489ebe 197 int err;
cc1d2806
JB
198
199 /*
200 * Workaround for libertas (only!), it puts the interface
201 * into mesh mode but doesn't implement join_mesh. Instead,
202 * it is configured via sysfs and then joins the mesh when
203 * you set the channel. Note that the libertas mesh isn't
204 * compatible with 802.11 mesh.
205 */
e8c9bd5b 206 if (rdev->ops->libertas_set_mesh_channel) {
3d9d1d66 207 if (chandef->width != NL80211_CHAN_WIDTH_20_NOHT)
e8c9bd5b 208 return -EINVAL;
cc1d2806
JB
209
210 if (!netif_running(wdev->netdev))
211 return -ENETDOWN;
f4489ebe 212
683b6d3b 213 err = cfg80211_can_use_chan(rdev, wdev, chandef->chan,
e4e32459
MK
214 CHAN_MODE_SHARED);
215 if (err)
216 return err;
217
e35e4d28 218 err = rdev_libertas_set_mesh_channel(rdev, wdev->netdev,
683b6d3b 219 chandef->chan);
f4489ebe 220 if (!err)
683b6d3b 221 wdev->channel = chandef->chan;
f4489ebe
MK
222
223 return err;
cc1d2806
JB
224 }
225
226 if (wdev->mesh_id_len)
227 return -EBUSY;
228
683b6d3b 229 wdev->preset_chandef = *chandef;
cc1d2806
JB
230 return 0;
231}
232
c93b5e71
JC
233void cfg80211_notify_new_peer_candidate(struct net_device *dev,
234 const u8 *macaddr, const u8* ie, u8 ie_len, gfp_t gfp)
235{
236 struct wireless_dev *wdev = dev->ieee80211_ptr;
237
4ee3e063 238 trace_cfg80211_notify_new_peer_candidate(dev, macaddr);
c93b5e71
JC
239 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
240 return;
241
242 nl80211_send_new_peer_candidate(wiphy_to_dev(wdev->wiphy), dev,
243 macaddr, ie, ie_len, gfp);
244}
245EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
246
29cbe68c
JB
247static int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
248 struct net_device *dev)
249{
250 struct wireless_dev *wdev = dev->ieee80211_ptr;
251 int err;
252
253 ASSERT_WDEV_LOCK(wdev);
254
255 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
256 return -EOPNOTSUPP;
257
258 if (!rdev->ops->leave_mesh)
259 return -EOPNOTSUPP;
260
261 if (!wdev->mesh_id_len)
262 return -ENOTCONN;
263
e35e4d28 264 err = rdev_leave_mesh(rdev, dev);
f4489ebe 265 if (!err) {
29cbe68c 266 wdev->mesh_id_len = 0;
f4489ebe
MK
267 wdev->channel = NULL;
268 }
269
29cbe68c
JB
270 return err;
271}
272
273int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
274 struct net_device *dev)
275{
276 struct wireless_dev *wdev = dev->ieee80211_ptr;
277 int err;
278
279 wdev_lock(wdev);
280 err = __cfg80211_leave_mesh(rdev, dev);
281 wdev_unlock(wdev);
282
283 return err;
284}