blob: bea52479e3aafb03aacc18fd96088b7209c1aaff [file] [log] [blame]
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001/*
Rui Paulo264d9b72009-11-09 23:46:58 +00002 * Copyright (c) 2008, 2009 open80211s Ltd.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01003 * 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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Felix Fietkau888d04d2012-03-01 15:22:09 +010011#include <linux/etherdevice.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010012#include <asm/unaligned.h>
Javier Cardona2cca3972011-09-06 12:10:43 -070013#include "wme.h"
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010014#include "mesh.h"
15
Rui Paulo27db2e42009-11-09 23:46:45 +000016#ifdef CONFIG_MAC80211_VERBOSE_MHWMP_DEBUG
Javier Cardona76468872011-08-09 16:45:04 -070017#define mhwmp_dbg(fmt, args...) \
Joe Perchesf0d23202012-05-15 14:20:30 -070018 pr_debug("Mesh HWMP (%s): " fmt "\n", sdata->name, ##args)
Rui Paulo27db2e42009-11-09 23:46:45 +000019#else
20#define mhwmp_dbg(fmt, args...) do { (void)(0); } while (0)
21#endif
22
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010023#define TEST_FRAME_LEN 8192
24#define MAX_METRIC 0xffffffff
25#define ARITH_SHIFT 8
26
27/* Number of frames buffered per destination for unresolved destinations */
28#define MESH_FRAME_QUEUE_LEN 10
29#define MAX_PREQ_QUEUE_LEN 64
30
31/* Destination only */
32#define MP_F_DO 0x1
33/* Reply and forward */
34#define MP_F_RF 0x2
Rui Paulod611f062009-11-09 23:46:50 +000035/* Unknown Sequence Number */
36#define MP_F_USN 0x01
37/* Reason code Present */
38#define MP_F_RCODE 0x02
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010039
Rui Paulo90a5e162009-11-11 00:01:31 +000040static void mesh_queue_preq(struct mesh_path *, u8);
41
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080042static inline u32 u32_field_get(u8 *preq_elem, int offset, bool ae)
43{
44 if (ae)
45 offset += 6;
Harvey Harrisonae7245c2008-05-01 22:19:33 -070046 return get_unaligned_le32(preq_elem + offset);
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080047}
48
Rui Paulod611f062009-11-09 23:46:50 +000049static inline u32 u16_field_get(u8 *preq_elem, int offset, bool ae)
50{
51 if (ae)
52 offset += 6;
53 return get_unaligned_le16(preq_elem + offset);
54}
55
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010056/* HWMP IE processing macros */
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080057#define AE_F (1<<6)
58#define AE_F_SET(x) (*x & AE_F)
59#define PREQ_IE_FLAGS(x) (*(x))
60#define PREQ_IE_HOPCOUNT(x) (*(x + 1))
61#define PREQ_IE_TTL(x) (*(x + 2))
62#define PREQ_IE_PREQ_ID(x) u32_field_get(x, 3, 0)
63#define PREQ_IE_ORIG_ADDR(x) (x + 7)
Phil Carmody497888c2011-07-14 15:07:13 +030064#define PREQ_IE_ORIG_SN(x) u32_field_get(x, 13, 0)
65#define PREQ_IE_LIFETIME(x) u32_field_get(x, 17, AE_F_SET(x))
66#define PREQ_IE_METRIC(x) u32_field_get(x, 21, AE_F_SET(x))
Rui Paulod19b3bf2009-11-09 23:46:55 +000067#define PREQ_IE_TARGET_F(x) (*(AE_F_SET(x) ? x + 32 : x + 26))
68#define PREQ_IE_TARGET_ADDR(x) (AE_F_SET(x) ? x + 33 : x + 27)
Phil Carmody497888c2011-07-14 15:07:13 +030069#define PREQ_IE_TARGET_SN(x) u32_field_get(x, 33, AE_F_SET(x))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010070
71
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080072#define PREP_IE_FLAGS(x) PREQ_IE_FLAGS(x)
73#define PREP_IE_HOPCOUNT(x) PREQ_IE_HOPCOUNT(x)
74#define PREP_IE_TTL(x) PREQ_IE_TTL(x)
Thomas Pedersen25d49e42011-08-11 19:35:15 -070075#define PREP_IE_ORIG_ADDR(x) (AE_F_SET(x) ? x + 27 : x + 21)
76#define PREP_IE_ORIG_SN(x) u32_field_get(x, 27, AE_F_SET(x))
Phil Carmody497888c2011-07-14 15:07:13 +030077#define PREP_IE_LIFETIME(x) u32_field_get(x, 13, AE_F_SET(x))
78#define PREP_IE_METRIC(x) u32_field_get(x, 17, AE_F_SET(x))
Thomas Pedersen25d49e42011-08-11 19:35:15 -070079#define PREP_IE_TARGET_ADDR(x) (x + 3)
80#define PREP_IE_TARGET_SN(x) u32_field_get(x, 9, 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010081
Rui Paulod611f062009-11-09 23:46:50 +000082#define PERR_IE_TTL(x) (*(x))
Rui Paulod19b3bf2009-11-09 23:46:55 +000083#define PERR_IE_TARGET_FLAGS(x) (*(x + 2))
84#define PERR_IE_TARGET_ADDR(x) (x + 3)
Phil Carmody497888c2011-07-14 15:07:13 +030085#define PERR_IE_TARGET_SN(x) u32_field_get(x, 9, 0)
86#define PERR_IE_TARGET_RCODE(x) u16_field_get(x, 13, 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010087
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010088#define MSEC_TO_TU(x) (x*1000/1024)
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +080089#define SN_GT(x, y) ((s32)(y - x) < 0)
90#define SN_LT(x, y) ((s32)(x - y) < 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010091
92#define net_traversal_jiffies(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020093 msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010094#define default_lifetime(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020095 MSEC_TO_TU(s->u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010096#define min_preq_int_jiff(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020097 (msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval))
98#define max_preq_retries(s) (s->u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010099#define disc_timeout_jiff(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +0200100 msecs_to_jiffies(sdata->u.mesh.mshcfg.min_discovery_timeout)
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800101#define root_path_confirmation_jiffies(s) \
102 msecs_to_jiffies(sdata->u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100103
104enum mpath_frame_type {
105 MPATH_PREQ = 0,
106 MPATH_PREP,
Rui Paulo90a5e162009-11-11 00:01:31 +0000107 MPATH_PERR,
108 MPATH_RANN
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100109};
110
Johannes Berg15ff6362009-11-17 13:34:04 +0100111static const u8 broadcast_addr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
112
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100113static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000114 u8 *orig_addr, __le32 orig_sn, u8 target_flags, u8 *target,
Johannes Berg15ff6362009-11-17 13:34:04 +0100115 __le32 target_sn, const u8 *da, u8 hop_count, u8 ttl,
116 __le32 lifetime, __le32 metric, __le32 preq_id,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000117 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100118{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200119 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700120 struct sk_buff *skb;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100121 struct ieee80211_mgmt *mgmt;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700122 u8 *pos, ie_len;
123 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.mesh_action) +
124 sizeof(mgmt->u.action.u.mesh_action);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100125
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800126 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700127 hdr_len +
128 2 + 37); /* max HWMP IE */
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100129 if (!skb)
130 return -1;
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800131 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700132 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
133 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700134 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
135 IEEE80211_STYPE_ACTION);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100136
137 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100138 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Rui Paulo90a5e162009-11-11 00:01:31 +0000139 /* BSSID == SA */
Johannes Berg47846c92009-11-25 17:46:19 +0100140 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700141 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION;
142 mgmt->u.action.u.mesh_action.action_code =
143 WLAN_MESH_ACTION_HWMP_PATH_SELECTION;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100144
145 switch (action) {
146 case MPATH_PREQ:
Javier Cardona76468872011-08-09 16:45:04 -0700147 mhwmp_dbg("sending PREQ to %pM", target);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100148 ie_len = 37;
149 pos = skb_put(skb, 2 + ie_len);
150 *pos++ = WLAN_EID_PREQ;
151 break;
152 case MPATH_PREP:
Javier Cardona76468872011-08-09 16:45:04 -0700153 mhwmp_dbg("sending PREP to %pM", target);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100154 ie_len = 31;
155 pos = skb_put(skb, 2 + ie_len);
156 *pos++ = WLAN_EID_PREP;
157 break;
Rui Paulo90a5e162009-11-11 00:01:31 +0000158 case MPATH_RANN:
Javier Cardona76468872011-08-09 16:45:04 -0700159 mhwmp_dbg("sending RANN from %pM", orig_addr);
Rui Paulo90a5e162009-11-11 00:01:31 +0000160 ie_len = sizeof(struct ieee80211_rann_ie);
161 pos = skb_put(skb, 2 + ie_len);
162 *pos++ = WLAN_EID_RANN;
163 break;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100164 default:
Patrick McHardy812714d2008-05-06 12:52:07 +0200165 kfree_skb(skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100166 return -ENOTSUPP;
167 break;
168 }
169 *pos++ = ie_len;
170 *pos++ = flags;
171 *pos++ = hop_count;
172 *pos++ = ttl;
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700173 if (action == MPATH_PREP) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000174 memcpy(pos, target, ETH_ALEN);
Rui Paulo90a5e162009-11-11 00:01:31 +0000175 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000176 memcpy(pos, &target_sn, 4);
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700177 pos += 4;
178 } else {
179 if (action == MPATH_PREQ) {
180 memcpy(pos, &preq_id, 4);
181 pos += 4;
182 }
183 memcpy(pos, orig_addr, ETH_ALEN);
184 pos += ETH_ALEN;
185 memcpy(pos, &orig_sn, 4);
186 pos += 4;
187 }
188 memcpy(pos, &lifetime, 4); /* interval for RANN */
189 pos += 4;
190 memcpy(pos, &metric, 4);
191 pos += 4;
192 if (action == MPATH_PREQ) {
193 *pos++ = 1; /* destination count */
194 *pos++ = target_flags;
195 memcpy(pos, target, ETH_ALEN);
196 pos += ETH_ALEN;
197 memcpy(pos, &target_sn, 4);
198 pos += 4;
199 } else if (action == MPATH_PREP) {
200 memcpy(pos, orig_addr, ETH_ALEN);
201 pos += ETH_ALEN;
202 memcpy(pos, &orig_sn, 4);
203 pos += 4;
Rui Paulo90a5e162009-11-11 00:01:31 +0000204 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100205
Johannes Berg62ae67b2009-11-18 18:42:05 +0100206 ieee80211_tx_skb(sdata, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100207 return 0;
208}
209
Javier Cardona2cca3972011-09-06 12:10:43 -0700210
211/* Headroom is not adjusted. Caller should ensure that skb has sufficient
212 * headroom in case the frame is encrypted. */
213static void prepare_frame_for_deferred_tx(struct ieee80211_sub_if_data *sdata,
214 struct sk_buff *skb)
215{
Javier Cardona2cca3972011-09-06 12:10:43 -0700216 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
217
218 skb_set_mac_header(skb, 0);
219 skb_set_network_header(skb, 0);
220 skb_set_transport_header(skb, 0);
221
222 /* Send all internal mgmt frames on VO. Accordingly set TID to 7. */
223 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
224 skb->priority = 7;
225
226 info->control.vif = &sdata->vif;
Javier Cardona2154c812011-09-07 17:49:53 -0700227 ieee80211_set_qos_hdr(sdata, skb);
Javier Cardona2cca3972011-09-06 12:10:43 -0700228}
229
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100230/**
231 * mesh_send_path error - Sends a PERR mesh management frame
232 *
Rui Paulod19b3bf2009-11-09 23:46:55 +0000233 * @target: broken destination
234 * @target_sn: SN of the broken destination
235 * @target_rcode: reason code for this PERR
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100236 * @ra: node this frame is addressed to
Javier Cardona2cca3972011-09-06 12:10:43 -0700237 *
238 * Note: This function may be called with driver locks taken that the driver
239 * also acquires in the TX path. To avoid a deadlock we don't transmit the
240 * frame directly but add it to the pending queue instead.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100241 */
Rui Paulod19b3bf2009-11-09 23:46:55 +0000242int mesh_path_error_tx(u8 ttl, u8 *target, __le32 target_sn,
Johannes Berg15ff6362009-11-17 13:34:04 +0100243 __le16 target_rcode, const u8 *ra,
244 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100245{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200246 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700247 struct sk_buff *skb;
Thomas Pedersendca7e942011-11-24 17:15:24 -0800248 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100249 struct ieee80211_mgmt *mgmt;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700250 u8 *pos, ie_len;
251 int hdr_len = offsetof(struct ieee80211_mgmt, u.action.u.mesh_action) +
252 sizeof(mgmt->u.action.u.mesh_action);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100253
Thomas Pedersendca7e942011-11-24 17:15:24 -0800254 if (time_before(jiffies, ifmsh->next_perr))
255 return -EAGAIN;
256
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800257 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700258 hdr_len +
259 2 + 15 /* PERR IE */);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100260 if (!skb)
261 return -1;
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800262 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700263 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
264 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700265 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
266 IEEE80211_STYPE_ACTION);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100267
268 memcpy(mgmt->da, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100269 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700270 /* BSSID == SA */
271 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
272 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION;
273 mgmt->u.action.u.mesh_action.action_code =
274 WLAN_MESH_ACTION_HWMP_PATH_SELECTION;
Rui Paulod611f062009-11-09 23:46:50 +0000275 ie_len = 15;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100276 pos = skb_put(skb, 2 + ie_len);
277 *pos++ = WLAN_EID_PERR;
278 *pos++ = ie_len;
Rui Paulod611f062009-11-09 23:46:50 +0000279 /* ttl */
Javier Cardona45904f22010-12-03 09:20:40 +0100280 *pos++ = ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100281 /* number of destinations */
282 *pos++ = 1;
Rui Paulod611f062009-11-09 23:46:50 +0000283 /*
284 * flags bit, bit 1 is unset if we know the sequence number and
285 * bit 2 is set if we have a reason code
286 */
287 *pos = 0;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000288 if (!target_sn)
Rui Paulod611f062009-11-09 23:46:50 +0000289 *pos |= MP_F_USN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000290 if (target_rcode)
Rui Paulod611f062009-11-09 23:46:50 +0000291 *pos |= MP_F_RCODE;
292 pos++;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000293 memcpy(pos, target, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100294 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000295 memcpy(pos, &target_sn, 4);
Rui Paulod611f062009-11-09 23:46:50 +0000296 pos += 4;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000297 memcpy(pos, &target_rcode, 2);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100298
Javier Cardona2cca3972011-09-06 12:10:43 -0700299 /* see note in function header */
300 prepare_frame_for_deferred_tx(sdata, skb);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800301 ifmsh->next_perr = TU_TO_EXP_TIME(
302 ifmsh->mshcfg.dot11MeshHWMPperrMinInterval);
Javier Cardona2cca3972011-09-06 12:10:43 -0700303 ieee80211_add_pending_skb(local, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100304 return 0;
305}
306
Javier Cardonabfc32e62009-08-17 17:15:55 -0700307void ieee80211s_update_metric(struct ieee80211_local *local,
Javier Cardona35b3fe1c2012-06-08 13:30:25 -0700308 struct sta_info *sta, struct sk_buff *skb)
Javier Cardonabfc32e62009-08-17 17:15:55 -0700309{
310 struct ieee80211_tx_info *txinfo = IEEE80211_SKB_CB(skb);
311 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
312 int failed;
313
314 if (!ieee80211_is_data(hdr->frame_control))
315 return;
316
317 failed = !(txinfo->flags & IEEE80211_TX_STAT_ACK);
318
319 /* moving average, scaled to 100 */
Javier Cardona35b3fe1c2012-06-08 13:30:25 -0700320 sta->fail_avg = ((80 * sta->fail_avg + 5) / 100 + 20 * failed);
321 if (sta->fail_avg > 95)
322 mesh_plink_broken(sta);
Javier Cardonabfc32e62009-08-17 17:15:55 -0700323}
324
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100325static u32 airtime_link_metric_get(struct ieee80211_local *local,
326 struct sta_info *sta)
327{
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800328 struct rate_info rinfo;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100329 /* This should be adjusted for each device */
330 int device_constant = 1 << ARITH_SHIFT;
331 int test_frame_len = TEST_FRAME_LEN << ARITH_SHIFT;
332 int s_unit = 1 << ARITH_SHIFT;
333 int rate, err;
334 u32 tx_time, estimated_retx;
335 u64 result;
336
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100337 if (sta->fail_avg >= 100)
338 return MAX_METRIC;
Johannes Berge6a98542008-10-21 12:40:02 +0200339
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800340 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &rinfo);
341 rate = cfg80211_calculate_bitrate(&rinfo);
342 if (WARN_ON(!rate))
Johannes Berge6a98542008-10-21 12:40:02 +0200343 return MAX_METRIC;
344
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100345 err = (sta->fail_avg << ARITH_SHIFT) / 100;
346
347 /* bitrate is in units of 100 Kbps, while we need rate in units of
348 * 1Mbps. This will be corrected on tx_time computation.
349 */
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100350 tx_time = (device_constant + 10 * test_frame_len / rate);
351 estimated_retx = ((1 << (2 * ARITH_SHIFT)) / (s_unit - err));
352 result = (tx_time * estimated_retx) >> (2 * ARITH_SHIFT) ;
353 return (u32)result;
354}
355
356/**
357 * hwmp_route_info_get - Update routing info to originator and transmitter
358 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200359 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100360 * @mgmt: mesh management frame
361 * @hwmp_ie: hwmp information element (PREP or PREQ)
362 *
363 * This function updates the path routing information to the originator and the
Andrey Yurovskyf99288d2009-10-20 12:17:34 -0700364 * transmitter of a HWMP PREQ or PREP frame.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100365 *
366 * Returns: metric to frame originator or 0 if the frame should not be further
367 * processed
368 *
369 * Notes: this function is the only place (besides user-provided info) where
370 * path routing information is updated.
371 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200372static u32 hwmp_route_info_get(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100373 struct ieee80211_mgmt *mgmt,
Rui Paulodbb81c42009-11-09 23:46:46 +0000374 u8 *hwmp_ie, enum mpath_frame_type action)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100375{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200376 struct ieee80211_local *local = sdata->local;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100377 struct mesh_path *mpath;
378 struct sta_info *sta;
379 bool fresh_info;
380 u8 *orig_addr, *ta;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000381 u32 orig_sn, orig_metric;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100382 unsigned long orig_lifetime, exp_time;
383 u32 last_hop_metric, new_metric;
384 bool process = true;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100385
386 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100387 sta = sta_info_get(sdata, mgmt->sa);
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100388 if (!sta) {
389 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100390 return 0;
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100391 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100392
393 last_hop_metric = airtime_link_metric_get(local, sta);
394 /* Update and check originator routing info */
395 fresh_info = true;
396
397 switch (action) {
398 case MPATH_PREQ:
399 orig_addr = PREQ_IE_ORIG_ADDR(hwmp_ie);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000400 orig_sn = PREQ_IE_ORIG_SN(hwmp_ie);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100401 orig_lifetime = PREQ_IE_LIFETIME(hwmp_ie);
402 orig_metric = PREQ_IE_METRIC(hwmp_ie);
403 break;
404 case MPATH_PREP:
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800405 /* Originator here refers to the MP that was the target in the
406 * Path Request. We divert from the nomenclature in the draft
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100407 * so that we can easily use a single function to gather path
408 * information from both PREQ and PREP frames.
409 */
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800410 orig_addr = PREP_IE_TARGET_ADDR(hwmp_ie);
411 orig_sn = PREP_IE_TARGET_SN(hwmp_ie);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100412 orig_lifetime = PREP_IE_LIFETIME(hwmp_ie);
413 orig_metric = PREP_IE_METRIC(hwmp_ie);
414 break;
415 default:
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100416 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100417 return 0;
418 }
419 new_metric = orig_metric + last_hop_metric;
420 if (new_metric < orig_metric)
421 new_metric = MAX_METRIC;
422 exp_time = TU_TO_EXP_TIME(orig_lifetime);
423
Joe Perchesb203ca32012-05-08 18:56:52 +0000424 if (ether_addr_equal(orig_addr, sdata->vif.addr)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100425 /* This MP is the originator, we are not interested in this
426 * frame, except for updating transmitter's path info.
427 */
428 process = false;
429 fresh_info = false;
430 } else {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200431 mpath = mesh_path_lookup(orig_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100432 if (mpath) {
433 spin_lock_bh(&mpath->state_lock);
434 if (mpath->flags & MESH_PATH_FIXED)
435 fresh_info = false;
436 else if ((mpath->flags & MESH_PATH_ACTIVE) &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000437 (mpath->flags & MESH_PATH_SN_VALID)) {
438 if (SN_GT(mpath->sn, orig_sn) ||
439 (mpath->sn == orig_sn &&
Porsch, Marco533866b2010-02-24 09:53:13 +0100440 new_metric >= mpath->metric)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100441 process = false;
442 fresh_info = false;
443 }
444 }
445 } else {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200446 mesh_path_add(orig_addr, sdata);
447 mpath = mesh_path_lookup(orig_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100448 if (!mpath) {
449 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100450 return 0;
451 }
452 spin_lock_bh(&mpath->state_lock);
453 }
454
455 if (fresh_info) {
456 mesh_path_assign_nexthop(mpath, sta);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000457 mpath->flags |= MESH_PATH_SN_VALID;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100458 mpath->metric = new_metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000459 mpath->sn = orig_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100460 mpath->exp_time = time_after(mpath->exp_time, exp_time)
461 ? mpath->exp_time : exp_time;
462 mesh_path_activate(mpath);
463 spin_unlock_bh(&mpath->state_lock);
464 mesh_path_tx_pending(mpath);
465 /* draft says preq_id should be saved to, but there does
466 * not seem to be any use for it, skipping by now
467 */
468 } else
469 spin_unlock_bh(&mpath->state_lock);
470 }
471
472 /* Update and check transmitter routing info */
473 ta = mgmt->sa;
Joe Perchesb203ca32012-05-08 18:56:52 +0000474 if (ether_addr_equal(orig_addr, ta))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100475 fresh_info = false;
476 else {
477 fresh_info = true;
478
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200479 mpath = mesh_path_lookup(ta, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100480 if (mpath) {
481 spin_lock_bh(&mpath->state_lock);
482 if ((mpath->flags & MESH_PATH_FIXED) ||
483 ((mpath->flags & MESH_PATH_ACTIVE) &&
484 (last_hop_metric > mpath->metric)))
485 fresh_info = false;
486 } else {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200487 mesh_path_add(ta, sdata);
488 mpath = mesh_path_lookup(ta, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100489 if (!mpath) {
490 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100491 return 0;
492 }
493 spin_lock_bh(&mpath->state_lock);
494 }
495
496 if (fresh_info) {
497 mesh_path_assign_nexthop(mpath, sta);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100498 mpath->metric = last_hop_metric;
499 mpath->exp_time = time_after(mpath->exp_time, exp_time)
500 ? mpath->exp_time : exp_time;
501 mesh_path_activate(mpath);
502 spin_unlock_bh(&mpath->state_lock);
503 mesh_path_tx_pending(mpath);
504 } else
505 spin_unlock_bh(&mpath->state_lock);
506 }
507
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100508 rcu_read_unlock();
509
510 return process ? new_metric : 0;
511}
512
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200513static void hwmp_preq_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100514 struct ieee80211_mgmt *mgmt,
David Woo57ef5dd2009-08-12 11:03:43 -0700515 u8 *preq_elem, u32 metric)
516{
Johannes Berg472dbc42008-09-11 00:01:49 +0200517 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800518 struct mesh_path *mpath = NULL;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000519 u8 *target_addr, *orig_addr;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800520 const u8 *da;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800521 u8 target_flags, ttl, flags;
522 u32 orig_sn, target_sn, lifetime, orig_metric;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100523 bool reply = false;
524 bool forward = true;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800525 bool root_is_gate;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100526
Rui Paulod19b3bf2009-11-09 23:46:55 +0000527 /* Update target SN, if present */
528 target_addr = PREQ_IE_TARGET_ADDR(preq_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100529 orig_addr = PREQ_IE_ORIG_ADDR(preq_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000530 target_sn = PREQ_IE_TARGET_SN(preq_elem);
531 orig_sn = PREQ_IE_ORIG_SN(preq_elem);
532 target_flags = PREQ_IE_TARGET_F(preq_elem);
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800533 orig_metric = metric;
534 /* Proactive PREQ gate announcements */
535 flags = PREQ_IE_FLAGS(preq_elem);
536 root_is_gate = !!(flags & RANN_FLAG_IS_GATE);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100537
Javier Cardona76468872011-08-09 16:45:04 -0700538 mhwmp_dbg("received PREQ from %pM", orig_addr);
Rui Paulo27db2e42009-11-09 23:46:45 +0000539
Joe Perchesb203ca32012-05-08 18:56:52 +0000540 if (ether_addr_equal(target_addr, sdata->vif.addr)) {
Javier Cardona76468872011-08-09 16:45:04 -0700541 mhwmp_dbg("PREQ is for us");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100542 forward = false;
543 reply = true;
544 metric = 0;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000545 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100546 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +0000547 time_before(jiffies, ifmsh->last_sn_update)) {
548 target_sn = ++ifmsh->sn;
549 ifmsh->last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100550 }
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800551 } else if (is_broadcast_ether_addr(target_addr) &&
552 (target_flags & IEEE80211_PREQ_TO_FLAG)) {
553 rcu_read_lock();
554 mpath = mesh_path_lookup(orig_addr, sdata);
555 if (mpath) {
556 if (flags & IEEE80211_PREQ_PROACTIVE_PREP_FLAG) {
557 reply = true;
558 target_addr = sdata->vif.addr;
559 target_sn = ++ifmsh->sn;
560 metric = 0;
561 ifmsh->last_sn_update = jiffies;
562 }
563 if (root_is_gate)
564 mesh_path_add_gate(mpath);
565 }
566 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100567 } else {
568 rcu_read_lock();
Rui Paulod19b3bf2009-11-09 23:46:55 +0000569 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100570 if (mpath) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000571 if ((!(mpath->flags & MESH_PATH_SN_VALID)) ||
572 SN_LT(mpath->sn, target_sn)) {
573 mpath->sn = target_sn;
574 mpath->flags |= MESH_PATH_SN_VALID;
575 } else if ((!(target_flags & MP_F_DO)) &&
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100576 (mpath->flags & MESH_PATH_ACTIVE)) {
577 reply = true;
578 metric = mpath->metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000579 target_sn = mpath->sn;
580 if (target_flags & MP_F_RF)
581 target_flags |= MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100582 else
583 forward = false;
584 }
585 }
586 rcu_read_unlock();
587 }
588
589 if (reply) {
590 lifetime = PREQ_IE_LIFETIME(preq_elem);
Javier Cardona45904f22010-12-03 09:20:40 +0100591 ttl = ifmsh->mshcfg.element_ttl;
Rui Paulo27db2e42009-11-09 23:46:45 +0000592 if (ttl != 0) {
Javier Cardona76468872011-08-09 16:45:04 -0700593 mhwmp_dbg("replying to the PREQ");
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800594 mesh_path_sel_frame_tx(MPATH_PREP, 0, orig_addr,
595 cpu_to_le32(orig_sn), 0, target_addr,
596 cpu_to_le32(target_sn), mgmt->sa, 0, ttl,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800597 cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200598 0, sdata);
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800599 } else {
Johannes Berg472dbc42008-09-11 00:01:49 +0200600 ifmsh->mshstats.dropped_frames_ttl++;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800601 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100602 }
603
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800604 if (forward && ifmsh->mshcfg.dot11MeshForwarding) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100605 u32 preq_id;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800606 u8 hopcount;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100607
608 ttl = PREQ_IE_TTL(preq_elem);
609 lifetime = PREQ_IE_LIFETIME(preq_elem);
610 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200611 ifmsh->mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100612 return;
613 }
Javier Cardona76468872011-08-09 16:45:04 -0700614 mhwmp_dbg("forwarding the PREQ from %pM", orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100615 --ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100616 preq_id = PREQ_IE_PREQ_ID(preq_elem);
617 hopcount = PREQ_IE_HOPCOUNT(preq_elem) + 1;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800618 da = (mpath && mpath->is_root) ?
619 mpath->rann_snd_addr : broadcast_addr;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800620
621 if (flags & IEEE80211_PREQ_PROACTIVE_PREP_FLAG) {
622 target_addr = PREQ_IE_TARGET_ADDR(preq_elem);
623 target_sn = PREQ_IE_TARGET_SN(preq_elem);
624 metric = orig_metric;
625 }
626
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100627 mesh_path_sel_frame_tx(MPATH_PREQ, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000628 cpu_to_le32(orig_sn), target_flags, target_addr,
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800629 cpu_to_le32(target_sn), da,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800630 hopcount, ttl, cpu_to_le32(lifetime),
631 cpu_to_le32(metric), cpu_to_le32(preq_id),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200632 sdata);
Chun-Yeow Yeoh7d4e15b2012-05-04 14:57:50 +0800633 if (!is_multicast_ether_addr(da))
634 ifmsh->mshstats.fwded_unicast++;
635 else
636 ifmsh->mshstats.fwded_mcast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200637 ifmsh->mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100638 }
639}
640
641
Johannes Berg40b275b2011-05-13 14:15:49 +0200642static inline struct sta_info *
643next_hop_deref_protected(struct mesh_path *mpath)
644{
645 return rcu_dereference_protected(mpath->next_hop,
646 lockdep_is_held(&mpath->state_lock));
647}
648
649
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200650static void hwmp_prep_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100651 struct ieee80211_mgmt *mgmt,
652 u8 *prep_elem, u32 metric)
653{
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800654 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100655 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000656 u8 *target_addr, *orig_addr;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100657 u8 ttl, hopcount, flags;
658 u8 next_hop[ETH_ALEN];
Rui Paulod19b3bf2009-11-09 23:46:55 +0000659 u32 target_sn, orig_sn, lifetime;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100660
Javier Cardona76468872011-08-09 16:45:04 -0700661 mhwmp_dbg("received PREP from %pM", PREP_IE_ORIG_ADDR(prep_elem));
Rui Paulodbb81c42009-11-09 23:46:46 +0000662
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800663 orig_addr = PREP_IE_ORIG_ADDR(prep_elem);
Joe Perchesb203ca32012-05-08 18:56:52 +0000664 if (ether_addr_equal(orig_addr, sdata->vif.addr))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100665 /* destination, no forwarding required */
666 return;
667
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800668 if (!ifmsh->mshcfg.dot11MeshForwarding)
669 return;
670
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100671 ttl = PREP_IE_TTL(prep_elem);
672 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200673 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100674 return;
675 }
676
677 rcu_read_lock();
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800678 mpath = mesh_path_lookup(orig_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100679 if (mpath)
680 spin_lock_bh(&mpath->state_lock);
681 else
682 goto fail;
683 if (!(mpath->flags & MESH_PATH_ACTIVE)) {
684 spin_unlock_bh(&mpath->state_lock);
685 goto fail;
686 }
Johannes Berg40b275b2011-05-13 14:15:49 +0200687 memcpy(next_hop, next_hop_deref_protected(mpath)->sta.addr, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100688 spin_unlock_bh(&mpath->state_lock);
689 --ttl;
690 flags = PREP_IE_FLAGS(prep_elem);
691 lifetime = PREP_IE_LIFETIME(prep_elem);
692 hopcount = PREP_IE_HOPCOUNT(prep_elem) + 1;
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800693 target_addr = PREP_IE_TARGET_ADDR(prep_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000694 target_sn = PREP_IE_TARGET_SN(prep_elem);
695 orig_sn = PREP_IE_ORIG_SN(prep_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100696
697 mesh_path_sel_frame_tx(MPATH_PREP, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000698 cpu_to_le32(orig_sn), 0, target_addr,
Porsch, Marco533866b2010-02-24 09:53:13 +0100699 cpu_to_le32(target_sn), next_hop, hopcount,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000700 ttl, cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200701 0, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100702 rcu_read_unlock();
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700703
704 sdata->u.mesh.mshstats.fwded_unicast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200705 sdata->u.mesh.mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100706 return;
707
708fail:
709 rcu_read_unlock();
Johannes Berg472dbc42008-09-11 00:01:49 +0200710 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100711}
712
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200713static void hwmp_perr_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100714 struct ieee80211_mgmt *mgmt, u8 *perr_elem)
715{
Rui Paulod611f062009-11-09 23:46:50 +0000716 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100717 struct mesh_path *mpath;
Rui Paulod611f062009-11-09 23:46:50 +0000718 u8 ttl;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000719 u8 *ta, *target_addr;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000720 u32 target_sn;
721 u16 target_rcode;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100722
723 ta = mgmt->sa;
Rui Paulod611f062009-11-09 23:46:50 +0000724 ttl = PERR_IE_TTL(perr_elem);
725 if (ttl <= 1) {
726 ifmsh->mshstats.dropped_frames_ttl++;
727 return;
728 }
729 ttl--;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000730 target_addr = PERR_IE_TARGET_ADDR(perr_elem);
731 target_sn = PERR_IE_TARGET_SN(perr_elem);
732 target_rcode = PERR_IE_TARGET_RCODE(perr_elem);
Rui Paulod611f062009-11-09 23:46:50 +0000733
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100734 rcu_read_lock();
Rui Paulod19b3bf2009-11-09 23:46:55 +0000735 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100736 if (mpath) {
Felix Fietkau888d04d2012-03-01 15:22:09 +0100737 struct sta_info *sta;
738
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100739 spin_lock_bh(&mpath->state_lock);
Felix Fietkau888d04d2012-03-01 15:22:09 +0100740 sta = next_hop_deref_protected(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100741 if (mpath->flags & MESH_PATH_ACTIVE &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000742 ether_addr_equal(ta, sta->sta.addr) &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000743 (!(mpath->flags & MESH_PATH_SN_VALID) ||
744 SN_GT(target_sn, mpath->sn))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100745 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000746 mpath->sn = target_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100747 spin_unlock_bh(&mpath->state_lock);
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800748 if (!ifmsh->mshcfg.dot11MeshForwarding)
749 goto endperr;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000750 mesh_path_error_tx(ttl, target_addr, cpu_to_le32(target_sn),
751 cpu_to_le16(target_rcode),
Johannes Berg15ff6362009-11-17 13:34:04 +0100752 broadcast_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100753 } else
754 spin_unlock_bh(&mpath->state_lock);
755 }
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800756endperr:
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100757 rcu_read_unlock();
758}
759
Rui Paulo90a5e162009-11-11 00:01:31 +0000760static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata,
761 struct ieee80211_mgmt *mgmt,
762 struct ieee80211_rann_ie *rann)
763{
764 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800765 struct ieee80211_local *local = sdata->local;
766 struct sta_info *sta;
Rui Paulo90a5e162009-11-11 00:01:31 +0000767 struct mesh_path *mpath;
Rui Paulo90a5e162009-11-11 00:01:31 +0000768 u8 ttl, flags, hopcount;
769 u8 *orig_addr;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800770 u32 orig_sn, metric, metric_txsta, interval;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700771 bool root_is_gate;
Rui Paulo90a5e162009-11-11 00:01:31 +0000772
Rui Paulo90a5e162009-11-11 00:01:31 +0000773 ttl = rann->rann_ttl;
774 if (ttl <= 1) {
775 ifmsh->mshstats.dropped_frames_ttl++;
776 return;
777 }
778 ttl--;
779 flags = rann->rann_flags;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700780 root_is_gate = !!(flags & RANN_FLAG_IS_GATE);
Rui Paulo90a5e162009-11-11 00:01:31 +0000781 orig_addr = rann->rann_addr;
Chun-Yeow Yeoh292c41a2012-03-19 21:38:46 +0800782 orig_sn = le32_to_cpu(rann->rann_seq);
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800783 interval = le32_to_cpu(rann->rann_interval);
Rui Paulo90a5e162009-11-11 00:01:31 +0000784 hopcount = rann->rann_hopcount;
Rui Pauloa6a58b42009-11-09 23:46:51 +0000785 hopcount++;
Chun-Yeow Yeoh292c41a2012-03-19 21:38:46 +0800786 metric = le32_to_cpu(rann->rann_metric);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700787
788 /* Ignore our own RANNs */
Joe Perchesb203ca32012-05-08 18:56:52 +0000789 if (ether_addr_equal(orig_addr, sdata->vif.addr))
Javier Cardona5ee68e52011-08-09 16:45:08 -0700790 return;
791
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800792 mhwmp_dbg("received RANN from %pM via neighbour %pM (is_gate=%d)",
793 orig_addr, mgmt->sa, root_is_gate);
Rui Paulo90a5e162009-11-11 00:01:31 +0000794
795 rcu_read_lock();
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800796 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
Rui Paulo90a5e162009-11-11 00:01:31 +0000804 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 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000813 }
Javier Cardona5ee68e52011-08-09 16:45:08 -0700814
815 if ((!(mpath->flags & (MESH_PATH_ACTIVE | MESH_PATH_RESOLVING)) ||
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800816 (time_after(jiffies, mpath->last_preq_to_root +
817 root_path_confirmation_jiffies(sdata)) ||
818 time_before(jiffies, mpath->last_preq_to_root))) &&
Javier Cardona5ee68e52011-08-09 16:45:08 -0700819 !(mpath->flags & MESH_PATH_FIXED)) {
820 mhwmp_dbg("%s time to refresh root mpath %pM", sdata->name,
821 orig_addr);
822 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800823 mpath->last_preq_to_root = jiffies;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700824 }
825
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800826 if ((SN_LT(mpath->sn, orig_sn) || (mpath->sn == orig_sn &&
827 metric < mpath->rann_metric)) && ifmsh->mshcfg.dot11MeshForwarding) {
Rui Paulo90a5e162009-11-11 00:01:31 +0000828 mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000829 cpu_to_le32(orig_sn),
Johannes Berg15ff6362009-11-17 13:34:04 +0100830 0, NULL, 0, broadcast_addr,
Javier Cardona0507e152011-08-09 16:45:10 -0700831 hopcount, ttl, cpu_to_le32(interval),
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800832 cpu_to_le32(metric + metric_txsta),
Rui Paulo90a5e162009-11-11 00:01:31 +0000833 0, sdata);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000834 mpath->sn = orig_sn;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800835 mpath->rann_metric = metric + metric_txsta;
Chun-Yeow Yeoh35bcd592012-04-10 12:31:56 +0800836 /* 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);
Rui Paulo90a5e162009-11-11 00:01:31 +0000839 }
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800840
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800841 mpath->is_root = true;
842
Javier Cardona5ee68e52011-08-09 16:45:08 -0700843 if (root_is_gate)
844 mesh_path_add_gate(mpath);
845
Rui Paulo90a5e162009-11-11 00:01:31 +0000846 rcu_read_unlock();
847}
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100848
849
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200850void mesh_rx_path_sel_frame(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100851 struct ieee80211_mgmt *mgmt,
852 size_t len)
853{
854 struct ieee802_11_elems elems;
855 size_t baselen;
856 u32 last_hop_metric;
Javier Cardona97091312011-10-06 14:54:22 -0700857 struct sta_info *sta;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100858
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200859 /* need action_code */
860 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
861 return;
862
Javier Cardona97091312011-10-06 14:54:22 -0700863 rcu_read_lock();
864 sta = sta_info_get(sdata, mgmt->sa);
865 if (!sta || sta->plink_state != NL80211_PLINK_ESTAB) {
866 rcu_read_unlock();
867 return;
868 }
869 rcu_read_unlock();
870
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100871 baselen = (u8 *) mgmt->u.action.u.mesh_action.variable - (u8 *) mgmt;
872 ieee802_11_parse_elems(mgmt->u.action.u.mesh_action.variable,
873 len - baselen, &elems);
874
Rui Paulodbb81c42009-11-09 23:46:46 +0000875 if (elems.preq) {
876 if (elems.preq_len != 37)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100877 /* Right now we support just 1 destination and no AE */
878 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000879 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.preq,
880 MPATH_PREQ);
881 if (last_hop_metric)
882 hwmp_preq_frame_process(sdata, mgmt, elems.preq,
883 last_hop_metric);
884 }
885 if (elems.prep) {
886 if (elems.prep_len != 31)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100887 /* Right now we support no AE */
888 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000889 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.prep,
890 MPATH_PREP);
891 if (last_hop_metric)
892 hwmp_prep_frame_process(sdata, mgmt, elems.prep,
893 last_hop_metric);
894 }
895 if (elems.perr) {
Rui Paulod611f062009-11-09 23:46:50 +0000896 if (elems.perr_len != 15)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100897 /* Right now we support only one destination per PERR */
898 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200899 hwmp_perr_frame_process(sdata, mgmt, elems.perr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100900 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000901 if (elems.rann)
902 hwmp_rann_frame_process(sdata, mgmt, elems.rann);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100903}
904
905/**
906 * mesh_queue_preq - queue a PREQ to a given destination
907 *
908 * @mpath: mesh path to discover
909 * @flags: special attributes of the PREQ to be sent
910 *
911 * Locking: the function must be called from within a rcu read lock block.
912 *
913 */
914static void mesh_queue_preq(struct mesh_path *mpath, u8 flags)
915{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200916 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Johannes Berg472dbc42008-09-11 00:01:49 +0200917 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100918 struct mesh_preq_queue *preq_node;
919
Andrey Yurovsky59615b52009-06-25 16:07:42 -0700920 preq_node = kmalloc(sizeof(struct mesh_preq_queue), GFP_ATOMIC);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100921 if (!preq_node) {
Javier Cardona76468872011-08-09 16:45:04 -0700922 mhwmp_dbg("could not allocate PREQ node");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100923 return;
924 }
925
Baruch Siach987dafa2011-07-28 08:51:05 +0300926 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200927 if (ifmsh->preq_queue_len == MAX_PREQ_QUEUE_LEN) {
Baruch Siach987dafa2011-07-28 08:51:05 +0300928 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100929 kfree(preq_node);
930 if (printk_ratelimit())
Javier Cardona76468872011-08-09 16:45:04 -0700931 mhwmp_dbg("PREQ node queue full");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100932 return;
933 }
934
Johannes Bergf2dc7982011-11-18 15:27:31 +0100935 spin_lock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700936 if (mpath->flags & MESH_PATH_REQ_QUEUED) {
Johannes Bergf2dc7982011-11-18 15:27:31 +0100937 spin_unlock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700938 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Dan Carpenter88d53462011-11-15 09:33:31 +0300939 kfree(preq_node);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700940 return;
941 }
942
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100943 memcpy(preq_node->dst, mpath->dst, ETH_ALEN);
944 preq_node->flags = flags;
945
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700946 mpath->flags |= MESH_PATH_REQ_QUEUED;
Johannes Bergf2dc7982011-11-18 15:27:31 +0100947 spin_unlock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700948
Johannes Berg472dbc42008-09-11 00:01:49 +0200949 list_add_tail(&preq_node->list, &ifmsh->preq_queue.list);
950 ++ifmsh->preq_queue_len;
Baruch Siach987dafa2011-07-28 08:51:05 +0300951 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100952
Johannes Berg472dbc42008-09-11 00:01:49 +0200953 if (time_after(jiffies, ifmsh->last_preq + min_preq_int_jiff(sdata)))
Johannes Berg64592c82010-06-10 10:21:31 +0200954 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100955
Johannes Berg472dbc42008-09-11 00:01:49 +0200956 else if (time_before(jiffies, ifmsh->last_preq)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100957 /* avoid long wait if did not send preqs for a long time
958 * and jiffies wrapped around
959 */
Johannes Berg472dbc42008-09-11 00:01:49 +0200960 ifmsh->last_preq = jiffies - min_preq_int_jiff(sdata) - 1;
Johannes Berg64592c82010-06-10 10:21:31 +0200961 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100962 } else
Johannes Berg472dbc42008-09-11 00:01:49 +0200963 mod_timer(&ifmsh->mesh_path_timer, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100964 min_preq_int_jiff(sdata));
965}
966
967/**
968 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
969 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200970 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100971 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200972void mesh_path_start_discovery(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100973{
Johannes Berg472dbc42008-09-11 00:01:49 +0200974 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100975 struct mesh_preq_queue *preq_node;
976 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000977 u8 ttl, target_flags;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800978 const u8 *da;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100979 u32 lifetime;
980
Johannes Berga43816d2009-07-10 11:39:26 +0200981 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200982 if (!ifmsh->preq_queue_len ||
983 time_before(jiffies, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100984 min_preq_int_jiff(sdata))) {
Johannes Berga43816d2009-07-10 11:39:26 +0200985 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100986 return;
987 }
988
Johannes Berg472dbc42008-09-11 00:01:49 +0200989 preq_node = list_first_entry(&ifmsh->preq_queue.list,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100990 struct mesh_preq_queue, list);
991 list_del(&preq_node->list);
Johannes Berg472dbc42008-09-11 00:01:49 +0200992 --ifmsh->preq_queue_len;
Johannes Berga43816d2009-07-10 11:39:26 +0200993 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100994
995 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200996 mpath = mesh_path_lookup(preq_node->dst, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100997 if (!mpath)
998 goto enddiscovery;
999
1000 spin_lock_bh(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -07001001 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001002 if (preq_node->flags & PREQ_Q_F_START) {
1003 if (mpath->flags & MESH_PATH_RESOLVING) {
1004 spin_unlock_bh(&mpath->state_lock);
1005 goto enddiscovery;
1006 } else {
1007 mpath->flags &= ~MESH_PATH_RESOLVED;
1008 mpath->flags |= MESH_PATH_RESOLVING;
1009 mpath->discovery_retries = 0;
1010 mpath->discovery_timeout = disc_timeout_jiff(sdata);
1011 }
1012 } else if (!(mpath->flags & MESH_PATH_RESOLVING) ||
1013 mpath->flags & MESH_PATH_RESOLVED) {
1014 mpath->flags &= ~MESH_PATH_RESOLVING;
1015 spin_unlock_bh(&mpath->state_lock);
1016 goto enddiscovery;
1017 }
1018
Johannes Berg472dbc42008-09-11 00:01:49 +02001019 ifmsh->last_preq = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001020
Rui Paulod19b3bf2009-11-09 23:46:55 +00001021 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001022 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +00001023 time_before(jiffies, ifmsh->last_sn_update)) {
1024 ++ifmsh->sn;
1025 sdata->u.mesh.last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001026 }
1027 lifetime = default_lifetime(sdata);
Javier Cardona45904f22010-12-03 09:20:40 +01001028 ttl = sdata->u.mesh.mshcfg.element_ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001029 if (ttl == 0) {
Johannes Berg472dbc42008-09-11 00:01:49 +02001030 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001031 spin_unlock_bh(&mpath->state_lock);
1032 goto enddiscovery;
1033 }
1034
1035 if (preq_node->flags & PREQ_Q_F_REFRESH)
Rui Paulod19b3bf2009-11-09 23:46:55 +00001036 target_flags = MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001037 else
Rui Paulod19b3bf2009-11-09 23:46:55 +00001038 target_flags = MP_F_RF;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001039
1040 spin_unlock_bh(&mpath->state_lock);
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +08001041 da = (mpath->is_root) ? mpath->rann_snd_addr : broadcast_addr;
Johannes Berg47846c92009-11-25 17:46:19 +01001042 mesh_path_sel_frame_tx(MPATH_PREQ, 0, sdata->vif.addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +00001043 cpu_to_le32(ifmsh->sn), target_flags, mpath->dst,
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +08001044 cpu_to_le32(mpath->sn), da, 0,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -08001045 ttl, cpu_to_le32(lifetime), 0,
Johannes Berg472dbc42008-09-11 00:01:49 +02001046 cpu_to_le32(ifmsh->preq_id++), sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001047 mod_timer(&mpath->timer, jiffies + mpath->discovery_timeout);
1048
1049enddiscovery:
1050 rcu_read_unlock();
1051 kfree(preq_node);
1052}
1053
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001054/* mesh_nexthop_resolve - lookup next hop for given skb and start path
1055 * discovery if no forwarding information is found.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001056 *
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001057 * @skb: 802.11 frame to be sent
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001058 * @sdata: network subif the frame will be sent through
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001059 *
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001060 * Returns: 0 if the next hop was found and -ENOENT if the frame was queued.
1061 * skb is freeed here if no mpath could be allocated.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001062 */
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001063int mesh_nexthop_resolve(struct sk_buff *skb,
1064 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001065{
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001066 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001067 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1068 struct mesh_path *mpath;
1069 struct sk_buff *skb_to_free = NULL;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001070 u8 *target_addr = hdr->addr3;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001071 int err = 0;
1072
1073 rcu_read_lock();
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001074 err = mesh_nexthop_lookup(skb, sdata);
1075 if (!err)
1076 goto endlookup;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001077
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001078 /* no nexthop found, start resolving */
1079 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001080 if (!mpath) {
Rui Paulod19b3bf2009-11-09 23:46:55 +00001081 mesh_path_add(target_addr, sdata);
1082 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001083 if (!mpath) {
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001084 mesh_path_discard_frame(skb, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001085 err = -ENOSPC;
1086 goto endlookup;
1087 }
1088 }
1089
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001090 if (!(mpath->flags & MESH_PATH_RESOLVING))
1091 mesh_queue_preq(mpath, PREQ_Q_F_START);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001092
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001093 if (skb_queue_len(&mpath->frame_queue) >= MESH_FRAME_QUEUE_LEN)
1094 skb_to_free = skb_dequeue(&mpath->frame_queue);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001095
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001096 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1097 ieee80211_set_qos_hdr(sdata, skb);
1098 skb_queue_tail(&mpath->frame_queue, skb);
1099 err = -ENOENT;
1100 if (skb_to_free)
1101 mesh_path_discard_frame(skb_to_free, sdata);
1102
1103endlookup:
1104 rcu_read_unlock();
1105 return err;
1106}
1107/**
1108 * mesh_nexthop_lookup - put the appropriate next hop on a mesh frame. Calling
1109 * this function is considered "using" the associated mpath, so preempt a path
1110 * refresh if this mpath expires soon.
1111 *
1112 * @skb: 802.11 frame to be sent
1113 * @sdata: network subif the frame will be sent through
1114 *
1115 * Returns: 0 if the next hop was found. Nonzero otherwise.
1116 */
1117int mesh_nexthop_lookup(struct sk_buff *skb,
1118 struct ieee80211_sub_if_data *sdata)
1119{
1120 struct mesh_path *mpath;
1121 struct sta_info *next_hop;
1122 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1123 u8 *target_addr = hdr->addr3;
1124 int err = -ENOENT;
1125
1126 rcu_read_lock();
1127 mpath = mesh_path_lookup(target_addr, sdata);
1128
1129 if (!mpath || !(mpath->flags & MESH_PATH_ACTIVE))
1130 goto endlookup;
1131
1132 if (time_after(jiffies,
1133 mpath->exp_time -
1134 msecs_to_jiffies(sdata->u.mesh.mshcfg.path_refresh_time)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001135 ether_addr_equal(sdata->vif.addr, hdr->addr4) &&
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001136 !(mpath->flags & MESH_PATH_RESOLVING) &&
1137 !(mpath->flags & MESH_PATH_FIXED))
1138 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
1139
1140 next_hop = rcu_dereference(mpath->next_hop);
1141 if (next_hop) {
1142 memcpy(hdr->addr1, next_hop->sta.addr, ETH_ALEN);
1143 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
1144 err = 0;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001145 }
1146
1147endlookup:
1148 rcu_read_unlock();
1149 return err;
1150}
1151
1152void mesh_path_timer(unsigned long data)
1153{
Johannes Bergdea40962011-05-12 15:03:32 +02001154 struct mesh_path *mpath = (void *) data;
1155 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001156 int ret;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001157
Johannes Bergdea40962011-05-12 15:03:32 +02001158 if (sdata->local->quiescing)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001159 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001160
1161 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -08001162 if (mpath->flags & MESH_PATH_RESOLVED ||
Javier Cardona5ee68e52011-08-09 16:45:08 -07001163 (!(mpath->flags & MESH_PATH_RESOLVING))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001164 mpath->flags &= ~(MESH_PATH_RESOLVING | MESH_PATH_RESOLVED);
Javier Cardona5ee68e52011-08-09 16:45:08 -07001165 spin_unlock_bh(&mpath->state_lock);
1166 } else if (mpath->discovery_retries < max_preq_retries(sdata)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001167 ++mpath->discovery_retries;
1168 mpath->discovery_timeout *= 2;
Javier Cardonaf3011cf2011-11-03 21:11:10 -07001169 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001170 spin_unlock_bh(&mpath->state_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001171 mesh_queue_preq(mpath, 0);
1172 } else {
1173 mpath->flags = 0;
1174 mpath->exp_time = jiffies;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001175 spin_unlock_bh(&mpath->state_lock);
1176 if (!mpath->is_gate && mesh_gate_num(sdata) > 0) {
1177 ret = mesh_path_send_to_gates(mpath);
1178 if (ret)
1179 mhwmp_dbg("no gate was reachable");
1180 } else
1181 mesh_path_flush_pending(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001182 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001183}
Rui Pauloe304bfd2009-11-09 23:46:56 +00001184
1185void
1186mesh_path_tx_root_frame(struct ieee80211_sub_if_data *sdata)
1187{
1188 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardona0507e152011-08-09 16:45:10 -07001189 u32 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001190 u8 flags, target_flags = 0;
Rui Pauloe304bfd2009-11-09 23:46:56 +00001191
Javier Cardona16dd7262011-08-09 16:45:11 -07001192 flags = (ifmsh->mshcfg.dot11MeshGateAnnouncementProtocol)
1193 ? RANN_FLAG_IS_GATE : 0;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001194
1195 switch (ifmsh->mshcfg.dot11MeshHWMPRootMode) {
1196 case IEEE80211_PROACTIVE_RANN:
1197 mesh_path_sel_frame_tx(MPATH_RANN, flags, sdata->vif.addr,
Rui Pauloe304bfd2009-11-09 23:46:56 +00001198 cpu_to_le32(++ifmsh->sn),
Johannes Berg15ff6362009-11-17 13:34:04 +01001199 0, NULL, 0, broadcast_addr,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001200 0, ifmsh->mshcfg.element_ttl,
Javier Cardona0507e152011-08-09 16:45:10 -07001201 cpu_to_le32(interval), 0, 0, sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001202 break;
1203 case IEEE80211_PROACTIVE_PREQ_WITH_PREP:
1204 flags |= IEEE80211_PREQ_PROACTIVE_PREP_FLAG;
1205 case IEEE80211_PROACTIVE_PREQ_NO_PREP:
1206 interval = ifmsh->mshcfg.dot11MeshHWMPactivePathToRootTimeout;
1207 target_flags |= IEEE80211_PREQ_TO_FLAG |
1208 IEEE80211_PREQ_USN_FLAG;
1209 mesh_path_sel_frame_tx(MPATH_PREQ, flags, sdata->vif.addr,
1210 cpu_to_le32(++ifmsh->sn), target_flags,
1211 (u8 *) broadcast_addr, 0, broadcast_addr,
1212 0, ifmsh->mshcfg.element_ttl,
1213 cpu_to_le32(interval),
1214 0, cpu_to_le32(ifmsh->preq_id++), sdata);
1215 break;
1216 default:
1217 mhwmp_dbg("Proactive mechanism not supported");
1218 return;
1219 }
Rui Pauloe304bfd2009-11-09 23:46:56 +00001220}