cfg80211: Add support for QoS mapping
[linux-block.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
8e7c0538 21#define MESH_DEFAULT_PLINK_TIMEOUT 1800 /* timeout in seconds */
29cbe68c
JB
22
23/*
24 * Minimum interval between two consecutive PREQs originated by the same
25 * interface
26 */
27#define MESH_PREQ_MIN_INT 10
dca7e943 28#define MESH_PERR_MIN_INT 100
29cbe68c
JB
29#define MESH_DIAM_TRAVERSAL_TIME 50
30
55335137
AN
31#define MESH_RSSI_THRESHOLD 0
32
29cbe68c
JB
33/*
34 * A path will be refreshed if it is used PATH_REFRESH_TIME milliseconds
35 * before timing out. This way it will remain ACTIVE and no data frames
36 * will be unnecessarily held in the pending queue.
37 */
38#define MESH_PATH_REFRESH_TIME 1000
39#define MESH_MIN_DISCOVERY_TIMEOUT (2 * MESH_DIAM_TRAVERSAL_TIME)
40
41/* Default maximum number of established plinks per interface */
42#define MESH_MAX_ESTAB_PLINKS 32
43
44#define MESH_MAX_PREQ_RETRIES 4
45
d299a1f2 46#define MESH_SYNC_NEIGHBOR_OFFSET_MAX 50
29cbe68c 47
9bdbf04d
MP
48#define MESH_DEFAULT_BEACON_INTERVAL 1000 /* in 1024 us units (=TUs) */
49#define MESH_DEFAULT_DTIM_PERIOD 2
3b1c5a53 50#define MESH_DEFAULT_AWAKE_WINDOW 10 /* in 1024 us units (=TUs) */
9bdbf04d 51
29cbe68c
JB
52const struct mesh_config default_mesh_config = {
53 .dot11MeshRetryTimeout = MESH_RET_T,
54 .dot11MeshConfirmTimeout = MESH_CONF_T,
55 .dot11MeshHoldingTimeout = MESH_HOLD_T,
56 .dot11MeshMaxRetries = MESH_MAX_RETR,
57 .dot11MeshTTL = MESH_TTL,
58 .element_ttl = MESH_DEFAULT_ELEMENT_TTL,
59 .auto_open_plinks = true,
60 .dot11MeshMaxPeerLinks = MESH_MAX_ESTAB_PLINKS,
d299a1f2 61 .dot11MeshNbrOffsetMaxNeighbor = MESH_SYNC_NEIGHBOR_OFFSET_MAX,
29cbe68c
JB
62 .dot11MeshHWMPactivePathTimeout = MESH_PATH_TIMEOUT,
63 .dot11MeshHWMPpreqMinInterval = MESH_PREQ_MIN_INT,
dca7e943 64 .dot11MeshHWMPperrMinInterval = MESH_PERR_MIN_INT,
29cbe68c
JB
65 .dot11MeshHWMPnetDiameterTraversalTime = MESH_DIAM_TRAVERSAL_TIME,
66 .dot11MeshHWMPmaxPREQretries = MESH_MAX_PREQ_RETRIES,
67 .path_refresh_time = MESH_PATH_REFRESH_TIME,
68 .min_discovery_timeout = MESH_MIN_DISCOVERY_TIMEOUT,
0507e159 69 .dot11MeshHWMPRannInterval = MESH_RANN_INTERVAL,
16dd7267 70 .dot11MeshGateAnnouncementProtocol = false,
94f90656 71 .dot11MeshForwarding = true,
55335137 72 .rssi_threshold = MESH_RSSI_THRESHOLD,
70c33eaa 73 .ht_opmode = IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED,
ac1073a6
CYY
74 .dot11MeshHWMPactivePathToRootTimeout = MESH_PATH_TO_ROOT_TIMEOUT,
75 .dot11MeshHWMProotInterval = MESH_ROOT_INTERVAL,
728b19e5 76 .dot11MeshHWMPconfirmationInterval = MESH_ROOT_CONFIRMATION_INTERVAL,
3b1c5a53
MP
77 .power_mode = NL80211_MESH_POWER_ACTIVE,
78 .dot11MeshAwakeWindowDuration = MESH_DEFAULT_AWAKE_WINDOW,
8e7c0538 79 .plink_timeout = MESH_DEFAULT_PLINK_TIMEOUT,
29cbe68c
JB
80};
81
c80d545d 82const struct mesh_setup default_mesh_setup = {
cc1d2806 83 /* cfg80211_join_mesh() will pick a channel if needed */
d299a1f2 84 .sync_method = IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET,
c80d545d
JC
85 .path_sel_proto = IEEE80211_PATH_PROTOCOL_HWMP,
86 .path_metric = IEEE80211_PATH_METRIC_AIRTIME,
6e16d90b 87 .auth_id = 0, /* open */
581a8b0f
JC
88 .ie = NULL,
89 .ie_len = 0,
5cff5e01 90 .is_secure = false,
bb2798d4 91 .user_mpm = false,
9bdbf04d
MP
92 .beacon_interval = MESH_DEFAULT_BEACON_INTERVAL,
93 .dtim_period = MESH_DEFAULT_DTIM_PERIOD,
c80d545d 94};
29cbe68c
JB
95
96int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
97 struct net_device *dev,
cc1d2806 98 struct mesh_setup *setup,
29cbe68c
JB
99 const struct mesh_config *conf)
100{
101 struct wireless_dev *wdev = dev->ieee80211_ptr;
33dde2bf 102 u8 radar_detect_width = 0;
29cbe68c
JB
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
15d5dda6
JC
112 if (!(rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
113 setup->is_secure)
114 return -EOPNOTSUPP;
115
29cbe68c
JB
116 if (wdev->mesh_id_len)
117 return -EALREADY;
118
c80d545d 119 if (!setup->mesh_id_len)
29cbe68c
JB
120 return -EINVAL;
121
122 if (!rdev->ops->join_mesh)
123 return -EOPNOTSUPP;
124
683b6d3b 125 if (!setup->chandef.chan) {
cc1d2806 126 /* if no channel explicitly given, use preset channel */
683b6d3b 127 setup->chandef = wdev->preset_chandef;
cc1d2806
JB
128 }
129
683b6d3b 130 if (!setup->chandef.chan) {
cc1d2806
JB
131 /* if we don't have that either, use the first usable channel */
132 enum ieee80211_band band;
133
134 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
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];
8fe02e16 145 if (chan->flags & (IEEE80211_CHAN_NO_IR |
cc1d2806
JB
146 IEEE80211_CHAN_DISABLED |
147 IEEE80211_CHAN_RADAR))
148 continue;
683b6d3b 149 setup->chandef.chan = chan;
cc1d2806
JB
150 break;
151 }
152
683b6d3b 153 if (setup->chandef.chan)
cc1d2806
JB
154 break;
155 }
156
157 /* no usable channel ... */
683b6d3b 158 if (!setup->chandef.chan)
cc1d2806
JB
159 return -EINVAL;
160
da29d2a5
MP
161 setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
162 setup->chandef.center_freq1 = setup->chandef.chan->center_freq;
cc1d2806
JB
163 }
164
ffb3cf30
AN
165 /*
166 * check if basic rates are available otherwise use mandatory rates as
167 * basic rates
168 */
169 if (!setup->basic_rates) {
74608aca 170 enum nl80211_bss_scan_width scan_width;
ffb3cf30
AN
171 struct ieee80211_supported_band *sband =
172 rdev->wiphy.bands[setup->chandef.chan->band];
74608aca
SW
173 scan_width = cfg80211_chandef_to_scan_width(&setup->chandef);
174 setup->basic_rates = ieee80211_mandatory_rates(sband,
175 scan_width);
ffb3cf30
AN
176 }
177
683b6d3b 178 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &setup->chandef))
cc1d2806
JB
179 return -EINVAL;
180
33dde2bf
CYY
181 err = cfg80211_chandef_dfs_required(wdev->wiphy, &setup->chandef);
182 if (err < 0)
183 return err;
184 if (err)
185 radar_detect_width = BIT(setup->chandef.width);
186
187 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
188 setup->chandef.chan,
189 CHAN_MODE_SHARED,
190 radar_detect_width);
e4e32459
MK
191 if (err)
192 return err;
193
e35e4d28 194 err = rdev_join_mesh(rdev, dev, conf, setup);
29cbe68c 195 if (!err) {
c80d545d
JC
196 memcpy(wdev->ssid, setup->mesh_id, setup->mesh_id_len);
197 wdev->mesh_id_len = setup->mesh_id_len;
683b6d3b 198 wdev->channel = setup->chandef.chan;
29cbe68c
JB
199 }
200
201 return err;
202}
203
204int cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
205 struct net_device *dev,
cc1d2806 206 struct mesh_setup *setup,
29cbe68c
JB
207 const struct mesh_config *conf)
208{
209 struct wireless_dev *wdev = dev->ieee80211_ptr;
210 int err;
211
212 wdev_lock(wdev);
c80d545d 213 err = __cfg80211_join_mesh(rdev, dev, setup, conf);
29cbe68c
JB
214 wdev_unlock(wdev);
215
216 return err;
217}
218
683b6d3b
JB
219int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev,
220 struct wireless_dev *wdev,
221 struct cfg80211_chan_def *chandef)
cc1d2806 222{
f4489ebe 223 int err;
cc1d2806
JB
224
225 /*
226 * Workaround for libertas (only!), it puts the interface
227 * into mesh mode but doesn't implement join_mesh. Instead,
228 * it is configured via sysfs and then joins the mesh when
229 * you set the channel. Note that the libertas mesh isn't
230 * compatible with 802.11 mesh.
231 */
e8c9bd5b 232 if (rdev->ops->libertas_set_mesh_channel) {
3d9d1d66 233 if (chandef->width != NL80211_CHAN_WIDTH_20_NOHT)
e8c9bd5b 234 return -EINVAL;
cc1d2806
JB
235
236 if (!netif_running(wdev->netdev))
237 return -ENETDOWN;
f4489ebe 238
683b6d3b 239 err = cfg80211_can_use_chan(rdev, wdev, chandef->chan,
e4e32459
MK
240 CHAN_MODE_SHARED);
241 if (err)
242 return err;
243
e35e4d28 244 err = rdev_libertas_set_mesh_channel(rdev, wdev->netdev,
683b6d3b 245 chandef->chan);
f4489ebe 246 if (!err)
683b6d3b 247 wdev->channel = chandef->chan;
f4489ebe
MK
248
249 return err;
cc1d2806
JB
250 }
251
252 if (wdev->mesh_id_len)
253 return -EBUSY;
254
683b6d3b 255 wdev->preset_chandef = *chandef;
cc1d2806
JB
256 return 0;
257}
258
29cbe68c
JB
259static int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
260 struct net_device *dev)
261{
262 struct wireless_dev *wdev = dev->ieee80211_ptr;
263 int err;
264
265 ASSERT_WDEV_LOCK(wdev);
266
267 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
268 return -EOPNOTSUPP;
269
270 if (!rdev->ops->leave_mesh)
271 return -EOPNOTSUPP;
272
273 if (!wdev->mesh_id_len)
274 return -ENOTCONN;
275
e35e4d28 276 err = rdev_leave_mesh(rdev, dev);
f4489ebe 277 if (!err) {
29cbe68c 278 wdev->mesh_id_len = 0;
f4489ebe 279 wdev->channel = NULL;
fa9ffc74 280 rdev_set_qos_map(rdev, dev, NULL);
f4489ebe
MK
281 }
282
29cbe68c
JB
283 return err;
284}
285
286int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
287 struct net_device *dev)
288{
289 struct wireless_dev *wdev = dev->ieee80211_ptr;
290 int err;
291
292 wdev_lock(wdev);
293 err = __cfg80211_leave_mesh(rdev, dev);
294 wdev_unlock(wdev);
295
296 return err;
297}