2 * Copyright (c) 2008 open80211s Ltd.
3 * Author: Luis Carlos Cobo <luisca@cozybit.com>
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.
12 #define TEST_FRAME_LEN 8192
13 #define MAX_METRIC 0xffffffff
16 /* Number of frames buffered per destination for unresolved destinations */
17 #define MESH_FRAME_QUEUE_LEN 10
18 #define MAX_PREQ_QUEUE_LEN 64
20 /* Destination only */
22 /* Reply and forward */
25 static inline u32 u32_field_get(u8 *preq_elem, int offset, bool ae)
29 return get_unaligned_le32(preq_elem + offset);
32 /* HWMP IE processing macros */
34 #define AE_F_SET(x) (*x & AE_F)
35 #define PREQ_IE_FLAGS(x) (*(x))
36 #define PREQ_IE_HOPCOUNT(x) (*(x + 1))
37 #define PREQ_IE_TTL(x) (*(x + 2))
38 #define PREQ_IE_PREQ_ID(x) u32_field_get(x, 3, 0)
39 #define PREQ_IE_ORIG_ADDR(x) (x + 7)
40 #define PREQ_IE_ORIG_DSN(x) u32_field_get(x, 13, 0);
41 #define PREQ_IE_LIFETIME(x) u32_field_get(x, 17, AE_F_SET(x));
42 #define PREQ_IE_METRIC(x) u32_field_get(x, 21, AE_F_SET(x));
43 #define PREQ_IE_DST_F(x) (*(AE_F_SET(x) ? x + 32 : x + 26))
44 #define PREQ_IE_DST_ADDR(x) (AE_F_SET(x) ? x + 33 : x + 27)
45 #define PREQ_IE_DST_DSN(x) u32_field_get(x, 33, AE_F_SET(x));
48 #define PREP_IE_FLAGS(x) PREQ_IE_FLAGS(x)
49 #define PREP_IE_HOPCOUNT(x) PREQ_IE_HOPCOUNT(x)
50 #define PREP_IE_TTL(x) PREQ_IE_TTL(x)
51 #define PREP_IE_ORIG_ADDR(x) (x + 3)
52 #define PREP_IE_ORIG_DSN(x) u32_field_get(x, 9, 0);
53 #define PREP_IE_LIFETIME(x) u32_field_get(x, 13, AE_F_SET(x));
54 #define PREP_IE_METRIC(x) u32_field_get(x, 17, AE_F_SET(x));
55 #define PREP_IE_DST_ADDR(x) (AE_F_SET(x) ? x + 27 : x + 21)
56 #define PREP_IE_DST_DSN(x) u32_field_get(x, 27, AE_F_SET(x));
58 #define PERR_IE_DST_ADDR(x) (x + 2)
59 #define PERR_IE_DST_DSN(x) u32_field_get(x, 8, 0);
61 #define TU_TO_EXP_TIME(x) (jiffies + msecs_to_jiffies(x * 1024 / 1000))
62 #define MSEC_TO_TU(x) (x*1000/1024)
63 #define DSN_GT(x, y) ((long) (y) - (long) (x) < 0)
64 #define DSN_LT(x, y) ((long) (x) - (long) (y) < 0)
66 #define net_traversal_jiffies(s) \
67 msecs_to_jiffies(s->u.sta.mshcfg.dot11MeshHWMPnetDiameterTraversalTime)
68 #define default_lifetime(s) \
69 MSEC_TO_TU(s->u.sta.mshcfg.dot11MeshHWMPactivePathTimeout)
70 #define min_preq_int_jiff(s) \
71 (msecs_to_jiffies(s->u.sta.mshcfg.dot11MeshHWMPpreqMinInterval))
72 #define max_preq_retries(s) (s->u.sta.mshcfg.dot11MeshHWMPmaxPREQretries)
73 #define disc_timeout_jiff(s) \
74 msecs_to_jiffies(sdata->u.sta.mshcfg.min_discovery_timeout)
76 enum mpath_frame_type {
82 static int mesh_path_sel_frame_tx(enum mpath_frame_type action, u8 flags,
83 u8 *orig_addr, __le32 orig_dsn, u8 dst_flags, u8 *dst,
84 __le32 dst_dsn, u8 *da, u8 hop_count, u8 ttl, __le32 lifetime,
85 __le32 metric, __le32 preq_id, struct net_device *dev)
87 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
88 struct sk_buff *skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
89 struct ieee80211_mgmt *mgmt;
95 skb_reserve(skb, local->hw.extra_tx_headroom);
96 /* 25 is the size of the common mgmt part (24) plus the size of the
97 * common action part (1)
99 mgmt = (struct ieee80211_mgmt *)
100 skb_put(skb, 25 + sizeof(mgmt->u.action.u.mesh_action));
101 memset(mgmt, 0, 25 + sizeof(mgmt->u.action.u.mesh_action));
102 mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT,
103 IEEE80211_STYPE_ACTION);
105 memcpy(mgmt->da, da, ETH_ALEN);
106 memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN);
107 /* BSSID is left zeroed, wildcard value */
108 mgmt->u.action.category = MESH_PATH_SEL_CATEGORY;
109 mgmt->u.action.u.mesh_action.action_code = action;
114 pos = skb_put(skb, 2 + ie_len);
115 *pos++ = WLAN_EID_PREQ;
119 pos = skb_put(skb, 2 + ie_len);
120 *pos++ = WLAN_EID_PREP;
131 if (action == MPATH_PREQ) {
132 memcpy(pos, &preq_id, 4);
135 memcpy(pos, orig_addr, ETH_ALEN);
137 memcpy(pos, &orig_dsn, 4);
139 memcpy(pos, &lifetime, 4);
141 memcpy(pos, &metric, 4);
143 if (action == MPATH_PREQ) {
144 /* destination count */
148 memcpy(pos, dst, ETH_ALEN);
150 memcpy(pos, &dst_dsn, 4);
152 ieee80211_sta_tx(dev, skb, 0);
157 * mesh_send_path error - Sends a PERR mesh management frame
159 * @dst: broken destination
160 * @dst_dsn: dsn of the broken destination
161 * @ra: node this frame is addressed to
163 int mesh_path_error_tx(u8 *dst, __le32 dst_dsn, u8 *ra,
164 struct net_device *dev)
166 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
167 struct sk_buff *skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
168 struct ieee80211_mgmt *mgmt;
174 skb_reserve(skb, local->hw.extra_tx_headroom);
175 /* 25 is the size of the common mgmt part (24) plus the size of the
176 * common action part (1)
178 mgmt = (struct ieee80211_mgmt *)
179 skb_put(skb, 25 + sizeof(mgmt->u.action.u.mesh_action));
180 memset(mgmt, 0, 25 + sizeof(mgmt->u.action.u.mesh_action));
181 mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT,
182 IEEE80211_STYPE_ACTION);
184 memcpy(mgmt->da, ra, ETH_ALEN);
185 memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN);
186 /* BSSID is left zeroed, wildcard value */
187 mgmt->u.action.category = MESH_PATH_SEL_CATEGORY;
188 mgmt->u.action.u.mesh_action.action_code = MPATH_PERR;
190 pos = skb_put(skb, 2 + ie_len);
191 *pos++ = WLAN_EID_PERR;
193 /* mode flags, reserved */
195 /* number of destinations */
197 memcpy(pos, dst, ETH_ALEN);
199 memcpy(pos, &dst_dsn, 4);
201 ieee80211_sta_tx(dev, skb, 0);
205 static u32 airtime_link_metric_get(struct ieee80211_local *local,
206 struct sta_info *sta)
208 struct ieee80211_supported_band *sband;
209 /* This should be adjusted for each device */
210 int device_constant = 1 << ARITH_SHIFT;
211 int test_frame_len = TEST_FRAME_LEN << ARITH_SHIFT;
212 int s_unit = 1 << ARITH_SHIFT;
214 u32 tx_time, estimated_retx;
217 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
219 if (sta->fail_avg >= 100)
221 err = (sta->fail_avg << ARITH_SHIFT) / 100;
223 /* bitrate is in units of 100 Kbps, while we need rate in units of
224 * 1Mbps. This will be corrected on tx_time computation.
226 rate = sband->bitrates[sta->txrate_idx].bitrate;
227 tx_time = (device_constant + 10 * test_frame_len / rate);
228 estimated_retx = ((1 << (2 * ARITH_SHIFT)) / (s_unit - err));
229 result = (tx_time * estimated_retx) >> (2 * ARITH_SHIFT) ;
234 * hwmp_route_info_get - Update routing info to originator and transmitter
236 * @dev: local mesh interface
237 * @mgmt: mesh management frame
238 * @hwmp_ie: hwmp information element (PREP or PREQ)
240 * This function updates the path routing information to the originator and the
241 * transmitter of a HWMP PREQ or PREP fram.
243 * Returns: metric to frame originator or 0 if the frame should not be further
246 * Notes: this function is the only place (besides user-provided info) where
247 * path routing information is updated.
249 static u32 hwmp_route_info_get(struct net_device *dev,
250 struct ieee80211_mgmt *mgmt,
253 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
254 struct mesh_path *mpath;
255 struct sta_info *sta;
258 u32 orig_dsn, orig_metric;
259 unsigned long orig_lifetime, exp_time;
260 u32 last_hop_metric, new_metric;
262 u8 action = mgmt->u.action.u.mesh_action.action_code;
265 sta = sta_info_get(local, mgmt->sa);
271 last_hop_metric = airtime_link_metric_get(local, sta);
272 /* Update and check originator routing info */
277 orig_addr = PREQ_IE_ORIG_ADDR(hwmp_ie);
278 orig_dsn = PREQ_IE_ORIG_DSN(hwmp_ie);
279 orig_lifetime = PREQ_IE_LIFETIME(hwmp_ie);
280 orig_metric = PREQ_IE_METRIC(hwmp_ie);
283 /* Originator here refers to the MP that was the destination in
284 * the Path Request. The draft refers to that MP as the
285 * destination address, even though usually it is the origin of
286 * the PREP frame. We divert from the nomenclature in the draft
287 * so that we can easily use a single function to gather path
288 * information from both PREQ and PREP frames.
290 orig_addr = PREP_IE_ORIG_ADDR(hwmp_ie);
291 orig_dsn = PREP_IE_ORIG_DSN(hwmp_ie);
292 orig_lifetime = PREP_IE_LIFETIME(hwmp_ie);
293 orig_metric = PREP_IE_METRIC(hwmp_ie);
299 new_metric = orig_metric + last_hop_metric;
300 if (new_metric < orig_metric)
301 new_metric = MAX_METRIC;
302 exp_time = TU_TO_EXP_TIME(orig_lifetime);
304 if (memcmp(orig_addr, dev->dev_addr, ETH_ALEN) == 0) {
305 /* This MP is the originator, we are not interested in this
306 * frame, except for updating transmitter's path info.
311 mpath = mesh_path_lookup(orig_addr, dev);
313 spin_lock_bh(&mpath->state_lock);
314 if (mpath->flags & MESH_PATH_FIXED)
316 else if ((mpath->flags & MESH_PATH_ACTIVE) &&
317 (mpath->flags & MESH_PATH_DSN_VALID)) {
318 if (DSN_GT(mpath->dsn, orig_dsn) ||
319 (mpath->dsn == orig_dsn &&
320 action == MPATH_PREQ &&
321 new_metric > mpath->metric)) {
327 mesh_path_add(orig_addr, dev);
328 mpath = mesh_path_lookup(orig_addr, dev);
333 spin_lock_bh(&mpath->state_lock);
337 mesh_path_assign_nexthop(mpath, sta);
338 mpath->flags |= MESH_PATH_DSN_VALID;
339 mpath->metric = new_metric;
340 mpath->dsn = orig_dsn;
341 mpath->exp_time = time_after(mpath->exp_time, exp_time)
342 ? mpath->exp_time : exp_time;
343 mesh_path_activate(mpath);
344 spin_unlock_bh(&mpath->state_lock);
345 mesh_path_tx_pending(mpath);
346 /* draft says preq_id should be saved to, but there does
347 * not seem to be any use for it, skipping by now
350 spin_unlock_bh(&mpath->state_lock);
353 /* Update and check transmitter routing info */
355 if (memcmp(orig_addr, ta, ETH_ALEN) == 0)
360 mpath = mesh_path_lookup(ta, dev);
362 spin_lock_bh(&mpath->state_lock);
363 if ((mpath->flags & MESH_PATH_FIXED) ||
364 ((mpath->flags & MESH_PATH_ACTIVE) &&
365 (last_hop_metric > mpath->metric)))
368 mesh_path_add(ta, dev);
369 mpath = mesh_path_lookup(ta, dev);
374 spin_lock_bh(&mpath->state_lock);
378 mesh_path_assign_nexthop(mpath, sta);
379 mpath->flags &= ~MESH_PATH_DSN_VALID;
380 mpath->metric = last_hop_metric;
381 mpath->exp_time = time_after(mpath->exp_time, exp_time)
382 ? mpath->exp_time : exp_time;
383 mesh_path_activate(mpath);
384 spin_unlock_bh(&mpath->state_lock);
385 mesh_path_tx_pending(mpath);
387 spin_unlock_bh(&mpath->state_lock);
392 return process ? new_metric : 0;
395 static void hwmp_preq_frame_process(struct net_device *dev,
396 struct ieee80211_mgmt *mgmt,
397 u8 *preq_elem, u32 metric) {
398 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
399 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
400 struct mesh_path *mpath;
401 u8 *dst_addr, *orig_addr;
403 u32 orig_dsn, dst_dsn, lifetime;
407 /* Update destination DSN, if present */
408 dst_addr = PREQ_IE_DST_ADDR(preq_elem);
409 orig_addr = PREQ_IE_ORIG_ADDR(preq_elem);
410 dst_dsn = PREQ_IE_DST_DSN(preq_elem);
411 orig_dsn = PREQ_IE_ORIG_DSN(preq_elem);
412 dst_flags = PREQ_IE_DST_F(preq_elem);
414 if (memcmp(dst_addr, dev->dev_addr, ETH_ALEN) == 0) {
418 if (time_after(jiffies, ifsta->last_dsn_update +
419 net_traversal_jiffies(sdata)) ||
420 time_before(jiffies, ifsta->last_dsn_update)) {
421 dst_dsn = ++ifsta->dsn;
422 ifsta->last_dsn_update = jiffies;
426 mpath = mesh_path_lookup(dst_addr, dev);
428 if ((!(mpath->flags & MESH_PATH_DSN_VALID)) ||
429 DSN_LT(mpath->dsn, dst_dsn)) {
430 mpath->dsn = dst_dsn;
431 mpath->flags &= MESH_PATH_DSN_VALID;
432 } else if ((!(dst_flags & MP_F_DO)) &&
433 (mpath->flags & MESH_PATH_ACTIVE)) {
435 metric = mpath->metric;
436 dst_dsn = mpath->dsn;
437 if (dst_flags & MP_F_RF)
438 dst_flags |= MP_F_DO;
447 lifetime = PREQ_IE_LIFETIME(preq_elem);
448 ttl = ifsta->mshcfg.dot11MeshTTL;
450 mesh_path_sel_frame_tx(MPATH_PREP, 0, dst_addr,
451 cpu_to_le32(dst_dsn), 0, orig_addr,
452 cpu_to_le32(orig_dsn), mgmt->sa, 0, ttl,
453 cpu_to_le32(lifetime), cpu_to_le32(metric),
456 ifsta->mshstats.dropped_frames_ttl++;
463 ttl = PREQ_IE_TTL(preq_elem);
464 lifetime = PREQ_IE_LIFETIME(preq_elem);
466 ifsta->mshstats.dropped_frames_ttl++;
470 flags = PREQ_IE_FLAGS(preq_elem);
471 preq_id = PREQ_IE_PREQ_ID(preq_elem);
472 hopcount = PREQ_IE_HOPCOUNT(preq_elem) + 1;
473 mesh_path_sel_frame_tx(MPATH_PREQ, flags, orig_addr,
474 cpu_to_le32(orig_dsn), dst_flags, dst_addr,
475 cpu_to_le32(dst_dsn), dev->broadcast,
476 hopcount, ttl, cpu_to_le32(lifetime),
477 cpu_to_le32(metric), cpu_to_le32(preq_id),
479 ifsta->mshstats.fwded_frames++;
484 static void hwmp_prep_frame_process(struct net_device *dev,
485 struct ieee80211_mgmt *mgmt,
486 u8 *prep_elem, u32 metric)
488 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
489 struct mesh_path *mpath;
490 u8 *dst_addr, *orig_addr;
491 u8 ttl, hopcount, flags;
492 u8 next_hop[ETH_ALEN];
493 u32 dst_dsn, orig_dsn, lifetime;
495 /* Note that we divert from the draft nomenclature and denominate
496 * destination to what the draft refers to as origininator. So in this
497 * function destnation refers to the final destination of the PREP,
498 * which corresponds with the originator of the PREQ which this PREP
501 dst_addr = PREP_IE_DST_ADDR(prep_elem);
502 if (memcmp(dst_addr, dev->dev_addr, ETH_ALEN) == 0)
503 /* destination, no forwarding required */
506 ttl = PREP_IE_TTL(prep_elem);
508 sdata->u.sta.mshstats.dropped_frames_ttl++;
513 mpath = mesh_path_lookup(dst_addr, dev);
515 spin_lock_bh(&mpath->state_lock);
518 if (!(mpath->flags & MESH_PATH_ACTIVE)) {
519 spin_unlock_bh(&mpath->state_lock);
522 memcpy(next_hop, mpath->next_hop->addr, ETH_ALEN);
523 spin_unlock_bh(&mpath->state_lock);
525 flags = PREP_IE_FLAGS(prep_elem);
526 lifetime = PREP_IE_LIFETIME(prep_elem);
527 hopcount = PREP_IE_HOPCOUNT(prep_elem) + 1;
528 orig_addr = PREP_IE_ORIG_ADDR(prep_elem);
529 dst_dsn = PREP_IE_DST_DSN(prep_elem);
530 orig_dsn = PREP_IE_ORIG_DSN(prep_elem);
532 mesh_path_sel_frame_tx(MPATH_PREP, flags, orig_addr,
533 cpu_to_le32(orig_dsn), 0, dst_addr,
534 cpu_to_le32(dst_dsn), mpath->next_hop->addr, hopcount, ttl,
535 cpu_to_le32(lifetime), cpu_to_le32(metric),
538 sdata->u.sta.mshstats.fwded_frames++;
543 sdata->u.sta.mshstats.dropped_frames_no_route++;
547 static void hwmp_perr_frame_process(struct net_device *dev,
548 struct ieee80211_mgmt *mgmt, u8 *perr_elem)
550 struct mesh_path *mpath;
555 dst_addr = PERR_IE_DST_ADDR(perr_elem);
556 dst_dsn = PERR_IE_DST_DSN(perr_elem);
558 mpath = mesh_path_lookup(dst_addr, dev);
560 spin_lock_bh(&mpath->state_lock);
561 if (mpath->flags & MESH_PATH_ACTIVE &&
562 memcmp(ta, mpath->next_hop->addr, ETH_ALEN) == 0 &&
563 (!(mpath->flags & MESH_PATH_DSN_VALID) ||
564 DSN_GT(dst_dsn, mpath->dsn))) {
565 mpath->flags &= ~MESH_PATH_ACTIVE;
566 mpath->dsn = dst_dsn;
567 spin_unlock_bh(&mpath->state_lock);
568 mesh_path_error_tx(dst_addr, cpu_to_le32(dst_dsn),
569 dev->broadcast, dev);
571 spin_unlock_bh(&mpath->state_lock);
578 void mesh_rx_path_sel_frame(struct net_device *dev,
579 struct ieee80211_mgmt *mgmt,
582 struct ieee802_11_elems elems;
586 baselen = (u8 *) mgmt->u.action.u.mesh_action.variable - (u8 *) mgmt;
587 ieee802_11_parse_elems(mgmt->u.action.u.mesh_action.variable,
588 len - baselen, &elems);
590 switch (mgmt->u.action.u.mesh_action.action_code) {
592 if (!elems.preq || elems.preq_len != 37)
593 /* Right now we support just 1 destination and no AE */
595 last_hop_metric = hwmp_route_info_get(dev, mgmt, elems.preq);
596 if (!last_hop_metric)
598 hwmp_preq_frame_process(dev, mgmt, elems.preq, last_hop_metric);
601 if (!elems.prep || elems.prep_len != 31)
602 /* Right now we support no AE */
604 last_hop_metric = hwmp_route_info_get(dev, mgmt, elems.prep);
605 if (!last_hop_metric)
607 hwmp_prep_frame_process(dev, mgmt, elems.prep, last_hop_metric);
610 if (!elems.perr || elems.perr_len != 12)
611 /* Right now we support only one destination per PERR */
613 hwmp_perr_frame_process(dev, mgmt, elems.perr);
621 * mesh_queue_preq - queue a PREQ to a given destination
623 * @mpath: mesh path to discover
624 * @flags: special attributes of the PREQ to be sent
626 * Locking: the function must be called from within a rcu read lock block.
629 static void mesh_queue_preq(struct mesh_path *mpath, u8 flags)
631 struct ieee80211_sub_if_data *sdata =
632 IEEE80211_DEV_TO_SUB_IF(mpath->dev);
633 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
634 struct mesh_preq_queue *preq_node;
636 preq_node = kmalloc(sizeof(struct mesh_preq_queue), GFP_KERNEL);
638 printk(KERN_DEBUG "Mesh HWMP: could not allocate PREQ node\n");
642 spin_lock(&ifsta->mesh_preq_queue_lock);
643 if (ifsta->preq_queue_len == MAX_PREQ_QUEUE_LEN) {
644 spin_unlock(&ifsta->mesh_preq_queue_lock);
646 if (printk_ratelimit())
647 printk(KERN_DEBUG "Mesh HWMP: PREQ node queue full\n");
651 memcpy(preq_node->dst, mpath->dst, ETH_ALEN);
652 preq_node->flags = flags;
654 list_add_tail(&preq_node->list, &ifsta->preq_queue.list);
655 ++ifsta->preq_queue_len;
656 spin_unlock(&ifsta->mesh_preq_queue_lock);
658 if (time_after(jiffies, ifsta->last_preq + min_preq_int_jiff(sdata)))
659 queue_work(sdata->local->hw.workqueue, &ifsta->work);
661 else if (time_before(jiffies, ifsta->last_preq)) {
662 /* avoid long wait if did not send preqs for a long time
663 * and jiffies wrapped around
665 ifsta->last_preq = jiffies - min_preq_int_jiff(sdata) - 1;
666 queue_work(sdata->local->hw.workqueue, &ifsta->work);
668 mod_timer(&ifsta->mesh_path_timer, ifsta->last_preq +
669 min_preq_int_jiff(sdata));
673 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
675 * @dev: local mesh interface
677 void mesh_path_start_discovery(struct net_device *dev)
679 struct ieee80211_sub_if_data *sdata =
680 IEEE80211_DEV_TO_SUB_IF(dev);
681 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
682 struct mesh_preq_queue *preq_node;
683 struct mesh_path *mpath;
687 spin_lock(&ifsta->mesh_preq_queue_lock);
688 if (!ifsta->preq_queue_len ||
689 time_before(jiffies, ifsta->last_preq +
690 min_preq_int_jiff(sdata))) {
691 spin_unlock(&ifsta->mesh_preq_queue_lock);
695 preq_node = list_first_entry(&ifsta->preq_queue.list,
696 struct mesh_preq_queue, list);
697 list_del(&preq_node->list);
698 --ifsta->preq_queue_len;
699 spin_unlock(&ifsta->mesh_preq_queue_lock);
702 mpath = mesh_path_lookup(preq_node->dst, dev);
706 spin_lock_bh(&mpath->state_lock);
707 if (preq_node->flags & PREQ_Q_F_START) {
708 if (mpath->flags & MESH_PATH_RESOLVING) {
709 spin_unlock_bh(&mpath->state_lock);
712 mpath->flags &= ~MESH_PATH_RESOLVED;
713 mpath->flags |= MESH_PATH_RESOLVING;
714 mpath->discovery_retries = 0;
715 mpath->discovery_timeout = disc_timeout_jiff(sdata);
717 } else if (!(mpath->flags & MESH_PATH_RESOLVING) ||
718 mpath->flags & MESH_PATH_RESOLVED) {
719 mpath->flags &= ~MESH_PATH_RESOLVING;
720 spin_unlock_bh(&mpath->state_lock);
724 ifsta->last_preq = jiffies;
726 if (time_after(jiffies, ifsta->last_dsn_update +
727 net_traversal_jiffies(sdata)) ||
728 time_before(jiffies, ifsta->last_dsn_update)) {
730 sdata->u.sta.last_dsn_update = jiffies;
732 lifetime = default_lifetime(sdata);
733 ttl = sdata->u.sta.mshcfg.dot11MeshTTL;
735 sdata->u.sta.mshstats.dropped_frames_ttl++;
736 spin_unlock_bh(&mpath->state_lock);
740 if (preq_node->flags & PREQ_Q_F_REFRESH)
745 spin_unlock_bh(&mpath->state_lock);
746 mesh_path_sel_frame_tx(MPATH_PREQ, 0, dev->dev_addr,
747 cpu_to_le32(ifsta->dsn), dst_flags, mpath->dst,
748 cpu_to_le32(mpath->dsn), dev->broadcast, 0,
749 ttl, cpu_to_le32(lifetime), 0,
750 cpu_to_le32(ifsta->preq_id++), dev);
751 mod_timer(&mpath->timer, jiffies + mpath->discovery_timeout);
759 * ieee80211s_lookup_nexthop - put the appropriate next hop on a mesh frame
761 * @skb: 802.11 frame to be sent
762 * @dev: network device the frame will be sent through
763 * @fwd_frame: true if this frame was originally from a different host
765 * Returns: 0 if the next hop was found. Nonzero otherwise. If no next hop is
766 * found, the function will start a path discovery and queue the frame so it is
767 * sent when the path is resolved. This means the caller must not free the skb
770 int mesh_nexthop_lookup(struct sk_buff *skb, struct net_device *dev)
772 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
773 struct sk_buff *skb_to_free = NULL;
774 struct mesh_path *mpath;
775 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
776 u8 *dst_addr = hdr->addr3;
780 mpath = mesh_path_lookup(dst_addr, dev);
783 mesh_path_add(dst_addr, dev);
784 mpath = mesh_path_lookup(dst_addr, dev);
787 sdata->u.sta.mshstats.dropped_frames_no_route++;
793 if (mpath->flags & MESH_PATH_ACTIVE) {
794 if (time_after(jiffies, mpath->exp_time -
795 msecs_to_jiffies(sdata->u.sta.mshcfg.path_refresh_time))
796 && !memcmp(dev->dev_addr, hdr->addr4, ETH_ALEN)
797 && !(mpath->flags & MESH_PATH_RESOLVING)
798 && !(mpath->flags & MESH_PATH_FIXED)) {
799 mesh_queue_preq(mpath,
800 PREQ_Q_F_START | PREQ_Q_F_REFRESH);
802 memcpy(hdr->addr1, mpath->next_hop->addr,
805 if (!(mpath->flags & MESH_PATH_RESOLVING)) {
806 /* Start discovery only if it is not running yet */
807 mesh_queue_preq(mpath, PREQ_Q_F_START);
810 if (skb_queue_len(&mpath->frame_queue) >=
811 MESH_FRAME_QUEUE_LEN) {
812 skb_to_free = mpath->frame_queue.next;
813 skb_unlink(skb_to_free, &mpath->frame_queue);
816 skb_queue_tail(&mpath->frame_queue, skb);
818 mesh_path_discard_frame(skb_to_free, dev);
827 void mesh_path_timer(unsigned long data)
829 struct ieee80211_sub_if_data *sdata;
830 struct mesh_path *mpath;
833 mpath = (struct mesh_path *) data;
834 mpath = rcu_dereference(mpath);
837 spin_lock_bh(&mpath->state_lock);
838 sdata = IEEE80211_DEV_TO_SUB_IF(mpath->dev);
839 if (mpath->flags & MESH_PATH_RESOLVED ||
840 (!(mpath->flags & MESH_PATH_RESOLVING)))
841 mpath->flags &= ~(MESH_PATH_RESOLVING | MESH_PATH_RESOLVED);
842 else if (mpath->discovery_retries < max_preq_retries(sdata)) {
843 ++mpath->discovery_retries;
844 mpath->discovery_timeout *= 2;
845 mesh_queue_preq(mpath, 0);
848 mpath->exp_time = jiffies;
849 mesh_path_flush_pending(mpath);
852 spin_unlock_bh(&mpath->state_lock);