blob: 486819cd02cd7d03924e30d4e93f7ac201248b4c [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:
Chun-Yeow Yeoh0f716512013-04-03 17:49:53 +0800147 mhwmp_dbg(sdata, "sending PREP to %pM\n", orig_addr);
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 {
Bob Copelandae76eef2013-03-29 09:38:39 -0400448 mpath = mesh_path_add(sdata, orig_addr);
449 if (IS_ERR(mpath)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100450 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100451 return 0;
452 }
453 spin_lock_bh(&mpath->state_lock);
454 }
455
456 if (fresh_info) {
457 mesh_path_assign_nexthop(mpath, sta);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000458 mpath->flags |= MESH_PATH_SN_VALID;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100459 mpath->metric = new_metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000460 mpath->sn = orig_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100461 mpath->exp_time = time_after(mpath->exp_time, exp_time)
462 ? mpath->exp_time : exp_time;
463 mesh_path_activate(mpath);
464 spin_unlock_bh(&mpath->state_lock);
465 mesh_path_tx_pending(mpath);
466 /* draft says preq_id should be saved to, but there does
467 * not seem to be any use for it, skipping by now
468 */
469 } else
470 spin_unlock_bh(&mpath->state_lock);
471 }
472
473 /* Update and check transmitter routing info */
474 ta = mgmt->sa;
Joe Perchesb203ca32012-05-08 18:56:52 +0000475 if (ether_addr_equal(orig_addr, ta))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100476 fresh_info = false;
477 else {
478 fresh_info = true;
479
Johannes Bergbf7cd942013-02-15 14:40:31 +0100480 mpath = mesh_path_lookup(sdata, ta);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100481 if (mpath) {
482 spin_lock_bh(&mpath->state_lock);
483 if ((mpath->flags & MESH_PATH_FIXED) ||
484 ((mpath->flags & MESH_PATH_ACTIVE) &&
485 (last_hop_metric > mpath->metric)))
486 fresh_info = false;
487 } else {
Bob Copelandae76eef2013-03-29 09:38:39 -0400488 mpath = mesh_path_add(sdata, ta);
489 if (IS_ERR(mpath)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100490 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,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100515 const u8 *preq_elem, u32 metric)
David Woo57ef5dd2009-08-12 11:03:43 -0700516{
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;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100519 const 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
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200538 mhwmp_dbg(sdata, "received PREQ from %pM\n", 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)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200541 mhwmp_dbg(sdata, "PREQ is for us\n");
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();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100554 mpath = mesh_path_lookup(sdata, orig_addr);
Chun-Yeow Yeoh3fbf4b71b2012-06-17 02:27:40 +0800555 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();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100569 mpath = mesh_path_lookup(sdata, target_addr);
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) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200593 mhwmp_dbg(sdata, "replying to the PREQ\n");
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 }
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200614 mhwmp_dbg(sdata, "forwarding the PREQ from %pM\n", 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,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100652 const u8 *prep_elem, u32 metric)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100653{
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;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100656 const 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
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200661 mhwmp_dbg(sdata, "received PREP from %pM\n",
Chun-Yeow Yeoh0f716512013-04-03 17:49:53 +0800662 PREP_IE_TARGET_ADDR(prep_elem));
Rui Paulodbb81c42009-11-09 23:46:46 +0000663
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800664 orig_addr = PREP_IE_ORIG_ADDR(prep_elem);
Joe Perchesb203ca32012-05-08 18:56:52 +0000665 if (ether_addr_equal(orig_addr, sdata->vif.addr))
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100666 /* destination, no forwarding required */
667 return;
668
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800669 if (!ifmsh->mshcfg.dot11MeshForwarding)
670 return;
671
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100672 ttl = PREP_IE_TTL(prep_elem);
673 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200674 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100675 return;
676 }
677
678 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100679 mpath = mesh_path_lookup(sdata, orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100680 if (mpath)
681 spin_lock_bh(&mpath->state_lock);
682 else
683 goto fail;
684 if (!(mpath->flags & MESH_PATH_ACTIVE)) {
685 spin_unlock_bh(&mpath->state_lock);
686 goto fail;
687 }
Johannes Berg40b275b2011-05-13 14:15:49 +0200688 memcpy(next_hop, next_hop_deref_protected(mpath)->sta.addr, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100689 spin_unlock_bh(&mpath->state_lock);
690 --ttl;
691 flags = PREP_IE_FLAGS(prep_elem);
692 lifetime = PREP_IE_LIFETIME(prep_elem);
693 hopcount = PREP_IE_HOPCOUNT(prep_elem) + 1;
Thomas Pedersen3c26f1f2011-11-24 17:15:22 -0800694 target_addr = PREP_IE_TARGET_ADDR(prep_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000695 target_sn = PREP_IE_TARGET_SN(prep_elem);
696 orig_sn = PREP_IE_ORIG_SN(prep_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100697
698 mesh_path_sel_frame_tx(MPATH_PREP, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000699 cpu_to_le32(orig_sn), 0, target_addr,
Porsch, Marco533866b2010-02-24 09:53:13 +0100700 cpu_to_le32(target_sn), next_hop, hopcount,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000701 ttl, cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200702 0, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100703 rcu_read_unlock();
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700704
705 sdata->u.mesh.mshstats.fwded_unicast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200706 sdata->u.mesh.mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100707 return;
708
709fail:
710 rcu_read_unlock();
Johannes Berg472dbc42008-09-11 00:01:49 +0200711 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100712}
713
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200714static void hwmp_perr_frame_process(struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100715 struct ieee80211_mgmt *mgmt,
716 const u8 *perr_elem)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100717{
Rui Paulod611f062009-11-09 23:46:50 +0000718 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100719 struct mesh_path *mpath;
Rui Paulod611f062009-11-09 23:46:50 +0000720 u8 ttl;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100721 const u8 *ta, *target_addr;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000722 u32 target_sn;
723 u16 target_rcode;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100724
725 ta = mgmt->sa;
Rui Paulod611f062009-11-09 23:46:50 +0000726 ttl = PERR_IE_TTL(perr_elem);
727 if (ttl <= 1) {
728 ifmsh->mshstats.dropped_frames_ttl++;
729 return;
730 }
731 ttl--;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000732 target_addr = PERR_IE_TARGET_ADDR(perr_elem);
733 target_sn = PERR_IE_TARGET_SN(perr_elem);
734 target_rcode = PERR_IE_TARGET_RCODE(perr_elem);
Rui Paulod611f062009-11-09 23:46:50 +0000735
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100736 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +0100737 mpath = mesh_path_lookup(sdata, target_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100738 if (mpath) {
Felix Fietkau888d04d2012-03-01 15:22:09 +0100739 struct sta_info *sta;
740
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100741 spin_lock_bh(&mpath->state_lock);
Felix Fietkau888d04d2012-03-01 15:22:09 +0100742 sta = next_hop_deref_protected(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100743 if (mpath->flags & MESH_PATH_ACTIVE &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000744 ether_addr_equal(ta, sta->sta.addr) &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000745 (!(mpath->flags & MESH_PATH_SN_VALID) ||
746 SN_GT(target_sn, mpath->sn))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100747 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000748 mpath->sn = target_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100749 spin_unlock_bh(&mpath->state_lock);
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800750 if (!ifmsh->mshcfg.dot11MeshForwarding)
751 goto endperr;
Johannes Bergbf7cd942013-02-15 14:40:31 +0100752 mesh_path_error_tx(sdata, ttl, target_addr,
753 cpu_to_le32(target_sn),
Rui Paulod19b3bf2009-11-09 23:46:55 +0000754 cpu_to_le16(target_rcode),
Johannes Bergbf7cd942013-02-15 14:40:31 +0100755 broadcast_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100756 } else
757 spin_unlock_bh(&mpath->state_lock);
758 }
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +0800759endperr:
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100760 rcu_read_unlock();
761}
762
Rui Paulo90a5e162009-11-11 00:01:31 +0000763static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +0100764 struct ieee80211_mgmt *mgmt,
765 const struct ieee80211_rann_ie *rann)
Rui Paulo90a5e162009-11-11 00:01:31 +0000766{
767 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800768 struct ieee80211_local *local = sdata->local;
769 struct sta_info *sta;
Rui Paulo90a5e162009-11-11 00:01:31 +0000770 struct mesh_path *mpath;
Rui Paulo90a5e162009-11-11 00:01:31 +0000771 u8 ttl, flags, hopcount;
Johannes Berg4a3cb702013-02-12 16:43:19 +0100772 const u8 *orig_addr;
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800773 u32 orig_sn, metric, metric_txsta, interval;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700774 bool root_is_gate;
Rui Paulo90a5e162009-11-11 00:01:31 +0000775
Rui Paulo90a5e162009-11-11 00:01:31 +0000776 ttl = rann->rann_ttl;
Rui Paulo90a5e162009-11-11 00:01:31 +0000777 flags = rann->rann_flags;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700778 root_is_gate = !!(flags & RANN_FLAG_IS_GATE);
Rui Paulo90a5e162009-11-11 00:01:31 +0000779 orig_addr = rann->rann_addr;
Chun-Yeow Yeoh292c41a2012-03-19 21:38:46 +0800780 orig_sn = le32_to_cpu(rann->rann_seq);
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800781 interval = le32_to_cpu(rann->rann_interval);
Rui Paulo90a5e162009-11-11 00:01:31 +0000782 hopcount = rann->rann_hopcount;
Rui Pauloa6a58b42009-11-09 23:46:51 +0000783 hopcount++;
Chun-Yeow Yeoh292c41a2012-03-19 21:38:46 +0800784 metric = le32_to_cpu(rann->rann_metric);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700785
786 /* Ignore our own RANNs */
Joe Perchesb203ca32012-05-08 18:56:52 +0000787 if (ether_addr_equal(orig_addr, sdata->vif.addr))
Javier Cardona5ee68e52011-08-09 16:45:08 -0700788 return;
789
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200790 mhwmp_dbg(sdata,
791 "received RANN from %pM via neighbour %pM (is_gate=%d)\n",
792 orig_addr, mgmt->sa, root_is_gate);
Rui Paulo90a5e162009-11-11 00:01:31 +0000793
794 rcu_read_lock();
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800795 sta = sta_info_get(sdata, mgmt->sa);
796 if (!sta) {
797 rcu_read_unlock();
798 return;
799 }
800
801 metric_txsta = airtime_link_metric_get(local, sta);
802
Johannes Bergbf7cd942013-02-15 14:40:31 +0100803 mpath = mesh_path_lookup(sdata, orig_addr);
Rui Paulo90a5e162009-11-11 00:01:31 +0000804 if (!mpath) {
Bob Copelandae76eef2013-03-29 09:38:39 -0400805 mpath = mesh_path_add(sdata, orig_addr);
806 if (IS_ERR(mpath)) {
Rui Paulo90a5e162009-11-11 00:01:31 +0000807 rcu_read_unlock();
808 sdata->u.mesh.mshstats.dropped_frames_no_route++;
809 return;
810 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000811 }
Javier Cardona5ee68e52011-08-09 16:45:08 -0700812
Chun-Yeow Yeoh7ebfa462012-06-15 10:20:02 +0800813 if (!(SN_LT(mpath->sn, orig_sn)) &&
814 !(mpath->sn == orig_sn && metric < mpath->rann_metric)) {
815 rcu_read_unlock();
816 return;
817 }
818
Javier Cardona5ee68e52011-08-09 16:45:08 -0700819 if ((!(mpath->flags & (MESH_PATH_ACTIVE | MESH_PATH_RESOLVING)) ||
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800820 (time_after(jiffies, mpath->last_preq_to_root +
821 root_path_confirmation_jiffies(sdata)) ||
822 time_before(jiffies, mpath->last_preq_to_root))) &&
Chun-Yeow Yeoh7ebfa462012-06-15 10:20:02 +0800823 !(mpath->flags & MESH_PATH_FIXED) && (ttl != 0)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200824 mhwmp_dbg(sdata,
825 "time to refresh root mpath %pM\n",
826 orig_addr);
Javier Cardona5ee68e52011-08-09 16:45:08 -0700827 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800828 mpath->last_preq_to_root = jiffies;
Javier Cardona5ee68e52011-08-09 16:45:08 -0700829 }
830
Chun-Yeow Yeoh7ebfa462012-06-15 10:20:02 +0800831 mpath->sn = orig_sn;
832 mpath->rann_metric = metric + metric_txsta;
833 mpath->is_root = true;
834 /* Recording RANNs sender address to send individually
835 * addressed PREQs destined for root mesh STA */
836 memcpy(mpath->rann_snd_addr, mgmt->sa, ETH_ALEN);
837
838 if (root_is_gate)
839 mesh_path_add_gate(mpath);
840
841 if (ttl <= 1) {
842 ifmsh->mshstats.dropped_frames_ttl++;
843 rcu_read_unlock();
844 return;
845 }
846 ttl--;
847
848 if (ifmsh->mshcfg.dot11MeshForwarding) {
Rui Paulo90a5e162009-11-11 00:01:31 +0000849 mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000850 cpu_to_le32(orig_sn),
Johannes Berg15ff6362009-11-17 13:34:04 +0100851 0, NULL, 0, broadcast_addr,
Javier Cardona0507e152011-08-09 16:45:10 -0700852 hopcount, ttl, cpu_to_le32(interval),
Chun-Yeow Yeohd2a079f2012-03-23 18:48:51 +0800853 cpu_to_le32(metric + metric_txsta),
Rui Paulo90a5e162009-11-11 00:01:31 +0000854 0, sdata);
Rui Paulo90a5e162009-11-11 00:01:31 +0000855 }
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800856
Rui Paulo90a5e162009-11-11 00:01:31 +0000857 rcu_read_unlock();
858}
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100859
860
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200861void mesh_rx_path_sel_frame(struct ieee80211_sub_if_data *sdata,
Johannes Bergbf7cd942013-02-15 14:40:31 +0100862 struct ieee80211_mgmt *mgmt, size_t len)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100863{
864 struct ieee802_11_elems elems;
865 size_t baselen;
866 u32 last_hop_metric;
Javier Cardona97091312011-10-06 14:54:22 -0700867 struct sta_info *sta;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100868
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200869 /* need action_code */
870 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
871 return;
872
Javier Cardona97091312011-10-06 14:54:22 -0700873 rcu_read_lock();
874 sta = sta_info_get(sdata, mgmt->sa);
875 if (!sta || sta->plink_state != NL80211_PLINK_ESTAB) {
876 rcu_read_unlock();
877 return;
878 }
879 rcu_read_unlock();
880
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100881 baselen = (u8 *) mgmt->u.action.u.mesh_action.variable - (u8 *) mgmt;
882 ieee802_11_parse_elems(mgmt->u.action.u.mesh_action.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +0100883 len - baselen, false, &elems);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100884
Rui Paulodbb81c42009-11-09 23:46:46 +0000885 if (elems.preq) {
886 if (elems.preq_len != 37)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100887 /* Right now we support just 1 destination and no AE */
888 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000889 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.preq,
890 MPATH_PREQ);
891 if (last_hop_metric)
892 hwmp_preq_frame_process(sdata, mgmt, elems.preq,
893 last_hop_metric);
894 }
895 if (elems.prep) {
896 if (elems.prep_len != 31)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100897 /* Right now we support no AE */
898 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000899 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.prep,
900 MPATH_PREP);
901 if (last_hop_metric)
902 hwmp_prep_frame_process(sdata, mgmt, elems.prep,
903 last_hop_metric);
904 }
905 if (elems.perr) {
Rui Paulod611f062009-11-09 23:46:50 +0000906 if (elems.perr_len != 15)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100907 /* Right now we support only one destination per PERR */
908 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200909 hwmp_perr_frame_process(sdata, mgmt, elems.perr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100910 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000911 if (elems.rann)
912 hwmp_rann_frame_process(sdata, mgmt, elems.rann);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100913}
914
915/**
916 * mesh_queue_preq - queue a PREQ to a given destination
917 *
918 * @mpath: mesh path to discover
919 * @flags: special attributes of the PREQ to be sent
920 *
921 * Locking: the function must be called from within a rcu read lock block.
922 *
923 */
924static void mesh_queue_preq(struct mesh_path *mpath, u8 flags)
925{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200926 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Johannes Berg472dbc42008-09-11 00:01:49 +0200927 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100928 struct mesh_preq_queue *preq_node;
929
Andrey Yurovsky59615b52009-06-25 16:07:42 -0700930 preq_node = kmalloc(sizeof(struct mesh_preq_queue), GFP_ATOMIC);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100931 if (!preq_node) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200932 mhwmp_dbg(sdata, "could not allocate PREQ node\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100933 return;
934 }
935
Baruch Siach987dafa2011-07-28 08:51:05 +0300936 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200937 if (ifmsh->preq_queue_len == MAX_PREQ_QUEUE_LEN) {
Baruch Siach987dafa2011-07-28 08:51:05 +0300938 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100939 kfree(preq_node);
940 if (printk_ratelimit())
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200941 mhwmp_dbg(sdata, "PREQ node queue full\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100942 return;
943 }
944
Johannes Bergf2dc7982011-11-18 15:27:31 +0100945 spin_lock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700946 if (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 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Dan Carpenter88d53462011-11-15 09:33:31 +0300949 kfree(preq_node);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700950 return;
951 }
952
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100953 memcpy(preq_node->dst, mpath->dst, ETH_ALEN);
954 preq_node->flags = flags;
955
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700956 mpath->flags |= MESH_PATH_REQ_QUEUED;
Johannes Bergf2dc7982011-11-18 15:27:31 +0100957 spin_unlock(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -0700958
Johannes Berg472dbc42008-09-11 00:01:49 +0200959 list_add_tail(&preq_node->list, &ifmsh->preq_queue.list);
960 ++ifmsh->preq_queue_len;
Baruch Siach987dafa2011-07-28 08:51:05 +0300961 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100962
Johannes Berg472dbc42008-09-11 00:01:49 +0200963 if (time_after(jiffies, ifmsh->last_preq + min_preq_int_jiff(sdata)))
Johannes Berg64592c82010-06-10 10:21:31 +0200964 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100965
Johannes Berg472dbc42008-09-11 00:01:49 +0200966 else if (time_before(jiffies, ifmsh->last_preq)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100967 /* avoid long wait if did not send preqs for a long time
968 * and jiffies wrapped around
969 */
Johannes Berg472dbc42008-09-11 00:01:49 +0200970 ifmsh->last_preq = jiffies - min_preq_int_jiff(sdata) - 1;
Johannes Berg64592c82010-06-10 10:21:31 +0200971 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100972 } else
Johannes Berg472dbc42008-09-11 00:01:49 +0200973 mod_timer(&ifmsh->mesh_path_timer, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100974 min_preq_int_jiff(sdata));
975}
976
977/**
978 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
979 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200980 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100981 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200982void mesh_path_start_discovery(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100983{
Johannes Berg472dbc42008-09-11 00:01:49 +0200984 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100985 struct mesh_preq_queue *preq_node;
986 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000987 u8 ttl, target_flags;
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +0800988 const u8 *da;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100989 u32 lifetime;
990
Johannes Berga43816d2009-07-10 11:39:26 +0200991 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200992 if (!ifmsh->preq_queue_len ||
993 time_before(jiffies, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100994 min_preq_int_jiff(sdata))) {
Johannes Berga43816d2009-07-10 11:39:26 +0200995 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100996 return;
997 }
998
Johannes Berg472dbc42008-09-11 00:01:49 +0200999 preq_node = list_first_entry(&ifmsh->preq_queue.list,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001000 struct mesh_preq_queue, list);
1001 list_del(&preq_node->list);
Johannes Berg472dbc42008-09-11 00:01:49 +02001002 --ifmsh->preq_queue_len;
Johannes Berga43816d2009-07-10 11:39:26 +02001003 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001004
1005 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001006 mpath = mesh_path_lookup(sdata, preq_node->dst);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001007 if (!mpath)
1008 goto enddiscovery;
1009
1010 spin_lock_bh(&mpath->state_lock);
Javier Cardonaf3011cf2011-11-03 21:11:10 -07001011 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001012 if (preq_node->flags & PREQ_Q_F_START) {
1013 if (mpath->flags & MESH_PATH_RESOLVING) {
1014 spin_unlock_bh(&mpath->state_lock);
1015 goto enddiscovery;
1016 } else {
1017 mpath->flags &= ~MESH_PATH_RESOLVED;
1018 mpath->flags |= MESH_PATH_RESOLVING;
1019 mpath->discovery_retries = 0;
1020 mpath->discovery_timeout = disc_timeout_jiff(sdata);
1021 }
1022 } else if (!(mpath->flags & MESH_PATH_RESOLVING) ||
1023 mpath->flags & MESH_PATH_RESOLVED) {
1024 mpath->flags &= ~MESH_PATH_RESOLVING;
1025 spin_unlock_bh(&mpath->state_lock);
1026 goto enddiscovery;
1027 }
1028
Johannes Berg472dbc42008-09-11 00:01:49 +02001029 ifmsh->last_preq = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001030
Rui Paulod19b3bf2009-11-09 23:46:55 +00001031 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001032 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +00001033 time_before(jiffies, ifmsh->last_sn_update)) {
1034 ++ifmsh->sn;
1035 sdata->u.mesh.last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001036 }
1037 lifetime = default_lifetime(sdata);
Javier Cardona45904f22010-12-03 09:20:40 +01001038 ttl = sdata->u.mesh.mshcfg.element_ttl;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001039 if (ttl == 0) {
Johannes Berg472dbc42008-09-11 00:01:49 +02001040 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001041 spin_unlock_bh(&mpath->state_lock);
1042 goto enddiscovery;
1043 }
1044
1045 if (preq_node->flags & PREQ_Q_F_REFRESH)
Rui Paulod19b3bf2009-11-09 23:46:55 +00001046 target_flags = MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001047 else
Rui Paulod19b3bf2009-11-09 23:46:55 +00001048 target_flags = MP_F_RF;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001049
1050 spin_unlock_bh(&mpath->state_lock);
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +08001051 da = (mpath->is_root) ? mpath->rann_snd_addr : broadcast_addr;
Johannes Berg47846c92009-11-25 17:46:19 +01001052 mesh_path_sel_frame_tx(MPATH_PREQ, 0, sdata->vif.addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +00001053 cpu_to_le32(ifmsh->sn), target_flags, mpath->dst,
Chun-Yeow Yeoh3d045a52012-02-28 22:00:06 +08001054 cpu_to_le32(mpath->sn), da, 0,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -08001055 ttl, cpu_to_le32(lifetime), 0,
Johannes Berg472dbc42008-09-11 00:01:49 +02001056 cpu_to_le32(ifmsh->preq_id++), sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001057 mod_timer(&mpath->timer, jiffies + mpath->discovery_timeout);
1058
1059enddiscovery:
1060 rcu_read_unlock();
1061 kfree(preq_node);
1062}
1063
Ben Hutchings2c530402012-07-10 10:55:09 +00001064/**
1065 * mesh_nexthop_resolve - lookup next hop; conditionally start path discovery
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001066 *
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001067 * @skb: 802.11 frame to be sent
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001068 * @sdata: network subif the frame will be sent through
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001069 *
Ben Hutchings2c530402012-07-10 10:55:09 +00001070 * Lookup next hop for given skb and start path discovery if no
1071 * forwarding information is found.
1072 *
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001073 * Returns: 0 if the next hop was found and -ENOENT if the frame was queued.
1074 * skb is freeed here if no mpath could be allocated.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001075 */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001076int mesh_nexthop_resolve(struct ieee80211_sub_if_data *sdata,
1077 struct sk_buff *skb)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001078{
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001079 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001080 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1081 struct mesh_path *mpath;
1082 struct sk_buff *skb_to_free = NULL;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001083 u8 *target_addr = hdr->addr3;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001084 int err = 0;
1085
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001086 /* Nulls are only sent to peers for PS and should be pre-addressed */
1087 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
1088 return 0;
1089
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001090 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001091 err = mesh_nexthop_lookup(sdata, skb);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001092 if (!err)
1093 goto endlookup;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001094
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001095 /* no nexthop found, start resolving */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001096 mpath = mesh_path_lookup(sdata, target_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001097 if (!mpath) {
Bob Copelandae76eef2013-03-29 09:38:39 -04001098 mpath = mesh_path_add(sdata, target_addr);
1099 if (IS_ERR(mpath)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01001100 mesh_path_discard_frame(sdata, skb);
Bob Copelandae76eef2013-03-29 09:38:39 -04001101 err = PTR_ERR(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001102 goto endlookup;
1103 }
1104 }
1105
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001106 if (!(mpath->flags & MESH_PATH_RESOLVING))
1107 mesh_queue_preq(mpath, PREQ_Q_F_START);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001108
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001109 if (skb_queue_len(&mpath->frame_queue) >= MESH_FRAME_QUEUE_LEN)
1110 skb_to_free = skb_dequeue(&mpath->frame_queue);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001111
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001112 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1113 ieee80211_set_qos_hdr(sdata, skb);
1114 skb_queue_tail(&mpath->frame_queue, skb);
1115 err = -ENOENT;
1116 if (skb_to_free)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001117 mesh_path_discard_frame(sdata, skb_to_free);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001118
1119endlookup:
1120 rcu_read_unlock();
1121 return err;
1122}
Johannes Bergbf7cd942013-02-15 14:40:31 +01001123
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001124/**
1125 * mesh_nexthop_lookup - put the appropriate next hop on a mesh frame. Calling
1126 * this function is considered "using" the associated mpath, so preempt a path
1127 * refresh if this mpath expires soon.
1128 *
1129 * @skb: 802.11 frame to be sent
1130 * @sdata: network subif the frame will be sent through
1131 *
1132 * Returns: 0 if the next hop was found. Nonzero otherwise.
1133 */
Johannes Bergbf7cd942013-02-15 14:40:31 +01001134int mesh_nexthop_lookup(struct ieee80211_sub_if_data *sdata,
1135 struct sk_buff *skb)
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001136{
1137 struct mesh_path *mpath;
1138 struct sta_info *next_hop;
1139 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1140 u8 *target_addr = hdr->addr3;
1141 int err = -ENOENT;
1142
1143 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001144 mpath = mesh_path_lookup(sdata, target_addr);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001145
1146 if (!mpath || !(mpath->flags & MESH_PATH_ACTIVE))
1147 goto endlookup;
1148
1149 if (time_after(jiffies,
1150 mpath->exp_time -
1151 msecs_to_jiffies(sdata->u.mesh.mshcfg.path_refresh_time)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001152 ether_addr_equal(sdata->vif.addr, hdr->addr4) &&
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001153 !(mpath->flags & MESH_PATH_RESOLVING) &&
1154 !(mpath->flags & MESH_PATH_FIXED))
1155 mesh_queue_preq(mpath, PREQ_Q_F_START | PREQ_Q_F_REFRESH);
1156
1157 next_hop = rcu_dereference(mpath->next_hop);
1158 if (next_hop) {
1159 memcpy(hdr->addr1, next_hop->sta.addr, ETH_ALEN);
1160 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001161 ieee80211_mps_set_frame_flags(sdata, next_hop, hdr);
Thomas Pedersen0cfda852011-11-24 17:15:25 -08001162 err = 0;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001163 }
1164
1165endlookup:
1166 rcu_read_unlock();
1167 return err;
1168}
1169
1170void mesh_path_timer(unsigned long data)
1171{
Johannes Bergdea40962011-05-12 15:03:32 +02001172 struct mesh_path *mpath = (void *) data;
1173 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001174 int ret;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001175
Johannes Bergdea40962011-05-12 15:03:32 +02001176 if (sdata->local->quiescing)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001177 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02001178
1179 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -08001180 if (mpath->flags & MESH_PATH_RESOLVED ||
Javier Cardona5ee68e52011-08-09 16:45:08 -07001181 (!(mpath->flags & MESH_PATH_RESOLVING))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001182 mpath->flags &= ~(MESH_PATH_RESOLVING | MESH_PATH_RESOLVED);
Javier Cardona5ee68e52011-08-09 16:45:08 -07001183 spin_unlock_bh(&mpath->state_lock);
1184 } else if (mpath->discovery_retries < max_preq_retries(sdata)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001185 ++mpath->discovery_retries;
1186 mpath->discovery_timeout *= 2;
Javier Cardonaf3011cf2011-11-03 21:11:10 -07001187 mpath->flags &= ~MESH_PATH_REQ_QUEUED;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001188 spin_unlock_bh(&mpath->state_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001189 mesh_queue_preq(mpath, 0);
1190 } else {
1191 mpath->flags = 0;
1192 mpath->exp_time = jiffies;
Javier Cardona5ee68e52011-08-09 16:45:08 -07001193 spin_unlock_bh(&mpath->state_lock);
1194 if (!mpath->is_gate && mesh_gate_num(sdata) > 0) {
1195 ret = mesh_path_send_to_gates(mpath);
1196 if (ret)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001197 mhwmp_dbg(sdata, "no gate was reachable\n");
Javier Cardona5ee68e52011-08-09 16:45:08 -07001198 } else
1199 mesh_path_flush_pending(mpath);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001200 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001201}
Rui Pauloe304bfd2009-11-09 23:46:56 +00001202
Johannes Bergbf7cd942013-02-15 14:40:31 +01001203void mesh_path_tx_root_frame(struct ieee80211_sub_if_data *sdata)
Rui Pauloe304bfd2009-11-09 23:46:56 +00001204{
1205 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardona0507e152011-08-09 16:45:10 -07001206 u32 interval = ifmsh->mshcfg.dot11MeshHWMPRannInterval;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001207 u8 flags, target_flags = 0;
Rui Pauloe304bfd2009-11-09 23:46:56 +00001208
Javier Cardona16dd7262011-08-09 16:45:11 -07001209 flags = (ifmsh->mshcfg.dot11MeshGateAnnouncementProtocol)
1210 ? RANN_FLAG_IS_GATE : 0;
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001211
1212 switch (ifmsh->mshcfg.dot11MeshHWMPRootMode) {
1213 case IEEE80211_PROACTIVE_RANN:
1214 mesh_path_sel_frame_tx(MPATH_RANN, flags, sdata->vif.addr,
Rui Pauloe304bfd2009-11-09 23:46:56 +00001215 cpu_to_le32(++ifmsh->sn),
Johannes Berg15ff6362009-11-17 13:34:04 +01001216 0, NULL, 0, broadcast_addr,
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001217 0, ifmsh->mshcfg.element_ttl,
Javier Cardona0507e152011-08-09 16:45:10 -07001218 cpu_to_le32(interval), 0, 0, sdata);
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001219 break;
1220 case IEEE80211_PROACTIVE_PREQ_WITH_PREP:
1221 flags |= IEEE80211_PREQ_PROACTIVE_PREP_FLAG;
1222 case IEEE80211_PROACTIVE_PREQ_NO_PREP:
1223 interval = ifmsh->mshcfg.dot11MeshHWMPactivePathToRootTimeout;
1224 target_flags |= IEEE80211_PREQ_TO_FLAG |
1225 IEEE80211_PREQ_USN_FLAG;
1226 mesh_path_sel_frame_tx(MPATH_PREQ, flags, sdata->vif.addr,
1227 cpu_to_le32(++ifmsh->sn), target_flags,
1228 (u8 *) broadcast_addr, 0, broadcast_addr,
1229 0, ifmsh->mshcfg.element_ttl,
1230 cpu_to_le32(interval),
1231 0, cpu_to_le32(ifmsh->preq_id++), sdata);
1232 break;
1233 default:
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001234 mhwmp_dbg(sdata, "Proactive mechanism not supported\n");
Chun-Yeow Yeoha69cc442012-06-14 02:06:07 +08001235 return;
1236 }
Rui Pauloe304bfd2009-11-09 23:46:56 +00001237}