blob: bdb8d3b145870d9f212ca4a0dfc5b3de596f60c0 [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
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010016#define TEST_FRAME_LEN 8192
17#define MAX_METRIC 0xffffffff
18#define ARITH_SHIFT 8
19
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010020#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
Rui Paulod611f062009-11-09 23:46:50 +000026/* Unknown Sequence Number */
27#define MP_F_USN 0x01
28/* Reason code Present */
29#define MP_F_RCODE 0x02
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010030
Rui Paulo90a5e162009-11-11 00:01:31 +000031static void mesh_queue_preq(struct mesh_path *, u8);
32
Johannes Berg4a3cb702013-02-12 16:43:19 +010033static inline u32 u32_field_get(const u8 *preq_elem, int offset, bool ae)
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080034{
35 if (ae)
36 offset += 6;
Harvey Harrisonae7245c2008-05-01 22:19:33 -070037 return get_unaligned_le32(preq_elem + offset);
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080038}
39
Johannes Berg4a3cb702013-02-12 16:43:19 +010040static inline u32 u16_field_get(const u8 *preq_elem, int offset, bool ae)
Rui Paulod611f062009-11-09 23:46:50 +000041{
42 if (ae)
43 offset += 6;
44 return get_unaligned_le16(preq_elem + offset);
45}
46
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010047/* HWMP IE processing macros */
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080048#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)
Phil Carmody497888c2011-07-14 15:07:13 +030055#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))
Rui Paulod19b3bf2009-11-09 23:46:55 +000058#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)
Phil Carmody497888c2011-07-14 15:07:13 +030060#define PREQ_IE_TARGET_SN(x) u32_field_get(x, 33, AE_F_SET(x))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010061
62
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080063#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)
Thomas Pedersen25d49e42011-08-11 19:35:15 -070066#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))
Phil Carmody497888c2011-07-14 15:07:13 +030068#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))
Thomas Pedersen25d49e42011-08-11 19:35:15 -070070#define PREP_IE_TARGET_ADDR(x) (x + 3)
71#define PREP_IE_TARGET_SN(x) u32_field_get(x, 9, 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010072
Rui Paulod611f062009-11-09 23:46:50 +000073#define PERR_IE_TTL(x) (*(x))
Rui Paulod19b3bf2009-11-09 23:46:55 +000074#define PERR_IE_TARGET_FLAGS(x) (*(x + 2))
75#define PERR_IE_TARGET_ADDR(x) (x + 3)
Phil Carmody497888c2011-07-14 15:07:13 +030076#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)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010078
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010079#define MSEC_TO_TU(x) (x*1000/1024)
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +080080#define SN_GT(x, y) ((s32)(y - x) < 0)
81#define SN_LT(x, y) ((s32)(x - y) < 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010082
83#define net_traversal_jiffies(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020084 msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010085#define default_lifetime(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020086 MSEC_TO_TU(s->u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010087#define min_preq_int_jiff(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020088 (msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval))
89#define max_preq_retries(s) (s->u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010090#define disc_timeout_jiff(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020091 msecs_to_jiffies(sdata->u.mesh.mshcfg.min_discovery_timeout)
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +080092#define root_path_confirmation_jiffies(s) \
93 msecs_to_jiffies(sdata->u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010094
95enum mpath_frame_type {
96 MPATH_PREQ = 0,
97 MPATH_PREP,
Rui Paulo90a5e162009-11-11 00:01:31 +000098 MPATH_PERR,
99 MPATH_RANN
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100100};
101
Johannes Berg15ff6362009-11-17 13:34:04 +0100102static const u8 broadcast_addr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
103
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100104static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100105 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)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100112{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200113 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700114 struct sk_buff *skb;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100115 struct ieee80211_mgmt *mgmt;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700116 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);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100119
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800120 skb = dev_alloc_skb(local->tx_headroom +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700121 hdr_len +
122 2 + 37); /* max HWMP IE */
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100123 if (!skb)
124 return -1;
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800125 skb_reserve(skb, local->tx_headroom);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700126 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
127 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700128 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
129 IEEE80211_STYPE_ACTION);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100130
131 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100132 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Rui Paulo90a5e162009-11-11 00:01:31 +0000133 /* BSSID == SA */
Johannes Berg47846c92009-11-25 17:46:19 +0100134 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700135 mgmt->u.action.category = WLAN_CATEGORY_MESH_ACTION;
136 mgmt->u.action.u.mesh_action.action_code =
137 WLAN_MESH_ACTION_HWMP_PATH_SELECTION;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100138
139 switch (action) {
140 case MPATH_PREQ:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200141 mhwmp_dbg(sdata, "sending PREQ to %pM\n", target);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100142 ie_len = 37;
143 pos = skb_put(skb, 2 + ie_len);
144 *pos++ = WLAN_EID_PREQ;
145 break;
146 case MPATH_PREP:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200147 mhwmp_dbg(sdata, "sending PREP to %pM\n", target);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100148 ie_len = 31;
149 pos = skb_put(skb, 2 + ie_len);
150 *pos++ = WLAN_EID_PREP;
151 break;
Rui Paulo90a5e162009-11-11 00:01:31 +0000152 case MPATH_RANN:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200153 mhwmp_dbg(sdata, "sending RANN from %pM\n", orig_addr);
Rui Paulo90a5e162009-11-11 00:01:31 +0000154 ie_len = sizeof(struct ieee80211_rann_ie);
155 pos = skb_put(skb, 2 + ie_len);
156 *pos++ = WLAN_EID_RANN;
157 break;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100158 default:
Patrick McHardy812714d2008-05-06 12:52:07 +0200159 kfree_skb(skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100160 return -ENOTSUPP;
161 break;
162 }
163 *pos++ = ie_len;
164 *pos++ = flags;
165 *pos++ = hop_count;
166 *pos++ = ttl;
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700167 if (action == MPATH_PREP) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000168 memcpy(pos, target, ETH_ALEN);
Rui Paulo90a5e162009-11-11 00:01:31 +0000169 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000170 memcpy(pos, &target_sn, 4);
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700171 pos += 4;
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);
180 pos += 4;
181 }
182 memcpy(pos, &lifetime, 4); /* interval for RANN */
183 pos += 4;
184 memcpy(pos, &metric, 4);
185 pos += 4;
186 if (action == MPATH_PREQ) {
187 *pos++ = 1; /* destination count */
188 *pos++ = target_flags;
189 memcpy(pos, target, ETH_ALEN);
190 pos += ETH_ALEN;
191 memcpy(pos, &target_sn, 4);
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;
Rui Paulo90a5e162009-11-11 00:01:31 +0000198 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100199
Johannes Berg62ae67b2009-11-18 18:42:05 +0100200 ieee80211_tx_skb(sdata, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100201 return 0;
202}
203
Javier Cardona2cca3972011-09-06 12:10:43 -0700204
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{
Javier Cardona2cca3972011-09-06 12:10:43 -0700210 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100211 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Javier Cardona2cca3972011-09-06 12:10:43 -0700212
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;
Bob Copeland9cbbffe2013-01-09 12:34:55 -0500222 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Javier Cardona2154c812011-09-07 17:49:53 -0700223 ieee80211_set_qos_hdr(sdata, skb);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100224 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
Javier Cardona2cca3972011-09-06 12:10:43 -0700225}
226
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100227/**
Bob Copeland75ea7192013-01-03 00:09:46 -0500228 * mesh_path_error_tx - Sends a PERR mesh management frame
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100229 *
Bob Copeland75ea7192013-01-03 00:09:46 -0500230 * @ttl: allowed remaining hops
Rui Paulod19b3bf2009-11-09 23:46:55 +0000231 * @target: broken destination
232 * @target_sn: SN of the broken destination
233 * @target_rcode: reason code for this PERR
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100234 * @ra: node this frame is addressed to
Bob Copeland75ea7192013-01-03 00:09:46 -0500235 * @sdata: local mesh subif
Javier Cardona2cca3972011-09-06 12:10:43 -0700236 *
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.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100240 */
Johannes Bergbf7cd942013-02-15 14:40:31 +0100241int mesh_path_error_tx(struct ieee80211_sub_if_data *sdata,
242 u8 ttl, const u8 *target, __le32 target_sn,
243 __le16 target_rcode, const u8 *ra)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100244{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200245 struct ieee80211_local *local = sdata->local;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700246 struct sk_buff *skb;
Thomas Pedersendca7e942011-11-24 17:15:24 -0800247 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100248 struct ieee80211_mgmt *mgmt;
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700249 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);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100252
Thomas Pedersendca7e942011-11-24 17:15:24 -0800253 if (time_before(jiffies, ifmsh->next_perr))
254 return -EAGAIN;
255
Javier Cardona65e8b0c2012-01-17 18:17:46 -0800256 skb = dev_alloc_skb(local->tx_headroom +
Bob Copeland86804512013-01-09 12:34:56 -0500257 IEEE80211_ENCRYPT_HEADROOM +
258 IEEE80211_ENCRYPT_TAILROOM +
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700259 hdr_len +
260 2 + 15 /* PERR IE */);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100261 if (!skb)
262 return -1;
Bob Copeland86804512013-01-09 12:34:56 -0500263 skb_reserve(skb, local->tx_headroom + IEEE80211_ENCRYPT_HEADROOM);
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -0700264 mgmt = (struct ieee80211_mgmt *) skb_put(skb, hdr_len);
265 memset(mgmt, 0, hdr_len);
Harvey Harrisone7827a72008-07-15 18:44:13 -0700266 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
267 IEEE80211_STYPE_ACTION);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100268
269 memcpy(mgmt->da, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100270 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Thomas Pedersen25d49e42011-08-11 19:35:15 -0700271 /* 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;
Rui Paulod611f062009-11-09 23:46:50 +0000276 ie_len = 15;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100277 pos = skb_put(skb, 2 + ie_len);
278 *pos++ = WLAN_EID_PERR;
279 *pos++ = ie_len;
Rui Paulod611f062009-11-09 23:46:50 +0000280 /* ttl */
Javier Cardona45904f22010-12-03 09:20:40 +0100281 *pos++ = ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100282 /* number of destinations */
283 *pos++ = 1;
Rui Paulod611f062009-11-09 23:46:50 +0000284 /*
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;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000289 if (!target_sn)
Rui Paulod611f062009-11-09 23:46:50 +0000290 *pos |= MP_F_USN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000291 if (target_rcode)
Rui Paulod611f062009-11-09 23:46:50 +0000292 *pos |= MP_F_RCODE;
293 pos++;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000294 memcpy(pos, target, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100295 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000296 memcpy(pos, &target_sn, 4);
Rui Paulod611f062009-11-09 23:46:50 +0000297 pos += 4;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000298 memcpy(pos, &target_rcode, 2);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100299
Javier Cardona2cca3972011-09-06 12:10:43 -0700300 /* see note in function header */
301 prepare_frame_for_deferred_tx(sdata, skb);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800302 ifmsh->next_perr = TU_TO_EXP_TIME(
303 ifmsh->mshcfg.dot11MeshHWMPperrMinInterval);
Javier Cardona2cca3972011-09-06 12:10:43 -0700304 ieee80211_add_pending_skb(local, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100305 return 0;
306}
307
Javier Cardonabfc32e62009-08-17 17:15:55 -0700308void ieee80211s_update_metric(struct ieee80211_local *local,
Javier Cardona35b3fe1c2012-06-08 13:30:25 -0700309 struct sta_info *sta, struct sk_buff *skb)
Javier Cardonabfc32e62009-08-17 17:15:55 -0700310{
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 */
Javier Cardona35b3fe1c2012-06-08 13:30:25 -0700321 sta->fail_avg = ((80 * sta->fail_avg + 5) / 100 + 20 * failed);
322 if (sta->fail_avg > 95)
323 mesh_plink_broken(sta);
Javier Cardonabfc32e62009-08-17 17:15:55 -0700324}
325
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100326static u32 airtime_link_metric_get(struct ieee80211_local *local,
327 struct sta_info *sta)
328{
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800329 struct rate_info rinfo;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100330 /* 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
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100338 if (sta->fail_avg >= 100)
339 return MAX_METRIC;
Johannes Berge6a98542008-10-21 12:40:02 +0200340
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800341 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &rinfo);
342 rate = cfg80211_calculate_bitrate(&rinfo);
343 if (WARN_ON(!rate))
Johannes Berge6a98542008-10-21 12:40:02 +0200344 return MAX_METRIC;
345
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100346 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 */
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100351 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 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200360 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100361 * @mgmt: mesh management frame
362 * @hwmp_ie: hwmp information element (PREP or PREQ)
Bob Copeland75ea7192013-01-03 00:09:46 -0500363 * @action: type of hwmp ie
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100364 *
365 * This function updates the path routing information to the originator and the
Andrey Yurovskyf99288d2009-10-20 12:17:34 -0700366 * transmitter of a HWMP PREQ or PREP frame.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100367 *
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 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200374static u32 hwmp_route_info_get(struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100375 struct ieee80211_mgmt *mgmt,
376 const u8 *hwmp_ie, enum mpath_frame_type action)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100377{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200378 struct ieee80211_local *local = sdata->local;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100379 struct mesh_path *mpath;
380 struct sta_info *sta;
381 bool fresh_info;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100382 const u8 *orig_addr, *ta;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000383 u32 orig_sn, orig_metric;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100384 unsigned long orig_lifetime, exp_time;
385 u32 last_hop_metric, new_metric;
386 bool process = true;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100387
388 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100389 sta = sta_info_get(sdata, mgmt->sa);
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100390 if (!sta) {
391 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100392 return 0;
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100393 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100394
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);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000402 orig_sn = PREQ_IE_ORIG_SN(hwmp_ie);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100403 orig_lifetime = PREQ_IE_LIFETIME(hwmp_ie);
404 orig_metric = PREQ_IE_METRIC(hwmp_ie);
405 break;
406 case MPATH_PREP:
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800407 /* Originator here refers to the MP that was the target in the
408 * Path Request. We divert from the nomenclature in the draft
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100409 * so that we can easily use a single function to gather path
410 * information from both PREQ and PREP frames.
411 */
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800412 orig_addr = PREP_IE_TARGET_ADDR(hwmp_ie);
413 orig_sn = PREP_IE_TARGET_SN(hwmp_ie);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100414 orig_lifetime = PREP_IE_LIFETIME(hwmp_ie);
415 orig_metric = PREP_IE_METRIC(hwmp_ie);
416 break;
417 default:
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100418 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100419 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
Joe Perchesb203ca32012-05-08 18:56:52 +0000426 if (ether_addr_equal(orig_addr, sdata->vif.addr)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100427 /* 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 {
Johannes Bergbf7cd942013-02-15 14:40:31 +0100433 mpath = mesh_path_lookup(sdata, orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100434 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) &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000439 (mpath->flags & MESH_PATH_SN_VALID)) {
440 if (SN_GT(mpath->sn, orig_sn) ||
441 (mpath->sn == orig_sn &&
Porsch, Marco533866b2010-02-24 09:53:13 +0100442 new_metric >= mpath->metric)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100443 process = false;
444 fresh_info = false;
445 }
446 }
447 } else {
Johannes Bergbf7cd942013-02-15 14:40:31 +0100448 mesh_path_add(sdata, orig_addr);
449 mpath = mesh_path_lookup(sdata, orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100450 if (!mpath) {
451 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100452 return 0;
453 }
454 spin_lock_bh(&mpath->state_lock);
455 }
456
457 if (fresh_info) {
458 mesh_path_assign_nexthop(mpath, sta);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000459 mpath->flags |= MESH_PATH_SN_VALID;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100460 mpath->metric = new_metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000461 mpath->sn = orig_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100462 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;
Joe Perchesb203ca32012-05-08 18:56:52 +0000476 if (ether_addr_equal(orig_addr, ta))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100477 fresh_info = false;
478 else {
479 fresh_info = true;
480
Johannes Bergbf7cd942013-02-15 14:40:31 +0100481 mpath = mesh_path_lookup(sdata, ta);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100482 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 {
Johannes Bergbf7cd942013-02-15 14:40:31 +0100489 mesh_path_add(sdata, ta);
490 mpath = mesh_path_lookup(sdata, ta);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100491 if (!mpath) {
492 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100493 return 0;
494 }
495 spin_lock_bh(&mpath->state_lock);
496 }
497
498 if (fresh_info) {
499 mesh_path_assign_nexthop(mpath, sta);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100500 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
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100510 rcu_read_unlock();
511
512 return process ? new_metric : 0;
513}
514
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200515static void hwmp_preq_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100516 struct ieee80211_mgmt *mgmt,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100517 const u8 *preq_elem, u32 metric)
David Woo57ef5dd2009-08-12 11:03:43 -0700518{
Johannes Berg472dbc42008-09-11 00:01:49 +0200519 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800520 struct mesh_path *mpath = NULL;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100521 const u8 *target_addr, *orig_addr;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800522 const u8 *da;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800523 u8 target_flags, ttl, flags;
524 u32 orig_sn, target_sn, lifetime, orig_metric;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100525 bool reply = false;
526 bool forward = true;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800527 bool root_is_gate;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100528
Rui Paulod19b3bf2009-11-09 23:46:55 +0000529 /* Update target SN, if present */
530 target_addr = PREQ_IE_TARGET_ADDR(preq_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100531 orig_addr = PREQ_IE_ORIG_ADDR(preq_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000532 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);
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800535 orig_metric = metric;
536 /* Proactive PREQ gate announcements */
537 flags = PREQ_IE_FLAGS(preq_elem);
538 root_is_gate = !!(flags & RANN_FLAG_IS_GATE);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100539
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200540 mhwmp_dbg(sdata, "received PREQ from %pM\n", orig_addr);
Rui Paulo27db2e42009-11-09 23:46:45 +0000541
Joe Perchesb203ca32012-05-08 18:56:52 +0000542 if (ether_addr_equal(target_addr, sdata->vif.addr)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200543 mhwmp_dbg(sdata, "PREQ is for us\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100544 forward = false;
545 reply = true;
546 metric = 0;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000547 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100548 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +0000549 time_before(jiffies, ifmsh->last_sn_update)) {
550 target_sn = ++ifmsh->sn;
551 ifmsh->last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100552 }
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800553 } else if (is_broadcast_ether_addr(target_addr) &&
554 (target_flags & IEEE80211_PREQ_TO_FLAG)) {
555 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100556 mpath = mesh_path_lookup(sdata, orig_addr);
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800557 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();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100569 } else {
570 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100571 mpath = mesh_path_lookup(sdata, target_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100572 if (mpath) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000573 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)) &&
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100578 (mpath->flags & MESH_PATH_ACTIVE)) {
579 reply = true;
580 metric = mpath->metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000581 target_sn = mpath->sn;
582 if (target_flags & MP_F_RF)
583 target_flags |= MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100584 else
585 forward = false;
586 }
587 }
588 rcu_read_unlock();
589 }
590
591 if (reply) {
592 lifetime = PREQ_IE_LIFETIME(preq_elem);
Javier Cardona45904f22010-12-03 09:20:40 +0100593 ttl = ifmsh->mshcfg.element_ttl;
Rui Paulo27db2e42009-11-09 23:46:45 +0000594 if (ttl != 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200595 mhwmp_dbg(sdata, "replying to the PREQ\n");
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800596 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,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800599 cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200600 0, sdata);
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800601 } else {
Johannes Berg472dbc42008-09-11 00:01:49 +0200602 ifmsh->mshstats.dropped_frames_ttl++;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800603 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100604 }
605
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800606 if (forward && ifmsh->mshcfg.dot11MeshForwarding) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100607 u32 preq_id;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800608 u8 hopcount;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100609
610 ttl = PREQ_IE_TTL(preq_elem);
611 lifetime = PREQ_IE_LIFETIME(preq_elem);
612 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200613 ifmsh->mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100614 return;
615 }
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200616 mhwmp_dbg(sdata, "forwarding the PREQ from %pM\n", orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100617 --ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100618 preq_id = PREQ_IE_PREQ_ID(preq_elem);
619 hopcount = PREQ_IE_HOPCOUNT(preq_elem) + 1;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800620 da = (mpath && mpath->is_root) ?
621 mpath->rann_snd_addr : broadcast_addr;
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800622
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
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100629 mesh_path_sel_frame_tx(MPATH_PREQ, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000630 cpu_to_le32(orig_sn), target_flags, target_addr,
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800631 cpu_to_le32(target_sn), da,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800632 hopcount, ttl, cpu_to_le32(lifetime),
633 cpu_to_le32(metric), cpu_to_le32(preq_id),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200634 sdata);
Chun-Yeow Yeoh7d4e15b2012-05-04 14:57:50 +0800635 if (!is_multicast_ether_addr(da))
636 ifmsh->mshstats.fwded_unicast++;
637 else
638 ifmsh->mshstats.fwded_mcast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200639 ifmsh->mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100640 }
641}
642
643
Johannes Berg40b275b2011-05-13 14:15:49 +0200644static 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
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200652static void hwmp_prep_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100653 struct ieee80211_mgmt *mgmt,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100654 const u8 *prep_elem, u32 metric)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100655{
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800656 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100657 struct mesh_path *mpath;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100658 const u8 *target_addr, *orig_addr;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100659 u8 ttl, hopcount, flags;
660 u8 next_hop[ETH_ALEN];
Rui Paulod19b3bf2009-11-09 23:46:55 +0000661 u32 target_sn, orig_sn, lifetime;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100662
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200663 mhwmp_dbg(sdata, "received PREP from %pM\n",
664 PREP_IE_ORIG_ADDR(prep_elem));
Rui Paulodbb81c42009-11-09 23:46:46 +0000665
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800666 orig_addr = PREP_IE_ORIG_ADDR(prep_elem);
Joe Perchesb203ca32012-05-08 18:56:52 +0000667 if (ether_addr_equal(orig_addr, sdata->vif.addr))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100668 /* destination, no forwarding required */
669 return;
670
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800671 if (!ifmsh->mshcfg.dot11MeshForwarding)
672 return;
673
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100674 ttl = PREP_IE_TTL(prep_elem);
675 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200676 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100677 return;
678 }
679
680 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100681 mpath = mesh_path_lookup(sdata, orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100682 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 }
Johannes Berg40b275b2011-05-13 14:15:49 +0200690 memcpy(next_hop, next_hop_deref_protected(mpath)->sta.addr, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100691 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;
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800696 target_addr = PREP_IE_TARGET_ADDR(prep_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000697 target_sn = PREP_IE_TARGET_SN(prep_elem);
698 orig_sn = PREP_IE_ORIG_SN(prep_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100699
700 mesh_path_sel_frame_tx(MPATH_PREP, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000701 cpu_to_le32(orig_sn), 0, target_addr,
Porsch, Marco533866b2010-02-24 09:53:13 +0100702 cpu_to_le32(target_sn), next_hop, hopcount,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000703 ttl, cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200704 0, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100705 rcu_read_unlock();
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700706
707 sdata->u.mesh.mshstats.fwded_unicast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200708 sdata->u.mesh.mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100709 return;
710
711fail:
712 rcu_read_unlock();
Johannes Berg472dbc42008-09-11 00:01:49 +0200713 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100714}
715
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200716static void hwmp_perr_frame_process(struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100717 struct ieee80211_mgmt *mgmt,
718 const u8 *perr_elem)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100719{
Rui Paulod611f062009-11-09 23:46:50 +0000720 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100721 struct mesh_path *mpath;
Rui Paulod611f062009-11-09 23:46:50 +0000722 u8 ttl;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100723 const u8 *ta, *target_addr;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000724 u32 target_sn;
725 u16 target_rcode;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100726
727 ta = mgmt->sa;
Rui Paulod611f062009-11-09 23:46:50 +0000728 ttl = PERR_IE_TTL(perr_elem);
729 if (ttl <= 1) {
730 ifmsh->mshstats.dropped_frames_ttl++;
731 return;
732 }
733 ttl--;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000734 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);
Rui Paulod611f062009-11-09 23:46:50 +0000737
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100738 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100739 mpath = mesh_path_lookup(sdata, target_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100740 if (mpath) {
Felix Fietkau888d04d2012-03-01 15:22:09 +0100741 struct sta_info *sta;
742
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100743 spin_lock_bh(&mpath->state_lock);
Felix Fietkau888d04d2012-03-01 15:22:09 +0100744 sta = next_hop_deref_protected(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100745 if (mpath->flags & MESH_PATH_ACTIVE &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000746 ether_addr_equal(ta, sta->sta.addr) &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000747 (!(mpath->flags & MESH_PATH_SN_VALID) ||
748 SN_GT(target_sn, mpath->sn))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100749 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000750 mpath->sn = target_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100751 spin_unlock_bh(&mpath->state_lock);
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800752 if (!ifmsh->mshcfg.dot11MeshForwarding)
753 goto endperr;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100754 mesh_path_error_tx(sdata, ttl, target_addr,
755 cpu_to_le32(target_sn),
Rui Paulod19b3bf2009-11-09 23:46:55 +0000756 cpu_to_le16(target_rcode),
Johannes Bergbf7cd942013-02-15 14:40:31 +0100757 broadcast_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100758 } else
759 spin_unlock_bh(&mpath->state_lock);
760 }
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800761endperr:
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100762 rcu_read_unlock();
763}
764
Rui Paulo90a5e162009-11-11 00:01:31 +0000765static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100766 struct ieee80211_mgmt *mgmt,
767 const struct ieee80211_rann_ie *rann)
Rui Paulo90a5e162009-11-11 00:01:31 +0000768{
769 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800770 struct ieee80211_local *local = sdata->local;
771 struct sta_info *sta;
Rui Paulo90a5e162009-11-11 00:01:31 +0000772 struct mesh_path *mpath;
Rui Paulo90a5e162009-11-11 00:01:31 +0000773 u8 ttl, flags, hopcount;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100774 const u8 *orig_addr;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800775 u32 orig_sn, metric, metric_txsta, interval;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700776 bool root_is_gate;
Rui Paulo90a5e162009-11-11 00:01:31 +0000777
Rui Paulo90a5e162009-11-11 00:01:31 +0000778 ttl = rann->rann_ttl;
Rui Paulo90a5e162009-11-11 00:01:31 +0000779 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
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200792 mhwmp_dbg(sdata,
793 "received RANN from %pM via neighbour %pM (is_gate=%d)\n",
794 orig_addr, mgmt->sa, root_is_gate);
Rui Paulo90a5e162009-11-11 00:01:31 +0000795
796 rcu_read_lock();
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800797 sta = sta_info_get(sdata, mgmt->sa);
798 if (!sta) {
799 rcu_read_unlock();
800 return;
801 }
802
803 metric_txsta = airtime_link_metric_get(local, sta);
804
Johannes Bergbf7cd942013-02-15 14:40:31 +0100805 mpath = mesh_path_lookup(sdata, orig_addr);
Rui Paulo90a5e162009-11-11 00:01:31 +0000806 if (!mpath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +0100807 mesh_path_add(sdata, orig_addr);
808 mpath = mesh_path_lookup(sdata, orig_addr);
Rui Paulo90a5e162009-11-11 00:01:31 +0000809 if (!mpath) {
810 rcu_read_unlock();
811 sdata->u.mesh.mshstats.dropped_frames_no_route++;
812 return;
813 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000814 }
Javier Cardona5ee68e52011-08-09 16:45:08 -0700815
Chun-Yeow Yeoh7ebfa462012-06-15 10:20:02 +0800816 if (!(SN_LT(mpath->sn, orig_sn)) &&
817 !(mpath->sn == orig_sn && metric < mpath->rann_metric)) {
818 rcu_read_unlock();
819 return;
820 }
821
Javier Cardona5ee68e52011-08-09 16:45:08 -0700822 if ((!(mpath->flags & (MESH_PATH_ACTIVE | MESH_PATH_RESOLVING)) ||
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800823 (time_after(jiffies, mpath->last_preq_to_root +
824 root_path_confirmation_jiffies(sdata)) ||
825 time_before(jiffies, mpath->last_preq_to_root))) &&
Chun-Yeow Yeoh7ebfa462012-06-15 10:20:02 +0800826 !(mpath->flags & MESH_PATH_FIXED) && (ttl != 0)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200827 mhwmp_dbg(sdata,
828 "time to refresh root mpath %pM\n",
829 orig_addr);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700830 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800831 mpath->last_preq_to_root = jiffies;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700832 }
833
Chun-Yeow Yeoh7ebfa462012-06-15 10:20:02 +0800834 mpath->sn = orig_sn;
835 mpath->rann_metric = metric + metric_txsta;
836 mpath->is_root = true;
837 /* Recording RANNs sender address to send individually
838 * addressed PREQs destined for root mesh STA */
839 memcpy(mpath->rann_snd_addr, mgmt->sa, ETH_ALEN);
840
841 if (root_is_gate)
842 mesh_path_add_gate(mpath);
843
844 if (ttl <= 1) {
845 ifmsh->mshstats.dropped_frames_ttl++;
846 rcu_read_unlock();
847 return;
848 }
849 ttl--;
850
851 if (ifmsh->mshcfg.dot11MeshForwarding) {
Rui Paulo90a5e162009-11-11 00:01:31 +0000852 mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000853 cpu_to_le32(orig_sn),
Johannes Berg15ff6362009-11-17 13:34:04 +0100854 0, NULL, 0, broadcast_addr,
Javier Cardona0507e152011-08-09 16:45:10 -0700855 hopcount, ttl, cpu_to_le32(interval),
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800856 cpu_to_le32(metric + metric_txsta),
Rui Paulo90a5e162009-11-11 00:01:31 +0000857 0, sdata);
Rui Paulo90a5e162009-11-11 00:01:31 +0000858 }
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800859
Rui Paulo90a5e162009-11-11 00:01:31 +0000860 rcu_read_unlock();
861}
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100862
863
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200864void mesh_rx_path_sel_frame(struct ieee80211_sub_if_data *sdata,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100865 struct ieee80211_mgmt *mgmt, size_t len)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100866{
867 struct ieee802_11_elems elems;
868 size_t baselen;
869 u32 last_hop_metric;
Javier Cardona97091312011-10-06 14:54:22 -0700870 struct sta_info *sta;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100871
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200872 /* need action_code */
873 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
874 return;
875
Javier Cardona97091312011-10-06 14:54:22 -0700876 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
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100884 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
Rui Paulodbb81c42009-11-09 23:46:46 +0000888 if (elems.preq) {
889 if (elems.preq_len != 37)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100890 /* Right now we support just 1 destination and no AE */
891 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000892 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)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100900 /* Right now we support no AE */
901 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000902 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) {
Rui Paulod611f062009-11-09 23:46:50 +0000909 if (elems.perr_len != 15)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100910 /* Right now we support only one destination per PERR */
911 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200912 hwmp_perr_frame_process(sdata, mgmt, elems.perr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100913 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000914 if (elems.rann)
915 hwmp_rann_frame_process(sdata, mgmt, elems.rann);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100916}
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{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200929 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Johannes Berg472dbc42008-09-11 00:01:49 +0200930 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100931 struct mesh_preq_queue *preq_node;
932
Andrey Yurovsky59615b52009-06-25 16:07:42 -0700933 preq_node = kmalloc(sizeof(struct mesh_preq_queue), GFP_ATOMIC);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100934 if (!preq_node) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200935 mhwmp_dbg(sdata, "could not allocate PREQ node\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100936 return;
937 }
938
Baruch Siach987dafa2011-07-28 08:51:05 +0300939 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200940 if (ifmsh->preq_queue_len == MAX_PREQ_QUEUE_LEN) {
Baruch Siach987dafa2011-07-28 08:51:05 +0300941 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100942 kfree(preq_node);
943 if (printk_ratelimit())
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200944 mhwmp_dbg(sdata, "PREQ node queue full\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100945 return;
946 }
947
Johannes Bergf2dc7982011-11-18 15:27:31 +0100948 spin_lock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700949 if (mpath->flags & MESH_PATH_REQ_QUEUED) {
Johannes Bergf2dc7982011-11-18 15:27:31 +0100950 spin_unlock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700951 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Dan Carpenter88d53462011-11-15 09:33:31 +0300952 kfree(preq_node);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700953 return;
954 }
955
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100956 memcpy(preq_node->dst, mpath->dst, ETH_ALEN);
957 preq_node->flags = flags;
958
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700959 mpath->flags |= MESH_PATH_REQ_QUEUED;
Johannes Bergf2dc7982011-11-18 15:27:31 +0100960 spin_unlock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700961
Johannes Berg472dbc42008-09-11 00:01:49 +0200962 list_add_tail(&preq_node->list, &ifmsh->preq_queue.list);
963 ++ifmsh->preq_queue_len;
Baruch Siach987dafa2011-07-28 08:51:05 +0300964 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100965
Johannes Berg472dbc42008-09-11 00:01:49 +0200966 if (time_after(jiffies, ifmsh->last_preq + min_preq_int_jiff(sdata)))
Johannes Berg64592c82010-06-10 10:21:31 +0200967 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100968
Johannes Berg472dbc42008-09-11 00:01:49 +0200969 else if (time_before(jiffies, ifmsh->last_preq)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100970 /* avoid long wait if did not send preqs for a long time
971 * and jiffies wrapped around
972 */
Johannes Berg472dbc42008-09-11 00:01:49 +0200973 ifmsh->last_preq = jiffies - min_preq_int_jiff(sdata) - 1;
Johannes Berg64592c82010-06-10 10:21:31 +0200974 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100975 } else
Johannes Berg472dbc42008-09-11 00:01:49 +0200976 mod_timer(&ifmsh->mesh_path_timer, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100977 min_preq_int_jiff(sdata));
978}
979
980/**
981 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
982 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200983 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100984 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200985void mesh_path_start_discovery(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100986{
Johannes Berg472dbc42008-09-11 00:01:49 +0200987 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100988 struct mesh_preq_queue *preq_node;
989 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000990 u8 ttl, target_flags;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800991 const u8 *da;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100992 u32 lifetime;
993
Johannes Berga43816d2009-07-10 11:39:26 +0200994 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200995 if (!ifmsh->preq_queue_len ||
996 time_before(jiffies, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100997 min_preq_int_jiff(sdata))) {
Johannes Berga43816d2009-07-10 11:39:26 +0200998 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100999 return;
1000 }
1001
Johannes Berg472dbc42008-09-11 00:01:49 +02001002 preq_node = list_first_entry(&ifmsh->preq_queue.list,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001003 struct mesh_preq_queue, list);
1004 list_del(&preq_node->list);
Johannes Berg472dbc42008-09-11 00:01:49 +02001005 --ifmsh->preq_queue_len;
Johannes Berga43816d2009-07-10 11:39:26 +02001006 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001007
1008 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001009 mpath = mesh_path_lookup(sdata, preq_node->dst);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001010 if (!mpath)
1011 goto enddiscovery;
1012
1013 spin_lock_bh(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -07001014 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001015 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
Johannes Berg472dbc42008-09-11 00:01:49 +02001032 ifmsh->last_preq = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001033
Rui Paulod19b3bf2009-11-09 23:46:55 +00001034 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001035 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +00001036 time_before(jiffies, ifmsh->last_sn_update)) {
1037 ++ifmsh->sn;
1038 sdata->u.mesh.last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001039 }
1040 lifetime = default_lifetime(sdata);
Javier Cardona45904f22010-12-03 09:20:40 +01001041 ttl = sdata->u.mesh.mshcfg.element_ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001042 if (ttl == 0) {
Johannes Berg472dbc42008-09-11 00:01:49 +02001043 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001044 spin_unlock_bh(&mpath->state_lock);
1045 goto enddiscovery;
1046 }
1047
1048 if (preq_node->flags & PREQ_Q_F_REFRESH)
Rui Paulod19b3bf2009-11-09 23:46:55 +00001049 target_flags = MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001050 else
Rui Paulod19b3bf2009-11-09 23:46:55 +00001051 target_flags = MP_F_RF;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001052
1053 spin_unlock_bh(&mpath->state_lock);
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +08001054 da = (mpath->is_root) ? mpath->rann_snd_addr : broadcast_addr;
Johannes Berg47846c92009-11-25 17:46:19 +01001055 mesh_path_sel_frame_tx(MPATH_PREQ, 0, sdata->vif.addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +00001056 cpu_to_le32(ifmsh->sn), target_flags, mpath->dst,
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +08001057 cpu_to_le32(mpath->sn), da, 0,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -08001058 ttl, cpu_to_le32(lifetime), 0,
Johannes Berg472dbc42008-09-11 00:01:49 +02001059 cpu_to_le32(ifmsh->preq_id++), sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001060 mod_timer(&mpath->timer, jiffies + mpath->discovery_timeout);
1061
1062enddiscovery:
1063 rcu_read_unlock();
1064 kfree(preq_node);
1065}
1066
Ben Hutchings2c530402012-07-10 10:55:09 +00001067/**
1068 * mesh_nexthop_resolve - lookup next hop; conditionally start path discovery
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001069 *
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001070 * @skb: 802.11 frame to be sent
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001071 * @sdata: network subif the frame will be sent through
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001072 *
Ben Hutchings2c530402012-07-10 10:55:09 +00001073 * Lookup next hop for given skb and start path discovery if no
1074 * forwarding information is found.
1075 *
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001076 * 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.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001078 */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001079int mesh_nexthop_resolve(struct ieee80211_sub_if_data *sdata,
1080 struct sk_buff *skb)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001081{
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001082 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001083 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1084 struct mesh_path *mpath;
1085 struct sk_buff *skb_to_free = NULL;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001086 u8 *target_addr = hdr->addr3;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001087 int err = 0;
1088
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001089 /* 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
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001093 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001094 err = mesh_nexthop_lookup(sdata, skb);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001095 if (!err)
1096 goto endlookup;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001097
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001098 /* no nexthop found, start resolving */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001099 mpath = mesh_path_lookup(sdata, target_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001100 if (!mpath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001101 mesh_path_add(sdata, target_addr);
1102 mpath = mesh_path_lookup(sdata, target_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001103 if (!mpath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001104 mesh_path_discard_frame(sdata, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001105 err = -ENOSPC;
1106 goto endlookup;
1107 }
1108 }
1109
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001110 if (!(mpath->flags & MESH_PATH_RESOLVING))
1111 mesh_queue_preq(mpath, PREQ_Q_F_START);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001112
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001113 if (skb_queue_len(&mpath->frame_queue) >= MESH_FRAME_QUEUE_LEN)
1114 skb_to_free = skb_dequeue(&mpath->frame_queue);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001115
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001116 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)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001121 mesh_path_discard_frame(sdata, skb_to_free);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001122
1123endlookup:
1124 rcu_read_unlock();
1125 return err;
1126}
Johannes Bergbf7cd942013-02-15 14:40:31 +01001127
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001128/**
1129 * mesh_nexthop_lookup - put the appropriate next hop on a mesh frame. Calling
1130 * this function is considered "using" the associated mpath, so preempt a path
1131 * refresh if this mpath expires soon.
1132 *
1133 * @skb: 802.11 frame to be sent
1134 * @sdata: network subif the frame will be sent through
1135 *
1136 * Returns: 0 if the next hop was found. Nonzero otherwise.
1137 */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001138int mesh_nexthop_lookup(struct ieee80211_sub_if_data *sdata,
1139 struct sk_buff *skb)
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001140{
1141 struct mesh_path *mpath;
1142 struct sta_info *next_hop;
1143 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1144 u8 *target_addr = hdr->addr3;
1145 int err = -ENOENT;
1146
1147 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001148 mpath = mesh_path_lookup(sdata, target_addr);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001149
1150 if (!mpath || !(mpath->flags & MESH_PATH_ACTIVE))
1151 goto endlookup;
1152
1153 if (time_after(jiffies,
1154 mpath->exp_time -
1155 msecs_to_jiffies(sdata->u.mesh.mshcfg.path_refresh_time)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001156 ether_addr_equal(sdata->vif.addr, hdr->addr4) &&
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001157 !(mpath->flags & MESH_PATH_RESOLVING) &&
1158 !(mpath->flags & MESH_PATH_FIXED))
1159 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
1160
1161 next_hop = rcu_dereference(mpath->next_hop);
1162 if (next_hop) {
1163 memcpy(hdr->addr1, next_hop->sta.addr, ETH_ALEN);
1164 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001165 ieee80211_mps_set_frame_flags(sdata, next_hop, hdr);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001166 err = 0;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001167 }
1168
1169endlookup:
1170 rcu_read_unlock();
1171 return err;
1172}
1173
1174void mesh_path_timer(unsigned long data)
1175{
Johannes Bergdea40962011-05-12 15:03:32 +02001176 struct mesh_path *mpath = (void *) data;
1177 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001178 int ret;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001179
Johannes Bergdea40962011-05-12 15:03:32 +02001180 if (sdata->local->quiescing)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001181 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001182
1183 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -08001184 if (mpath->flags & MESH_PATH_RESOLVED ||
Javier Cardona5ee68e52011-08-09 16:45:08 -07001185 (!(mpath->flags & MESH_PATH_RESOLVING))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001186 mpath->flags &= ~(MESH_PATH_RESOLVING | MESH_PATH_RESOLVED);
Javier Cardona5ee68e52011-08-09 16:45:08 -07001187 spin_unlock_bh(&mpath->state_lock);
1188 } else if (mpath->discovery_retries < max_preq_retries(sdata)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001189 ++mpath->discovery_retries;
1190 mpath->discovery_timeout *= 2;
Javier Cardonaf3011cf2011-11-03 21:11:10 -07001191 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001192 spin_unlock_bh(&mpath->state_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001193 mesh_queue_preq(mpath, 0);
1194 } else {
1195 mpath->flags = 0;
1196 mpath->exp_time = jiffies;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001197 spin_unlock_bh(&mpath->state_lock);
1198 if (!mpath->is_gate && mesh_gate_num(sdata) > 0) {
1199 ret = mesh_path_send_to_gates(mpath);
1200 if (ret)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001201 mhwmp_dbg(sdata, "no gate was reachable\n");
Javier Cardona5ee68e52011-08-09 16:45:08 -07001202 } else
1203 mesh_path_flush_pending(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001204 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001205}
Rui Pauloe304bfd2009-11-09 23:46:56 +00001206
Johannes Bergbf7cd942013-02-15 14:40:31 +01001207void mesh_path_tx_root_frame(struct ieee80211_sub_if_data *sdata)
Rui Pauloe304bfd2009-11-09 23:46:56 +00001208{
1209 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardona0507e152011-08-09 16:45:10 -07001210 u32 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001211 u8 flags, target_flags = 0;
Rui Pauloe304bfd2009-11-09 23:46:56 +00001212
Javier Cardona16dd7262011-08-09 16:45:11 -07001213 flags = (ifmsh->mshcfg.dot11MeshGateAnnouncementProtocol)
1214 ? RANN_FLAG_IS_GATE : 0;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001215
1216 switch (ifmsh->mshcfg.dot11MeshHWMPRootMode) {
1217 case IEEE80211_PROACTIVE_RANN:
1218 mesh_path_sel_frame_tx(MPATH_RANN, flags, sdata->vif.addr,
Rui Pauloe304bfd2009-11-09 23:46:56 +00001219 cpu_to_le32(++ifmsh->sn),
Johannes Berg15ff6362009-11-17 13:34:04 +01001220 0, NULL, 0, broadcast_addr,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001221 0, ifmsh->mshcfg.element_ttl,
Javier Cardona0507e152011-08-09 16:45:10 -07001222 cpu_to_le32(interval), 0, 0, sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001223 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:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001238 mhwmp_dbg(sdata, "Proactive mechanism not supported\n");
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001239 return;
1240 }
Rui Pauloe304bfd2009-11-09 23:46:56 +00001241}