blob: 36141d6e701ba0932ff69ed180d62172780e4651 [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
10#include "mesh.h"
11
Rui Paulo27db2e42009-11-09 23:46:45 +000012#ifdef CONFIG_MAC80211_VERBOSE_MHWMP_DEBUG
13#define mhwmp_dbg(fmt, args...) printk(KERN_DEBUG "Mesh HWMP: " fmt, ##args)
14#else
15#define mhwmp_dbg(fmt, args...) do { (void)(0); } while (0)
16#endif
17
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010018#define TEST_FRAME_LEN 8192
19#define MAX_METRIC 0xffffffff
20#define ARITH_SHIFT 8
21
22/* Number of frames buffered per destination for unresolved destinations */
23#define MESH_FRAME_QUEUE_LEN 10
24#define MAX_PREQ_QUEUE_LEN 64
25
26/* Destination only */
27#define MP_F_DO 0x1
28/* Reply and forward */
29#define MP_F_RF 0x2
Rui Paulod611f062009-11-09 23:46:50 +000030/* Unknown Sequence Number */
31#define MP_F_USN 0x01
32/* Reason code Present */
33#define MP_F_RCODE 0x02
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010034
Rui Paulo90a5e162009-11-11 00:01:31 +000035static void mesh_queue_preq(struct mesh_path *, u8);
36
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080037static inline u32 u32_field_get(u8 *preq_elem, int offset, bool ae)
38{
39 if (ae)
40 offset += 6;
Harvey Harrisonae7245c2008-05-01 22:19:33 -070041 return get_unaligned_le32(preq_elem + offset);
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080042}
43
Rui Paulod611f062009-11-09 23:46:50 +000044static inline u32 u16_field_get(u8 *preq_elem, int offset, bool ae)
45{
46 if (ae)
47 offset += 6;
48 return get_unaligned_le16(preq_elem + offset);
49}
50
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010051/* HWMP IE processing macros */
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080052#define AE_F (1<<6)
53#define AE_F_SET(x) (*x & AE_F)
54#define PREQ_IE_FLAGS(x) (*(x))
55#define PREQ_IE_HOPCOUNT(x) (*(x + 1))
56#define PREQ_IE_TTL(x) (*(x + 2))
57#define PREQ_IE_PREQ_ID(x) u32_field_get(x, 3, 0)
58#define PREQ_IE_ORIG_ADDR(x) (x + 7)
Rui Paulod19b3bf2009-11-09 23:46:55 +000059#define PREQ_IE_ORIG_SN(x) u32_field_get(x, 13, 0);
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080060#define PREQ_IE_LIFETIME(x) u32_field_get(x, 17, AE_F_SET(x));
61#define PREQ_IE_METRIC(x) u32_field_get(x, 21, AE_F_SET(x));
Rui Paulod19b3bf2009-11-09 23:46:55 +000062#define PREQ_IE_TARGET_F(x) (*(AE_F_SET(x) ? x + 32 : x + 26))
63#define PREQ_IE_TARGET_ADDR(x) (AE_F_SET(x) ? x + 33 : x + 27)
64#define PREQ_IE_TARGET_SN(x) u32_field_get(x, 33, AE_F_SET(x));
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010065
66
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080067#define PREP_IE_FLAGS(x) PREQ_IE_FLAGS(x)
68#define PREP_IE_HOPCOUNT(x) PREQ_IE_HOPCOUNT(x)
69#define PREP_IE_TTL(x) PREQ_IE_TTL(x)
70#define PREP_IE_ORIG_ADDR(x) (x + 3)
Rui Paulod19b3bf2009-11-09 23:46:55 +000071#define PREP_IE_ORIG_SN(x) u32_field_get(x, 9, 0);
Luis Carlos Coboa00de5d2008-02-29 17:07:54 -080072#define PREP_IE_LIFETIME(x) u32_field_get(x, 13, AE_F_SET(x));
73#define PREP_IE_METRIC(x) u32_field_get(x, 17, AE_F_SET(x));
Rui Paulod19b3bf2009-11-09 23:46:55 +000074#define PREP_IE_TARGET_ADDR(x) (AE_F_SET(x) ? x + 27 : x + 21)
75#define PREP_IE_TARGET_SN(x) u32_field_get(x, 27, AE_F_SET(x));
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010076
Rui Paulod611f062009-11-09 23:46:50 +000077#define PERR_IE_TTL(x) (*(x))
Rui Paulod19b3bf2009-11-09 23:46:55 +000078#define PERR_IE_TARGET_FLAGS(x) (*(x + 2))
79#define PERR_IE_TARGET_ADDR(x) (x + 3)
80#define PERR_IE_TARGET_SN(x) u32_field_get(x, 9, 0);
81#define PERR_IE_TARGET_RCODE(x) u16_field_get(x, 13, 0);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010082
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010083#define MSEC_TO_TU(x) (x*1000/1024)
Rui Paulod19b3bf2009-11-09 23:46:55 +000084#define SN_GT(x, y) ((long) (y) - (long) (x) < 0)
85#define SN_LT(x, y) ((long) (x) - (long) (y) < 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010086
87#define net_traversal_jiffies(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020088 msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010089#define default_lifetime(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020090 MSEC_TO_TU(s->u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010091#define min_preq_int_jiff(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020092 (msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval))
93#define max_preq_retries(s) (s->u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010094#define disc_timeout_jiff(s) \
Johannes Berg472dbc42008-09-11 00:01:49 +020095 msecs_to_jiffies(sdata->u.mesh.mshcfg.min_discovery_timeout)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +010096
97enum mpath_frame_type {
98 MPATH_PREQ = 0,
99 MPATH_PREP,
Rui Paulo90a5e162009-11-11 00:01:31 +0000100 MPATH_PERR,
101 MPATH_RANN
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100102};
103
Johannes Berg15ff6362009-11-17 13:34:04 +0100104static const u8 broadcast_addr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
105
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100106static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000107 u8 *orig_addr, __le32 orig_sn, u8 target_flags, u8 *target,
Johannes Berg15ff6362009-11-17 13:34:04 +0100108 __le32 target_sn, const u8 *da, u8 hop_count, u8 ttl,
109 __le32 lifetime, __le32 metric, __le32 preq_id,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000110 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100111{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200112 struct ieee80211_local *local = sdata->local;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100113 struct sk_buff *skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
114 struct ieee80211_mgmt *mgmt;
115 u8 *pos;
116 int ie_len;
117
118 if (!skb)
119 return -1;
120 skb_reserve(skb, local->hw.extra_tx_headroom);
121 /* 25 is the size of the common mgmt part (24) plus the size of the
122 * common action part (1)
123 */
124 mgmt = (struct ieee80211_mgmt *)
125 skb_put(skb, 25 + sizeof(mgmt->u.action.u.mesh_action));
126 memset(mgmt, 0, 25 + sizeof(mgmt->u.action.u.mesh_action));
Harvey Harrisone7827a72008-07-15 18:44:13 -0700127 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
128 IEEE80211_STYPE_ACTION);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100129
130 memcpy(mgmt->da, da, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100131 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Rui Paulo90a5e162009-11-11 00:01:31 +0000132 /* BSSID == SA */
Johannes Berg47846c92009-11-25 17:46:19 +0100133 memcpy(mgmt->bssid, sdata->vif.addr, ETH_ALEN);
Javier Cardona97ad9132010-03-29 11:00:21 -0700134 mgmt->u.action.category = WLAN_CATEGORY_MESH_PATH_SEL;
Rui Paulo095de012009-11-09 23:46:44 +0000135 mgmt->u.action.u.mesh_action.action_code = MESH_PATH_SEL_ACTION;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100136
137 switch (action) {
138 case MPATH_PREQ:
Rui Paulod19b3bf2009-11-09 23:46:55 +0000139 mhwmp_dbg("sending PREQ to %pM\n", target);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100140 ie_len = 37;
141 pos = skb_put(skb, 2 + ie_len);
142 *pos++ = WLAN_EID_PREQ;
143 break;
144 case MPATH_PREP:
Rui Paulod19b3bf2009-11-09 23:46:55 +0000145 mhwmp_dbg("sending PREP to %pM\n", target);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100146 ie_len = 31;
147 pos = skb_put(skb, 2 + ie_len);
148 *pos++ = WLAN_EID_PREP;
149 break;
Rui Paulo90a5e162009-11-11 00:01:31 +0000150 case MPATH_RANN:
151 mhwmp_dbg("sending RANN from %pM\n", orig_addr);
152 ie_len = sizeof(struct ieee80211_rann_ie);
153 pos = skb_put(skb, 2 + ie_len);
154 *pos++ = WLAN_EID_RANN;
155 break;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100156 default:
Patrick McHardy812714d2008-05-06 12:52:07 +0200157 kfree_skb(skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100158 return -ENOTSUPP;
159 break;
160 }
161 *pos++ = ie_len;
162 *pos++ = flags;
163 *pos++ = hop_count;
164 *pos++ = ttl;
165 if (action == MPATH_PREQ) {
166 memcpy(pos, &preq_id, 4);
167 pos += 4;
168 }
169 memcpy(pos, orig_addr, ETH_ALEN);
170 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000171 memcpy(pos, &orig_sn, 4);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100172 pos += 4;
Rui Paulo90a5e162009-11-11 00:01:31 +0000173 if (action != MPATH_RANN) {
174 memcpy(pos, &lifetime, 4);
175 pos += 4;
176 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100177 memcpy(pos, &metric, 4);
178 pos += 4;
179 if (action == MPATH_PREQ) {
180 /* destination count */
181 *pos++ = 1;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000182 *pos++ = target_flags;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100183 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000184 if (action != MPATH_RANN) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000185 memcpy(pos, target, ETH_ALEN);
Rui Paulo90a5e162009-11-11 00:01:31 +0000186 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000187 memcpy(pos, &target_sn, 4);
Rui Paulo90a5e162009-11-11 00:01:31 +0000188 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100189
Johannes Berg62ae67b2009-11-18 18:42:05 +0100190 ieee80211_tx_skb(sdata, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100191 return 0;
192}
193
194/**
195 * mesh_send_path error - Sends a PERR mesh management frame
196 *
Rui Paulod19b3bf2009-11-09 23:46:55 +0000197 * @target: broken destination
198 * @target_sn: SN of the broken destination
199 * @target_rcode: reason code for this PERR
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100200 * @ra: node this frame is addressed to
201 */
Rui Paulod19b3bf2009-11-09 23:46:55 +0000202int mesh_path_error_tx(u8 ttl, u8 *target, __le32 target_sn,
Johannes Berg15ff6362009-11-17 13:34:04 +0100203 __le16 target_rcode, const u8 *ra,
204 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100205{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200206 struct ieee80211_local *local = sdata->local;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100207 struct sk_buff *skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
208 struct ieee80211_mgmt *mgmt;
209 u8 *pos;
210 int ie_len;
211
212 if (!skb)
213 return -1;
214 skb_reserve(skb, local->hw.extra_tx_headroom);
215 /* 25 is the size of the common mgmt part (24) plus the size of the
216 * common action part (1)
217 */
218 mgmt = (struct ieee80211_mgmt *)
219 skb_put(skb, 25 + sizeof(mgmt->u.action.u.mesh_action));
220 memset(mgmt, 0, 25 + sizeof(mgmt->u.action.u.mesh_action));
Harvey Harrisone7827a72008-07-15 18:44:13 -0700221 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
222 IEEE80211_STYPE_ACTION);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100223
224 memcpy(mgmt->da, ra, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100225 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100226 /* BSSID is left zeroed, wildcard value */
Javier Cardona97ad9132010-03-29 11:00:21 -0700227 mgmt->u.action.category = WLAN_CATEGORY_MESH_PATH_SEL;
Rui Paulodbb81c42009-11-09 23:46:46 +0000228 mgmt->u.action.u.mesh_action.action_code = MESH_PATH_SEL_ACTION;
Rui Paulod611f062009-11-09 23:46:50 +0000229 ie_len = 15;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100230 pos = skb_put(skb, 2 + ie_len);
231 *pos++ = WLAN_EID_PERR;
232 *pos++ = ie_len;
Rui Paulod611f062009-11-09 23:46:50 +0000233 /* ttl */
234 *pos++ = MESH_TTL;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100235 /* number of destinations */
236 *pos++ = 1;
Rui Paulod611f062009-11-09 23:46:50 +0000237 /*
238 * flags bit, bit 1 is unset if we know the sequence number and
239 * bit 2 is set if we have a reason code
240 */
241 *pos = 0;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000242 if (!target_sn)
Rui Paulod611f062009-11-09 23:46:50 +0000243 *pos |= MP_F_USN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000244 if (target_rcode)
Rui Paulod611f062009-11-09 23:46:50 +0000245 *pos |= MP_F_RCODE;
246 pos++;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000247 memcpy(pos, target, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100248 pos += ETH_ALEN;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000249 memcpy(pos, &target_sn, 4);
Rui Paulod611f062009-11-09 23:46:50 +0000250 pos += 4;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000251 memcpy(pos, &target_rcode, 2);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100252
Johannes Berg62ae67b2009-11-18 18:42:05 +0100253 ieee80211_tx_skb(sdata, skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100254 return 0;
255}
256
Javier Cardonabfc32e62009-08-17 17:15:55 -0700257void ieee80211s_update_metric(struct ieee80211_local *local,
258 struct sta_info *stainfo, struct sk_buff *skb)
259{
260 struct ieee80211_tx_info *txinfo = IEEE80211_SKB_CB(skb);
261 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
262 int failed;
263
264 if (!ieee80211_is_data(hdr->frame_control))
265 return;
266
267 failed = !(txinfo->flags & IEEE80211_TX_STAT_ACK);
268
269 /* moving average, scaled to 100 */
270 stainfo->fail_avg = ((80 * stainfo->fail_avg + 5) / 100 + 20 * failed);
271 if (stainfo->fail_avg > 95)
272 mesh_plink_broken(stainfo);
273}
274
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100275static u32 airtime_link_metric_get(struct ieee80211_local *local,
276 struct sta_info *sta)
277{
278 struct ieee80211_supported_band *sband;
279 /* This should be adjusted for each device */
280 int device_constant = 1 << ARITH_SHIFT;
281 int test_frame_len = TEST_FRAME_LEN << ARITH_SHIFT;
282 int s_unit = 1 << ARITH_SHIFT;
283 int rate, err;
284 u32 tx_time, estimated_retx;
285 u64 result;
286
287 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
288
289 if (sta->fail_avg >= 100)
290 return MAX_METRIC;
Johannes Berge6a98542008-10-21 12:40:02 +0200291
292 if (sta->last_tx_rate.flags & IEEE80211_TX_RC_MCS)
293 return MAX_METRIC;
294
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100295 err = (sta->fail_avg << ARITH_SHIFT) / 100;
296
297 /* bitrate is in units of 100 Kbps, while we need rate in units of
298 * 1Mbps. This will be corrected on tx_time computation.
299 */
Johannes Berge6a98542008-10-21 12:40:02 +0200300 rate = sband->bitrates[sta->last_tx_rate.idx].bitrate;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100301 tx_time = (device_constant + 10 * test_frame_len / rate);
302 estimated_retx = ((1 << (2 * ARITH_SHIFT)) / (s_unit - err));
303 result = (tx_time * estimated_retx) >> (2 * ARITH_SHIFT) ;
304 return (u32)result;
305}
306
307/**
308 * hwmp_route_info_get - Update routing info to originator and transmitter
309 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200310 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100311 * @mgmt: mesh management frame
312 * @hwmp_ie: hwmp information element (PREP or PREQ)
313 *
314 * This function updates the path routing information to the originator and the
Andrey Yurovskyf99288d2009-10-20 12:17:34 -0700315 * transmitter of a HWMP PREQ or PREP frame.
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100316 *
317 * Returns: metric to frame originator or 0 if the frame should not be further
318 * processed
319 *
320 * Notes: this function is the only place (besides user-provided info) where
321 * path routing information is updated.
322 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200323static u32 hwmp_route_info_get(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100324 struct ieee80211_mgmt *mgmt,
Rui Paulodbb81c42009-11-09 23:46:46 +0000325 u8 *hwmp_ie, enum mpath_frame_type action)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100326{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200327 struct ieee80211_local *local = sdata->local;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100328 struct mesh_path *mpath;
329 struct sta_info *sta;
330 bool fresh_info;
331 u8 *orig_addr, *ta;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000332 u32 orig_sn, orig_metric;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100333 unsigned long orig_lifetime, exp_time;
334 u32 last_hop_metric, new_metric;
335 bool process = true;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100336
337 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100338 sta = sta_info_get(sdata, mgmt->sa);
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100339 if (!sta) {
340 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100341 return 0;
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100342 }
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100343
344 last_hop_metric = airtime_link_metric_get(local, sta);
345 /* Update and check originator routing info */
346 fresh_info = true;
347
348 switch (action) {
349 case MPATH_PREQ:
350 orig_addr = PREQ_IE_ORIG_ADDR(hwmp_ie);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000351 orig_sn = PREQ_IE_ORIG_SN(hwmp_ie);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100352 orig_lifetime = PREQ_IE_LIFETIME(hwmp_ie);
353 orig_metric = PREQ_IE_METRIC(hwmp_ie);
354 break;
355 case MPATH_PREP:
356 /* Originator here refers to the MP that was the destination in
357 * the Path Request. The draft refers to that MP as the
358 * destination address, even though usually it is the origin of
359 * the PREP frame. We divert from the nomenclature in the draft
360 * so that we can easily use a single function to gather path
361 * information from both PREQ and PREP frames.
362 */
363 orig_addr = PREP_IE_ORIG_ADDR(hwmp_ie);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000364 orig_sn = PREP_IE_ORIG_SN(hwmp_ie);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100365 orig_lifetime = PREP_IE_LIFETIME(hwmp_ie);
366 orig_metric = PREP_IE_METRIC(hwmp_ie);
367 break;
368 default:
Johannes Bergdc0b0f72008-02-23 15:17:20 +0100369 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100370 return 0;
371 }
372 new_metric = orig_metric + last_hop_metric;
373 if (new_metric < orig_metric)
374 new_metric = MAX_METRIC;
375 exp_time = TU_TO_EXP_TIME(orig_lifetime);
376
Johannes Berg47846c92009-11-25 17:46:19 +0100377 if (memcmp(orig_addr, sdata->vif.addr, ETH_ALEN) == 0) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100378 /* This MP is the originator, we are not interested in this
379 * frame, except for updating transmitter's path info.
380 */
381 process = false;
382 fresh_info = false;
383 } else {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200384 mpath = mesh_path_lookup(orig_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100385 if (mpath) {
386 spin_lock_bh(&mpath->state_lock);
387 if (mpath->flags & MESH_PATH_FIXED)
388 fresh_info = false;
389 else if ((mpath->flags & MESH_PATH_ACTIVE) &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000390 (mpath->flags & MESH_PATH_SN_VALID)) {
391 if (SN_GT(mpath->sn, orig_sn) ||
392 (mpath->sn == orig_sn &&
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100393 action == MPATH_PREQ &&
Porsch, Marco533866b2010-02-24 09:53:13 +0100394 new_metric >= mpath->metric)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100395 process = false;
396 fresh_info = false;
397 }
398 }
399 } else {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200400 mesh_path_add(orig_addr, sdata);
401 mpath = mesh_path_lookup(orig_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100402 if (!mpath) {
403 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100404 return 0;
405 }
406 spin_lock_bh(&mpath->state_lock);
407 }
408
409 if (fresh_info) {
410 mesh_path_assign_nexthop(mpath, sta);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000411 mpath->flags |= MESH_PATH_SN_VALID;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100412 mpath->metric = new_metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000413 mpath->sn = orig_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100414 mpath->exp_time = time_after(mpath->exp_time, exp_time)
415 ? mpath->exp_time : exp_time;
416 mesh_path_activate(mpath);
417 spin_unlock_bh(&mpath->state_lock);
418 mesh_path_tx_pending(mpath);
419 /* draft says preq_id should be saved to, but there does
420 * not seem to be any use for it, skipping by now
421 */
422 } else
423 spin_unlock_bh(&mpath->state_lock);
424 }
425
426 /* Update and check transmitter routing info */
427 ta = mgmt->sa;
428 if (memcmp(orig_addr, ta, ETH_ALEN) == 0)
429 fresh_info = false;
430 else {
431 fresh_info = true;
432
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200433 mpath = mesh_path_lookup(ta, sdata);
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 ((mpath->flags & MESH_PATH_ACTIVE) &&
438 (last_hop_metric > mpath->metric)))
439 fresh_info = false;
440 } else {
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200441 mesh_path_add(ta, sdata);
442 mpath = mesh_path_lookup(ta, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100443 if (!mpath) {
444 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100445 return 0;
446 }
447 spin_lock_bh(&mpath->state_lock);
448 }
449
450 if (fresh_info) {
451 mesh_path_assign_nexthop(mpath, sta);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000452 mpath->flags &= ~MESH_PATH_SN_VALID;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100453 mpath->metric = last_hop_metric;
454 mpath->exp_time = time_after(mpath->exp_time, exp_time)
455 ? mpath->exp_time : exp_time;
456 mesh_path_activate(mpath);
457 spin_unlock_bh(&mpath->state_lock);
458 mesh_path_tx_pending(mpath);
459 } else
460 spin_unlock_bh(&mpath->state_lock);
461 }
462
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100463 rcu_read_unlock();
464
465 return process ? new_metric : 0;
466}
467
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200468static void hwmp_preq_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100469 struct ieee80211_mgmt *mgmt,
David Woo57ef5dd2009-08-12 11:03:43 -0700470 u8 *preq_elem, u32 metric)
471{
Johannes Berg472dbc42008-09-11 00:01:49 +0200472 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100473 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000474 u8 *target_addr, *orig_addr;
475 u8 target_flags, ttl;
476 u32 orig_sn, target_sn, lifetime;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100477 bool reply = false;
478 bool forward = true;
479
Rui Paulod19b3bf2009-11-09 23:46:55 +0000480 /* Update target SN, if present */
481 target_addr = PREQ_IE_TARGET_ADDR(preq_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100482 orig_addr = PREQ_IE_ORIG_ADDR(preq_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000483 target_sn = PREQ_IE_TARGET_SN(preq_elem);
484 orig_sn = PREQ_IE_ORIG_SN(preq_elem);
485 target_flags = PREQ_IE_TARGET_F(preq_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100486
Rui Paulof3c0d882009-11-09 23:46:47 +0000487 mhwmp_dbg("received PREQ from %pM\n", orig_addr);
Rui Paulo27db2e42009-11-09 23:46:45 +0000488
Johannes Berg47846c92009-11-25 17:46:19 +0100489 if (memcmp(target_addr, sdata->vif.addr, ETH_ALEN) == 0) {
Rui Paulodbb81c42009-11-09 23:46:46 +0000490 mhwmp_dbg("PREQ is for us\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100491 forward = false;
492 reply = true;
493 metric = 0;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000494 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100495 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +0000496 time_before(jiffies, ifmsh->last_sn_update)) {
497 target_sn = ++ifmsh->sn;
498 ifmsh->last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100499 }
500 } else {
501 rcu_read_lock();
Rui Paulod19b3bf2009-11-09 23:46:55 +0000502 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100503 if (mpath) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000504 if ((!(mpath->flags & MESH_PATH_SN_VALID)) ||
505 SN_LT(mpath->sn, target_sn)) {
506 mpath->sn = target_sn;
507 mpath->flags |= MESH_PATH_SN_VALID;
508 } else if ((!(target_flags & MP_F_DO)) &&
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100509 (mpath->flags & MESH_PATH_ACTIVE)) {
510 reply = true;
511 metric = mpath->metric;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000512 target_sn = mpath->sn;
513 if (target_flags & MP_F_RF)
514 target_flags |= MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100515 else
516 forward = false;
517 }
518 }
519 rcu_read_unlock();
520 }
521
522 if (reply) {
523 lifetime = PREQ_IE_LIFETIME(preq_elem);
Johannes Berg472dbc42008-09-11 00:01:49 +0200524 ttl = ifmsh->mshcfg.dot11MeshTTL;
Rui Paulo27db2e42009-11-09 23:46:45 +0000525 if (ttl != 0) {
526 mhwmp_dbg("replying to the PREQ\n");
Rui Paulod19b3bf2009-11-09 23:46:55 +0000527 mesh_path_sel_frame_tx(MPATH_PREP, 0, target_addr,
528 cpu_to_le32(target_sn), 0, orig_addr,
529 cpu_to_le32(orig_sn), mgmt->sa, 0, ttl,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800530 cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200531 0, sdata);
Rui Paulo27db2e42009-11-09 23:46:45 +0000532 } else
Johannes Berg472dbc42008-09-11 00:01:49 +0200533 ifmsh->mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100534 }
535
536 if (forward) {
537 u32 preq_id;
538 u8 hopcount, flags;
539
540 ttl = PREQ_IE_TTL(preq_elem);
541 lifetime = PREQ_IE_LIFETIME(preq_elem);
542 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200543 ifmsh->mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100544 return;
545 }
Rui Paulof3c0d882009-11-09 23:46:47 +0000546 mhwmp_dbg("forwarding the PREQ from %pM\n", orig_addr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100547 --ttl;
548 flags = PREQ_IE_FLAGS(preq_elem);
549 preq_id = PREQ_IE_PREQ_ID(preq_elem);
550 hopcount = PREQ_IE_HOPCOUNT(preq_elem) + 1;
551 mesh_path_sel_frame_tx(MPATH_PREQ, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000552 cpu_to_le32(orig_sn), target_flags, target_addr,
Johannes Berg15ff6362009-11-17 13:34:04 +0100553 cpu_to_le32(target_sn), broadcast_addr,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800554 hopcount, ttl, cpu_to_le32(lifetime),
555 cpu_to_le32(metric), cpu_to_le32(preq_id),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200556 sdata);
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700557 ifmsh->mshstats.fwded_mcast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200558 ifmsh->mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100559 }
560}
561
562
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200563static void hwmp_prep_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100564 struct ieee80211_mgmt *mgmt,
565 u8 *prep_elem, u32 metric)
566{
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100567 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000568 u8 *target_addr, *orig_addr;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100569 u8 ttl, hopcount, flags;
570 u8 next_hop[ETH_ALEN];
Rui Paulod19b3bf2009-11-09 23:46:55 +0000571 u32 target_sn, orig_sn, lifetime;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100572
Rui Paulof3c0d882009-11-09 23:46:47 +0000573 mhwmp_dbg("received PREP from %pM\n", PREP_IE_ORIG_ADDR(prep_elem));
Rui Paulodbb81c42009-11-09 23:46:46 +0000574
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100575 /* Note that we divert from the draft nomenclature and denominate
576 * destination to what the draft refers to as origininator. So in this
577 * function destnation refers to the final destination of the PREP,
578 * which corresponds with the originator of the PREQ which this PREP
579 * replies
580 */
Rui Paulod19b3bf2009-11-09 23:46:55 +0000581 target_addr = PREP_IE_TARGET_ADDR(prep_elem);
Johannes Berg47846c92009-11-25 17:46:19 +0100582 if (memcmp(target_addr, sdata->vif.addr, ETH_ALEN) == 0)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100583 /* destination, no forwarding required */
584 return;
585
586 ttl = PREP_IE_TTL(prep_elem);
587 if (ttl <= 1) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200588 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100589 return;
590 }
591
592 rcu_read_lock();
Rui Paulod19b3bf2009-11-09 23:46:55 +0000593 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100594 if (mpath)
595 spin_lock_bh(&mpath->state_lock);
596 else
597 goto fail;
598 if (!(mpath->flags & MESH_PATH_ACTIVE)) {
599 spin_unlock_bh(&mpath->state_lock);
600 goto fail;
601 }
Johannes Berg17741cd2008-09-11 00:02:02 +0200602 memcpy(next_hop, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100603 spin_unlock_bh(&mpath->state_lock);
604 --ttl;
605 flags = PREP_IE_FLAGS(prep_elem);
606 lifetime = PREP_IE_LIFETIME(prep_elem);
607 hopcount = PREP_IE_HOPCOUNT(prep_elem) + 1;
608 orig_addr = PREP_IE_ORIG_ADDR(prep_elem);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000609 target_sn = PREP_IE_TARGET_SN(prep_elem);
610 orig_sn = PREP_IE_ORIG_SN(prep_elem);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100611
612 mesh_path_sel_frame_tx(MPATH_PREP, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000613 cpu_to_le32(orig_sn), 0, target_addr,
Porsch, Marco533866b2010-02-24 09:53:13 +0100614 cpu_to_le32(target_sn), next_hop, hopcount,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000615 ttl, cpu_to_le32(lifetime), cpu_to_le32(metric),
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200616 0, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100617 rcu_read_unlock();
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700618
619 sdata->u.mesh.mshstats.fwded_unicast++;
Johannes Berg472dbc42008-09-11 00:01:49 +0200620 sdata->u.mesh.mshstats.fwded_frames++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100621 return;
622
623fail:
624 rcu_read_unlock();
Johannes Berg472dbc42008-09-11 00:01:49 +0200625 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100626 return;
627}
628
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200629static void hwmp_perr_frame_process(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100630 struct ieee80211_mgmt *mgmt, u8 *perr_elem)
631{
Rui Paulod611f062009-11-09 23:46:50 +0000632 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100633 struct mesh_path *mpath;
Rui Paulod611f062009-11-09 23:46:50 +0000634 u8 ttl;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000635 u8 *ta, *target_addr;
636 u8 target_flags;
637 u32 target_sn;
638 u16 target_rcode;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100639
640 ta = mgmt->sa;
Rui Paulod611f062009-11-09 23:46:50 +0000641 ttl = PERR_IE_TTL(perr_elem);
642 if (ttl <= 1) {
643 ifmsh->mshstats.dropped_frames_ttl++;
644 return;
645 }
646 ttl--;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000647 target_flags = PERR_IE_TARGET_FLAGS(perr_elem);
648 target_addr = PERR_IE_TARGET_ADDR(perr_elem);
649 target_sn = PERR_IE_TARGET_SN(perr_elem);
650 target_rcode = PERR_IE_TARGET_RCODE(perr_elem);
Rui Paulod611f062009-11-09 23:46:50 +0000651
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100652 rcu_read_lock();
Rui Paulod19b3bf2009-11-09 23:46:55 +0000653 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100654 if (mpath) {
655 spin_lock_bh(&mpath->state_lock);
656 if (mpath->flags & MESH_PATH_ACTIVE &&
Johannes Berg17741cd2008-09-11 00:02:02 +0200657 memcmp(ta, mpath->next_hop->sta.addr, ETH_ALEN) == 0 &&
Rui Paulod19b3bf2009-11-09 23:46:55 +0000658 (!(mpath->flags & MESH_PATH_SN_VALID) ||
659 SN_GT(target_sn, mpath->sn))) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100660 mpath->flags &= ~MESH_PATH_ACTIVE;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000661 mpath->sn = target_sn;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100662 spin_unlock_bh(&mpath->state_lock);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000663 mesh_path_error_tx(ttl, target_addr, cpu_to_le32(target_sn),
664 cpu_to_le16(target_rcode),
Johannes Berg15ff6362009-11-17 13:34:04 +0100665 broadcast_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100666 } else
667 spin_unlock_bh(&mpath->state_lock);
668 }
669 rcu_read_unlock();
670}
671
Rui Paulo90a5e162009-11-11 00:01:31 +0000672static void hwmp_rann_frame_process(struct ieee80211_sub_if_data *sdata,
673 struct ieee80211_mgmt *mgmt,
674 struct ieee80211_rann_ie *rann)
675{
676 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
677 struct mesh_path *mpath;
678 u8 *ta;
679 u8 ttl, flags, hopcount;
680 u8 *orig_addr;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000681 u32 orig_sn, metric;
Rui Paulo90a5e162009-11-11 00:01:31 +0000682
683 ta = mgmt->sa;
684 ttl = rann->rann_ttl;
685 if (ttl <= 1) {
686 ifmsh->mshstats.dropped_frames_ttl++;
687 return;
688 }
689 ttl--;
690 flags = rann->rann_flags;
691 orig_addr = rann->rann_addr;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000692 orig_sn = rann->rann_seq;
Rui Paulo90a5e162009-11-11 00:01:31 +0000693 hopcount = rann->rann_hopcount;
Rui Pauloa6a58b42009-11-09 23:46:51 +0000694 hopcount++;
Rui Paulo90a5e162009-11-11 00:01:31 +0000695 metric = rann->rann_metric;
696 mhwmp_dbg("received RANN from %pM\n", orig_addr);
697
698 rcu_read_lock();
699 mpath = mesh_path_lookup(orig_addr, sdata);
700 if (!mpath) {
701 mesh_path_add(orig_addr, sdata);
702 mpath = mesh_path_lookup(orig_addr, sdata);
703 if (!mpath) {
704 rcu_read_unlock();
705 sdata->u.mesh.mshstats.dropped_frames_no_route++;
706 return;
707 }
708 mesh_queue_preq(mpath,
709 PREQ_Q_F_START | PREQ_Q_F_REFRESH);
710 }
Rui Paulod19b3bf2009-11-09 23:46:55 +0000711 if (mpath->sn < orig_sn) {
Rui Paulo90a5e162009-11-11 00:01:31 +0000712 mesh_path_sel_frame_tx(MPATH_RANN, flags, orig_addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000713 cpu_to_le32(orig_sn),
Johannes Berg15ff6362009-11-17 13:34:04 +0100714 0, NULL, 0, broadcast_addr,
Rui Pauloa6a58b42009-11-09 23:46:51 +0000715 hopcount, ttl, 0,
716 cpu_to_le32(metric + mpath->metric),
Rui Paulo90a5e162009-11-11 00:01:31 +0000717 0, sdata);
Rui Paulod19b3bf2009-11-09 23:46:55 +0000718 mpath->sn = orig_sn;
Rui Paulo90a5e162009-11-11 00:01:31 +0000719 }
720 rcu_read_unlock();
721}
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100722
723
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200724void mesh_rx_path_sel_frame(struct ieee80211_sub_if_data *sdata,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100725 struct ieee80211_mgmt *mgmt,
726 size_t len)
727{
728 struct ieee802_11_elems elems;
729 size_t baselen;
730 u32 last_hop_metric;
731
Johannes Berg9c80d3d2008-09-08 15:41:59 +0200732 /* need action_code */
733 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
734 return;
735
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100736 baselen = (u8 *) mgmt->u.action.u.mesh_action.variable - (u8 *) mgmt;
737 ieee802_11_parse_elems(mgmt->u.action.u.mesh_action.variable,
738 len - baselen, &elems);
739
Rui Paulodbb81c42009-11-09 23:46:46 +0000740 if (elems.preq) {
741 if (elems.preq_len != 37)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100742 /* Right now we support just 1 destination and no AE */
743 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000744 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.preq,
745 MPATH_PREQ);
746 if (last_hop_metric)
747 hwmp_preq_frame_process(sdata, mgmt, elems.preq,
748 last_hop_metric);
749 }
750 if (elems.prep) {
751 if (elems.prep_len != 31)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100752 /* Right now we support no AE */
753 return;
Rui Paulodbb81c42009-11-09 23:46:46 +0000754 last_hop_metric = hwmp_route_info_get(sdata, mgmt, elems.prep,
755 MPATH_PREP);
756 if (last_hop_metric)
757 hwmp_prep_frame_process(sdata, mgmt, elems.prep,
758 last_hop_metric);
759 }
760 if (elems.perr) {
Rui Paulod611f062009-11-09 23:46:50 +0000761 if (elems.perr_len != 15)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100762 /* Right now we support only one destination per PERR */
763 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200764 hwmp_perr_frame_process(sdata, mgmt, elems.perr);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100765 }
Rui Paulo90a5e162009-11-11 00:01:31 +0000766 if (elems.rann)
767 hwmp_rann_frame_process(sdata, mgmt, elems.rann);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100768}
769
770/**
771 * mesh_queue_preq - queue a PREQ to a given destination
772 *
773 * @mpath: mesh path to discover
774 * @flags: special attributes of the PREQ to be sent
775 *
776 * Locking: the function must be called from within a rcu read lock block.
777 *
778 */
779static void mesh_queue_preq(struct mesh_path *mpath, u8 flags)
780{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200781 struct ieee80211_sub_if_data *sdata = mpath->sdata;
Johannes Berg472dbc42008-09-11 00:01:49 +0200782 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100783 struct mesh_preq_queue *preq_node;
784
Andrey Yurovsky59615b52009-06-25 16:07:42 -0700785 preq_node = kmalloc(sizeof(struct mesh_preq_queue), GFP_ATOMIC);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100786 if (!preq_node) {
Rui Paulo27db2e42009-11-09 23:46:45 +0000787 mhwmp_dbg("could not allocate PREQ node\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100788 return;
789 }
790
Johannes Berg472dbc42008-09-11 00:01:49 +0200791 spin_lock(&ifmsh->mesh_preq_queue_lock);
792 if (ifmsh->preq_queue_len == MAX_PREQ_QUEUE_LEN) {
793 spin_unlock(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100794 kfree(preq_node);
795 if (printk_ratelimit())
Rui Paulo27db2e42009-11-09 23:46:45 +0000796 mhwmp_dbg("PREQ node queue full\n");
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100797 return;
798 }
799
800 memcpy(preq_node->dst, mpath->dst, ETH_ALEN);
801 preq_node->flags = flags;
802
Johannes Berg472dbc42008-09-11 00:01:49 +0200803 list_add_tail(&preq_node->list, &ifmsh->preq_queue.list);
804 ++ifmsh->preq_queue_len;
805 spin_unlock(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100806
Johannes Berg472dbc42008-09-11 00:01:49 +0200807 if (time_after(jiffies, ifmsh->last_preq + min_preq_int_jiff(sdata)))
Luis R. Rodriguezc03e20f2009-08-04 15:06:26 -0700808 ieee80211_queue_work(&sdata->local->hw, &ifmsh->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100809
Johannes Berg472dbc42008-09-11 00:01:49 +0200810 else if (time_before(jiffies, ifmsh->last_preq)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100811 /* avoid long wait if did not send preqs for a long time
812 * and jiffies wrapped around
813 */
Johannes Berg472dbc42008-09-11 00:01:49 +0200814 ifmsh->last_preq = jiffies - min_preq_int_jiff(sdata) - 1;
Luis R. Rodriguezc03e20f2009-08-04 15:06:26 -0700815 ieee80211_queue_work(&sdata->local->hw, &ifmsh->work);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100816 } else
Johannes Berg472dbc42008-09-11 00:01:49 +0200817 mod_timer(&ifmsh->mesh_path_timer, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100818 min_preq_int_jiff(sdata));
819}
820
821/**
822 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
823 *
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200824 * @sdata: local mesh subif
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100825 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200826void mesh_path_start_discovery(struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100827{
Johannes Berg472dbc42008-09-11 00:01:49 +0200828 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100829 struct mesh_preq_queue *preq_node;
830 struct mesh_path *mpath;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000831 u8 ttl, target_flags;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100832 u32 lifetime;
833
Johannes Berga43816d2009-07-10 11:39:26 +0200834 spin_lock_bh(&ifmsh->mesh_preq_queue_lock);
Johannes Berg472dbc42008-09-11 00:01:49 +0200835 if (!ifmsh->preq_queue_len ||
836 time_before(jiffies, ifmsh->last_preq +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100837 min_preq_int_jiff(sdata))) {
Johannes Berga43816d2009-07-10 11:39:26 +0200838 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100839 return;
840 }
841
Johannes Berg472dbc42008-09-11 00:01:49 +0200842 preq_node = list_first_entry(&ifmsh->preq_queue.list,
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100843 struct mesh_preq_queue, list);
844 list_del(&preq_node->list);
Johannes Berg472dbc42008-09-11 00:01:49 +0200845 --ifmsh->preq_queue_len;
Johannes Berga43816d2009-07-10 11:39:26 +0200846 spin_unlock_bh(&ifmsh->mesh_preq_queue_lock);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100847
848 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200849 mpath = mesh_path_lookup(preq_node->dst, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100850 if (!mpath)
851 goto enddiscovery;
852
853 spin_lock_bh(&mpath->state_lock);
854 if (preq_node->flags & PREQ_Q_F_START) {
855 if (mpath->flags & MESH_PATH_RESOLVING) {
856 spin_unlock_bh(&mpath->state_lock);
857 goto enddiscovery;
858 } else {
859 mpath->flags &= ~MESH_PATH_RESOLVED;
860 mpath->flags |= MESH_PATH_RESOLVING;
861 mpath->discovery_retries = 0;
862 mpath->discovery_timeout = disc_timeout_jiff(sdata);
863 }
864 } else if (!(mpath->flags & MESH_PATH_RESOLVING) ||
865 mpath->flags & MESH_PATH_RESOLVED) {
866 mpath->flags &= ~MESH_PATH_RESOLVING;
867 spin_unlock_bh(&mpath->state_lock);
868 goto enddiscovery;
869 }
870
Johannes Berg472dbc42008-09-11 00:01:49 +0200871 ifmsh->last_preq = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100872
Rui Paulod19b3bf2009-11-09 23:46:55 +0000873 if (time_after(jiffies, ifmsh->last_sn_update +
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100874 net_traversal_jiffies(sdata)) ||
Rui Paulod19b3bf2009-11-09 23:46:55 +0000875 time_before(jiffies, ifmsh->last_sn_update)) {
876 ++ifmsh->sn;
877 sdata->u.mesh.last_sn_update = jiffies;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100878 }
879 lifetime = default_lifetime(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +0200880 ttl = sdata->u.mesh.mshcfg.dot11MeshTTL;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100881 if (ttl == 0) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200882 sdata->u.mesh.mshstats.dropped_frames_ttl++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100883 spin_unlock_bh(&mpath->state_lock);
884 goto enddiscovery;
885 }
886
887 if (preq_node->flags & PREQ_Q_F_REFRESH)
Rui Paulod19b3bf2009-11-09 23:46:55 +0000888 target_flags = MP_F_DO;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100889 else
Rui Paulod19b3bf2009-11-09 23:46:55 +0000890 target_flags = MP_F_RF;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100891
892 spin_unlock_bh(&mpath->state_lock);
Johannes Berg47846c92009-11-25 17:46:19 +0100893 mesh_path_sel_frame_tx(MPATH_PREQ, 0, sdata->vif.addr,
Rui Paulod19b3bf2009-11-09 23:46:55 +0000894 cpu_to_le32(ifmsh->sn), target_flags, mpath->dst,
Johannes Berg15ff6362009-11-17 13:34:04 +0100895 cpu_to_le32(mpath->sn), broadcast_addr, 0,
Luis Carlos Coboaa2b5922008-02-29 14:30:32 -0800896 ttl, cpu_to_le32(lifetime), 0,
Johannes Berg472dbc42008-09-11 00:01:49 +0200897 cpu_to_le32(ifmsh->preq_id++), sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100898 mod_timer(&mpath->timer, jiffies + mpath->discovery_timeout);
899
900enddiscovery:
901 rcu_read_unlock();
902 kfree(preq_node);
903}
904
905/**
Rami Rosen2182b832009-01-19 13:50:37 +0200906 * mesh_nexthop_lookup - put the appropriate next hop on a mesh frame
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100907 *
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +0200908 * @skb: 802.11 frame to be sent
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200909 * @sdata: network subif the frame will be sent through
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100910 *
911 * Returns: 0 if the next hop was found. Nonzero otherwise. If no next hop is
912 * found, the function will start a path discovery and queue the frame so it is
913 * sent when the path is resolved. This means the caller must not free the skb
914 * in this case.
915 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200916int mesh_nexthop_lookup(struct sk_buff *skb,
917 struct ieee80211_sub_if_data *sdata)
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100918{
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100919 struct sk_buff *skb_to_free = NULL;
920 struct mesh_path *mpath;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +0200921 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Rui Paulod19b3bf2009-11-09 23:46:55 +0000922 u8 *target_addr = hdr->addr3;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100923 int err = 0;
924
925 rcu_read_lock();
Rui Paulod19b3bf2009-11-09 23:46:55 +0000926 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100927
928 if (!mpath) {
Rui Paulod19b3bf2009-11-09 23:46:55 +0000929 mesh_path_add(target_addr, sdata);
930 mpath = mesh_path_lookup(target_addr, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100931 if (!mpath) {
Johannes Berg472dbc42008-09-11 00:01:49 +0200932 sdata->u.mesh.mshstats.dropped_frames_no_route++;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100933 err = -ENOSPC;
934 goto endlookup;
935 }
936 }
937
938 if (mpath->flags & MESH_PATH_ACTIVE) {
Joe Perchesf64f9e72009-11-29 16:55:45 -0800939 if (time_after(jiffies,
Javier Cardona7b324d22009-12-09 18:43:01 -0800940 mpath->exp_time -
Joe Perchesf64f9e72009-11-29 16:55:45 -0800941 msecs_to_jiffies(sdata->u.mesh.mshcfg.path_refresh_time)) &&
Johannes Berg47846c92009-11-25 17:46:19 +0100942 !memcmp(sdata->vif.addr, hdr->addr4, ETH_ALEN) &&
Joe Perchesf64f9e72009-11-29 16:55:45 -0800943 !(mpath->flags & MESH_PATH_RESOLVING) &&
944 !(mpath->flags & MESH_PATH_FIXED)) {
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100945 mesh_queue_preq(mpath,
946 PREQ_Q_F_START | PREQ_Q_F_REFRESH);
947 }
Joe Perchesf64f9e72009-11-29 16:55:45 -0800948 memcpy(hdr->addr1, mpath->next_hop->sta.addr, ETH_ALEN);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100949 } else {
Javier Cardona249b4052009-07-07 10:55:03 -0700950 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100951 if (!(mpath->flags & MESH_PATH_RESOLVING)) {
952 /* Start discovery only if it is not running yet */
953 mesh_queue_preq(mpath, PREQ_Q_F_START);
954 }
955
956 if (skb_queue_len(&mpath->frame_queue) >=
Javier Cardonafe583432009-08-10 12:15:46 -0700957 MESH_FRAME_QUEUE_LEN)
958 skb_to_free = skb_dequeue(&mpath->frame_queue);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100959
Javier Cardona249b4052009-07-07 10:55:03 -0700960 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100961 skb_queue_tail(&mpath->frame_queue, skb);
962 if (skb_to_free)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200963 mesh_path_discard_frame(skb_to_free, sdata);
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100964 err = -ENOENT;
965 }
966
967endlookup:
968 rcu_read_unlock();
969 return err;
970}
971
972void mesh_path_timer(unsigned long data)
973{
974 struct ieee80211_sub_if_data *sdata;
975 struct mesh_path *mpath;
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100976
977 rcu_read_lock();
978 mpath = (struct mesh_path *) data;
979 mpath = rcu_dereference(mpath);
980 if (!mpath)
981 goto endmpathtimer;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200982 sdata = mpath->sdata;
Johannes Berg5bb644a2009-05-17 11:40:42 +0200983
984 if (sdata->local->quiescing) {
985 rcu_read_unlock();
986 return;
987 }
988
989 spin_lock_bh(&mpath->state_lock);
Luis Carlos Cobocfa22c72008-02-29 15:04:13 -0800990 if (mpath->flags & MESH_PATH_RESOLVED ||
Luis Carlos Cobo050ac522008-02-23 15:17:15 +0100991 (!(mpath->flags & MESH_PATH_RESOLVING)))
992 mpath->flags &= ~(MESH_PATH_RESOLVING | MESH_PATH_RESOLVED);
993 else if (mpath->discovery_retries < max_preq_retries(sdata)) {
994 ++mpath->discovery_retries;
995 mpath->discovery_timeout *= 2;
996 mesh_queue_preq(mpath, 0);
997 } else {
998 mpath->flags = 0;
999 mpath->exp_time = jiffies;
1000 mesh_path_flush_pending(mpath);
1001 }
1002
1003 spin_unlock_bh(&mpath->state_lock);
1004endmpathtimer:
1005 rcu_read_unlock();
Luis Carlos Cobo050ac522008-02-23 15:17:15 +01001006}
Rui Pauloe304bfd2009-11-09 23:46:56 +00001007
1008void
1009mesh_path_tx_root_frame(struct ieee80211_sub_if_data *sdata)
1010{
1011 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
1012
Johannes Berg47846c92009-11-25 17:46:19 +01001013 mesh_path_sel_frame_tx(MPATH_RANN, 0, sdata->vif.addr,
Rui Pauloe304bfd2009-11-09 23:46:56 +00001014 cpu_to_le32(++ifmsh->sn),
Johannes Berg15ff6362009-11-17 13:34:04 +01001015 0, NULL, 0, broadcast_addr,
Rui Pauloe304bfd2009-11-09 23:46:56 +00001016 0, MESH_TTL, 0, 0, 0, sdata);
1017}