2 * Copyright (c) 2008, 2009 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.
10 #include <linux/slab.h>
11 #include <linux/etherdevice.h>
12 #include <asm/unaligned.h>
16 #define TEST_FRAME_LEN 8192
17 #define MAX_METRIC 0xffffffff
20 #define MAX_PREQ_QUEUE_LEN 64
22 /* Destination only */
24 /* Reply and forward */
26 /* Unknown Sequence Number */
28 /* Reason code Present */
29 #define MP_F_RCODE 0x02
31 static void mesh_queue_preq(struct mesh_path
*, u8
);
33 static inline u32
u32_field_get(const u8
*preq_elem
, int offset
, bool ae
)
37 return get_unaligned_le32(preq_elem
+ offset
);
40 static inline u32
u16_field_get(const u8
*preq_elem
, int offset
, bool ae
)
44 return get_unaligned_le16(preq_elem
+ offset
);
47 /* HWMP IE processing macros */
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)
55 #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))
58 #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)
60 #define PREQ_IE_TARGET_SN(x) u32_field_get(x, 33, AE_F_SET(x))
63 #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)
66 #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))
68 #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))
70 #define PREP_IE_TARGET_ADDR(x) (x + 3)
71 #define PREP_IE_TARGET_SN(x) u32_field_get(x, 9, 0)
73 #define PERR_IE_TTL(x) (*(x))
74 #define PERR_IE_TARGET_FLAGS(x) (*(x + 2))
75 #define PERR_IE_TARGET_ADDR(x) (x + 3)
76 #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)
79 #define MSEC_TO_TU(x) (x*1000/1024)
80 #define SN_GT(x, y) ((s32)(y - x) < 0)
81 #define SN_LT(x, y) ((s32)(x - y) < 0)
83 #define net_traversal_jiffies(s) \
84 msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime)
85 #define default_lifetime(s) \
86 MSEC_TO_TU(s->u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout)
87 #define min_preq_int_jiff(s) \
88 (msecs_to_jiffies(s->u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval))
89 #define max_preq_retries(s) (s->u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries)
90 #define disc_timeout_jiff(s) \
91 msecs_to_jiffies(sdata->u.mesh.mshcfg.min_discovery_timeout)
92 #define root_path_confirmation_jiffies(s) \
93 msecs_to_jiffies(sdata->u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval)
95 enum mpath_frame_type
{
102 static const u8 broadcast_addr
[ETH_ALEN
] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
104 static int mesh_path_sel_frame_tx(enum mpath_frame_type action
, u8 flags
,
105 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
,
111 struct ieee80211_sub_if_data
*sdata
)
113 struct ieee80211_local
*local
= sdata
->local
;
115 struct ieee80211_mgmt
*mgmt
;
117 int hdr_len
= offsetof(struct ieee80211_mgmt
, u
.action
.u
.mesh_action
) +
118 sizeof(mgmt
->u
.action
.u
.mesh_action
);
120 skb
= dev_alloc_skb(local
->tx_headroom
+
122 2 + 37); /* max HWMP IE */
125 skb_reserve(skb
, local
->tx_headroom
);
126 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, hdr_len
);
127 memset(mgmt
, 0, hdr_len
);
128 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
129 IEEE80211_STYPE_ACTION
);
131 memcpy(mgmt
->da
, da
, ETH_ALEN
);
132 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
134 memcpy(mgmt
->bssid
, sdata
->vif
.addr
, ETH_ALEN
);
135 mgmt
->u
.action
.category
= WLAN_CATEGORY_MESH_ACTION
;
136 mgmt
->u
.action
.u
.mesh_action
.action_code
=
137 WLAN_MESH_ACTION_HWMP_PATH_SELECTION
;
141 mhwmp_dbg(sdata
, "sending PREQ to %pM\n", target
);
143 pos
= skb_put(skb
, 2 + ie_len
);
144 *pos
++ = WLAN_EID_PREQ
;
147 mhwmp_dbg(sdata
, "sending PREP to %pM\n", orig_addr
);
149 pos
= skb_put(skb
, 2 + ie_len
);
150 *pos
++ = WLAN_EID_PREP
;
153 mhwmp_dbg(sdata
, "sending RANN from %pM\n", orig_addr
);
154 ie_len
= sizeof(struct ieee80211_rann_ie
);
155 pos
= skb_put(skb
, 2 + ie_len
);
156 *pos
++ = WLAN_EID_RANN
;
167 if (action
== MPATH_PREP
) {
168 memcpy(pos
, target
, ETH_ALEN
);
170 memcpy(pos
, &target_sn
, 4);
173 if (action
== MPATH_PREQ
) {
174 memcpy(pos
, &preq_id
, 4);
177 memcpy(pos
, orig_addr
, ETH_ALEN
);
179 memcpy(pos
, &orig_sn
, 4);
182 memcpy(pos
, &lifetime
, 4); /* interval for RANN */
184 memcpy(pos
, &metric
, 4);
186 if (action
== MPATH_PREQ
) {
187 *pos
++ = 1; /* destination count */
188 *pos
++ = target_flags
;
189 memcpy(pos
, target
, ETH_ALEN
);
191 memcpy(pos
, &target_sn
, 4);
193 } else if (action
== MPATH_PREP
) {
194 memcpy(pos
, orig_addr
, ETH_ALEN
);
196 memcpy(pos
, &orig_sn
, 4);
200 ieee80211_tx_skb(sdata
, skb
);
205 /* Headroom is not adjusted. Caller should ensure that skb has sufficient
206 * headroom in case the frame is encrypted. */
207 static void prepare_frame_for_deferred_tx(struct ieee80211_sub_if_data
*sdata
,
210 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
211 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
213 skb_set_mac_header(skb
, 0);
214 skb_set_network_header(skb
, 0);
215 skb_set_transport_header(skb
, 0);
217 /* Send all internal mgmt frames on VO. Accordingly set TID to 7. */
218 skb_set_queue_mapping(skb
, IEEE80211_AC_VO
);
221 info
->control
.vif
= &sdata
->vif
;
222 info
->flags
|= IEEE80211_TX_INTFL_NEED_TXPROCESSING
;
223 ieee80211_set_qos_hdr(sdata
, skb
);
224 ieee80211_mps_set_frame_flags(sdata
, NULL
, hdr
);
228 * mesh_path_error_tx - Sends a PERR mesh management frame
230 * @ttl: allowed remaining hops
231 * @target: broken destination
232 * @target_sn: SN of the broken destination
233 * @target_rcode: reason code for this PERR
234 * @ra: node this frame is addressed to
235 * @sdata: local mesh subif
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.
241 int 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
)
245 struct ieee80211_local
*local
= sdata
->local
;
247 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
248 struct ieee80211_mgmt
*mgmt
;
250 int hdr_len
= offsetof(struct ieee80211_mgmt
, u
.action
.u
.mesh_action
) +
251 sizeof(mgmt
->u
.action
.u
.mesh_action
);
253 if (time_before(jiffies
, ifmsh
->next_perr
))
256 skb
= dev_alloc_skb(local
->tx_headroom
+
257 IEEE80211_ENCRYPT_HEADROOM
+
258 IEEE80211_ENCRYPT_TAILROOM
+
260 2 + 15 /* PERR IE */);
263 skb_reserve(skb
, local
->tx_headroom
+ IEEE80211_ENCRYPT_HEADROOM
);
264 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, hdr_len
);
265 memset(mgmt
, 0, hdr_len
);
266 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
267 IEEE80211_STYPE_ACTION
);
269 memcpy(mgmt
->da
, ra
, ETH_ALEN
);
270 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
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
;
277 pos
= skb_put(skb
, 2 + ie_len
);
278 *pos
++ = WLAN_EID_PERR
;
282 /* number of destinations */
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
294 memcpy(pos
, target
, ETH_ALEN
);
296 memcpy(pos
, &target_sn
, 4);
298 memcpy(pos
, &target_rcode
, 2);
300 /* see note in function header */
301 prepare_frame_for_deferred_tx(sdata
, skb
);
302 ifmsh
->next_perr
= TU_TO_EXP_TIME(
303 ifmsh
->mshcfg
.dot11MeshHWMPperrMinInterval
);
304 ieee80211_add_pending_skb(local
, skb
);
308 void ieee80211s_update_metric(struct ieee80211_local
*local
,
309 struct sta_info
*sta
, struct sk_buff
*skb
)
311 struct ieee80211_tx_info
*txinfo
= IEEE80211_SKB_CB(skb
);
312 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
315 if (!ieee80211_is_data(hdr
->frame_control
))
318 failed
= !(txinfo
->flags
& IEEE80211_TX_STAT_ACK
);
320 /* moving average, scaled to 100 */
321 sta
->fail_avg
= ((80 * sta
->fail_avg
+ 5) / 100 + 20 * failed
);
322 if (sta
->fail_avg
> 95)
323 mesh_plink_broken(sta
);
326 static u32
airtime_link_metric_get(struct ieee80211_local
*local
,
327 struct sta_info
*sta
)
329 struct rate_info rinfo
;
330 /* 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
;
335 u32 tx_time
, estimated_retx
;
338 if (sta
->fail_avg
>= 100)
341 sta_set_rate_info_tx(sta
, &sta
->last_tx_rate
, &rinfo
);
342 rate
= cfg80211_calculate_bitrate(&rinfo
);
346 err
= (sta
->fail_avg
<< ARITH_SHIFT
) / 100;
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.
351 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
) ;
358 * hwmp_route_info_get - Update routing info to originator and transmitter
360 * @sdata: local mesh subif
361 * @mgmt: mesh management frame
362 * @hwmp_ie: hwmp information element (PREP or PREQ)
363 * @action: type of hwmp ie
365 * This function updates the path routing information to the originator and the
366 * transmitter of a HWMP PREQ or PREP frame.
368 * Returns: metric to frame originator or 0 if the frame should not be further
371 * Notes: this function is the only place (besides user-provided info) where
372 * path routing information is updated.
374 static u32
hwmp_route_info_get(struct ieee80211_sub_if_data
*sdata
,
375 struct ieee80211_mgmt
*mgmt
,
376 const u8
*hwmp_ie
, enum mpath_frame_type action
)
378 struct ieee80211_local
*local
= sdata
->local
;
379 struct mesh_path
*mpath
;
380 struct sta_info
*sta
;
382 const u8
*orig_addr
, *ta
;
383 u32 orig_sn
, orig_metric
;
384 unsigned long orig_lifetime
, exp_time
;
385 u32 last_hop_metric
, new_metric
;
389 sta
= sta_info_get(sdata
, mgmt
->sa
);
395 last_hop_metric
= airtime_link_metric_get(local
, sta
);
396 /* Update and check originator routing info */
401 orig_addr
= PREQ_IE_ORIG_ADDR(hwmp_ie
);
402 orig_sn
= PREQ_IE_ORIG_SN(hwmp_ie
);
403 orig_lifetime
= PREQ_IE_LIFETIME(hwmp_ie
);
404 orig_metric
= PREQ_IE_METRIC(hwmp_ie
);
407 /* Originator here refers to the MP that was the target in the
408 * Path Request. We divert from the nomenclature in the draft
409 * so that we can easily use a single function to gather path
410 * information from both PREQ and PREP frames.
412 orig_addr
= PREP_IE_TARGET_ADDR(hwmp_ie
);
413 orig_sn
= PREP_IE_TARGET_SN(hwmp_ie
);
414 orig_lifetime
= PREP_IE_LIFETIME(hwmp_ie
);
415 orig_metric
= PREP_IE_METRIC(hwmp_ie
);
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
);
426 if (ether_addr_equal(orig_addr
, sdata
->vif
.addr
)) {
427 /* This MP is the originator, we are not interested in this
428 * frame, except for updating transmitter's path info.
433 mpath
= mesh_path_lookup(sdata
, orig_addr
);
435 spin_lock_bh(&mpath
->state_lock
);
436 if (mpath
->flags
& MESH_PATH_FIXED
)
438 else if ((mpath
->flags
& MESH_PATH_ACTIVE
) &&
439 (mpath
->flags
& MESH_PATH_SN_VALID
)) {
440 if (SN_GT(mpath
->sn
, orig_sn
) ||
441 (mpath
->sn
== orig_sn
&&
442 new_metric
>= mpath
->metric
)) {
448 mpath
= mesh_path_add(sdata
, orig_addr
);
453 spin_lock_bh(&mpath
->state_lock
);
457 mesh_path_assign_nexthop(mpath
, sta
);
458 mpath
->flags
|= MESH_PATH_SN_VALID
;
459 mpath
->metric
= new_metric
;
461 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
470 spin_unlock_bh(&mpath
->state_lock
);
473 /* Update and check transmitter routing info */
475 if (ether_addr_equal(orig_addr
, ta
))
480 mpath
= mesh_path_lookup(sdata
, ta
);
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
)))
488 mpath
= mesh_path_add(sdata
, ta
);
493 spin_lock_bh(&mpath
->state_lock
);
497 mesh_path_assign_nexthop(mpath
, sta
);
498 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
);
505 spin_unlock_bh(&mpath
->state_lock
);
510 return process
? new_metric
: 0;
513 static void hwmp_preq_frame_process(struct ieee80211_sub_if_data
*sdata
,
514 struct ieee80211_mgmt
*mgmt
,
515 const u8
*preq_elem
, u32 metric
)
517 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
518 struct mesh_path
*mpath
= NULL
;
519 const u8
*target_addr
, *orig_addr
;
521 u8 target_flags
, ttl
, flags
;
522 u32 orig_sn
, target_sn
, lifetime
, orig_metric
;
527 /* Update target SN, if present */
528 target_addr
= PREQ_IE_TARGET_ADDR(preq_elem
);
529 orig_addr
= PREQ_IE_ORIG_ADDR(preq_elem
);
530 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
);
533 orig_metric
= metric
;
534 /* Proactive PREQ gate announcements */
535 flags
= PREQ_IE_FLAGS(preq_elem
);
536 root_is_gate
= !!(flags
& RANN_FLAG_IS_GATE
);
538 mhwmp_dbg(sdata
, "received PREQ from %pM\n", orig_addr
);
540 if (ether_addr_equal(target_addr
, sdata
->vif
.addr
)) {
541 mhwmp_dbg(sdata
, "PREQ is for us\n");
545 if (time_after(jiffies
, ifmsh
->last_sn_update
+
546 net_traversal_jiffies(sdata
)) ||
547 time_before(jiffies
, ifmsh
->last_sn_update
)) {
548 target_sn
= ++ifmsh
->sn
;
549 ifmsh
->last_sn_update
= jiffies
;
551 } else if (is_broadcast_ether_addr(target_addr
) &&
552 (target_flags
& IEEE80211_PREQ_TO_FLAG
)) {
554 mpath
= mesh_path_lookup(sdata
, orig_addr
);
556 if (flags
& IEEE80211_PREQ_PROACTIVE_PREP_FLAG
) {
558 target_addr
= sdata
->vif
.addr
;
559 target_sn
= ++ifmsh
->sn
;
561 ifmsh
->last_sn_update
= jiffies
;
564 mesh_path_add_gate(mpath
);
569 mpath
= mesh_path_lookup(sdata
, target_addr
);
571 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
)) &&
576 (mpath
->flags
& MESH_PATH_ACTIVE
)) {
578 metric
= mpath
->metric
;
579 target_sn
= mpath
->sn
;
580 if (target_flags
& MP_F_RF
)
581 target_flags
|= MP_F_DO
;
590 lifetime
= PREQ_IE_LIFETIME(preq_elem
);
591 ttl
= ifmsh
->mshcfg
.element_ttl
;
593 mhwmp_dbg(sdata
, "replying to the PREQ\n");
594 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
,
597 cpu_to_le32(lifetime
), cpu_to_le32(metric
),
600 ifmsh
->mshstats
.dropped_frames_ttl
++;
604 if (forward
&& ifmsh
->mshcfg
.dot11MeshForwarding
) {
608 ttl
= PREQ_IE_TTL(preq_elem
);
609 lifetime
= PREQ_IE_LIFETIME(preq_elem
);
611 ifmsh
->mshstats
.dropped_frames_ttl
++;
614 mhwmp_dbg(sdata
, "forwarding the PREQ from %pM\n", orig_addr
);
616 preq_id
= PREQ_IE_PREQ_ID(preq_elem
);
617 hopcount
= PREQ_IE_HOPCOUNT(preq_elem
) + 1;
618 da
= (mpath
&& mpath
->is_root
) ?
619 mpath
->rann_snd_addr
: broadcast_addr
;
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
;
627 mesh_path_sel_frame_tx(MPATH_PREQ
, flags
, orig_addr
,
628 cpu_to_le32(orig_sn
), target_flags
, target_addr
,
629 cpu_to_le32(target_sn
), da
,
630 hopcount
, ttl
, cpu_to_le32(lifetime
),
631 cpu_to_le32(metric
), cpu_to_le32(preq_id
),
633 if (!is_multicast_ether_addr(da
))
634 ifmsh
->mshstats
.fwded_unicast
++;
636 ifmsh
->mshstats
.fwded_mcast
++;
637 ifmsh
->mshstats
.fwded_frames
++;
642 static inline struct sta_info
*
643 next_hop_deref_protected(struct mesh_path
*mpath
)
645 return rcu_dereference_protected(mpath
->next_hop
,
646 lockdep_is_held(&mpath
->state_lock
));
650 static void hwmp_prep_frame_process(struct ieee80211_sub_if_data
*sdata
,
651 struct ieee80211_mgmt
*mgmt
,
652 const u8
*prep_elem
, u32 metric
)
654 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
655 struct mesh_path
*mpath
;
656 const u8
*target_addr
, *orig_addr
;
657 u8 ttl
, hopcount
, flags
;
658 u8 next_hop
[ETH_ALEN
];
659 u32 target_sn
, orig_sn
, lifetime
;
661 mhwmp_dbg(sdata
, "received PREP from %pM\n",
662 PREP_IE_TARGET_ADDR(prep_elem
));
664 orig_addr
= PREP_IE_ORIG_ADDR(prep_elem
);
665 if (ether_addr_equal(orig_addr
, sdata
->vif
.addr
))
666 /* destination, no forwarding required */
669 if (!ifmsh
->mshcfg
.dot11MeshForwarding
)
672 ttl
= PREP_IE_TTL(prep_elem
);
674 sdata
->u
.mesh
.mshstats
.dropped_frames_ttl
++;
679 mpath
= mesh_path_lookup(sdata
, orig_addr
);
681 spin_lock_bh(&mpath
->state_lock
);
684 if (!(mpath
->flags
& MESH_PATH_ACTIVE
)) {
685 spin_unlock_bh(&mpath
->state_lock
);
688 memcpy(next_hop
, next_hop_deref_protected(mpath
)->sta
.addr
, ETH_ALEN
);
689 spin_unlock_bh(&mpath
->state_lock
);
691 flags
= PREP_IE_FLAGS(prep_elem
);
692 lifetime
= PREP_IE_LIFETIME(prep_elem
);
693 hopcount
= PREP_IE_HOPCOUNT(prep_elem
) + 1;
694 target_addr
= PREP_IE_TARGET_ADDR(prep_elem
);
695 target_sn
= PREP_IE_TARGET_SN(prep_elem
);
696 orig_sn
= PREP_IE_ORIG_SN(prep_elem
);
698 mesh_path_sel_frame_tx(MPATH_PREP
, flags
, orig_addr
,
699 cpu_to_le32(orig_sn
), 0, target_addr
,
700 cpu_to_le32(target_sn
), next_hop
, hopcount
,
701 ttl
, cpu_to_le32(lifetime
), cpu_to_le32(metric
),
705 sdata
->u
.mesh
.mshstats
.fwded_unicast
++;
706 sdata
->u
.mesh
.mshstats
.fwded_frames
++;
711 sdata
->u
.mesh
.mshstats
.dropped_frames_no_route
++;
714 static void hwmp_perr_frame_process(struct ieee80211_sub_if_data
*sdata
,
715 struct ieee80211_mgmt
*mgmt
,
718 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
719 struct mesh_path
*mpath
;
721 const u8
*ta
, *target_addr
;
726 ttl
= PERR_IE_TTL(perr_elem
);
728 ifmsh
->mshstats
.dropped_frames_ttl
++;
732 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
);
737 mpath
= mesh_path_lookup(sdata
, target_addr
);
739 struct sta_info
*sta
;
741 spin_lock_bh(&mpath
->state_lock
);
742 sta
= next_hop_deref_protected(mpath
);
743 if (mpath
->flags
& MESH_PATH_ACTIVE
&&
744 ether_addr_equal(ta
, sta
->sta
.addr
) &&
745 (!(mpath
->flags
& MESH_PATH_SN_VALID
) ||
746 SN_GT(target_sn
, mpath
->sn
))) {
747 mpath
->flags
&= ~MESH_PATH_ACTIVE
;
748 mpath
->sn
= target_sn
;
749 spin_unlock_bh(&mpath
->state_lock
);
750 if (!ifmsh
->mshcfg
.dot11MeshForwarding
)
752 mesh_path_error_tx(sdata
, ttl
, target_addr
,
753 cpu_to_le32(target_sn
),
754 cpu_to_le16(target_rcode
),
757 spin_unlock_bh(&mpath
->state_lock
);
763 static void hwmp_rann_frame_process(struct ieee80211_sub_if_data
*sdata
,
764 struct ieee80211_mgmt
*mgmt
,
765 const struct ieee80211_rann_ie
*rann
)
767 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
768 struct ieee80211_local
*local
= sdata
->local
;
769 struct sta_info
*sta
;
770 struct mesh_path
*mpath
;
771 u8 ttl
, flags
, hopcount
;
773 u32 orig_sn
, metric
, metric_txsta
, interval
;
776 ttl
= rann
->rann_ttl
;
777 flags
= rann
->rann_flags
;
778 root_is_gate
= !!(flags
& RANN_FLAG_IS_GATE
);
779 orig_addr
= rann
->rann_addr
;
780 orig_sn
= le32_to_cpu(rann
->rann_seq
);
781 interval
= le32_to_cpu(rann
->rann_interval
);
782 hopcount
= rann
->rann_hopcount
;
784 metric
= le32_to_cpu(rann
->rann_metric
);
786 /* Ignore our own RANNs */
787 if (ether_addr_equal(orig_addr
, sdata
->vif
.addr
))
791 "received RANN from %pM via neighbour %pM (is_gate=%d)\n",
792 orig_addr
, mgmt
->sa
, root_is_gate
);
795 sta
= sta_info_get(sdata
, mgmt
->sa
);
801 metric_txsta
= airtime_link_metric_get(local
, sta
);
803 mpath
= mesh_path_lookup(sdata
, orig_addr
);
805 mpath
= mesh_path_add(sdata
, orig_addr
);
808 sdata
->u
.mesh
.mshstats
.dropped_frames_no_route
++;
813 if (!(SN_LT(mpath
->sn
, orig_sn
)) &&
814 !(mpath
->sn
== orig_sn
&& metric
< mpath
->rann_metric
)) {
819 if ((!(mpath
->flags
& (MESH_PATH_ACTIVE
| MESH_PATH_RESOLVING
)) ||
820 (time_after(jiffies
, mpath
->last_preq_to_root
+
821 root_path_confirmation_jiffies(sdata
)) ||
822 time_before(jiffies
, mpath
->last_preq_to_root
))) &&
823 !(mpath
->flags
& MESH_PATH_FIXED
) && (ttl
!= 0)) {
825 "time to refresh root mpath %pM\n",
827 mesh_queue_preq(mpath
, PREQ_Q_F_START
| PREQ_Q_F_REFRESH
);
828 mpath
->last_preq_to_root
= jiffies
;
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
);
839 mesh_path_add_gate(mpath
);
842 ifmsh
->mshstats
.dropped_frames_ttl
++;
848 if (ifmsh
->mshcfg
.dot11MeshForwarding
) {
849 mesh_path_sel_frame_tx(MPATH_RANN
, flags
, orig_addr
,
850 cpu_to_le32(orig_sn
),
851 0, NULL
, 0, broadcast_addr
,
852 hopcount
, ttl
, cpu_to_le32(interval
),
853 cpu_to_le32(metric
+ metric_txsta
),
861 void mesh_rx_path_sel_frame(struct ieee80211_sub_if_data
*sdata
,
862 struct ieee80211_mgmt
*mgmt
, size_t len
)
864 struct ieee802_11_elems elems
;
867 struct sta_info
*sta
;
869 /* need action_code */
870 if (len
< IEEE80211_MIN_ACTION_SIZE
+ 1)
874 sta
= sta_info_get(sdata
, mgmt
->sa
);
875 if (!sta
|| sta
->plink_state
!= NL80211_PLINK_ESTAB
) {
881 baselen
= (u8
*) mgmt
->u
.action
.u
.mesh_action
.variable
- (u8
*) mgmt
;
882 ieee802_11_parse_elems(mgmt
->u
.action
.u
.mesh_action
.variable
,
883 len
- baselen
, false, &elems
);
886 if (elems
.preq_len
!= 37)
887 /* Right now we support just 1 destination and no AE */
889 last_hop_metric
= hwmp_route_info_get(sdata
, mgmt
, elems
.preq
,
892 hwmp_preq_frame_process(sdata
, mgmt
, elems
.preq
,
896 if (elems
.prep_len
!= 31)
897 /* Right now we support no AE */
899 last_hop_metric
= hwmp_route_info_get(sdata
, mgmt
, elems
.prep
,
902 hwmp_prep_frame_process(sdata
, mgmt
, elems
.prep
,
906 if (elems
.perr_len
!= 15)
907 /* Right now we support only one destination per PERR */
909 hwmp_perr_frame_process(sdata
, mgmt
, elems
.perr
);
912 hwmp_rann_frame_process(sdata
, mgmt
, elems
.rann
);
916 * mesh_queue_preq - queue a PREQ to a given destination
918 * @mpath: mesh path to discover
919 * @flags: special attributes of the PREQ to be sent
921 * Locking: the function must be called from within a rcu read lock block.
924 static void mesh_queue_preq(struct mesh_path
*mpath
, u8 flags
)
926 struct ieee80211_sub_if_data
*sdata
= mpath
->sdata
;
927 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
928 struct mesh_preq_queue
*preq_node
;
930 preq_node
= kmalloc(sizeof(struct mesh_preq_queue
), GFP_ATOMIC
);
932 mhwmp_dbg(sdata
, "could not allocate PREQ node\n");
936 spin_lock_bh(&ifmsh
->mesh_preq_queue_lock
);
937 if (ifmsh
->preq_queue_len
== MAX_PREQ_QUEUE_LEN
) {
938 spin_unlock_bh(&ifmsh
->mesh_preq_queue_lock
);
940 if (printk_ratelimit())
941 mhwmp_dbg(sdata
, "PREQ node queue full\n");
945 spin_lock(&mpath
->state_lock
);
946 if (mpath
->flags
& MESH_PATH_REQ_QUEUED
) {
947 spin_unlock(&mpath
->state_lock
);
948 spin_unlock_bh(&ifmsh
->mesh_preq_queue_lock
);
953 memcpy(preq_node
->dst
, mpath
->dst
, ETH_ALEN
);
954 preq_node
->flags
= flags
;
956 mpath
->flags
|= MESH_PATH_REQ_QUEUED
;
957 spin_unlock(&mpath
->state_lock
);
959 list_add_tail(&preq_node
->list
, &ifmsh
->preq_queue
.list
);
960 ++ifmsh
->preq_queue_len
;
961 spin_unlock_bh(&ifmsh
->mesh_preq_queue_lock
);
963 if (time_after(jiffies
, ifmsh
->last_preq
+ min_preq_int_jiff(sdata
)))
964 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
966 else if (time_before(jiffies
, ifmsh
->last_preq
)) {
967 /* avoid long wait if did not send preqs for a long time
968 * and jiffies wrapped around
970 ifmsh
->last_preq
= jiffies
- min_preq_int_jiff(sdata
) - 1;
971 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
973 mod_timer(&ifmsh
->mesh_path_timer
, ifmsh
->last_preq
+
974 min_preq_int_jiff(sdata
));
978 * mesh_path_start_discovery - launch a path discovery from the PREQ queue
980 * @sdata: local mesh subif
982 void mesh_path_start_discovery(struct ieee80211_sub_if_data
*sdata
)
984 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
985 struct mesh_preq_queue
*preq_node
;
986 struct mesh_path
*mpath
;
987 u8 ttl
, target_flags
;
991 spin_lock_bh(&ifmsh
->mesh_preq_queue_lock
);
992 if (!ifmsh
->preq_queue_len
||
993 time_before(jiffies
, ifmsh
->last_preq
+
994 min_preq_int_jiff(sdata
))) {
995 spin_unlock_bh(&ifmsh
->mesh_preq_queue_lock
);
999 preq_node
= list_first_entry(&ifmsh
->preq_queue
.list
,
1000 struct mesh_preq_queue
, list
);
1001 list_del(&preq_node
->list
);
1002 --ifmsh
->preq_queue_len
;
1003 spin_unlock_bh(&ifmsh
->mesh_preq_queue_lock
);
1006 mpath
= mesh_path_lookup(sdata
, preq_node
->dst
);
1010 spin_lock_bh(&mpath
->state_lock
);
1011 mpath
->flags
&= ~MESH_PATH_REQ_QUEUED
;
1012 if (preq_node
->flags
& PREQ_Q_F_START
) {
1013 if (mpath
->flags
& MESH_PATH_RESOLVING
) {
1014 spin_unlock_bh(&mpath
->state_lock
);
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
);
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
);
1029 ifmsh
->last_preq
= jiffies
;
1031 if (time_after(jiffies
, ifmsh
->last_sn_update
+
1032 net_traversal_jiffies(sdata
)) ||
1033 time_before(jiffies
, ifmsh
->last_sn_update
)) {
1035 sdata
->u
.mesh
.last_sn_update
= jiffies
;
1037 lifetime
= default_lifetime(sdata
);
1038 ttl
= sdata
->u
.mesh
.mshcfg
.element_ttl
;
1040 sdata
->u
.mesh
.mshstats
.dropped_frames_ttl
++;
1041 spin_unlock_bh(&mpath
->state_lock
);
1045 if (preq_node
->flags
& PREQ_Q_F_REFRESH
)
1046 target_flags
= MP_F_DO
;
1048 target_flags
= MP_F_RF
;
1050 spin_unlock_bh(&mpath
->state_lock
);
1051 da
= (mpath
->is_root
) ? mpath
->rann_snd_addr
: broadcast_addr
;
1052 mesh_path_sel_frame_tx(MPATH_PREQ
, 0, sdata
->vif
.addr
,
1053 cpu_to_le32(ifmsh
->sn
), target_flags
, mpath
->dst
,
1054 cpu_to_le32(mpath
->sn
), da
, 0,
1055 ttl
, cpu_to_le32(lifetime
), 0,
1056 cpu_to_le32(ifmsh
->preq_id
++), sdata
);
1057 mod_timer(&mpath
->timer
, jiffies
+ mpath
->discovery_timeout
);
1065 * mesh_nexthop_resolve - lookup next hop; conditionally start path discovery
1067 * @skb: 802.11 frame to be sent
1068 * @sdata: network subif the frame will be sent through
1070 * Lookup next hop for given skb and start path discovery if no
1071 * forwarding information is found.
1073 * 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.
1076 int mesh_nexthop_resolve(struct ieee80211_sub_if_data
*sdata
,
1077 struct sk_buff
*skb
)
1079 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
1080 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
1081 struct mesh_path
*mpath
;
1082 struct sk_buff
*skb_to_free
= NULL
;
1083 u8
*target_addr
= hdr
->addr3
;
1086 /* Nulls are only sent to peers for PS and should be pre-addressed */
1087 if (ieee80211_is_qos_nullfunc(hdr
->frame_control
))
1091 err
= mesh_nexthop_lookup(sdata
, skb
);
1095 /* no nexthop found, start resolving */
1096 mpath
= mesh_path_lookup(sdata
, target_addr
);
1098 mpath
= mesh_path_add(sdata
, target_addr
);
1099 if (IS_ERR(mpath
)) {
1100 mesh_path_discard_frame(sdata
, skb
);
1101 err
= PTR_ERR(mpath
);
1106 if (!(mpath
->flags
& MESH_PATH_RESOLVING
))
1107 mesh_queue_preq(mpath
, PREQ_Q_F_START
);
1109 if (skb_queue_len(&mpath
->frame_queue
) >= MESH_FRAME_QUEUE_LEN
)
1110 skb_to_free
= skb_dequeue(&mpath
->frame_queue
);
1112 info
->flags
|= IEEE80211_TX_INTFL_NEED_TXPROCESSING
;
1113 ieee80211_set_qos_hdr(sdata
, skb
);
1114 skb_queue_tail(&mpath
->frame_queue
, skb
);
1117 mesh_path_discard_frame(sdata
, skb_to_free
);
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.
1129 * @skb: 802.11 frame to be sent
1130 * @sdata: network subif the frame will be sent through
1132 * Returns: 0 if the next hop was found. Nonzero otherwise.
1134 int mesh_nexthop_lookup(struct ieee80211_sub_if_data
*sdata
,
1135 struct sk_buff
*skb
)
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
;
1144 mpath
= mesh_path_lookup(sdata
, target_addr
);
1146 if (!mpath
|| !(mpath
->flags
& MESH_PATH_ACTIVE
))
1149 if (time_after(jiffies
,
1151 msecs_to_jiffies(sdata
->u
.mesh
.mshcfg
.path_refresh_time
)) &&
1152 ether_addr_equal(sdata
->vif
.addr
, hdr
->addr4
) &&
1153 !(mpath
->flags
& MESH_PATH_RESOLVING
) &&
1154 !(mpath
->flags
& MESH_PATH_FIXED
))
1155 mesh_queue_preq(mpath
, PREQ_Q_F_START
| PREQ_Q_F_REFRESH
);
1157 next_hop
= rcu_dereference(mpath
->next_hop
);
1159 memcpy(hdr
->addr1
, next_hop
->sta
.addr
, ETH_ALEN
);
1160 memcpy(hdr
->addr2
, sdata
->vif
.addr
, ETH_ALEN
);
1161 ieee80211_mps_set_frame_flags(sdata
, next_hop
, hdr
);
1170 void mesh_path_timer(unsigned long data
)
1172 struct mesh_path
*mpath
= (void *) data
;
1173 struct ieee80211_sub_if_data
*sdata
= mpath
->sdata
;
1176 if (sdata
->local
->quiescing
)
1179 spin_lock_bh(&mpath
->state_lock
);
1180 if (mpath
->flags
& MESH_PATH_RESOLVED
||
1181 (!(mpath
->flags
& MESH_PATH_RESOLVING
))) {
1182 mpath
->flags
&= ~(MESH_PATH_RESOLVING
| MESH_PATH_RESOLVED
);
1183 spin_unlock_bh(&mpath
->state_lock
);
1184 } else if (mpath
->discovery_retries
< max_preq_retries(sdata
)) {
1185 ++mpath
->discovery_retries
;
1186 mpath
->discovery_timeout
*= 2;
1187 mpath
->flags
&= ~MESH_PATH_REQ_QUEUED
;
1188 spin_unlock_bh(&mpath
->state_lock
);
1189 mesh_queue_preq(mpath
, 0);
1192 mpath
->exp_time
= jiffies
;
1193 spin_unlock_bh(&mpath
->state_lock
);
1194 if (!mpath
->is_gate
&& mesh_gate_num(sdata
) > 0) {
1195 ret
= mesh_path_send_to_gates(mpath
);
1197 mhwmp_dbg(sdata
, "no gate was reachable\n");
1199 mesh_path_flush_pending(mpath
);
1203 void mesh_path_tx_root_frame(struct ieee80211_sub_if_data
*sdata
)
1205 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1206 u32 interval
= ifmsh
->mshcfg
.dot11MeshHWMPRannInterval
;
1207 u8 flags
, target_flags
= 0;
1209 flags
= (ifmsh
->mshcfg
.dot11MeshGateAnnouncementProtocol
)
1210 ? RANN_FLAG_IS_GATE
: 0;
1212 switch (ifmsh
->mshcfg
.dot11MeshHWMPRootMode
) {
1213 case IEEE80211_PROACTIVE_RANN
:
1214 mesh_path_sel_frame_tx(MPATH_RANN
, flags
, sdata
->vif
.addr
,
1215 cpu_to_le32(++ifmsh
->sn
),
1216 0, NULL
, 0, broadcast_addr
,
1217 0, ifmsh
->mshcfg
.element_ttl
,
1218 cpu_to_le32(interval
), 0, 0, sdata
);
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
);
1234 mhwmp_dbg(sdata
, "Proactive mechanism not supported\n");