mac80211: constify IE parsing
[deliverable/linux.git] / net / mac80211 / mesh_hwmp.c
CommitLineData
050ac52c 1/*
264d9b7d 2 * Copyright (c) 2008, 2009 open80211s Ltd.
050ac52c
LCC
3 * Author: Luis Carlos Cobo <luisca@cozybit.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
5a0e3ad6 10#include <linux/slab.h>
888d04df 11#include <linux/etherdevice.h>
d26ad377 12#include <asm/unaligned.h>
2cca397f 13#include "wme.h"
050ac52c
LCC
14#include "mesh.h"
15
050ac52c
LCC
16#define TEST_FRAME_LEN 8192
17#define MAX_METRIC 0xffffffff
18#define ARITH_SHIFT 8
19
050ac52c
LCC
20#define MAX_PREQ_QUEUE_LEN 64
21
22/* Destination only */
23#define MP_F_DO 0x1
24/* Reply and forward */
25#define MP_F_RF 0x2
d611f062
RP
26/* Unknown Sequence Number */
27#define MP_F_USN 0x01
28/* Reason code Present */
29#define MP_F_RCODE 0x02
050ac52c 30
90a5e169
RP
31static void mesh_queue_preq(struct mesh_path *, u8);
32
4a3cb702 33static inline u32 u32_field_get(const u8 *preq_elem, int offset, bool ae)
a00de5d0
LCC
34{
35 if (ae)
36 offset += 6;
ae7245cb 37 return get_unaligned_le32(preq_elem + offset);
a00de5d0
LCC
38}
39
4a3cb702 40static inline u32 u16_field_get(const u8 *preq_elem, int offset, bool ae)
d611f062
RP
41{
42 if (ae)
43 offset += 6;
44 return get_unaligned_le16(preq_elem + offset);
45}
46
050ac52c 47/* HWMP IE processing macros */
a00de5d0
LCC
48#define AE_F (1<<6)
49#define AE_F_SET(x) (*x & AE_F)
50#define PREQ_IE_FLAGS(x) (*(x))
51#define PREQ_IE_HOPCOUNT(x) (*(x + 1))
52#define PREQ_IE_TTL(x) (*(x + 2))
53#define PREQ_IE_PREQ_ID(x) u32_field_get(x, 3, 0)
54#define PREQ_IE_ORIG_ADDR(x) (x + 7)
497888cf
PC
55#define PREQ_IE_ORIG_SN(x) u32_field_get(x, 13, 0)
56#define PREQ_IE_LIFETIME(x) u32_field_get(x, 17, AE_F_SET(x))
57#define PREQ_IE_METRIC(x) u32_field_get(x, 21, AE_F_SET(x))
d19b3bf6
RP
58#define PREQ_IE_TARGET_F(x) (*(AE_F_SET(x) ? x + 32 : x + 26))
59#define PREQ_IE_TARGET_ADDR(x) (AE_F_SET(x) ? x + 33 : x + 27)
497888cf 60#define PREQ_IE_TARGET_SN(x) u32_field_get(x, 33, AE_F_SET(x))
a00de5d0
LCC
61
62
63#define PREP_IE_FLAGS(x) PREQ_IE_FLAGS(x)
64#define PREP_IE_HOPCOUNT(x) PREQ_IE_HOPCOUNT(x)
65#define PREP_IE_TTL(x) PREQ_IE_TTL(x)
25d49e4d
TP
66#define PREP_IE_ORIG_ADDR(x) (AE_F_SET(x) ? x + 27 : x + 21)
67#define PREP_IE_ORIG_SN(x) u32_field_get(x, 27, AE_F_SET(x))
497888cf
PC
68#define PREP_IE_LIFETIME(x) u32_field_get(x, 13, AE_F_SET(x))
69#define PREP_IE_METRIC(x) u32_field_get(x, 17, AE_F_SET(x))
25d49e4d
TP
70#define PREP_IE_TARGET_ADDR(x) (x + 3)
71#define PREP_IE_TARGET_SN(x) u32_field_get(x, 9, 0)
a00de5d0 72
d611f062 73#define PERR_IE_TTL(x) (*(x))
d19b3bf6
RP
74#define PERR_IE_TARGET_FLAGS(x) (*(x + 2))
75#define PERR_IE_TARGET_ADDR(x) (x + 3)
497888cf
PC
76#define PERR_IE_TARGET_SN(x) u32_field_get(x, 9, 0)
77#define PERR_IE_TARGET_RCODE(x) u16_field_get(x, 13, 0)
050ac52c 78
050ac52c 79#define MSEC_TO_TU(x) (x*1000/1024)
d2a079fd
CYY
80#define SN_GT(x, y) ((s32)(y - x) < 0)
81#define SN_LT(x, y) ((s32)(x - y) < 0)
050ac52c
LCC
82
83#define net_traversal_jiffies(s) \
472dbc45 84 msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime)
050ac52c 85#define default_lifetime(s) \
472dbc45 86 MSEC_TO_TU(s->u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout)
050ac52c 87#define min_preq_int_jiff(s) \
472dbc45
JB
88 (msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval))
89#define max_preq_retries(s) (s->u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries)
050ac52c 90#define disc_timeout_jiff(s) \
472dbc45 91 msecs_to_jiffies(sdata->u.mesh.mshcfg.min_discovery_timeout)
728b19e5
CYY
92#define root_path_confirmation_jiffies(s) \
93 msecs_to_jiffies(sdata->u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval)
050ac52c
LCC
94
95enum mpath_frame_type {
96 MPATH_PREQ = 0,
97 MPATH_PREP,
90a5e169
RP
98 MPATH_PERR,
99 MPATH_RANN
050ac52c
LCC
100};
101
15ff6365
JB
102static const u8 broadcast_addr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
103
050ac52c 104static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags,
4a3cb702
JB
105 const u8 *orig_addr, __le32 orig_sn,
106 u8 target_flags, const u8 *target,
107 __le32 target_sn, const u8 *da,
108 u8 hop_count, u8 ttl,
109 __le32 lifetime, __le32 metric,
110 __le32 preq_id,
111 struct ieee80211_sub_if_data *sdata)
050ac52c 112{
f698d856 113 struct ieee80211_local *local = sdata->local;
3b69a9c5 114 struct sk_buff *skb;
050ac52c 115 struct ieee80211_mgmt *mgmt;
3b69a9c5
TP
116 u8 *pos, ie_len;
117 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.mesh_action) +
118 sizeof(mgmt->u.action.u.mesh_action);
050ac52c 119
65e8b0cc 120 skb = dev_alloc_skb(local->tx_headroom +
3b69a9c5
TP
121 hdr_len +
122 2 + 37); /* max HWMP IE */
050ac52c
LCC
123 if (!skb)
124 return -1;
65e8b0cc 125 skb_reserve(skb, local->tx_headroom);
3b69a9c5
TP
126 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
127 memset(mgmt, 0, hdr_len);
e7827a70
HH
128 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
129 IEEE80211_STYPE_ACTION);
050ac52c
LCC
130
131 memcpy(mgmt->da, da, ETH_ALEN);
47846c9b 132 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
90a5e169 133 /* BSSID == SA */
47846c9b 134 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
25d49e4d
TP
135 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION;
136 mgmt->u.action.u.mesh_action.action_code =
137 WLAN_MESH_ACTION_HWMP_PATH_SELECTION;
050ac52c
LCC
138
139 switch (action) {
140 case MPATH_PREQ:
bdcbd8e0 141 mhwmp_dbg(sdata, "sending PREQ to %pM\n", target);
050ac52c
LCC
142 ie_len = 37;
143 pos = skb_put(skb, 2 + ie_len);
144 *pos++ = WLAN_EID_PREQ;
145 break;
146 case MPATH_PREP:
bdcbd8e0 147 mhwmp_dbg(sdata, "sending PREP to %pM\n", target);
050ac52c
LCC
148 ie_len = 31;
149 pos = skb_put(skb, 2 + ie_len);
150 *pos++ = WLAN_EID_PREP;
151 break;
90a5e169 152 case MPATH_RANN:
bdcbd8e0 153 mhwmp_dbg(sdata, "sending RANN from %pM\n", orig_addr);
90a5e169
RP
154 ie_len = sizeof(struct ieee80211_rann_ie);
155 pos = skb_put(skb, 2 + ie_len);
156 *pos++ = WLAN_EID_RANN;
157 break;
050ac52c 158 default:
812714d7 159 kfree_skb(skb);
050ac52c
LCC
160 return -ENOTSUPP;
161 break;
162 }
163 *pos++ = ie_len;
164 *pos++ = flags;
165 *pos++ = hop_count;
166 *pos++ = ttl;
25d49e4d
TP
167 if (action == MPATH_PREP) {
168 memcpy(pos, target, ETH_ALEN);
169 pos += ETH_ALEN;
170 memcpy(pos, &target_sn, 4);
050ac52c 171 pos += 4;
25d49e4d
TP
172 } else {
173 if (action == MPATH_PREQ) {
174 memcpy(pos, &preq_id, 4);
175 pos += 4;
176 }
177 memcpy(pos, orig_addr, ETH_ALEN);
178 pos += ETH_ALEN;
179 memcpy(pos, &orig_sn, 4);
90a5e169
RP
180 pos += 4;
181 }
25d49e4d
TP
182 memcpy(pos, &lifetime, 4); /* interval for RANN */
183 pos += 4;
050ac52c
LCC
184 memcpy(pos, &metric, 4);
185 pos += 4;
186 if (action == MPATH_PREQ) {
25d49e4d 187 *pos++ = 1; /* destination count */
d19b3bf6 188 *pos++ = target_flags;
d19b3bf6 189 memcpy(pos, target, ETH_ALEN);
90a5e169 190 pos += ETH_ALEN;
d19b3bf6 191 memcpy(pos, &target_sn, 4);
25d49e4d
TP
192 pos += 4;
193 } else if (action == MPATH_PREP) {
194 memcpy(pos, orig_addr, ETH_ALEN);
195 pos += ETH_ALEN;
196 memcpy(pos, &orig_sn, 4);
197 pos += 4;
90a5e169 198 }
050ac52c 199
62ae67be 200 ieee80211_tx_skb(sdata, skb);
050ac52c
LCC
201 return 0;
202}
203
2cca397f
JC
204
205/* Headroom is not adjusted. Caller should ensure that skb has sufficient
206 * headroom in case the frame is encrypted. */
207static void prepare_frame_for_deferred_tx(struct ieee80211_sub_if_data *sdata,
208 struct sk_buff *skb)
209{
2cca397f 210 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3f52b7e3 211 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2cca397f
JC
212
213 skb_set_mac_header(skb, 0);
214 skb_set_network_header(skb, 0);
215 skb_set_transport_header(skb, 0);
216
217 /* Send all internal mgmt frames on VO. Accordingly set TID to 7. */
218 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
219 skb->priority = 7;
220
221 info->control.vif = &sdata->vif;
9cbbffe2 222 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2154c81c 223 ieee80211_set_qos_hdr(sdata, skb);
3f52b7e3 224 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
2cca397f
JC
225}
226
050ac52c 227/**
75ea719c 228 * mesh_path_error_tx - Sends a PERR mesh management frame
050ac52c 229 *
75ea719c 230 * @ttl: allowed remaining hops
d19b3bf6
RP
231 * @target: broken destination
232 * @target_sn: SN of the broken destination
233 * @target_rcode: reason code for this PERR
050ac52c 234 * @ra: node this frame is addressed to
75ea719c 235 * @sdata: local mesh subif
2cca397f
JC
236 *
237 * Note: This function may be called with driver locks taken that the driver
238 * also acquires in the TX path. To avoid a deadlock we don't transmit the
239 * frame directly but add it to the pending queue instead.
050ac52c 240 */
4a3cb702 241int mesh_path_error_tx(u8 ttl, const u8 *target, __le32 target_sn,
15ff6365
JB
242 __le16 target_rcode, const u8 *ra,
243 struct ieee80211_sub_if_data *sdata)
050ac52c 244{
f698d856 245 struct ieee80211_local *local = sdata->local;
3b69a9c5 246 struct sk_buff *skb;
dca7e943 247 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
050ac52c 248 struct ieee80211_mgmt *mgmt;
3b69a9c5
TP
249 u8 *pos, ie_len;
250 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.mesh_action) +
251 sizeof(mgmt->u.action.u.mesh_action);
050ac52c 252
dca7e943
TP
253 if (time_before(jiffies, ifmsh->next_perr))
254 return -EAGAIN;
255
65e8b0cc 256 skb = dev_alloc_skb(local->tx_headroom +
8680451f
BC
257 IEEE80211_ENCRYPT_HEADROOM +
258 IEEE80211_ENCRYPT_TAILROOM +
3b69a9c5
TP
259 hdr_len +
260 2 + 15 /* PERR IE */);
050ac52c
LCC
261 if (!skb)
262 return -1;
8680451f 263 skb_reserve(skb, local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM);
3b69a9c5
TP
264 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
265 memset(mgmt, 0, hdr_len);
e7827a70
HH
266 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
267 IEEE80211_STYPE_ACTION);
050ac52c
LCC
268
269 memcpy(mgmt->da, ra, ETH_ALEN);
47846c9b 270 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
25d49e4d
TP
271 /* BSSID == SA */
272 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
273 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION;
274 mgmt->u.action.u.mesh_action.action_code =
275 WLAN_MESH_ACTION_HWMP_PATH_SELECTION;
d611f062 276 ie_len = 15;
050ac52c
LCC
277 pos = skb_put(skb, 2 + ie_len);
278 *pos++ = WLAN_EID_PERR;
279 *pos++ = ie_len;
d611f062 280 /* ttl */
45904f21 281 *pos++ = ttl;
050ac52c
LCC
282 /* number of destinations */
283 *pos++ = 1;
d611f062
RP
284 /*
285 * flags bit, bit 1 is unset if we know the sequence number and
286 * bit 2 is set if we have a reason code
287 */
288 *pos = 0;
d19b3bf6 289 if (!target_sn)
d611f062 290 *pos |= MP_F_USN;
d19b3bf6 291 if (target_rcode)
d611f062
RP
292 *pos |= MP_F_RCODE;
293 pos++;
d19b3bf6 294 memcpy(pos, target, ETH_ALEN);
050ac52c 295 pos += ETH_ALEN;
d19b3bf6 296 memcpy(pos, &target_sn, 4);
d611f062 297 pos += 4;
d19b3bf6 298 memcpy(pos, &target_rcode, 2);
050ac52c 299
2cca397f
JC
300 /* see note in function header */
301 prepare_frame_for_deferred_tx(sdata, skb);
dca7e943
TP
302 ifmsh->next_perr = TU_TO_EXP_TIME(
303 ifmsh->mshcfg.dot11MeshHWMPperrMinInterval);
2cca397f 304 ieee80211_add_pending_skb(local, skb);
050ac52c
LCC
305 return 0;
306}
307
bfc32e6a 308void ieee80211s_update_metric(struct ieee80211_local *local,
35b3fe1c 309 struct sta_info *sta, struct sk_buff *skb)
bfc32e6a
JC
310{
311 struct ieee80211_tx_info *txinfo = IEEE80211_SKB_CB(skb);
312 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
313 int failed;
314
315 if (!ieee80211_is_data(hdr->frame_control))
316 return;
317
318 failed = !(txinfo->flags & IEEE80211_TX_STAT_ACK);
319
320 /* moving average, scaled to 100 */
35b3fe1c
JC
321 sta->fail_avg = ((80 * sta->fail_avg + 5) / 100 + 20 * failed);
322 if (sta->fail_avg > 95)
323 mesh_plink_broken(sta);
bfc32e6a
JC
324}
325
050ac52c
LCC
326static u32 airtime_link_metric_get(struct ieee80211_local *local,
327 struct sta_info *sta)
328{
6b62bf32 329 struct rate_info rinfo;
050ac52c
LCC
330 /* This should be adjusted for each device */
331 int device_constant = 1 << ARITH_SHIFT;
332 int test_frame_len = TEST_FRAME_LEN << ARITH_SHIFT;
333 int s_unit = 1 << ARITH_SHIFT;
334 int rate, err;
335 u32 tx_time, estimated_retx;
336 u64 result;
337
050ac52c
LCC
338 if (sta->fail_avg >= 100)
339 return MAX_METRIC;
e6a9854b 340
6b62bf32
TP
341 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &rinfo);
342 rate = cfg80211_calculate_bitrate(&rinfo);
343 if (WARN_ON(!rate))
e6a9854b
JB
344 return MAX_METRIC;
345
050ac52c
LCC
346 err = (sta->fail_avg << ARITH_SHIFT) / 100;
347
348 /* bitrate is in units of 100 Kbps, while we need rate in units of
349 * 1Mbps. This will be corrected on tx_time computation.
350 */
050ac52c
LCC
351 tx_time = (device_constant + 10 * test_frame_len / rate);
352 estimated_retx = ((1 << (2 * ARITH_SHIFT)) / (s_unit - err));
353 result = (tx_time * estimated_retx) >> (2 * ARITH_SHIFT) ;
354 return (u32)result;
355}
356
357/**
358 * hwmp_route_info_get - Update routing info to originator and transmitter
359 *
f698d856 360 * @sdata: local mesh subif
050ac52c
LCC
361 * @mgmt: mesh management frame
362 * @hwmp_ie: hwmp information element (PREP or PREQ)
75ea719c 363 * @action: type of hwmp ie
050ac52c
LCC
364 *
365 * This function updates the path routing information to the originator and the
f99288d1 366 * transmitter of a HWMP PREQ or PREP frame.
050ac52c
LCC
367 *
368 * Returns: metric to frame originator or 0 if the frame should not be further
369 * processed
370 *
371 * Notes: this function is the only place (besides user-provided info) where
372 * path routing information is updated.
373 */
f698d856 374static u32 hwmp_route_info_get(struct ieee80211_sub_if_data *sdata,
4a3cb702
JB
375 struct ieee80211_mgmt *mgmt,
376 const u8 *hwmp_ie, enum mpath_frame_type action)
050ac52c 377{
f698d856 378 struct ieee80211_local *local = sdata->local;
050ac52c
LCC
379 struct mesh_path *mpath;
380 struct sta_info *sta;
381 bool fresh_info;
4a3cb702 382 const u8 *orig_addr, *ta;
d19b3bf6 383 u32 orig_sn, orig_metric;
050ac52c
LCC
384 unsigned long orig_lifetime, exp_time;
385 u32 last_hop_metric, new_metric;
386 bool process = true;
050ac52c
LCC
387
388 rcu_read_lock();
abe60632 389 sta = sta_info_get(sdata, mgmt->sa);
dc0b0f7d
JB
390 if (!sta) {
391 rcu_read_unlock();
050ac52c 392 return 0;
dc0b0f7d 393 }
050ac52c
LCC
394
395 last_hop_metric = airtime_link_metric_get(local, sta);
396 /* Update and check originator routing info */
397 fresh_info = true;
398
399 switch (action) {
400 case MPATH_PREQ:
401 orig_addr = PREQ_IE_ORIG_ADDR(hwmp_ie);
d19b3bf6 402 orig_sn = PREQ_IE_ORIG_SN(hwmp_ie);
050ac52c
LCC
403 orig_lifetime = PREQ_IE_LIFETIME(hwmp_ie);
404 orig_metric = PREQ_IE_METRIC(hwmp_ie);
405 break;
406 case MPATH_PREP:
3c26f1f6
TP
407 /* Originator here refers to the MP that was the target in the
408 * Path Request. We divert from the nomenclature in the draft
050ac52c
LCC
409 * so that we can easily use a single function to gather path
410 * information from both PREQ and PREP frames.
411 */
3c26f1f6
TP
412 orig_addr = PREP_IE_TARGET_ADDR(hwmp_ie);
413 orig_sn = PREP_IE_TARGET_SN(hwmp_ie);
050ac52c
LCC
414 orig_lifetime = PREP_IE_LIFETIME(hwmp_ie);
415 orig_metric = PREP_IE_METRIC(hwmp_ie);
416 break;
417 default:
dc0b0f7d 418 rcu_read_unlock();
050ac52c
LCC
419 return 0;
420 }
421 new_metric = orig_metric + last_hop_metric;
422 if (new_metric < orig_metric)
423 new_metric = MAX_METRIC;
424 exp_time = TU_TO_EXP_TIME(orig_lifetime);
425
b203ca39 426 if (ether_addr_equal(orig_addr, sdata->vif.addr)) {
050ac52c
LCC
427 /* This MP is the originator, we are not interested in this
428 * frame, except for updating transmitter's path info.
429 */
430 process = false;
431 fresh_info = false;
432 } else {
f698d856 433 mpath = mesh_path_lookup(orig_addr, sdata);
050ac52c
LCC
434 if (mpath) {
435 spin_lock_bh(&mpath->state_lock);
436 if (mpath->flags & MESH_PATH_FIXED)
437 fresh_info = false;
438 else if ((mpath->flags & MESH_PATH_ACTIVE) &&
d19b3bf6
RP
439 (mpath->flags & MESH_PATH_SN_VALID)) {
440 if (SN_GT(mpath->sn, orig_sn) ||
441 (mpath->sn == orig_sn &&
533866b1 442 new_metric >= mpath->metric)) {
050ac52c
LCC
443 process = false;
444 fresh_info = false;
445 }
446 }
447 } else {
f698d856
JBG
448 mesh_path_add(orig_addr, sdata);
449 mpath = mesh_path_lookup(orig_addr, sdata);
050ac52c
LCC
450 if (!mpath) {
451 rcu_read_unlock();
050ac52c
LCC
452 return 0;
453 }
454 spin_lock_bh(&mpath->state_lock);
455 }
456
457 if (fresh_info) {
458 mesh_path_assign_nexthop(mpath, sta);
d19b3bf6 459 mpath->flags |= MESH_PATH_SN_VALID;
050ac52c 460 mpath->metric = new_metric;
d19b3bf6 461 mpath->sn = orig_sn;
050ac52c
LCC
462 mpath->exp_time = time_after(mpath->exp_time, exp_time)
463 ? mpath->exp_time : exp_time;
464 mesh_path_activate(mpath);
465 spin_unlock_bh(&mpath->state_lock);
466 mesh_path_tx_pending(mpath);
467 /* draft says preq_id should be saved to, but there does
468 * not seem to be any use for it, skipping by now
469 */
470 } else
471 spin_unlock_bh(&mpath->state_lock);
472 }
473
474 /* Update and check transmitter routing info */
475 ta = mgmt->sa;
b203ca39 476 if (ether_addr_equal(orig_addr, ta))
050ac52c
LCC
477 fresh_info = false;
478 else {
479 fresh_info = true;
480
f698d856 481 mpath = mesh_path_lookup(ta, sdata);
050ac52c
LCC
482 if (mpath) {
483 spin_lock_bh(&mpath->state_lock);
484 if ((mpath->flags & MESH_PATH_FIXED) ||
485 ((mpath->flags & MESH_PATH_ACTIVE) &&
486 (last_hop_metric > mpath->metric)))
487 fresh_info = false;
488 } else {
f698d856
JBG
489 mesh_path_add(ta, sdata);
490 mpath = mesh_path_lookup(ta, sdata);
050ac52c
LCC
491 if (!mpath) {
492 rcu_read_unlock();
050ac52c
LCC
493 return 0;
494 }
495 spin_lock_bh(&mpath->state_lock);
496 }
497
498 if (fresh_info) {
499 mesh_path_assign_nexthop(mpath, sta);
050ac52c
LCC
500 mpath->metric = last_hop_metric;
501 mpath->exp_time = time_after(mpath->exp_time, exp_time)
502 ? mpath->exp_time : exp_time;
503 mesh_path_activate(mpath);
504 spin_unlock_bh(&mpath->state_lock);
505 mesh_path_tx_pending(mpath);
506 } else
507 spin_unlock_bh(&mpath->state_lock);
508 }
509
050ac52c
LCC
510 rcu_read_unlock();
511
512 return process ? new_metric : 0;
513}
514
f698d856 515static void hwmp_preq_frame_process(struct ieee80211_sub_if_data *sdata,
050ac52c 516 struct ieee80211_mgmt *mgmt,
4a3cb702 517 const u8 *preq_elem, u32 metric)
57ef5ddb 518{
472dbc45 519 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3d045a54 520 struct mesh_path *mpath = NULL;
4a3cb702 521 const u8 *target_addr, *orig_addr;
3d045a54 522 const u8 *da;
3fbf4b71
CYY
523 u8 target_flags, ttl, flags;
524 u32 orig_sn, target_sn, lifetime, orig_metric;
050ac52c
LCC
525 bool reply = false;
526 bool forward = true;
3fbf4b71 527 bool root_is_gate;
050ac52c 528
d19b3bf6
RP
529 /* Update target SN, if present */
530 target_addr = PREQ_IE_TARGET_ADDR(preq_elem);
050ac52c 531 orig_addr = PREQ_IE_ORIG_ADDR(preq_elem);
d19b3bf6
RP
532 target_sn = PREQ_IE_TARGET_SN(preq_elem);
533 orig_sn = PREQ_IE_ORIG_SN(preq_elem);
534 target_flags = PREQ_IE_TARGET_F(preq_elem);
3fbf4b71
CYY
535 orig_metric = metric;
536 /* Proactive PREQ gate announcements */
537 flags = PREQ_IE_FLAGS(preq_elem);
538 root_is_gate = !!(flags & RANN_FLAG_IS_GATE);
050ac52c 539
bdcbd8e0 540 mhwmp_dbg(sdata, "received PREQ from %pM\n", orig_addr);
27db2e42 541
b203ca39 542 if (ether_addr_equal(target_addr, sdata->vif.addr)) {
bdcbd8e0 543 mhwmp_dbg(sdata, "PREQ is for us\n");
050ac52c
LCC
544 forward = false;
545 reply = true;
546 metric = 0;
d19b3bf6 547 if (time_after(jiffies, ifmsh->last_sn_update +
050ac52c 548 net_traversal_jiffies(sdata)) ||
d19b3bf6
RP
549 time_before(jiffies, ifmsh->last_sn_update)) {
550 target_sn = ++ifmsh->sn;
551 ifmsh->last_sn_update = jiffies;
050ac52c 552 }
3fbf4b71
CYY
553 } else if (is_broadcast_ether_addr(target_addr) &&
554 (target_flags & IEEE80211_PREQ_TO_FLAG)) {
555 rcu_read_lock();
556 mpath = mesh_path_lookup(orig_addr, sdata);
557 if (mpath) {
558 if (flags & IEEE80211_PREQ_PROACTIVE_PREP_FLAG) {
559 reply = true;
560 target_addr = sdata->vif.addr;
561 target_sn = ++ifmsh->sn;
562 metric = 0;
563 ifmsh->last_sn_update = jiffies;
564 }
565 if (root_is_gate)
566 mesh_path_add_gate(mpath);
567 }
568 rcu_read_unlock();
050ac52c
LCC
569 } else {
570 rcu_read_lock();
d19b3bf6 571 mpath = mesh_path_lookup(target_addr, sdata);
050ac52c 572 if (mpath) {
d19b3bf6
RP
573 if ((!(mpath->flags & MESH_PATH_SN_VALID)) ||
574 SN_LT(mpath->sn, target_sn)) {
575 mpath->sn = target_sn;
576 mpath->flags |= MESH_PATH_SN_VALID;
577 } else if ((!(target_flags & MP_F_DO)) &&
050ac52c
LCC
578 (mpath->flags & MESH_PATH_ACTIVE)) {
579 reply = true;
580 metric = mpath->metric;
d19b3bf6
RP
581 target_sn = mpath->sn;
582 if (target_flags & MP_F_RF)
583 target_flags |= MP_F_DO;
050ac52c
LCC
584 else
585 forward = false;
586 }
587 }
588 rcu_read_unlock();
589 }
590
591 if (reply) {
592 lifetime = PREQ_IE_LIFETIME(preq_elem);
45904f21 593 ttl = ifmsh->mshcfg.element_ttl;
27db2e42 594 if (ttl != 0) {
bdcbd8e0 595 mhwmp_dbg(sdata, "replying to the PREQ\n");
3c26f1f6
TP
596 mesh_path_sel_frame_tx(MPATH_PREP, 0, orig_addr,
597 cpu_to_le32(orig_sn), 0, target_addr,
598 cpu_to_le32(target_sn), mgmt->sa, 0, ttl,
aa2b5928 599 cpu_to_le32(lifetime), cpu_to_le32(metric),
f698d856 600 0, sdata);
3fbf4b71 601 } else {
472dbc45 602 ifmsh->mshstats.dropped_frames_ttl++;
3fbf4b71 603 }
050ac52c
LCC
604 }
605
94f90656 606 if (forward && ifmsh->mshcfg.dot11MeshForwarding) {
050ac52c 607 u32 preq_id;
3fbf4b71 608 u8 hopcount;
050ac52c
LCC
609
610 ttl = PREQ_IE_TTL(preq_elem);
611 lifetime = PREQ_IE_LIFETIME(preq_elem);
612 if (ttl <= 1) {
472dbc45 613 ifmsh->mshstats.dropped_frames_ttl++;
050ac52c
LCC
614 return;
615 }
bdcbd8e0 616 mhwmp_dbg(sdata, "forwarding the PREQ from %pM\n", orig_addr);
050ac52c 617 --ttl;
050ac52c
LCC
618 preq_id = PREQ_IE_PREQ_ID(preq_elem);
619 hopcount = PREQ_IE_HOPCOUNT(preq_elem) + 1;
3d045a54
CYY
620 da = (mpath && mpath->is_root) ?
621 mpath->rann_snd_addr : broadcast_addr;
3fbf4b71
CYY
622
623 if (flags & IEEE80211_PREQ_PROACTIVE_PREP_FLAG) {
624 target_addr = PREQ_IE_TARGET_ADDR(preq_elem);
625 target_sn = PREQ_IE_TARGET_SN(preq_elem);
626 metric = orig_metric;
627 }
628
050ac52c 629 mesh_path_sel_frame_tx(MPATH_PREQ, flags, orig_addr,
d19b3bf6 630 cpu_to_le32(orig_sn), target_flags, target_addr,
3d045a54 631 cpu_to_le32(target_sn), da,
aa2b5928
LCC
632 hopcount, ttl, cpu_to_le32(lifetime),
633 cpu_to_le32(metric), cpu_to_le32(preq_id),
f698d856 634 sdata);
7d4e15b1
CYY
635 if (!is_multicast_ether_addr(da))
636 ifmsh->mshstats.fwded_unicast++;
637 else
638 ifmsh->mshstats.fwded_mcast++;
472dbc45 639 ifmsh->mshstats.fwded_frames++;
050ac52c
LCC
640 }
641}
642
643
40b275b6
JB
644static inline struct sta_info *
645next_hop_deref_protected(struct mesh_path *mpath)
646{
647 return rcu_dereference_protected(mpath->next_hop,
648 lockdep_is_held(&mpath->state_lock));
649}
650
651
f698d856 652static void hwmp_prep_frame_process(struct ieee80211_sub_if_data *sdata,
050ac52c 653 struct ieee80211_mgmt *mgmt,
4a3cb702 654 const u8 *prep_elem, u32 metric)
050ac52c 655{
d665508b 656 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
050ac52c 657 struct mesh_path *mpath;
4a3cb702 658 const u8 *target_addr, *orig_addr;
050ac52c
LCC
659 u8 ttl, hopcount, flags;
660 u8 next_hop[ETH_ALEN];
d19b3bf6 661 u32 target_sn, orig_sn, lifetime;
050ac52c 662
bdcbd8e0
JB
663 mhwmp_dbg(sdata, "received PREP from %pM\n",
664 PREP_IE_ORIG_ADDR(prep_elem));
dbb81c42 665
3c26f1f6 666 orig_addr = PREP_IE_ORIG_ADDR(prep_elem);
b203ca39 667 if (ether_addr_equal(orig_addr, sdata->vif.addr))
050ac52c
LCC
668 /* destination, no forwarding required */
669 return;
670
d665508b
CYY
671 if (!ifmsh->mshcfg.dot11MeshForwarding)
672 return;
673
050ac52c
LCC
674 ttl = PREP_IE_TTL(prep_elem);
675 if (ttl <= 1) {
472dbc45 676 sdata->u.mesh.mshstats.dropped_frames_ttl++;
050ac52c
LCC
677 return;
678 }
679
680 rcu_read_lock();
3c26f1f6 681 mpath = mesh_path_lookup(orig_addr, sdata);
050ac52c
LCC
682 if (mpath)
683 spin_lock_bh(&mpath->state_lock);
684 else
685 goto fail;
686 if (!(mpath->flags & MESH_PATH_ACTIVE)) {
687 spin_unlock_bh(&mpath->state_lock);
688 goto fail;
689 }
40b275b6 690 memcpy(next_hop, next_hop_deref_protected(mpath)->sta.addr, ETH_ALEN);
050ac52c
LCC
691 spin_unlock_bh(&mpath->state_lock);
692 --ttl;
693 flags = PREP_IE_FLAGS(prep_elem);
694 lifetime = PREP_IE_LIFETIME(prep_elem);
695 hopcount = PREP_IE_HOPCOUNT(prep_elem) + 1;
3c26f1f6 696 target_addr = PREP_IE_TARGET_ADDR(prep_elem);
d19b3bf6
RP
697 target_sn = PREP_IE_TARGET_SN(prep_elem);
698 orig_sn = PREP_IE_ORIG_SN(prep_elem);
050ac52c
LCC
699
700 mesh_path_sel_frame_tx(MPATH_PREP, flags, orig_addr,
d19b3bf6 701 cpu_to_le32(orig_sn), 0, target_addr,
533866b1 702 cpu_to_le32(target_sn), next_hop, hopcount,
d19b3bf6 703 ttl, cpu_to_le32(lifetime), cpu_to_le32(metric),
f698d856 704 0, sdata);
050ac52c 705 rcu_read_unlock();
c8a61a7d
DW
706
707 sdata->u.mesh.mshstats.fwded_unicast++;
472dbc45 708 sdata->u.mesh.mshstats.fwded_frames++;
050ac52c
LCC
709 return;
710
711fail:
712 rcu_read_unlock();
472dbc45 713 sdata->u.mesh.mshstats.dropped_frames_no_route++;
050ac52c
LCC
714}
715
f698d856 716static void hwmp_perr_frame_process(struct ieee80211_sub_if_data *sdata,
4a3cb702
JB
717 struct ieee80211_mgmt *mgmt,
718 const u8 *perr_elem)
050ac52c 719{
d611f062 720 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
050ac52c 721 struct mesh_path *mpath;
d611f062 722 u8 ttl;
4a3cb702 723 const u8 *ta, *target_addr;
d19b3bf6
RP
724 u32 target_sn;
725 u16 target_rcode;
050ac52c
LCC
726
727 ta = mgmt->sa;
d611f062
RP
728 ttl = PERR_IE_TTL(perr_elem);
729 if (ttl <= 1) {
730 ifmsh->mshstats.dropped_frames_ttl++;
731 return;
732 }
733 ttl--;
d19b3bf6
RP
734 target_addr = PERR_IE_TARGET_ADDR(perr_elem);
735 target_sn = PERR_IE_TARGET_SN(perr_elem);
736 target_rcode = PERR_IE_TARGET_RCODE(perr_elem);
d611f062 737
050ac52c 738 rcu_read_lock();
d19b3bf6 739 mpath = mesh_path_lookup(target_addr, sdata);
050ac52c 740 if (mpath) {
888d04df
FF
741 struct sta_info *sta;
742
050ac52c 743 spin_lock_bh(&mpath->state_lock);
888d04df 744 sta = next_hop_deref_protected(mpath);
050ac52c 745 if (mpath->flags & MESH_PATH_ACTIVE &&
b203ca39 746 ether_addr_equal(ta, sta->sta.addr) &&
d19b3bf6
RP
747 (!(mpath->flags & MESH_PATH_SN_VALID) ||
748 SN_GT(target_sn, mpath->sn))) {
050ac52c 749 mpath->flags &= ~MESH_PATH_ACTIVE;
d19b3bf6 750 mpath->sn = target_sn;
050ac52c 751 spin_unlock_bh(&mpath->state_lock);
d665508b
CYY
752 if (!ifmsh->mshcfg.dot11MeshForwarding)
753 goto endperr;
d19b3bf6
RP
754 mesh_path_error_tx(ttl, target_addr, cpu_to_le32(target_sn),
755 cpu_to_le16(target_rcode),
15ff6365 756 broadcast_addr, sdata);
050ac52c
LCC
757 } else
758 spin_unlock_bh(&mpath->state_lock);
759 }
d665508b 760endperr:
050ac52c
LCC
761 rcu_read_unlock();
762}
763
90a5e169 764static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata,
4a3cb702
JB
765 struct ieee80211_mgmt *mgmt,
766 const struct ieee80211_rann_ie *rann)
90a5e169
RP
767{
768 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
d2a079fd
CYY
769 struct ieee80211_local *local = sdata->local;
770 struct sta_info *sta;
90a5e169 771 struct mesh_path *mpath;
90a5e169 772 u8 ttl, flags, hopcount;
4a3cb702 773 const u8 *orig_addr;
d2a079fd 774 u32 orig_sn, metric, metric_txsta, interval;
5ee68e5b 775 bool root_is_gate;
90a5e169 776
90a5e169 777 ttl = rann->rann_ttl;
90a5e169 778 flags = rann->rann_flags;
5ee68e5b 779 root_is_gate = !!(flags & RANN_FLAG_IS_GATE);
90a5e169 780 orig_addr = rann->rann_addr;
292c41ac 781 orig_sn = le32_to_cpu(rann->rann_seq);
d2a079fd 782 interval = le32_to_cpu(rann->rann_interval);
90a5e169 783 hopcount = rann->rann_hopcount;
a6a58b4f 784 hopcount++;
292c41ac 785 metric = le32_to_cpu(rann->rann_metric);
5ee68e5b
JC
786
787 /* Ignore our own RANNs */
b203ca39 788 if (ether_addr_equal(orig_addr, sdata->vif.addr))
5ee68e5b
JC
789 return;
790
bdcbd8e0
JB
791 mhwmp_dbg(sdata,
792 "received RANN from %pM via neighbour %pM (is_gate=%d)\n",
793 orig_addr, mgmt->sa, root_is_gate);
90a5e169
RP
794
795 rcu_read_lock();
d2a079fd
CYY
796 sta = sta_info_get(sdata, mgmt->sa);
797 if (!sta) {
798 rcu_read_unlock();
799 return;
800 }
801
802 metric_txsta = airtime_link_metric_get(local, sta);
803
90a5e169
RP
804 mpath = mesh_path_lookup(orig_addr, sdata);
805 if (!mpath) {
806 mesh_path_add(orig_addr, sdata);
807 mpath = mesh_path_lookup(orig_addr, sdata);
808 if (!mpath) {
809 rcu_read_unlock();
810 sdata->u.mesh.mshstats.dropped_frames_no_route++;
811 return;
812 }
90a5e169 813 }
5ee68e5b 814
7ebfa469
CYY
815 if (!(SN_LT(mpath->sn, orig_sn)) &&
816 !(mpath->sn == orig_sn && metric < mpath->rann_metric)) {
817 rcu_read_unlock();
818 return;
819 }
820
5ee68e5b 821 if ((!(mpath->flags & (MESH_PATH_ACTIVE | MESH_PATH_RESOLVING)) ||
728b19e5
CYY
822 (time_after(jiffies, mpath->last_preq_to_root +
823 root_path_confirmation_jiffies(sdata)) ||
824 time_before(jiffies, mpath->last_preq_to_root))) &&
7ebfa469 825 !(mpath->flags & MESH_PATH_FIXED) && (ttl != 0)) {
bdcbd8e0
JB
826 mhwmp_dbg(sdata,
827 "time to refresh root mpath %pM\n",
828 orig_addr);
5ee68e5b 829 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
728b19e5 830 mpath->last_preq_to_root = jiffies;
5ee68e5b
JC
831 }
832
7ebfa469
CYY
833 mpath->sn = orig_sn;
834 mpath->rann_metric = metric + metric_txsta;
835 mpath->is_root = true;
836 /* Recording RANNs sender address to send individually
837 * addressed PREQs destined for root mesh STA */
838 memcpy(mpath->rann_snd_addr, mgmt->sa, ETH_ALEN);
839
840 if (root_is_gate)
841 mesh_path_add_gate(mpath);
842
843 if (ttl <= 1) {
844 ifmsh->mshstats.dropped_frames_ttl++;
845 rcu_read_unlock();
846 return;
847 }
848 ttl--;
849
850 if (ifmsh->mshcfg.dot11MeshForwarding) {
90a5e169 851 mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr,
d19b3bf6 852 cpu_to_le32(orig_sn),
15ff6365 853 0, NULL, 0, broadcast_addr,
0507e159 854 hopcount, ttl, cpu_to_le32(interval),
d2a079fd 855 cpu_to_le32(metric + metric_txsta),
90a5e169 856 0, sdata);
90a5e169 857 }
3d045a54 858
90a5e169
RP
859 rcu_read_unlock();
860}
050ac52c
LCC
861
862
f698d856 863void mesh_rx_path_sel_frame(struct ieee80211_sub_if_data *sdata,
050ac52c
LCC
864 struct ieee80211_mgmt *mgmt,
865 size_t len)
866{
867 struct ieee802_11_elems elems;
868 size_t baselen;
869 u32 last_hop_metric;
97091317 870 struct sta_info *sta;
050ac52c 871
9c80d3dc
JB
872 /* need action_code */
873 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
874 return;
875
97091317
JC
876 rcu_read_lock();
877 sta = sta_info_get(sdata, mgmt->sa);
878 if (!sta || sta->plink_state != NL80211_PLINK_ESTAB) {
879 rcu_read_unlock();
880 return;
881 }
882 rcu_read_unlock();
883
050ac52c
LCC
884 baselen = (u8 *) mgmt->u.action.u.mesh_action.variable - (u8 *) mgmt;
885 ieee802_11_parse_elems(mgmt->u.action.u.mesh_action.variable,
886 len - baselen, &elems);
887
dbb81c42
RP
888 if (elems.preq) {
889 if (elems.preq_len != 37)
050ac52c
LCC
890 /* Right now we support just 1 destination and no AE */
891 return;
dbb81c42
RP
892 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.preq,
893 MPATH_PREQ);
894 if (last_hop_metric)
895 hwmp_preq_frame_process(sdata, mgmt, elems.preq,
896 last_hop_metric);
897 }
898 if (elems.prep) {
899 if (elems.prep_len != 31)
050ac52c
LCC
900 /* Right now we support no AE */
901 return;
dbb81c42
RP
902 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.prep,
903 MPATH_PREP);
904 if (last_hop_metric)
905 hwmp_prep_frame_process(sdata, mgmt, elems.prep,
906 last_hop_metric);
907 }
908 if (elems.perr) {
d611f062 909 if (elems.perr_len != 15)
050ac52c
LCC
910 /* Right now we support only one destination per PERR */
911 return;
f698d856 912 hwmp_perr_frame_process(sdata, mgmt, elems.perr);
050ac52c 913 }
90a5e169
RP
914 if (elems.rann)
915 hwmp_rann_frame_process(sdata, mgmt, elems.rann);
050ac52c
LCC
916}
917
918/**
919 * mesh_queue_preq - queue a PREQ to a given destination
920 *
921 * @mpath: mesh path to discover
922 * @flags: special attributes of the PREQ to be sent
923 *
924 * Locking: the function must be called from within a rcu read lock block.
925 *
926 */
927static void mesh_queue_preq(struct mesh_path *mpath, u8 flags)
928{
f698d856 929 struct ieee80211_sub_if_data *sdata = mpath->sdata;
472dbc45 930 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
050ac52c
LCC
931 struct mesh_preq_queue *preq_node;
932
59615b5f 933 preq_node = kmalloc(sizeof(struct mesh_preq_queue), GFP_ATOMIC);
050ac52c 934 if (!preq_node) {
bdcbd8e0 935 mhwmp_dbg(sdata, "could not allocate PREQ node\n");
050ac52c
LCC
936 return;
937 }
938
987dafad 939 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
472dbc45 940 if (ifmsh->preq_queue_len == MAX_PREQ_QUEUE_LEN) {
987dafad 941 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
050ac52c
LCC
942 kfree(preq_node);
943 if (printk_ratelimit())
bdcbd8e0 944 mhwmp_dbg(sdata, "PREQ node queue full\n");
050ac52c
LCC
945 return;
946 }
947
f2dc7989 948 spin_lock(&mpath->state_lock);
f3011cf9 949 if (mpath->flags & MESH_PATH_REQ_QUEUED) {
f2dc7989 950 spin_unlock(&mpath->state_lock);
f3011cf9 951 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
88d53465 952 kfree(preq_node);
f3011cf9
JC
953 return;
954 }
955
050ac52c
LCC
956 memcpy(preq_node->dst, mpath->dst, ETH_ALEN);
957 preq_node->flags = flags;
958
f3011cf9 959 mpath->flags |= MESH_PATH_REQ_QUEUED;
f2dc7989 960 spin_unlock(&mpath->state_lock);
f3011cf9 961
472dbc45
JB
962 list_add_tail(&preq_node->list, &ifmsh->preq_queue.list);
963 ++ifmsh->preq_queue_len;
987dafad 964 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
050ac52c 965
472dbc45 966 if (time_after(jiffies, ifmsh->last_preq + min_preq_int_jiff(sdata)))
64592c8f 967 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
050ac52c 968
472dbc45 969 else if (time_before(jiffies, ifmsh->last_preq)) {
050ac52c
LCC
970 /* avoid long wait if did not send preqs for a long time
971 * and jiffies wrapped around
972 */
472dbc45 973 ifmsh->last_preq = jiffies - min_preq_int_jiff(sdata) - 1;
64592c8f 974 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
050ac52c 975 } else
472dbc45 976 mod_timer(&ifmsh->mesh_path_timer, ifmsh->last_preq +
050ac52c
LCC
977 min_preq_int_jiff(sdata));
978}
979
980/**
981 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
982 *
f698d856 983 * @sdata: local mesh subif
050ac52c 984 */
f698d856 985void mesh_path_start_discovery(struct ieee80211_sub_if_data *sdata)
050ac52c 986{
472dbc45 987 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
050ac52c
LCC
988 struct mesh_preq_queue *preq_node;
989 struct mesh_path *mpath;
d19b3bf6 990 u8 ttl, target_flags;
3d045a54 991 const u8 *da;
050ac52c
LCC
992 u32 lifetime;
993
a43816df 994 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
472dbc45
JB
995 if (!ifmsh->preq_queue_len ||
996 time_before(jiffies, ifmsh->last_preq +
050ac52c 997 min_preq_int_jiff(sdata))) {
a43816df 998 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
050ac52c
LCC
999 return;
1000 }
1001
472dbc45 1002 preq_node = list_first_entry(&ifmsh->preq_queue.list,
050ac52c
LCC
1003 struct mesh_preq_queue, list);
1004 list_del(&preq_node->list);
472dbc45 1005 --ifmsh->preq_queue_len;
a43816df 1006 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
050ac52c
LCC
1007
1008 rcu_read_lock();
f698d856 1009 mpath = mesh_path_lookup(preq_node->dst, sdata);
050ac52c
LCC
1010 if (!mpath)
1011 goto enddiscovery;
1012
1013 spin_lock_bh(&mpath->state_lock);
f3011cf9 1014 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
050ac52c
LCC
1015 if (preq_node->flags & PREQ_Q_F_START) {
1016 if (mpath->flags & MESH_PATH_RESOLVING) {
1017 spin_unlock_bh(&mpath->state_lock);
1018 goto enddiscovery;
1019 } else {
1020 mpath->flags &= ~MESH_PATH_RESOLVED;
1021 mpath->flags |= MESH_PATH_RESOLVING;
1022 mpath->discovery_retries = 0;
1023 mpath->discovery_timeout = disc_timeout_jiff(sdata);
1024 }
1025 } else if (!(mpath->flags & MESH_PATH_RESOLVING) ||
1026 mpath->flags & MESH_PATH_RESOLVED) {
1027 mpath->flags &= ~MESH_PATH_RESOLVING;
1028 spin_unlock_bh(&mpath->state_lock);
1029 goto enddiscovery;
1030 }
1031
472dbc45 1032 ifmsh->last_preq = jiffies;
050ac52c 1033
d19b3bf6 1034 if (time_after(jiffies, ifmsh->last_sn_update +
050ac52c 1035 net_traversal_jiffies(sdata)) ||
d19b3bf6
RP
1036 time_before(jiffies, ifmsh->last_sn_update)) {
1037 ++ifmsh->sn;
1038 sdata->u.mesh.last_sn_update = jiffies;
050ac52c
LCC
1039 }
1040 lifetime = default_lifetime(sdata);
45904f21 1041 ttl = sdata->u.mesh.mshcfg.element_ttl;
050ac52c 1042 if (ttl == 0) {
472dbc45 1043 sdata->u.mesh.mshstats.dropped_frames_ttl++;
050ac52c
LCC
1044 spin_unlock_bh(&mpath->state_lock);
1045 goto enddiscovery;
1046 }
1047
1048 if (preq_node->flags & PREQ_Q_F_REFRESH)
d19b3bf6 1049 target_flags = MP_F_DO;
050ac52c 1050 else
d19b3bf6 1051 target_flags = MP_F_RF;
050ac52c
LCC
1052
1053 spin_unlock_bh(&mpath->state_lock);
3d045a54 1054 da = (mpath->is_root) ? mpath->rann_snd_addr : broadcast_addr;
47846c9b 1055 mesh_path_sel_frame_tx(MPATH_PREQ, 0, sdata->vif.addr,
d19b3bf6 1056 cpu_to_le32(ifmsh->sn), target_flags, mpath->dst,
3d045a54 1057 cpu_to_le32(mpath->sn), da, 0,
aa2b5928 1058 ttl, cpu_to_le32(lifetime), 0,
472dbc45 1059 cpu_to_le32(ifmsh->preq_id++), sdata);
050ac52c
LCC
1060 mod_timer(&mpath->timer, jiffies + mpath->discovery_timeout);
1061
1062enddiscovery:
1063 rcu_read_unlock();
1064 kfree(preq_node);
1065}
1066
2c53040f
BH
1067/**
1068 * mesh_nexthop_resolve - lookup next hop; conditionally start path discovery
050ac52c 1069 *
e32f85f7 1070 * @skb: 802.11 frame to be sent
f698d856 1071 * @sdata: network subif the frame will be sent through
050ac52c 1072 *
2c53040f
BH
1073 * Lookup next hop for given skb and start path discovery if no
1074 * forwarding information is found.
1075 *
0cfda851
TP
1076 * Returns: 0 if the next hop was found and -ENOENT if the frame was queued.
1077 * skb is freeed here if no mpath could be allocated.
050ac52c 1078 */
0cfda851
TP
1079int mesh_nexthop_resolve(struct sk_buff *skb,
1080 struct ieee80211_sub_if_data *sdata)
050ac52c 1081{
e32f85f7 1082 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
0cfda851
TP
1083 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1084 struct mesh_path *mpath;
1085 struct sk_buff *skb_to_free = NULL;
d19b3bf6 1086 u8 *target_addr = hdr->addr3;
050ac52c
LCC
1087 int err = 0;
1088
3f52b7e3
MP
1089 /* Nulls are only sent to peers for PS and should be pre-addressed */
1090 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1091 return 0;
1092
050ac52c 1093 rcu_read_lock();
0cfda851
TP
1094 err = mesh_nexthop_lookup(skb, sdata);
1095 if (!err)
1096 goto endlookup;
050ac52c 1097
0cfda851
TP
1098 /* no nexthop found, start resolving */
1099 mpath = mesh_path_lookup(target_addr, sdata);
050ac52c 1100 if (!mpath) {
d19b3bf6
RP
1101 mesh_path_add(target_addr, sdata);
1102 mpath = mesh_path_lookup(target_addr, sdata);
050ac52c 1103 if (!mpath) {
0cfda851 1104 mesh_path_discard_frame(skb, sdata);
050ac52c
LCC
1105 err = -ENOSPC;
1106 goto endlookup;
1107 }
1108 }
1109
0cfda851
TP
1110 if (!(mpath->flags & MESH_PATH_RESOLVING))
1111 mesh_queue_preq(mpath, PREQ_Q_F_START);
1112
1113 if (skb_queue_len(&mpath->frame_queue) >= MESH_FRAME_QUEUE_LEN)
1114 skb_to_free = skb_dequeue(&mpath->frame_queue);
1115
1116 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1117 ieee80211_set_qos_hdr(sdata, skb);
1118 skb_queue_tail(&mpath->frame_queue, skb);
1119 err = -ENOENT;
1120 if (skb_to_free)
1121 mesh_path_discard_frame(skb_to_free, sdata);
1122
1123endlookup:
1124 rcu_read_unlock();
1125 return err;
1126}
1127/**
1128 * mesh_nexthop_lookup - put the appropriate next hop on a mesh frame. Calling
1129 * this function is considered "using" the associated mpath, so preempt a path
1130 * refresh if this mpath expires soon.
1131 *
1132 * @skb: 802.11 frame to be sent
1133 * @sdata: network subif the frame will be sent through
1134 *
1135 * Returns: 0 if the next hop was found. Nonzero otherwise.
1136 */
1137int mesh_nexthop_lookup(struct sk_buff *skb,
1138 struct ieee80211_sub_if_data *sdata)
1139{
1140 struct mesh_path *mpath;
1141 struct sta_info *next_hop;
1142 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1143 u8 *target_addr = hdr->addr3;
1144 int err = -ENOENT;
050ac52c 1145
0cfda851
TP
1146 rcu_read_lock();
1147 mpath = mesh_path_lookup(target_addr, sdata);
1148
1149 if (!mpath || !(mpath->flags & MESH_PATH_ACTIVE))
1150 goto endlookup;
1151
1152 if (time_after(jiffies,
1153 mpath->exp_time -
1154 msecs_to_jiffies(sdata->u.mesh.mshcfg.path_refresh_time)) &&
b203ca39 1155 ether_addr_equal(sdata->vif.addr, hdr->addr4) &&
0cfda851
TP
1156 !(mpath->flags & MESH_PATH_RESOLVING) &&
1157 !(mpath->flags & MESH_PATH_FIXED))
1158 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
050ac52c 1159
0cfda851
TP
1160 next_hop = rcu_dereference(mpath->next_hop);
1161 if (next_hop) {
1162 memcpy(hdr->addr1, next_hop->sta.addr, ETH_ALEN);
1163 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3f52b7e3 1164 ieee80211_mps_set_frame_flags(sdata, next_hop, hdr);
0cfda851 1165 err = 0;
050ac52c
LCC
1166 }
1167
1168endlookup:
1169 rcu_read_unlock();
1170 return err;
1171}
1172
1173void mesh_path_timer(unsigned long data)
1174{
dea4096b
JB
1175 struct mesh_path *mpath = (void *) data;
1176 struct ieee80211_sub_if_data *sdata = mpath->sdata;
5ee68e5b 1177 int ret;
5bb644a0 1178
dea4096b 1179 if (sdata->local->quiescing)
5bb644a0 1180 return;
5bb644a0
JB
1181
1182 spin_lock_bh(&mpath->state_lock);
cfa22c71 1183 if (mpath->flags & MESH_PATH_RESOLVED ||
5ee68e5b 1184 (!(mpath->flags & MESH_PATH_RESOLVING))) {
050ac52c 1185 mpath->flags &= ~(MESH_PATH_RESOLVING | MESH_PATH_RESOLVED);
5ee68e5b
JC
1186 spin_unlock_bh(&mpath->state_lock);
1187 } else if (mpath->discovery_retries < max_preq_retries(sdata)) {
050ac52c
LCC
1188 ++mpath->discovery_retries;
1189 mpath->discovery_timeout *= 2;
f3011cf9 1190 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
5ee68e5b 1191 spin_unlock_bh(&mpath->state_lock);
050ac52c
LCC
1192 mesh_queue_preq(mpath, 0);
1193 } else {
1194 mpath->flags = 0;
1195 mpath->exp_time = jiffies;
5ee68e5b
JC
1196 spin_unlock_bh(&mpath->state_lock);
1197 if (!mpath->is_gate && mesh_gate_num(sdata) > 0) {
1198 ret = mesh_path_send_to_gates(mpath);
1199 if (ret)
bdcbd8e0 1200 mhwmp_dbg(sdata, "no gate was reachable\n");
5ee68e5b
JC
1201 } else
1202 mesh_path_flush_pending(mpath);
050ac52c 1203 }
050ac52c 1204}
e304bfd3
RP
1205
1206void
1207mesh_path_tx_root_frame(struct ieee80211_sub_if_data *sdata)
1208{
1209 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
0507e159 1210 u32 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
a69cc44f 1211 u8 flags, target_flags = 0;
e304bfd3 1212
16dd7267
JC
1213 flags = (ifmsh->mshcfg.dot11MeshGateAnnouncementProtocol)
1214 ? RANN_FLAG_IS_GATE : 0;
a69cc44f
CYY
1215
1216 switch (ifmsh->mshcfg.dot11MeshHWMPRootMode) {
1217 case IEEE80211_PROACTIVE_RANN:
1218 mesh_path_sel_frame_tx(MPATH_RANN, flags, sdata->vif.addr,
e304bfd3 1219 cpu_to_le32(++ifmsh->sn),
15ff6365 1220 0, NULL, 0, broadcast_addr,
a69cc44f 1221 0, ifmsh->mshcfg.element_ttl,
0507e159 1222 cpu_to_le32(interval), 0, 0, sdata);
a69cc44f
CYY
1223 break;
1224 case IEEE80211_PROACTIVE_PREQ_WITH_PREP:
1225 flags |= IEEE80211_PREQ_PROACTIVE_PREP_FLAG;
1226 case IEEE80211_PROACTIVE_PREQ_NO_PREP:
1227 interval = ifmsh->mshcfg.dot11MeshHWMPactivePathToRootTimeout;
1228 target_flags |= IEEE80211_PREQ_TO_FLAG |
1229 IEEE80211_PREQ_USN_FLAG;
1230 mesh_path_sel_frame_tx(MPATH_PREQ, flags, sdata->vif.addr,
1231 cpu_to_le32(++ifmsh->sn), target_flags,
1232 (u8 *) broadcast_addr, 0, broadcast_addr,
1233 0, ifmsh->mshcfg.element_ttl,
1234 cpu_to_le32(interval),
1235 0, cpu_to_le32(ifmsh->preq_id++), sdata);
1236 break;
1237 default:
bdcbd8e0 1238 mhwmp_dbg(sdata, "Proactive mechanism not supported\n");
a69cc44f
CYY
1239 return;
1240 }
e304bfd3 1241}
This page took 0.453726 seconds and 5 git commands to generate.